diff options
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/cpu_init.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init.c | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index f01804bbb..d1155e812 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -350,6 +350,10 @@ int cpu_init_r(void)  #elif defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2)  	struct ccsr_cluster_l2 * l2cache = (void __iomem *)CONFIG_SYS_FSL_CLUSTER_1_L2;  #endif +#if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP) +	extern int spin_table_compat; +	const char *spin; +#endif  #if defined(CONFIG_SYS_P4080_ERRATUM_CPU22) || \  	defined(CONFIG_SYS_FSL_ERRATUM_NMG_CPU_A011) @@ -395,6 +399,14 @@ int cpu_init_r(void)  	}  #endif +#if defined(CONFIG_PPC_SPINTABLE_COMPATIBLE) && defined(CONFIG_MP) +	spin = getenv("spin_table_compat"); +	if (spin && (*spin == 'n')) +		spin_table_compat = 0; +	else +		spin_table_compat = 1; +#endif +  	puts ("L2:    ");  #if defined(CONFIG_L2_CACHE) @@ -470,7 +482,7 @@ int cpu_init_r(void)  				&& l2srbar >= CONFIG_SYS_FLASH_BASE) {  			l2srbar = CONFIG_SYS_INIT_L2_ADDR;  			l2cache->l2srbar0 = l2srbar; -			printf("moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR); +			printf(", moving to 0x%08x", CONFIG_SYS_INIT_L2_ADDR);  		}  #endif /* CONFIG_SYS_INIT_L2_ADDR */  		puts("\n"); |