diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-15 11:35:45 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-16 13:23:49 -0400 |
commit | 64bfca5cd8c40fa138ad5db2513e8bcf8bd54ebd (patch) | |
tree | 08caa0c52a24744e52012f3ccab5325d97e425ee /arch | |
parent | 985c30ef4d7c2a4f0e979a507a7e2f7f09b096c3 (diff) |
[MIPS] Cache: Provide more information on cache policy on bootup.
This should help making bug reports for the gadzillion of cores with all
their configuration and synthesis options more useful.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/mm/c-r4k.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 971f6c047b8a..d7088331fb0f 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -983,11 +983,15 @@ static void __init probe_pcache(void) | |||
983 | 983 | ||
984 | printk("Primary instruction cache %ldkB, %s, %s, linesize %d bytes.\n", | 984 | printk("Primary instruction cache %ldkB, %s, %s, linesize %d bytes.\n", |
985 | icache_size >> 10, | 985 | icache_size >> 10, |
986 | cpu_has_vtag_icache ? "virtually tagged" : "physically tagged", | 986 | cpu_has_vtag_icache ? "VIVT" : "VIPT", |
987 | way_string[c->icache.ways], c->icache.linesz); | 987 | way_string[c->icache.ways], c->icache.linesz); |
988 | 988 | ||
989 | printk("Primary data cache %ldkB, %s, linesize %d bytes.\n", | 989 | printk("Primary data cache %ldkB, %s, %s, %s, linesize %d bytes\n", |
990 | dcache_size >> 10, way_string[c->dcache.ways], c->dcache.linesz); | 990 | dcache_size >> 10, way_string[c->dcache.ways], |
991 | (c->dcache.flags & MIPS_CACHE_PINDEX) ? "PIPT" : "VIPT", | ||
992 | (c->dcache.flags & MIPS_CACHE_ALIASES) ? | ||
993 | "cache aliases" : "no aliases", | ||
994 | c->dcache.linesz); | ||
991 | } | 995 | } |
992 | 996 | ||
993 | /* | 997 | /* |