summaryrefslogtreecommitdiffstats
path: root/src/southbridge
diff options
context:
space:
mode:
authorJames Ye <jye836@gmail.com>2020-05-03 23:04:07 +1000
committerPatrick Georgi <pgeorgi@google.com>2021-06-07 11:34:27 +0000
commitb92a4d682f146b7864d8e697af297f42de0d5c5d (patch)
tree5f59a1b150417c5baa31ee67be5826fb7737dbba /src/southbridge
parent023968453e13f09420c8d6ecdeeb42a229c0ff09 (diff)
downloadcoreboot-b92a4d682f146b7864d8e697af297f42de0d5c5d.tar.gz
coreboot-b92a4d682f146b7864d8e697af297f42de0d5c5d.tar.bz2
coreboot-b92a4d682f146b7864d8e697af297f42de0d5c5d.zip
sb/intel/bd82x6x: Add missing ID for PCI bridge
The PCI device ID 0x244e for the "Intel Corporation 82801 PCI Bridge" for desktop platforms was missing. Change-Id: I22cdbcf518d86af7b93de7731d175088a81bbc1f Signed-off-by: James Ye <jye836@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41015 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/intel/bd82x6x/pci.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/southbridge/intel/bd82x6x/pci.c b/src/southbridge/intel/bd82x6x/pci.c
index 895135bdd261..da8208a56f07 100644
--- a/src/southbridge/intel/bd82x6x/pci.c
+++ b/src/southbridge/intel/bd82x6x/pci.c
@@ -45,8 +45,14 @@ static struct device_operations device_ops = {
.ops_pci = &pci_dev_ops_pci,
};
+static const unsigned short pci_device_ids[] = {
+ 0x2448, /* Mobile */
+ 0x244e, /* Desktop */
+ 0
+};
+
static const struct pci_driver pch_pci __pci_driver = {
- .ops = &device_ops,
- .vendor = PCI_VENDOR_ID_INTEL,
- .device = 0x2448,
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .devices = pci_device_ids,
};