]> git.sur5r.net Git - u-boot/commitdiff
ARM: rmobile: Do not init caches in TPL before DRAM
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Wed, 4 Apr 2018 21:32:44 +0000 (23:32 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Wed, 11 Apr 2018 21:11:54 +0000 (23:11 +0200)
Skip the cache initialization, which can be done later on in U-Boot
proper, since this interferes with early DRAM initialization in TPL.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
arch/arm/mach-rmobile/lowlevel_init_ca15.S

index a5dbbea9e1527d79f26348d939735408bd65e4ef..ef2280bea4216816c7fea4ca040cfb3df3cb5a7c 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/linkage.h>
 
 ENTRY(lowlevel_init)
+#ifndef CONFIG_TPL_BUILD
        mrc     p15, 0, r4, c0, c0, 5 /* mpidr */
        orr     r4, r4, r4, lsr #6
        and     r4, r4, #7 /* id 0-3 = ca15.0,1,2,3 */
@@ -83,6 +84,7 @@ _exit_init_l2_a15:
        bl s_init
 
        ldr     lr, [sp]
+#endif
        mov     pc, lr
        nop
 ENDPROC(lowlevel_init)