Sven Schnelle ([email protected]) just uploaded a new patch set to gerrit, 
which you can find at http://review.coreboot.org/1174

-gerrit

commit 687a036e86fa3070639858cb8bded15b73b7b86d
Author: Sven Schnelle <[email protected]>
Date:   Thu Jul 5 17:17:45 2012 +0200

    i5000: Add PCI ids for all i5000 flavours
    
    Change-Id: I48be647e3f38038830200bcc64429cbf86990ad7
    Signed-off-by: Sven Schnelle <[email protected]>
---
 src/northbridge/intel/i5000/northbridge.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/src/northbridge/intel/i5000/northbridge.c 
b/src/northbridge/intel/i5000/northbridge.c
index 3db755c..f5cc0ba 100644
--- a/src/northbridge/intel/i5000/northbridge.c
+++ b/src/northbridge/intel/i5000/northbridge.c
@@ -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)

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to