[U-Boot] [v2] powerpc/mpc85xx: Clear L1 D-cache lock

6 Apr
2013
6 Apr
'13
1:07 a.m.
dcbi instruction has been used to clear D-cache lock. However, the cache lock is persistent for e6500 core. Use dcblc to clear the lock explicitly.
Signed-off-by: York Sun yorksun@freescale.com --- Change since v1: fix typo s/presistent/persistent/
arch/powerpc/cpu/mpc85xx/start.S | 1 + 1 file changed, 1 insertion(+)
diff --git a/arch/powerpc/cpu/mpc85xx/start.S b/arch/powerpc/cpu/mpc85xx/start.S index 4acfeb4..481b6f6 100644 --- a/arch/powerpc/cpu/mpc85xx/start.S +++ b/arch/powerpc/cpu/mpc85xx/start.S @@ -2045,6 +2045,7 @@ unlock_ram_in_cache: slwi r4,r4,(10 - 1 - L1_CACHE_SHIFT) mtctr r4 1: dcbi r0,r3 + dcblc r0,r3 addi r3,r3,CONFIG_SYS_CACHELINE_SIZE bdnz 1b sync
--
1.7.9.5
4415
Age (days ago)
4415
Last active (days ago)
0 comments
1 participants
participants (1)
-
York Sun