blob: 228ae864c92ed79fbd184f40aef022063b0bc9e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Processor capabilities determination functions.
3 *
4 * Copyright (C) xxxx the Anonymous
Ralf Baechle010b8532006-01-29 18:42:08 +00005 * Copyright (C) 1994 - 2006 Ralf Baechle
Ralf Baechle41943182005-05-05 16:45:59 +00006 * Copyright (C) 2003, 2004 Maciej W. Rozycki
Ralf Baechle70342282013-01-22 12:59:30 +01007 * Copyright (C) 2001, 2004, 2011, 2012 MIPS Technologies, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
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.
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/kernel.h>
16#include <linux/ptrace.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010017#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/stddef.h>
Paul Gortmaker73bc2562011-07-23 16:30:40 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Ralf Baechle57599062007-02-18 19:07:31 +000021#include <asm/bugs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/cpu.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020023#include <asm/cpu-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/fpu.h>
25#include <asm/mipsregs.h>
Paul Burton30ee6152014-03-27 10:57:30 +000026#include <asm/mipsmtregs.h>
Paul Burtona5e9a692014-01-27 15:23:10 +000027#include <asm/msa.h>
David Daney654f57b2008-09-23 00:07:16 -070028#include <asm/watch.h>
Paul Gortmaker06372a62011-07-23 16:26:41 -040029#include <asm/elf.h>
Markos Chandras4f12b912014-07-18 10:51:32 +010030#include <asm/pgtable-bits.h>
Chris Dearmana074f0e2009-07-10 01:51:27 -070031#include <asm/spram.h>
David Daney949e51b2010-10-14 11:32:33 -070032#include <asm/uaccess.h>
33
Paul Gortmaker078a55f2013-06-18 13:38:59 +000034static int mips_fpu_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -070035
36static int __init fpu_disable(char *s)
37{
38 cpu_data[0].options &= ~MIPS_CPU_FPU;
39 mips_fpu_disabled = 1;
40
41 return 1;
42}
43
44__setup("nofpu", fpu_disable);
45
Paul Gortmaker078a55f2013-06-18 13:38:59 +000046int mips_dsp_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -070047
48static int __init dsp_disable(char *s)
49{
Steven J. Hillee80f7c72012-08-03 10:26:04 -050050 cpu_data[0].ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -070051 mips_dsp_disabled = 1;
52
53 return 1;
54}
55
56__setup("nodsp", dsp_disable);
57
Markos Chandras3d528b32014-07-14 12:46:13 +010058static int mips_htw_disabled;
59
60static int __init htw_disable(char *s)
61{
62 mips_htw_disabled = 1;
63 cpu_data[0].options &= ~MIPS_CPU_HTW;
64 write_c0_pwctl(read_c0_pwctl() &
65 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
66
67 return 1;
68}
69
70__setup("nohtw", htw_disable);
71
Markos Chandras97f4ad22014-08-29 09:37:26 +010072static int mips_ftlb_disabled;
73static int mips_has_ftlb_configured;
74
75static void set_ftlb_enable(struct cpuinfo_mips *c, int enable);
76
77static int __init ftlb_disable(char *s)
78{
79 unsigned int config4, mmuextdef;
80
81 /*
82 * If the core hasn't done any FTLB configuration, there is nothing
83 * for us to do here.
84 */
85 if (!mips_has_ftlb_configured)
86 return 1;
87
88 /* Disable it in the boot cpu */
89 set_ftlb_enable(&cpu_data[0], 0);
90
91 back_to_back_c0_hazard();
92
93 config4 = read_c0_config4();
94
95 /* Check that FTLB has been disabled */
96 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
97 /* MMUSIZEEXT == VTLB ON, FTLB OFF */
98 if (mmuextdef == MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT) {
99 /* This should never happen */
100 pr_warn("FTLB could not be disabled!\n");
101 return 1;
102 }
103
104 mips_ftlb_disabled = 1;
105 mips_has_ftlb_configured = 0;
106
107 /*
108 * noftlb is mainly used for debug purposes so print
109 * an informative message instead of using pr_debug()
110 */
111 pr_info("FTLB has been disabled\n");
112
113 /*
114 * Some of these bits are duplicated in the decode_config4.
115 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
116 * once FTLB has been disabled so undo what decode_config4 did.
117 */
118 cpu_data[0].tlbsize -= cpu_data[0].tlbsizeftlbways *
119 cpu_data[0].tlbsizeftlbsets;
120 cpu_data[0].tlbsizeftlbsets = 0;
121 cpu_data[0].tlbsizeftlbways = 0;
122
123 return 1;
124}
125
126__setup("noftlb", ftlb_disable);
127
128
Marc St-Jean9267a302007-06-14 15:55:31 -0600129static inline void check_errata(void)
130{
131 struct cpuinfo_mips *c = &current_cpu_data;
132
Ralf Baechle69f24d12013-09-17 10:25:47 +0200133 switch (current_cpu_type()) {
Marc St-Jean9267a302007-06-14 15:55:31 -0600134 case CPU_34K:
135 /*
136 * Erratum "RPS May Cause Incorrect Instruction Execution"
Ralf Baechleb633648c52014-05-23 16:29:44 +0200137 * This code only handles VPE0, any SMP/RTOS code
Marc St-Jean9267a302007-06-14 15:55:31 -0600138 * making use of VPE1 will be responsable for that VPE.
139 */
140 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
141 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
142 break;
143 default:
144 break;
145 }
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148void __init check_bugs32(void)
149{
Marc St-Jean9267a302007-06-14 15:55:31 -0600150 check_errata();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153/*
154 * Probe whether cpu has config register by trying to play with
155 * alternate cache bit and see whether it matters.
156 * It's used by cpu_probe to distinguish between R3000A and R3081.
157 */
158static inline int cpu_has_confreg(void)
159{
160#ifdef CONFIG_CPU_R3000
161 extern unsigned long r3k_cache_size(unsigned long);
162 unsigned long size1, size2;
163 unsigned long cfg = read_c0_conf();
164
165 size1 = r3k_cache_size(ST0_ISC);
166 write_c0_conf(cfg ^ R30XX_CONF_AC);
167 size2 = r3k_cache_size(ST0_ISC);
168 write_c0_conf(cfg);
169 return size1 != size2;
170#else
171 return 0;
172#endif
173}
174
Robert Millanc094c992011-04-18 11:37:55 -0700175static inline void set_elf_platform(int cpu, const char *plat)
176{
177 if (cpu == 0)
178 __elf_platform = plat;
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/*
182 * Get the FPU Implementation/Revision.
183 */
184static inline unsigned long cpu_get_fpu_id(void)
185{
186 unsigned long tmp, fpu_id;
187
188 tmp = read_c0_status();
Paul Burton597ce172013-11-22 13:12:07 +0000189 __enable_fpu(FPU_AS_IS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 fpu_id = read_32bit_cp1_register(CP1_REVISION);
191 write_c0_status(tmp);
192 return fpu_id;
193}
194
195/*
196 * Check the CPU has an FPU the official way.
197 */
198static inline int __cpu_has_fpu(void)
199{
Ralf Baechle635c99072014-10-21 14:12:49 +0200200 return (cpu_get_fpu_id() & FPIR_IMP_MASK) != FPIR_IMP_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Paul Burtona5e9a692014-01-27 15:23:10 +0000203static inline unsigned long cpu_get_msa_id(void)
204{
Paul Burton3587ea82014-07-11 16:44:34 +0100205 unsigned long status, msa_id;
Paul Burtona5e9a692014-01-27 15:23:10 +0000206
207 status = read_c0_status();
208 __enable_fpu(FPU_64BIT);
Paul Burtona5e9a692014-01-27 15:23:10 +0000209 enable_msa();
210 msa_id = read_msa_ir();
Paul Burton3587ea82014-07-11 16:44:34 +0100211 disable_msa();
Paul Burtona5e9a692014-01-27 15:23:10 +0000212 write_c0_status(status);
213 return msa_id;
214}
215
Guenter Roeck91dfc422010-02-02 08:52:20 -0800216static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
217{
218#ifdef __NEED_VMBITS_PROBE
David Daney5b7efa82010-02-08 12:27:00 -0800219 write_c0_entryhi(0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800220 back_to_back_c0_hazard();
David Daney5b7efa82010-02-08 12:27:00 -0800221 c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800222#endif
223}
224
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000225static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
Steven J. Hilla96102b2012-12-07 04:31:36 +0000226{
227 switch (isa) {
228 case MIPS_CPU_ISA_M64R2:
229 c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
230 case MIPS_CPU_ISA_M64R1:
231 c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
232 case MIPS_CPU_ISA_V:
233 c->isa_level |= MIPS_CPU_ISA_V;
234 case MIPS_CPU_ISA_IV:
235 c->isa_level |= MIPS_CPU_ISA_IV;
236 case MIPS_CPU_ISA_III:
Ralf Baechle1990e542013-06-26 17:06:34 +0200237 c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000238 break;
239
240 case MIPS_CPU_ISA_M32R2:
241 c->isa_level |= MIPS_CPU_ISA_M32R2;
242 case MIPS_CPU_ISA_M32R1:
243 c->isa_level |= MIPS_CPU_ISA_M32R1;
244 case MIPS_CPU_ISA_II:
245 c->isa_level |= MIPS_CPU_ISA_II;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000246 break;
247 }
248}
249
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000250static char unknown_isa[] = KERN_ERR \
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100251 "Unsupported ISA type, c0.config0: %d.";
252
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000253static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c)
254{
255
256 unsigned int probability = c->tlbsize / c->tlbsizevtlb;
257
258 /*
259 * 0 = All TLBWR instructions go to FTLB
260 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
261 * FTLB and 1 goes to the VTLB.
262 * 2 = 7:1: As above with 7:1 ratio.
263 * 3 = 3:1: As above with 3:1 ratio.
264 *
265 * Use the linear midpoint as the probability threshold.
266 */
267 if (probability >= 12)
268 return 1;
269 else if (probability >= 6)
270 return 2;
271 else
272 /*
273 * So FTLB is less than 4 times bigger than VTLB.
274 * A 3:1 ratio can still be useful though.
275 */
276 return 3;
277}
278
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000279static void set_ftlb_enable(struct cpuinfo_mips *c, int enable)
280{
281 unsigned int config6;
James Hogand83b0e82014-01-22 16:19:40 +0000282
283 /* It's implementation dependent how the FTLB can be enabled */
284 switch (c->cputype) {
285 case CPU_PROAPTIV:
286 case CPU_P5600:
287 /* proAptiv & related cores use Config6 to enable the FTLB */
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000288 config6 = read_c0_config6();
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000289 /* Clear the old probability value */
290 config6 &= ~(3 << MIPS_CONF6_FTLBP_SHIFT);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000291 if (enable)
292 /* Enable FTLB */
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000293 write_c0_config6(config6 |
294 (calculate_ftlb_probability(c)
295 << MIPS_CONF6_FTLBP_SHIFT)
296 | MIPS_CONF6_FTLBEN);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000297 else
298 /* Disable FTLB */
299 write_c0_config6(config6 & ~MIPS_CONF6_FTLBEN);
300 back_to_back_c0_hazard();
James Hogand83b0e82014-01-22 16:19:40 +0000301 break;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000302 }
303}
304
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100305static inline unsigned int decode_config0(struct cpuinfo_mips *c)
306{
307 unsigned int config0;
308 int isa;
309
310 config0 = read_c0_config();
311
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000312 /*
313 * Look for Standard TLB or Dual VTLB and FTLB
314 */
315 if ((((config0 & MIPS_CONF_MT) >> 7) == 1) ||
316 (((config0 & MIPS_CONF_MT) >> 7) == 4))
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100317 c->options |= MIPS_CPU_TLB;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000318
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100319 isa = (config0 & MIPS_CONF_AT) >> 13;
320 switch (isa) {
321 case 0:
322 switch ((config0 & MIPS_CONF_AR) >> 10) {
323 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000324 set_isa(c, MIPS_CPU_ISA_M32R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100325 break;
326 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000327 set_isa(c, MIPS_CPU_ISA_M32R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100328 break;
329 default:
330 goto unknown;
331 }
332 break;
333 case 2:
334 switch ((config0 & MIPS_CONF_AR) >> 10) {
335 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000336 set_isa(c, MIPS_CPU_ISA_M64R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100337 break;
338 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000339 set_isa(c, MIPS_CPU_ISA_M64R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100340 break;
341 default:
342 goto unknown;
343 }
344 break;
345 default:
346 goto unknown;
347 }
348
349 return config0 & MIPS_CONF_M;
350
351unknown:
352 panic(unknown_isa, config0);
353}
354
355static inline unsigned int decode_config1(struct cpuinfo_mips *c)
356{
357 unsigned int config1;
358
359 config1 = read_c0_config1();
360
361 if (config1 & MIPS_CONF1_MD)
362 c->ases |= MIPS_ASE_MDMX;
363 if (config1 & MIPS_CONF1_WR)
364 c->options |= MIPS_CPU_WATCH;
365 if (config1 & MIPS_CONF1_CA)
366 c->ases |= MIPS_ASE_MIPS16;
367 if (config1 & MIPS_CONF1_EP)
368 c->options |= MIPS_CPU_EJTAG;
369 if (config1 & MIPS_CONF1_FP) {
370 c->options |= MIPS_CPU_FPU;
371 c->options |= MIPS_CPU_32FPR;
372 }
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000373 if (cpu_has_tlb) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100374 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000375 c->tlbsizevtlb = c->tlbsize;
376 c->tlbsizeftlbsets = 0;
377 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100378
379 return config1 & MIPS_CONF_M;
380}
381
382static inline unsigned int decode_config2(struct cpuinfo_mips *c)
383{
384 unsigned int config2;
385
386 config2 = read_c0_config2();
387
388 if (config2 & MIPS_CONF2_SL)
389 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
390
391 return config2 & MIPS_CONF_M;
392}
393
394static inline unsigned int decode_config3(struct cpuinfo_mips *c)
395{
396 unsigned int config3;
397
398 config3 = read_c0_config3();
399
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500400 if (config3 & MIPS_CONF3_SM) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100401 c->ases |= MIPS_ASE_SMARTMIPS;
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500402 c->options |= MIPS_CPU_RIXI;
403 }
404 if (config3 & MIPS_CONF3_RXI)
405 c->options |= MIPS_CPU_RIXI;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100406 if (config3 & MIPS_CONF3_DSP)
407 c->ases |= MIPS_ASE_DSP;
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500408 if (config3 & MIPS_CONF3_DSP2P)
409 c->ases |= MIPS_ASE_DSP2P;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100410 if (config3 & MIPS_CONF3_VINT)
411 c->options |= MIPS_CPU_VINT;
412 if (config3 & MIPS_CONF3_VEIC)
413 c->options |= MIPS_CPU_VEIC;
414 if (config3 & MIPS_CONF3_MT)
415 c->ases |= MIPS_ASE_MIPSMT;
416 if (config3 & MIPS_CONF3_ULRI)
417 c->options |= MIPS_CPU_ULRI;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000418 if (config3 & MIPS_CONF3_ISA)
419 c->options |= MIPS_CPU_MICROMIPS;
David Daney1e7decd2013-02-16 23:42:43 +0100420 if (config3 & MIPS_CONF3_VZ)
421 c->ases |= MIPS_ASE_VZ;
Steven J. Hill4a0156f2013-11-14 16:12:24 +0000422 if (config3 & MIPS_CONF3_SC)
423 c->options |= MIPS_CPU_SEGMENTS;
Paul Burtona5e9a692014-01-27 15:23:10 +0000424 if (config3 & MIPS_CONF3_MSA)
425 c->ases |= MIPS_ASE_MSA;
Markos Chandras3d528b32014-07-14 12:46:13 +0100426 /* Only tested on 32-bit cores */
Markos Chandrased4cbc82015-01-26 13:04:33 +0000427 if ((config3 & MIPS_CONF3_PW) && config_enabled(CONFIG_32BIT)) {
428 c->htw_seq = 0;
Markos Chandras3d528b32014-07-14 12:46:13 +0100429 c->options |= MIPS_CPU_HTW;
Markos Chandrased4cbc82015-01-26 13:04:33 +0000430 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100431
432 return config3 & MIPS_CONF_M;
433}
434
435static inline unsigned int decode_config4(struct cpuinfo_mips *c)
436{
437 unsigned int config4;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000438 unsigned int newcf4;
439 unsigned int mmuextdef;
440 unsigned int ftlb_page = MIPS_CONF4_FTLBPAGESIZE;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100441
442 config4 = read_c0_config4();
443
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000444 if (cpu_has_tlb) {
445 if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
446 c->options |= MIPS_CPU_TLBINV;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000447 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
448 switch (mmuextdef) {
449 case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
450 c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
451 c->tlbsizevtlb = c->tlbsize;
452 break;
453 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT:
454 c->tlbsizevtlb +=
455 ((config4 & MIPS_CONF4_VTLBSIZEEXT) >>
456 MIPS_CONF4_VTLBSIZEEXT_SHIFT) * 0x40;
457 c->tlbsize = c->tlbsizevtlb;
458 ftlb_page = MIPS_CONF4_VFTLBPAGESIZE;
459 /* fall through */
460 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT:
Markos Chandras97f4ad22014-08-29 09:37:26 +0100461 if (mips_ftlb_disabled)
462 break;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000463 newcf4 = (config4 & ~ftlb_page) |
464 (page_size_ftlb(mmuextdef) <<
465 MIPS_CONF4_FTLBPAGESIZE_SHIFT);
466 write_c0_config4(newcf4);
467 back_to_back_c0_hazard();
468 config4 = read_c0_config4();
469 if (config4 != newcf4) {
470 pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
471 PAGE_SIZE, config4);
472 /* Switch FTLB off */
473 set_ftlb_enable(c, 0);
474 break;
475 }
476 c->tlbsizeftlbsets = 1 <<
477 ((config4 & MIPS_CONF4_FTLBSETS) >>
478 MIPS_CONF4_FTLBSETS_SHIFT);
479 c->tlbsizeftlbways = ((config4 & MIPS_CONF4_FTLBWAYS) >>
480 MIPS_CONF4_FTLBWAYS_SHIFT) + 2;
481 c->tlbsize += c->tlbsizeftlbways * c->tlbsizeftlbsets;
Markos Chandras97f4ad22014-08-29 09:37:26 +0100482 mips_has_ftlb_configured = 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000483 break;
484 }
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000485 }
486
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100487 c->kscratch_mask = (config4 >> 16) & 0xff;
488
489 return config4 & MIPS_CONF_M;
490}
491
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200492static inline unsigned int decode_config5(struct cpuinfo_mips *c)
493{
494 unsigned int config5;
495
496 config5 = read_c0_config5();
Paul Burtond175ed22014-09-11 08:30:19 +0100497 config5 &= ~(MIPS_CONF5_UFR | MIPS_CONF5_UFE);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200498 write_c0_config5(config5);
499
Markos Chandras49016742014-01-09 16:04:51 +0000500 if (config5 & MIPS_CONF5_EVA)
501 c->options |= MIPS_CPU_EVA;
Paul Burton1f6c52f2014-07-14 10:32:14 +0100502 if (config5 & MIPS_CONF5_MRP)
503 c->options |= MIPS_CPU_MAAR;
Markos Chandras49016742014-01-09 16:04:51 +0000504
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200505 return config5 & MIPS_CONF_M;
506}
507
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000508static void decode_configs(struct cpuinfo_mips *c)
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100509{
510 int ok;
511
512 /* MIPS32 or MIPS64 compliant CPU. */
513 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
514 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
515
516 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
517
Markos Chandras97f4ad22014-08-29 09:37:26 +0100518 /* Enable FTLB if present and not disabled */
519 set_ftlb_enable(c, !mips_ftlb_disabled);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000520
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100521 ok = decode_config0(c); /* Read Config registers. */
Ralf Baechle70342282013-01-22 12:59:30 +0100522 BUG_ON(!ok); /* Arch spec violation! */
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100523 if (ok)
524 ok = decode_config1(c);
525 if (ok)
526 ok = decode_config2(c);
527 if (ok)
528 ok = decode_config3(c);
529 if (ok)
530 ok = decode_config4(c);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200531 if (ok)
532 ok = decode_config5(c);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100533
534 mips_probe_watch_registers(c);
535
Leonid Yegoshin6575b1d2014-07-15 14:09:57 +0100536 if (cpu_has_rixi) {
537 /* Enable the RIXI exceptions */
538 write_c0_pagegrain(read_c0_pagegrain() | PG_IEC);
539 back_to_back_c0_hazard();
540 /* Verify the IEC bit is set */
541 if (read_c0_pagegrain() & PG_IEC)
542 c->options |= MIPS_CPU_RIXIEX;
543 }
544
Paul Burton0ee958e2014-01-15 10:31:53 +0000545#ifndef CONFIG_MIPS_CPS
Paul Burton30ee6152014-03-27 10:57:30 +0000546 if (cpu_has_mips_r2) {
David Daney45b585c2014-05-28 23:52:10 +0200547 c->core = get_ebase_cpunum();
Paul Burton30ee6152014-03-27 10:57:30 +0000548 if (cpu_has_mipsmt)
549 c->core >>= fls(core_nvpes()) - 1;
550 }
Paul Burton0ee958e2014-01-15 10:31:53 +0000551#endif
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100552}
553
Ralf Baechle02cf2112005-10-01 13:06:32 +0100554#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 | MIPS_CPU_COUNTER)
556
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000557static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100559 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 case PRID_IMP_R2000:
561 c->cputype = CPU_R2000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000562 __cpu_name[cpu] = "R2000";
Ralf Baechle02cf2112005-10-01 13:06:32 +0100563 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500564 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (__cpu_has_fpu())
566 c->options |= MIPS_CPU_FPU;
567 c->tlbsize = 64;
568 break;
569 case PRID_IMP_R3000:
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100570 if ((c->processor_id & PRID_REV_MASK) == PRID_REV_R3000A) {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000571 if (cpu_has_confreg()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 c->cputype = CPU_R3081E;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000573 __cpu_name[cpu] = "R3081";
574 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 c->cputype = CPU_R3000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000576 __cpu_name[cpu] = "R3000A";
577 }
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000578 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 c->cputype = CPU_R3000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000580 __cpu_name[cpu] = "R3000";
581 }
Ralf Baechle02cf2112005-10-01 13:06:32 +0100582 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500583 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (__cpu_has_fpu())
585 c->options |= MIPS_CPU_FPU;
586 c->tlbsize = 64;
587 break;
588 case PRID_IMP_R4000:
589 if (read_c0_config() & CONF_SC) {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100590 if ((c->processor_id & PRID_REV_MASK) >=
591 PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 c->cputype = CPU_R4400PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000593 __cpu_name[cpu] = "R4400PC";
594 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 c->cputype = CPU_R4000PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000596 __cpu_name[cpu] = "R4000PC";
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100599 int cca = read_c0_config() & CONF_CM_CMASK;
600 int mc;
601
602 /*
603 * SC and MC versions can't be reliably told apart,
604 * but only the latter support coherent caching
605 * modes so assume the firmware has set the KSEG0
606 * coherency attribute reasonably (if uncached, we
607 * assume SC).
608 */
609 switch (cca) {
610 case CONF_CM_CACHABLE_CE:
611 case CONF_CM_CACHABLE_COW:
612 case CONF_CM_CACHABLE_CUW:
613 mc = 1;
614 break;
615 default:
616 mc = 0;
617 break;
618 }
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100619 if ((c->processor_id & PRID_REV_MASK) >=
620 PRID_REV_R4400) {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100621 c->cputype = mc ? CPU_R4400MC : CPU_R4400SC;
622 __cpu_name[cpu] = mc ? "R4400MC" : "R4400SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000623 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100624 c->cputype = mc ? CPU_R4000MC : CPU_R4000SC;
625 __cpu_name[cpu] = mc ? "R4000MC" : "R4000SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
Steven J. Hilla96102b2012-12-07 04:31:36 +0000629 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500631 MIPS_CPU_WATCH | MIPS_CPU_VCE |
632 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 c->tlbsize = 48;
634 break;
635 case PRID_IMP_VR41XX:
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900636 set_isa(c, MIPS_CPU_ISA_III);
637 c->options = R4K_OPTS;
638 c->tlbsize = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 switch (c->processor_id & 0xf0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 case PRID_REV_VR4111:
641 c->cputype = CPU_VR4111;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000642 __cpu_name[cpu] = "NEC VR4111";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 case PRID_REV_VR4121:
645 c->cputype = CPU_VR4121;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000646 __cpu_name[cpu] = "NEC VR4121";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648 case PRID_REV_VR4122:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000649 if ((c->processor_id & 0xf) < 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 c->cputype = CPU_VR4122;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000651 __cpu_name[cpu] = "NEC VR4122";
652 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 c->cputype = CPU_VR4181A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000654 __cpu_name[cpu] = "NEC VR4181A";
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 break;
657 case PRID_REV_VR4130:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000658 if ((c->processor_id & 0xf) < 0x4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 c->cputype = CPU_VR4131;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000660 __cpu_name[cpu] = "NEC VR4131";
661 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 c->cputype = CPU_VR4133;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900663 c->options |= MIPS_CPU_LLSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000664 __cpu_name[cpu] = "NEC VR4133";
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 break;
667 default:
668 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
669 c->cputype = CPU_VR41XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000670 __cpu_name[cpu] = "NEC Vr41xx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674 case PRID_IMP_R4300:
675 c->cputype = CPU_R4300;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000676 __cpu_name[cpu] = "R4300";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000677 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500679 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 c->tlbsize = 32;
681 break;
682 case PRID_IMP_R4600:
683 c->cputype = CPU_R4600;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000684 __cpu_name[cpu] = "R4600";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000685 set_isa(c, MIPS_CPU_ISA_III);
Thiemo Seufer075e7502005-07-27 21:48:12 +0000686 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
687 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 c->tlbsize = 48;
689 break;
690 #if 0
Steven J. Hill03751e72012-05-10 23:21:18 -0500691 case PRID_IMP_R4650:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /*
693 * This processor doesn't have an MMU, so it's not
694 * "real easy" to run Linux on it. It is left purely
695 * for documentation. Commented out because it shares
696 * it's c0_prid id number with the TX3900.
697 */
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000698 c->cputype = CPU_R4650;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000699 __cpu_name[cpu] = "R4650";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000700 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
Steven J. Hill03751e72012-05-10 23:21:18 -0500702 c->tlbsize = 48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 break;
704 #endif
705 case PRID_IMP_TX39:
Ralf Baechle02cf2112005-10-01 13:06:32 +0100706 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
709 c->cputype = CPU_TX3927;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000710 __cpu_name[cpu] = "TX3927";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 c->tlbsize = 64;
712 } else {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100713 switch (c->processor_id & PRID_REV_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 case PRID_REV_TX3912:
715 c->cputype = CPU_TX3912;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000716 __cpu_name[cpu] = "TX3912";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 c->tlbsize = 32;
718 break;
719 case PRID_REV_TX3922:
720 c->cputype = CPU_TX3922;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000721 __cpu_name[cpu] = "TX3922";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 c->tlbsize = 64;
723 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725 }
726 break;
727 case PRID_IMP_R4700:
728 c->cputype = CPU_R4700;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000729 __cpu_name[cpu] = "R4700";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000730 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500732 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 c->tlbsize = 48;
734 break;
735 case PRID_IMP_TX49:
736 c->cputype = CPU_TX49XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000737 __cpu_name[cpu] = "R49XX";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000738 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 c->options = R4K_OPTS | MIPS_CPU_LLSC;
740 if (!(c->processor_id & 0x08))
741 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
742 c->tlbsize = 48;
743 break;
744 case PRID_IMP_R5000:
745 c->cputype = CPU_R5000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000746 __cpu_name[cpu] = "R5000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000747 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500749 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 c->tlbsize = 48;
751 break;
752 case PRID_IMP_R5432:
753 c->cputype = CPU_R5432;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000754 __cpu_name[cpu] = "R5432";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000755 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500757 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 c->tlbsize = 48;
759 break;
760 case PRID_IMP_R5500:
761 c->cputype = CPU_R5500;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000762 __cpu_name[cpu] = "R5500";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000763 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500765 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 c->tlbsize = 48;
767 break;
768 case PRID_IMP_NEVADA:
769 c->cputype = CPU_NEVADA;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000770 __cpu_name[cpu] = "Nevada";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000771 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500773 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 c->tlbsize = 48;
775 break;
776 case PRID_IMP_R6000:
777 c->cputype = CPU_R6000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000778 __cpu_name[cpu] = "R6000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000779 set_isa(c, MIPS_CPU_ISA_II);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500781 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 c->tlbsize = 32;
783 break;
784 case PRID_IMP_R6000A:
785 c->cputype = CPU_R6000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000786 __cpu_name[cpu] = "R6000A";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000787 set_isa(c, MIPS_CPU_ISA_II);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500789 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 c->tlbsize = 32;
791 break;
792 case PRID_IMP_RM7000:
793 c->cputype = CPU_RM7000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000794 __cpu_name[cpu] = "RM7000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000795 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500797 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
Ralf Baechle70342282013-01-22 12:59:30 +0100799 * Undocumented RM7000: Bit 29 in the info register of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * the RM7000 v2.0 indicates if the TLB has 48 or 64
801 * entries.
802 *
Ralf Baechle70342282013-01-22 12:59:30 +0100803 * 29 1 => 64 entry JTLB
804 * 0 => 48 entry JTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
806 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
807 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 case PRID_IMP_R8000:
809 c->cputype = CPU_R8000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000810 __cpu_name[cpu] = "RM8000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000811 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500813 MIPS_CPU_FPU | MIPS_CPU_32FPR |
814 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
816 break;
817 case PRID_IMP_R10000:
818 c->cputype = CPU_R10000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000819 __cpu_name[cpu] = "R10000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000820 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000821 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500822 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500824 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 c->tlbsize = 64;
826 break;
827 case PRID_IMP_R12000:
828 c->cputype = CPU_R12000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000829 __cpu_name[cpu] = "R12000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000830 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000831 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500832 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500834 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 c->tlbsize = 64;
836 break;
Kumba44d921b2006-05-16 22:23:59 -0400837 case PRID_IMP_R14000:
838 c->cputype = CPU_R14000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000839 __cpu_name[cpu] = "R14000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000840 set_isa(c, MIPS_CPU_ISA_IV);
Kumba44d921b2006-05-16 22:23:59 -0400841 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500842 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Kumba44d921b2006-05-16 22:23:59 -0400843 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500844 MIPS_CPU_LLSC;
Kumba44d921b2006-05-16 22:23:59 -0400845 c->tlbsize = 64;
846 break;
Huacai Chen26859192014-02-16 16:01:18 +0800847 case PRID_IMP_LOONGSON_64: /* Loongson-2/3 */
Robert Millan5aac1e82011-04-16 11:29:29 -0700848 switch (c->processor_id & PRID_REV_MASK) {
849 case PRID_REV_LOONGSON2E:
Huacai Chenc579d312014-03-21 18:44:00 +0800850 c->cputype = CPU_LOONGSON2;
851 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -0700852 set_elf_platform(cpu, "loongson2e");
Huacai Chen7352c8b2014-11-04 14:13:23 +0800853 set_isa(c, MIPS_CPU_ISA_III);
Robert Millan5aac1e82011-04-16 11:29:29 -0700854 break;
855 case PRID_REV_LOONGSON2F:
Huacai Chenc579d312014-03-21 18:44:00 +0800856 c->cputype = CPU_LOONGSON2;
857 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -0700858 set_elf_platform(cpu, "loongson2f");
Huacai Chen7352c8b2014-11-04 14:13:23 +0800859 set_isa(c, MIPS_CPU_ISA_III);
Robert Millan5aac1e82011-04-16 11:29:29 -0700860 break;
Huacai Chenc579d312014-03-21 18:44:00 +0800861 case PRID_REV_LOONGSON3A:
862 c->cputype = CPU_LOONGSON3;
863 __cpu_name[cpu] = "ICT Loongson-3";
864 set_elf_platform(cpu, "loongson3a");
Huacai Chen7352c8b2014-11-04 14:13:23 +0800865 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chenc579d312014-03-21 18:44:00 +0800866 break;
Huacai Chene7841be2014-06-26 11:41:30 +0800867 case PRID_REV_LOONGSON3B_R1:
868 case PRID_REV_LOONGSON3B_R2:
869 c->cputype = CPU_LOONGSON3;
870 __cpu_name[cpu] = "ICT Loongson-3";
871 set_elf_platform(cpu, "loongson3b");
Huacai Chen7352c8b2014-11-04 14:13:23 +0800872 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chene7841be2014-06-26 11:41:30 +0800873 break;
Robert Millan5aac1e82011-04-16 11:29:29 -0700874 }
875
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800876 c->options = R4K_OPTS |
877 MIPS_CPU_FPU | MIPS_CPU_LLSC |
878 MIPS_CPU_32FPR;
879 c->tlbsize = 64;
Huacai Chencc94ea32014-11-04 14:13:22 +0800880 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800881 break;
Huacai Chen26859192014-02-16 16:01:18 +0800882 case PRID_IMP_LOONGSON_32: /* Loongson-1 */
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100883 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100885 c->cputype = CPU_LOONGSON1;
Ralf Baechleb4672d32005-12-08 14:04:24 +0000886
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100887 switch (c->processor_id & PRID_REV_MASK) {
888 case PRID_REV_LOONGSON1B:
889 __cpu_name[cpu] = "Loongson 1B";
Ralf Baechleb4672d32005-12-08 14:04:24 +0000890 break;
Ralf Baechleb4672d32005-12-08 14:04:24 +0000891 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100892
Ralf Baechle41943182005-05-05 16:45:59 +0000893 break;
Ralf Baechle41943182005-05-05 16:45:59 +0000894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000897static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Markos Chandras4f12b912014-07-18 10:51:32 +0100899 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100900 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 case PRID_IMP_4KC:
902 c->cputype = CPU_4KC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100903 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000904 __cpu_name[cpu] = "MIPS 4Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 break;
906 case PRID_IMP_4KEC:
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000907 case PRID_IMP_4KECR2:
908 c->cputype = CPU_4KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100909 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000910 __cpu_name[cpu] = "MIPS 4KEc";
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000911 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 case PRID_IMP_4KSC:
Ralf Baechle8afcb5d2005-10-04 15:01:26 +0100913 case PRID_IMP_4KSD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 c->cputype = CPU_4KSC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100915 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000916 __cpu_name[cpu] = "MIPS 4KSc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 break;
918 case PRID_IMP_5KC:
919 c->cputype = CPU_5KC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100920 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000921 __cpu_name[cpu] = "MIPS 5Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
Leonid Yegoshin78d48032012-07-06 21:56:01 +0200923 case PRID_IMP_5KE:
924 c->cputype = CPU_5KE;
Markos Chandras4f12b912014-07-18 10:51:32 +0100925 c->writecombine = _CACHE_UNCACHED;
Leonid Yegoshin78d48032012-07-06 21:56:01 +0200926 __cpu_name[cpu] = "MIPS 5KE";
927 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 case PRID_IMP_20KC:
929 c->cputype = CPU_20KC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100930 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000931 __cpu_name[cpu] = "MIPS 20Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 break;
933 case PRID_IMP_24K:
934 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100935 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000936 __cpu_name[cpu] = "MIPS 24Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 break;
John Crispin42f3cae2013-01-11 22:44:10 +0100938 case PRID_IMP_24KE:
939 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100940 c->writecombine = _CACHE_UNCACHED;
John Crispin42f3cae2013-01-11 22:44:10 +0100941 __cpu_name[cpu] = "MIPS 24KEc";
942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 case PRID_IMP_25KF:
944 c->cputype = CPU_25KF;
Markos Chandras4f12b912014-07-18 10:51:32 +0100945 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000946 __cpu_name[cpu] = "MIPS 25Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000948 case PRID_IMP_34K:
949 c->cputype = CPU_34K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100950 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000951 __cpu_name[cpu] = "MIPS 34Kc";
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000952 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100953 case PRID_IMP_74K:
954 c->cputype = CPU_74K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100955 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000956 __cpu_name[cpu] = "MIPS 74Kc";
Chris Dearmanc6209532006-05-02 14:08:46 +0100957 break;
Steven J. Hill113c62d2012-07-06 23:56:00 +0200958 case PRID_IMP_M14KC:
959 c->cputype = CPU_M14KC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100960 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill113c62d2012-07-06 23:56:00 +0200961 __cpu_name[cpu] = "MIPS M14Kc";
962 break;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000963 case PRID_IMP_M14KEC:
964 c->cputype = CPU_M14KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +0100965 c->writecombine = _CACHE_UNCACHED;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000966 __cpu_name[cpu] = "MIPS M14KEc";
967 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100968 case PRID_IMP_1004K:
969 c->cputype = CPU_1004K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100970 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000971 __cpu_name[cpu] = "MIPS 1004Kc";
Ralf Baechle39b8d522008-04-28 17:14:26 +0100972 break;
Steven J. Hill006a8512012-06-26 04:11:03 +0000973 case PRID_IMP_1074K:
Steven J. Hill442e14a2014-01-17 15:03:50 -0600974 c->cputype = CPU_1074K;
Markos Chandras4f12b912014-07-18 10:51:32 +0100975 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill006a8512012-06-26 04:11:03 +0000976 __cpu_name[cpu] = "MIPS 1074Kc";
977 break;
Leonid Yegoshinb5f065e2013-11-20 10:46:02 +0000978 case PRID_IMP_INTERAPTIV_UP:
979 c->cputype = CPU_INTERAPTIV;
980 __cpu_name[cpu] = "MIPS interAptiv";
981 break;
982 case PRID_IMP_INTERAPTIV_MP:
983 c->cputype = CPU_INTERAPTIV;
984 __cpu_name[cpu] = "MIPS interAptiv (multi)";
985 break;
Leonid Yegoshinb0d4d302013-11-14 16:12:28 +0000986 case PRID_IMP_PROAPTIV_UP:
987 c->cputype = CPU_PROAPTIV;
988 __cpu_name[cpu] = "MIPS proAptiv";
989 break;
990 case PRID_IMP_PROAPTIV_MP:
991 c->cputype = CPU_PROAPTIV;
992 __cpu_name[cpu] = "MIPS proAptiv (multi)";
993 break;
James Hogan829dcc02014-01-22 16:19:39 +0000994 case PRID_IMP_P5600:
995 c->cputype = CPU_P5600;
996 __cpu_name[cpu] = "MIPS P5600";
997 break;
Leonid Yegoshin9943ed92014-03-04 13:34:44 +0000998 case PRID_IMP_M5150:
999 c->cputype = CPU_M5150;
1000 __cpu_name[cpu] = "MIPS M5150";
1001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
Chris Dearman0b6d4972007-09-13 12:32:02 +01001003
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001004 decode_configs(c);
1005
Chris Dearman0b6d4972007-09-13 12:32:02 +01001006 spram_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001009static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Ralf Baechle41943182005-05-05 16:45:59 +00001011 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001012 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case PRID_IMP_AU1_REV1:
1014 case PRID_IMP_AU1_REV2:
Manuel Lauss270717a2009-03-25 17:49:28 +01001015 c->cputype = CPU_ALCHEMY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 switch ((c->processor_id >> 24) & 0xff) {
1017 case 0:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001018 __cpu_name[cpu] = "Au1000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 case 1:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001021 __cpu_name[cpu] = "Au1500";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 break;
1023 case 2:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001024 __cpu_name[cpu] = "Au1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026 case 3:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001027 __cpu_name[cpu] = "Au1550";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 break;
Pete Popove3ad1c22005-03-01 06:33:16 +00001029 case 4:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001030 __cpu_name[cpu] = "Au1200";
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001031 if ((c->processor_id & PRID_REV_MASK) == 2)
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001032 __cpu_name[cpu] = "Au1250";
Manuel Lauss237cfee2007-12-06 09:07:55 +01001033 break;
1034 case 5:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001035 __cpu_name[cpu] = "Au1210";
Pete Popove3ad1c22005-03-01 06:33:16 +00001036 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 default:
Manuel Lauss270717a2009-03-25 17:49:28 +01001038 __cpu_name[cpu] = "Au1xxx";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
1040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042 }
1043}
1044
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001045static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Ralf Baechle41943182005-05-05 16:45:59 +00001047 decode_configs(c);
Ralf Baechle02cf2112005-10-01 13:06:32 +01001048
Markos Chandras4f12b912014-07-18 10:51:32 +01001049 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001050 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 case PRID_IMP_SB1:
1052 c->cputype = CPU_SB1;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001053 __cpu_name[cpu] = "SiByte SB1";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /* FPU in pass1 is known to have issues. */
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001055 if ((c->processor_id & PRID_REV_MASK) < 0x02)
Ralf Baechle010b8532006-01-29 18:42:08 +00001056 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001058 case PRID_IMP_SB1A:
1059 c->cputype = CPU_SB1A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001060 __cpu_name[cpu] = "SiByte SB1A";
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001061 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063}
1064
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001065static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Ralf Baechle41943182005-05-05 16:45:59 +00001067 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001068 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 case PRID_IMP_SR71000:
1070 c->cputype = CPU_SR71000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001071 __cpu_name[cpu] = "Sandcraft SR71000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 c->scache.ways = 8;
1073 c->tlbsize = 64;
1074 break;
1075 }
1076}
1077
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001078static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
Pete Popovbdf21b12005-07-14 17:47:57 +00001079{
1080 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001081 switch (c->processor_id & PRID_IMP_MASK) {
Pete Popovbdf21b12005-07-14 17:47:57 +00001082 case PRID_IMP_PR4450:
1083 c->cputype = CPU_PR4450;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001084 __cpu_name[cpu] = "Philips PR4450";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001085 set_isa(c, MIPS_CPU_ISA_M32R1);
Pete Popovbdf21b12005-07-14 17:47:57 +00001086 break;
Pete Popovbdf21b12005-07-14 17:47:57 +00001087 }
1088}
1089
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001090static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001091{
1092 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001093 switch (c->processor_id & PRID_IMP_MASK) {
Kevin Cernekee190fca32010-11-23 10:26:45 -08001094 case PRID_IMP_BMIPS32_REV4:
1095 case PRID_IMP_BMIPS32_REV8:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001096 c->cputype = CPU_BMIPS32;
1097 __cpu_name[cpu] = "Broadcom BMIPS32";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001098 set_elf_platform(cpu, "bmips32");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001099 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001100 case PRID_IMP_BMIPS3300:
1101 case PRID_IMP_BMIPS3300_ALT:
1102 case PRID_IMP_BMIPS3300_BUG:
1103 c->cputype = CPU_BMIPS3300;
1104 __cpu_name[cpu] = "Broadcom BMIPS3300";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001105 set_elf_platform(cpu, "bmips3300");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001106 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001107 case PRID_IMP_BMIPS43XX: {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001108 int rev = c->processor_id & PRID_REV_MASK;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001109
1110 if (rev >= PRID_REV_BMIPS4380_LO &&
1111 rev <= PRID_REV_BMIPS4380_HI) {
1112 c->cputype = CPU_BMIPS4380;
1113 __cpu_name[cpu] = "Broadcom BMIPS4380";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001114 set_elf_platform(cpu, "bmips4380");
Kevin Cernekee602977b2010-10-16 14:22:30 -07001115 } else {
1116 c->cputype = CPU_BMIPS4350;
1117 __cpu_name[cpu] = "Broadcom BMIPS4350";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001118 set_elf_platform(cpu, "bmips4350");
Maxime Bizon0de663e2009-08-18 13:23:37 +01001119 }
1120 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001121 }
Kevin Cernekee602977b2010-10-16 14:22:30 -07001122 case PRID_IMP_BMIPS5000:
Kevin Cernekee68e6a782014-10-20 21:28:01 -07001123 case PRID_IMP_BMIPS5200:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001124 c->cputype = CPU_BMIPS5000;
1125 __cpu_name[cpu] = "Broadcom BMIPS5000";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001126 set_elf_platform(cpu, "bmips5000");
Kevin Cernekee602977b2010-10-16 14:22:30 -07001127 c->options |= MIPS_CPU_ULRI;
1128 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001129 }
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001130}
1131
David Daney0dd47812008-12-11 15:33:26 -08001132static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
1133{
1134 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001135 switch (c->processor_id & PRID_IMP_MASK) {
David Daney0dd47812008-12-11 15:33:26 -08001136 case PRID_IMP_CAVIUM_CN38XX:
1137 case PRID_IMP_CAVIUM_CN31XX:
1138 case PRID_IMP_CAVIUM_CN30XX:
David Daney6f329462010-02-10 15:12:48 -08001139 c->cputype = CPU_CAVIUM_OCTEON;
1140 __cpu_name[cpu] = "Cavium Octeon";
1141 goto platform;
David Daney0dd47812008-12-11 15:33:26 -08001142 case PRID_IMP_CAVIUM_CN58XX:
1143 case PRID_IMP_CAVIUM_CN56XX:
1144 case PRID_IMP_CAVIUM_CN50XX:
1145 case PRID_IMP_CAVIUM_CN52XX:
David Daney6f329462010-02-10 15:12:48 -08001146 c->cputype = CPU_CAVIUM_OCTEON_PLUS;
1147 __cpu_name[cpu] = "Cavium Octeon+";
1148platform:
Robert Millanc094c992011-04-18 11:37:55 -07001149 set_elf_platform(cpu, "octeon");
David Daney0dd47812008-12-11 15:33:26 -08001150 break;
David Daneya1431b62011-09-24 02:29:54 +02001151 case PRID_IMP_CAVIUM_CN61XX:
David Daney0e56b382010-10-07 16:03:45 -07001152 case PRID_IMP_CAVIUM_CN63XX:
David Daneya1431b62011-09-24 02:29:54 +02001153 case PRID_IMP_CAVIUM_CN66XX:
1154 case PRID_IMP_CAVIUM_CN68XX:
David Daneyaf04bb82013-07-29 15:07:01 -07001155 case PRID_IMP_CAVIUM_CNF71XX:
David Daney0e56b382010-10-07 16:03:45 -07001156 c->cputype = CPU_CAVIUM_OCTEON2;
1157 __cpu_name[cpu] = "Cavium Octeon II";
Robert Millanc094c992011-04-18 11:37:55 -07001158 set_elf_platform(cpu, "octeon2");
David Daney0e56b382010-10-07 16:03:45 -07001159 break;
David Daneyaf04bb82013-07-29 15:07:01 -07001160 case PRID_IMP_CAVIUM_CN70XX:
1161 case PRID_IMP_CAVIUM_CN78XX:
1162 c->cputype = CPU_CAVIUM_OCTEON3;
1163 __cpu_name[cpu] = "Cavium Octeon III";
1164 set_elf_platform(cpu, "octeon3");
1165 break;
David Daney0dd47812008-12-11 15:33:26 -08001166 default:
1167 printk(KERN_INFO "Unknown Octeon chip!\n");
1168 c->cputype = CPU_UNKNOWN;
1169 break;
1170 }
1171}
1172
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001173static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
1174{
1175 decode_configs(c);
1176 /* JZRISC does not implement the CP0 counter. */
1177 c->options &= ~MIPS_CPU_COUNTER;
Maciej W. Rozycki06947aa2014-04-06 21:31:29 +01001178 BUG_ON(!__builtin_constant_p(cpu_has_counter) || cpu_has_counter);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001179 switch (c->processor_id & PRID_IMP_MASK) {
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001180 case PRID_IMP_JZRISC:
1181 c->cputype = CPU_JZRISC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001182 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001183 __cpu_name[cpu] = "Ingenic JZRISC";
1184 break;
1185 default:
1186 panic("Unknown Ingenic Processor ID!");
1187 break;
1188 }
1189}
1190
Jayachandran Ca7117c62011-05-11 12:04:58 +05301191static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
1192{
1193 decode_configs(c);
1194
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001195 if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_NETLOGIC_AU13XX) {
Manuel Lauss809f36c2011-11-01 20:03:30 +01001196 c->cputype = CPU_ALCHEMY;
1197 __cpu_name[cpu] = "Au1300";
1198 /* following stuff is not for Alchemy */
1199 return;
1200 }
1201
Ralf Baechle70342282013-01-22 12:59:30 +01001202 c->options = (MIPS_CPU_TLB |
1203 MIPS_CPU_4KEX |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301204 MIPS_CPU_COUNTER |
Ralf Baechle70342282013-01-22 12:59:30 +01001205 MIPS_CPU_DIVEC |
1206 MIPS_CPU_WATCH |
1207 MIPS_CPU_EJTAG |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301208 MIPS_CPU_LLSC);
1209
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001210 switch (c->processor_id & PRID_IMP_MASK) {
Jayachandran C4ca86a22013-08-11 14:43:54 +05301211 case PRID_IMP_NETLOGIC_XLP2XX:
Jayachandran C8907c552013-12-21 16:52:20 +05301212 case PRID_IMP_NETLOGIC_XLP9XX:
Yonghong Song1c983982014-04-29 20:07:53 +05301213 case PRID_IMP_NETLOGIC_XLP5XX:
Jayachandran C4ca86a22013-08-11 14:43:54 +05301214 c->cputype = CPU_XLP;
1215 __cpu_name[cpu] = "Broadcom XLPII";
1216 break;
1217
Jayachandran C2aa54b22011-11-16 00:21:29 +00001218 case PRID_IMP_NETLOGIC_XLP8XX:
1219 case PRID_IMP_NETLOGIC_XLP3XX:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001220 c->cputype = CPU_XLP;
1221 __cpu_name[cpu] = "Netlogic XLP";
1222 break;
1223
Jayachandran Ca7117c62011-05-11 12:04:58 +05301224 case PRID_IMP_NETLOGIC_XLR732:
1225 case PRID_IMP_NETLOGIC_XLR716:
1226 case PRID_IMP_NETLOGIC_XLR532:
1227 case PRID_IMP_NETLOGIC_XLR308:
1228 case PRID_IMP_NETLOGIC_XLR532C:
1229 case PRID_IMP_NETLOGIC_XLR516C:
1230 case PRID_IMP_NETLOGIC_XLR508C:
1231 case PRID_IMP_NETLOGIC_XLR308C:
1232 c->cputype = CPU_XLR;
1233 __cpu_name[cpu] = "Netlogic XLR";
1234 break;
1235
1236 case PRID_IMP_NETLOGIC_XLS608:
1237 case PRID_IMP_NETLOGIC_XLS408:
1238 case PRID_IMP_NETLOGIC_XLS404:
1239 case PRID_IMP_NETLOGIC_XLS208:
1240 case PRID_IMP_NETLOGIC_XLS204:
1241 case PRID_IMP_NETLOGIC_XLS108:
1242 case PRID_IMP_NETLOGIC_XLS104:
1243 case PRID_IMP_NETLOGIC_XLS616B:
1244 case PRID_IMP_NETLOGIC_XLS608B:
1245 case PRID_IMP_NETLOGIC_XLS416B:
1246 case PRID_IMP_NETLOGIC_XLS412B:
1247 case PRID_IMP_NETLOGIC_XLS408B:
1248 case PRID_IMP_NETLOGIC_XLS404B:
1249 c->cputype = CPU_XLR;
1250 __cpu_name[cpu] = "Netlogic XLS";
1251 break;
1252
1253 default:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001254 pr_info("Unknown Netlogic chip id [%02x]!\n",
Jayachandran Ca7117c62011-05-11 12:04:58 +05301255 c->processor_id);
1256 c->cputype = CPU_XLR;
1257 break;
1258 }
1259
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001260 if (c->cputype == CPU_XLP) {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001261 set_isa(c, MIPS_CPU_ISA_M64R2);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001262 c->options |= (MIPS_CPU_FPU | MIPS_CPU_ULRI | MIPS_CPU_MCHECK);
1263 /* This will be updated again after all threads are woken up */
1264 c->tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
1265 } else {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001266 set_isa(c, MIPS_CPU_ISA_M64R1);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001267 c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
1268 }
Jayachandran C7777b932013-06-11 14:41:35 +00001269 c->kscratch_mask = 0xf;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301270}
1271
David Daney949e51b2010-10-14 11:32:33 -07001272#ifdef CONFIG_64BIT
1273/* For use by uaccess.h */
1274u64 __ua_limit;
1275EXPORT_SYMBOL(__ua_limit);
1276#endif
1277
Ralf Baechle9966db252007-10-11 23:46:17 +01001278const char *__cpu_name[NR_CPUS];
David Daney874fd3b2010-01-28 16:52:12 -08001279const char *__elf_platform;
Ralf Baechle9966db252007-10-11 23:46:17 +01001280
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001281void cpu_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle9966db252007-10-11 23:46:17 +01001284 unsigned int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Ralf Baechle70342282013-01-22 12:59:30 +01001286 c->processor_id = PRID_IMP_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 c->fpu_id = FPIR_IMP_NONE;
1288 c->cputype = CPU_UNKNOWN;
Markos Chandras4f12b912014-07-18 10:51:32 +01001289 c->writecombine = _CACHE_UNCACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 c->processor_id = read_c0_prid();
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001292 switch (c->processor_id & PRID_COMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 case PRID_COMP_LEGACY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001294 cpu_probe_legacy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 break;
1296 case PRID_COMP_MIPS:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001297 cpu_probe_mips(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 break;
1299 case PRID_COMP_ALCHEMY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001300 cpu_probe_alchemy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 case PRID_COMP_SIBYTE:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001303 cpu_probe_sibyte(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001305 case PRID_COMP_BROADCOM:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001306 cpu_probe_broadcom(c, cpu);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 case PRID_COMP_SANDCRAFT:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001309 cpu_probe_sandcraft(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
Daniel Lairda92b0582008-03-06 09:07:18 +00001311 case PRID_COMP_NXP:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001312 cpu_probe_nxp(c, cpu);
Ralf Baechlea3dddd52006-03-11 08:18:41 +00001313 break;
David Daney0dd47812008-12-11 15:33:26 -08001314 case PRID_COMP_CAVIUM:
1315 cpu_probe_cavium(c, cpu);
1316 break;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001317 case PRID_COMP_INGENIC:
1318 cpu_probe_ingenic(c, cpu);
1319 break;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301320 case PRID_COMP_NETLOGIC:
1321 cpu_probe_netlogic(c, cpu);
1322 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001324
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001325 BUG_ON(!__cpu_name[cpu]);
1326 BUG_ON(c->cputype == CPU_UNKNOWN);
1327
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001328 /*
1329 * Platform code can force the cpu type to optimize code
1330 * generation. In that case be sure the cpu type is correctly
1331 * manually setup otherwise it could trigger some nasty bugs.
1332 */
1333 BUG_ON(current_cpu_type() != c->cputype);
1334
Kevin Cernekee0103d232010-05-02 14:43:52 -07001335 if (mips_fpu_disabled)
1336 c->options &= ~MIPS_CPU_FPU;
1337
1338 if (mips_dsp_disabled)
Steven J. Hillee80f7c72012-08-03 10:26:04 -05001339 c->ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -07001340
Markos Chandras3d528b32014-07-14 12:46:13 +01001341 if (mips_htw_disabled) {
1342 c->options &= ~MIPS_CPU_HTW;
1343 write_c0_pwctl(read_c0_pwctl() &
1344 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
1345 }
1346
Ralf Baechle41943182005-05-05 16:45:59 +00001347 if (c->options & MIPS_CPU_FPU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 c->fpu_id = cpu_get_fpu_id();
Ralf Baechle41943182005-05-05 16:45:59 +00001349
Deng-Cheng Zhuadb37892013-04-01 18:14:28 +00001350 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M32R2 |
1351 MIPS_CPU_ISA_M64R1 | MIPS_CPU_ISA_M64R2)) {
Ralf Baechle41943182005-05-05 16:45:59 +00001352 if (c->fpu_id & MIPS_FPIR_3D)
1353 c->ases |= MIPS_ASE_MIPS3D;
Paul Burtonadac5d52014-09-11 08:30:18 +01001354 if (c->fpu_id & MIPS_FPIR_FREP)
1355 c->options |= MIPS_CPU_FRE;
Ralf Baechle41943182005-05-05 16:45:59 +00001356 }
1357 }
Ralf Baechle9966db252007-10-11 23:46:17 +01001358
Al Cooperda4b62c2012-07-13 16:44:51 -04001359 if (cpu_has_mips_r2) {
Ralf Baechlef6771db2007-11-08 18:02:29 +00001360 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Al Cooperda4b62c2012-07-13 16:44:51 -04001361 /* R2 has Performance Counter Interrupt indicator */
1362 c->options |= MIPS_CPU_PCI;
1363 }
Ralf Baechlef6771db2007-11-08 18:02:29 +00001364 else
1365 c->srsets = 1;
Guenter Roeck91dfc422010-02-02 08:52:20 -08001366
Paul Burtona8ad1362014-01-28 14:28:43 +00001367 if (cpu_has_msa) {
Paul Burtona5e9a692014-01-27 15:23:10 +00001368 c->msa_id = cpu_get_msa_id();
Paul Burtona8ad1362014-01-28 14:28:43 +00001369 WARN(c->msa_id & MSA_IR_WRPF,
1370 "Vector register partitioning unimplemented!");
1371 }
Paul Burtona5e9a692014-01-27 15:23:10 +00001372
Guenter Roeck91dfc422010-02-02 08:52:20 -08001373 cpu_probe_vmbits(c);
David Daney949e51b2010-10-14 11:32:33 -07001374
1375#ifdef CONFIG_64BIT
1376 if (cpu == 0)
1377 __ua_limit = ~((1ull << cpu_vmbits) - 1);
1378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001381void cpu_report(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 struct cpuinfo_mips *c = &current_cpu_data;
1384
Leonid Yegoshind9f897c2013-10-07 10:43:32 +01001385 pr_info("CPU%d revision is: %08x (%s)\n",
1386 smp_processor_id(), c->processor_id, cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (c->options & MIPS_CPU_FPU)
Ralf Baechle9966db252007-10-11 23:46:17 +01001388 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
Paul Burtona5e9a692014-01-27 15:23:10 +00001389 if (cpu_has_msa)
1390 pr_info("MSA revision is: %08x\n", c->msa_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}