Patrick Georgi (patr...@georgi-clan.de) just uploaded a new patch set to 
gerrit, which you can find at http://review.coreboot.org/185

-gerrit

commit 936fb7f5689917bbed45a9e21eda6685b27d0f9a
Author: Ruud Schramp <schr...@holmes.nl>
Date:   Mon Apr 4 07:53:19 2011 +0200

    inteltool: added more device IDs
    
    Change-Id: I6f2272ae4071025e671638e83bade6a96aac658b
    Signed-off-by: Ruud Schramp <schr...@holmes.nl>
    Signed-off-by: Patrick Georgi <patr...@georgi-clan.de>
---
 util/inteltool/inteltool.c |    2 ++
 util/inteltool/inteltool.h |    2 ++
 util/inteltool/memory.c    |    2 ++
 util/inteltool/pcie.c      |    6 ++++++
 4 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c
index a416106..93169d3 100644
--- a/util/inteltool/inteltool.c
+++ b/util/inteltool/inteltool.c
@@ -80,6 +80,8 @@ static const struct {
        { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH0, "ICH0" },
        { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH, "ICH" },
        { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371XX, "82371AB/EB/MB" },
+       { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X44, "82X38/X48" },
+       { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_32X0, "3200/3210" },
 };
 
 #ifndef __DARWIN__
diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h
index ca8066f..bddd17c 100644
--- a/util/inteltool/inteltool.h
+++ b/util/inteltool/inteltool.h
@@ -78,6 +78,8 @@
 #define PCI_DEVICE_ID_INTEL_82Q35              0x29b0
 #define PCI_DEVICE_ID_INTEL_82G33              0x29c0
 #define PCI_DEVICE_ID_INTEL_82Q33              0x29d0
+#define PCI_DEVICE_ID_INTEL_X44                0x29e0
+#define PCI_DEVICE_ID_INTEL_32X0               0x29f0
 #define PCI_DEVICE_ID_INTEL_GS45               0x2a40
 #define PCI_DEVICE_ID_INTEL_X58                        0x3405
 #define PCI_DEVICE_ID_INTEL_SCH_POULSBO                0x8100
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c
index 256204c..9230419 100644
--- a/util/inteltool/memory.c
+++ b/util/inteltool/memory.c
@@ -109,6 +109,8 @@ int print_mchbar(struct pci_dev *nb, struct pci_access 
*pacc)
                printf("This northbridge does not have MCHBAR.\n");
                return 1;
        case PCI_DEVICE_ID_INTEL_GS45:
+       case PCI_DEVICE_ID_INTEL_X44:
+       case PCI_DEVICE_ID_INTEL_32X0:
                mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
                mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
                break;
diff --git a/util/inteltool/pcie.c b/util/inteltool/pcie.c
index 1ca57b6..4913150 100644
--- a/util/inteltool/pcie.c
+++ b/util/inteltool/pcie.c
@@ -45,6 +45,8 @@ int print_epbar(struct pci_dev *nb)
        case PCI_DEVICE_ID_INTEL_82Q35:
        case PCI_DEVICE_ID_INTEL_82G33:
        case PCI_DEVICE_ID_INTEL_82Q33:
+       case PCI_DEVICE_ID_INTEL_X44:
+       case PCI_DEVICE_ID_INTEL_32X0:
        case PCI_DEVICE_ID_INTEL_GS45:
        case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
        case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
@@ -104,6 +106,8 @@ int print_dmibar(struct pci_dev *nb)
        case PCI_DEVICE_ID_INTEL_82Q35:
        case PCI_DEVICE_ID_INTEL_82G33:
        case PCI_DEVICE_ID_INTEL_82Q33:
+       case PCI_DEVICE_ID_INTEL_X44:
+       case PCI_DEVICE_ID_INTEL_32X0:
        case PCI_DEVICE_ID_INTEL_GS45:
        case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
        case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
@@ -167,6 +171,8 @@ int print_pciexbar(struct pci_dev *nb)
        case PCI_DEVICE_ID_INTEL_82Q35:
        case PCI_DEVICE_ID_INTEL_82G33:
        case PCI_DEVICE_ID_INTEL_82Q33:
+       case PCI_DEVICE_ID_INTEL_X44:
+       case PCI_DEVICE_ID_INTEL_32X0:
        case PCI_DEVICE_ID_INTEL_GS45:
        case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
        case PCI_DEVICE_ID_INTEL_ATOM_NXXX:

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to