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 MIPS 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/stddef.h>
22 #include <asm/mipsregs.h>
23 #include <asm/system.h>
24 #include <asm/watch.h>
27 * Not all of the MIPS CPUs have the "wait" instruction available. Moreover,
28 * the implementation of the "wait" feature differs between CPU families. This
29 * points to the function that implements CPU specific wait.
30 * The wait instruction stops the pipeline and reduces the power consumption of
33 void (*cpu_wait)(void) = NULL;
35 static void r3081_wait(void)
37 unsigned long cfg = read_c0_conf();
38 write_c0_conf(cfg | R30XX_CONF_HALT);
41 static void r39xx_wait(void)
45 write_c0_conf(read_c0_conf() | TX39_CONF_HALT);
49 extern void r4k_wait(void);
52 * This variant is preferable as it allows testing need_resched and going to
53 * sleep depending on the outcome atomically. Unfortunately the "It is
54 * implementation-dependent whether the pipeline restarts when a non-enabled
55 * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes
56 * using this version a gamble.
58 void r4k_wait_irqoff(void)
62 __asm__(" .set push \n"
67 __asm__(" .globl __pastwait \n"
73 * The RM7000 variant has to handle erratum 38. The workaround is to not
74 * have any pending stores when the WAIT instruction is executed.
76 static void rm7k_wait_irqoff(void)
86 " mtc0 $1, $12 # stalls until W stage \n"
88 " mtc0 $1, $12 # stalls until W stage \n"
93 /* The Au1xxx wait is available only if using 32khz counter or
94 * external timer source, but specifically not CP0 Counter. */
97 static void au1k_wait(void)
99 /* using the wait instruction makes CP0 counter unusable */
100 __asm__(" .set mips3 \n"
101 " cache 0x14, 0(%0) \n"
102 " cache 0x14, 32(%0) \n"
111 : : "r" (au1k_wait));
114 static int __initdata nowait = 0;
116 static int __init wait_disable(char *s)
123 __setup("nowait", wait_disable);
125 void __init check_wait(void)
127 struct cpuinfo_mips *c = ¤t_cpu_data;
130 printk("Wait instruction disabled.\n");
134 switch (c->cputype) {
137 cpu_wait = r3081_wait;
140 cpu_wait = r39xx_wait;
143 /* case CPU_R4300: */
161 cpu_wait = rm7k_wait_irqoff;
168 if (read_c0_config7() & MIPS_CONF7_WII)
169 cpu_wait = r4k_wait_irqoff;
174 if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0))
175 cpu_wait = r4k_wait_irqoff;
179 cpu_wait = r4k_wait_irqoff;
189 cpu_wait = au1k_wait;
193 * WAIT on Rev1.0 has E1, E2, E3 and E16.
194 * WAIT on Rev2.0 and Rev3.0 has E16.
195 * Rev3.1 WAIT is nop, why bother
197 if ((c->processor_id & 0xff) <= 0x64)
201 * Another rev is incremeting c0_count at a reduced clock
202 * rate while in WAIT mode. So we basically have the choice
203 * between using the cp0 timer as clocksource or avoiding
204 * the WAIT instruction. Until more details are known,
205 * disable the use of WAIT for 20Kc entirely.
210 if ((c->processor_id & 0x00ff) >= 0x40)
218 static inline void check_errata(void)
220 struct cpuinfo_mips *c = ¤t_cpu_data;
222 switch (c->cputype) {
225 * Erratum "RPS May Cause Incorrect Instruction Execution"
226 * This code only handles VPE0, any SMP/SMTC/RTOS code
227 * making use of VPE1 will be responsable for that VPE.
229 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
230 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
237 void __init check_bugs32(void)
243 * Probe whether cpu has config register by trying to play with
244 * alternate cache bit and see whether it matters.
245 * It's used by cpu_probe to distinguish between R3000A and R3081.
247 static inline int cpu_has_confreg(void)
249 #ifdef CONFIG_CPU_R3000
250 extern unsigned long r3k_cache_size(unsigned long);
251 unsigned long size1, size2;
252 unsigned long cfg = read_c0_conf();
254 size1 = r3k_cache_size(ST0_ISC);
255 write_c0_conf(cfg ^ R30XX_CONF_AC);
256 size2 = r3k_cache_size(ST0_ISC);
258 return size1 != size2;
265 * Get the FPU Implementation/Revision.
267 static inline unsigned long cpu_get_fpu_id(void)
269 unsigned long tmp, fpu_id;
271 tmp = read_c0_status();
273 fpu_id = read_32bit_cp1_register(CP1_REVISION);
274 write_c0_status(tmp);
279 * Check the CPU has an FPU the official way.
281 static inline int __cpu_has_fpu(void)
283 return ((cpu_get_fpu_id() & 0xff00) != FPIR_IMP_NONE);
286 #define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
289 static inline void cpu_probe_legacy(struct cpuinfo_mips *c)
291 switch (c->processor_id & 0xff00) {
293 c->cputype = CPU_R2000;
294 c->isa_level = MIPS_CPU_ISA_I;
295 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
298 c->options |= MIPS_CPU_FPU;
302 if ((c->processor_id & 0xff) == PRID_REV_R3000A)
303 if (cpu_has_confreg())
304 c->cputype = CPU_R3081E;
306 c->cputype = CPU_R3000A;
308 c->cputype = CPU_R3000;
309 c->isa_level = MIPS_CPU_ISA_I;
310 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
313 c->options |= MIPS_CPU_FPU;
317 if (read_c0_config() & CONF_SC) {
318 if ((c->processor_id & 0xff) >= PRID_REV_R4400)
319 c->cputype = CPU_R4400PC;
321 c->cputype = CPU_R4000PC;
323 if ((c->processor_id & 0xff) >= PRID_REV_R4400)
324 c->cputype = CPU_R4400SC;
326 c->cputype = CPU_R4000SC;
329 c->isa_level = MIPS_CPU_ISA_III;
330 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
331 MIPS_CPU_WATCH | MIPS_CPU_VCE |
335 case PRID_IMP_VR41XX:
336 switch (c->processor_id & 0xf0) {
337 case PRID_REV_VR4111:
338 c->cputype = CPU_VR4111;
340 case PRID_REV_VR4121:
341 c->cputype = CPU_VR4121;
343 case PRID_REV_VR4122:
344 if ((c->processor_id & 0xf) < 0x3)
345 c->cputype = CPU_VR4122;
347 c->cputype = CPU_VR4181A;
349 case PRID_REV_VR4130:
350 if ((c->processor_id & 0xf) < 0x4)
351 c->cputype = CPU_VR4131;
353 c->cputype = CPU_VR4133;
356 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
357 c->cputype = CPU_VR41XX;
360 c->isa_level = MIPS_CPU_ISA_III;
361 c->options = R4K_OPTS;
365 c->cputype = CPU_R4300;
366 c->isa_level = MIPS_CPU_ISA_III;
367 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
372 c->cputype = CPU_R4600;
373 c->isa_level = MIPS_CPU_ISA_III;
374 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
381 * This processor doesn't have an MMU, so it's not
382 * "real easy" to run Linux on it. It is left purely
383 * for documentation. Commented out because it shares
384 * it's c0_prid id number with the TX3900.
386 c->cputype = CPU_R4650;
387 c->isa_level = MIPS_CPU_ISA_III;
388 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
393 c->isa_level = MIPS_CPU_ISA_I;
394 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
396 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
397 c->cputype = CPU_TX3927;
400 switch (c->processor_id & 0xff) {
401 case PRID_REV_TX3912:
402 c->cputype = CPU_TX3912;
405 case PRID_REV_TX3922:
406 c->cputype = CPU_TX3922;
410 c->cputype = CPU_UNKNOWN;
416 c->cputype = CPU_R4700;
417 c->isa_level = MIPS_CPU_ISA_III;
418 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
423 c->cputype = CPU_TX49XX;
424 c->isa_level = MIPS_CPU_ISA_III;
425 c->options = R4K_OPTS | MIPS_CPU_LLSC;
426 if (!(c->processor_id & 0x08))
427 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
431 c->cputype = CPU_R5000;
432 c->isa_level = MIPS_CPU_ISA_IV;
433 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
438 c->cputype = CPU_R5432;
439 c->isa_level = MIPS_CPU_ISA_IV;
440 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
441 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
445 c->cputype = CPU_R5500;
446 c->isa_level = MIPS_CPU_ISA_IV;
447 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
448 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
451 case PRID_IMP_NEVADA:
452 c->cputype = CPU_NEVADA;
453 c->isa_level = MIPS_CPU_ISA_IV;
454 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
455 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
459 c->cputype = CPU_R6000;
460 c->isa_level = MIPS_CPU_ISA_II;
461 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
465 case PRID_IMP_R6000A:
466 c->cputype = CPU_R6000A;
467 c->isa_level = MIPS_CPU_ISA_II;
468 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
472 case PRID_IMP_RM7000:
473 c->cputype = CPU_RM7000;
474 c->isa_level = MIPS_CPU_ISA_IV;
475 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
478 * Undocumented RM7000: Bit 29 in the info register of
479 * the RM7000 v2.0 indicates if the TLB has 48 or 64
482 * 29 1 => 64 entry JTLB
485 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
487 case PRID_IMP_RM9000:
488 c->cputype = CPU_RM9000;
489 c->isa_level = MIPS_CPU_ISA_IV;
490 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
493 * Bit 29 in the info register of the RM9000
494 * indicates if the TLB has 48 or 64 entries.
496 * 29 1 => 64 entry JTLB
499 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
502 c->cputype = CPU_R8000;
503 c->isa_level = MIPS_CPU_ISA_IV;
504 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
505 MIPS_CPU_FPU | MIPS_CPU_32FPR |
507 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
509 case PRID_IMP_R10000:
510 c->cputype = CPU_R10000;
511 c->isa_level = MIPS_CPU_ISA_IV;
512 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
513 MIPS_CPU_FPU | MIPS_CPU_32FPR |
514 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
518 case PRID_IMP_R12000:
519 c->cputype = CPU_R12000;
520 c->isa_level = MIPS_CPU_ISA_IV;
521 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
522 MIPS_CPU_FPU | MIPS_CPU_32FPR |
523 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
527 case PRID_IMP_R14000:
528 c->cputype = CPU_R14000;
529 c->isa_level = MIPS_CPU_ISA_IV;
530 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
531 MIPS_CPU_FPU | MIPS_CPU_32FPR |
532 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
536 case PRID_IMP_LOONGSON2:
537 c->cputype = CPU_LOONGSON2;
538 c->isa_level = MIPS_CPU_ISA_III;
539 c->options = R4K_OPTS |
540 MIPS_CPU_FPU | MIPS_CPU_LLSC |
547 static char unknown_isa[] __cpuinitdata = KERN_ERR \
548 "Unsupported ISA type, c0.config0: %d.";
550 static inline unsigned int decode_config0(struct cpuinfo_mips *c)
552 unsigned int config0;
555 config0 = read_c0_config();
557 if (((config0 & MIPS_CONF_MT) >> 7) == 1)
558 c->options |= MIPS_CPU_TLB;
559 isa = (config0 & MIPS_CONF_AT) >> 13;
562 switch ((config0 & MIPS_CONF_AR) >> 10) {
564 c->isa_level = MIPS_CPU_ISA_M32R1;
567 c->isa_level = MIPS_CPU_ISA_M32R2;
574 switch ((config0 & MIPS_CONF_AR) >> 10) {
576 c->isa_level = MIPS_CPU_ISA_M64R1;
579 c->isa_level = MIPS_CPU_ISA_M64R2;
589 return config0 & MIPS_CONF_M;
592 panic(unknown_isa, config0);
595 static inline unsigned int decode_config1(struct cpuinfo_mips *c)
597 unsigned int config1;
599 config1 = read_c0_config1();
601 if (config1 & MIPS_CONF1_MD)
602 c->ases |= MIPS_ASE_MDMX;
603 if (config1 & MIPS_CONF1_WR)
604 c->options |= MIPS_CPU_WATCH;
605 if (config1 & MIPS_CONF1_CA)
606 c->ases |= MIPS_ASE_MIPS16;
607 if (config1 & MIPS_CONF1_EP)
608 c->options |= MIPS_CPU_EJTAG;
609 if (config1 & MIPS_CONF1_FP) {
610 c->options |= MIPS_CPU_FPU;
611 c->options |= MIPS_CPU_32FPR;
614 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
616 return config1 & MIPS_CONF_M;
619 static inline unsigned int decode_config2(struct cpuinfo_mips *c)
621 unsigned int config2;
623 config2 = read_c0_config2();
625 if (config2 & MIPS_CONF2_SL)
626 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
628 return config2 & MIPS_CONF_M;
631 static inline unsigned int decode_config3(struct cpuinfo_mips *c)
633 unsigned int config3;
635 config3 = read_c0_config3();
637 if (config3 & MIPS_CONF3_SM)
638 c->ases |= MIPS_ASE_SMARTMIPS;
639 if (config3 & MIPS_CONF3_DSP)
640 c->ases |= MIPS_ASE_DSP;
641 if (config3 & MIPS_CONF3_VINT)
642 c->options |= MIPS_CPU_VINT;
643 if (config3 & MIPS_CONF3_VEIC)
644 c->options |= MIPS_CPU_VEIC;
645 if (config3 & MIPS_CONF3_MT)
646 c->ases |= MIPS_ASE_MIPSMT;
647 if (config3 & MIPS_CONF3_ULRI)
648 c->options |= MIPS_CPU_ULRI;
650 return config3 & MIPS_CONF_M;
653 static void __cpuinit decode_configs(struct cpuinfo_mips *c)
655 /* MIPS32 or MIPS64 compliant CPU. */
656 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
657 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
659 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
661 /* Read Config registers. */
662 if (!decode_config0(c))
663 return; /* actually worth a panic() */
664 if (!decode_config1(c))
666 if (!decode_config2(c))
668 if (!decode_config3(c))
672 #ifdef CONFIG_CPU_MIPSR2
673 extern void spram_config(void);
675 static inline void spram_config(void) {}
678 static inline void cpu_probe_mips(struct cpuinfo_mips *c)
681 mips_probe_watch_registers(c);
682 switch (c->processor_id & 0xff00) {
684 c->cputype = CPU_4KC;
687 c->cputype = CPU_4KEC;
689 case PRID_IMP_4KECR2:
690 c->cputype = CPU_4KEC;
694 c->cputype = CPU_4KSC;
697 c->cputype = CPU_5KC;
700 c->cputype = CPU_20KC;
704 c->cputype = CPU_24K;
707 c->cputype = CPU_25KF;
710 c->cputype = CPU_34K;
713 c->cputype = CPU_74K;
716 c->cputype = CPU_1004K;
723 static inline void cpu_probe_alchemy(struct cpuinfo_mips *c)
726 switch (c->processor_id & 0xff00) {
727 case PRID_IMP_AU1_REV1:
728 case PRID_IMP_AU1_REV2:
729 switch ((c->processor_id >> 24) & 0xff) {
731 c->cputype = CPU_AU1000;
734 c->cputype = CPU_AU1500;
737 c->cputype = CPU_AU1100;
740 c->cputype = CPU_AU1550;
743 c->cputype = CPU_AU1200;
744 if (2 == (c->processor_id & 0xff))
745 c->cputype = CPU_AU1250;
748 c->cputype = CPU_AU1210;
751 panic("Unknown Au Core!");
758 static inline void cpu_probe_sibyte(struct cpuinfo_mips *c)
762 switch (c->processor_id & 0xff00) {
764 c->cputype = CPU_SB1;
765 /* FPU in pass1 is known to have issues. */
766 if ((c->processor_id & 0xff) < 0x02)
767 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
770 c->cputype = CPU_SB1A;
775 static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c)
778 switch (c->processor_id & 0xff00) {
779 case PRID_IMP_SR71000:
780 c->cputype = CPU_SR71000;
787 static inline void cpu_probe_nxp(struct cpuinfo_mips *c)
790 switch (c->processor_id & 0xff00) {
791 case PRID_IMP_PR4450:
792 c->cputype = CPU_PR4450;
793 c->isa_level = MIPS_CPU_ISA_M32R1;
796 panic("Unknown NXP Core!"); /* REVISIT: die? */
802 static inline void cpu_probe_broadcom(struct cpuinfo_mips *c)
805 switch (c->processor_id & 0xff00) {
806 case PRID_IMP_BCM3302:
807 c->cputype = CPU_BCM3302;
809 case PRID_IMP_BCM4710:
810 c->cputype = CPU_BCM4710;
813 c->cputype = CPU_UNKNOWN;
818 const char *__cpu_name[NR_CPUS];
823 static __cpuinit const char *cpu_to_name(struct cpuinfo_mips *c)
825 const char *name = NULL;
827 switch (c->cputype) {
828 case CPU_UNKNOWN: name = "unknown"; break;
829 case CPU_R2000: name = "R2000"; break;
830 case CPU_R3000: name = "R3000"; break;
831 case CPU_R3000A: name = "R3000A"; break;
832 case CPU_R3041: name = "R3041"; break;
833 case CPU_R3051: name = "R3051"; break;
834 case CPU_R3052: name = "R3052"; break;
835 case CPU_R3081: name = "R3081"; break;
836 case CPU_R3081E: name = "R3081E"; break;
837 case CPU_R4000PC: name = "R4000PC"; break;
838 case CPU_R4000SC: name = "R4000SC"; break;
839 case CPU_R4000MC: name = "R4000MC"; break;
840 case CPU_R4200: name = "R4200"; break;
841 case CPU_R4400PC: name = "R4400PC"; break;
842 case CPU_R4400SC: name = "R4400SC"; break;
843 case CPU_R4400MC: name = "R4400MC"; break;
844 case CPU_R4600: name = "R4600"; break;
845 case CPU_R6000: name = "R6000"; break;
846 case CPU_R6000A: name = "R6000A"; break;
847 case CPU_R8000: name = "R8000"; break;
848 case CPU_R10000: name = "R10000"; break;
849 case CPU_R12000: name = "R12000"; break;
850 case CPU_R14000: name = "R14000"; break;
851 case CPU_R4300: name = "R4300"; break;
852 case CPU_R4650: name = "R4650"; break;
853 case CPU_R4700: name = "R4700"; break;
854 case CPU_R5000: name = "R5000"; break;
855 case CPU_R5000A: name = "R5000A"; break;
856 case CPU_R4640: name = "R4640"; break;
857 case CPU_NEVADA: name = "Nevada"; break;
858 case CPU_RM7000: name = "RM7000"; break;
859 case CPU_RM9000: name = "RM9000"; break;
860 case CPU_R5432: name = "R5432"; break;
861 case CPU_4KC: name = "MIPS 4Kc"; break;
862 case CPU_5KC: name = "MIPS 5Kc"; break;
863 case CPU_R4310: name = "R4310"; break;
864 case CPU_SB1: name = "SiByte SB1"; break;
865 case CPU_SB1A: name = "SiByte SB1A"; break;
866 case CPU_TX3912: name = "TX3912"; break;
867 case CPU_TX3922: name = "TX3922"; break;
868 case CPU_TX3927: name = "TX3927"; break;
869 case CPU_AU1000: name = "Au1000"; break;
870 case CPU_AU1500: name = "Au1500"; break;
871 case CPU_AU1100: name = "Au1100"; break;
872 case CPU_AU1550: name = "Au1550"; break;
873 case CPU_AU1200: name = "Au1200"; break;
874 case CPU_AU1210: name = "Au1210"; break;
875 case CPU_AU1250: name = "Au1250"; break;
876 case CPU_4KEC: name = "MIPS 4KEc"; break;
877 case CPU_4KSC: name = "MIPS 4KSc"; break;
878 case CPU_VR41XX: name = "NEC Vr41xx"; break;
879 case CPU_R5500: name = "R5500"; break;
880 case CPU_TX49XX: name = "TX49xx"; break;
881 case CPU_20KC: name = "MIPS 20Kc"; break;
882 case CPU_24K: name = "MIPS 24K"; break;
883 case CPU_25KF: name = "MIPS 25Kf"; break;
884 case CPU_34K: name = "MIPS 34K"; break;
885 case CPU_1004K: name = "MIPS 1004K"; break;
886 case CPU_74K: name = "MIPS 74K"; break;
887 case CPU_VR4111: name = "NEC VR4111"; break;
888 case CPU_VR4121: name = "NEC VR4121"; break;
889 case CPU_VR4122: name = "NEC VR4122"; break;
890 case CPU_VR4131: name = "NEC VR4131"; break;
891 case CPU_VR4133: name = "NEC VR4133"; break;
892 case CPU_VR4181: name = "NEC VR4181"; break;
893 case CPU_VR4181A: name = "NEC VR4181A"; break;
894 case CPU_SR71000: name = "Sandcraft SR71000"; break;
895 case CPU_BCM3302: name = "Broadcom BCM3302"; break;
896 case CPU_BCM4710: name = "Broadcom BCM4710"; break;
897 case CPU_PR4450: name = "Philips PR4450"; break;
898 case CPU_LOONGSON2: name = "ICT Loongson-2"; break;
906 __cpuinit void cpu_probe(void)
908 struct cpuinfo_mips *c = ¤t_cpu_data;
909 unsigned int cpu = smp_processor_id();
911 c->processor_id = PRID_IMP_UNKNOWN;
912 c->fpu_id = FPIR_IMP_NONE;
913 c->cputype = CPU_UNKNOWN;
915 c->processor_id = read_c0_prid();
916 switch (c->processor_id & 0xff0000) {
917 case PRID_COMP_LEGACY:
923 case PRID_COMP_ALCHEMY:
924 cpu_probe_alchemy(c);
926 case PRID_COMP_SIBYTE:
929 case PRID_COMP_BROADCOM:
930 cpu_probe_broadcom(c);
932 case PRID_COMP_SANDCRAFT:
933 cpu_probe_sandcraft(c);
939 c->cputype = CPU_UNKNOWN;
943 * Platform code can force the cpu type to optimize code
944 * generation. In that case be sure the cpu type is correctly
945 * manually setup otherwise it could trigger some nasty bugs.
947 BUG_ON(current_cpu_type() != c->cputype);
949 if (c->options & MIPS_CPU_FPU) {
950 c->fpu_id = cpu_get_fpu_id();
952 if (c->isa_level == MIPS_CPU_ISA_M32R1 ||
953 c->isa_level == MIPS_CPU_ISA_M32R2 ||
954 c->isa_level == MIPS_CPU_ISA_M64R1 ||
955 c->isa_level == MIPS_CPU_ISA_M64R2) {
956 if (c->fpu_id & MIPS_FPIR_3D)
957 c->ases |= MIPS_ASE_MIPS3D;
961 __cpu_name[cpu] = cpu_to_name(c);
964 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
969 __cpuinit void cpu_report(void)
971 struct cpuinfo_mips *c = ¤t_cpu_data;
973 printk(KERN_INFO "CPU revision is: %08x (%s)\n",
974 c->processor_id, cpu_name_string());
975 if (c->options & MIPS_CPU_FPU)
976 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);