diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2015-04-03 09:59:45 -0500 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2015-04-03 10:23:38 -0500 |
commit | 6bb0820f6e663e3422be79421abcc454b7ea4428 (patch) | |
tree | 2c3cc1783610a409db7773140110653be991b5fb /include | |
parent | 85b8856fc4892422e5b2a8e6b3f6bb6acd179b30 (diff) | |
download | u-boot-imx-6bb0820f6e663e3422be79421abcc454b7ea4428.zip u-boot-imx-6bb0820f6e663e3422be79421abcc454b7ea4428.tar.gz u-boot-imx-6bb0820f6e663e3422be79421abcc454b7ea4428.tar.bz2 |
MLK-10576 ARM: i.MX6: exclude the ARM errata from i.MX6 UP systemrel_imx_3.10.17_1.0.3_patchimx_v2013.04_3.10.17_1.0.0_ga
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.
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 064fe39..610d660 100644 --- a/include/configs/mx6_common.h +++ b/include/configs/mx6_common.h @@ -18,10 +18,13 @@ #define __MX6_COMMON_H #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 #define CONFIG_LDO_BYPASS_CHECK #endif |