diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2015-03-31 20:37:36 -0500 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2015-03-31 20:43:04 -0500 |
commit | 70ad44e523680de67dd8b7a7505d7f27799980ee (patch) | |
tree | 31e034a2a6106d10639135b9b00d11e3c3ca1eac | |
parent | f0beee980914360c8783406ef8694974467eb07b (diff) | |
download | u-boot-imx-70ad44e523680de67dd8b7a7505d7f27799980ee.zip u-boot-imx-70ad44e523680de67dd8b7a7505d7f27799980ee.tar.gz u-boot-imx-70ad44e523680de67dd8b7a7505d7f27799980ee.tar.bz2 |
MLK-10524: iMX6x: Implement workaround for Cortex-A9 errata 845369
Under very rare timing circumstances, transitioning into streaming
mode might create a data corruption. Present on Two or more processors
or 1 core with ACP, all revisions. This erratum can be worked round
by setting bit[22] of the undocumented Diagnostic Control Register to 1.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | arch/arm/cpu/armv7/start.S | 5 | ||||
-rw-r--r-- | include/configs/mx6_common.h | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -568,6 +568,7 @@ The following options need to be configured: CONFIG_ARM_ERRATA_751472 CONFIG_ARM_ERRATA_794072 CONFIG_ARM_ERRATA_761320 + CONFIG_ARM_ERRATA_845369 If set, the workarounds for these ARM errata are applied early during U-Boot startup. Note that these options force the diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S index 27be451..aec92b3 100644 --- a/arch/arm/cpu/armv7/start.S +++ b/arch/arm/cpu/armv7/start.S @@ -227,6 +227,11 @@ ENTRY(cpu_init_cp15) orr r0, r0, #1 << 21 @ set bit #21 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register #endif +#ifdef CONFIG_ARM_ERRATA_845369 + mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register + orr r0, r0, #1 << 22 @ set bit #22 + mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register +#endif mov pc, lr @ back to my caller ENDPROC(cpu_init_cp15) diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index 2e68cc5..2aae876 100644 --- a/include/configs/mx6_common.h +++ b/include/configs/mx6_common.h @@ -22,6 +22,7 @@ #define CONFIG_ARM_ERRATA_751472 #define CONFIG_ARM_ERRATA_794072 #define CONFIG_ARM_ERRATA_761320 +#define CONFIG_ARM_ERRATA_845369 #define CONFIG_BOARD_POSTCLK_INIT #define CONFIG_LDO_BYPASS_CHECK #define CONFIG_MXC_GPT_HCLK |