From: York Sun Date: Mon, 31 Mar 2014 21:40:32 +0000 (-0700) Subject: armv8: Flush dcache before switching to EL2 X-Git-Tag: v2014.04~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=88590148fa8b7e2d7ca910a7a03b5c5700af58e4;p=oweals%2Fu-boot.git armv8: Flush dcache before switching to EL2 For ARMv8, U-boot has been running at EL3 with cache and MMU enabled. Without proper setup for EL2, cache and MMU are both disabled (out of reset). Before switching, we need to flush the dcache to make sure the data is in the main memory. Signed-off-by: York Sun Acked-by: David.Feng --- diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index a8295bf1f1..9782ddbb24 100644 --- a/arch/arm/lib/bootm.c +++ b/arch/arm/lib/bootm.c @@ -199,6 +199,7 @@ static void do_nonsec_virt_switch(void) #ifdef CONFIG_ARM64 smp_kick_all_cpus(); + flush_dcache_all(); /* flush cache before swtiching to EL2 */ armv8_switch_to_el2(); #ifdef CONFIG_ARMV8_SWITCH_TO_EL1 armv8_switch_to_el1();