summaryrefslogtreecommitdiff
path: root/util/inteltool/memory.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2014-11-05 03:18:44 +0100
committerMathias Krause <minipli@googlemail.com>2014-11-06 06:44:29 +0100
commit0cc8f29316f6930406d70f71fc9409e295516b1e (patch)
tree9a0e3599675a22638ecb00524ca4fdf0701cd856 /util/inteltool/memory.c
parent5e1d34b19a6ad9c65f7c7833df3791707d5d9905 (diff)
downloadcoreboot-0cc8f29316f6930406d70f71fc9409e295516b1e.tar.xz
inteltool: Add support for Sandy Bridge desktop processors
Change-Id: I5e68b89c30d5550e4bce5c3e4c7b0689c38756bc Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: http://review.coreboot.org/7337 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Mathias Krause <minipli@googlemail.com>
Diffstat (limited to 'util/inteltool/memory.c')
-rw-r--r--util/inteltool/memory.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c
index a0f0a65412..e2b0ab488c 100644
--- a/util/inteltool/memory.c
+++ b/util/inteltool/memory.c
@@ -205,7 +205,8 @@ int print_mchbar(struct pci_dev *nb, struct pci_access *pacc)
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
mchbar_phys &= 0x0000000fffffc000UL; /* 35:14 */
break;
- case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN:
+ case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
+ case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_A: /* pretty printing not implemented yet */
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_B:
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_C:
@@ -251,7 +252,8 @@ int print_mchbar(struct pci_dev *nb, struct pci_access *pacc)
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_B:
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_C:
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
- case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN:
+ case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
+ case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
ivybridge_dump_timings();
break;
}