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
This commit is contained in:
parent
a9fc3309ec
commit
3235eea728
|
@ -114,6 +114,9 @@ int print_dmibar(struct pci_dev *nb)
|
||||||
case PCI_DEVICE_ID_INTEL_82810E_MC:
|
case PCI_DEVICE_ID_INTEL_82810E_MC:
|
||||||
printf("This northbrigde does not have DMIBAR.\n");
|
printf("This northbrigde does not have DMIBAR.\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
case PCI_DEVICE_ID_INTEL_X58:
|
||||||
|
dmibar_phys = pci_read_long(nb, 0x50) & 0xfffff000;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
printf("Error: Dumping DMIBAR on this northbridge is not (yet) supported.\n");
|
printf("Error: Dumping DMIBAR on this northbridge is not (yet) supported.\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue