[U-Boot] [PATCH 4/5] cmd: go: Flush cache before starting

Emmanuel Vadot manu at freebsd.org
Mon Apr 30 08:34:36 UTC 2018


Some application might load some code at location that contain stale
cache entries. Before running a elf or raw binary, flush the caches
if they are enabled.

Signed-off-by: Emmanuel Vadot <manu at freebsd.org>
---
 cmd/boot.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/cmd/boot.c b/cmd/boot.c
index 72f2cf362d..0b3979f6a5 100644
--- a/cmd/boot.c
+++ b/cmd/boot.c
@@ -19,6 +19,16 @@ __attribute__((weak))
 unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
 				 char * const argv[])
 {
+#if defined(CONFIG_SYS_HAVE_DCACHE_MAINTENANCE) && \
+	!defined(CONFIG_SYS_DCACHE_OFF)
+	if (dcache_status())
+		flush_dcache_all();
+#endif
+#if defined(CONFIG_SYS_HAVE_ICACHE_MAINTENANCE) && \
+	!defined(CONFIG_SYS_ICACHE_OFF)
+	if (icache_status())
+		invalidate_icache_all();
+#endif
 	return entry (argc, argv);
 }
 
-- 
2.16.3



More information about the U-Boot mailing list