[U-Boot] [PATCH] powerpc/t208x: enable erratum a006379 for t208x
Shengzhou Liu
Shengzhou.Liu at freescale.com
Fri Jan 3 06:46:32 CET 2014
Erratum A006379 applies to T2080/T2081 also.
Signed-off-by: Shengzhou Liu <Shengzhou.Liu at freescale.com>
---
arch/powerpc/include/asm/fsl_errata.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/arch/powerpc/include/asm/fsl_errata.h b/arch/powerpc/include/asm/fsl_errata.h
index 8af6751..671296a 100644
--- a/arch/powerpc/include/asm/fsl_errata.h
+++ b/arch/powerpc/include/asm/fsl_errata.h
@@ -29,7 +29,9 @@ static inline bool has_erratum_a006379(void)
{
u32 svr = get_svr();
if (((SVR_SOC_VER(svr) == SVR_T4240) && SVR_MAJ(svr) <= 1) ||
- ((SVR_SOC_VER(svr) == SVR_B4860) && SVR_MAJ(svr) <= 2))
+ ((SVR_SOC_VER(svr) == SVR_B4860) && SVR_MAJ(svr) <= 2) ||
+ ((SVR_SOC_VER(svr) == SVR_T2080) && SVR_MAJ(svr) <= 1) ||
+ ((SVR_SOC_VER(svr) == SVR_T2081) && SVR_MAJ(svr) <= 1))
return true;
return false;
--
1.8.0
More information about the U-Boot
mailing list