[U-Boot] [PATCH] cmd: ximg: Respect cache line size for flushing

Mario Six mario.six at gdsys.cc
Wed Mar 28 12:39:10 UTC 2018


Make sure that the cache line size if respected when flushing the cache.

Signed-off-by: Mario Six <mario.six at gdsys.cc>
---
 cmd/ximg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/ximg.c b/cmd/ximg.c
index 21b5c37721..069c6ad39a 100644
--- a/cmd/ximg.c
+++ b/cmd/ximg.c
@@ -249,7 +249,7 @@ do_imgextract(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
 		puts("OK\n");
 	}
 
-	flush_cache(dest, len);
+	flush_cache(dest, ALIGN(len, ARCH_DMA_MINALIGN));
 
 	env_set_hex("fileaddr", data);
 	env_set_hex("filesize", len);
-- 
2.16.1



More information about the U-Boot mailing list