summaryrefslogtreecommitdiff
path: root/util/inteltool/memory.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-08-29 15:45:43 +0000
committerStefan Reinauer <stepan@openbios.org>2009-08-29 15:45:43 +0000
commitb2aedb1a3f2409b549c4094654281893b82c7435 (patch)
tree457da51421f91f7996ee2f02c13cff6a70770a3d /util/inteltool/memory.c
parent669c4a954ec6b57f0156844bea4f656f3aa9ccca (diff)
downloadcoreboot-b2aedb1a3f2409b549c4094654281893b82c7435.tar.xz
add i810 and ich0
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4620 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/memory.c')
-rw-r--r--util/inteltool/memory.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c
index 049ce828b7..a2060cbed0 100644
--- a/util/inteltool/memory.c
+++ b/util/inteltool/memory.c
@@ -43,7 +43,8 @@ int print_mchbar(struct pci_dev *nb)
mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
break;
- case 0x1234: // Dummy for non-existent functionality
+ case PCI_DEVICE_ID_INTEL_82810:
+ case PCI_DEVICE_ID_INTEL_82810DC:
printf("This northbrigde does not have MCHBAR.\n");
return 1;
default: