MIPS: make cache operation mode configurable
Currently the cache operation mode is hard-coded to CONF_CM_CACHABLE_NONCOHERENT. This is not appropiate for CPUs or SOCs which operate at a different mode. This patch makes the cache operation mode configurable via board config. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com> Acked-by: Thomas Langer <thomas.langer@lantiq.com> Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
This commit is contained in:
parent
7185adb48e
commit
ab2a98b117
|
@ -27,6 +27,10 @@
|
||||||
#include <asm/regdef.h>
|
#include <asm/regdef.h>
|
||||||
#include <asm/mipsregs.h>
|
#include <asm/mipsregs.h>
|
||||||
|
|
||||||
|
#ifndef CONFIG_SYS_MIPS_CACHE_MODE
|
||||||
|
#define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For the moment disable interrupts, mark the kernel mode and
|
* For the moment disable interrupts, mark the kernel mode and
|
||||||
* set ST0_KX so that the CPU does not spit fire when using
|
* set ST0_KX so that the CPU does not spit fire when using
|
||||||
|
@ -249,7 +253,7 @@ reset:
|
||||||
nop
|
nop
|
||||||
|
|
||||||
/* ... and enable them */
|
/* ... and enable them */
|
||||||
li t0, CONF_CM_CACHABLE_NONCOHERENT
|
li t0, CONFIG_SYS_MIPS_CACHE_MODE
|
||||||
mtc0 t0, CP0_CONFIG
|
mtc0 t0, CP0_CONFIG
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue