diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2011-01-13 01:54:01 -0600 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-14 01:32:22 -0600 | 
| commit | 1d2c2a62e328db22c38e3dfb3c0a8a373333471b (patch) | |
| tree | 4c1654c9b72778d02b19cddb926c61fa2405e2c5 /arch/powerpc/cpu/mpc85xx/cpu_init.c | |
| parent | 7c57f3e85970819e72e45cdb89d6dfbb896d557b (diff) | |
| download | olio-uboot-2014.01-1d2c2a62e328db22c38e3dfb3c0a8a373333471b.tar.xz olio-uboot-2014.01-1d2c2a62e328db22c38e3dfb3c0a8a373333471b.zip  | |
powerpc/85xx: Add the workaround for erratum CPC-A002 (enable on P4080)
CoreNet Platform Cache single-bit tag error scrubbing will cause tag
corruption.  Disable the feature to workaround the issue.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/cpu_init.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index 354b22231..c822d871a 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -142,6 +142,10 @@ static void enable_cpc(void)  		u32 cpccfg0 = in_be32(&cpc->cpccfg0);  		size += CPC_CFG0_SZ_K(cpccfg0); +#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002 +		setbits_be32(&cpc->cpchdbcr0, CPC_HDBCR0_TAG_ECC_SCRUB_DIS); +#endif +  		out_be32(&cpc->cpccsr0, CPC_CSR0_CE | CPC_CSR0_PE);  		/* Read back to sync write */  		in_be32(&cpc->cpccsr0);  |