summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/cse
diff options
context:
space:
mode:
authorHannah Williams <hannah.williams@intel.com>2017-06-12 14:03:18 -0700
committerMartin Roth <martinroth@google.com>2017-06-16 16:15:13 +0200
commit63142153bae35e1a8852224df7c2695eed42bd67 (patch)
treea21f7cfcfe2ccb7f82f95bee32a8a11772c905e6 /src/soc/intel/common/block/cse
parentea6f7006325cbff9f5d7306a18656c6b5d321a4c (diff)
downloadcoreboot-63142153bae35e1a8852224df7c2695eed42bd67.tar.xz
soc/intel/common/block/cse: Add GLK PCI ID
Change-Id: I88e376d61c4aba5030a0be7c8bdfe7b57881a197 Signed-off-by: Hannah Williams <hannah.williams@intel.com> Reviewed-on: https://review.coreboot.org/20169 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block/cse')
-rw-r--r--src/soc/intel/common/block/cse/cse.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c
index 7ae9b53450..1346af4909 100644
--- a/src/soc/intel/common/block/cse/cse.c
+++ b/src/soc/intel/common/block/cse/cse.c
@@ -465,11 +465,17 @@ static struct device_operations cse_ops = {
.init = pci_dev_init,
};
+static const unsigned short pci_device_ids[] = {
+ PCI_DEVICE_ID_INTEL_APL_CSE0,
+ PCI_DEVICE_ID_INTEL_GLK_CSE0,
+ 0,
+};
+
static const struct pci_driver cse_driver __pci_driver = {
.ops = &cse_ops,
.vendor = PCI_VENDOR_ID_INTEL,
/* SoC/chipset needs to provide PCI device ID */
- .device = PCI_DEVICE_ID_INTEL_APL_CSE0,
+ .devices = pci_device_ids,
};
#endif