Sven Schnelle (svens@stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1175
-gerrit
commit 8a1dbc8c8be9b8c6bf28505b4faadaa51de204ee Author: Sven Schnelle svens@stackframe.org Date: Thu Jul 5 22:53:57 2012 +0200
inteltool: fixup intel 5000 chipset pci ids
Change-Id: I2cd1dac0dd9a5da1000a3ffa3e1c8ee4c5c8ba43 Signed-off-by: Sven Schnelle svens@stackframe.org --- util/inteltool/inteltool.c | 1 + util/inteltool/inteltool.h | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c index e5c2b86..ef354f2 100644 --- a/util/inteltool/inteltool.c +++ b/util/inteltool/inteltool.c @@ -87,6 +87,7 @@ static const struct { { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000P, "Intel i5000P Memory Controller Hub" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000X, "Intel i5000X Memory Controller Hub" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000Z, "Intel i5000Z Memory Controller Hub" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000V, "Intel i5000V Memory Controller Hub" }, };
#ifndef __DARWIN__ diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index c3fa365..22ebc3d 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -86,8 +86,9 @@ #define PCI_DEVICE_ID_INTEL_ATOM_DXXX 0xa000 #define PCI_DEVICE_ID_INTEL_I63XX 0x2670
-#define PCI_DEVICE_ID_INTEL_I5000X 0x25d0 -#define PCI_DEVICE_ID_INTEL_I5000Z 0x25d4 +#define PCI_DEVICE_ID_INTEL_I5000X 0x25c0 +#define PCI_DEVICE_ID_INTEL_I5000Z 0x25d0 +#define PCI_DEVICE_ID_INTEL_I5000V 0x25d4 #define PCI_DEVICE_ID_INTEL_I5000P 0x25d8
/* untested, but almost identical to D-series */