diff options
author | Warren Turkal <wt@penguintechs.org> | 2010-09-03 09:33:50 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-09-03 09:33:50 +0000 |
commit | f3d3cedf8021f1053788babacd629fd9eb1c988f (patch) | |
tree | 3e3ddaae8bdb77fc787414bfea58bac1542e4bbb /util/inteltool/rootcmplx.c | |
parent | 5329195e60ef26ce19562514671582040b5d32de (diff) | |
download | coreboot-f3d3cedf8021f1053788babacd629fd9eb1c988f.tar.gz coreboot-f3d3cedf8021f1053788babacd629fd9eb1c988f.tar.bz2 coreboot-f3d3cedf8021f1053788babacd629fd9eb1c988f.zip |
Add support for dumping RCBA registers for i7
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@5772 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/rootcmplx.c')
-rw-r--r-- | util/inteltool/rootcmplx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/inteltool/rootcmplx.c b/util/inteltool/rootcmplx.c index 215c15075601..cb5d2a379783 100644 --- a/util/inteltool/rootcmplx.c +++ b/util/inteltool/rootcmplx.c @@ -36,14 +36,15 @@ int print_rcba(struct pci_dev *sb) case PCI_DEVICE_ID_INTEL_ICH7M: case PCI_DEVICE_ID_INTEL_ICH7DH: case PCI_DEVICE_ID_INTEL_ICH7MDH: + case PCI_DEVICE_ID_INTEL_ICH8: + case PCI_DEVICE_ID_INTEL_ICH8M: case PCI_DEVICE_ID_INTEL_ICH9DH: case PCI_DEVICE_ID_INTEL_ICH9DO: case PCI_DEVICE_ID_INTEL_ICH9R: case PCI_DEVICE_ID_INTEL_ICH9: case PCI_DEVICE_ID_INTEL_ICH9M: case PCI_DEVICE_ID_INTEL_ICH9ME: - case PCI_DEVICE_ID_INTEL_ICH8M: - case PCI_DEVICE_ID_INTEL_ICH8: + case PCI_DEVICE_ID_INTEL_ICH10R: case PCI_DEVICE_ID_INTEL_NM10: rcba_phys = pci_read_long(sb, 0xf0) & 0xfffffffe; break; |