blob: 6a1a7da4b2d2a4cd2baaf4473961a1f6e33abe09 [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>
Maciej W. Rozyckif6843622015-04-03 23:27:26 +010023#include <asm/cpu-features.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020024#include <asm/cpu-type.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/fpu.h>
26#include <asm/mipsregs.h>
Paul Burton30ee6152014-03-27 10:57:30 +000027#include <asm/mipsmtregs.h>
Paul Burtona5e9a692014-01-27 15:23:10 +000028#include <asm/msa.h>
David Daney654f57b2008-09-23 00:07:16 -070029#include <asm/watch.h>
Paul Gortmaker06372a62011-07-23 16:26:41 -040030#include <asm/elf.h>
Markos Chandras4f12b912014-07-18 10:51:32 +010031#include <asm/pgtable-bits.h>
Chris Dearmana074f0e2009-07-10 01:51:27 -070032#include <asm/spram.h>
David Daney949e51b2010-10-14 11:32:33 -070033#include <asm/uaccess.h>
34
Paul Burtone14f1db2015-07-27 12:58:23 -070035/* Hardware capabilities */
36unsigned int elf_hwcap __read_mostly;
37
Maciej W. Rozyckif6843622015-04-03 23:27:26 +010038/*
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +010039 * Get the FPU Implementation/Revision.
40 */
41static inline unsigned long cpu_get_fpu_id(void)
42{
43 unsigned long tmp, fpu_id;
44
45 tmp = read_c0_status();
46 __enable_fpu(FPU_AS_IS);
47 fpu_id = read_32bit_cp1_register(CP1_REVISION);
48 write_c0_status(tmp);
49 return fpu_id;
50}
51
52/*
53 * Check if the CPU has an external FPU.
54 */
55static inline int __cpu_has_fpu(void)
56{
57 return (cpu_get_fpu_id() & FPIR_IMP_MASK) != FPIR_IMP_NONE;
58}
59
60static inline unsigned long cpu_get_msa_id(void)
61{
62 unsigned long status, msa_id;
63
64 status = read_c0_status();
65 __enable_fpu(FPU_64BIT);
66 enable_msa();
67 msa_id = read_msa_ir();
68 disable_msa();
69 write_c0_status(status);
70 return msa_id;
71}
72
73/*
Maciej W. Rozycki9b266162015-04-03 23:27:48 +010074 * Determine the FCSR mask for FPU hardware.
75 */
76static inline void cpu_set_fpu_fcsr_mask(struct cpuinfo_mips *c)
77{
78 unsigned long sr, mask, fcsr, fcsr0, fcsr1;
79
Maciej W. Rozycki90b712d2015-06-02 17:50:59 +010080 fcsr = c->fpu_csr31;
Maciej W. Rozycki9b266162015-04-03 23:27:48 +010081 mask = FPU_CSR_ALL_X | FPU_CSR_ALL_E | FPU_CSR_ALL_S | FPU_CSR_RM;
82
83 sr = read_c0_status();
84 __enable_fpu(FPU_AS_IS);
85
Maciej W. Rozycki9b266162015-04-03 23:27:48 +010086 fcsr0 = fcsr & mask;
87 write_32bit_cp1_register(CP1_STATUS, fcsr0);
88 fcsr0 = read_32bit_cp1_register(CP1_STATUS);
89
90 fcsr1 = fcsr | ~mask;
91 write_32bit_cp1_register(CP1_STATUS, fcsr1);
92 fcsr1 = read_32bit_cp1_register(CP1_STATUS);
93
94 write_32bit_cp1_register(CP1_STATUS, fcsr);
95
96 write_c0_status(sr);
97
98 c->fpu_msk31 = ~(fcsr0 ^ fcsr1) & ~mask;
99}
100
101/*
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000102 * Determine the IEEE 754 NaN encodings and ABS.fmt/NEG.fmt execution modes
103 * supported by FPU hardware.
104 */
105static void cpu_set_fpu_2008(struct cpuinfo_mips *c)
106{
107 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
108 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
109 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6)) {
110 unsigned long sr, fir, fcsr, fcsr0, fcsr1;
111
112 sr = read_c0_status();
113 __enable_fpu(FPU_AS_IS);
114
115 fir = read_32bit_cp1_register(CP1_REVISION);
116 if (fir & MIPS_FPIR_HAS2008) {
117 fcsr = read_32bit_cp1_register(CP1_STATUS);
118
119 fcsr0 = fcsr & ~(FPU_CSR_ABS2008 | FPU_CSR_NAN2008);
120 write_32bit_cp1_register(CP1_STATUS, fcsr0);
121 fcsr0 = read_32bit_cp1_register(CP1_STATUS);
122
123 fcsr1 = fcsr | FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
124 write_32bit_cp1_register(CP1_STATUS, fcsr1);
125 fcsr1 = read_32bit_cp1_register(CP1_STATUS);
126
127 write_32bit_cp1_register(CP1_STATUS, fcsr);
128
129 if (!(fcsr0 & FPU_CSR_NAN2008))
130 c->options |= MIPS_CPU_NAN_LEGACY;
131 if (fcsr1 & FPU_CSR_NAN2008)
132 c->options |= MIPS_CPU_NAN_2008;
133
134 if ((fcsr0 ^ fcsr1) & FPU_CSR_ABS2008)
135 c->fpu_msk31 &= ~FPU_CSR_ABS2008;
136 else
137 c->fpu_csr31 |= fcsr & FPU_CSR_ABS2008;
138
139 if ((fcsr0 ^ fcsr1) & FPU_CSR_NAN2008)
140 c->fpu_msk31 &= ~FPU_CSR_NAN2008;
141 else
142 c->fpu_csr31 |= fcsr & FPU_CSR_NAN2008;
143 } else {
144 c->options |= MIPS_CPU_NAN_LEGACY;
145 }
146
147 write_c0_status(sr);
148 } else {
149 c->options |= MIPS_CPU_NAN_LEGACY;
150 }
151}
152
153/*
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000154 * IEEE 754 conformance mode to use. Affects the NaN encoding and the
155 * ABS.fmt/NEG.fmt execution mode.
156 */
157static enum { STRICT, LEGACY, STD2008, RELAXED } ieee754 = STRICT;
158
159/*
160 * Set the IEEE 754 NaN encodings and the ABS.fmt/NEG.fmt execution modes
161 * to support by the FPU emulator according to the IEEE 754 conformance
162 * mode selected. Note that "relaxed" straps the emulator so that it
163 * allows 2008-NaN binaries even for legacy processors.
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000164 */
165static void cpu_set_nofpu_2008(struct cpuinfo_mips *c)
166{
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000167 c->options &= ~(MIPS_CPU_NAN_2008 | MIPS_CPU_NAN_LEGACY);
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000168 c->fpu_csr31 &= ~(FPU_CSR_ABS2008 | FPU_CSR_NAN2008);
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000169 c->fpu_msk31 &= ~(FPU_CSR_ABS2008 | FPU_CSR_NAN2008);
170
171 switch (ieee754) {
172 case STRICT:
173 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
174 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
175 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6)) {
176 c->options |= MIPS_CPU_NAN_2008 | MIPS_CPU_NAN_LEGACY;
177 } else {
178 c->options |= MIPS_CPU_NAN_LEGACY;
179 c->fpu_msk31 |= FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
180 }
181 break;
182 case LEGACY:
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000183 c->options |= MIPS_CPU_NAN_LEGACY;
184 c->fpu_msk31 |= FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000185 break;
186 case STD2008:
187 c->options |= MIPS_CPU_NAN_2008;
188 c->fpu_csr31 |= FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
189 c->fpu_msk31 |= FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
190 break;
191 case RELAXED:
192 c->options |= MIPS_CPU_NAN_2008 | MIPS_CPU_NAN_LEGACY;
193 break;
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000194 }
195}
196
197/*
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000198 * Override the IEEE 754 NaN encoding and ABS.fmt/NEG.fmt execution mode
199 * according to the "ieee754=" parameter.
200 */
201static void cpu_set_nan_2008(struct cpuinfo_mips *c)
202{
203 switch (ieee754) {
204 case STRICT:
205 mips_use_nan_legacy = !!cpu_has_nan_legacy;
206 mips_use_nan_2008 = !!cpu_has_nan_2008;
207 break;
208 case LEGACY:
209 mips_use_nan_legacy = !!cpu_has_nan_legacy;
210 mips_use_nan_2008 = !cpu_has_nan_legacy;
211 break;
212 case STD2008:
213 mips_use_nan_legacy = !cpu_has_nan_2008;
214 mips_use_nan_2008 = !!cpu_has_nan_2008;
215 break;
216 case RELAXED:
217 mips_use_nan_legacy = true;
218 mips_use_nan_2008 = true;
219 break;
220 }
221}
222
223/*
224 * IEEE 754 NaN encoding and ABS.fmt/NEG.fmt execution mode override
225 * settings:
226 *
227 * strict: accept binaries that request a NaN encoding supported by the FPU
228 * legacy: only accept legacy-NaN binaries
229 * 2008: only accept 2008-NaN binaries
230 * relaxed: accept any binaries regardless of whether supported by the FPU
231 */
232static int __init ieee754_setup(char *s)
233{
234 if (!s)
235 return -1;
236 else if (!strcmp(s, "strict"))
237 ieee754 = STRICT;
238 else if (!strcmp(s, "legacy"))
239 ieee754 = LEGACY;
240 else if (!strcmp(s, "2008"))
241 ieee754 = STD2008;
242 else if (!strcmp(s, "relaxed"))
243 ieee754 = RELAXED;
244 else
245 return -1;
246
247 if (!(boot_cpu_data.options & MIPS_CPU_FPU))
248 cpu_set_nofpu_2008(&boot_cpu_data);
249 cpu_set_nan_2008(&boot_cpu_data);
250
251 return 0;
252}
253
254early_param("ieee754", ieee754_setup);
255
256/*
Maciej W. Rozyckif6843622015-04-03 23:27:26 +0100257 * Set the FIR feature flags for the FPU emulator.
258 */
259static void cpu_set_nofpu_id(struct cpuinfo_mips *c)
260{
261 u32 value;
262
263 value = 0;
264 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
265 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
266 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6))
267 value |= MIPS_FPIR_D | MIPS_FPIR_S;
268 if (c->isa_level & (MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
269 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6))
270 value |= MIPS_FPIR_F64 | MIPS_FPIR_L | MIPS_FPIR_W;
Maciej W. Rozycki90d53a92015-11-13 00:47:28 +0000271 if (c->options & MIPS_CPU_NAN_2008)
272 value |= MIPS_FPIR_HAS2008;
Maciej W. Rozyckif6843622015-04-03 23:27:26 +0100273 c->fpu_id = value;
274}
275
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100276/* Determined FPU emulator mask to use for the boot CPU with "nofpu". */
277static unsigned int mips_nofpu_msk31;
278
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +0100279/*
280 * Set options for FPU hardware.
281 */
282static void cpu_set_fpu_opts(struct cpuinfo_mips *c)
283{
284 c->fpu_id = cpu_get_fpu_id();
285 mips_nofpu_msk31 = c->fpu_msk31;
286
287 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
288 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
289 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6)) {
290 if (c->fpu_id & MIPS_FPIR_3D)
291 c->ases |= MIPS_ASE_MIPS3D;
292 if (c->fpu_id & MIPS_FPIR_FREP)
293 c->options |= MIPS_CPU_FRE;
294 }
295
296 cpu_set_fpu_fcsr_mask(c);
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000297 cpu_set_fpu_2008(c);
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000298 cpu_set_nan_2008(c);
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +0100299}
300
301/*
302 * Set options for the FPU emulator.
303 */
304static void cpu_set_nofpu_opts(struct cpuinfo_mips *c)
305{
306 c->options &= ~MIPS_CPU_FPU;
307 c->fpu_msk31 = mips_nofpu_msk31;
308
Maciej W. Rozycki93adeaf2015-11-13 00:48:15 +0000309 cpu_set_nofpu_2008(c);
Maciej W. Rozycki503943e2015-11-13 00:48:29 +0000310 cpu_set_nan_2008(c);
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +0100311 cpu_set_nofpu_id(c);
312}
313
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000314static int mips_fpu_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -0700315
316static int __init fpu_disable(char *s)
317{
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +0100318 cpu_set_nofpu_opts(&boot_cpu_data);
Kevin Cernekee0103d232010-05-02 14:43:52 -0700319 mips_fpu_disabled = 1;
320
321 return 1;
322}
323
324__setup("nofpu", fpu_disable);
325
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000326int mips_dsp_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -0700327
328static int __init dsp_disable(char *s)
329{
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500330 cpu_data[0].ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -0700331 mips_dsp_disabled = 1;
332
333 return 1;
334}
335
336__setup("nodsp", dsp_disable);
337
Markos Chandras3d528b32014-07-14 12:46:13 +0100338static int mips_htw_disabled;
339
340static int __init htw_disable(char *s)
341{
342 mips_htw_disabled = 1;
343 cpu_data[0].options &= ~MIPS_CPU_HTW;
344 write_c0_pwctl(read_c0_pwctl() &
345 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
346
347 return 1;
348}
349
350__setup("nohtw", htw_disable);
351
Markos Chandras97f4ad22014-08-29 09:37:26 +0100352static int mips_ftlb_disabled;
353static int mips_has_ftlb_configured;
354
Markos Chandras912708c2015-07-09 10:40:51 +0100355static int set_ftlb_enable(struct cpuinfo_mips *c, int enable);
Markos Chandras97f4ad22014-08-29 09:37:26 +0100356
357static int __init ftlb_disable(char *s)
358{
359 unsigned int config4, mmuextdef;
360
361 /*
362 * If the core hasn't done any FTLB configuration, there is nothing
363 * for us to do here.
364 */
365 if (!mips_has_ftlb_configured)
366 return 1;
367
368 /* Disable it in the boot cpu */
Markos Chandras912708c2015-07-09 10:40:51 +0100369 if (set_ftlb_enable(&cpu_data[0], 0)) {
370 pr_warn("Can't turn FTLB off\n");
371 return 1;
372 }
Markos Chandras97f4ad22014-08-29 09:37:26 +0100373
374 back_to_back_c0_hazard();
375
376 config4 = read_c0_config4();
377
378 /* Check that FTLB has been disabled */
379 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
380 /* MMUSIZEEXT == VTLB ON, FTLB OFF */
381 if (mmuextdef == MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT) {
382 /* This should never happen */
383 pr_warn("FTLB could not be disabled!\n");
384 return 1;
385 }
386
387 mips_ftlb_disabled = 1;
388 mips_has_ftlb_configured = 0;
389
390 /*
391 * noftlb is mainly used for debug purposes so print
392 * an informative message instead of using pr_debug()
393 */
394 pr_info("FTLB has been disabled\n");
395
396 /*
397 * Some of these bits are duplicated in the decode_config4.
398 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
399 * once FTLB has been disabled so undo what decode_config4 did.
400 */
401 cpu_data[0].tlbsize -= cpu_data[0].tlbsizeftlbways *
402 cpu_data[0].tlbsizeftlbsets;
403 cpu_data[0].tlbsizeftlbsets = 0;
404 cpu_data[0].tlbsizeftlbways = 0;
405
406 return 1;
407}
408
409__setup("noftlb", ftlb_disable);
410
411
Marc St-Jean9267a302007-06-14 15:55:31 -0600412static inline void check_errata(void)
413{
414 struct cpuinfo_mips *c = &current_cpu_data;
415
Ralf Baechle69f24d12013-09-17 10:25:47 +0200416 switch (current_cpu_type()) {
Marc St-Jean9267a302007-06-14 15:55:31 -0600417 case CPU_34K:
418 /*
419 * Erratum "RPS May Cause Incorrect Instruction Execution"
Ralf Baechleb6336482014-05-23 16:29:44 +0200420 * This code only handles VPE0, any SMP/RTOS code
Marc St-Jean9267a302007-06-14 15:55:31 -0600421 * making use of VPE1 will be responsable for that VPE.
422 */
423 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
424 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
425 break;
426 default:
427 break;
428 }
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431void __init check_bugs32(void)
432{
Marc St-Jean9267a302007-06-14 15:55:31 -0600433 check_errata();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/*
437 * Probe whether cpu has config register by trying to play with
438 * alternate cache bit and see whether it matters.
439 * It's used by cpu_probe to distinguish between R3000A and R3081.
440 */
441static inline int cpu_has_confreg(void)
442{
443#ifdef CONFIG_CPU_R3000
444 extern unsigned long r3k_cache_size(unsigned long);
445 unsigned long size1, size2;
446 unsigned long cfg = read_c0_conf();
447
448 size1 = r3k_cache_size(ST0_ISC);
449 write_c0_conf(cfg ^ R30XX_CONF_AC);
450 size2 = r3k_cache_size(ST0_ISC);
451 write_c0_conf(cfg);
452 return size1 != size2;
453#else
454 return 0;
455#endif
456}
457
Robert Millanc094c992011-04-18 11:37:55 -0700458static inline void set_elf_platform(int cpu, const char *plat)
459{
460 if (cpu == 0)
461 __elf_platform = plat;
462}
463
Guenter Roeck91dfc422010-02-02 08:52:20 -0800464static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
465{
466#ifdef __NEED_VMBITS_PROBE
David Daney5b7efa82010-02-08 12:27:00 -0800467 write_c0_entryhi(0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800468 back_to_back_c0_hazard();
David Daney5b7efa82010-02-08 12:27:00 -0800469 c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800470#endif
471}
472
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000473static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
Steven J. Hilla96102b2012-12-07 04:31:36 +0000474{
475 switch (isa) {
476 case MIPS_CPU_ISA_M64R2:
477 c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
478 case MIPS_CPU_ISA_M64R1:
479 c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
480 case MIPS_CPU_ISA_V:
481 c->isa_level |= MIPS_CPU_ISA_V;
482 case MIPS_CPU_ISA_IV:
483 c->isa_level |= MIPS_CPU_ISA_IV;
484 case MIPS_CPU_ISA_III:
Ralf Baechle1990e542013-06-26 17:06:34 +0200485 c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000486 break;
487
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000488 /* R6 incompatible with everything else */
489 case MIPS_CPU_ISA_M64R6:
490 c->isa_level |= MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6;
491 case MIPS_CPU_ISA_M32R6:
492 c->isa_level |= MIPS_CPU_ISA_M32R6;
493 /* Break here so we don't add incompatible ISAs */
494 break;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000495 case MIPS_CPU_ISA_M32R2:
496 c->isa_level |= MIPS_CPU_ISA_M32R2;
497 case MIPS_CPU_ISA_M32R1:
498 c->isa_level |= MIPS_CPU_ISA_M32R1;
499 case MIPS_CPU_ISA_II:
500 c->isa_level |= MIPS_CPU_ISA_II;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000501 break;
502 }
503}
504
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000505static char unknown_isa[] = KERN_ERR \
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100506 "Unsupported ISA type, c0.config0: %d.";
507
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000508static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c)
509{
510
511 unsigned int probability = c->tlbsize / c->tlbsizevtlb;
512
513 /*
514 * 0 = All TLBWR instructions go to FTLB
515 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
516 * FTLB and 1 goes to the VTLB.
517 * 2 = 7:1: As above with 7:1 ratio.
518 * 3 = 3:1: As above with 3:1 ratio.
519 *
520 * Use the linear midpoint as the probability threshold.
521 */
522 if (probability >= 12)
523 return 1;
524 else if (probability >= 6)
525 return 2;
526 else
527 /*
528 * So FTLB is less than 4 times bigger than VTLB.
529 * A 3:1 ratio can still be useful though.
530 */
531 return 3;
532}
533
Markos Chandras912708c2015-07-09 10:40:51 +0100534static int set_ftlb_enable(struct cpuinfo_mips *c, int enable)
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000535{
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100536 unsigned int config;
James Hogand83b0e82014-01-22 16:19:40 +0000537
538 /* It's implementation dependent how the FTLB can be enabled */
539 switch (c->cputype) {
540 case CPU_PROAPTIV:
541 case CPU_P5600:
Paul Burton1091bfa2016-02-03 03:26:38 +0000542 case CPU_P6600:
James Hogand83b0e82014-01-22 16:19:40 +0000543 /* proAptiv & related cores use Config6 to enable the FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100544 config = read_c0_config6();
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000545 /* Clear the old probability value */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100546 config &= ~(3 << MIPS_CONF6_FTLBP_SHIFT);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000547 if (enable)
548 /* Enable FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100549 write_c0_config6(config |
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000550 (calculate_ftlb_probability(c)
551 << MIPS_CONF6_FTLBP_SHIFT)
552 | MIPS_CONF6_FTLBEN);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000553 else
554 /* Disable FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100555 write_c0_config6(config & ~MIPS_CONF6_FTLBEN);
556 break;
557 case CPU_I6400:
558 /* I6400 & related cores use Config7 to configure FTLB */
559 config = read_c0_config7();
560 /* Clear the old probability value */
561 config &= ~(3 << MIPS_CONF7_FTLBP_SHIFT);
562 write_c0_config7(config | (calculate_ftlb_probability(c)
563 << MIPS_CONF7_FTLBP_SHIFT));
James Hogand83b0e82014-01-22 16:19:40 +0000564 break;
Huacai Chenb2edcfc2016-03-03 09:45:09 +0800565 case CPU_LOONGSON3:
Huacai Chen06e48142016-03-03 09:45:11 +0800566 /* Flush ITLB, DTLB, VTLB and FTLB */
567 write_c0_diag(LOONGSON_DIAG_ITLB | LOONGSON_DIAG_DTLB |
568 LOONGSON_DIAG_VTLB | LOONGSON_DIAG_FTLB);
Huacai Chenb2edcfc2016-03-03 09:45:09 +0800569 /* Loongson-3 cores use Config6 to enable the FTLB */
570 config = read_c0_config6();
571 if (enable)
572 /* Enable FTLB */
573 write_c0_config6(config & ~MIPS_CONF6_FTLBDIS);
574 else
575 /* Disable FTLB */
576 write_c0_config6(config | MIPS_CONF6_FTLBDIS);
577 break;
Markos Chandras912708c2015-07-09 10:40:51 +0100578 default:
579 return 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000580 }
Markos Chandras912708c2015-07-09 10:40:51 +0100581
582 return 0;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000583}
584
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100585static inline unsigned int decode_config0(struct cpuinfo_mips *c)
586{
587 unsigned int config0;
James Hogan2f6f3132015-09-17 17:49:20 +0100588 int isa, mt;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100589
590 config0 = read_c0_config();
591
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000592 /*
593 * Look for Standard TLB or Dual VTLB and FTLB
594 */
James Hogan2f6f3132015-09-17 17:49:20 +0100595 mt = config0 & MIPS_CONF_MT;
596 if (mt == MIPS_CONF_MT_TLB)
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100597 c->options |= MIPS_CPU_TLB;
James Hogan2f6f3132015-09-17 17:49:20 +0100598 else if (mt == MIPS_CONF_MT_FTLB)
599 c->options |= MIPS_CPU_TLB | MIPS_CPU_FTLB;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000600
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100601 isa = (config0 & MIPS_CONF_AT) >> 13;
602 switch (isa) {
603 case 0:
604 switch ((config0 & MIPS_CONF_AR) >> 10) {
605 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000606 set_isa(c, MIPS_CPU_ISA_M32R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100607 break;
608 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000609 set_isa(c, MIPS_CPU_ISA_M32R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100610 break;
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000611 case 2:
612 set_isa(c, MIPS_CPU_ISA_M32R6);
613 break;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100614 default:
615 goto unknown;
616 }
617 break;
618 case 2:
619 switch ((config0 & MIPS_CONF_AR) >> 10) {
620 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000621 set_isa(c, MIPS_CPU_ISA_M64R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100622 break;
623 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000624 set_isa(c, MIPS_CPU_ISA_M64R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100625 break;
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000626 case 2:
627 set_isa(c, MIPS_CPU_ISA_M64R6);
628 break;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100629 default:
630 goto unknown;
631 }
632 break;
633 default:
634 goto unknown;
635 }
636
637 return config0 & MIPS_CONF_M;
638
639unknown:
640 panic(unknown_isa, config0);
641}
642
643static inline unsigned int decode_config1(struct cpuinfo_mips *c)
644{
645 unsigned int config1;
646
647 config1 = read_c0_config1();
648
649 if (config1 & MIPS_CONF1_MD)
650 c->ases |= MIPS_ASE_MDMX;
651 if (config1 & MIPS_CONF1_WR)
652 c->options |= MIPS_CPU_WATCH;
653 if (config1 & MIPS_CONF1_CA)
654 c->ases |= MIPS_ASE_MIPS16;
655 if (config1 & MIPS_CONF1_EP)
656 c->options |= MIPS_CPU_EJTAG;
657 if (config1 & MIPS_CONF1_FP) {
658 c->options |= MIPS_CPU_FPU;
659 c->options |= MIPS_CPU_32FPR;
660 }
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000661 if (cpu_has_tlb) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100662 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000663 c->tlbsizevtlb = c->tlbsize;
664 c->tlbsizeftlbsets = 0;
665 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100666
667 return config1 & MIPS_CONF_M;
668}
669
670static inline unsigned int decode_config2(struct cpuinfo_mips *c)
671{
672 unsigned int config2;
673
674 config2 = read_c0_config2();
675
676 if (config2 & MIPS_CONF2_SL)
677 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
678
679 return config2 & MIPS_CONF_M;
680}
681
682static inline unsigned int decode_config3(struct cpuinfo_mips *c)
683{
684 unsigned int config3;
685
686 config3 = read_c0_config3();
687
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500688 if (config3 & MIPS_CONF3_SM) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100689 c->ases |= MIPS_ASE_SMARTMIPS;
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500690 c->options |= MIPS_CPU_RIXI;
691 }
692 if (config3 & MIPS_CONF3_RXI)
693 c->options |= MIPS_CPU_RIXI;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100694 if (config3 & MIPS_CONF3_DSP)
695 c->ases |= MIPS_ASE_DSP;
Zubair Lutfullah Kakakhelb5a64552016-03-29 15:50:25 +0100696 if (config3 & MIPS_CONF3_DSP2P) {
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500697 c->ases |= MIPS_ASE_DSP2P;
Zubair Lutfullah Kakakhelb5a64552016-03-29 15:50:25 +0100698 if (cpu_has_mips_r6)
699 c->ases |= MIPS_ASE_DSP3;
700 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100701 if (config3 & MIPS_CONF3_VINT)
702 c->options |= MIPS_CPU_VINT;
703 if (config3 & MIPS_CONF3_VEIC)
704 c->options |= MIPS_CPU_VEIC;
James Hogan12822572016-04-19 09:24:59 +0100705 if (config3 & MIPS_CONF3_LPA)
706 c->options |= MIPS_CPU_LPA;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100707 if (config3 & MIPS_CONF3_MT)
708 c->ases |= MIPS_ASE_MIPSMT;
709 if (config3 & MIPS_CONF3_ULRI)
710 c->options |= MIPS_CPU_ULRI;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000711 if (config3 & MIPS_CONF3_ISA)
712 c->options |= MIPS_CPU_MICROMIPS;
David Daney1e7decd2013-02-16 23:42:43 +0100713 if (config3 & MIPS_CONF3_VZ)
714 c->ases |= MIPS_ASE_VZ;
Steven J. Hill4a0156f2013-11-14 16:12:24 +0000715 if (config3 & MIPS_CONF3_SC)
716 c->options |= MIPS_CPU_SEGMENTS;
Paul Burtona5e9a692014-01-27 15:23:10 +0000717 if (config3 & MIPS_CONF3_MSA)
718 c->ases |= MIPS_ASE_MSA;
Paul Burtoncab25bc2015-09-22 12:03:37 -0700719 if (config3 & MIPS_CONF3_PW) {
Markos Chandrased4cbc82015-01-26 13:04:33 +0000720 c->htw_seq = 0;
Markos Chandras3d528b32014-07-14 12:46:13 +0100721 c->options |= MIPS_CPU_HTW;
Markos Chandrased4cbc82015-01-26 13:04:33 +0000722 }
James Hogan9b3274b2015-02-02 11:45:08 +0000723 if (config3 & MIPS_CONF3_CDMM)
724 c->options |= MIPS_CPU_CDMM;
James Hoganaaa7be42015-07-15 16:17:44 +0100725 if (config3 & MIPS_CONF3_SP)
726 c->options |= MIPS_CPU_SP;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100727
728 return config3 & MIPS_CONF_M;
729}
730
731static inline unsigned int decode_config4(struct cpuinfo_mips *c)
732{
733 unsigned int config4;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000734 unsigned int newcf4;
735 unsigned int mmuextdef;
736 unsigned int ftlb_page = MIPS_CONF4_FTLBPAGESIZE;
Paul Burton2db003a2016-05-06 14:36:24 +0100737 unsigned long asid_mask;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100738
739 config4 = read_c0_config4();
740
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000741 if (cpu_has_tlb) {
742 if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
743 c->options |= MIPS_CPU_TLBINV;
James Hogan43d104d2015-09-17 17:49:21 +0100744
Markos Chandrase87569c2015-07-09 10:40:52 +0100745 /*
James Hogan43d104d2015-09-17 17:49:21 +0100746 * R6 has dropped the MMUExtDef field from config4.
747 * On R6 the fields always describe the FTLB, and only if it is
748 * present according to Config.MT.
Markos Chandrase87569c2015-07-09 10:40:52 +0100749 */
James Hogan43d104d2015-09-17 17:49:21 +0100750 if (!cpu_has_mips_r6)
751 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
752 else if (cpu_has_ftlb)
Markos Chandrase87569c2015-07-09 10:40:52 +0100753 mmuextdef = MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT;
754 else
James Hogan43d104d2015-09-17 17:49:21 +0100755 mmuextdef = 0;
Markos Chandrase87569c2015-07-09 10:40:52 +0100756
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000757 switch (mmuextdef) {
758 case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
759 c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
760 c->tlbsizevtlb = c->tlbsize;
761 break;
762 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT:
763 c->tlbsizevtlb +=
764 ((config4 & MIPS_CONF4_VTLBSIZEEXT) >>
765 MIPS_CONF4_VTLBSIZEEXT_SHIFT) * 0x40;
766 c->tlbsize = c->tlbsizevtlb;
767 ftlb_page = MIPS_CONF4_VFTLBPAGESIZE;
768 /* fall through */
769 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT:
Markos Chandras97f4ad22014-08-29 09:37:26 +0100770 if (mips_ftlb_disabled)
771 break;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000772 newcf4 = (config4 & ~ftlb_page) |
773 (page_size_ftlb(mmuextdef) <<
774 MIPS_CONF4_FTLBPAGESIZE_SHIFT);
775 write_c0_config4(newcf4);
776 back_to_back_c0_hazard();
777 config4 = read_c0_config4();
778 if (config4 != newcf4) {
779 pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
780 PAGE_SIZE, config4);
781 /* Switch FTLB off */
782 set_ftlb_enable(c, 0);
783 break;
784 }
785 c->tlbsizeftlbsets = 1 <<
786 ((config4 & MIPS_CONF4_FTLBSETS) >>
787 MIPS_CONF4_FTLBSETS_SHIFT);
788 c->tlbsizeftlbways = ((config4 & MIPS_CONF4_FTLBWAYS) >>
789 MIPS_CONF4_FTLBWAYS_SHIFT) + 2;
790 c->tlbsize += c->tlbsizeftlbways * c->tlbsizeftlbsets;
Markos Chandras97f4ad22014-08-29 09:37:26 +0100791 mips_has_ftlb_configured = 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000792 break;
793 }
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000794 }
795
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100796 c->kscratch_mask = (config4 >> 16) & 0xff;
797
Paul Burton2db003a2016-05-06 14:36:24 +0100798 asid_mask = MIPS_ENTRYHI_ASID;
799 if (config4 & MIPS_CONF4_AE)
800 asid_mask |= MIPS_ENTRYHI_ASIDX;
801 set_cpu_asid_mask(c, asid_mask);
802
803 /*
804 * Warn if the computed ASID mask doesn't match the mask the kernel
805 * is built for. This may indicate either a serious problem or an
806 * easy optimisation opportunity, but either way should be addressed.
807 */
808 WARN_ON(asid_mask != cpu_asid_mask(c));
809
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100810 return config4 & MIPS_CONF_M;
811}
812
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200813static inline unsigned int decode_config5(struct cpuinfo_mips *c)
814{
815 unsigned int config5;
816
817 config5 = read_c0_config5();
Paul Burtond175ed22014-09-11 08:30:19 +0100818 config5 &= ~(MIPS_CONF5_UFR | MIPS_CONF5_UFE);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200819 write_c0_config5(config5);
820
Markos Chandras49016742014-01-09 16:04:51 +0000821 if (config5 & MIPS_CONF5_EVA)
822 c->options |= MIPS_CPU_EVA;
Paul Burton1f6c52f2014-07-14 10:32:14 +0100823 if (config5 & MIPS_CONF5_MRP)
824 c->options |= MIPS_CPU_MAAR;
Markos Chandras5aed9da2014-12-02 09:46:19 +0000825 if (config5 & MIPS_CONF5_LLB)
826 c->options |= MIPS_CPU_RW_LLB;
Steven J. Hillc5b36782015-02-26 18:16:38 -0600827#ifdef CONFIG_XPA
828 if (config5 & MIPS_CONF5_MVH)
829 c->options |= MIPS_CPU_XPA;
830#endif
Paul Burtonf270d882016-02-03 03:15:21 +0000831 if (cpu_has_mips_r6 && (config5 & MIPS_CONF5_VP))
832 c->options |= MIPS_CPU_VP;
Markos Chandras49016742014-01-09 16:04:51 +0000833
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200834 return config5 & MIPS_CONF_M;
835}
836
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000837static void decode_configs(struct cpuinfo_mips *c)
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100838{
839 int ok;
840
841 /* MIPS32 or MIPS64 compliant CPU. */
842 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
843 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
844
845 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
846
Markos Chandras97f4ad22014-08-29 09:37:26 +0100847 /* Enable FTLB if present and not disabled */
848 set_ftlb_enable(c, !mips_ftlb_disabled);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000849
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100850 ok = decode_config0(c); /* Read Config registers. */
Ralf Baechle70342282013-01-22 12:59:30 +0100851 BUG_ON(!ok); /* Arch spec violation! */
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100852 if (ok)
853 ok = decode_config1(c);
854 if (ok)
855 ok = decode_config2(c);
856 if (ok)
857 ok = decode_config3(c);
858 if (ok)
859 ok = decode_config4(c);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200860 if (ok)
861 ok = decode_config5(c);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100862
James Hogan37fb60f2016-05-11 13:50:50 +0100863 /* Probe the EBase.WG bit */
864 if (cpu_has_mips_r2_r6) {
865 u64 ebase;
866 unsigned int status;
867
868 /* {read,write}_c0_ebase_64() may be UNDEFINED prior to r6 */
869 ebase = cpu_has_mips64r6 ? read_c0_ebase_64()
870 : (s32)read_c0_ebase();
871 if (ebase & MIPS_EBASE_WG) {
872 /* WG bit already set, we can avoid the clumsy probe */
873 c->options |= MIPS_CPU_EBASE_WG;
874 } else {
875 /* Its UNDEFINED to change EBase while BEV=0 */
876 status = read_c0_status();
877 write_c0_status(status | ST0_BEV);
878 irq_enable_hazard();
879 /*
880 * On pre-r6 cores, this may well clobber the upper bits
881 * of EBase. This is hard to avoid without potentially
882 * hitting UNDEFINED dm*c0 behaviour if EBase is 32-bit.
883 */
884 if (cpu_has_mips64r6)
885 write_c0_ebase_64(ebase | MIPS_EBASE_WG);
886 else
887 write_c0_ebase(ebase | MIPS_EBASE_WG);
888 back_to_back_c0_hazard();
889 /* Restore BEV */
890 write_c0_status(status);
891 if (read_c0_ebase() & MIPS_EBASE_WG) {
892 c->options |= MIPS_CPU_EBASE_WG;
893 write_c0_ebase(ebase);
894 }
895 }
896 }
897
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100898 mips_probe_watch_registers(c);
899
Paul Burton0ee958e2014-01-15 10:31:53 +0000900#ifndef CONFIG_MIPS_CPS
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000901 if (cpu_has_mips_r2_r6) {
David Daney45b585c2014-05-28 23:52:10 +0200902 c->core = get_ebase_cpunum();
Paul Burton30ee6152014-03-27 10:57:30 +0000903 if (cpu_has_mipsmt)
904 c->core >>= fls(core_nvpes()) - 1;
905 }
Paul Burton0ee958e2014-01-15 10:31:53 +0000906#endif
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100907}
908
Ralf Baechle02cf2112005-10-01 13:06:32 +0100909#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 | MIPS_CPU_COUNTER)
911
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000912static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100914 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 case PRID_IMP_R2000:
916 c->cputype = CPU_R2000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000917 __cpu_name[cpu] = "R2000";
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100918 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100919 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500920 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (__cpu_has_fpu())
922 c->options |= MIPS_CPU_FPU;
923 c->tlbsize = 64;
924 break;
925 case PRID_IMP_R3000:
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100926 if ((c->processor_id & PRID_REV_MASK) == PRID_REV_R3000A) {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000927 if (cpu_has_confreg()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 c->cputype = CPU_R3081E;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000929 __cpu_name[cpu] = "R3081";
930 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 c->cputype = CPU_R3000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000932 __cpu_name[cpu] = "R3000A";
933 }
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000934 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 c->cputype = CPU_R3000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000936 __cpu_name[cpu] = "R3000";
937 }
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100938 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100939 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500940 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (__cpu_has_fpu())
942 c->options |= MIPS_CPU_FPU;
943 c->tlbsize = 64;
944 break;
945 case PRID_IMP_R4000:
946 if (read_c0_config() & CONF_SC) {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100947 if ((c->processor_id & PRID_REV_MASK) >=
948 PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 c->cputype = CPU_R4400PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000950 __cpu_name[cpu] = "R4400PC";
951 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 c->cputype = CPU_R4000PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000953 __cpu_name[cpu] = "R4000PC";
954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100956 int cca = read_c0_config() & CONF_CM_CMASK;
957 int mc;
958
959 /*
960 * SC and MC versions can't be reliably told apart,
961 * but only the latter support coherent caching
962 * modes so assume the firmware has set the KSEG0
963 * coherency attribute reasonably (if uncached, we
964 * assume SC).
965 */
966 switch (cca) {
967 case CONF_CM_CACHABLE_CE:
968 case CONF_CM_CACHABLE_COW:
969 case CONF_CM_CACHABLE_CUW:
970 mc = 1;
971 break;
972 default:
973 mc = 0;
974 break;
975 }
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100976 if ((c->processor_id & PRID_REV_MASK) >=
977 PRID_REV_R4400) {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100978 c->cputype = mc ? CPU_R4400MC : CPU_R4400SC;
979 __cpu_name[cpu] = mc ? "R4400MC" : "R4400SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000980 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100981 c->cputype = mc ? CPU_R4000MC : CPU_R4000SC;
982 __cpu_name[cpu] = mc ? "R4000MC" : "R4000SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
Steven J. Hilla96102b2012-12-07 04:31:36 +0000986 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100987 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500989 MIPS_CPU_WATCH | MIPS_CPU_VCE |
990 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 c->tlbsize = 48;
992 break;
993 case PRID_IMP_VR41XX:
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900994 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100995 c->fpu_msk31 |= FPU_CSR_CONDX;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900996 c->options = R4K_OPTS;
997 c->tlbsize = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 switch (c->processor_id & 0xf0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 case PRID_REV_VR4111:
1000 c->cputype = CPU_VR4111;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001001 __cpu_name[cpu] = "NEC VR4111";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 case PRID_REV_VR4121:
1004 c->cputype = CPU_VR4121;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001005 __cpu_name[cpu] = "NEC VR4121";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 break;
1007 case PRID_REV_VR4122:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001008 if ((c->processor_id & 0xf) < 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 c->cputype = CPU_VR4122;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001010 __cpu_name[cpu] = "NEC VR4122";
1011 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 c->cputype = CPU_VR4181A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001013 __cpu_name[cpu] = "NEC VR4181A";
1014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 break;
1016 case PRID_REV_VR4130:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001017 if ((c->processor_id & 0xf) < 0x4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 c->cputype = CPU_VR4131;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001019 __cpu_name[cpu] = "NEC VR4131";
1020 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 c->cputype = CPU_VR4133;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +09001022 c->options |= MIPS_CPU_LLSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001023 __cpu_name[cpu] = "NEC VR4133";
1024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026 default:
1027 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
1028 c->cputype = CPU_VR41XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001029 __cpu_name[cpu] = "NEC Vr41xx";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 break;
1033 case PRID_IMP_R4300:
1034 c->cputype = CPU_R4300;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001035 __cpu_name[cpu] = "R4300";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001036 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001037 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001039 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 c->tlbsize = 32;
1041 break;
1042 case PRID_IMP_R4600:
1043 c->cputype = CPU_R4600;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001044 __cpu_name[cpu] = "R4600";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001045 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001046 c->fpu_msk31 |= FPU_CSR_CONDX;
Thiemo Seufer075e7502005-07-27 21:48:12 +00001047 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1048 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 c->tlbsize = 48;
1050 break;
1051 #if 0
Steven J. Hill03751e72012-05-10 23:21:18 -05001052 case PRID_IMP_R4650:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /*
1054 * This processor doesn't have an MMU, so it's not
1055 * "real easy" to run Linux on it. It is left purely
1056 * for documentation. Commented out because it shares
1057 * it's c0_prid id number with the TX3900.
1058 */
Ralf Baechlea3dddd52006-03-11 08:18:41 +00001059 c->cputype = CPU_R4650;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001060 __cpu_name[cpu] = "R4650";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001061 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001062 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
Steven J. Hill03751e72012-05-10 23:21:18 -05001064 c->tlbsize = 48;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 break;
1066 #endif
1067 case PRID_IMP_TX39:
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001068 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +01001069 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
1072 c->cputype = CPU_TX3927;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001073 __cpu_name[cpu] = "TX3927";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 c->tlbsize = 64;
1075 } else {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001076 switch (c->processor_id & PRID_REV_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 case PRID_REV_TX3912:
1078 c->cputype = CPU_TX3912;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001079 __cpu_name[cpu] = "TX3912";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 c->tlbsize = 32;
1081 break;
1082 case PRID_REV_TX3922:
1083 c->cputype = CPU_TX3922;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001084 __cpu_name[cpu] = "TX3922";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 c->tlbsize = 64;
1086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 }
1089 break;
1090 case PRID_IMP_R4700:
1091 c->cputype = CPU_R4700;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001092 __cpu_name[cpu] = "R4700";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001093 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001094 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001096 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 c->tlbsize = 48;
1098 break;
1099 case PRID_IMP_TX49:
1100 c->cputype = CPU_TX49XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001101 __cpu_name[cpu] = "R49XX";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001102 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001103 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 c->options = R4K_OPTS | MIPS_CPU_LLSC;
1105 if (!(c->processor_id & 0x08))
1106 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
1107 c->tlbsize = 48;
1108 break;
1109 case PRID_IMP_R5000:
1110 c->cputype = CPU_R5000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001111 __cpu_name[cpu] = "R5000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001112 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001114 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 c->tlbsize = 48;
1116 break;
1117 case PRID_IMP_R5432:
1118 c->cputype = CPU_R5432;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001119 __cpu_name[cpu] = "R5432";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001120 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001122 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 c->tlbsize = 48;
1124 break;
1125 case PRID_IMP_R5500:
1126 c->cputype = CPU_R5500;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001127 __cpu_name[cpu] = "R5500";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001128 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001130 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 c->tlbsize = 48;
1132 break;
1133 case PRID_IMP_NEVADA:
1134 c->cputype = CPU_NEVADA;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001135 __cpu_name[cpu] = "Nevada";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001136 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001138 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 c->tlbsize = 48;
1140 break;
1141 case PRID_IMP_R6000:
1142 c->cputype = CPU_R6000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001143 __cpu_name[cpu] = "R6000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001144 set_isa(c, MIPS_CPU_ISA_II);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001145 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -05001147 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 c->tlbsize = 32;
1149 break;
1150 case PRID_IMP_R6000A:
1151 c->cputype = CPU_R6000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001152 __cpu_name[cpu] = "R6000A";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001153 set_isa(c, MIPS_CPU_ISA_II);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001154 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -05001156 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 c->tlbsize = 32;
1158 break;
1159 case PRID_IMP_RM7000:
1160 c->cputype = CPU_RM7000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001161 __cpu_name[cpu] = "RM7000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001162 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -05001164 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /*
Ralf Baechle70342282013-01-22 12:59:30 +01001166 * Undocumented RM7000: Bit 29 in the info register of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * the RM7000 v2.0 indicates if the TLB has 48 or 64
1168 * entries.
1169 *
Ralf Baechle70342282013-01-22 12:59:30 +01001170 * 29 1 => 64 entry JTLB
1171 * 0 => 48 entry JTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
1173 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
1174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 case PRID_IMP_R8000:
1176 c->cputype = CPU_R8000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001177 __cpu_name[cpu] = "RM8000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001178 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -05001180 MIPS_CPU_FPU | MIPS_CPU_32FPR |
1181 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
1183 break;
1184 case PRID_IMP_R10000:
1185 c->cputype = CPU_R10000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001186 __cpu_name[cpu] = "R10000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001187 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +00001188 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -05001189 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -05001191 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 c->tlbsize = 64;
1193 break;
1194 case PRID_IMP_R12000:
1195 c->cputype = CPU_R12000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001196 __cpu_name[cpu] = "R12000";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001197 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +00001198 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -05001199 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Joshua Kinard8d5ded12015-06-02 18:21:33 -04001201 MIPS_CPU_LLSC | MIPS_CPU_BP_GHIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 c->tlbsize = 64;
1203 break;
Kumba44d921b2006-05-16 22:23:59 -04001204 case PRID_IMP_R14000:
Joshua Kinard30577392015-01-21 07:59:45 -05001205 if (((c->processor_id >> 4) & 0x0f) > 2) {
1206 c->cputype = CPU_R16000;
1207 __cpu_name[cpu] = "R16000";
1208 } else {
1209 c->cputype = CPU_R14000;
1210 __cpu_name[cpu] = "R14000";
1211 }
Steven J. Hilla96102b2012-12-07 04:31:36 +00001212 set_isa(c, MIPS_CPU_ISA_IV);
Kumba44d921b2006-05-16 22:23:59 -04001213 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -05001214 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Kumba44d921b2006-05-16 22:23:59 -04001215 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Joshua Kinard8d5ded12015-06-02 18:21:33 -04001216 MIPS_CPU_LLSC | MIPS_CPU_BP_GHIST;
Kumba44d921b2006-05-16 22:23:59 -04001217 c->tlbsize = 64;
1218 break;
Huacai Chen26859192014-02-16 16:01:18 +08001219 case PRID_IMP_LOONGSON_64: /* Loongson-2/3 */
Robert Millan5aac1e82011-04-16 11:29:29 -07001220 switch (c->processor_id & PRID_REV_MASK) {
1221 case PRID_REV_LOONGSON2E:
Huacai Chenc579d312014-03-21 18:44:00 +08001222 c->cputype = CPU_LOONGSON2;
1223 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -07001224 set_elf_platform(cpu, "loongson2e");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001225 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001226 c->fpu_msk31 |= FPU_CSR_CONDX;
Robert Millan5aac1e82011-04-16 11:29:29 -07001227 break;
1228 case PRID_REV_LOONGSON2F:
Huacai Chenc579d312014-03-21 18:44:00 +08001229 c->cputype = CPU_LOONGSON2;
1230 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -07001231 set_elf_platform(cpu, "loongson2f");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001232 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001233 c->fpu_msk31 |= FPU_CSR_CONDX;
Robert Millan5aac1e82011-04-16 11:29:29 -07001234 break;
Huacai Chenb2edcfc2016-03-03 09:45:09 +08001235 case PRID_REV_LOONGSON3A_R1:
Huacai Chenc579d312014-03-21 18:44:00 +08001236 c->cputype = CPU_LOONGSON3;
1237 __cpu_name[cpu] = "ICT Loongson-3";
1238 set_elf_platform(cpu, "loongson3a");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001239 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chenc579d312014-03-21 18:44:00 +08001240 break;
Huacai Chene7841be2014-06-26 11:41:30 +08001241 case PRID_REV_LOONGSON3B_R1:
1242 case PRID_REV_LOONGSON3B_R2:
1243 c->cputype = CPU_LOONGSON3;
1244 __cpu_name[cpu] = "ICT Loongson-3";
1245 set_elf_platform(cpu, "loongson3b");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001246 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chene7841be2014-06-26 11:41:30 +08001247 break;
Robert Millan5aac1e82011-04-16 11:29:29 -07001248 }
1249
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001250 c->options = R4K_OPTS |
1251 MIPS_CPU_FPU | MIPS_CPU_LLSC |
1252 MIPS_CPU_32FPR;
1253 c->tlbsize = 64;
Huacai Chencc94ea32014-11-04 14:13:22 +08001254 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001255 break;
Huacai Chen26859192014-02-16 16:01:18 +08001256 case PRID_IMP_LOONGSON_32: /* Loongson-1 */
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001257 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001259 c->cputype = CPU_LOONGSON1;
Ralf Baechleb4672d32005-12-08 14:04:24 +00001260
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001261 switch (c->processor_id & PRID_REV_MASK) {
1262 case PRID_REV_LOONGSON1B:
1263 __cpu_name[cpu] = "Loongson 1B";
Ralf Baechleb4672d32005-12-08 14:04:24 +00001264 break;
Ralf Baechleb4672d32005-12-08 14:04:24 +00001265 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001266
Ralf Baechle41943182005-05-05 16:45:59 +00001267 break;
Ralf Baechle41943182005-05-05 16:45:59 +00001268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001271static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Markos Chandras4f12b912014-07-18 10:51:32 +01001273 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001274 switch (c->processor_id & PRID_IMP_MASK) {
Leonid Yegoshinb2498af2014-11-24 12:59:44 +00001275 case PRID_IMP_QEMU_GENERIC:
1276 c->writecombine = _CACHE_UNCACHED;
1277 c->cputype = CPU_QEMU_GENERIC;
1278 __cpu_name[cpu] = "MIPS GENERIC QEMU";
1279 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 case PRID_IMP_4KC:
1281 c->cputype = CPU_4KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001282 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001283 __cpu_name[cpu] = "MIPS 4Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 break;
1285 case PRID_IMP_4KEC:
Ralf Baechle2b07bd02005-04-08 20:36:05 +00001286 case PRID_IMP_4KECR2:
1287 c->cputype = CPU_4KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001288 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001289 __cpu_name[cpu] = "MIPS 4KEc";
Ralf Baechle2b07bd02005-04-08 20:36:05 +00001290 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 case PRID_IMP_4KSC:
Ralf Baechle8afcb5d2005-10-04 15:01:26 +01001292 case PRID_IMP_4KSD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 c->cputype = CPU_4KSC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001294 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001295 __cpu_name[cpu] = "MIPS 4KSc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 break;
1297 case PRID_IMP_5KC:
1298 c->cputype = CPU_5KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001299 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001300 __cpu_name[cpu] = "MIPS 5Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001302 case PRID_IMP_5KE:
1303 c->cputype = CPU_5KE;
Markos Chandras4f12b912014-07-18 10:51:32 +01001304 c->writecombine = _CACHE_UNCACHED;
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001305 __cpu_name[cpu] = "MIPS 5KE";
1306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 case PRID_IMP_20KC:
1308 c->cputype = CPU_20KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001309 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001310 __cpu_name[cpu] = "MIPS 20Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 break;
1312 case PRID_IMP_24K:
1313 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001314 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001315 __cpu_name[cpu] = "MIPS 24Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 break;
John Crispin42f3cae2013-01-11 22:44:10 +01001317 case PRID_IMP_24KE:
1318 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001319 c->writecombine = _CACHE_UNCACHED;
John Crispin42f3cae2013-01-11 22:44:10 +01001320 __cpu_name[cpu] = "MIPS 24KEc";
1321 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 case PRID_IMP_25KF:
1323 c->cputype = CPU_25KF;
Markos Chandras4f12b912014-07-18 10:51:32 +01001324 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001325 __cpu_name[cpu] = "MIPS 25Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
Ralf Baechlebbc7f222005-07-12 16:12:05 +00001327 case PRID_IMP_34K:
1328 c->cputype = CPU_34K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001329 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001330 __cpu_name[cpu] = "MIPS 34Kc";
Ralf Baechlebbc7f222005-07-12 16:12:05 +00001331 break;
Chris Dearmanc6209532006-05-02 14:08:46 +01001332 case PRID_IMP_74K:
1333 c->cputype = CPU_74K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001334 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001335 __cpu_name[cpu] = "MIPS 74Kc";
Chris Dearmanc6209532006-05-02 14:08:46 +01001336 break;
Steven J. Hill113c62d2012-07-06 23:56:00 +02001337 case PRID_IMP_M14KC:
1338 c->cputype = CPU_M14KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001339 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill113c62d2012-07-06 23:56:00 +02001340 __cpu_name[cpu] = "MIPS M14Kc";
1341 break;
Steven J. Hillf8fa4812012-12-07 03:51:35 +00001342 case PRID_IMP_M14KEC:
1343 c->cputype = CPU_M14KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001344 c->writecombine = _CACHE_UNCACHED;
Steven J. Hillf8fa4812012-12-07 03:51:35 +00001345 __cpu_name[cpu] = "MIPS M14KEc";
1346 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +01001347 case PRID_IMP_1004K:
1348 c->cputype = CPU_1004K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001349 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001350 __cpu_name[cpu] = "MIPS 1004Kc";
Ralf Baechle39b8d522008-04-28 17:14:26 +01001351 break;
Steven J. Hill006a8512012-06-26 04:11:03 +00001352 case PRID_IMP_1074K:
Steven J. Hill442e14a2014-01-17 15:03:50 -06001353 c->cputype = CPU_1074K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001354 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill006a8512012-06-26 04:11:03 +00001355 __cpu_name[cpu] = "MIPS 1074Kc";
1356 break;
Leonid Yegoshinb5f065e2013-11-20 10:46:02 +00001357 case PRID_IMP_INTERAPTIV_UP:
1358 c->cputype = CPU_INTERAPTIV;
1359 __cpu_name[cpu] = "MIPS interAptiv";
1360 break;
1361 case PRID_IMP_INTERAPTIV_MP:
1362 c->cputype = CPU_INTERAPTIV;
1363 __cpu_name[cpu] = "MIPS interAptiv (multi)";
1364 break;
Leonid Yegoshinb0d4d302013-11-14 16:12:28 +00001365 case PRID_IMP_PROAPTIV_UP:
1366 c->cputype = CPU_PROAPTIV;
1367 __cpu_name[cpu] = "MIPS proAptiv";
1368 break;
1369 case PRID_IMP_PROAPTIV_MP:
1370 c->cputype = CPU_PROAPTIV;
1371 __cpu_name[cpu] = "MIPS proAptiv (multi)";
1372 break;
James Hogan829dcc02014-01-22 16:19:39 +00001373 case PRID_IMP_P5600:
1374 c->cputype = CPU_P5600;
1375 __cpu_name[cpu] = "MIPS P5600";
1376 break;
Paul Burtoneba20a3a2016-02-03 03:26:39 +00001377 case PRID_IMP_P6600:
1378 c->cputype = CPU_P6600;
1379 __cpu_name[cpu] = "MIPS P6600";
1380 break;
Markos Chandrase57f9a22015-07-09 10:40:37 +01001381 case PRID_IMP_I6400:
1382 c->cputype = CPU_I6400;
1383 __cpu_name[cpu] = "MIPS I6400";
1384 break;
Leonid Yegoshin9943ed92014-03-04 13:34:44 +00001385 case PRID_IMP_M5150:
1386 c->cputype = CPU_M5150;
1387 __cpu_name[cpu] = "MIPS M5150";
1388 break;
Paul Burton43aff742016-02-03 16:17:30 +00001389 case PRID_IMP_M6250:
1390 c->cputype = CPU_M6250;
1391 __cpu_name[cpu] = "MIPS M6250";
1392 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
Chris Dearman0b6d4972007-09-13 12:32:02 +01001394
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001395 decode_configs(c);
1396
Chris Dearman0b6d4972007-09-13 12:32:02 +01001397 spram_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001400static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Ralf Baechle41943182005-05-05 16:45:59 +00001402 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001403 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 case PRID_IMP_AU1_REV1:
1405 case PRID_IMP_AU1_REV2:
Manuel Lauss270717a2009-03-25 17:49:28 +01001406 c->cputype = CPU_ALCHEMY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 switch ((c->processor_id >> 24) & 0xff) {
1408 case 0:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001409 __cpu_name[cpu] = "Au1000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 break;
1411 case 1:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001412 __cpu_name[cpu] = "Au1500";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414 case 2:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001415 __cpu_name[cpu] = "Au1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 break;
1417 case 3:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001418 __cpu_name[cpu] = "Au1550";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 break;
Pete Popove3ad1c22005-03-01 06:33:16 +00001420 case 4:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001421 __cpu_name[cpu] = "Au1200";
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001422 if ((c->processor_id & PRID_REV_MASK) == 2)
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001423 __cpu_name[cpu] = "Au1250";
Manuel Lauss237cfee2007-12-06 09:07:55 +01001424 break;
1425 case 5:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001426 __cpu_name[cpu] = "Au1210";
Pete Popove3ad1c22005-03-01 06:33:16 +00001427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 default:
Manuel Lauss270717a2009-03-25 17:49:28 +01001429 __cpu_name[cpu] = "Au1xxx";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 break;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 break;
1433 }
1434}
1435
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001436static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Ralf Baechle41943182005-05-05 16:45:59 +00001438 decode_configs(c);
Ralf Baechle02cf2112005-10-01 13:06:32 +01001439
Markos Chandras4f12b912014-07-18 10:51:32 +01001440 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001441 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 case PRID_IMP_SB1:
1443 c->cputype = CPU_SB1;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001444 __cpu_name[cpu] = "SiByte SB1";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /* FPU in pass1 is known to have issues. */
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001446 if ((c->processor_id & PRID_REV_MASK) < 0x02)
Ralf Baechle010b8532006-01-29 18:42:08 +00001447 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 break;
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001449 case PRID_IMP_SB1A:
1450 c->cputype = CPU_SB1A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001451 __cpu_name[cpu] = "SiByte SB1A";
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001452 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454}
1455
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001456static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Ralf Baechle41943182005-05-05 16:45:59 +00001458 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001459 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 case PRID_IMP_SR71000:
1461 c->cputype = CPU_SR71000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001462 __cpu_name[cpu] = "Sandcraft SR71000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 c->scache.ways = 8;
1464 c->tlbsize = 64;
1465 break;
1466 }
1467}
1468
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001469static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
Pete Popovbdf21b12005-07-14 17:47:57 +00001470{
1471 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001472 switch (c->processor_id & PRID_IMP_MASK) {
Pete Popovbdf21b12005-07-14 17:47:57 +00001473 case PRID_IMP_PR4450:
1474 c->cputype = CPU_PR4450;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001475 __cpu_name[cpu] = "Philips PR4450";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001476 set_isa(c, MIPS_CPU_ISA_M32R1);
Pete Popovbdf21b12005-07-14 17:47:57 +00001477 break;
Pete Popovbdf21b12005-07-14 17:47:57 +00001478 }
1479}
1480
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001481static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001482{
1483 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001484 switch (c->processor_id & PRID_IMP_MASK) {
Kevin Cernekee190fca32010-11-23 10:26:45 -08001485 case PRID_IMP_BMIPS32_REV4:
1486 case PRID_IMP_BMIPS32_REV8:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001487 c->cputype = CPU_BMIPS32;
1488 __cpu_name[cpu] = "Broadcom BMIPS32";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001489 set_elf_platform(cpu, "bmips32");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001490 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001491 case PRID_IMP_BMIPS3300:
1492 case PRID_IMP_BMIPS3300_ALT:
1493 case PRID_IMP_BMIPS3300_BUG:
1494 c->cputype = CPU_BMIPS3300;
1495 __cpu_name[cpu] = "Broadcom BMIPS3300";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001496 set_elf_platform(cpu, "bmips3300");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001497 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001498 case PRID_IMP_BMIPS43XX: {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001499 int rev = c->processor_id & PRID_REV_MASK;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001500
1501 if (rev >= PRID_REV_BMIPS4380_LO &&
1502 rev <= PRID_REV_BMIPS4380_HI) {
1503 c->cputype = CPU_BMIPS4380;
1504 __cpu_name[cpu] = "Broadcom BMIPS4380";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001505 set_elf_platform(cpu, "bmips4380");
Florian Fainellib4720802016-02-09 12:55:53 -08001506 c->options |= MIPS_CPU_RIXI;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001507 } else {
1508 c->cputype = CPU_BMIPS4350;
1509 __cpu_name[cpu] = "Broadcom BMIPS4350";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001510 set_elf_platform(cpu, "bmips4350");
Maxime Bizon0de663e2009-08-18 13:23:37 +01001511 }
1512 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001513 }
Kevin Cernekee602977b2010-10-16 14:22:30 -07001514 case PRID_IMP_BMIPS5000:
Kevin Cernekee68e6a782014-10-20 21:28:01 -07001515 case PRID_IMP_BMIPS5200:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001516 c->cputype = CPU_BMIPS5000;
Florian Fainelli37808d62016-04-04 10:55:38 -07001517 if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_BMIPS5200)
1518 __cpu_name[cpu] = "Broadcom BMIPS5200";
1519 else
1520 __cpu_name[cpu] = "Broadcom BMIPS5000";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001521 set_elf_platform(cpu, "bmips5000");
Florian Fainellib4720802016-02-09 12:55:53 -08001522 c->options |= MIPS_CPU_ULRI | MIPS_CPU_RIXI;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001523 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001524 }
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001525}
1526
David Daney0dd47812008-12-11 15:33:26 -08001527static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
1528{
1529 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001530 switch (c->processor_id & PRID_IMP_MASK) {
David Daney0dd47812008-12-11 15:33:26 -08001531 case PRID_IMP_CAVIUM_CN38XX:
1532 case PRID_IMP_CAVIUM_CN31XX:
1533 case PRID_IMP_CAVIUM_CN30XX:
David Daney6f329462010-02-10 15:12:48 -08001534 c->cputype = CPU_CAVIUM_OCTEON;
1535 __cpu_name[cpu] = "Cavium Octeon";
1536 goto platform;
David Daney0dd47812008-12-11 15:33:26 -08001537 case PRID_IMP_CAVIUM_CN58XX:
1538 case PRID_IMP_CAVIUM_CN56XX:
1539 case PRID_IMP_CAVIUM_CN50XX:
1540 case PRID_IMP_CAVIUM_CN52XX:
David Daney6f329462010-02-10 15:12:48 -08001541 c->cputype = CPU_CAVIUM_OCTEON_PLUS;
1542 __cpu_name[cpu] = "Cavium Octeon+";
1543platform:
Robert Millanc094c992011-04-18 11:37:55 -07001544 set_elf_platform(cpu, "octeon");
David Daney0dd47812008-12-11 15:33:26 -08001545 break;
David Daneya1431b62011-09-24 02:29:54 +02001546 case PRID_IMP_CAVIUM_CN61XX:
David Daney0e56b382010-10-07 16:03:45 -07001547 case PRID_IMP_CAVIUM_CN63XX:
David Daneya1431b62011-09-24 02:29:54 +02001548 case PRID_IMP_CAVIUM_CN66XX:
1549 case PRID_IMP_CAVIUM_CN68XX:
David Daneyaf04bb82013-07-29 15:07:01 -07001550 case PRID_IMP_CAVIUM_CNF71XX:
David Daney0e56b382010-10-07 16:03:45 -07001551 c->cputype = CPU_CAVIUM_OCTEON2;
1552 __cpu_name[cpu] = "Cavium Octeon II";
Robert Millanc094c992011-04-18 11:37:55 -07001553 set_elf_platform(cpu, "octeon2");
David Daney0e56b382010-10-07 16:03:45 -07001554 break;
David Daneyaf04bb82013-07-29 15:07:01 -07001555 case PRID_IMP_CAVIUM_CN70XX:
David Daneyb8c8f662016-02-01 14:43:41 -08001556 case PRID_IMP_CAVIUM_CN73XX:
1557 case PRID_IMP_CAVIUM_CNF75XX:
David Daneyaf04bb82013-07-29 15:07:01 -07001558 case PRID_IMP_CAVIUM_CN78XX:
1559 c->cputype = CPU_CAVIUM_OCTEON3;
1560 __cpu_name[cpu] = "Cavium Octeon III";
1561 set_elf_platform(cpu, "octeon3");
1562 break;
David Daney0dd47812008-12-11 15:33:26 -08001563 default:
1564 printk(KERN_INFO "Unknown Octeon chip!\n");
1565 c->cputype = CPU_UNKNOWN;
1566 break;
1567 }
1568}
1569
Huacai Chenb2edcfc2016-03-03 09:45:09 +08001570static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu)
1571{
1572 switch (c->processor_id & PRID_IMP_MASK) {
1573 case PRID_IMP_LOONGSON_64: /* Loongson-2/3 */
1574 switch (c->processor_id & PRID_REV_MASK) {
1575 case PRID_REV_LOONGSON3A_R2:
1576 c->cputype = CPU_LOONGSON3;
1577 __cpu_name[cpu] = "ICT Loongson-3";
1578 set_elf_platform(cpu, "loongson3a");
1579 set_isa(c, MIPS_CPU_ISA_M64R2);
1580 break;
1581 }
1582
1583 decode_configs(c);
Huacai Chen380cd582016-03-03 09:45:12 +08001584 c->options |= MIPS_CPU_TLBINV | MIPS_CPU_LDPTE;
Huacai Chenb2edcfc2016-03-03 09:45:09 +08001585 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
1586 break;
1587 default:
1588 panic("Unknown Loongson Processor ID!");
1589 break;
1590 }
1591}
1592
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001593static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
1594{
1595 decode_configs(c);
1596 /* JZRISC does not implement the CP0 counter. */
1597 c->options &= ~MIPS_CPU_COUNTER;
Maciej W. Rozycki06947aa2014-04-06 21:31:29 +01001598 BUG_ON(!__builtin_constant_p(cpu_has_counter) || cpu_has_counter);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001599 switch (c->processor_id & PRID_IMP_MASK) {
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001600 case PRID_IMP_JZRISC:
1601 c->cputype = CPU_JZRISC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001602 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001603 __cpu_name[cpu] = "Ingenic JZRISC";
1604 break;
1605 default:
1606 panic("Unknown Ingenic Processor ID!");
1607 break;
1608 }
1609}
1610
Jayachandran Ca7117c62011-05-11 12:04:58 +05301611static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
1612{
1613 decode_configs(c);
1614
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001615 if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_NETLOGIC_AU13XX) {
Manuel Lauss809f36c2011-11-01 20:03:30 +01001616 c->cputype = CPU_ALCHEMY;
1617 __cpu_name[cpu] = "Au1300";
1618 /* following stuff is not for Alchemy */
1619 return;
1620 }
1621
Ralf Baechle70342282013-01-22 12:59:30 +01001622 c->options = (MIPS_CPU_TLB |
1623 MIPS_CPU_4KEX |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301624 MIPS_CPU_COUNTER |
Ralf Baechle70342282013-01-22 12:59:30 +01001625 MIPS_CPU_DIVEC |
1626 MIPS_CPU_WATCH |
1627 MIPS_CPU_EJTAG |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301628 MIPS_CPU_LLSC);
1629
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001630 switch (c->processor_id & PRID_IMP_MASK) {
Jayachandran C4ca86a22013-08-11 14:43:54 +05301631 case PRID_IMP_NETLOGIC_XLP2XX:
Jayachandran C8907c552013-12-21 16:52:20 +05301632 case PRID_IMP_NETLOGIC_XLP9XX:
Yonghong Song1c983982014-04-29 20:07:53 +05301633 case PRID_IMP_NETLOGIC_XLP5XX:
Jayachandran C4ca86a22013-08-11 14:43:54 +05301634 c->cputype = CPU_XLP;
1635 __cpu_name[cpu] = "Broadcom XLPII";
1636 break;
1637
Jayachandran C2aa54b22011-11-16 00:21:29 +00001638 case PRID_IMP_NETLOGIC_XLP8XX:
1639 case PRID_IMP_NETLOGIC_XLP3XX:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001640 c->cputype = CPU_XLP;
1641 __cpu_name[cpu] = "Netlogic XLP";
1642 break;
1643
Jayachandran Ca7117c62011-05-11 12:04:58 +05301644 case PRID_IMP_NETLOGIC_XLR732:
1645 case PRID_IMP_NETLOGIC_XLR716:
1646 case PRID_IMP_NETLOGIC_XLR532:
1647 case PRID_IMP_NETLOGIC_XLR308:
1648 case PRID_IMP_NETLOGIC_XLR532C:
1649 case PRID_IMP_NETLOGIC_XLR516C:
1650 case PRID_IMP_NETLOGIC_XLR508C:
1651 case PRID_IMP_NETLOGIC_XLR308C:
1652 c->cputype = CPU_XLR;
1653 __cpu_name[cpu] = "Netlogic XLR";
1654 break;
1655
1656 case PRID_IMP_NETLOGIC_XLS608:
1657 case PRID_IMP_NETLOGIC_XLS408:
1658 case PRID_IMP_NETLOGIC_XLS404:
1659 case PRID_IMP_NETLOGIC_XLS208:
1660 case PRID_IMP_NETLOGIC_XLS204:
1661 case PRID_IMP_NETLOGIC_XLS108:
1662 case PRID_IMP_NETLOGIC_XLS104:
1663 case PRID_IMP_NETLOGIC_XLS616B:
1664 case PRID_IMP_NETLOGIC_XLS608B:
1665 case PRID_IMP_NETLOGIC_XLS416B:
1666 case PRID_IMP_NETLOGIC_XLS412B:
1667 case PRID_IMP_NETLOGIC_XLS408B:
1668 case PRID_IMP_NETLOGIC_XLS404B:
1669 c->cputype = CPU_XLR;
1670 __cpu_name[cpu] = "Netlogic XLS";
1671 break;
1672
1673 default:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001674 pr_info("Unknown Netlogic chip id [%02x]!\n",
Jayachandran Ca7117c62011-05-11 12:04:58 +05301675 c->processor_id);
1676 c->cputype = CPU_XLR;
1677 break;
1678 }
1679
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001680 if (c->cputype == CPU_XLP) {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001681 set_isa(c, MIPS_CPU_ISA_M64R2);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001682 c->options |= (MIPS_CPU_FPU | MIPS_CPU_ULRI | MIPS_CPU_MCHECK);
1683 /* This will be updated again after all threads are woken up */
1684 c->tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
1685 } else {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001686 set_isa(c, MIPS_CPU_ISA_M64R1);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001687 c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
1688 }
Jayachandran C7777b932013-06-11 14:41:35 +00001689 c->kscratch_mask = 0xf;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301690}
1691
David Daney949e51b2010-10-14 11:32:33 -07001692#ifdef CONFIG_64BIT
1693/* For use by uaccess.h */
1694u64 __ua_limit;
1695EXPORT_SYMBOL(__ua_limit);
1696#endif
1697
Ralf Baechle9966db252007-10-11 23:46:17 +01001698const char *__cpu_name[NR_CPUS];
David Daney874fd3b2010-01-28 16:52:12 -08001699const char *__elf_platform;
Ralf Baechle9966db252007-10-11 23:46:17 +01001700
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001701void cpu_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
1703 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle9966db252007-10-11 23:46:17 +01001704 unsigned int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Ralf Baechle70342282013-01-22 12:59:30 +01001706 c->processor_id = PRID_IMP_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 c->fpu_id = FPIR_IMP_NONE;
1708 c->cputype = CPU_UNKNOWN;
Markos Chandras4f12b912014-07-18 10:51:32 +01001709 c->writecombine = _CACHE_UNCACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001711 c->fpu_csr31 = FPU_CSR_RN;
1712 c->fpu_msk31 = FPU_CSR_RSVD | FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 c->processor_id = read_c0_prid();
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001715 switch (c->processor_id & PRID_COMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 case PRID_COMP_LEGACY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001717 cpu_probe_legacy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 break;
1719 case PRID_COMP_MIPS:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001720 cpu_probe_mips(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 break;
1722 case PRID_COMP_ALCHEMY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001723 cpu_probe_alchemy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 break;
1725 case PRID_COMP_SIBYTE:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001726 cpu_probe_sibyte(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001728 case PRID_COMP_BROADCOM:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001729 cpu_probe_broadcom(c, cpu);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 case PRID_COMP_SANDCRAFT:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001732 cpu_probe_sandcraft(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 break;
Daniel Lairda92b0582008-03-06 09:07:18 +00001734 case PRID_COMP_NXP:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001735 cpu_probe_nxp(c, cpu);
Ralf Baechlea3dddd52006-03-11 08:18:41 +00001736 break;
David Daney0dd47812008-12-11 15:33:26 -08001737 case PRID_COMP_CAVIUM:
1738 cpu_probe_cavium(c, cpu);
1739 break;
Huacai Chenb2edcfc2016-03-03 09:45:09 +08001740 case PRID_COMP_LOONGSON:
1741 cpu_probe_loongson(c, cpu);
1742 break;
Paul Burton252617a2015-05-24 16:11:14 +01001743 case PRID_COMP_INGENIC_D0:
1744 case PRID_COMP_INGENIC_D1:
1745 case PRID_COMP_INGENIC_E1:
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001746 cpu_probe_ingenic(c, cpu);
1747 break;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301748 case PRID_COMP_NETLOGIC:
1749 cpu_probe_netlogic(c, cpu);
1750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001752
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001753 BUG_ON(!__cpu_name[cpu]);
1754 BUG_ON(c->cputype == CPU_UNKNOWN);
1755
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001756 /*
1757 * Platform code can force the cpu type to optimize code
1758 * generation. In that case be sure the cpu type is correctly
1759 * manually setup otherwise it could trigger some nasty bugs.
1760 */
1761 BUG_ON(current_cpu_type() != c->cputype);
1762
Florian Fainelli2e274762016-02-09 12:55:52 -08001763 if (cpu_has_rixi) {
1764 /* Enable the RIXI exceptions */
1765 set_c0_pagegrain(PG_IEC);
1766 back_to_back_c0_hazard();
1767 /* Verify the IEC bit is set */
1768 if (read_c0_pagegrain() & PG_IEC)
1769 c->options |= MIPS_CPU_RIXIEX;
1770 }
1771
Kevin Cernekee0103d232010-05-02 14:43:52 -07001772 if (mips_fpu_disabled)
1773 c->options &= ~MIPS_CPU_FPU;
1774
1775 if (mips_dsp_disabled)
Steven J. Hillee80f7c72012-08-03 10:26:04 -05001776 c->ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -07001777
Markos Chandras3d528b32014-07-14 12:46:13 +01001778 if (mips_htw_disabled) {
1779 c->options &= ~MIPS_CPU_HTW;
1780 write_c0_pwctl(read_c0_pwctl() &
1781 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
1782 }
1783
Maciej W. Rozycki7aecd5ca2015-04-03 23:27:54 +01001784 if (c->options & MIPS_CPU_FPU)
1785 cpu_set_fpu_opts(c);
1786 else
1787 cpu_set_nofpu_opts(c);
Ralf Baechle9966db252007-10-11 23:46:17 +01001788
Joshua Kinard8d5ded12015-06-02 18:21:33 -04001789 if (cpu_has_bp_ghist)
1790 write_c0_r10k_diag(read_c0_r10k_diag() |
1791 R10K_DIAG_E_GHIST);
1792
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +00001793 if (cpu_has_mips_r2_r6) {
Ralf Baechlef6771db2007-11-08 18:02:29 +00001794 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Al Cooperda4b62c2012-07-13 16:44:51 -04001795 /* R2 has Performance Counter Interrupt indicator */
1796 c->options |= MIPS_CPU_PCI;
1797 }
Ralf Baechlef6771db2007-11-08 18:02:29 +00001798 else
1799 c->srsets = 1;
Guenter Roeck91dfc422010-02-02 08:52:20 -08001800
Paul Burton4c063032015-07-27 12:58:24 -07001801 if (cpu_has_mips_r6)
1802 elf_hwcap |= HWCAP_MIPS_R6;
1803
Paul Burtona8ad1362014-01-28 14:28:43 +00001804 if (cpu_has_msa) {
Paul Burtona5e9a692014-01-27 15:23:10 +00001805 c->msa_id = cpu_get_msa_id();
Paul Burtona8ad1362014-01-28 14:28:43 +00001806 WARN(c->msa_id & MSA_IR_WRPF,
1807 "Vector register partitioning unimplemented!");
Paul Burton3cc9fa72015-07-27 12:58:25 -07001808 elf_hwcap |= HWCAP_MIPS_MSA;
Paul Burtona8ad1362014-01-28 14:28:43 +00001809 }
Paul Burtona5e9a692014-01-27 15:23:10 +00001810
Guenter Roeck91dfc422010-02-02 08:52:20 -08001811 cpu_probe_vmbits(c);
David Daney949e51b2010-10-14 11:32:33 -07001812
1813#ifdef CONFIG_64BIT
1814 if (cpu == 0)
1815 __ua_limit = ~((1ull << cpu_vmbits) - 1);
1816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001819void cpu_report(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 struct cpuinfo_mips *c = &current_cpu_data;
1822
Leonid Yegoshind9f897c2013-10-07 10:43:32 +01001823 pr_info("CPU%d revision is: %08x (%s)\n",
1824 smp_processor_id(), c->processor_id, cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (c->options & MIPS_CPU_FPU)
Ralf Baechle9966db252007-10-11 23:46:17 +01001826 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
Paul Burtona5e9a692014-01-27 15:23:10 +00001827 if (cpu_has_msa)
1828 pr_info("MSA revision is: %08x\n", c->msa_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}