Author: oxygene Date: Fri Sep 3 11:31:13 2010 New Revision: 5770 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5770
Log: Add DMIBAR support for Intel X58 southbridge Signed-off-by: Warren Turkal <[email protected]> Acked-by: Patrick Georgi <[email protected]> Modified: trunk/util/inteltool/pcie.c Modified: trunk/util/inteltool/pcie.c ============================================================================== --- trunk/util/inteltool/pcie.c Fri Sep 3 10:57:32 2010 (r5769) +++ trunk/util/inteltool/pcie.c Fri Sep 3 11:31:13 2010 (r5770) @@ -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; -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

