i5000: Add PCI ids for all i5000 flavours

Change-Id: I48be647e3f38038830200bcc64429cbf86990ad7
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/1174
Tested-by: build bot (Jenkins)
This commit is contained in:
Sven Schnelle 2012-07-05 17:17:45 +02:00
parent 0ca02553e1
commit 7b48379575
1 changed files with 8 additions and 1 deletions

View File

@ -55,10 +55,17 @@ static struct device_operations mc_ops = {
.ops_pci = &intel_pci_ops,
};
static const unsigned short nb_ids[] = {
0x25c0, /* 5000X */
0x25d0, /* 5000Z */
0x25d4, /* 5000V */
0x25d8, /* 5000P */
0};
static const struct pci_driver mc_driver __pci_driver = {
.ops = &mc_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.device = 0x25d8,
.devices = nb_ids,
};
static void cpu_bus_init(device_t dev)