2 * Copyright 2013 - 2015 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
11 #if defined(CONFIG_PPC)
12 #include <asm/processor.h>
13 #elif defined(CONFIG_ARCH_LS1021A)
14 #include <asm/arch-ls102xa/immap_ls102xa.h>
15 #elif defined(CONFIG_FSL_LAYERSCAPE)
16 #include <asm/arch/soc.h>
20 #ifdef CONFIG_SYS_FSL_ERRATUM_A006379
21 static inline bool has_erratum_a006379(void)
24 if (((SVR_SOC_VER(svr) == SVR_T4240) && SVR_MAJ(svr) <= 1) ||
25 ((SVR_SOC_VER(svr) == SVR_T4160) && SVR_MAJ(svr) <= 1) ||
26 ((SVR_SOC_VER(svr) == SVR_T4080) && SVR_MAJ(svr) <= 1) ||
27 ((SVR_SOC_VER(svr) == SVR_B4860) && SVR_MAJ(svr) <= 2) ||
28 ((SVR_SOC_VER(svr) == SVR_B4420) && SVR_MAJ(svr) <= 2) ||
29 ((SVR_SOC_VER(svr) == SVR_T2080) && SVR_MAJ(svr) <= 1) ||
30 ((SVR_SOC_VER(svr) == SVR_T2081) && SVR_MAJ(svr) <= 1))
37 #ifdef CONFIG_SYS_FSL_ERRATUM_A007186
38 static inline bool has_erratum_a007186(void)
41 u32 soc = SVR_SOC_VER(svr);
45 return IS_SVR_REV(svr, 2, 0);
47 return IS_SVR_REV(svr, 2, 0);
49 return IS_SVR_REV(svr, 2, 0);
51 return IS_SVR_REV(svr, 2, 0);
54 return IS_SVR_REV(svr, 1, 0) || IS_SVR_REV(svr, 1, 1);
61 #ifdef CONFIG_SYS_FSL_ERRATUM_A008378
62 static inline bool has_erratum_a008378(void)
65 u32 soc = SVR_SOC_VER(svr);
69 #ifdef CONFIG_ARCH_LS1021A
74 return IS_SVR_REV(svr, 1, 0);
79 return IS_SVR_REV(svr, 1, 0);
84 return IS_SVR_REV(svr, 1, 0) || IS_SVR_REV(svr, 1, 1);
92 #endif /* _FSL_ERRATA_H */