diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2015-04-03 09:59:45 -0500 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-25 16:08:38 +0800 |
commit | 850f27d137a083a141c99fe9828d596807937d38 (patch) | |
tree | e16717a942de02d74ac4b6acd50ebcf36c397018 /include | |
parent | f20a65847577ff40dc7e3739a0bb69926885c734 (diff) | |
download | u-boot-imx-850f27d137a083a141c99fe9828d596807937d38.zip u-boot-imx-850f27d137a083a141c99fe9828d596807937d38.tar.gz u-boot-imx-850f27d137a083a141c99fe9828d596807937d38.tar.bz2 |
MLK-10576 ARM: i.MX6: exclude the ARM errata from i.MX6 UP system
The ARM errata 751472, 794072, 761320, 845369 only applied
to the following configuration:
This erratum affects configurations with either:
- One processor if the ACP is present
- Two or more processors
i.MX6 family does not have the ACP and thus only the MPCore system
will be impacted, which are the i.MX6DQ, i.MX6DL, and i.MX6QP.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Signed-off-by: Jason Liu <r64343@freescale.com>
(cherry picked from commit 0db960784ba4f631ee5c0321b5d25f3b1ac55640)
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx6_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index cf1e826..b910d74 100644 --- a/include/configs/mx6_common.h +++ b/include/configs/mx6_common.h @@ -10,10 +10,13 @@ #ifndef CONFIG_MX6UL #define CONFIG_ARM_ERRATA_743622 +#if (defined(CONFIG_MX6QP) || defined(CONFIG_MX6Q) ||\ +defined(CONFIG_MX6DL)) && !defined(CONFIG_MX6SOLO) #define CONFIG_ARM_ERRATA_751472 #define CONFIG_ARM_ERRATA_794072 #define CONFIG_ARM_ERRATA_761320 #define CONFIG_ARM_ERRATA_845369 +#endif #ifndef CONFIG_SYS_L2CACHE_OFF #define CONFIG_SYS_L2_PL310 |