]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ARM: non-sec: flush code cacheline aligned
authorStefan Agner <stefan.agner@toradex.com>
Wed, 3 Aug 2016 20:08:55 +0000 (13:08 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 12 Aug 2016 13:22:15 +0000 (09:22 -0400)
Flush operations need to be cacheline aligned to take effect, make
sure to flush always complete cachelines. This avoids messages such
as:
CACHE: Misaligned operation at range [00900000009004d9]

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Tested-by: Fabio Estevam <fabio.estevam@nxp.com>
arch/arm/cpu/armv7/virt-v7.c

index 9c533060b85522120a3b000ad220291d3d95cbeb..d33e5c61a9c29890989666b472ad5eb355961e01 100644 (file)
@@ -54,10 +54,12 @@ static void relocate_secure_section(void)
 {
 #ifdef CONFIG_ARMV7_SECURE_BASE
        size_t sz = __secure_end - __secure_start;
+       unsigned long szflush = ALIGN(sz + 1, CONFIG_SYS_CACHELINE_SIZE);
 
        memcpy((void *)CONFIG_ARMV7_SECURE_BASE, __secure_start, sz);
+
        flush_dcache_range(CONFIG_ARMV7_SECURE_BASE,
-                          CONFIG_ARMV7_SECURE_BASE + sz + 1);
+                          CONFIG_ARMV7_SECURE_BASE + szflush);
        protect_secure_section();
        invalidate_icache_all();
 #endif