From: Marek Vasut Date: Wed, 4 Apr 2018 21:32:44 +0000 (+0200) Subject: ARM: rmobile: Do not init caches in TPL before DRAM X-Git-Tag: v2018.05-rc2~18^2~34 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c670607331dbdfdf74a52117b96426c50de9ecd0;p=u-boot ARM: rmobile: Do not init caches in TPL before DRAM 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 Cc: Nobuhiro Iwamatsu --- diff --git a/arch/arm/mach-rmobile/lowlevel_init_ca15.S b/arch/arm/mach-rmobile/lowlevel_init_ca15.S index a5dbbea9e1..ef2280bea4 100644 --- a/arch/arm/mach-rmobile/lowlevel_init_ca15.S +++ b/arch/arm/mach-rmobile/lowlevel_init_ca15.S @@ -11,6 +11,7 @@ #include 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)