diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-11-02 11:11:40 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-11-02 11:11:40 +0000 |
commit | 3d9a12f65df48bee260c522c1c2d32343cc7fd73 (patch) | |
tree | 09afa588ab1501d4030562202a20b7090e7b9ed6 /util/inteltool/pcie.c | |
parent | 5d7a1c844e56bc9dd101c8a900bf3284b633d04b (diff) | |
download | coreboot-3d9a12f65df48bee260c522c1c2d32343cc7fd73.tar.xz |
inteltool 82945G/GZ/P/PL Support (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3716 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/pcie.c')
-rw-r--r-- | util/inteltool/pcie.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/inteltool/pcie.c b/util/inteltool/pcie.c index f62f78cb07..8ea9d215b1 100644 --- a/util/inteltool/pcie.c +++ b/util/inteltool/pcie.c @@ -36,6 +36,7 @@ int print_epbar(struct pci_dev *nb) switch (nb->device_id) { case PCI_DEVICE_ID_INTEL_82945GM: + case PCI_DEVICE_ID_INTEL_82945P: epbar_phys = pci_read_long(nb, 0x40) & 0xfffffffe; break; case 0x1234: // Dummy for non-existent functionality @@ -77,6 +78,7 @@ int print_dmibar(struct pci_dev *nb) switch (nb->device_id) { case PCI_DEVICE_ID_INTEL_82945GM: + case PCI_DEVICE_ID_INTEL_82945P: dmibar_phys = pci_read_long(nb, 0x4c) & 0xfffffffe; break; case 0x1234: // Dummy for non-existent functionality @@ -120,6 +122,7 @@ int print_pciexbar(struct pci_dev *nb) switch (nb->device_id) { case PCI_DEVICE_ID_INTEL_82945GM: + case PCI_DEVICE_ID_INTEL_82945P: pciexbar_reg = pci_read_long(nb, 0x48); break; case 0x1234: // Dummy for non-existent functionality |