summaryrefslogtreecommitdiff
path: root/util/inteltool/memory.c
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2015-08-17 21:04:41 +1000
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2015-08-30 18:05:18 +0000
commit9c98664480de39ecd9d615dc46d34a63aedd4280 (patch)
treef5bd730b9f7a4d96356c98ce6a5a3e3d7befc59c /util/inteltool/memory.c
parentfdbc1af5e2c43ef223cc11ff98ee970423ae7797 (diff)
downloadcoreboot-9c98664480de39ecd9d615dc46d34a63aedd4280.tar.xz
inteltool: Add Intel 4-Series chipset detection
Previously, X4X was incorrectly named because it provides support for SKUs within XX4X range. This is renamed. This patch provides support for all X4X SKUs according to datasheet Intel 4 Series Chipset Family Specification Update, namely: Q45, Q43, P45, P43, G45, G43, G41 and B43 (both versions). Tested on Gigabyte GA-G41M-ES2L Change-Id: I032265e80d9ca51e2fef29201280832ea3210a0b Signed-off-by: Damien Zammit <damien@zamaudio.com> Reviewed-on: http://review.coreboot.org/11245 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'util/inteltool/memory.c')
-rw-r--r--util/inteltool/memory.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c
index 6c6a67db1a..313de5a1c1 100644
--- a/util/inteltool/memory.c
+++ b/util/inteltool/memory.c
@@ -194,7 +194,12 @@ int print_mchbar(struct pci_dev *nb, struct pci_access *pacc)
case PCI_DEVICE_ID_INTEL_82830M:
printf("This northbridge does not have MCHBAR.\n");
return 1;
- case PCI_DEVICE_ID_INTEL_82X4X:
+ case PCI_DEVICE_ID_INTEL_82XX4X:
+ case PCI_DEVICE_ID_INTEL_82Q45:
+ case PCI_DEVICE_ID_INTEL_82G45:
+ case PCI_DEVICE_ID_INTEL_82G41:
+ case PCI_DEVICE_ID_INTEL_82B43:
+ case PCI_DEVICE_ID_INTEL_82B43_2:
case PCI_DEVICE_ID_INTEL_82X38:
case PCI_DEVICE_ID_INTEL_32X0:
mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;