]> git.ipfire.org Git - people/ms/u-boot.git/commit
arc: cache - build invalidate_icache_all() and invalidate_dcache_all()
authorAlexey Brodkin <abrodkin@synopsys.com>
Fri, 27 Mar 2015 09:47:29 +0000 (12:47 +0300)
committerAlexey Brodkin <abrodkin@synopsys.com>
Fri, 3 Apr 2015 06:47:49 +0000 (09:47 +0300)
commitae4a351ad9e3b800e8eb55b27c302d8be256540e
treebf2c39420dd77f91f22083bdd912da76cf7e1439
parent36d68668e33191d55b2a23c9f0ec0c1ffecd6897
arc: cache - build invalidate_icache_all() and invalidate_dcache_all()
always

Make both invalidate_icache_all() and invalidate_dcache_all() available
even if U-Boot is configured with CONFIG_SYS_DCACHE_OFF and/or
CONFIG_SYS_ICACHE_OFF.

This is useful because configuration of U-Boot may not match actual
hardware features. Real board may have cache(s) but for some reason we
may want to run U-Boot with cache(s) disabled (for example if some
peripherals work improperly with existing drivers if data cache is
enabled). So board may start with cache(s) enabled (that's the case for
ARC cores with built-in caches) but early in U-Boot we disable cache(s)
and make sure all contents of data cache gets flushed in RAM.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
arch/arc/lib/cache.c