diff options
author | Ye.Li <B37916@freescale.com> | 2015-03-23 15:56:45 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2015-04-29 15:03:07 +0800 |
commit | 8397fa986a27dda1bf933387b7389f493b0cb0dd (patch) | |
tree | a63b92e0953011f51a502890ee91b4ac79eb2e68 /arch | |
parent | 103094fd6547ec8de13e286327642f2a3285799e (diff) | |
download | u-boot-imx-8397fa986a27dda1bf933387b7389f493b0cb0dd.zip u-boot-imx-8397fa986a27dda1bf933387b7389f493b0cb0dd.tar.gz u-boot-imx-8397fa986a27dda1bf933387b7389f493b0cb0dd.tar.bz2 |
MLK-10448-4 mx6: hab : Remove the cache issue workaroud in hab for i.MX6QP
Since the i.MX6QP has fixed the issue in boot ROM, so remove the workaround
for i.MX6QP.
Signed-off-by: Ye.Li <B37916@freescale.com>
(cherry picked from commit 96e13b57ead3ed00c3a32c5373c7a2a876947f99)
Conflicts:
arch/arm/cpu/armv7/mx6/hab.c
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/hab.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/mx6/hab.c b/arch/arm/cpu/armv7/mx6/hab.c index a360386..d6ca139 100644 --- a/arch/arm/cpu/armv7/mx6/hab.c +++ b/arch/arm/cpu/armv7/mx6/hab.c @@ -257,7 +257,8 @@ uint32_t authenticate_image(uint32_t ddr_start, uint32_t image_size) * do cache flushes. don't think any * exist, so we ignore them. */ - writel(1, MX6DQ_PU_IROM_MMU_EN_VAR); + if (!is_mx6dqp()) + writel(1, MX6DQ_PU_IROM_MMU_EN_VAR); } else if (is_cpu_type(MXC_CPU_MX6DL) || is_cpu_type(MXC_CPU_MX6SOLO)) { writel(1, MX6DLS_PU_IROM_MMU_EN_VAR); |