Make show_all_routes work for fam10.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5542 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b904d7bce9
commit
48beb82769
|
@ -10,3 +10,7 @@ obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr4.o
|
||||||
obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr5.o
|
obj-$(CONFIG_GENERATE_ACPI_TABLES) += sspr5.o
|
||||||
|
|
||||||
obj-y += get_pci1234.o
|
obj-y += get_pci1234.o
|
||||||
|
|
||||||
|
# Enable this if you want to check the values of the PCI routing registers.
|
||||||
|
# Call show_all_routes() anywhere amdfam10.h is included.
|
||||||
|
#obj-y += util.o
|
||||||
|
|
|
@ -1169,4 +1169,8 @@ static void wait_all_core0_mem_trained(struct sys_info *sysinfo)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __ROMCC__
|
||||||
|
void showallroutes(int level, device_t dev);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* AMDFAM10_H */
|
#endif /* AMDFAM10_H */
|
||||||
|
|
|
@ -19,18 +19,18 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* K8 northbridge utilities (dump routing registers).
|
* fam10 northbridge utilities (dump routing registers).
|
||||||
* Designed to be called at any time.
|
* Designed to be called at any time.
|
||||||
* It can be called before RAM is set up by including this file.
|
* It can be called before RAM is set up by including this file.
|
||||||
* It can be called after RAM is set up by including amdk8.h and enabling the
|
* It can be called after RAM is set up by including amdfam10.h and enabling the
|
||||||
* compilation of this file in src/northbridge/amd/amdk8/Makefile.inc.
|
* compilation of this file in src/northbridge/amd/amdfam10/Makefile.inc.
|
||||||
*/
|
*/
|
||||||
#ifndef __PRE_RAM__
|
#ifndef __PRE_RAM__
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/pci.h>
|
#include <device/pci.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#endif
|
#endif
|
||||||
#include "amdk8.h"
|
#include "amdfam10.h"
|
||||||
|
|
||||||
/* Function 1 */
|
/* Function 1 */
|
||||||
/* the DRAM, MMIO,and PCIIO routing are 64-bit registers, hence the ending at
|
/* the DRAM, MMIO,and PCIIO routing are 64-bit registers, hence the ending at
|
||||||
|
|
Loading…
Reference in New Issue