2 * Processor capabilities determination functions.
4 * Copyright (C) xxxx the Anonymous
5 * Copyright (C) 1994 - 2006 Ralf Baechle
6 * Copyright (C) 2003, 2004 Maciej W. Rozycki
7 * Copyright (C) 2001, 2004, 2011, 2012 MIPS Technologies, Inc.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/ptrace.h>
17 #include <linux/smp.h>
18 #include <linux/stddef.h>
19 #include <linux/export.h>
23 #include <asm/cpu-type.h>
25 #include <asm/mipsregs.h>
26 #include <asm/watch.h>
28 #include <asm/spram.h>
29 #include <asm/uaccess.h>
31 static int mips_fpu_disabled
;
33 static int __init
fpu_disable(char *s
)
35 cpu_data
[0].options
&= ~MIPS_CPU_FPU
;
36 mips_fpu_disabled
= 1;
41 __setup("nofpu", fpu_disable
);
43 int mips_dsp_disabled
;
45 static int __init
dsp_disable(char *s
)
47 cpu_data
[0].ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
48 mips_dsp_disabled
= 1;
53 __setup("nodsp", dsp_disable
);
55 static inline void check_errata(void)
57 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
59 switch (current_cpu_type()) {
62 * Erratum "RPS May Cause Incorrect Instruction Execution"
63 * This code only handles VPE0, any SMP/SMTC/RTOS code
64 * making use of VPE1 will be responsable for that VPE.
66 if ((c
->processor_id
& PRID_REV_MASK
) <= PRID_REV_34K_V1_0_2
)
67 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS
);
74 void __init
check_bugs32(void)
80 * Probe whether cpu has config register by trying to play with
81 * alternate cache bit and see whether it matters.
82 * It's used by cpu_probe to distinguish between R3000A and R3081.
84 static inline int cpu_has_confreg(void)
86 #ifdef CONFIG_CPU_R3000
87 extern unsigned long r3k_cache_size(unsigned long);
88 unsigned long size1
, size2
;
89 unsigned long cfg
= read_c0_conf();
91 size1
= r3k_cache_size(ST0_ISC
);
92 write_c0_conf(cfg
^ R30XX_CONF_AC
);
93 size2
= r3k_cache_size(ST0_ISC
);
95 return size1
!= size2
;
101 static inline void set_elf_platform(int cpu
, const char *plat
)
104 __elf_platform
= plat
;
108 * Get the FPU Implementation/Revision.
110 static inline unsigned long cpu_get_fpu_id(void)
112 unsigned long tmp
, fpu_id
;
114 tmp
= read_c0_status();
116 fpu_id
= read_32bit_cp1_register(CP1_REVISION
);
117 write_c0_status(tmp
);
122 * Check the CPU has an FPU the official way.
124 static inline int __cpu_has_fpu(void)
126 return ((cpu_get_fpu_id() & FPIR_IMP_MASK
) != FPIR_IMP_NONE
);
129 static inline void cpu_probe_vmbits(struct cpuinfo_mips
*c
)
131 #ifdef __NEED_VMBITS_PROBE
132 write_c0_entryhi(0x3fffffffffffe000ULL
);
133 back_to_back_c0_hazard();
134 c
->vmbits
= fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL
);
138 static void set_isa(struct cpuinfo_mips
*c
, unsigned int isa
)
141 case MIPS_CPU_ISA_M64R2
:
142 c
->isa_level
|= MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
;
143 case MIPS_CPU_ISA_M64R1
:
144 c
->isa_level
|= MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
;
146 c
->isa_level
|= MIPS_CPU_ISA_V
;
147 case MIPS_CPU_ISA_IV
:
148 c
->isa_level
|= MIPS_CPU_ISA_IV
;
149 case MIPS_CPU_ISA_III
:
150 c
->isa_level
|= MIPS_CPU_ISA_II
| MIPS_CPU_ISA_III
;
153 case MIPS_CPU_ISA_M32R2
:
154 c
->isa_level
|= MIPS_CPU_ISA_M32R2
;
155 case MIPS_CPU_ISA_M32R1
:
156 c
->isa_level
|= MIPS_CPU_ISA_M32R1
;
157 case MIPS_CPU_ISA_II
:
158 c
->isa_level
|= MIPS_CPU_ISA_II
;
163 static char unknown_isa
[] = KERN_ERR \
164 "Unsupported ISA type, c0.config0: %d.";
166 static inline unsigned int decode_config0(struct cpuinfo_mips
*c
)
168 unsigned int config0
;
171 config0
= read_c0_config();
173 if (((config0
& MIPS_CONF_MT
) >> 7) == 1)
174 c
->options
|= MIPS_CPU_TLB
;
175 isa
= (config0
& MIPS_CONF_AT
) >> 13;
178 switch ((config0
& MIPS_CONF_AR
) >> 10) {
180 set_isa(c
, MIPS_CPU_ISA_M32R1
);
183 set_isa(c
, MIPS_CPU_ISA_M32R2
);
190 switch ((config0
& MIPS_CONF_AR
) >> 10) {
192 set_isa(c
, MIPS_CPU_ISA_M64R1
);
195 set_isa(c
, MIPS_CPU_ISA_M64R2
);
205 return config0
& MIPS_CONF_M
;
208 panic(unknown_isa
, config0
);
211 static inline unsigned int decode_config1(struct cpuinfo_mips
*c
)
213 unsigned int config1
;
215 config1
= read_c0_config1();
217 if (config1
& MIPS_CONF1_MD
)
218 c
->ases
|= MIPS_ASE_MDMX
;
219 if (config1
& MIPS_CONF1_WR
)
220 c
->options
|= MIPS_CPU_WATCH
;
221 if (config1
& MIPS_CONF1_CA
)
222 c
->ases
|= MIPS_ASE_MIPS16
;
223 if (config1
& MIPS_CONF1_EP
)
224 c
->options
|= MIPS_CPU_EJTAG
;
225 if (config1
& MIPS_CONF1_FP
) {
226 c
->options
|= MIPS_CPU_FPU
;
227 c
->options
|= MIPS_CPU_32FPR
;
230 c
->tlbsize
= ((config1
& MIPS_CONF1_TLBS
) >> 25) + 1;
232 return config1
& MIPS_CONF_M
;
235 static inline unsigned int decode_config2(struct cpuinfo_mips
*c
)
237 unsigned int config2
;
239 config2
= read_c0_config2();
241 if (config2
& MIPS_CONF2_SL
)
242 c
->scache
.flags
&= ~MIPS_CACHE_NOT_PRESENT
;
244 return config2
& MIPS_CONF_M
;
247 static inline unsigned int decode_config3(struct cpuinfo_mips
*c
)
249 unsigned int config3
;
251 config3
= read_c0_config3();
253 if (config3
& MIPS_CONF3_SM
) {
254 c
->ases
|= MIPS_ASE_SMARTMIPS
;
255 c
->options
|= MIPS_CPU_RIXI
;
257 if (config3
& MIPS_CONF3_RXI
)
258 c
->options
|= MIPS_CPU_RIXI
;
259 if (config3
& MIPS_CONF3_DSP
)
260 c
->ases
|= MIPS_ASE_DSP
;
261 if (config3
& MIPS_CONF3_DSP2P
)
262 c
->ases
|= MIPS_ASE_DSP2P
;
263 if (config3
& MIPS_CONF3_VINT
)
264 c
->options
|= MIPS_CPU_VINT
;
265 if (config3
& MIPS_CONF3_VEIC
)
266 c
->options
|= MIPS_CPU_VEIC
;
267 if (config3
& MIPS_CONF3_MT
)
268 c
->ases
|= MIPS_ASE_MIPSMT
;
269 if (config3
& MIPS_CONF3_ULRI
)
270 c
->options
|= MIPS_CPU_ULRI
;
271 if (config3
& MIPS_CONF3_ISA
)
272 c
->options
|= MIPS_CPU_MICROMIPS
;
273 if (config3
& MIPS_CONF3_VZ
)
274 c
->ases
|= MIPS_ASE_VZ
;
276 return config3
& MIPS_CONF_M
;
279 static inline unsigned int decode_config4(struct cpuinfo_mips
*c
)
281 unsigned int config4
;
283 config4
= read_c0_config4();
285 if ((config4
& MIPS_CONF4_MMUEXTDEF
) == MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
287 c
->tlbsize
+= (config4
& MIPS_CONF4_MMUSIZEEXT
) * 0x40;
289 c
->kscratch_mask
= (config4
>> 16) & 0xff;
291 return config4
& MIPS_CONF_M
;
294 static inline unsigned int decode_config5(struct cpuinfo_mips
*c
)
296 unsigned int config5
;
298 config5
= read_c0_config5();
299 config5
&= ~MIPS_CONF5_UFR
;
300 write_c0_config5(config5
);
302 return config5
& MIPS_CONF_M
;
305 static void decode_configs(struct cpuinfo_mips
*c
)
309 /* MIPS32 or MIPS64 compliant CPU. */
310 c
->options
= MIPS_CPU_4KEX
| MIPS_CPU_4K_CACHE
| MIPS_CPU_COUNTER
|
311 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
| MIPS_CPU_MCHECK
;
313 c
->scache
.flags
= MIPS_CACHE_NOT_PRESENT
;
315 ok
= decode_config0(c
); /* Read Config registers. */
316 BUG_ON(!ok
); /* Arch spec violation! */
318 ok
= decode_config1(c
);
320 ok
= decode_config2(c
);
322 ok
= decode_config3(c
);
324 ok
= decode_config4(c
);
326 ok
= decode_config5(c
);
328 mips_probe_watch_registers(c
);
331 c
->core
= read_c0_ebase() & 0x3ff;
334 #define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
337 static inline void cpu_probe_legacy(struct cpuinfo_mips
*c
, unsigned int cpu
)
339 switch (c
->processor_id
& PRID_IMP_MASK
) {
341 c
->cputype
= CPU_R2000
;
342 __cpu_name
[cpu
] = "R2000";
343 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
346 c
->options
|= MIPS_CPU_FPU
;
350 if ((c
->processor_id
& PRID_REV_MASK
) == PRID_REV_R3000A
) {
351 if (cpu_has_confreg()) {
352 c
->cputype
= CPU_R3081E
;
353 __cpu_name
[cpu
] = "R3081";
355 c
->cputype
= CPU_R3000A
;
356 __cpu_name
[cpu
] = "R3000A";
359 c
->cputype
= CPU_R3000
;
360 __cpu_name
[cpu
] = "R3000";
362 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
365 c
->options
|= MIPS_CPU_FPU
;
369 if (read_c0_config() & CONF_SC
) {
370 if ((c
->processor_id
& PRID_REV_MASK
) >=
372 c
->cputype
= CPU_R4400PC
;
373 __cpu_name
[cpu
] = "R4400PC";
375 c
->cputype
= CPU_R4000PC
;
376 __cpu_name
[cpu
] = "R4000PC";
379 if ((c
->processor_id
& PRID_REV_MASK
) >=
381 c
->cputype
= CPU_R4400SC
;
382 __cpu_name
[cpu
] = "R4400SC";
384 c
->cputype
= CPU_R4000SC
;
385 __cpu_name
[cpu
] = "R4000SC";
389 set_isa(c
, MIPS_CPU_ISA_III
);
390 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
391 MIPS_CPU_WATCH
| MIPS_CPU_VCE
|
395 case PRID_IMP_VR41XX
:
396 set_isa(c
, MIPS_CPU_ISA_III
);
397 c
->options
= R4K_OPTS
;
399 switch (c
->processor_id
& 0xf0) {
400 case PRID_REV_VR4111
:
401 c
->cputype
= CPU_VR4111
;
402 __cpu_name
[cpu
] = "NEC VR4111";
404 case PRID_REV_VR4121
:
405 c
->cputype
= CPU_VR4121
;
406 __cpu_name
[cpu
] = "NEC VR4121";
408 case PRID_REV_VR4122
:
409 if ((c
->processor_id
& 0xf) < 0x3) {
410 c
->cputype
= CPU_VR4122
;
411 __cpu_name
[cpu
] = "NEC VR4122";
413 c
->cputype
= CPU_VR4181A
;
414 __cpu_name
[cpu
] = "NEC VR4181A";
417 case PRID_REV_VR4130
:
418 if ((c
->processor_id
& 0xf) < 0x4) {
419 c
->cputype
= CPU_VR4131
;
420 __cpu_name
[cpu
] = "NEC VR4131";
422 c
->cputype
= CPU_VR4133
;
423 c
->options
|= MIPS_CPU_LLSC
;
424 __cpu_name
[cpu
] = "NEC VR4133";
428 printk(KERN_INFO
"Unexpected CPU of NEC VR4100 series\n");
429 c
->cputype
= CPU_VR41XX
;
430 __cpu_name
[cpu
] = "NEC Vr41xx";
435 c
->cputype
= CPU_R4300
;
436 __cpu_name
[cpu
] = "R4300";
437 set_isa(c
, MIPS_CPU_ISA_III
);
438 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
443 c
->cputype
= CPU_R4600
;
444 __cpu_name
[cpu
] = "R4600";
445 set_isa(c
, MIPS_CPU_ISA_III
);
446 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
453 * This processor doesn't have an MMU, so it's not
454 * "real easy" to run Linux on it. It is left purely
455 * for documentation. Commented out because it shares
456 * it's c0_prid id number with the TX3900.
458 c
->cputype
= CPU_R4650
;
459 __cpu_name
[cpu
] = "R4650";
460 set_isa(c
, MIPS_CPU_ISA_III
);
461 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_LLSC
;
466 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_TX39_CACHE
;
468 if ((c
->processor_id
& 0xf0) == (PRID_REV_TX3927
& 0xf0)) {
469 c
->cputype
= CPU_TX3927
;
470 __cpu_name
[cpu
] = "TX3927";
473 switch (c
->processor_id
& PRID_REV_MASK
) {
474 case PRID_REV_TX3912
:
475 c
->cputype
= CPU_TX3912
;
476 __cpu_name
[cpu
] = "TX3912";
479 case PRID_REV_TX3922
:
480 c
->cputype
= CPU_TX3922
;
481 __cpu_name
[cpu
] = "TX3922";
488 c
->cputype
= CPU_R4700
;
489 __cpu_name
[cpu
] = "R4700";
490 set_isa(c
, MIPS_CPU_ISA_III
);
491 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
496 c
->cputype
= CPU_TX49XX
;
497 __cpu_name
[cpu
] = "R49XX";
498 set_isa(c
, MIPS_CPU_ISA_III
);
499 c
->options
= R4K_OPTS
| MIPS_CPU_LLSC
;
500 if (!(c
->processor_id
& 0x08))
501 c
->options
|= MIPS_CPU_FPU
| MIPS_CPU_32FPR
;
505 c
->cputype
= CPU_R5000
;
506 __cpu_name
[cpu
] = "R5000";
507 set_isa(c
, MIPS_CPU_ISA_IV
);
508 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
513 c
->cputype
= CPU_R5432
;
514 __cpu_name
[cpu
] = "R5432";
515 set_isa(c
, MIPS_CPU_ISA_IV
);
516 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
517 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
521 c
->cputype
= CPU_R5500
;
522 __cpu_name
[cpu
] = "R5500";
523 set_isa(c
, MIPS_CPU_ISA_IV
);
524 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
525 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
528 case PRID_IMP_NEVADA
:
529 c
->cputype
= CPU_NEVADA
;
530 __cpu_name
[cpu
] = "Nevada";
531 set_isa(c
, MIPS_CPU_ISA_IV
);
532 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
533 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
;
537 c
->cputype
= CPU_R6000
;
538 __cpu_name
[cpu
] = "R6000";
539 set_isa(c
, MIPS_CPU_ISA_II
);
540 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
544 case PRID_IMP_R6000A
:
545 c
->cputype
= CPU_R6000A
;
546 __cpu_name
[cpu
] = "R6000A";
547 set_isa(c
, MIPS_CPU_ISA_II
);
548 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
552 case PRID_IMP_RM7000
:
553 c
->cputype
= CPU_RM7000
;
554 __cpu_name
[cpu
] = "RM7000";
555 set_isa(c
, MIPS_CPU_ISA_IV
);
556 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
559 * Undocumented RM7000: Bit 29 in the info register of
560 * the RM7000 v2.0 indicates if the TLB has 48 or 64
563 * 29 1 => 64 entry JTLB
566 c
->tlbsize
= (read_c0_info() & (1 << 29)) ? 64 : 48;
568 case PRID_IMP_RM9000
:
569 c
->cputype
= CPU_RM9000
;
570 __cpu_name
[cpu
] = "RM9000";
571 set_isa(c
, MIPS_CPU_ISA_IV
);
572 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
575 * Bit 29 in the info register of the RM9000
576 * indicates if the TLB has 48 or 64 entries.
578 * 29 1 => 64 entry JTLB
581 c
->tlbsize
= (read_c0_info() & (1 << 29)) ? 64 : 48;
584 c
->cputype
= CPU_R8000
;
585 __cpu_name
[cpu
] = "RM8000";
586 set_isa(c
, MIPS_CPU_ISA_IV
);
587 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4KEX
|
588 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
590 c
->tlbsize
= 384; /* has weird TLB: 3-way x 128 */
592 case PRID_IMP_R10000
:
593 c
->cputype
= CPU_R10000
;
594 __cpu_name
[cpu
] = "R10000";
595 set_isa(c
, MIPS_CPU_ISA_IV
);
596 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
597 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
598 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
602 case PRID_IMP_R12000
:
603 c
->cputype
= CPU_R12000
;
604 __cpu_name
[cpu
] = "R12000";
605 set_isa(c
, MIPS_CPU_ISA_IV
);
606 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
607 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
608 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
612 case PRID_IMP_R14000
:
613 c
->cputype
= CPU_R14000
;
614 __cpu_name
[cpu
] = "R14000";
615 set_isa(c
, MIPS_CPU_ISA_IV
);
616 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
617 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
618 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
622 case PRID_IMP_LOONGSON2
:
623 c
->cputype
= CPU_LOONGSON2
;
624 __cpu_name
[cpu
] = "ICT Loongson-2";
626 switch (c
->processor_id
& PRID_REV_MASK
) {
627 case PRID_REV_LOONGSON2E
:
628 set_elf_platform(cpu
, "loongson2e");
630 case PRID_REV_LOONGSON2F
:
631 set_elf_platform(cpu
, "loongson2f");
635 set_isa(c
, MIPS_CPU_ISA_III
);
636 c
->options
= R4K_OPTS
|
637 MIPS_CPU_FPU
| MIPS_CPU_LLSC
|
641 case PRID_IMP_LOONGSON1
:
644 c
->cputype
= CPU_LOONGSON1
;
646 switch (c
->processor_id
& PRID_REV_MASK
) {
647 case PRID_REV_LOONGSON1B
:
648 __cpu_name
[cpu
] = "Loongson 1B";
656 static inline void cpu_probe_mips(struct cpuinfo_mips
*c
, unsigned int cpu
)
659 switch (c
->processor_id
& PRID_IMP_MASK
) {
661 c
->cputype
= CPU_4KC
;
662 __cpu_name
[cpu
] = "MIPS 4Kc";
665 case PRID_IMP_4KECR2
:
666 c
->cputype
= CPU_4KEC
;
667 __cpu_name
[cpu
] = "MIPS 4KEc";
671 c
->cputype
= CPU_4KSC
;
672 __cpu_name
[cpu
] = "MIPS 4KSc";
675 c
->cputype
= CPU_5KC
;
676 __cpu_name
[cpu
] = "MIPS 5Kc";
679 c
->cputype
= CPU_5KE
;
680 __cpu_name
[cpu
] = "MIPS 5KE";
683 c
->cputype
= CPU_20KC
;
684 __cpu_name
[cpu
] = "MIPS 20Kc";
687 c
->cputype
= CPU_24K
;
688 __cpu_name
[cpu
] = "MIPS 24Kc";
691 c
->cputype
= CPU_24K
;
692 __cpu_name
[cpu
] = "MIPS 24KEc";
695 c
->cputype
= CPU_25KF
;
696 __cpu_name
[cpu
] = "MIPS 25Kc";
699 c
->cputype
= CPU_34K
;
700 __cpu_name
[cpu
] = "MIPS 34Kc";
703 c
->cputype
= CPU_74K
;
704 __cpu_name
[cpu
] = "MIPS 74Kc";
707 c
->cputype
= CPU_M14KC
;
708 __cpu_name
[cpu
] = "MIPS M14Kc";
710 case PRID_IMP_M14KEC
:
711 c
->cputype
= CPU_M14KEC
;
712 __cpu_name
[cpu
] = "MIPS M14KEc";
715 c
->cputype
= CPU_1004K
;
716 __cpu_name
[cpu
] = "MIPS 1004Kc";
719 c
->cputype
= CPU_74K
;
720 __cpu_name
[cpu
] = "MIPS 1074Kc";
727 static inline void cpu_probe_alchemy(struct cpuinfo_mips
*c
, unsigned int cpu
)
730 switch (c
->processor_id
& PRID_IMP_MASK
) {
731 case PRID_IMP_AU1_REV1
:
732 case PRID_IMP_AU1_REV2
:
733 c
->cputype
= CPU_ALCHEMY
;
734 switch ((c
->processor_id
>> 24) & 0xff) {
736 __cpu_name
[cpu
] = "Au1000";
739 __cpu_name
[cpu
] = "Au1500";
742 __cpu_name
[cpu
] = "Au1100";
745 __cpu_name
[cpu
] = "Au1550";
748 __cpu_name
[cpu
] = "Au1200";
749 if ((c
->processor_id
& PRID_REV_MASK
) == 2)
750 __cpu_name
[cpu
] = "Au1250";
753 __cpu_name
[cpu
] = "Au1210";
756 __cpu_name
[cpu
] = "Au1xxx";
763 static inline void cpu_probe_sibyte(struct cpuinfo_mips
*c
, unsigned int cpu
)
767 switch (c
->processor_id
& PRID_IMP_MASK
) {
769 c
->cputype
= CPU_SB1
;
770 __cpu_name
[cpu
] = "SiByte SB1";
771 /* FPU in pass1 is known to have issues. */
772 if ((c
->processor_id
& PRID_REV_MASK
) < 0x02)
773 c
->options
&= ~(MIPS_CPU_FPU
| MIPS_CPU_32FPR
);
776 c
->cputype
= CPU_SB1A
;
777 __cpu_name
[cpu
] = "SiByte SB1A";
782 static inline void cpu_probe_sandcraft(struct cpuinfo_mips
*c
, unsigned int cpu
)
785 switch (c
->processor_id
& PRID_IMP_MASK
) {
786 case PRID_IMP_SR71000
:
787 c
->cputype
= CPU_SR71000
;
788 __cpu_name
[cpu
] = "Sandcraft SR71000";
795 static inline void cpu_probe_nxp(struct cpuinfo_mips
*c
, unsigned int cpu
)
798 switch (c
->processor_id
& PRID_IMP_MASK
) {
799 case PRID_IMP_PR4450
:
800 c
->cputype
= CPU_PR4450
;
801 __cpu_name
[cpu
] = "Philips PR4450";
802 set_isa(c
, MIPS_CPU_ISA_M32R1
);
807 static inline void cpu_probe_broadcom(struct cpuinfo_mips
*c
, unsigned int cpu
)
810 switch (c
->processor_id
& PRID_IMP_MASK
) {
811 case PRID_IMP_BMIPS32_REV4
:
812 case PRID_IMP_BMIPS32_REV8
:
813 c
->cputype
= CPU_BMIPS32
;
814 __cpu_name
[cpu
] = "Broadcom BMIPS32";
815 set_elf_platform(cpu
, "bmips32");
817 case PRID_IMP_BMIPS3300
:
818 case PRID_IMP_BMIPS3300_ALT
:
819 case PRID_IMP_BMIPS3300_BUG
:
820 c
->cputype
= CPU_BMIPS3300
;
821 __cpu_name
[cpu
] = "Broadcom BMIPS3300";
822 set_elf_platform(cpu
, "bmips3300");
824 case PRID_IMP_BMIPS43XX
: {
825 int rev
= c
->processor_id
& PRID_REV_MASK
;
827 if (rev
>= PRID_REV_BMIPS4380_LO
&&
828 rev
<= PRID_REV_BMIPS4380_HI
) {
829 c
->cputype
= CPU_BMIPS4380
;
830 __cpu_name
[cpu
] = "Broadcom BMIPS4380";
831 set_elf_platform(cpu
, "bmips4380");
833 c
->cputype
= CPU_BMIPS4350
;
834 __cpu_name
[cpu
] = "Broadcom BMIPS4350";
835 set_elf_platform(cpu
, "bmips4350");
839 case PRID_IMP_BMIPS5000
:
840 c
->cputype
= CPU_BMIPS5000
;
841 __cpu_name
[cpu
] = "Broadcom BMIPS5000";
842 set_elf_platform(cpu
, "bmips5000");
843 c
->options
|= MIPS_CPU_ULRI
;
848 static inline void cpu_probe_cavium(struct cpuinfo_mips
*c
, unsigned int cpu
)
851 switch (c
->processor_id
& PRID_IMP_MASK
) {
852 case PRID_IMP_CAVIUM_CN38XX
:
853 case PRID_IMP_CAVIUM_CN31XX
:
854 case PRID_IMP_CAVIUM_CN30XX
:
855 c
->cputype
= CPU_CAVIUM_OCTEON
;
856 __cpu_name
[cpu
] = "Cavium Octeon";
858 case PRID_IMP_CAVIUM_CN58XX
:
859 case PRID_IMP_CAVIUM_CN56XX
:
860 case PRID_IMP_CAVIUM_CN50XX
:
861 case PRID_IMP_CAVIUM_CN52XX
:
862 c
->cputype
= CPU_CAVIUM_OCTEON_PLUS
;
863 __cpu_name
[cpu
] = "Cavium Octeon+";
865 set_elf_platform(cpu
, "octeon");
867 case PRID_IMP_CAVIUM_CN61XX
:
868 case PRID_IMP_CAVIUM_CN63XX
:
869 case PRID_IMP_CAVIUM_CN66XX
:
870 case PRID_IMP_CAVIUM_CN68XX
:
871 case PRID_IMP_CAVIUM_CNF71XX
:
872 c
->cputype
= CPU_CAVIUM_OCTEON2
;
873 __cpu_name
[cpu
] = "Cavium Octeon II";
874 set_elf_platform(cpu
, "octeon2");
876 case PRID_IMP_CAVIUM_CN70XX
:
877 case PRID_IMP_CAVIUM_CN78XX
:
878 c
->cputype
= CPU_CAVIUM_OCTEON3
;
879 __cpu_name
[cpu
] = "Cavium Octeon III";
880 set_elf_platform(cpu
, "octeon3");
883 printk(KERN_INFO
"Unknown Octeon chip!\n");
884 c
->cputype
= CPU_UNKNOWN
;
889 static inline void cpu_probe_ingenic(struct cpuinfo_mips
*c
, unsigned int cpu
)
892 /* JZRISC does not implement the CP0 counter. */
893 c
->options
&= ~MIPS_CPU_COUNTER
;
894 switch (c
->processor_id
& PRID_IMP_MASK
) {
895 case PRID_IMP_JZRISC
:
896 c
->cputype
= CPU_JZRISC
;
897 __cpu_name
[cpu
] = "Ingenic JZRISC";
900 panic("Unknown Ingenic Processor ID!");
905 static inline void cpu_probe_netlogic(struct cpuinfo_mips
*c
, int cpu
)
909 if ((c
->processor_id
& PRID_IMP_MASK
) == PRID_IMP_NETLOGIC_AU13XX
) {
910 c
->cputype
= CPU_ALCHEMY
;
911 __cpu_name
[cpu
] = "Au1300";
912 /* following stuff is not for Alchemy */
916 c
->options
= (MIPS_CPU_TLB
|
924 switch (c
->processor_id
& PRID_IMP_MASK
) {
925 case PRID_IMP_NETLOGIC_XLP2XX
:
926 c
->cputype
= CPU_XLP
;
927 __cpu_name
[cpu
] = "Broadcom XLPII";
930 case PRID_IMP_NETLOGIC_XLP8XX
:
931 case PRID_IMP_NETLOGIC_XLP3XX
:
932 c
->cputype
= CPU_XLP
;
933 __cpu_name
[cpu
] = "Netlogic XLP";
936 case PRID_IMP_NETLOGIC_XLR732
:
937 case PRID_IMP_NETLOGIC_XLR716
:
938 case PRID_IMP_NETLOGIC_XLR532
:
939 case PRID_IMP_NETLOGIC_XLR308
:
940 case PRID_IMP_NETLOGIC_XLR532C
:
941 case PRID_IMP_NETLOGIC_XLR516C
:
942 case PRID_IMP_NETLOGIC_XLR508C
:
943 case PRID_IMP_NETLOGIC_XLR308C
:
944 c
->cputype
= CPU_XLR
;
945 __cpu_name
[cpu
] = "Netlogic XLR";
948 case PRID_IMP_NETLOGIC_XLS608
:
949 case PRID_IMP_NETLOGIC_XLS408
:
950 case PRID_IMP_NETLOGIC_XLS404
:
951 case PRID_IMP_NETLOGIC_XLS208
:
952 case PRID_IMP_NETLOGIC_XLS204
:
953 case PRID_IMP_NETLOGIC_XLS108
:
954 case PRID_IMP_NETLOGIC_XLS104
:
955 case PRID_IMP_NETLOGIC_XLS616B
:
956 case PRID_IMP_NETLOGIC_XLS608B
:
957 case PRID_IMP_NETLOGIC_XLS416B
:
958 case PRID_IMP_NETLOGIC_XLS412B
:
959 case PRID_IMP_NETLOGIC_XLS408B
:
960 case PRID_IMP_NETLOGIC_XLS404B
:
961 c
->cputype
= CPU_XLR
;
962 __cpu_name
[cpu
] = "Netlogic XLS";
966 pr_info("Unknown Netlogic chip id [%02x]!\n",
968 c
->cputype
= CPU_XLR
;
972 if (c
->cputype
== CPU_XLP
) {
973 set_isa(c
, MIPS_CPU_ISA_M64R2
);
974 c
->options
|= (MIPS_CPU_FPU
| MIPS_CPU_ULRI
| MIPS_CPU_MCHECK
);
975 /* This will be updated again after all threads are woken up */
976 c
->tlbsize
= ((read_c0_config6() >> 16) & 0xffff) + 1;
978 set_isa(c
, MIPS_CPU_ISA_M64R1
);
979 c
->tlbsize
= ((read_c0_config1() >> 25) & 0x3f) + 1;
981 c
->kscratch_mask
= 0xf;
985 /* For use by uaccess.h */
987 EXPORT_SYMBOL(__ua_limit
);
990 const char *__cpu_name
[NR_CPUS
];
991 const char *__elf_platform
;
995 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
996 unsigned int cpu
= smp_processor_id();
998 c
->processor_id
= PRID_IMP_UNKNOWN
;
999 c
->fpu_id
= FPIR_IMP_NONE
;
1000 c
->cputype
= CPU_UNKNOWN
;
1002 c
->processor_id
= read_c0_prid();
1003 switch (c
->processor_id
& PRID_COMP_MASK
) {
1004 case PRID_COMP_LEGACY
:
1005 cpu_probe_legacy(c
, cpu
);
1007 case PRID_COMP_MIPS
:
1008 cpu_probe_mips(c
, cpu
);
1010 case PRID_COMP_ALCHEMY
:
1011 cpu_probe_alchemy(c
, cpu
);
1013 case PRID_COMP_SIBYTE
:
1014 cpu_probe_sibyte(c
, cpu
);
1016 case PRID_COMP_BROADCOM
:
1017 cpu_probe_broadcom(c
, cpu
);
1019 case PRID_COMP_SANDCRAFT
:
1020 cpu_probe_sandcraft(c
, cpu
);
1023 cpu_probe_nxp(c
, cpu
);
1025 case PRID_COMP_CAVIUM
:
1026 cpu_probe_cavium(c
, cpu
);
1028 case PRID_COMP_INGENIC
:
1029 cpu_probe_ingenic(c
, cpu
);
1031 case PRID_COMP_NETLOGIC
:
1032 cpu_probe_netlogic(c
, cpu
);
1036 BUG_ON(!__cpu_name
[cpu
]);
1037 BUG_ON(c
->cputype
== CPU_UNKNOWN
);
1040 * Platform code can force the cpu type to optimize code
1041 * generation. In that case be sure the cpu type is correctly
1042 * manually setup otherwise it could trigger some nasty bugs.
1044 BUG_ON(current_cpu_type() != c
->cputype
);
1046 if (mips_fpu_disabled
)
1047 c
->options
&= ~MIPS_CPU_FPU
;
1049 if (mips_dsp_disabled
)
1050 c
->ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
1052 if (c
->options
& MIPS_CPU_FPU
) {
1053 c
->fpu_id
= cpu_get_fpu_id();
1055 if (c
->isa_level
& (MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M32R2
|
1056 MIPS_CPU_ISA_M64R1
| MIPS_CPU_ISA_M64R2
)) {
1057 if (c
->fpu_id
& MIPS_FPIR_3D
)
1058 c
->ases
|= MIPS_ASE_MIPS3D
;
1062 if (cpu_has_mips_r2
) {
1063 c
->srsets
= ((read_c0_srsctl() >> 26) & 0x0f) + 1;
1064 /* R2 has Performance Counter Interrupt indicator */
1065 c
->options
|= MIPS_CPU_PCI
;
1070 cpu_probe_vmbits(c
);
1074 __ua_limit
= ~((1ull << cpu_vmbits
) - 1);
1078 void cpu_report(void)
1080 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1082 printk(KERN_INFO
"CPU revision is: %08x (%s)\n",
1083 c
->processor_id
, cpu_name_string());
1084 if (c
->options
& MIPS_CPU_FPU
)
1085 printk(KERN_INFO
"FPU revision is: %08x\n", c
->fpu_id
);