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>
36 * Get the FPU Implementation/Revision.
38 static inline unsigned long cpu_get_fpu_id(void)
40 unsigned long tmp
, fpu_id
;
42 tmp
= read_c0_status();
43 __enable_fpu(FPU_AS_IS
);
44 fpu_id
= read_32bit_cp1_register(CP1_REVISION
);
50 * Check if the CPU has an external FPU.
52 static inline int __cpu_has_fpu(void)
54 return (cpu_get_fpu_id() & FPIR_IMP_MASK
) != FPIR_IMP_NONE
;
57 static inline unsigned long cpu_get_msa_id(void)
59 unsigned long status
, msa_id
;
61 status
= read_c0_status();
62 __enable_fpu(FPU_64BIT
);
64 msa_id
= read_msa_ir();
66 write_c0_status(status
);
71 * Determine the FCSR mask for FPU hardware.
73 static inline void cpu_set_fpu_fcsr_mask(struct cpuinfo_mips
*c
)
75 unsigned long sr
, mask
, fcsr
, fcsr0
, fcsr1
;
78 mask
= FPU_CSR_ALL_X
| FPU_CSR_ALL_E
| FPU_CSR_ALL_S
| FPU_CSR_RM
;
80 sr
= read_c0_status();
81 __enable_fpu(FPU_AS_IS
);
84 write_32bit_cp1_register(CP1_STATUS
, fcsr0
);
85 fcsr0
= read_32bit_cp1_register(CP1_STATUS
);
88 write_32bit_cp1_register(CP1_STATUS
, fcsr1
);
89 fcsr1
= read_32bit_cp1_register(CP1_STATUS
);
91 write_32bit_cp1_register(CP1_STATUS
, fcsr
);
95 c
->fpu_msk31
= ~(fcsr0
^ fcsr1
) & ~mask
;
99 * Set the FIR feature flags for the FPU emulator.
101 static void cpu_set_nofpu_id(struct cpuinfo_mips
*c
)
106 if (c
->isa_level
& (MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
|
107 MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
108 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
))
109 value
|= MIPS_FPIR_D
| MIPS_FPIR_S
;
110 if (c
->isa_level
& (MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
111 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
))
112 value
|= MIPS_FPIR_F64
| MIPS_FPIR_L
| MIPS_FPIR_W
;
116 /* Determined FPU emulator mask to use for the boot CPU with "nofpu". */
117 static unsigned int mips_nofpu_msk31
;
120 * Set options for FPU hardware.
122 static void cpu_set_fpu_opts(struct cpuinfo_mips
*c
)
124 c
->fpu_id
= cpu_get_fpu_id();
125 mips_nofpu_msk31
= c
->fpu_msk31
;
127 if (c
->isa_level
& (MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
|
128 MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
|
129 MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
)) {
130 if (c
->fpu_id
& MIPS_FPIR_3D
)
131 c
->ases
|= MIPS_ASE_MIPS3D
;
132 if (c
->fpu_id
& MIPS_FPIR_FREP
)
133 c
->options
|= MIPS_CPU_FRE
;
136 cpu_set_fpu_fcsr_mask(c
);
140 * Set options for the FPU emulator.
142 static void cpu_set_nofpu_opts(struct cpuinfo_mips
*c
)
144 c
->options
&= ~MIPS_CPU_FPU
;
145 c
->fpu_msk31
= mips_nofpu_msk31
;
150 static int mips_fpu_disabled
;
152 static int __init
fpu_disable(char *s
)
154 cpu_set_nofpu_opts(&boot_cpu_data
);
155 mips_fpu_disabled
= 1;
160 __setup("nofpu", fpu_disable
);
162 int mips_dsp_disabled
;
164 static int __init
dsp_disable(char *s
)
166 cpu_data
[0].ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
167 mips_dsp_disabled
= 1;
172 __setup("nodsp", dsp_disable
);
174 static int mips_htw_disabled
;
176 static int __init
htw_disable(char *s
)
178 mips_htw_disabled
= 1;
179 cpu_data
[0].options
&= ~MIPS_CPU_HTW
;
180 write_c0_pwctl(read_c0_pwctl() &
181 ~(1 << MIPS_PWCTL_PWEN_SHIFT
));
186 __setup("nohtw", htw_disable
);
188 static int mips_ftlb_disabled
;
189 static int mips_has_ftlb_configured
;
191 static void set_ftlb_enable(struct cpuinfo_mips
*c
, int enable
);
193 static int __init
ftlb_disable(char *s
)
195 unsigned int config4
, mmuextdef
;
198 * If the core hasn't done any FTLB configuration, there is nothing
201 if (!mips_has_ftlb_configured
)
204 /* Disable it in the boot cpu */
205 set_ftlb_enable(&cpu_data
[0], 0);
207 back_to_back_c0_hazard();
209 config4
= read_c0_config4();
211 /* Check that FTLB has been disabled */
212 mmuextdef
= config4
& MIPS_CONF4_MMUEXTDEF
;
213 /* MMUSIZEEXT == VTLB ON, FTLB OFF */
214 if (mmuextdef
== MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT
) {
215 /* This should never happen */
216 pr_warn("FTLB could not be disabled!\n");
220 mips_ftlb_disabled
= 1;
221 mips_has_ftlb_configured
= 0;
224 * noftlb is mainly used for debug purposes so print
225 * an informative message instead of using pr_debug()
227 pr_info("FTLB has been disabled\n");
230 * Some of these bits are duplicated in the decode_config4.
231 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
232 * once FTLB has been disabled so undo what decode_config4 did.
234 cpu_data
[0].tlbsize
-= cpu_data
[0].tlbsizeftlbways
*
235 cpu_data
[0].tlbsizeftlbsets
;
236 cpu_data
[0].tlbsizeftlbsets
= 0;
237 cpu_data
[0].tlbsizeftlbways
= 0;
242 __setup("noftlb", ftlb_disable
);
245 static inline void check_errata(void)
247 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
249 switch (current_cpu_type()) {
252 * Erratum "RPS May Cause Incorrect Instruction Execution"
253 * This code only handles VPE0, any SMP/RTOS code
254 * making use of VPE1 will be responsable for that VPE.
256 if ((c
->processor_id
& PRID_REV_MASK
) <= PRID_REV_34K_V1_0_2
)
257 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS
);
264 void __init
check_bugs32(void)
270 * Probe whether cpu has config register by trying to play with
271 * alternate cache bit and see whether it matters.
272 * It's used by cpu_probe to distinguish between R3000A and R3081.
274 static inline int cpu_has_confreg(void)
276 #ifdef CONFIG_CPU_R3000
277 extern unsigned long r3k_cache_size(unsigned long);
278 unsigned long size1
, size2
;
279 unsigned long cfg
= read_c0_conf();
281 size1
= r3k_cache_size(ST0_ISC
);
282 write_c0_conf(cfg
^ R30XX_CONF_AC
);
283 size2
= r3k_cache_size(ST0_ISC
);
285 return size1
!= size2
;
291 static inline void set_elf_platform(int cpu
, const char *plat
)
294 __elf_platform
= plat
;
297 static inline void cpu_probe_vmbits(struct cpuinfo_mips
*c
)
299 #ifdef __NEED_VMBITS_PROBE
300 write_c0_entryhi(0x3fffffffffffe000ULL
);
301 back_to_back_c0_hazard();
302 c
->vmbits
= fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL
);
306 static void set_isa(struct cpuinfo_mips
*c
, unsigned int isa
)
309 case MIPS_CPU_ISA_M64R2
:
310 c
->isa_level
|= MIPS_CPU_ISA_M32R2
| MIPS_CPU_ISA_M64R2
;
311 case MIPS_CPU_ISA_M64R1
:
312 c
->isa_level
|= MIPS_CPU_ISA_M32R1
| MIPS_CPU_ISA_M64R1
;
314 c
->isa_level
|= MIPS_CPU_ISA_V
;
315 case MIPS_CPU_ISA_IV
:
316 c
->isa_level
|= MIPS_CPU_ISA_IV
;
317 case MIPS_CPU_ISA_III
:
318 c
->isa_level
|= MIPS_CPU_ISA_II
| MIPS_CPU_ISA_III
;
321 /* R6 incompatible with everything else */
322 case MIPS_CPU_ISA_M64R6
:
323 c
->isa_level
|= MIPS_CPU_ISA_M32R6
| MIPS_CPU_ISA_M64R6
;
324 case MIPS_CPU_ISA_M32R6
:
325 c
->isa_level
|= MIPS_CPU_ISA_M32R6
;
326 /* Break here so we don't add incompatible ISAs */
328 case MIPS_CPU_ISA_M32R2
:
329 c
->isa_level
|= MIPS_CPU_ISA_M32R2
;
330 case MIPS_CPU_ISA_M32R1
:
331 c
->isa_level
|= MIPS_CPU_ISA_M32R1
;
332 case MIPS_CPU_ISA_II
:
333 c
->isa_level
|= MIPS_CPU_ISA_II
;
338 static char unknown_isa
[] = KERN_ERR \
339 "Unsupported ISA type, c0.config0: %d.";
341 static unsigned int calculate_ftlb_probability(struct cpuinfo_mips
*c
)
344 unsigned int probability
= c
->tlbsize
/ c
->tlbsizevtlb
;
347 * 0 = All TLBWR instructions go to FTLB
348 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
349 * FTLB and 1 goes to the VTLB.
350 * 2 = 7:1: As above with 7:1 ratio.
351 * 3 = 3:1: As above with 3:1 ratio.
353 * Use the linear midpoint as the probability threshold.
355 if (probability
>= 12)
357 else if (probability
>= 6)
361 * So FTLB is less than 4 times bigger than VTLB.
362 * A 3:1 ratio can still be useful though.
367 static void set_ftlb_enable(struct cpuinfo_mips
*c
, int enable
)
369 unsigned int config6
;
371 /* It's implementation dependent how the FTLB can be enabled */
372 switch (c
->cputype
) {
375 /* proAptiv & related cores use Config6 to enable the FTLB */
376 config6
= read_c0_config6();
377 /* Clear the old probability value */
378 config6
&= ~(3 << MIPS_CONF6_FTLBP_SHIFT
);
381 write_c0_config6(config6
|
382 (calculate_ftlb_probability(c
)
383 << MIPS_CONF6_FTLBP_SHIFT
)
384 | MIPS_CONF6_FTLBEN
);
387 write_c0_config6(config6
& ~MIPS_CONF6_FTLBEN
);
388 back_to_back_c0_hazard();
393 static inline unsigned int decode_config0(struct cpuinfo_mips
*c
)
395 unsigned int config0
;
398 config0
= read_c0_config();
401 * Look for Standard TLB or Dual VTLB and FTLB
403 if ((((config0
& MIPS_CONF_MT
) >> 7) == 1) ||
404 (((config0
& MIPS_CONF_MT
) >> 7) == 4))
405 c
->options
|= MIPS_CPU_TLB
;
407 isa
= (config0
& MIPS_CONF_AT
) >> 13;
410 switch ((config0
& MIPS_CONF_AR
) >> 10) {
412 set_isa(c
, MIPS_CPU_ISA_M32R1
);
415 set_isa(c
, MIPS_CPU_ISA_M32R2
);
418 set_isa(c
, MIPS_CPU_ISA_M32R6
);
425 switch ((config0
& MIPS_CONF_AR
) >> 10) {
427 set_isa(c
, MIPS_CPU_ISA_M64R1
);
430 set_isa(c
, MIPS_CPU_ISA_M64R2
);
433 set_isa(c
, MIPS_CPU_ISA_M64R6
);
443 return config0
& MIPS_CONF_M
;
446 panic(unknown_isa
, config0
);
449 static inline unsigned int decode_config1(struct cpuinfo_mips
*c
)
451 unsigned int config1
;
453 config1
= read_c0_config1();
455 if (config1
& MIPS_CONF1_MD
)
456 c
->ases
|= MIPS_ASE_MDMX
;
457 if (config1
& MIPS_CONF1_WR
)
458 c
->options
|= MIPS_CPU_WATCH
;
459 if (config1
& MIPS_CONF1_CA
)
460 c
->ases
|= MIPS_ASE_MIPS16
;
461 if (config1
& MIPS_CONF1_EP
)
462 c
->options
|= MIPS_CPU_EJTAG
;
463 if (config1
& MIPS_CONF1_FP
) {
464 c
->options
|= MIPS_CPU_FPU
;
465 c
->options
|= MIPS_CPU_32FPR
;
468 c
->tlbsize
= ((config1
& MIPS_CONF1_TLBS
) >> 25) + 1;
469 c
->tlbsizevtlb
= c
->tlbsize
;
470 c
->tlbsizeftlbsets
= 0;
473 return config1
& MIPS_CONF_M
;
476 static inline unsigned int decode_config2(struct cpuinfo_mips
*c
)
478 unsigned int config2
;
480 config2
= read_c0_config2();
482 if (config2
& MIPS_CONF2_SL
)
483 c
->scache
.flags
&= ~MIPS_CACHE_NOT_PRESENT
;
485 return config2
& MIPS_CONF_M
;
488 static inline unsigned int decode_config3(struct cpuinfo_mips
*c
)
490 unsigned int config3
;
492 config3
= read_c0_config3();
494 if (config3
& MIPS_CONF3_SM
) {
495 c
->ases
|= MIPS_ASE_SMARTMIPS
;
496 c
->options
|= MIPS_CPU_RIXI
;
498 if (config3
& MIPS_CONF3_RXI
)
499 c
->options
|= MIPS_CPU_RIXI
;
500 if (config3
& MIPS_CONF3_DSP
)
501 c
->ases
|= MIPS_ASE_DSP
;
502 if (config3
& MIPS_CONF3_DSP2P
)
503 c
->ases
|= MIPS_ASE_DSP2P
;
504 if (config3
& MIPS_CONF3_VINT
)
505 c
->options
|= MIPS_CPU_VINT
;
506 if (config3
& MIPS_CONF3_VEIC
)
507 c
->options
|= MIPS_CPU_VEIC
;
508 if (config3
& MIPS_CONF3_MT
)
509 c
->ases
|= MIPS_ASE_MIPSMT
;
510 if (config3
& MIPS_CONF3_ULRI
)
511 c
->options
|= MIPS_CPU_ULRI
;
512 if (config3
& MIPS_CONF3_ISA
)
513 c
->options
|= MIPS_CPU_MICROMIPS
;
514 if (config3
& MIPS_CONF3_VZ
)
515 c
->ases
|= MIPS_ASE_VZ
;
516 if (config3
& MIPS_CONF3_SC
)
517 c
->options
|= MIPS_CPU_SEGMENTS
;
518 if (config3
& MIPS_CONF3_MSA
)
519 c
->ases
|= MIPS_ASE_MSA
;
520 /* Only tested on 32-bit cores */
521 if ((config3
& MIPS_CONF3_PW
) && config_enabled(CONFIG_32BIT
)) {
523 c
->options
|= MIPS_CPU_HTW
;
525 if (config3
& MIPS_CONF3_CDMM
)
526 c
->options
|= MIPS_CPU_CDMM
;
528 return config3
& MIPS_CONF_M
;
531 static inline unsigned int decode_config4(struct cpuinfo_mips
*c
)
533 unsigned int config4
;
535 unsigned int mmuextdef
;
536 unsigned int ftlb_page
= MIPS_CONF4_FTLBPAGESIZE
;
538 config4
= read_c0_config4();
541 if (((config4
& MIPS_CONF4_IE
) >> 29) == 2)
542 c
->options
|= MIPS_CPU_TLBINV
;
543 mmuextdef
= config4
& MIPS_CONF4_MMUEXTDEF
;
545 case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
:
546 c
->tlbsize
+= (config4
& MIPS_CONF4_MMUSIZEEXT
) * 0x40;
547 c
->tlbsizevtlb
= c
->tlbsize
;
549 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT
:
551 ((config4
& MIPS_CONF4_VTLBSIZEEXT
) >>
552 MIPS_CONF4_VTLBSIZEEXT_SHIFT
) * 0x40;
553 c
->tlbsize
= c
->tlbsizevtlb
;
554 ftlb_page
= MIPS_CONF4_VFTLBPAGESIZE
;
556 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT
:
557 if (mips_ftlb_disabled
)
559 newcf4
= (config4
& ~ftlb_page
) |
560 (page_size_ftlb(mmuextdef
) <<
561 MIPS_CONF4_FTLBPAGESIZE_SHIFT
);
562 write_c0_config4(newcf4
);
563 back_to_back_c0_hazard();
564 config4
= read_c0_config4();
565 if (config4
!= newcf4
) {
566 pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
568 /* Switch FTLB off */
569 set_ftlb_enable(c
, 0);
572 c
->tlbsizeftlbsets
= 1 <<
573 ((config4
& MIPS_CONF4_FTLBSETS
) >>
574 MIPS_CONF4_FTLBSETS_SHIFT
);
575 c
->tlbsizeftlbways
= ((config4
& MIPS_CONF4_FTLBWAYS
) >>
576 MIPS_CONF4_FTLBWAYS_SHIFT
) + 2;
577 c
->tlbsize
+= c
->tlbsizeftlbways
* c
->tlbsizeftlbsets
;
578 mips_has_ftlb_configured
= 1;
583 c
->kscratch_mask
= (config4
>> 16) & 0xff;
585 return config4
& MIPS_CONF_M
;
588 static inline unsigned int decode_config5(struct cpuinfo_mips
*c
)
590 unsigned int config5
;
592 config5
= read_c0_config5();
593 config5
&= ~(MIPS_CONF5_UFR
| MIPS_CONF5_UFE
);
594 write_c0_config5(config5
);
596 if (config5
& MIPS_CONF5_EVA
)
597 c
->options
|= MIPS_CPU_EVA
;
598 if (config5
& MIPS_CONF5_MRP
)
599 c
->options
|= MIPS_CPU_MAAR
;
600 if (config5
& MIPS_CONF5_LLB
)
601 c
->options
|= MIPS_CPU_RW_LLB
;
603 if (config5
& MIPS_CONF5_MVH
)
604 c
->options
|= MIPS_CPU_XPA
;
607 return config5
& MIPS_CONF_M
;
610 static void decode_configs(struct cpuinfo_mips
*c
)
614 /* MIPS32 or MIPS64 compliant CPU. */
615 c
->options
= MIPS_CPU_4KEX
| MIPS_CPU_4K_CACHE
| MIPS_CPU_COUNTER
|
616 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
| MIPS_CPU_MCHECK
;
618 c
->scache
.flags
= MIPS_CACHE_NOT_PRESENT
;
620 /* Enable FTLB if present and not disabled */
621 set_ftlb_enable(c
, !mips_ftlb_disabled
);
623 ok
= decode_config0(c
); /* Read Config registers. */
624 BUG_ON(!ok
); /* Arch spec violation! */
626 ok
= decode_config1(c
);
628 ok
= decode_config2(c
);
630 ok
= decode_config3(c
);
632 ok
= decode_config4(c
);
634 ok
= decode_config5(c
);
636 mips_probe_watch_registers(c
);
639 /* Enable the RIXI exceptions */
640 set_c0_pagegrain(PG_IEC
);
641 back_to_back_c0_hazard();
642 /* Verify the IEC bit is set */
643 if (read_c0_pagegrain() & PG_IEC
)
644 c
->options
|= MIPS_CPU_RIXIEX
;
647 #ifndef CONFIG_MIPS_CPS
648 if (cpu_has_mips_r2_r6
) {
649 c
->core
= get_ebase_cpunum();
651 c
->core
>>= fls(core_nvpes()) - 1;
656 #define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
659 static inline void cpu_probe_legacy(struct cpuinfo_mips
*c
, unsigned int cpu
)
661 switch (c
->processor_id
& PRID_IMP_MASK
) {
663 c
->cputype
= CPU_R2000
;
664 __cpu_name
[cpu
] = "R2000";
665 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
666 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
669 c
->options
|= MIPS_CPU_FPU
;
673 if ((c
->processor_id
& PRID_REV_MASK
) == PRID_REV_R3000A
) {
674 if (cpu_has_confreg()) {
675 c
->cputype
= CPU_R3081E
;
676 __cpu_name
[cpu
] = "R3081";
678 c
->cputype
= CPU_R3000A
;
679 __cpu_name
[cpu
] = "R3000A";
682 c
->cputype
= CPU_R3000
;
683 __cpu_name
[cpu
] = "R3000";
685 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
686 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_3K_CACHE
|
689 c
->options
|= MIPS_CPU_FPU
;
693 if (read_c0_config() & CONF_SC
) {
694 if ((c
->processor_id
& PRID_REV_MASK
) >=
696 c
->cputype
= CPU_R4400PC
;
697 __cpu_name
[cpu
] = "R4400PC";
699 c
->cputype
= CPU_R4000PC
;
700 __cpu_name
[cpu
] = "R4000PC";
703 int cca
= read_c0_config() & CONF_CM_CMASK
;
707 * SC and MC versions can't be reliably told apart,
708 * but only the latter support coherent caching
709 * modes so assume the firmware has set the KSEG0
710 * coherency attribute reasonably (if uncached, we
714 case CONF_CM_CACHABLE_CE
:
715 case CONF_CM_CACHABLE_COW
:
716 case CONF_CM_CACHABLE_CUW
:
723 if ((c
->processor_id
& PRID_REV_MASK
) >=
725 c
->cputype
= mc
? CPU_R4400MC
: CPU_R4400SC
;
726 __cpu_name
[cpu
] = mc
? "R4400MC" : "R4400SC";
728 c
->cputype
= mc
? CPU_R4000MC
: CPU_R4000SC
;
729 __cpu_name
[cpu
] = mc
? "R4000MC" : "R4000SC";
733 set_isa(c
, MIPS_CPU_ISA_III
);
734 c
->fpu_msk31
|= FPU_CSR_CONDX
;
735 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
736 MIPS_CPU_WATCH
| MIPS_CPU_VCE
|
740 case PRID_IMP_VR41XX
:
741 set_isa(c
, MIPS_CPU_ISA_III
);
742 c
->fpu_msk31
|= FPU_CSR_CONDX
;
743 c
->options
= R4K_OPTS
;
745 switch (c
->processor_id
& 0xf0) {
746 case PRID_REV_VR4111
:
747 c
->cputype
= CPU_VR4111
;
748 __cpu_name
[cpu
] = "NEC VR4111";
750 case PRID_REV_VR4121
:
751 c
->cputype
= CPU_VR4121
;
752 __cpu_name
[cpu
] = "NEC VR4121";
754 case PRID_REV_VR4122
:
755 if ((c
->processor_id
& 0xf) < 0x3) {
756 c
->cputype
= CPU_VR4122
;
757 __cpu_name
[cpu
] = "NEC VR4122";
759 c
->cputype
= CPU_VR4181A
;
760 __cpu_name
[cpu
] = "NEC VR4181A";
763 case PRID_REV_VR4130
:
764 if ((c
->processor_id
& 0xf) < 0x4) {
765 c
->cputype
= CPU_VR4131
;
766 __cpu_name
[cpu
] = "NEC VR4131";
768 c
->cputype
= CPU_VR4133
;
769 c
->options
|= MIPS_CPU_LLSC
;
770 __cpu_name
[cpu
] = "NEC VR4133";
774 printk(KERN_INFO
"Unexpected CPU of NEC VR4100 series\n");
775 c
->cputype
= CPU_VR41XX
;
776 __cpu_name
[cpu
] = "NEC Vr41xx";
781 c
->cputype
= CPU_R4300
;
782 __cpu_name
[cpu
] = "R4300";
783 set_isa(c
, MIPS_CPU_ISA_III
);
784 c
->fpu_msk31
|= FPU_CSR_CONDX
;
785 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
790 c
->cputype
= CPU_R4600
;
791 __cpu_name
[cpu
] = "R4600";
792 set_isa(c
, MIPS_CPU_ISA_III
);
793 c
->fpu_msk31
|= FPU_CSR_CONDX
;
794 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
801 * This processor doesn't have an MMU, so it's not
802 * "real easy" to run Linux on it. It is left purely
803 * for documentation. Commented out because it shares
804 * it's c0_prid id number with the TX3900.
806 c
->cputype
= CPU_R4650
;
807 __cpu_name
[cpu
] = "R4650";
808 set_isa(c
, MIPS_CPU_ISA_III
);
809 c
->fpu_msk31
|= FPU_CSR_CONDX
;
810 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_LLSC
;
815 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
816 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_TX39_CACHE
;
818 if ((c
->processor_id
& 0xf0) == (PRID_REV_TX3927
& 0xf0)) {
819 c
->cputype
= CPU_TX3927
;
820 __cpu_name
[cpu
] = "TX3927";
823 switch (c
->processor_id
& PRID_REV_MASK
) {
824 case PRID_REV_TX3912
:
825 c
->cputype
= CPU_TX3912
;
826 __cpu_name
[cpu
] = "TX3912";
829 case PRID_REV_TX3922
:
830 c
->cputype
= CPU_TX3922
;
831 __cpu_name
[cpu
] = "TX3922";
838 c
->cputype
= CPU_R4700
;
839 __cpu_name
[cpu
] = "R4700";
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_32FPR
|
847 c
->cputype
= CPU_TX49XX
;
848 __cpu_name
[cpu
] = "R49XX";
849 set_isa(c
, MIPS_CPU_ISA_III
);
850 c
->fpu_msk31
|= FPU_CSR_CONDX
;
851 c
->options
= R4K_OPTS
| MIPS_CPU_LLSC
;
852 if (!(c
->processor_id
& 0x08))
853 c
->options
|= MIPS_CPU_FPU
| MIPS_CPU_32FPR
;
857 c
->cputype
= CPU_R5000
;
858 __cpu_name
[cpu
] = "R5000";
859 set_isa(c
, MIPS_CPU_ISA_IV
);
860 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
865 c
->cputype
= CPU_R5432
;
866 __cpu_name
[cpu
] = "R5432";
867 set_isa(c
, MIPS_CPU_ISA_IV
);
868 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
869 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
873 c
->cputype
= CPU_R5500
;
874 __cpu_name
[cpu
] = "R5500";
875 set_isa(c
, MIPS_CPU_ISA_IV
);
876 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
877 MIPS_CPU_WATCH
| MIPS_CPU_LLSC
;
880 case PRID_IMP_NEVADA
:
881 c
->cputype
= CPU_NEVADA
;
882 __cpu_name
[cpu
] = "Nevada";
883 set_isa(c
, MIPS_CPU_ISA_IV
);
884 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
885 MIPS_CPU_DIVEC
| MIPS_CPU_LLSC
;
889 c
->cputype
= CPU_R6000
;
890 __cpu_name
[cpu
] = "R6000";
891 set_isa(c
, MIPS_CPU_ISA_II
);
892 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
893 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
897 case PRID_IMP_R6000A
:
898 c
->cputype
= CPU_R6000A
;
899 __cpu_name
[cpu
] = "R6000A";
900 set_isa(c
, MIPS_CPU_ISA_II
);
901 c
->fpu_msk31
|= FPU_CSR_CONDX
| FPU_CSR_FS
;
902 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_FPU
|
906 case PRID_IMP_RM7000
:
907 c
->cputype
= CPU_RM7000
;
908 __cpu_name
[cpu
] = "RM7000";
909 set_isa(c
, MIPS_CPU_ISA_IV
);
910 c
->options
= R4K_OPTS
| MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
913 * Undocumented RM7000: Bit 29 in the info register of
914 * the RM7000 v2.0 indicates if the TLB has 48 or 64
917 * 29 1 => 64 entry JTLB
920 c
->tlbsize
= (read_c0_info() & (1 << 29)) ? 64 : 48;
923 c
->cputype
= CPU_R8000
;
924 __cpu_name
[cpu
] = "RM8000";
925 set_isa(c
, MIPS_CPU_ISA_IV
);
926 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4KEX
|
927 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
929 c
->tlbsize
= 384; /* has weird TLB: 3-way x 128 */
931 case PRID_IMP_R10000
:
932 c
->cputype
= CPU_R10000
;
933 __cpu_name
[cpu
] = "R10000";
934 set_isa(c
, MIPS_CPU_ISA_IV
);
935 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
936 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
937 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
941 case PRID_IMP_R12000
:
942 c
->cputype
= CPU_R12000
;
943 __cpu_name
[cpu
] = "R12000";
944 set_isa(c
, MIPS_CPU_ISA_IV
);
945 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
946 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
947 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
948 MIPS_CPU_LLSC
| MIPS_CPU_BP_GHIST
;
951 case PRID_IMP_R14000
:
952 if (((c
->processor_id
>> 4) & 0x0f) > 2) {
953 c
->cputype
= CPU_R16000
;
954 __cpu_name
[cpu
] = "R16000";
956 c
->cputype
= CPU_R14000
;
957 __cpu_name
[cpu
] = "R14000";
959 set_isa(c
, MIPS_CPU_ISA_IV
);
960 c
->options
= MIPS_CPU_TLB
| MIPS_CPU_4K_CACHE
| MIPS_CPU_4KEX
|
961 MIPS_CPU_FPU
| MIPS_CPU_32FPR
|
962 MIPS_CPU_COUNTER
| MIPS_CPU_WATCH
|
963 MIPS_CPU_LLSC
| MIPS_CPU_BP_GHIST
;
966 case PRID_IMP_LOONGSON_64
: /* Loongson-2/3 */
967 switch (c
->processor_id
& PRID_REV_MASK
) {
968 case PRID_REV_LOONGSON2E
:
969 c
->cputype
= CPU_LOONGSON2
;
970 __cpu_name
[cpu
] = "ICT Loongson-2";
971 set_elf_platform(cpu
, "loongson2e");
972 set_isa(c
, MIPS_CPU_ISA_III
);
973 c
->fpu_msk31
|= FPU_CSR_CONDX
;
975 case PRID_REV_LOONGSON2F
:
976 c
->cputype
= CPU_LOONGSON2
;
977 __cpu_name
[cpu
] = "ICT Loongson-2";
978 set_elf_platform(cpu
, "loongson2f");
979 set_isa(c
, MIPS_CPU_ISA_III
);
980 c
->fpu_msk31
|= FPU_CSR_CONDX
;
982 case PRID_REV_LOONGSON3A
:
983 c
->cputype
= CPU_LOONGSON3
;
984 __cpu_name
[cpu
] = "ICT Loongson-3";
985 set_elf_platform(cpu
, "loongson3a");
986 set_isa(c
, MIPS_CPU_ISA_M64R1
);
988 case PRID_REV_LOONGSON3B_R1
:
989 case PRID_REV_LOONGSON3B_R2
:
990 c
->cputype
= CPU_LOONGSON3
;
991 __cpu_name
[cpu
] = "ICT Loongson-3";
992 set_elf_platform(cpu
, "loongson3b");
993 set_isa(c
, MIPS_CPU_ISA_M64R1
);
997 c
->options
= R4K_OPTS
|
998 MIPS_CPU_FPU
| MIPS_CPU_LLSC
|
1001 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1003 case PRID_IMP_LOONGSON_32
: /* Loongson-1 */
1006 c
->cputype
= CPU_LOONGSON1
;
1008 switch (c
->processor_id
& PRID_REV_MASK
) {
1009 case PRID_REV_LOONGSON1B
:
1010 __cpu_name
[cpu
] = "Loongson 1B";
1018 static inline void cpu_probe_mips(struct cpuinfo_mips
*c
, unsigned int cpu
)
1020 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1021 switch (c
->processor_id
& PRID_IMP_MASK
) {
1022 case PRID_IMP_QEMU_GENERIC
:
1023 c
->writecombine
= _CACHE_UNCACHED
;
1024 c
->cputype
= CPU_QEMU_GENERIC
;
1025 __cpu_name
[cpu
] = "MIPS GENERIC QEMU";
1028 c
->cputype
= CPU_4KC
;
1029 c
->writecombine
= _CACHE_UNCACHED
;
1030 __cpu_name
[cpu
] = "MIPS 4Kc";
1033 case PRID_IMP_4KECR2
:
1034 c
->cputype
= CPU_4KEC
;
1035 c
->writecombine
= _CACHE_UNCACHED
;
1036 __cpu_name
[cpu
] = "MIPS 4KEc";
1040 c
->cputype
= CPU_4KSC
;
1041 c
->writecombine
= _CACHE_UNCACHED
;
1042 __cpu_name
[cpu
] = "MIPS 4KSc";
1045 c
->cputype
= CPU_5KC
;
1046 c
->writecombine
= _CACHE_UNCACHED
;
1047 __cpu_name
[cpu
] = "MIPS 5Kc";
1050 c
->cputype
= CPU_5KE
;
1051 c
->writecombine
= _CACHE_UNCACHED
;
1052 __cpu_name
[cpu
] = "MIPS 5KE";
1055 c
->cputype
= CPU_20KC
;
1056 c
->writecombine
= _CACHE_UNCACHED
;
1057 __cpu_name
[cpu
] = "MIPS 20Kc";
1060 c
->cputype
= CPU_24K
;
1061 c
->writecombine
= _CACHE_UNCACHED
;
1062 __cpu_name
[cpu
] = "MIPS 24Kc";
1065 c
->cputype
= CPU_24K
;
1066 c
->writecombine
= _CACHE_UNCACHED
;
1067 __cpu_name
[cpu
] = "MIPS 24KEc";
1070 c
->cputype
= CPU_25KF
;
1071 c
->writecombine
= _CACHE_UNCACHED
;
1072 __cpu_name
[cpu
] = "MIPS 25Kc";
1075 c
->cputype
= CPU_34K
;
1076 c
->writecombine
= _CACHE_UNCACHED
;
1077 __cpu_name
[cpu
] = "MIPS 34Kc";
1080 c
->cputype
= CPU_74K
;
1081 c
->writecombine
= _CACHE_UNCACHED
;
1082 __cpu_name
[cpu
] = "MIPS 74Kc";
1084 case PRID_IMP_M14KC
:
1085 c
->cputype
= CPU_M14KC
;
1086 c
->writecombine
= _CACHE_UNCACHED
;
1087 __cpu_name
[cpu
] = "MIPS M14Kc";
1089 case PRID_IMP_M14KEC
:
1090 c
->cputype
= CPU_M14KEC
;
1091 c
->writecombine
= _CACHE_UNCACHED
;
1092 __cpu_name
[cpu
] = "MIPS M14KEc";
1094 case PRID_IMP_1004K
:
1095 c
->cputype
= CPU_1004K
;
1096 c
->writecombine
= _CACHE_UNCACHED
;
1097 __cpu_name
[cpu
] = "MIPS 1004Kc";
1099 case PRID_IMP_1074K
:
1100 c
->cputype
= CPU_1074K
;
1101 c
->writecombine
= _CACHE_UNCACHED
;
1102 __cpu_name
[cpu
] = "MIPS 1074Kc";
1104 case PRID_IMP_INTERAPTIV_UP
:
1105 c
->cputype
= CPU_INTERAPTIV
;
1106 __cpu_name
[cpu
] = "MIPS interAptiv";
1108 case PRID_IMP_INTERAPTIV_MP
:
1109 c
->cputype
= CPU_INTERAPTIV
;
1110 __cpu_name
[cpu
] = "MIPS interAptiv (multi)";
1112 case PRID_IMP_PROAPTIV_UP
:
1113 c
->cputype
= CPU_PROAPTIV
;
1114 __cpu_name
[cpu
] = "MIPS proAptiv";
1116 case PRID_IMP_PROAPTIV_MP
:
1117 c
->cputype
= CPU_PROAPTIV
;
1118 __cpu_name
[cpu
] = "MIPS proAptiv (multi)";
1120 case PRID_IMP_P5600
:
1121 c
->cputype
= CPU_P5600
;
1122 __cpu_name
[cpu
] = "MIPS P5600";
1124 case PRID_IMP_M5150
:
1125 c
->cputype
= CPU_M5150
;
1126 __cpu_name
[cpu
] = "MIPS M5150";
1135 static inline void cpu_probe_alchemy(struct cpuinfo_mips
*c
, unsigned int cpu
)
1138 switch (c
->processor_id
& PRID_IMP_MASK
) {
1139 case PRID_IMP_AU1_REV1
:
1140 case PRID_IMP_AU1_REV2
:
1141 c
->cputype
= CPU_ALCHEMY
;
1142 switch ((c
->processor_id
>> 24) & 0xff) {
1144 __cpu_name
[cpu
] = "Au1000";
1147 __cpu_name
[cpu
] = "Au1500";
1150 __cpu_name
[cpu
] = "Au1100";
1153 __cpu_name
[cpu
] = "Au1550";
1156 __cpu_name
[cpu
] = "Au1200";
1157 if ((c
->processor_id
& PRID_REV_MASK
) == 2)
1158 __cpu_name
[cpu
] = "Au1250";
1161 __cpu_name
[cpu
] = "Au1210";
1164 __cpu_name
[cpu
] = "Au1xxx";
1171 static inline void cpu_probe_sibyte(struct cpuinfo_mips
*c
, unsigned int cpu
)
1175 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1176 switch (c
->processor_id
& PRID_IMP_MASK
) {
1178 c
->cputype
= CPU_SB1
;
1179 __cpu_name
[cpu
] = "SiByte SB1";
1180 /* FPU in pass1 is known to have issues. */
1181 if ((c
->processor_id
& PRID_REV_MASK
) < 0x02)
1182 c
->options
&= ~(MIPS_CPU_FPU
| MIPS_CPU_32FPR
);
1185 c
->cputype
= CPU_SB1A
;
1186 __cpu_name
[cpu
] = "SiByte SB1A";
1191 static inline void cpu_probe_sandcraft(struct cpuinfo_mips
*c
, unsigned int cpu
)
1194 switch (c
->processor_id
& PRID_IMP_MASK
) {
1195 case PRID_IMP_SR71000
:
1196 c
->cputype
= CPU_SR71000
;
1197 __cpu_name
[cpu
] = "Sandcraft SR71000";
1204 static inline void cpu_probe_nxp(struct cpuinfo_mips
*c
, unsigned int cpu
)
1207 switch (c
->processor_id
& PRID_IMP_MASK
) {
1208 case PRID_IMP_PR4450
:
1209 c
->cputype
= CPU_PR4450
;
1210 __cpu_name
[cpu
] = "Philips PR4450";
1211 set_isa(c
, MIPS_CPU_ISA_M32R1
);
1216 static inline void cpu_probe_broadcom(struct cpuinfo_mips
*c
, unsigned int cpu
)
1219 switch (c
->processor_id
& PRID_IMP_MASK
) {
1220 case PRID_IMP_BMIPS32_REV4
:
1221 case PRID_IMP_BMIPS32_REV8
:
1222 c
->cputype
= CPU_BMIPS32
;
1223 __cpu_name
[cpu
] = "Broadcom BMIPS32";
1224 set_elf_platform(cpu
, "bmips32");
1226 case PRID_IMP_BMIPS3300
:
1227 case PRID_IMP_BMIPS3300_ALT
:
1228 case PRID_IMP_BMIPS3300_BUG
:
1229 c
->cputype
= CPU_BMIPS3300
;
1230 __cpu_name
[cpu
] = "Broadcom BMIPS3300";
1231 set_elf_platform(cpu
, "bmips3300");
1233 case PRID_IMP_BMIPS43XX
: {
1234 int rev
= c
->processor_id
& PRID_REV_MASK
;
1236 if (rev
>= PRID_REV_BMIPS4380_LO
&&
1237 rev
<= PRID_REV_BMIPS4380_HI
) {
1238 c
->cputype
= CPU_BMIPS4380
;
1239 __cpu_name
[cpu
] = "Broadcom BMIPS4380";
1240 set_elf_platform(cpu
, "bmips4380");
1242 c
->cputype
= CPU_BMIPS4350
;
1243 __cpu_name
[cpu
] = "Broadcom BMIPS4350";
1244 set_elf_platform(cpu
, "bmips4350");
1248 case PRID_IMP_BMIPS5000
:
1249 case PRID_IMP_BMIPS5200
:
1250 c
->cputype
= CPU_BMIPS5000
;
1251 __cpu_name
[cpu
] = "Broadcom BMIPS5000";
1252 set_elf_platform(cpu
, "bmips5000");
1253 c
->options
|= MIPS_CPU_ULRI
;
1258 static inline void cpu_probe_cavium(struct cpuinfo_mips
*c
, unsigned int cpu
)
1261 switch (c
->processor_id
& PRID_IMP_MASK
) {
1262 case PRID_IMP_CAVIUM_CN38XX
:
1263 case PRID_IMP_CAVIUM_CN31XX
:
1264 case PRID_IMP_CAVIUM_CN30XX
:
1265 c
->cputype
= CPU_CAVIUM_OCTEON
;
1266 __cpu_name
[cpu
] = "Cavium Octeon";
1268 case PRID_IMP_CAVIUM_CN58XX
:
1269 case PRID_IMP_CAVIUM_CN56XX
:
1270 case PRID_IMP_CAVIUM_CN50XX
:
1271 case PRID_IMP_CAVIUM_CN52XX
:
1272 c
->cputype
= CPU_CAVIUM_OCTEON_PLUS
;
1273 __cpu_name
[cpu
] = "Cavium Octeon+";
1275 set_elf_platform(cpu
, "octeon");
1277 case PRID_IMP_CAVIUM_CN61XX
:
1278 case PRID_IMP_CAVIUM_CN63XX
:
1279 case PRID_IMP_CAVIUM_CN66XX
:
1280 case PRID_IMP_CAVIUM_CN68XX
:
1281 case PRID_IMP_CAVIUM_CNF71XX
:
1282 c
->cputype
= CPU_CAVIUM_OCTEON2
;
1283 __cpu_name
[cpu
] = "Cavium Octeon II";
1284 set_elf_platform(cpu
, "octeon2");
1286 case PRID_IMP_CAVIUM_CN70XX
:
1287 case PRID_IMP_CAVIUM_CN78XX
:
1288 c
->cputype
= CPU_CAVIUM_OCTEON3
;
1289 __cpu_name
[cpu
] = "Cavium Octeon III";
1290 set_elf_platform(cpu
, "octeon3");
1293 printk(KERN_INFO
"Unknown Octeon chip!\n");
1294 c
->cputype
= CPU_UNKNOWN
;
1299 static inline void cpu_probe_ingenic(struct cpuinfo_mips
*c
, unsigned int cpu
)
1302 /* JZRISC does not implement the CP0 counter. */
1303 c
->options
&= ~MIPS_CPU_COUNTER
;
1304 BUG_ON(!__builtin_constant_p(cpu_has_counter
) || cpu_has_counter
);
1305 switch (c
->processor_id
& PRID_IMP_MASK
) {
1306 case PRID_IMP_JZRISC
:
1307 c
->cputype
= CPU_JZRISC
;
1308 c
->writecombine
= _CACHE_UNCACHED_ACCELERATED
;
1309 __cpu_name
[cpu
] = "Ingenic JZRISC";
1312 panic("Unknown Ingenic Processor ID!");
1317 static inline void cpu_probe_netlogic(struct cpuinfo_mips
*c
, int cpu
)
1321 if ((c
->processor_id
& PRID_IMP_MASK
) == PRID_IMP_NETLOGIC_AU13XX
) {
1322 c
->cputype
= CPU_ALCHEMY
;
1323 __cpu_name
[cpu
] = "Au1300";
1324 /* following stuff is not for Alchemy */
1328 c
->options
= (MIPS_CPU_TLB
|
1336 switch (c
->processor_id
& PRID_IMP_MASK
) {
1337 case PRID_IMP_NETLOGIC_XLP2XX
:
1338 case PRID_IMP_NETLOGIC_XLP9XX
:
1339 case PRID_IMP_NETLOGIC_XLP5XX
:
1340 c
->cputype
= CPU_XLP
;
1341 __cpu_name
[cpu
] = "Broadcom XLPII";
1344 case PRID_IMP_NETLOGIC_XLP8XX
:
1345 case PRID_IMP_NETLOGIC_XLP3XX
:
1346 c
->cputype
= CPU_XLP
;
1347 __cpu_name
[cpu
] = "Netlogic XLP";
1350 case PRID_IMP_NETLOGIC_XLR732
:
1351 case PRID_IMP_NETLOGIC_XLR716
:
1352 case PRID_IMP_NETLOGIC_XLR532
:
1353 case PRID_IMP_NETLOGIC_XLR308
:
1354 case PRID_IMP_NETLOGIC_XLR532C
:
1355 case PRID_IMP_NETLOGIC_XLR516C
:
1356 case PRID_IMP_NETLOGIC_XLR508C
:
1357 case PRID_IMP_NETLOGIC_XLR308C
:
1358 c
->cputype
= CPU_XLR
;
1359 __cpu_name
[cpu
] = "Netlogic XLR";
1362 case PRID_IMP_NETLOGIC_XLS608
:
1363 case PRID_IMP_NETLOGIC_XLS408
:
1364 case PRID_IMP_NETLOGIC_XLS404
:
1365 case PRID_IMP_NETLOGIC_XLS208
:
1366 case PRID_IMP_NETLOGIC_XLS204
:
1367 case PRID_IMP_NETLOGIC_XLS108
:
1368 case PRID_IMP_NETLOGIC_XLS104
:
1369 case PRID_IMP_NETLOGIC_XLS616B
:
1370 case PRID_IMP_NETLOGIC_XLS608B
:
1371 case PRID_IMP_NETLOGIC_XLS416B
:
1372 case PRID_IMP_NETLOGIC_XLS412B
:
1373 case PRID_IMP_NETLOGIC_XLS408B
:
1374 case PRID_IMP_NETLOGIC_XLS404B
:
1375 c
->cputype
= CPU_XLR
;
1376 __cpu_name
[cpu
] = "Netlogic XLS";
1380 pr_info("Unknown Netlogic chip id [%02x]!\n",
1382 c
->cputype
= CPU_XLR
;
1386 if (c
->cputype
== CPU_XLP
) {
1387 set_isa(c
, MIPS_CPU_ISA_M64R2
);
1388 c
->options
|= (MIPS_CPU_FPU
| MIPS_CPU_ULRI
| MIPS_CPU_MCHECK
);
1389 /* This will be updated again after all threads are woken up */
1390 c
->tlbsize
= ((read_c0_config6() >> 16) & 0xffff) + 1;
1392 set_isa(c
, MIPS_CPU_ISA_M64R1
);
1393 c
->tlbsize
= ((read_c0_config1() >> 25) & 0x3f) + 1;
1395 c
->kscratch_mask
= 0xf;
1399 /* For use by uaccess.h */
1401 EXPORT_SYMBOL(__ua_limit
);
1404 const char *__cpu_name
[NR_CPUS
];
1405 const char *__elf_platform
;
1407 void cpu_probe(void)
1409 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1410 unsigned int cpu
= smp_processor_id();
1412 c
->processor_id
= PRID_IMP_UNKNOWN
;
1413 c
->fpu_id
= FPIR_IMP_NONE
;
1414 c
->cputype
= CPU_UNKNOWN
;
1415 c
->writecombine
= _CACHE_UNCACHED
;
1417 c
->fpu_csr31
= FPU_CSR_RN
;
1418 c
->fpu_msk31
= FPU_CSR_RSVD
| FPU_CSR_ABS2008
| FPU_CSR_NAN2008
;
1420 c
->processor_id
= read_c0_prid();
1421 switch (c
->processor_id
& PRID_COMP_MASK
) {
1422 case PRID_COMP_LEGACY
:
1423 cpu_probe_legacy(c
, cpu
);
1425 case PRID_COMP_MIPS
:
1426 cpu_probe_mips(c
, cpu
);
1428 case PRID_COMP_ALCHEMY
:
1429 cpu_probe_alchemy(c
, cpu
);
1431 case PRID_COMP_SIBYTE
:
1432 cpu_probe_sibyte(c
, cpu
);
1434 case PRID_COMP_BROADCOM
:
1435 cpu_probe_broadcom(c
, cpu
);
1437 case PRID_COMP_SANDCRAFT
:
1438 cpu_probe_sandcraft(c
, cpu
);
1441 cpu_probe_nxp(c
, cpu
);
1443 case PRID_COMP_CAVIUM
:
1444 cpu_probe_cavium(c
, cpu
);
1446 case PRID_COMP_INGENIC_D0
:
1447 case PRID_COMP_INGENIC_D1
:
1448 case PRID_COMP_INGENIC_E1
:
1449 cpu_probe_ingenic(c
, cpu
);
1451 case PRID_COMP_NETLOGIC
:
1452 cpu_probe_netlogic(c
, cpu
);
1456 BUG_ON(!__cpu_name
[cpu
]);
1457 BUG_ON(c
->cputype
== CPU_UNKNOWN
);
1460 * Platform code can force the cpu type to optimize code
1461 * generation. In that case be sure the cpu type is correctly
1462 * manually setup otherwise it could trigger some nasty bugs.
1464 BUG_ON(current_cpu_type() != c
->cputype
);
1466 if (mips_fpu_disabled
)
1467 c
->options
&= ~MIPS_CPU_FPU
;
1469 if (mips_dsp_disabled
)
1470 c
->ases
&= ~(MIPS_ASE_DSP
| MIPS_ASE_DSP2P
);
1472 if (mips_htw_disabled
) {
1473 c
->options
&= ~MIPS_CPU_HTW
;
1474 write_c0_pwctl(read_c0_pwctl() &
1475 ~(1 << MIPS_PWCTL_PWEN_SHIFT
));
1478 if (c
->options
& MIPS_CPU_FPU
)
1479 cpu_set_fpu_opts(c
);
1481 cpu_set_nofpu_opts(c
);
1483 if (cpu_has_bp_ghist
)
1484 write_c0_r10k_diag(read_c0_r10k_diag() |
1487 if (cpu_has_mips_r2_r6
) {
1488 c
->srsets
= ((read_c0_srsctl() >> 26) & 0x0f) + 1;
1489 /* R2 has Performance Counter Interrupt indicator */
1490 c
->options
|= MIPS_CPU_PCI
;
1496 c
->msa_id
= cpu_get_msa_id();
1497 WARN(c
->msa_id
& MSA_IR_WRPF
,
1498 "Vector register partitioning unimplemented!");
1501 cpu_probe_vmbits(c
);
1505 __ua_limit
= ~((1ull << cpu_vmbits
) - 1);
1509 void cpu_report(void)
1511 struct cpuinfo_mips
*c
= ¤t_cpu_data
;
1513 pr_info("CPU%d revision is: %08x (%s)\n",
1514 smp_processor_id(), c
->processor_id
, cpu_name_string());
1515 if (c
->options
& MIPS_CPU_FPU
)
1516 printk(KERN_INFO
"FPU revision is: %08x\n", c
->fpu_id
);
1518 pr_info("MSA revision is: %08x\n", c
->msa_id
);