b890a1228d
As per discussion with lawyers[tm], it's not a good idea to shorten the license header too much - not for legal reasons but because there are tools that look for them, and giving them a standard pattern simplifies things. However, we got confirmation that we don't have to update every file ever added to coreboot whenever the FSF gets a new lease, but can drop the address instead. util/kconfig is excluded because that's imported code that we may want to synchronize every now and then. $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} + $ find * -type f -a \! -name \*.patch \ -a \! -name \*_shipped \ -a \! -name LICENSE_GPL \ -a \! -name LGPL.txt \ -a \! -name COPYING \ -a \! -name DISCLAIMER \ -exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} + Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/9233 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
133 lines
4 KiB
C
133 lines
4 KiB
C
/*
|
|
* inteltool - dump all registers on an Intel CPU + chipset based system.
|
|
*
|
|
* Copyright (C) 2008 by coresystems GmbH
|
|
* written by Stefan Reinauer <stepan@coresystems.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "inteltool.h"
|
|
|
|
int print_rcba(struct pci_dev *sb)
|
|
{
|
|
int i, size = 0x4000;
|
|
volatile uint8_t *rcba;
|
|
uint32_t rcba_phys;
|
|
|
|
printf("\n============= RCBA ==============\n\n");
|
|
|
|
switch (sb->device_id) {
|
|
case PCI_DEVICE_ID_INTEL_ICH6:
|
|
case PCI_DEVICE_ID_INTEL_ICH7:
|
|
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_ICH8ME:
|
|
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_ICH10R:
|
|
case PCI_DEVICE_ID_INTEL_NM10:
|
|
case PCI_DEVICE_ID_INTEL_I63XX:
|
|
case PCI_DEVICE_ID_INTEL_3400:
|
|
case PCI_DEVICE_ID_INTEL_3420:
|
|
case PCI_DEVICE_ID_INTEL_3450:
|
|
case PCI_DEVICE_ID_INTEL_3400_DESKTOP:
|
|
case PCI_DEVICE_ID_INTEL_3400_MOBILE:
|
|
case PCI_DEVICE_ID_INTEL_3400_MOBILE_SFF:
|
|
case PCI_DEVICE_ID_INTEL_B55_A:
|
|
case PCI_DEVICE_ID_INTEL_B55_B:
|
|
case PCI_DEVICE_ID_INTEL_H55:
|
|
case PCI_DEVICE_ID_INTEL_H57:
|
|
case PCI_DEVICE_ID_INTEL_HM55:
|
|
case PCI_DEVICE_ID_INTEL_HM57:
|
|
case PCI_DEVICE_ID_INTEL_P55:
|
|
case PCI_DEVICE_ID_INTEL_PM55:
|
|
case PCI_DEVICE_ID_INTEL_Q57:
|
|
case PCI_DEVICE_ID_INTEL_QM57:
|
|
case PCI_DEVICE_ID_INTEL_QS57:
|
|
case PCI_DEVICE_ID_INTEL_Z68:
|
|
case PCI_DEVICE_ID_INTEL_P67:
|
|
case PCI_DEVICE_ID_INTEL_UM67:
|
|
case PCI_DEVICE_ID_INTEL_HM65:
|
|
case PCI_DEVICE_ID_INTEL_H67:
|
|
case PCI_DEVICE_ID_INTEL_HM67:
|
|
case PCI_DEVICE_ID_INTEL_Q65:
|
|
case PCI_DEVICE_ID_INTEL_QS67:
|
|
case PCI_DEVICE_ID_INTEL_Q67:
|
|
case PCI_DEVICE_ID_INTEL_QM67:
|
|
case PCI_DEVICE_ID_INTEL_B65:
|
|
case PCI_DEVICE_ID_INTEL_C202:
|
|
case PCI_DEVICE_ID_INTEL_C204:
|
|
case PCI_DEVICE_ID_INTEL_C206:
|
|
case PCI_DEVICE_ID_INTEL_H61:
|
|
case PCI_DEVICE_ID_INTEL_Z77:
|
|
case PCI_DEVICE_ID_INTEL_Z75:
|
|
case PCI_DEVICE_ID_INTEL_Q77:
|
|
case PCI_DEVICE_ID_INTEL_Q75:
|
|
case PCI_DEVICE_ID_INTEL_B75:
|
|
case PCI_DEVICE_ID_INTEL_H77:
|
|
case PCI_DEVICE_ID_INTEL_C216:
|
|
case PCI_DEVICE_ID_INTEL_QM77:
|
|
case PCI_DEVICE_ID_INTEL_QS77:
|
|
case PCI_DEVICE_ID_INTEL_HM77:
|
|
case PCI_DEVICE_ID_INTEL_UM77:
|
|
case PCI_DEVICE_ID_INTEL_HM76:
|
|
case PCI_DEVICE_ID_INTEL_HM75:
|
|
case PCI_DEVICE_ID_INTEL_HM70:
|
|
case PCI_DEVICE_ID_INTEL_NM70:
|
|
case PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_FULL:
|
|
case PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_PREM:
|
|
case PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_BASE:
|
|
case PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP:
|
|
rcba_phys = pci_read_long(sb, 0xf0) & 0xfffffffe;
|
|
break;
|
|
case PCI_DEVICE_ID_INTEL_ICH:
|
|
case PCI_DEVICE_ID_INTEL_ICH0:
|
|
case PCI_DEVICE_ID_INTEL_ICH2:
|
|
case PCI_DEVICE_ID_INTEL_ICH4:
|
|
case PCI_DEVICE_ID_INTEL_ICH4M:
|
|
case PCI_DEVICE_ID_INTEL_ICH5:
|
|
printf("This southbridge does not have RCBA.\n");
|
|
return 1;
|
|
default:
|
|
printf("Error: Dumping RCBA on this southbridge is not (yet) supported.\n");
|
|
return 1;
|
|
}
|
|
|
|
rcba = map_physical(rcba_phys, size);
|
|
|
|
if (rcba == NULL) {
|
|
perror("Error mapping RCBA");
|
|
exit(1);
|
|
}
|
|
|
|
printf("RCBA = 0x%08x (MEM)\n\n", rcba_phys);
|
|
|
|
for (i = 0; i < size; i += 4) {
|
|
if (*(uint32_t *)(rcba + i))
|
|
printf("0x%04x: 0x%08x\n", i, *(uint32_t *)(rcba + i));
|
|
}
|
|
|
|
unmap_physical((void *)rcba, size);
|
|
return 0;
|
|
}
|