]> git.baikalelectronics.ru Git - uboot.git/commit
MIPS: Break out of cache loops for unimplemented caches
authorPaul Burton <paul.burton@mips.com>
Tue, 21 Nov 2017 19:18:39 +0000 (11:18 -0800)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Tue, 28 Nov 2017 20:59:30 +0000 (21:59 +0100)
commitc0a57a3899d7754f293fcb2659e0d54100b1299a
tree79770febd4fad22fe90a7eaa69fc37cee5aa62ae
parentc17d08903ad3add70dd05b18bd3559330272f198
MIPS: Break out of cache loops for unimplemented caches

If we run on a CPU which doesn't implement a particular cache then we
would previously get stuck in an infinite loop, executing a cache op on
the first "line" of the missing cache & then incrementing the address by
0. This was being avoided for the L2 caches, but not for the L1s. Fix
this by generalising the check for a zero line size & avoiding the cache
op loop when this is the case.

Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Cc: u-boot@lists.denx.de
arch/mips/lib/cache.c