diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-04-05 12:24:20 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-04-05 12:24:20 +0200 | 
| commit | 4db2fa7f9446d0f2fe8db3d62184b1212fe22707 (patch) | |
| tree | bc62cbfc14296551caebda626db7a90fef9ae844 /arch/powerpc/cpu/mpc85xx/cpu.c | |
| parent | 75df0d594990875419121c6f8687472ac9f4ae7a (diff) | |
| parent | 7d3053fbf16caad4745f42f7ae3e38e9d3e964b5 (diff) | |
| download | olio-uboot-2014.01-4db2fa7f9446d0f2fe8db3d62184b1212fe22707.tar.xz olio-uboot-2014.01-4db2fa7f9446d0f2fe8db3d62184b1212fe22707.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Conflicts:
	drivers/usb/host/ehci-pci.c
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/cpu.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu.c | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index 1aad2ba92..49ea6cc75 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/powerpc/cpu/mpc85xx/cpu.c @@ -33,6 +33,7 @@  #include <asm/cache.h>  #include <asm/io.h>  #include <asm/mmu.h> +#include <asm/fsl_ifc.h>  #include <asm/fsl_law.h>  #include <asm/fsl_lbc.h>  #include <post.h> @@ -280,7 +281,8 @@ int cpu_mmc_init(bd_t *bis)  /*   * Print out the state of various machine registers. - * Currently prints out LAWs, BR0/OR0, and TLBs + * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing + * parameters for IFC and TLBs   */  void mpc85xx_reginfo(void)  { @@ -289,6 +291,9 @@ void mpc85xx_reginfo(void)  #if defined(CONFIG_FSL_LBC)  	print_lbc_regs();  #endif +#ifdef CONFIG_FSL_IFC +	print_ifc_regs(); +#endif  } |