summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/cpu-probe.c
diff options
context:
space:
mode:
authorRalf Baechle2005-07-12 18:12:05 +0200
committerRalf Baechle2005-10-29 20:31:45 +0200
commitbbc7f22f6dca8a075b565ade49e9a982f89707c3 (patch)
tree06f2055cd1bb17f1330023bf111dc9fa7b1d589c /arch/mips/kernel/cpu-probe.c
parentGenerate code for MIPS32 / MIPS64 Release 2 if configured for one of (diff)
downloadkernel-qcow2-linux-bbc7f22f6dca8a075b565ade49e9a982f89707c3.tar.gz
kernel-qcow2-linux-bbc7f22f6dca8a075b565ade49e9a982f89707c3.tar.xz
kernel-qcow2-linux-bbc7f22f6dca8a075b565ade49e9a982f89707c3.zip
Detect the 34K.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cpu-probe.c')
-rw-r--r--arch/mips/kernel/cpu-probe.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index 2b6db681417d..e40bd6fccea5 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -104,6 +104,7 @@ static inline void check_wait(void)
/* case CPU_20KC:*/
case CPU_24K:
case CPU_25KF:
+ case CPU_34K:
cpu_wait = r4k_wait;
printk(" available.\n");
break;
@@ -538,6 +539,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c)
/* Probe for L2 cache */
c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
break;
+ case PRID_IMP_34K:
+ c->cputype = CPU_34K;
+ c->isa_level = MIPS_CPU_ISA_M32;
+ break;
}
}