Add DMIBAR support for Intel X58 southbridge

Signed-off-by: Warren Turkal <wt@penguintechs.org>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5770 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/util/inteltool/pcie.c b/util/inteltool/pcie.c
index b4ad732..2f665d7 100644
--- a/util/inteltool/pcie.c
+++ b/util/inteltool/pcie.c
@@ -114,6 +114,9 @@
 	case PCI_DEVICE_ID_INTEL_82810E_MC:
 		printf("This northbrigde does not have DMIBAR.\n");
 		return 1;
+	case PCI_DEVICE_ID_INTEL_X58:
+		dmibar_phys = pci_read_long(nb, 0x50) & 0xfffff000;
+		break;
 	default:
 		printf("Error: Dumping DMIBAR on this northbridge is not (yet) supported.\n");
 		return 1;