aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/cpu-probe.c
diff options
context:
space:
mode:
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)
104/* case CPU_20KC:*/ 104/* case CPU_20KC:*/
105 case CPU_24K: 105 case CPU_24K:
106 case CPU_25KF: 106 case CPU_25KF:
107 case CPU_34K:
107 cpu_wait = r4k_wait; 108 cpu_wait = r4k_wait;
108 printk(" available.\n"); 109 printk(" available.\n");
109 break; 110 break;
@@ -538,6 +539,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c)
538 /* Probe for L2 cache */ 539 /* Probe for L2 cache */
539 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT; 540 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
540 break; 541 break;
542 case PRID_IMP_34K:
543 c->cputype = CPU_34K;
544 c->isa_level = MIPS_CPU_ISA_M32;
545 break;
541 } 546 }
542} 547}
543 548