diff options
author | Shengzhou Liu <Shengzhou.Liu@freescale.com> | 2014-01-06 13:23:21 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-01-21 13:39:19 -0800 |
commit | 842eaa13610e2b05fe905a659a3c2afc4e7eabec (patch) | |
tree | 18d69ed3b7982d7f764918e0395e2f590d1e1af6 /arch | |
parent | 1576b558b93ed2fb77dcd8bc138e77fe139974e3 (diff) | |
download | u-boot-imx-842eaa13610e2b05fe905a659a3c2afc4e7eabec.zip u-boot-imx-842eaa13610e2b05fe905a659a3c2afc4e7eabec.tar.gz u-boot-imx-842eaa13610e2b05fe905a659a3c2afc4e7eabec.tar.bz2 |
powerpc/85xx: update erratum a006379
Enable Erratum A006379 for T2080, T2081, T4160, B4420.
Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/fsl_errata.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/fsl_errata.h b/arch/powerpc/include/asm/fsl_errata.h index 3cac2d4..a590919 100644 --- a/arch/powerpc/include/asm/fsl_errata.h +++ b/arch/powerpc/include/asm/fsl_errata.h @@ -15,7 +15,11 @@ 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_T4160) && SVR_MAJ(svr) <= 1) || + ((SVR_SOC_VER(svr) == SVR_B4860) && SVR_MAJ(svr) <= 2) || + ((SVR_SOC_VER(svr) == SVR_B4420) && 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; |