From: Gabor Juhos Date: Mon, 21 Mar 2016 13:15:22 +0000 (+0000) Subject: brcm47xx: lzma-loader: fix cache invalidation X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=2dd07e93dd42fb7a9a0a942ef452f2d7a665b713 brcm47xx: lzma-loader: fix cache invalidation The current code only partially invalidates both caches because the cache size and cache-line size values are incorrectly passed to the C code. Fix the assembly code to pass the arguments in the correct order. Compile tested only. Signed-off-by: Gabor Juhos SVN-Revision: 49060 --- diff --git a/target/linux/brcm47xx/image/lzma-loader/src/head.S b/target/linux/brcm47xx/image/lzma-loader/src/head.S index 9c2a9c914a..930c9ba277 100644 --- a/target/linux/brcm47xx/image/lzma-loader/src/head.S +++ b/target/linux/brcm47xx/image/lzma-loader/src/head.S @@ -150,11 +150,11 @@ nodc: addu t0,s3 noic: - move a0,s3 /* icache line size */ - move a1,s4 /* icache size */ - move a2,s1 /* dcache line size */ + move a0,s4 /* icache size */ + move a1,s3 /* icache line size */ + move a2,s2 /* dcache size */ jal t2 - move a3,s2 /* dcache size */ + move a3,s1 /* dcache line size */ .set reorder END(startup)