summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/mpc85xx/cmd_errata.c
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2011-01-13 01:54:01 -0600
committerKumar Gala <galak@kernel.crashing.org>2011-01-14 01:32:22 -0600
commit1d2c2a62e328db22c38e3dfb3c0a8a373333471b (patch)
tree4c1654c9b72778d02b19cddb926c61fa2405e2c5 /arch/powerpc/cpu/mpc85xx/cmd_errata.c
parent7c57f3e85970819e72e45cdb89d6dfbb896d557b (diff)
downloadu-boot-imx-1d2c2a62e328db22c38e3dfb3c0a8a373333471b.zip
u-boot-imx-1d2c2a62e328db22c38e3dfb3c0a8a373333471b.tar.gz
u-boot-imx-1d2c2a62e328db22c38e3dfb3c0a8a373333471b.tar.bz2
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/cmd_errata.c')
-rw-r--r--arch/powerpc/cpu/mpc85xx/cmd_errata.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cmd_errata.c b/arch/powerpc/cpu/mpc85xx/cmd_errata.c
index 4e2cb4a..ae6af4f 100644
--- a/arch/powerpc/cpu/mpc85xx/cmd_errata.c
+++ b/arch/powerpc/cpu/mpc85xx/cmd_errata.c
@@ -59,6 +59,10 @@ static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
#if defined(CONFIG_SYS_FSL_ERRATUM_ESDHC136)
puts("Work-around for Erratum ESDHC136 enabled\n");
#endif
+#ifdef CONFIG_SYS_FSL_ERRATUM_CPC_A002
+ puts("Work-around for Erratum CPC-A002 enabled\n");
+#endif
+
return 0;
}