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-features.h>
24 #include <asm/cpu-type.h>
26 #include <asm/mipsregs.h>
27 #include <asm/mipsmtregs.h>
29 #include <asm/watch.h>
31 #include <asm/pgtable-bits.h>
32 #include <asm/spram.h>
33 #include <asm/uaccess.h>
35 /* Hardware capabilities */
36 unsigned int elf_hwcap __read_mostly
;
39 * Get the FPU Implementation/Revision.
41 static inline unsigned long cpu_get_fpu_id(void)
43 unsigned long tmp
, fpu_id
;
45 tmp
= read_c0_status();
46 __enable_fpu(FPU_AS_IS
);
47 fpu_id
= read_32bit_cp1_register(CP1_REVISION
);
53 * Check if the CPU has an external FPU.
55 static inline int __cpu_has_fpu(void)
57 return (cpu_get_fpu_id() & FPIR_IMP_MASK
) != FPIR_IMP_NONE
;
60 static inline unsigned long cpu_get_msa_id(void)
62 unsigned long status
, msa_id
;
64 status
= read_c0_status();
65 __enable_fpu(FPU_64BIT
);
67 msa_id
= read_msa_ir();
69 write_c0_status(status
);
74 * Determine the FCSR mask for FPU hardware.
76 static inline void cpu_set_fpu_fcsr_mask(struct cpuinfo_mips
*c
)
78 unsigned long sr
, mask
, fcsr
, fcsr0
, fcsr1
;
81 mask
= FPU_CSR_ALL_X
| FPU_CSR_ALL_E
| FPU_CSR_ALL_S
| FPU_CSR_RM
;
83 sr
= read_c0_status();
84 __enable_fpu(FPU_AS_IS
);
87 write_32bit_cp1_register(CP1_STATUS
, fcsr0
);
88 fcsr0
= read_32bit_cp1_register(CP1_STATUS
);
91 write_32bit_cp1_register(CP1_STATUS
, fcsr1
);
92 fcsr1
= read_32bit_cp1_register(CP1_STATUS
);
94 write_32bit_cp1_register(CP1_STATUS
, fcsr
);
98 c
->fpu_msk31
= ~(fcsr0
^ fcsr1
) & ~mask
;
102 * Set the FIR feature flags for the FPU emulator.
104 static void cpu_set_nofpu_id(struct cpuinfo_mips
*c
)
109 if (c
->isa_level
& (MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
|
110 MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
111 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
))
112 value
|= MIPS_FPIR_D
| MIPS_FPIR_S
;
113 if (c
->isa_level
& (MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
114 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
))
115 value
|= MIPS_FPIR_F64
| MIPS_FPIR_L
| MIPS_FPIR_W
;
119 /* Determined FPU emulator mask to use for the boot CPU with "nofpu". */
120 static unsigned int mips_nofpu_msk31
;
123 * Set options for FPU hardware.
125 static void cpu_set_fpu_opts(struct cpuinfo_mips
*c
)
127 c
->fpu_id
= cpu_get_fpu_id();
128 mips_nofpu_msk31
= c
->fpu_msk31
;
130 if (c
->isa_level
& (MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
|
131 MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
132 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
)) {
133 if (c
->fpu_id
& MIPS_FPIR_3D
)
134 c
->ases
|= MIPS_ASE_MIPS3D
;
135 if (c
->fpu_id
& MIPS_FPIR_FREP
)
136 c
->options
|= MIPS_CPU_FRE
;
139 cpu_set_fpu_fcsr_mask(c
);
143 * Set options for the FPU emulator.
145 static void cpu_set_nofpu_opts(struct cpuinfo_mips
*c
)
147 c
->options
&= ~MIPS_CPU_FPU
;
148 c
->fpu_msk31
= mips_nofpu_msk31
;
153 static int mips_fpu_disabled
;
155 static int __init
fpu_disable(char *s
)
157 cpu_set_nofpu_opts(&boot_cpu_data
);
158 mips_fpu_disabled
= 1;
163 __setup("nofpu", fpu_disable
);
165 int mips_dsp_disabled
;
167 static int __init
dsp_disable(char *s
)
169 cpu_data
[0].ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
170 mips_dsp_disabled
= 1;
175 __setup("nodsp", dsp_disable
);
177 static int mips_htw_disabled
;
179 static int __init
htw_disable(char *s
)
181 mips_htw_disabled
= 1;
182 cpu_data
[0].options
&= ~MIPS_CPU_HTW
;
183 write_c0_pwctl(read_c0_pwctl() &
184 ~(1 << MIPS_PWCTL_PWEN_SHIFT
));
189 __setup("nohtw", htw_disable
);
191 static int mips_ftlb_disabled
;
192 static int mips_has_ftlb_configured
;
194 static int set_ftlb_enable(struct cpuinfo_mips
*c
, int enable
);
196 static int __init
ftlb_disable(char *s
)
198 unsigned int config4
, mmuextdef
;
201 * If the core hasn't done any FTLB configuration, there is nothing
204 if (!mips_has_ftlb_configured
)
207 /* Disable it in the boot cpu */
208 if (set_ftlb_enable(&cpu_data
[0], 0)) {
209 pr_warn("Can't turn FTLB off\n");
213 back_to_back_c0_hazard();
215 config4
= read_c0_config4();
217 /* Check that FTLB has been disabled */
218 mmuextdef
= config4
& MIPS_CONF4_MMUEXTDEF
;
219 /* MMUSIZEEXT == VTLB ON, FTLB OFF */
220 if (mmuextdef
== MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT
) {
221 /* This should never happen */
222 pr_warn("FTLB could not be disabled!\n");
226 mips_ftlb_disabled
= 1;
227 mips_has_ftlb_configured
= 0;
230 * noftlb is mainly used for debug purposes so print
231 * an informative message instead of using pr_debug()
233 pr_info("FTLB has been disabled\n");
236 * Some of these bits are duplicated in the decode_config4.
237 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
238 * once FTLB has been disabled so undo what decode_config4 did.
240 cpu_data
[0].tlbsize
-= cpu_data
[0].tlbsizeftlbways
*
241 cpu_data
[0].tlbsizeftlbsets
;
242 cpu_data
[0].tlbsizeftlbsets
= 0;
243 cpu_data
[0].tlbsizeftlbways
= 0;
248 __setup("noftlb", ftlb_disable
);
251 static inline void check_errata(void)
253 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
255 switch (current_cpu_type()) {
258 * Erratum "RPS May Cause Incorrect Instruction Execution"
259 * This code only handles VPE0, any SMP/RTOS code
260 * making use of VPE1 will be responsable for that VPE.
262 if ((c
->processor_id
& PRID_REV_MASK
) <= PRID_REV_34K_V1_0_2
)
263 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS
);
270 void __init
check_bugs32(void)
276 * Probe whether cpu has config register by trying to play with
277 * alternate cache bit and see whether it matters.
278 * It's used by cpu_probe to distinguish between R3000A and R3081.
280 static inline int cpu_has_confreg(void)
282 #ifdef CONFIG_CPU_R3000
283 extern unsigned long r3k_cache_size(unsigned long);
284 unsigned long size1
, size2
;
285 unsigned long cfg
= read_c0_conf();
287 size1
= r3k_cache_size(ST0_ISC
);
288 write_c0_conf(cfg
^ R30XX_CONF_AC
);
289 size2
= r3k_cache_size(ST0_ISC
);
291 return size1
!= size2
;
297 static inline void set_elf_platform(int cpu
, const char *plat
)
300 __elf_platform
= plat
;
303 static inline void cpu_probe_vmbits(struct cpuinfo_mips
*c
)
305 #ifdef __NEED_VMBITS_PROBE
306 write_c0_entryhi(0x3fffffffffffe000ULL
);
307 back_to_back_c0_hazard();
308 c
->vmbits
= fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL
);
312 static void set_isa(struct cpuinfo_mips
*c
, unsigned int isa
)
315 case MIPS_CPU_ISA_M64R2
:
316 c
->isa_level
|= MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
;
317 case MIPS_CPU_ISA_M64R1
:
318 c
->isa_level
|= MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
;
320 c
->isa_level
|= MIPS_CPU_ISA_V
;
321 case MIPS_CPU_ISA_IV
:
322 c
->isa_level
|= MIPS_CPU_ISA_IV
;
323 case MIPS_CPU_ISA_III
:
324 c
->isa_level
|= MIPS_CPU_ISA_II
| MIPS_CPU_ISA_III
;
327 /* R6 incompatible with everything else */
328 case MIPS_CPU_ISA_M64R6
:
329 c
->isa_level
|= MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
;
330 case MIPS_CPU_ISA_M32R6
:
331 c
->isa_level
|= MIPS_CPU_ISA_M32R6
;
332 /* Break here so we don't add incompatible ISAs */
334 case MIPS_CPU_ISA_M32R2
:
335 c
->isa_level
|= MIPS_CPU_ISA_M32R2
;
336 case MIPS_CPU_ISA_M32R1
:
337 c
->isa_level
|= MIPS_CPU_ISA_M32R1
;
338 case MIPS_CPU_ISA_II
:
339 c
->isa_level
|= MIPS_CPU_ISA_II
;
344 static char unknown_isa
[] = KERN_ERR \
345 "Unsupported ISA type, c0.config0: %d.";
347 static unsigned int calculate_ftlb_probability(struct cpuinfo_mips
*c
)
350 unsigned int probability
= c
->tlbsize
/ c
->tlbsizevtlb
;
353 * 0 = All TLBWR instructions go to FTLB
354 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
355 * FTLB and 1 goes to the VTLB.
356 * 2 = 7:1: As above with 7:1 ratio.
357 * 3 = 3:1: As above with 3:1 ratio.
359 * Use the linear midpoint as the probability threshold.
361 if (probability
>= 12)
363 else if (probability
>= 6)
367 * So FTLB is less than 4 times bigger than VTLB.
368 * A 3:1 ratio can still be useful though.
373 static int set_ftlb_enable(struct cpuinfo_mips
*c
, int enable
)
377 /* It's implementation dependent how the FTLB can be enabled */
378 switch (c
->cputype
) {
381 /* proAptiv & related cores use Config6 to enable the FTLB */
382 config
= read_c0_config6();
383 /* Clear the old probability value */
384 config
&= ~(3 << MIPS_CONF6_FTLBP_SHIFT
);
387 write_c0_config6(config
|
388 (calculate_ftlb_probability(c
)
389 << MIPS_CONF6_FTLBP_SHIFT
)
390 | MIPS_CONF6_FTLBEN
);
393 write_c0_config6(config
& ~MIPS_CONF6_FTLBEN
);
396 /* I6400 & related cores use Config7 to configure FTLB */
397 config
= read_c0_config7();
398 /* Clear the old probability value */
399 config
&= ~(3 << MIPS_CONF7_FTLBP_SHIFT
);
400 write_c0_config7(config
| (calculate_ftlb_probability(c
)
401 << MIPS_CONF7_FTLBP_SHIFT
));
410 static inline unsigned int decode_config0(struct cpuinfo_mips
*c
)
412 unsigned int config0
;
415 config0
= read_c0_config();
418 * Look for Standard TLB or Dual VTLB and FTLB
420 mt
= config0
& MIPS_CONF_MT
;
421 if (mt
== MIPS_CONF_MT_TLB
)
422 c
->options
|= MIPS_CPU_TLB
;
423 else if (mt
== MIPS_CONF_MT_FTLB
)
424 c
->options
|= MIPS_CPU_TLB
| MIPS_CPU_FTLB
;
426 isa
= (config0
& MIPS_CONF_AT
) >> 13;
429 switch ((config0
& MIPS_CONF_AR
) >> 10) {
431 set_isa(c
, MIPS_CPU_ISA_M32R1
);
434 set_isa(c
, MIPS_CPU_ISA_M32R2
);
437 set_isa(c
, MIPS_CPU_ISA_M32R6
);
444 switch ((config0
& MIPS_CONF_AR
) >> 10) {
446 set_isa(c
, MIPS_CPU_ISA_M64R1
);
449 set_isa(c
, MIPS_CPU_ISA_M64R2
);
452 set_isa(c
, MIPS_CPU_ISA_M64R6
);
462 return config0
& MIPS_CONF_M
;
465 panic(unknown_isa
, config0
);
468 static inline unsigned int decode_config1(struct cpuinfo_mips
*c
)
470 unsigned int config1
;
472 config1
= read_c0_config1();
474 if (config1
& MIPS_CONF1_MD
)
475 c
->ases
|= MIPS_ASE_MDMX
;
476 if (config1
& MIPS_CONF1_WR
)
477 c
->options
|= MIPS_CPU_WATCH
;
478 if (config1
& MIPS_CONF1_CA
)
479 c
->ases
|= MIPS_ASE_MIPS16
;
480 if (config1
& MIPS_CONF1_EP
)
481 c
->options
|= MIPS_CPU_EJTAG
;
482 if (config1
& MIPS_CONF1_FP
) {
483 c
->options
|= MIPS_CPU_FPU
;
484 c
->options
|= MIPS_CPU_32FPR
;
487 c
->tlbsize
= ((config1
& MIPS_CONF1_TLBS
) >> 25) + 1;
488 c
->tlbsizevtlb
= c
->tlbsize
;
489 c
->tlbsizeftlbsets
= 0;
492 return config1
& MIPS_CONF_M
;
495 static inline unsigned int decode_config2(struct cpuinfo_mips
*c
)
497 unsigned int config2
;
499 config2
= read_c0_config2();
501 if (config2
& MIPS_CONF2_SL
)
502 c
->scache
.flags
&= ~MIPS_CACHE_NOT_PRESENT
;
504 return config2
& MIPS_CONF_M
;
507 static inline unsigned int decode_config3(struct cpuinfo_mips
*c
)
509 unsigned int config3
;
511 config3
= read_c0_config3();
513 if (config3
& MIPS_CONF3_SM
) {
514 c
->ases
|= MIPS_ASE_SMARTMIPS
;
515 c
->options
|= MIPS_CPU_RIXI
;
517 if (config3
& MIPS_CONF3_RXI
)
518 c
->options
|= MIPS_CPU_RIXI
;
519 if (config3
& MIPS_CONF3_DSP
)
520 c
->ases
|= MIPS_ASE_DSP
;
521 if (config3
& MIPS_CONF3_DSP2P
)
522 c
->ases
|= MIPS_ASE_DSP2P
;
523 if (config3
& MIPS_CONF3_VINT
)
524 c
->options
|= MIPS_CPU_VINT
;
525 if (config3
& MIPS_CONF3_VEIC
)
526 c
->options
|= MIPS_CPU_VEIC
;
527 if (config3
& MIPS_CONF3_MT
)
528 c
->ases
|= MIPS_ASE_MIPSMT
;
529 if (config3
& MIPS_CONF3_ULRI
)
530 c
->options
|= MIPS_CPU_ULRI
;
531 if (config3
& MIPS_CONF3_ISA
)
532 c
->options
|= MIPS_CPU_MICROMIPS
;
533 if (config3
& MIPS_CONF3_VZ
)
534 c
->ases
|= MIPS_ASE_VZ
;
535 if (config3
& MIPS_CONF3_SC
)
536 c
->options
|= MIPS_CPU_SEGMENTS
;
537 if (config3
& MIPS_CONF3_MSA
)
538 c
->ases
|= MIPS_ASE_MSA
;
539 if (config3
& MIPS_CONF3_PW
) {
541 c
->options
|= MIPS_CPU_HTW
;
543 if (config3
& MIPS_CONF3_CDMM
)
544 c
->options
|= MIPS_CPU_CDMM
;
545 if (config3
& MIPS_CONF3_SP
)
546 c
->options
|= MIPS_CPU_SP
;
548 return config3
& MIPS_CONF_M
;
551 static inline unsigned int decode_config4(struct cpuinfo_mips
*c
)
553 unsigned int config4
;
555 unsigned int mmuextdef
;
556 unsigned int ftlb_page
= MIPS_CONF4_FTLBPAGESIZE
;
558 config4
= read_c0_config4();
561 if (((config4
& MIPS_CONF4_IE
) >> 29) == 2)
562 c
->options
|= MIPS_CPU_TLBINV
;
565 * R6 has dropped the MMUExtDef field from config4.
566 * On R6 the fields always describe the FTLB, and only if it is
567 * present according to Config.MT.
569 if (!cpu_has_mips_r6
)
570 mmuextdef
= config4
& MIPS_CONF4_MMUEXTDEF
;
571 else if (cpu_has_ftlb
)
572 mmuextdef
= MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT
;
577 case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
:
578 c
->tlbsize
+= (config4
& MIPS_CONF4_MMUSIZEEXT
) * 0x40;
579 c
->tlbsizevtlb
= c
->tlbsize
;
581 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT
:
583 ((config4
& MIPS_CONF4_VTLBSIZEEXT
) >>
584 MIPS_CONF4_VTLBSIZEEXT_SHIFT
) * 0x40;
585 c
->tlbsize
= c
->tlbsizevtlb
;
586 ftlb_page
= MIPS_CONF4_VFTLBPAGESIZE
;
588 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT
:
589 if (mips_ftlb_disabled
)
591 newcf4
= (config4
& ~ftlb_page
) |
592 (page_size_ftlb(mmuextdef
) <<
593 MIPS_CONF4_FTLBPAGESIZE_SHIFT
);
594 write_c0_config4(newcf4
);
595 back_to_back_c0_hazard();
596 config4
= read_c0_config4();
597 if (config4
!= newcf4
) {
598 pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
600 /* Switch FTLB off */
601 set_ftlb_enable(c
, 0);
604 c
->tlbsizeftlbsets
= 1 <<
605 ((config4
& MIPS_CONF4_FTLBSETS
) >>
606 MIPS_CONF4_FTLBSETS_SHIFT
);
607 c
->tlbsizeftlbways
= ((config4
& MIPS_CONF4_FTLBWAYS
) >>
608 MIPS_CONF4_FTLBWAYS_SHIFT
) + 2;
609 c
->tlbsize
+= c
->tlbsizeftlbways
* c
->tlbsizeftlbsets
;
610 mips_has_ftlb_configured
= 1;
615 c
->kscratch_mask
= (config4
>> 16) & 0xff;
617 return config4
& MIPS_CONF_M
;
620 static inline unsigned int decode_config5(struct cpuinfo_mips
*c
)
622 unsigned int config5
;
624 config5
= read_c0_config5();
625 config5
&= ~(MIPS_CONF5_UFR
| MIPS_CONF5_UFE
);
626 write_c0_config5(config5
);
628 if (config5
& MIPS_CONF5_EVA
)
629 c
->options
|= MIPS_CPU_EVA
;
630 if (config5
& MIPS_CONF5_MRP
)
631 c
->options
|= MIPS_CPU_MAAR
;
632 if (config5
& MIPS_CONF5_LLB
)
633 c
->options
|= MIPS_CPU_RW_LLB
;
635 if (config5
& MIPS_CONF5_MVH
)
636 c
->options
|= MIPS_CPU_XPA
;
639 return config5
& MIPS_CONF_M
;
642 static void decode_configs(struct cpuinfo_mips
*c
)
646 /* MIPS32 or MIPS64 compliant CPU. */
647 c
->options
= MIPS_CPU_4KEX
| MIPS_CPU_4K_CACHE
| MIPS_CPU_COUNTER
|
648 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
| MIPS_CPU_MCHECK
;
650 c
->scache
.flags
= MIPS_CACHE_NOT_PRESENT
;
652 /* Enable FTLB if present and not disabled */
653 set_ftlb_enable(c
, !mips_ftlb_disabled
);
655 ok
= decode_config0(c
); /* Read Config registers. */
656 BUG_ON(!ok
); /* Arch spec violation! */
658 ok
= decode_config1(c
);
660 ok
= decode_config2(c
);
662 ok
= decode_config3(c
);
664 ok
= decode_config4(c
);
666 ok
= decode_config5(c
);
668 mips_probe_watch_registers(c
);
671 /* Enable the RIXI exceptions */
672 set_c0_pagegrain(PG_IEC
);
673 back_to_back_c0_hazard();
674 /* Verify the IEC bit is set */
675 if (read_c0_pagegrain() & PG_IEC
)
676 c
->options
|= MIPS_CPU_RIXIEX
;
679 #ifndef CONFIG_MIPS_CPS
680 if (cpu_has_mips_r2_r6
) {
681 c
->core
= get_ebase_cpunum();
683 c
->core
>>= fls(core_nvpes()) - 1;
688 #define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
691 static inline void cpu_probe_legacy(struct cpuinfo_mips
*c
, unsigned int cpu
)
693 switch (c
->processor_id
& PRID_IMP_MASK
) {
695 c
->cputype
= CPU_R2000
;
696 __cpu_name
[cpu
] = "R2000";
697 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
698 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
701 c
->options
|= MIPS_CPU_FPU
;
705 if ((c
->processor_id
& PRID_REV_MASK
) == PRID_REV_R3000A
) {
706 if (cpu_has_confreg()) {
707 c
->cputype
= CPU_R3081E
;
708 __cpu_name
[cpu
] = "R3081";
710 c
->cputype
= CPU_R3000A
;
711 __cpu_name
[cpu
] = "R3000A";
714 c
->cputype
= CPU_R3000
;
715 __cpu_name
[cpu
] = "R3000";
717 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
718 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
721 c
->options
|= MIPS_CPU_FPU
;
725 if (read_c0_config() & CONF_SC
) {
726 if ((c
->processor_id
& PRID_REV_MASK
) >=
728 c
->cputype
= CPU_R4400PC
;
729 __cpu_name
[cpu
] = "R4400PC";
731 c
->cputype
= CPU_R4000PC
;
732 __cpu_name
[cpu
] = "R4000PC";
735 int cca
= read_c0_config() & CONF_CM_CMASK
;
739 * SC and MC versions can't be reliably told apart,
740 * but only the latter support coherent caching
741 * modes so assume the firmware has set the KSEG0
742 * coherency attribute reasonably (if uncached, we
746 case CONF_CM_CACHABLE_CE
:
747 case CONF_CM_CACHABLE_COW
:
748 case CONF_CM_CACHABLE_CUW
:
755 if ((c
->processor_id
& PRID_REV_MASK
) >=
757 c
->cputype
= mc
? CPU_R4400MC
: CPU_R4400SC
;
758 __cpu_name
[cpu
] = mc
? "R4400MC" : "R4400SC";
760 c
->cputype
= mc
? CPU_R4000MC
: CPU_R4000SC
;
761 __cpu_name
[cpu
] = mc
? "R4000MC" : "R4000SC";
765 set_isa(c
, MIPS_CPU_ISA_III
);
766 c
->fpu_msk31
|= FPU_CSR_CONDX
;
767 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
768 MIPS_CPU_WATCH
| MIPS_CPU_VCE
|
772 case PRID_IMP_VR41XX
:
773 set_isa(c
, MIPS_CPU_ISA_III
);
774 c
->fpu_msk31
|= FPU_CSR_CONDX
;
775 c
->options
= R4K_OPTS
;
777 switch (c
->processor_id
& 0xf0) {
778 case PRID_REV_VR4111
:
779 c
->cputype
= CPU_VR4111
;
780 __cpu_name
[cpu
] = "NEC VR4111";
782 case PRID_REV_VR4121
:
783 c
->cputype
= CPU_VR4121
;
784 __cpu_name
[cpu
] = "NEC VR4121";
786 case PRID_REV_VR4122
:
787 if ((c
->processor_id
& 0xf) < 0x3) {
788 c
->cputype
= CPU_VR4122
;
789 __cpu_name
[cpu
] = "NEC VR4122";
791 c
->cputype
= CPU_VR4181A
;
792 __cpu_name
[cpu
] = "NEC VR4181A";
795 case PRID_REV_VR4130
:
796 if ((c
->processor_id
& 0xf) < 0x4) {
797 c
->cputype
= CPU_VR4131
;
798 __cpu_name
[cpu
] = "NEC VR4131";
800 c
->cputype
= CPU_VR4133
;
801 c
->options
|= MIPS_CPU_LLSC
;
802 __cpu_name
[cpu
] = "NEC VR4133";
806 printk(KERN_INFO
"Unexpected CPU of NEC VR4100 series\n");
807 c
->cputype
= CPU_VR41XX
;
808 __cpu_name
[cpu
] = "NEC Vr41xx";
813 c
->cputype
= CPU_R4300
;
814 __cpu_name
[cpu
] = "R4300";
815 set_isa(c
, MIPS_CPU_ISA_III
);
816 c
->fpu_msk31
|= FPU_CSR_CONDX
;
817 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
822 c
->cputype
= CPU_R4600
;
823 __cpu_name
[cpu
] = "R4600";
824 set_isa(c
, MIPS_CPU_ISA_III
);
825 c
->fpu_msk31
|= FPU_CSR_CONDX
;
826 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
833 * This processor doesn't have an MMU, so it's not
834 * "real easy" to run Linux on it. It is left purely
835 * for documentation. Commented out because it shares
836 * it's c0_prid id number with the TX3900.
838 c
->cputype
= CPU_R4650
;
839 __cpu_name
[cpu
] = "R4650";
840 set_isa(c
, MIPS_CPU_ISA_III
);
841 c
->fpu_msk31
|= FPU_CSR_CONDX
;
842 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_LLSC
;
847 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
848 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_TX39_CACHE
;
850 if ((c
->processor_id
& 0xf0) == (PRID_REV_TX3927
& 0xf0)) {
851 c
->cputype
= CPU_TX3927
;
852 __cpu_name
[cpu
] = "TX3927";
855 switch (c
->processor_id
& PRID_REV_MASK
) {
856 case PRID_REV_TX3912
:
857 c
->cputype
= CPU_TX3912
;
858 __cpu_name
[cpu
] = "TX3912";
861 case PRID_REV_TX3922
:
862 c
->cputype
= CPU_TX3922
;
863 __cpu_name
[cpu
] = "TX3922";
870 c
->cputype
= CPU_R4700
;
871 __cpu_name
[cpu
] = "R4700";
872 set_isa(c
, MIPS_CPU_ISA_III
);
873 c
->fpu_msk31
|= FPU_CSR_CONDX
;
874 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
879 c
->cputype
= CPU_TX49XX
;
880 __cpu_name
[cpu
] = "R49XX";
881 set_isa(c
, MIPS_CPU_ISA_III
);
882 c
->fpu_msk31
|= FPU_CSR_CONDX
;
883 c
->options
= R4K_OPTS
| MIPS_CPU_LLSC
;
884 if (!(c
->processor_id
& 0x08))
885 c
->options
|= MIPS_CPU_FPU
| MIPS_CPU_32FPR
;
889 c
->cputype
= CPU_R5000
;
890 __cpu_name
[cpu
] = "R5000";
891 set_isa(c
, MIPS_CPU_ISA_IV
);
892 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
897 c
->cputype
= CPU_R5432
;
898 __cpu_name
[cpu
] = "R5432";
899 set_isa(c
, MIPS_CPU_ISA_IV
);
900 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
901 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
905 c
->cputype
= CPU_R5500
;
906 __cpu_name
[cpu
] = "R5500";
907 set_isa(c
, MIPS_CPU_ISA_IV
);
908 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
909 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
912 case PRID_IMP_NEVADA
:
913 c
->cputype
= CPU_NEVADA
;
914 __cpu_name
[cpu
] = "Nevada";
915 set_isa(c
, MIPS_CPU_ISA_IV
);
916 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
917 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
;
921 c
->cputype
= CPU_R6000
;
922 __cpu_name
[cpu
] = "R6000";
923 set_isa(c
, MIPS_CPU_ISA_II
);
924 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
925 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
929 case PRID_IMP_R6000A
:
930 c
->cputype
= CPU_R6000A
;
931 __cpu_name
[cpu
] = "R6000A";
932 set_isa(c
, MIPS_CPU_ISA_II
);
933 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
934 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
938 case PRID_IMP_RM7000
:
939 c
->cputype
= CPU_RM7000
;
940 __cpu_name
[cpu
] = "RM7000";
941 set_isa(c
, MIPS_CPU_ISA_IV
);
942 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
945 * Undocumented RM7000: Bit 29 in the info register of
946 * the RM7000 v2.0 indicates if the TLB has 48 or 64
949 * 29 1 => 64 entry JTLB
952 c
->tlbsize
= (read_c0_info() & (1 << 29)) ? 64 : 48;
955 c
->cputype
= CPU_R8000
;
956 __cpu_name
[cpu
] = "RM8000";
957 set_isa(c
, MIPS_CPU_ISA_IV
);
958 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4KEX
|
959 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
961 c
->tlbsize
= 384; /* has weird TLB: 3-way x 128 */
963 case PRID_IMP_R10000
:
964 c
->cputype
= CPU_R10000
;
965 __cpu_name
[cpu
] = "R10000";
966 set_isa(c
, MIPS_CPU_ISA_IV
);
967 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
968 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
969 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
973 case PRID_IMP_R12000
:
974 c
->cputype
= CPU_R12000
;
975 __cpu_name
[cpu
] = "R12000";
976 set_isa(c
, MIPS_CPU_ISA_IV
);
977 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
978 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
979 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
980 MIPS_CPU_LLSC
| MIPS_CPU_BP_GHIST
;
983 case PRID_IMP_R14000
:
984 if (((c
->processor_id
>> 4) & 0x0f) > 2) {
985 c
->cputype
= CPU_R16000
;
986 __cpu_name
[cpu
] = "R16000";
988 c
->cputype
= CPU_R14000
;
989 __cpu_name
[cpu
] = "R14000";
991 set_isa(c
, MIPS_CPU_ISA_IV
);
992 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
993 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
994 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
995 MIPS_CPU_LLSC
| MIPS_CPU_BP_GHIST
;
998 case PRID_IMP_LOONGSON_64
: /* Loongson-2/3 */
999 switch (c
->processor_id
& PRID_REV_MASK
) {
1000 case PRID_REV_LOONGSON2E
:
1001 c
->cputype
= CPU_LOONGSON2
;
1002 __cpu_name
[cpu
] = "ICT Loongson-2";
1003 set_elf_platform(cpu
, "loongson2e");
1004 set_isa(c
, MIPS_CPU_ISA_III
);
1005 c
->fpu_msk31
|= FPU_CSR_CONDX
;
1007 case PRID_REV_LOONGSON2F
:
1008 c
->cputype
= CPU_LOONGSON2
;
1009 __cpu_name
[cpu
] = "ICT Loongson-2";
1010 set_elf_platform(cpu
, "loongson2f");
1011 set_isa(c
, MIPS_CPU_ISA_III
);
1012 c
->fpu_msk31
|= FPU_CSR_CONDX
;
1014 case PRID_REV_LOONGSON3A
:
1015 c
->cputype
= CPU_LOONGSON3
;
1016 __cpu_name
[cpu
] = "ICT Loongson-3";
1017 set_elf_platform(cpu
, "loongson3a");
1018 set_isa(c
, MIPS_CPU_ISA_M64R1
);
1020 case PRID_REV_LOONGSON3B_R1
:
1021 case PRID_REV_LOONGSON3B_R2
:
1022 c
->cputype
= CPU_LOONGSON3
;
1023 __cpu_name
[cpu
] = "ICT Loongson-3";
1024 set_elf_platform(cpu
, "loongson3b");
1025 set_isa(c
, MIPS_CPU_ISA_M64R1
);
1029 c
->options
= R4K_OPTS
|
1030 MIPS_CPU_FPU
| MIPS_CPU_LLSC
|
1033 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1035 case PRID_IMP_LOONGSON_32
: /* Loongson-1 */
1038 c
->cputype
= CPU_LOONGSON1
;
1040 switch (c
->processor_id
& PRID_REV_MASK
) {
1041 case PRID_REV_LOONGSON1B
:
1042 __cpu_name
[cpu
] = "Loongson 1B";
1050 static inline void cpu_probe_mips(struct cpuinfo_mips
*c
, unsigned int cpu
)
1052 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1053 switch (c
->processor_id
& PRID_IMP_MASK
) {
1054 case PRID_IMP_QEMU_GENERIC
:
1055 c
->writecombine
= _CACHE_UNCACHED
;
1056 c
->cputype
= CPU_QEMU_GENERIC
;
1057 __cpu_name
[cpu
] = "MIPS GENERIC QEMU";
1060 c
->cputype
= CPU_4KC
;
1061 c
->writecombine
= _CACHE_UNCACHED
;
1062 __cpu_name
[cpu
] = "MIPS 4Kc";
1065 case PRID_IMP_4KECR2
:
1066 c
->cputype
= CPU_4KEC
;
1067 c
->writecombine
= _CACHE_UNCACHED
;
1068 __cpu_name
[cpu
] = "MIPS 4KEc";
1072 c
->cputype
= CPU_4KSC
;
1073 c
->writecombine
= _CACHE_UNCACHED
;
1074 __cpu_name
[cpu
] = "MIPS 4KSc";
1077 c
->cputype
= CPU_5KC
;
1078 c
->writecombine
= _CACHE_UNCACHED
;
1079 __cpu_name
[cpu
] = "MIPS 5Kc";
1082 c
->cputype
= CPU_5KE
;
1083 c
->writecombine
= _CACHE_UNCACHED
;
1084 __cpu_name
[cpu
] = "MIPS 5KE";
1087 c
->cputype
= CPU_20KC
;
1088 c
->writecombine
= _CACHE_UNCACHED
;
1089 __cpu_name
[cpu
] = "MIPS 20Kc";
1092 c
->cputype
= CPU_24K
;
1093 c
->writecombine
= _CACHE_UNCACHED
;
1094 __cpu_name
[cpu
] = "MIPS 24Kc";
1097 c
->cputype
= CPU_24K
;
1098 c
->writecombine
= _CACHE_UNCACHED
;
1099 __cpu_name
[cpu
] = "MIPS 24KEc";
1102 c
->cputype
= CPU_25KF
;
1103 c
->writecombine
= _CACHE_UNCACHED
;
1104 __cpu_name
[cpu
] = "MIPS 25Kc";
1107 c
->cputype
= CPU_34K
;
1108 c
->writecombine
= _CACHE_UNCACHED
;
1109 __cpu_name
[cpu
] = "MIPS 34Kc";
1112 c
->cputype
= CPU_74K
;
1113 c
->writecombine
= _CACHE_UNCACHED
;
1114 __cpu_name
[cpu
] = "MIPS 74Kc";
1116 case PRID_IMP_M14KC
:
1117 c
->cputype
= CPU_M14KC
;
1118 c
->writecombine
= _CACHE_UNCACHED
;
1119 __cpu_name
[cpu
] = "MIPS M14Kc";
1121 case PRID_IMP_M14KEC
:
1122 c
->cputype
= CPU_M14KEC
;
1123 c
->writecombine
= _CACHE_UNCACHED
;
1124 __cpu_name
[cpu
] = "MIPS M14KEc";
1126 case PRID_IMP_1004K
:
1127 c
->cputype
= CPU_1004K
;
1128 c
->writecombine
= _CACHE_UNCACHED
;
1129 __cpu_name
[cpu
] = "MIPS 1004Kc";
1131 case PRID_IMP_1074K
:
1132 c
->cputype
= CPU_1074K
;
1133 c
->writecombine
= _CACHE_UNCACHED
;
1134 __cpu_name
[cpu
] = "MIPS 1074Kc";
1136 case PRID_IMP_INTERAPTIV_UP
:
1137 c
->cputype
= CPU_INTERAPTIV
;
1138 __cpu_name
[cpu
] = "MIPS interAptiv";
1140 case PRID_IMP_INTERAPTIV_MP
:
1141 c
->cputype
= CPU_INTERAPTIV
;
1142 __cpu_name
[cpu
] = "MIPS interAptiv (multi)";
1144 case PRID_IMP_PROAPTIV_UP
:
1145 c
->cputype
= CPU_PROAPTIV
;
1146 __cpu_name
[cpu
] = "MIPS proAptiv";
1148 case PRID_IMP_PROAPTIV_MP
:
1149 c
->cputype
= CPU_PROAPTIV
;
1150 __cpu_name
[cpu
] = "MIPS proAptiv (multi)";
1152 case PRID_IMP_P5600
:
1153 c
->cputype
= CPU_P5600
;
1154 __cpu_name
[cpu
] = "MIPS P5600";
1156 case PRID_IMP_I6400
:
1157 c
->cputype
= CPU_I6400
;
1158 __cpu_name
[cpu
] = "MIPS I6400";
1160 case PRID_IMP_M5150
:
1161 c
->cputype
= CPU_M5150
;
1162 __cpu_name
[cpu
] = "MIPS M5150";
1171 static inline void cpu_probe_alchemy(struct cpuinfo_mips
*c
, unsigned int cpu
)
1174 switch (c
->processor_id
& PRID_IMP_MASK
) {
1175 case PRID_IMP_AU1_REV1
:
1176 case PRID_IMP_AU1_REV2
:
1177 c
->cputype
= CPU_ALCHEMY
;
1178 switch ((c
->processor_id
>> 24) & 0xff) {
1180 __cpu_name
[cpu
] = "Au1000";
1183 __cpu_name
[cpu
] = "Au1500";
1186 __cpu_name
[cpu
] = "Au1100";
1189 __cpu_name
[cpu
] = "Au1550";
1192 __cpu_name
[cpu
] = "Au1200";
1193 if ((c
->processor_id
& PRID_REV_MASK
) == 2)
1194 __cpu_name
[cpu
] = "Au1250";
1197 __cpu_name
[cpu
] = "Au1210";
1200 __cpu_name
[cpu
] = "Au1xxx";
1207 static inline void cpu_probe_sibyte(struct cpuinfo_mips
*c
, unsigned int cpu
)
1211 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1212 switch (c
->processor_id
& PRID_IMP_MASK
) {
1214 c
->cputype
= CPU_SB1
;
1215 __cpu_name
[cpu
] = "SiByte SB1";
1216 /* FPU in pass1 is known to have issues. */
1217 if ((c
->processor_id
& PRID_REV_MASK
) < 0x02)
1218 c
->options
&= ~(MIPS_CPU_FPU
| MIPS_CPU_32FPR
);
1221 c
->cputype
= CPU_SB1A
;
1222 __cpu_name
[cpu
] = "SiByte SB1A";
1227 static inline void cpu_probe_sandcraft(struct cpuinfo_mips
*c
, unsigned int cpu
)
1230 switch (c
->processor_id
& PRID_IMP_MASK
) {
1231 case PRID_IMP_SR71000
:
1232 c
->cputype
= CPU_SR71000
;
1233 __cpu_name
[cpu
] = "Sandcraft SR71000";
1240 static inline void cpu_probe_nxp(struct cpuinfo_mips
*c
, unsigned int cpu
)
1243 switch (c
->processor_id
& PRID_IMP_MASK
) {
1244 case PRID_IMP_PR4450
:
1245 c
->cputype
= CPU_PR4450
;
1246 __cpu_name
[cpu
] = "Philips PR4450";
1247 set_isa(c
, MIPS_CPU_ISA_M32R1
);
1252 static inline void cpu_probe_broadcom(struct cpuinfo_mips
*c
, unsigned int cpu
)
1255 switch (c
->processor_id
& PRID_IMP_MASK
) {
1256 case PRID_IMP_BMIPS32_REV4
:
1257 case PRID_IMP_BMIPS32_REV8
:
1258 c
->cputype
= CPU_BMIPS32
;
1259 __cpu_name
[cpu
] = "Broadcom BMIPS32";
1260 set_elf_platform(cpu
, "bmips32");
1262 case PRID_IMP_BMIPS3300
:
1263 case PRID_IMP_BMIPS3300_ALT
:
1264 case PRID_IMP_BMIPS3300_BUG
:
1265 c
->cputype
= CPU_BMIPS3300
;
1266 __cpu_name
[cpu
] = "Broadcom BMIPS3300";
1267 set_elf_platform(cpu
, "bmips3300");
1269 case PRID_IMP_BMIPS43XX
: {
1270 int rev
= c
->processor_id
& PRID_REV_MASK
;
1272 if (rev
>= PRID_REV_BMIPS4380_LO
&&
1273 rev
<= PRID_REV_BMIPS4380_HI
) {
1274 c
->cputype
= CPU_BMIPS4380
;
1275 __cpu_name
[cpu
] = "Broadcom BMIPS4380";
1276 set_elf_platform(cpu
, "bmips4380");
1278 c
->cputype
= CPU_BMIPS4350
;
1279 __cpu_name
[cpu
] = "Broadcom BMIPS4350";
1280 set_elf_platform(cpu
, "bmips4350");
1284 case PRID_IMP_BMIPS5000
:
1285 case PRID_IMP_BMIPS5200
:
1286 c
->cputype
= CPU_BMIPS5000
;
1287 __cpu_name
[cpu
] = "Broadcom BMIPS5000";
1288 set_elf_platform(cpu
, "bmips5000");
1289 c
->options
|= MIPS_CPU_ULRI
;
1294 static inline void cpu_probe_cavium(struct cpuinfo_mips
*c
, unsigned int cpu
)
1297 switch (c
->processor_id
& PRID_IMP_MASK
) {
1298 case PRID_IMP_CAVIUM_CN38XX
:
1299 case PRID_IMP_CAVIUM_CN31XX
:
1300 case PRID_IMP_CAVIUM_CN30XX
:
1301 c
->cputype
= CPU_CAVIUM_OCTEON
;
1302 __cpu_name
[cpu
] = "Cavium Octeon";
1304 case PRID_IMP_CAVIUM_CN58XX
:
1305 case PRID_IMP_CAVIUM_CN56XX
:
1306 case PRID_IMP_CAVIUM_CN50XX
:
1307 case PRID_IMP_CAVIUM_CN52XX
:
1308 c
->cputype
= CPU_CAVIUM_OCTEON_PLUS
;
1309 __cpu_name
[cpu
] = "Cavium Octeon+";
1311 set_elf_platform(cpu
, "octeon");
1313 case PRID_IMP_CAVIUM_CN61XX
:
1314 case PRID_IMP_CAVIUM_CN63XX
:
1315 case PRID_IMP_CAVIUM_CN66XX
:
1316 case PRID_IMP_CAVIUM_CN68XX
:
1317 case PRID_IMP_CAVIUM_CNF71XX
:
1318 c
->cputype
= CPU_CAVIUM_OCTEON2
;
1319 __cpu_name
[cpu
] = "Cavium Octeon II";
1320 set_elf_platform(cpu
, "octeon2");
1322 case PRID_IMP_CAVIUM_CN70XX
:
1323 case PRID_IMP_CAVIUM_CN78XX
:
1324 c
->cputype
= CPU_CAVIUM_OCTEON3
;
1325 __cpu_name
[cpu
] = "Cavium Octeon III";
1326 set_elf_platform(cpu
, "octeon3");
1329 printk(KERN_INFO
"Unknown Octeon chip!\n");
1330 c
->cputype
= CPU_UNKNOWN
;
1335 static inline void cpu_probe_ingenic(struct cpuinfo_mips
*c
, unsigned int cpu
)
1338 /* JZRISC does not implement the CP0 counter. */
1339 c
->options
&= ~MIPS_CPU_COUNTER
;
1340 BUG_ON(!__builtin_constant_p(cpu_has_counter
) || cpu_has_counter
);
1341 switch (c
->processor_id
& PRID_IMP_MASK
) {
1342 case PRID_IMP_JZRISC
:
1343 c
->cputype
= CPU_JZRISC
;
1344 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1345 __cpu_name
[cpu
] = "Ingenic JZRISC";
1348 panic("Unknown Ingenic Processor ID!");
1353 static inline void cpu_probe_netlogic(struct cpuinfo_mips
*c
, int cpu
)
1357 if ((c
->processor_id
& PRID_IMP_MASK
) == PRID_IMP_NETLOGIC_AU13XX
) {
1358 c
->cputype
= CPU_ALCHEMY
;
1359 __cpu_name
[cpu
] = "Au1300";
1360 /* following stuff is not for Alchemy */
1364 c
->options
= (MIPS_CPU_TLB
|
1372 switch (c
->processor_id
& PRID_IMP_MASK
) {
1373 case PRID_IMP_NETLOGIC_XLP2XX
:
1374 case PRID_IMP_NETLOGIC_XLP9XX
:
1375 case PRID_IMP_NETLOGIC_XLP5XX
:
1376 c
->cputype
= CPU_XLP
;
1377 __cpu_name
[cpu
] = "Broadcom XLPII";
1380 case PRID_IMP_NETLOGIC_XLP8XX
:
1381 case PRID_IMP_NETLOGIC_XLP3XX
:
1382 c
->cputype
= CPU_XLP
;
1383 __cpu_name
[cpu
] = "Netlogic XLP";
1386 case PRID_IMP_NETLOGIC_XLR732
:
1387 case PRID_IMP_NETLOGIC_XLR716
:
1388 case PRID_IMP_NETLOGIC_XLR532
:
1389 case PRID_IMP_NETLOGIC_XLR308
:
1390 case PRID_IMP_NETLOGIC_XLR532C
:
1391 case PRID_IMP_NETLOGIC_XLR516C
:
1392 case PRID_IMP_NETLOGIC_XLR508C
:
1393 case PRID_IMP_NETLOGIC_XLR308C
:
1394 c
->cputype
= CPU_XLR
;
1395 __cpu_name
[cpu
] = "Netlogic XLR";
1398 case PRID_IMP_NETLOGIC_XLS608
:
1399 case PRID_IMP_NETLOGIC_XLS408
:
1400 case PRID_IMP_NETLOGIC_XLS404
:
1401 case PRID_IMP_NETLOGIC_XLS208
:
1402 case PRID_IMP_NETLOGIC_XLS204
:
1403 case PRID_IMP_NETLOGIC_XLS108
:
1404 case PRID_IMP_NETLOGIC_XLS104
:
1405 case PRID_IMP_NETLOGIC_XLS616B
:
1406 case PRID_IMP_NETLOGIC_XLS608B
:
1407 case PRID_IMP_NETLOGIC_XLS416B
:
1408 case PRID_IMP_NETLOGIC_XLS412B
:
1409 case PRID_IMP_NETLOGIC_XLS408B
:
1410 case PRID_IMP_NETLOGIC_XLS404B
:
1411 c
->cputype
= CPU_XLR
;
1412 __cpu_name
[cpu
] = "Netlogic XLS";
1416 pr_info("Unknown Netlogic chip id [%02x]!\n",
1418 c
->cputype
= CPU_XLR
;
1422 if (c
->cputype
== CPU_XLP
) {
1423 set_isa(c
, MIPS_CPU_ISA_M64R2
);
1424 c
->options
|= (MIPS_CPU_FPU
| MIPS_CPU_ULRI
| MIPS_CPU_MCHECK
);
1425 /* This will be updated again after all threads are woken up */
1426 c
->tlbsize
= ((read_c0_config6() >> 16) & 0xffff) + 1;
1428 set_isa(c
, MIPS_CPU_ISA_M64R1
);
1429 c
->tlbsize
= ((read_c0_config1() >> 25) & 0x3f) + 1;
1431 c
->kscratch_mask
= 0xf;
1435 /* For use by uaccess.h */
1437 EXPORT_SYMBOL(__ua_limit
);
1440 const char *__cpu_name
[NR_CPUS
];
1441 const char *__elf_platform
;
1443 void cpu_probe(void)
1445 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1446 unsigned int cpu
= smp_processor_id();
1448 c
->processor_id
= PRID_IMP_UNKNOWN
;
1449 c
->fpu_id
= FPIR_IMP_NONE
;
1450 c
->cputype
= CPU_UNKNOWN
;
1451 c
->writecombine
= _CACHE_UNCACHED
;
1453 c
->fpu_csr31
= FPU_CSR_RN
;
1454 c
->fpu_msk31
= FPU_CSR_RSVD
| FPU_CSR_ABS2008
| FPU_CSR_NAN2008
;
1456 c
->processor_id
= read_c0_prid();
1457 switch (c
->processor_id
& PRID_COMP_MASK
) {
1458 case PRID_COMP_LEGACY
:
1459 cpu_probe_legacy(c
, cpu
);
1461 case PRID_COMP_MIPS
:
1462 cpu_probe_mips(c
, cpu
);
1464 case PRID_COMP_ALCHEMY
:
1465 cpu_probe_alchemy(c
, cpu
);
1467 case PRID_COMP_SIBYTE
:
1468 cpu_probe_sibyte(c
, cpu
);
1470 case PRID_COMP_BROADCOM
:
1471 cpu_probe_broadcom(c
, cpu
);
1473 case PRID_COMP_SANDCRAFT
:
1474 cpu_probe_sandcraft(c
, cpu
);
1477 cpu_probe_nxp(c
, cpu
);
1479 case PRID_COMP_CAVIUM
:
1480 cpu_probe_cavium(c
, cpu
);
1482 case PRID_COMP_INGENIC_D0
:
1483 case PRID_COMP_INGENIC_D1
:
1484 case PRID_COMP_INGENIC_E1
:
1485 cpu_probe_ingenic(c
, cpu
);
1487 case PRID_COMP_NETLOGIC
:
1488 cpu_probe_netlogic(c
, cpu
);
1492 BUG_ON(!__cpu_name
[cpu
]);
1493 BUG_ON(c
->cputype
== CPU_UNKNOWN
);
1496 * Platform code can force the cpu type to optimize code
1497 * generation. In that case be sure the cpu type is correctly
1498 * manually setup otherwise it could trigger some nasty bugs.
1500 BUG_ON(current_cpu_type() != c
->cputype
);
1502 if (mips_fpu_disabled
)
1503 c
->options
&= ~MIPS_CPU_FPU
;
1505 if (mips_dsp_disabled
)
1506 c
->ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
1508 if (mips_htw_disabled
) {
1509 c
->options
&= ~MIPS_CPU_HTW
;
1510 write_c0_pwctl(read_c0_pwctl() &
1511 ~(1 << MIPS_PWCTL_PWEN_SHIFT
));
1514 if (c
->options
& MIPS_CPU_FPU
)
1515 cpu_set_fpu_opts(c
);
1517 cpu_set_nofpu_opts(c
);
1519 if (cpu_has_bp_ghist
)
1520 write_c0_r10k_diag(read_c0_r10k_diag() |
1523 if (cpu_has_mips_r2_r6
) {
1524 c
->srsets
= ((read_c0_srsctl() >> 26) & 0x0f) + 1;
1525 /* R2 has Performance Counter Interrupt indicator */
1526 c
->options
|= MIPS_CPU_PCI
;
1531 if (cpu_has_mips_r6
)
1532 elf_hwcap
|= HWCAP_MIPS_R6
;
1535 c
->msa_id
= cpu_get_msa_id();
1536 WARN(c
->msa_id
& MSA_IR_WRPF
,
1537 "Vector register partitioning unimplemented!");
1538 elf_hwcap
|= HWCAP_MIPS_MSA
;
1541 cpu_probe_vmbits(c
);
1545 __ua_limit
= ~((1ull << cpu_vmbits
) - 1);
1549 void cpu_report(void)
1551 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1553 pr_info("CPU%d revision is: %08x (%s)\n",
1554 smp_processor_id(), c
->processor_id
, cpu_name_string());
1555 if (c
->options
& MIPS_CPU_FPU
)
1556 printk(KERN_INFO
"FPU revision is: %08x\n", c
->fpu_id
);
1558 pr_info("MSA revision is: %08x\n", c
->msa_id
);