]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: implement invalidate_icache_all on ARM11
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sun, 16 Jun 2024 17:31:04 +0000 (19:31 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 3 Jul 2024 20:44:03 +0000 (14:44 -0600)
In EFI sub-system we rely on invalidate_icache_all() to invalidate the
instruction cache after loading binaries. Add the missing implementation on
ARM1136, ARM1176.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
arch/arm/cpu/arm11/cpu.c

index 1e16b89d0066349a5e257e0c364cb477b909324a..d092c58b5206bbc041b37fe2fb505ea98d2a145e 100644 (file)
@@ -117,3 +117,15 @@ void enable_caches(void)
 #endif
 }
 #endif
+
+#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
+/* Invalidate entire I-cache */
+void invalidate_icache_all(void)
+{
+       unsigned long i = 0;
+
+       asm ("mcr p15, 0, %0, c7, c5, 0" : : "r" (i));
+}
+#else
+void invalidate_icache_all(void) {}
+#endif