1 // SPDX-License-Identifier: GPL-2.0-only
3 * Intel PCH/PCU SPI flash PCI driver.
5 * Copyright (C) 2016, Intel Corporation
9 #include <linux/ioport.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/pci.h>
14 #include "intel-spi.h"
17 #define BCR_WPD BIT(0)
19 static const struct intel_spi_boardinfo bxt_info = {
20 .type = INTEL_SPI_BXT,
23 static int intel_spi_pci_probe(struct pci_dev *pdev,
24 const struct pci_device_id *id)
26 struct intel_spi_boardinfo *info;
27 struct intel_spi *ispi;
31 ret = pcim_enable_device(pdev);
35 info = devm_kmemdup(&pdev->dev, (void *)id->driver_data, sizeof(*info),
40 /* Try to make the chip read/write */
41 pci_read_config_dword(pdev, BCR, &bcr);
42 if (!(bcr & BCR_WPD)) {
44 pci_write_config_dword(pdev, BCR, bcr);
45 pci_read_config_dword(pdev, BCR, &bcr);
47 info->writeable = !!(bcr & BCR_WPD);
49 ispi = intel_spi_probe(&pdev->dev, &pdev->resource[0], info);
53 pci_set_drvdata(pdev, ispi);
57 static void intel_spi_pci_remove(struct pci_dev *pdev)
59 intel_spi_remove(pci_get_drvdata(pdev));
62 static const struct pci_device_id intel_spi_pci_ids[] = {
63 { PCI_VDEVICE(INTEL, 0x02a4), (unsigned long)&bxt_info },
64 { PCI_VDEVICE(INTEL, 0x18e0), (unsigned long)&bxt_info },
65 { PCI_VDEVICE(INTEL, 0x19e0), (unsigned long)&bxt_info },
66 { PCI_VDEVICE(INTEL, 0x34a4), (unsigned long)&bxt_info },
67 { PCI_VDEVICE(INTEL, 0x4b24), (unsigned long)&bxt_info },
68 { PCI_VDEVICE(INTEL, 0xa0a4), (unsigned long)&bxt_info },
69 { PCI_VDEVICE(INTEL, 0xa1a4), (unsigned long)&bxt_info },
70 { PCI_VDEVICE(INTEL, 0xa224), (unsigned long)&bxt_info },
73 MODULE_DEVICE_TABLE(pci, intel_spi_pci_ids);
75 static struct pci_driver intel_spi_pci_driver = {
77 .id_table = intel_spi_pci_ids,
78 .probe = intel_spi_pci_probe,
79 .remove = intel_spi_pci_remove,
82 module_pci_driver(intel_spi_pci_driver);
84 MODULE_DESCRIPTION("Intel PCH/PCU SPI flash PCI driver");
86 MODULE_LICENSE("GPL v2");