blob: b6c1feed8b7b6edc4a451a0f6376f2859511472a [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. Rozycki7aecd5c2015-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. Rozyckif6843622015-04-03 23:27:26 +0100102 * Set the FIR feature flags for the FPU emulator.
103 */
104static void cpu_set_nofpu_id(struct cpuinfo_mips *c)
105{
106 u32 value;
107
108 value = 0;
109 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
110 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
111 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6))
112 value |= MIPS_FPIR_D | MIPS_FPIR_S;
113 if (c->isa_level & (MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
114 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6))
115 value |= MIPS_FPIR_F64 | MIPS_FPIR_L | MIPS_FPIR_W;
116 c->fpu_id = value;
117}
118
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100119/* Determined FPU emulator mask to use for the boot CPU with "nofpu". */
120static unsigned int mips_nofpu_msk31;
121
Maciej W. Rozycki7aecd5c2015-04-03 23:27:54 +0100122/*
123 * Set options for FPU hardware.
124 */
125static void cpu_set_fpu_opts(struct cpuinfo_mips *c)
126{
127 c->fpu_id = cpu_get_fpu_id();
128 mips_nofpu_msk31 = c->fpu_msk31;
129
130 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1 |
131 MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2 |
132 MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6)) {
133 if (c->fpu_id & MIPS_FPIR_3D)
134 c->ases |= MIPS_ASE_MIPS3D;
135 if (c->fpu_id & MIPS_FPIR_FREP)
136 c->options |= MIPS_CPU_FRE;
137 }
138
139 cpu_set_fpu_fcsr_mask(c);
140}
141
142/*
143 * Set options for the FPU emulator.
144 */
145static void cpu_set_nofpu_opts(struct cpuinfo_mips *c)
146{
147 c->options &= ~MIPS_CPU_FPU;
148 c->fpu_msk31 = mips_nofpu_msk31;
149
150 cpu_set_nofpu_id(c);
151}
152
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000153static int mips_fpu_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -0700154
155static int __init fpu_disable(char *s)
156{
Maciej W. Rozycki7aecd5c2015-04-03 23:27:54 +0100157 cpu_set_nofpu_opts(&boot_cpu_data);
Kevin Cernekee0103d232010-05-02 14:43:52 -0700158 mips_fpu_disabled = 1;
159
160 return 1;
161}
162
163__setup("nofpu", fpu_disable);
164
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000165int mips_dsp_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -0700166
167static int __init dsp_disable(char *s)
168{
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500169 cpu_data[0].ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -0700170 mips_dsp_disabled = 1;
171
172 return 1;
173}
174
175__setup("nodsp", dsp_disable);
176
Markos Chandras3d528b32014-07-14 12:46:13 +0100177static int mips_htw_disabled;
178
179static int __init htw_disable(char *s)
180{
181 mips_htw_disabled = 1;
182 cpu_data[0].options &= ~MIPS_CPU_HTW;
183 write_c0_pwctl(read_c0_pwctl() &
184 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
185
186 return 1;
187}
188
189__setup("nohtw", htw_disable);
190
Markos Chandras97f4ad22014-08-29 09:37:26 +0100191static int mips_ftlb_disabled;
192static int mips_has_ftlb_configured;
193
Markos Chandras912708c2015-07-09 10:40:51 +0100194static int set_ftlb_enable(struct cpuinfo_mips *c, int enable);
Markos Chandras97f4ad22014-08-29 09:37:26 +0100195
196static int __init ftlb_disable(char *s)
197{
198 unsigned int config4, mmuextdef;
199
200 /*
201 * If the core hasn't done any FTLB configuration, there is nothing
202 * for us to do here.
203 */
204 if (!mips_has_ftlb_configured)
205 return 1;
206
207 /* Disable it in the boot cpu */
Markos Chandras912708c2015-07-09 10:40:51 +0100208 if (set_ftlb_enable(&cpu_data[0], 0)) {
209 pr_warn("Can't turn FTLB off\n");
210 return 1;
211 }
Markos Chandras97f4ad22014-08-29 09:37:26 +0100212
213 back_to_back_c0_hazard();
214
215 config4 = read_c0_config4();
216
217 /* Check that FTLB has been disabled */
218 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
219 /* MMUSIZEEXT == VTLB ON, FTLB OFF */
220 if (mmuextdef == MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT) {
221 /* This should never happen */
222 pr_warn("FTLB could not be disabled!\n");
223 return 1;
224 }
225
226 mips_ftlb_disabled = 1;
227 mips_has_ftlb_configured = 0;
228
229 /*
230 * noftlb is mainly used for debug purposes so print
231 * an informative message instead of using pr_debug()
232 */
233 pr_info("FTLB has been disabled\n");
234
235 /*
236 * Some of these bits are duplicated in the decode_config4.
237 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
238 * once FTLB has been disabled so undo what decode_config4 did.
239 */
240 cpu_data[0].tlbsize -= cpu_data[0].tlbsizeftlbways *
241 cpu_data[0].tlbsizeftlbsets;
242 cpu_data[0].tlbsizeftlbsets = 0;
243 cpu_data[0].tlbsizeftlbways = 0;
244
245 return 1;
246}
247
248__setup("noftlb", ftlb_disable);
249
250
Marc St-Jean9267a302007-06-14 15:55:31 -0600251static inline void check_errata(void)
252{
253 struct cpuinfo_mips *c = &current_cpu_data;
254
Ralf Baechle69f24d12013-09-17 10:25:47 +0200255 switch (current_cpu_type()) {
Marc St-Jean9267a302007-06-14 15:55:31 -0600256 case CPU_34K:
257 /*
258 * Erratum "RPS May Cause Incorrect Instruction Execution"
Ralf Baechleb633648c52014-05-23 16:29:44 +0200259 * This code only handles VPE0, any SMP/RTOS code
Marc St-Jean9267a302007-06-14 15:55:31 -0600260 * making use of VPE1 will be responsable for that VPE.
261 */
262 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
263 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
264 break;
265 default:
266 break;
267 }
268}
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270void __init check_bugs32(void)
271{
Marc St-Jean9267a302007-06-14 15:55:31 -0600272 check_errata();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
275/*
276 * Probe whether cpu has config register by trying to play with
277 * alternate cache bit and see whether it matters.
278 * It's used by cpu_probe to distinguish between R3000A and R3081.
279 */
280static inline int cpu_has_confreg(void)
281{
282#ifdef CONFIG_CPU_R3000
283 extern unsigned long r3k_cache_size(unsigned long);
284 unsigned long size1, size2;
285 unsigned long cfg = read_c0_conf();
286
287 size1 = r3k_cache_size(ST0_ISC);
288 write_c0_conf(cfg ^ R30XX_CONF_AC);
289 size2 = r3k_cache_size(ST0_ISC);
290 write_c0_conf(cfg);
291 return size1 != size2;
292#else
293 return 0;
294#endif
295}
296
Robert Millanc094c992011-04-18 11:37:55 -0700297static inline void set_elf_platform(int cpu, const char *plat)
298{
299 if (cpu == 0)
300 __elf_platform = plat;
301}
302
Guenter Roeck91dfc422010-02-02 08:52:20 -0800303static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
304{
305#ifdef __NEED_VMBITS_PROBE
David Daney5b7efa82010-02-08 12:27:00 -0800306 write_c0_entryhi(0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800307 back_to_back_c0_hazard();
David Daney5b7efa82010-02-08 12:27:00 -0800308 c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800309#endif
310}
311
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000312static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
Steven J. Hilla96102b2012-12-07 04:31:36 +0000313{
314 switch (isa) {
315 case MIPS_CPU_ISA_M64R2:
316 c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
317 case MIPS_CPU_ISA_M64R1:
318 c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
319 case MIPS_CPU_ISA_V:
320 c->isa_level |= MIPS_CPU_ISA_V;
321 case MIPS_CPU_ISA_IV:
322 c->isa_level |= MIPS_CPU_ISA_IV;
323 case MIPS_CPU_ISA_III:
Ralf Baechle1990e542013-06-26 17:06:34 +0200324 c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000325 break;
326
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000327 /* R6 incompatible with everything else */
328 case MIPS_CPU_ISA_M64R6:
329 c->isa_level |= MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6;
330 case MIPS_CPU_ISA_M32R6:
331 c->isa_level |= MIPS_CPU_ISA_M32R6;
332 /* Break here so we don't add incompatible ISAs */
333 break;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000334 case MIPS_CPU_ISA_M32R2:
335 c->isa_level |= MIPS_CPU_ISA_M32R2;
336 case MIPS_CPU_ISA_M32R1:
337 c->isa_level |= MIPS_CPU_ISA_M32R1;
338 case MIPS_CPU_ISA_II:
339 c->isa_level |= MIPS_CPU_ISA_II;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000340 break;
341 }
342}
343
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000344static char unknown_isa[] = KERN_ERR \
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100345 "Unsupported ISA type, c0.config0: %d.";
346
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000347static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c)
348{
349
350 unsigned int probability = c->tlbsize / c->tlbsizevtlb;
351
352 /*
353 * 0 = All TLBWR instructions go to FTLB
354 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
355 * FTLB and 1 goes to the VTLB.
356 * 2 = 7:1: As above with 7:1 ratio.
357 * 3 = 3:1: As above with 3:1 ratio.
358 *
359 * Use the linear midpoint as the probability threshold.
360 */
361 if (probability >= 12)
362 return 1;
363 else if (probability >= 6)
364 return 2;
365 else
366 /*
367 * So FTLB is less than 4 times bigger than VTLB.
368 * A 3:1 ratio can still be useful though.
369 */
370 return 3;
371}
372
Markos Chandras912708c2015-07-09 10:40:51 +0100373static int set_ftlb_enable(struct cpuinfo_mips *c, int enable)
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000374{
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100375 unsigned int config;
James Hogand83b0e82014-01-22 16:19:40 +0000376
377 /* It's implementation dependent how the FTLB can be enabled */
378 switch (c->cputype) {
379 case CPU_PROAPTIV:
380 case CPU_P5600:
381 /* proAptiv & related cores use Config6 to enable the FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100382 config = read_c0_config6();
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000383 /* Clear the old probability value */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100384 config &= ~(3 << MIPS_CONF6_FTLBP_SHIFT);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000385 if (enable)
386 /* Enable FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100387 write_c0_config6(config |
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000388 (calculate_ftlb_probability(c)
389 << MIPS_CONF6_FTLBP_SHIFT)
390 | MIPS_CONF6_FTLBEN);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000391 else
392 /* Disable FTLB */
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100393 write_c0_config6(config & ~MIPS_CONF6_FTLBEN);
394 break;
395 case CPU_I6400:
396 /* I6400 & related cores use Config7 to configure FTLB */
397 config = read_c0_config7();
398 /* Clear the old probability value */
399 config &= ~(3 << MIPS_CONF7_FTLBP_SHIFT);
400 write_c0_config7(config | (calculate_ftlb_probability(c)
401 << MIPS_CONF7_FTLBP_SHIFT));
James Hogand83b0e82014-01-22 16:19:40 +0000402 break;
Markos Chandras912708c2015-07-09 10:40:51 +0100403 default:
404 return 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000405 }
Markos Chandras912708c2015-07-09 10:40:51 +0100406
407 return 0;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000408}
409
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100410static inline unsigned int decode_config0(struct cpuinfo_mips *c)
411{
412 unsigned int config0;
413 int isa;
414
415 config0 = read_c0_config();
416
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000417 /*
418 * Look for Standard TLB or Dual VTLB and FTLB
419 */
420 if ((((config0 & MIPS_CONF_MT) >> 7) == 1) ||
421 (((config0 & MIPS_CONF_MT) >> 7) == 4))
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100422 c->options |= MIPS_CPU_TLB;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000423
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100424 isa = (config0 & MIPS_CONF_AT) >> 13;
425 switch (isa) {
426 case 0:
427 switch ((config0 & MIPS_CONF_AR) >> 10) {
428 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000429 set_isa(c, MIPS_CPU_ISA_M32R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100430 break;
431 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000432 set_isa(c, MIPS_CPU_ISA_M32R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100433 break;
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000434 case 2:
435 set_isa(c, MIPS_CPU_ISA_M32R6);
436 break;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100437 default:
438 goto unknown;
439 }
440 break;
441 case 2:
442 switch ((config0 & MIPS_CONF_AR) >> 10) {
443 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000444 set_isa(c, MIPS_CPU_ISA_M64R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100445 break;
446 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000447 set_isa(c, MIPS_CPU_ISA_M64R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100448 break;
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000449 case 2:
450 set_isa(c, MIPS_CPU_ISA_M64R6);
451 break;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100452 default:
453 goto unknown;
454 }
455 break;
456 default:
457 goto unknown;
458 }
459
460 return config0 & MIPS_CONF_M;
461
462unknown:
463 panic(unknown_isa, config0);
464}
465
466static inline unsigned int decode_config1(struct cpuinfo_mips *c)
467{
468 unsigned int config1;
469
470 config1 = read_c0_config1();
471
472 if (config1 & MIPS_CONF1_MD)
473 c->ases |= MIPS_ASE_MDMX;
474 if (config1 & MIPS_CONF1_WR)
475 c->options |= MIPS_CPU_WATCH;
476 if (config1 & MIPS_CONF1_CA)
477 c->ases |= MIPS_ASE_MIPS16;
478 if (config1 & MIPS_CONF1_EP)
479 c->options |= MIPS_CPU_EJTAG;
480 if (config1 & MIPS_CONF1_FP) {
481 c->options |= MIPS_CPU_FPU;
482 c->options |= MIPS_CPU_32FPR;
483 }
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000484 if (cpu_has_tlb) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100485 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000486 c->tlbsizevtlb = c->tlbsize;
487 c->tlbsizeftlbsets = 0;
488 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100489
490 return config1 & MIPS_CONF_M;
491}
492
493static inline unsigned int decode_config2(struct cpuinfo_mips *c)
494{
495 unsigned int config2;
496
497 config2 = read_c0_config2();
498
499 if (config2 & MIPS_CONF2_SL)
500 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
501
502 return config2 & MIPS_CONF_M;
503}
504
505static inline unsigned int decode_config3(struct cpuinfo_mips *c)
506{
507 unsigned int config3;
508
509 config3 = read_c0_config3();
510
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500511 if (config3 & MIPS_CONF3_SM) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100512 c->ases |= MIPS_ASE_SMARTMIPS;
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500513 c->options |= MIPS_CPU_RIXI;
514 }
515 if (config3 & MIPS_CONF3_RXI)
516 c->options |= MIPS_CPU_RIXI;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100517 if (config3 & MIPS_CONF3_DSP)
518 c->ases |= MIPS_ASE_DSP;
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500519 if (config3 & MIPS_CONF3_DSP2P)
520 c->ases |= MIPS_ASE_DSP2P;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100521 if (config3 & MIPS_CONF3_VINT)
522 c->options |= MIPS_CPU_VINT;
523 if (config3 & MIPS_CONF3_VEIC)
524 c->options |= MIPS_CPU_VEIC;
525 if (config3 & MIPS_CONF3_MT)
526 c->ases |= MIPS_ASE_MIPSMT;
527 if (config3 & MIPS_CONF3_ULRI)
528 c->options |= MIPS_CPU_ULRI;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000529 if (config3 & MIPS_CONF3_ISA)
530 c->options |= MIPS_CPU_MICROMIPS;
David Daney1e7decd2013-02-16 23:42:43 +0100531 if (config3 & MIPS_CONF3_VZ)
532 c->ases |= MIPS_ASE_VZ;
Steven J. Hill4a0156f2013-11-14 16:12:24 +0000533 if (config3 & MIPS_CONF3_SC)
534 c->options |= MIPS_CPU_SEGMENTS;
Paul Burtona5e9a692014-01-27 15:23:10 +0000535 if (config3 & MIPS_CONF3_MSA)
536 c->ases |= MIPS_ASE_MSA;
Markos Chandras3d528b32014-07-14 12:46:13 +0100537 /* Only tested on 32-bit cores */
Markos Chandrased4cbc82015-01-26 13:04:33 +0000538 if ((config3 & MIPS_CONF3_PW) && config_enabled(CONFIG_32BIT)) {
539 c->htw_seq = 0;
Markos Chandras3d528b32014-07-14 12:46:13 +0100540 c->options |= MIPS_CPU_HTW;
Markos Chandrased4cbc82015-01-26 13:04:33 +0000541 }
James Hogan9b3274b2015-02-02 11:45:08 +0000542 if (config3 & MIPS_CONF3_CDMM)
543 c->options |= MIPS_CPU_CDMM;
James Hoganaaa7be42015-07-15 16:17:44 +0100544 if (config3 & MIPS_CONF3_SP)
545 c->options |= MIPS_CPU_SP;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100546
547 return config3 & MIPS_CONF_M;
548}
549
550static inline unsigned int decode_config4(struct cpuinfo_mips *c)
551{
552 unsigned int config4;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000553 unsigned int newcf4;
554 unsigned int mmuextdef;
555 unsigned int ftlb_page = MIPS_CONF4_FTLBPAGESIZE;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100556
557 config4 = read_c0_config4();
558
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000559 if (cpu_has_tlb) {
560 if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
561 c->options |= MIPS_CPU_TLBINV;
Markos Chandrase87569c2015-07-09 10:40:52 +0100562 /*
563 * This is a bit ugly. R6 has dropped that field from
564 * config4 and the only valid configuration is VTLB+FTLB so
565 * set a good value for mmuextdef for that case.
566 */
567 if (cpu_has_mips_r6)
568 mmuextdef = MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT;
569 else
570 mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
571
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000572 switch (mmuextdef) {
573 case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
574 c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
575 c->tlbsizevtlb = c->tlbsize;
576 break;
577 case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT:
578 c->tlbsizevtlb +=
579 ((config4 & MIPS_CONF4_VTLBSIZEEXT) >>
580 MIPS_CONF4_VTLBSIZEEXT_SHIFT) * 0x40;
581 c->tlbsize = c->tlbsizevtlb;
582 ftlb_page = MIPS_CONF4_VFTLBPAGESIZE;
583 /* fall through */
584 case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT:
Markos Chandras97f4ad22014-08-29 09:37:26 +0100585 if (mips_ftlb_disabled)
586 break;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000587 newcf4 = (config4 & ~ftlb_page) |
588 (page_size_ftlb(mmuextdef) <<
589 MIPS_CONF4_FTLBPAGESIZE_SHIFT);
590 write_c0_config4(newcf4);
591 back_to_back_c0_hazard();
592 config4 = read_c0_config4();
593 if (config4 != newcf4) {
594 pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
595 PAGE_SIZE, config4);
596 /* Switch FTLB off */
597 set_ftlb_enable(c, 0);
598 break;
599 }
600 c->tlbsizeftlbsets = 1 <<
601 ((config4 & MIPS_CONF4_FTLBSETS) >>
602 MIPS_CONF4_FTLBSETS_SHIFT);
603 c->tlbsizeftlbways = ((config4 & MIPS_CONF4_FTLBWAYS) >>
604 MIPS_CONF4_FTLBWAYS_SHIFT) + 2;
605 c->tlbsize += c->tlbsizeftlbways * c->tlbsizeftlbsets;
Markos Chandras97f4ad22014-08-29 09:37:26 +0100606 mips_has_ftlb_configured = 1;
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000607 break;
608 }
Leonid Yegoshin1745c1e2013-11-14 16:12:23 +0000609 }
610
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100611 c->kscratch_mask = (config4 >> 16) & 0xff;
612
613 return config4 & MIPS_CONF_M;
614}
615
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200616static inline unsigned int decode_config5(struct cpuinfo_mips *c)
617{
618 unsigned int config5;
619
620 config5 = read_c0_config5();
Paul Burtond175ed22014-09-11 08:30:19 +0100621 config5 &= ~(MIPS_CONF5_UFR | MIPS_CONF5_UFE);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200622 write_c0_config5(config5);
623
Markos Chandras49016742014-01-09 16:04:51 +0000624 if (config5 & MIPS_CONF5_EVA)
625 c->options |= MIPS_CPU_EVA;
Paul Burton1f6c52f2014-07-14 10:32:14 +0100626 if (config5 & MIPS_CONF5_MRP)
627 c->options |= MIPS_CPU_MAAR;
Markos Chandras5aed9da2014-12-02 09:46:19 +0000628 if (config5 & MIPS_CONF5_LLB)
629 c->options |= MIPS_CPU_RW_LLB;
Steven J. Hillc5b36782015-02-26 18:16:38 -0600630#ifdef CONFIG_XPA
631 if (config5 & MIPS_CONF5_MVH)
632 c->options |= MIPS_CPU_XPA;
633#endif
Markos Chandras49016742014-01-09 16:04:51 +0000634
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200635 return config5 & MIPS_CONF_M;
636}
637
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000638static void decode_configs(struct cpuinfo_mips *c)
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100639{
640 int ok;
641
642 /* MIPS32 or MIPS64 compliant CPU. */
643 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
644 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
645
646 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
647
Markos Chandras97f4ad22014-08-29 09:37:26 +0100648 /* Enable FTLB if present and not disabled */
649 set_ftlb_enable(c, !mips_ftlb_disabled);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000650
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100651 ok = decode_config0(c); /* Read Config registers. */
Ralf Baechle70342282013-01-22 12:59:30 +0100652 BUG_ON(!ok); /* Arch spec violation! */
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100653 if (ok)
654 ok = decode_config1(c);
655 if (ok)
656 ok = decode_config2(c);
657 if (ok)
658 ok = decode_config3(c);
659 if (ok)
660 ok = decode_config4(c);
Ralf Baechle8b8a76342013-09-19 11:15:49 +0200661 if (ok)
662 ok = decode_config5(c);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100663
664 mips_probe_watch_registers(c);
665
Leonid Yegoshin6575b1d2014-07-15 14:09:57 +0100666 if (cpu_has_rixi) {
667 /* Enable the RIXI exceptions */
Steven J. Hilla5770df2015-02-19 10:18:52 -0600668 set_c0_pagegrain(PG_IEC);
Leonid Yegoshin6575b1d2014-07-15 14:09:57 +0100669 back_to_back_c0_hazard();
670 /* Verify the IEC bit is set */
671 if (read_c0_pagegrain() & PG_IEC)
672 c->options |= MIPS_CPU_RIXIEX;
673 }
674
Paul Burton0ee958e2014-01-15 10:31:53 +0000675#ifndef CONFIG_MIPS_CPS
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +0000676 if (cpu_has_mips_r2_r6) {
David Daney45b585c2014-05-28 23:52:10 +0200677 c->core = get_ebase_cpunum();
Paul Burton30ee6152014-03-27 10:57:30 +0000678 if (cpu_has_mipsmt)
679 c->core >>= fls(core_nvpes()) - 1;
680 }
Paul Burton0ee958e2014-01-15 10:31:53 +0000681#endif
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100682}
683
Ralf Baechle02cf2112005-10-01 13:06:32 +0100684#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 | MIPS_CPU_COUNTER)
686
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000687static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100689 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 case PRID_IMP_R2000:
691 c->cputype = CPU_R2000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000692 __cpu_name[cpu] = "R2000";
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100693 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100694 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500695 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (__cpu_has_fpu())
697 c->options |= MIPS_CPU_FPU;
698 c->tlbsize = 64;
699 break;
700 case PRID_IMP_R3000:
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100701 if ((c->processor_id & PRID_REV_MASK) == PRID_REV_R3000A) {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000702 if (cpu_has_confreg()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 c->cputype = CPU_R3081E;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000704 __cpu_name[cpu] = "R3081";
705 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 c->cputype = CPU_R3000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000707 __cpu_name[cpu] = "R3000A";
708 }
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000709 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 c->cputype = CPU_R3000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000711 __cpu_name[cpu] = "R3000";
712 }
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100713 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100714 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500715 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (__cpu_has_fpu())
717 c->options |= MIPS_CPU_FPU;
718 c->tlbsize = 64;
719 break;
720 case PRID_IMP_R4000:
721 if (read_c0_config() & CONF_SC) {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100722 if ((c->processor_id & PRID_REV_MASK) >=
723 PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 c->cputype = CPU_R4400PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000725 __cpu_name[cpu] = "R4400PC";
726 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 c->cputype = CPU_R4000PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000728 __cpu_name[cpu] = "R4000PC";
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100731 int cca = read_c0_config() & CONF_CM_CMASK;
732 int mc;
733
734 /*
735 * SC and MC versions can't be reliably told apart,
736 * but only the latter support coherent caching
737 * modes so assume the firmware has set the KSEG0
738 * coherency attribute reasonably (if uncached, we
739 * assume SC).
740 */
741 switch (cca) {
742 case CONF_CM_CACHABLE_CE:
743 case CONF_CM_CACHABLE_COW:
744 case CONF_CM_CACHABLE_CUW:
745 mc = 1;
746 break;
747 default:
748 mc = 0;
749 break;
750 }
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100751 if ((c->processor_id & PRID_REV_MASK) >=
752 PRID_REV_R4400) {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100753 c->cputype = mc ? CPU_R4400MC : CPU_R4400SC;
754 __cpu_name[cpu] = mc ? "R4400MC" : "R4400SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000755 } else {
Maciej W. Rozycki7f177a52013-09-23 14:01:53 +0100756 c->cputype = mc ? CPU_R4000MC : CPU_R4000SC;
757 __cpu_name[cpu] = mc ? "R4000MC" : "R4000SC";
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760
Steven J. Hilla96102b2012-12-07 04:31:36 +0000761 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100762 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500764 MIPS_CPU_WATCH | MIPS_CPU_VCE |
765 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 c->tlbsize = 48;
767 break;
768 case PRID_IMP_VR41XX:
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900769 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100770 c->fpu_msk31 |= FPU_CSR_CONDX;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900771 c->options = R4K_OPTS;
772 c->tlbsize = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 switch (c->processor_id & 0xf0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 case PRID_REV_VR4111:
775 c->cputype = CPU_VR4111;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000776 __cpu_name[cpu] = "NEC VR4111";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case PRID_REV_VR4121:
779 c->cputype = CPU_VR4121;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000780 __cpu_name[cpu] = "NEC VR4121";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 break;
782 case PRID_REV_VR4122:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000783 if ((c->processor_id & 0xf) < 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 c->cputype = CPU_VR4122;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000785 __cpu_name[cpu] = "NEC VR4122";
786 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 c->cputype = CPU_VR4181A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000788 __cpu_name[cpu] = "NEC VR4181A";
789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
791 case PRID_REV_VR4130:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000792 if ((c->processor_id & 0xf) < 0x4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 c->cputype = CPU_VR4131;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000794 __cpu_name[cpu] = "NEC VR4131";
795 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 c->cputype = CPU_VR4133;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900797 c->options |= MIPS_CPU_LLSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000798 __cpu_name[cpu] = "NEC VR4133";
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 break;
801 default:
802 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
803 c->cputype = CPU_VR41XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000804 __cpu_name[cpu] = "NEC Vr41xx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 break;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 break;
808 case PRID_IMP_R4300:
809 c->cputype = CPU_R4300;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000810 __cpu_name[cpu] = "R4300";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000811 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100812 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500814 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 c->tlbsize = 32;
816 break;
817 case PRID_IMP_R4600:
818 c->cputype = CPU_R4600;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000819 __cpu_name[cpu] = "R4600";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000820 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100821 c->fpu_msk31 |= FPU_CSR_CONDX;
Thiemo Seufer075e7502005-07-27 21:48:12 +0000822 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
823 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 c->tlbsize = 48;
825 break;
826 #if 0
Steven J. Hill03751e72012-05-10 23:21:18 -0500827 case PRID_IMP_R4650:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /*
829 * This processor doesn't have an MMU, so it's not
830 * "real easy" to run Linux on it. It is left purely
831 * for documentation. Commented out because it shares
832 * it's c0_prid id number with the TX3900.
833 */
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000834 c->cputype = CPU_R4650;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000835 __cpu_name[cpu] = "R4650";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000836 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100837 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
Steven J. Hill03751e72012-05-10 23:21:18 -0500839 c->tlbsize = 48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 break;
841 #endif
842 case PRID_IMP_TX39:
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100843 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100844 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
847 c->cputype = CPU_TX3927;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000848 __cpu_name[cpu] = "TX3927";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 c->tlbsize = 64;
850 } else {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +0100851 switch (c->processor_id & PRID_REV_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 case PRID_REV_TX3912:
853 c->cputype = CPU_TX3912;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000854 __cpu_name[cpu] = "TX3912";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 c->tlbsize = 32;
856 break;
857 case PRID_REV_TX3922:
858 c->cputype = CPU_TX3922;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000859 __cpu_name[cpu] = "TX3922";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 c->tlbsize = 64;
861 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863 }
864 break;
865 case PRID_IMP_R4700:
866 c->cputype = CPU_R4700;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000867 __cpu_name[cpu] = "R4700";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000868 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100869 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500871 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 c->tlbsize = 48;
873 break;
874 case PRID_IMP_TX49:
875 c->cputype = CPU_TX49XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000876 __cpu_name[cpu] = "R49XX";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000877 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100878 c->fpu_msk31 |= FPU_CSR_CONDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 c->options = R4K_OPTS | MIPS_CPU_LLSC;
880 if (!(c->processor_id & 0x08))
881 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
882 c->tlbsize = 48;
883 break;
884 case PRID_IMP_R5000:
885 c->cputype = CPU_R5000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000886 __cpu_name[cpu] = "R5000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000887 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500889 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 c->tlbsize = 48;
891 break;
892 case PRID_IMP_R5432:
893 c->cputype = CPU_R5432;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000894 __cpu_name[cpu] = "R5432";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000895 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500897 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 c->tlbsize = 48;
899 break;
900 case PRID_IMP_R5500:
901 c->cputype = CPU_R5500;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000902 __cpu_name[cpu] = "R5500";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000903 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500905 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 c->tlbsize = 48;
907 break;
908 case PRID_IMP_NEVADA:
909 c->cputype = CPU_NEVADA;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000910 __cpu_name[cpu] = "Nevada";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000911 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500913 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 c->tlbsize = 48;
915 break;
916 case PRID_IMP_R6000:
917 c->cputype = CPU_R6000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000918 __cpu_name[cpu] = "R6000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000919 set_isa(c, MIPS_CPU_ISA_II);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100920 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500922 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 c->tlbsize = 32;
924 break;
925 case PRID_IMP_R6000A:
926 c->cputype = CPU_R6000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000927 __cpu_name[cpu] = "R6000A";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000928 set_isa(c, MIPS_CPU_ISA_II);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100929 c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500931 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 c->tlbsize = 32;
933 break;
934 case PRID_IMP_RM7000:
935 c->cputype = CPU_RM7000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000936 __cpu_name[cpu] = "RM7000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000937 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500939 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
Ralf Baechle70342282013-01-22 12:59:30 +0100941 * Undocumented RM7000: Bit 29 in the info register of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * the RM7000 v2.0 indicates if the TLB has 48 or 64
943 * entries.
944 *
Ralf Baechle70342282013-01-22 12:59:30 +0100945 * 29 1 => 64 entry JTLB
946 * 0 => 48 entry JTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
948 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 case PRID_IMP_R8000:
951 c->cputype = CPU_R8000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000952 __cpu_name[cpu] = "RM8000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000953 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500955 MIPS_CPU_FPU | MIPS_CPU_32FPR |
956 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
958 break;
959 case PRID_IMP_R10000:
960 c->cputype = CPU_R10000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000961 __cpu_name[cpu] = "R10000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000962 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000963 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500964 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500966 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 c->tlbsize = 64;
968 break;
969 case PRID_IMP_R12000:
970 c->cputype = CPU_R12000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000971 __cpu_name[cpu] = "R12000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000972 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000973 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500974 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Joshua Kinard8d5ded12015-06-02 18:21:33 -0400976 MIPS_CPU_LLSC | MIPS_CPU_BP_GHIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 c->tlbsize = 64;
978 break;
Kumba44d921b2006-05-16 22:23:59 -0400979 case PRID_IMP_R14000:
Joshua Kinard30577392015-01-21 07:59:45 -0500980 if (((c->processor_id >> 4) & 0x0f) > 2) {
981 c->cputype = CPU_R16000;
982 __cpu_name[cpu] = "R16000";
983 } else {
984 c->cputype = CPU_R14000;
985 __cpu_name[cpu] = "R14000";
986 }
Steven J. Hilla96102b2012-12-07 04:31:36 +0000987 set_isa(c, MIPS_CPU_ISA_IV);
Kumba44d921b2006-05-16 22:23:59 -0400988 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500989 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Kumba44d921b2006-05-16 22:23:59 -0400990 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Joshua Kinard8d5ded12015-06-02 18:21:33 -0400991 MIPS_CPU_LLSC | MIPS_CPU_BP_GHIST;
Kumba44d921b2006-05-16 22:23:59 -0400992 c->tlbsize = 64;
993 break;
Huacai Chen26859192014-02-16 16:01:18 +0800994 case PRID_IMP_LOONGSON_64: /* Loongson-2/3 */
Robert Millan5aac1e82011-04-16 11:29:29 -0700995 switch (c->processor_id & PRID_REV_MASK) {
996 case PRID_REV_LOONGSON2E:
Huacai Chenc579d312014-03-21 18:44:00 +0800997 c->cputype = CPU_LOONGSON2;
998 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -0700999 set_elf_platform(cpu, "loongson2e");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001000 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001001 c->fpu_msk31 |= FPU_CSR_CONDX;
Robert Millan5aac1e82011-04-16 11:29:29 -07001002 break;
1003 case PRID_REV_LOONGSON2F:
Huacai Chenc579d312014-03-21 18:44:00 +08001004 c->cputype = CPU_LOONGSON2;
1005 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -07001006 set_elf_platform(cpu, "loongson2f");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001007 set_isa(c, MIPS_CPU_ISA_III);
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001008 c->fpu_msk31 |= FPU_CSR_CONDX;
Robert Millan5aac1e82011-04-16 11:29:29 -07001009 break;
Huacai Chenc579d312014-03-21 18:44:00 +08001010 case PRID_REV_LOONGSON3A:
1011 c->cputype = CPU_LOONGSON3;
1012 __cpu_name[cpu] = "ICT Loongson-3";
1013 set_elf_platform(cpu, "loongson3a");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001014 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chenc579d312014-03-21 18:44:00 +08001015 break;
Huacai Chene7841be2014-06-26 11:41:30 +08001016 case PRID_REV_LOONGSON3B_R1:
1017 case PRID_REV_LOONGSON3B_R2:
1018 c->cputype = CPU_LOONGSON3;
1019 __cpu_name[cpu] = "ICT Loongson-3";
1020 set_elf_platform(cpu, "loongson3b");
Huacai Chen7352c8b2014-11-04 14:13:23 +08001021 set_isa(c, MIPS_CPU_ISA_M64R1);
Huacai Chene7841be2014-06-26 11:41:30 +08001022 break;
Robert Millan5aac1e82011-04-16 11:29:29 -07001023 }
1024
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001025 c->options = R4K_OPTS |
1026 MIPS_CPU_FPU | MIPS_CPU_LLSC |
1027 MIPS_CPU_32FPR;
1028 c->tlbsize = 64;
Huacai Chencc94ea32014-11-04 14:13:22 +08001029 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Fuxin Zhang2a21c732007-06-06 14:52:43 +08001030 break;
Huacai Chen26859192014-02-16 16:01:18 +08001031 case PRID_IMP_LOONGSON_32: /* Loongson-1 */
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001032 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001034 c->cputype = CPU_LOONGSON1;
Ralf Baechleb4672d32005-12-08 14:04:24 +00001035
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001036 switch (c->processor_id & PRID_REV_MASK) {
1037 case PRID_REV_LOONGSON1B:
1038 __cpu_name[cpu] = "Loongson 1B";
Ralf Baechleb4672d32005-12-08 14:04:24 +00001039 break;
Ralf Baechleb4672d32005-12-08 14:04:24 +00001040 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001041
Ralf Baechle41943182005-05-05 16:45:59 +00001042 break;
Ralf Baechle41943182005-05-05 16:45:59 +00001043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001046static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Markos Chandras4f12b912014-07-18 10:51:32 +01001048 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001049 switch (c->processor_id & PRID_IMP_MASK) {
Leonid Yegoshinb2498af2014-11-24 12:59:44 +00001050 case PRID_IMP_QEMU_GENERIC:
1051 c->writecombine = _CACHE_UNCACHED;
1052 c->cputype = CPU_QEMU_GENERIC;
1053 __cpu_name[cpu] = "MIPS GENERIC QEMU";
1054 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 case PRID_IMP_4KC:
1056 c->cputype = CPU_4KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001057 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001058 __cpu_name[cpu] = "MIPS 4Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 break;
1060 case PRID_IMP_4KEC:
Ralf Baechle2b07bd02005-04-08 20:36:05 +00001061 case PRID_IMP_4KECR2:
1062 c->cputype = CPU_4KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001063 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001064 __cpu_name[cpu] = "MIPS 4KEc";
Ralf Baechle2b07bd02005-04-08 20:36:05 +00001065 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 case PRID_IMP_4KSC:
Ralf Baechle8afcb5d2005-10-04 15:01:26 +01001067 case PRID_IMP_4KSD:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 c->cputype = CPU_4KSC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001069 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001070 __cpu_name[cpu] = "MIPS 4KSc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 break;
1072 case PRID_IMP_5KC:
1073 c->cputype = CPU_5KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001074 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001075 __cpu_name[cpu] = "MIPS 5Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 break;
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001077 case PRID_IMP_5KE:
1078 c->cputype = CPU_5KE;
Markos Chandras4f12b912014-07-18 10:51:32 +01001079 c->writecombine = _CACHE_UNCACHED;
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001080 __cpu_name[cpu] = "MIPS 5KE";
1081 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 case PRID_IMP_20KC:
1083 c->cputype = CPU_20KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001084 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001085 __cpu_name[cpu] = "MIPS 20Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 break;
1087 case PRID_IMP_24K:
1088 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001089 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001090 __cpu_name[cpu] = "MIPS 24Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 break;
John Crispin42f3cae2013-01-11 22:44:10 +01001092 case PRID_IMP_24KE:
1093 c->cputype = CPU_24K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001094 c->writecombine = _CACHE_UNCACHED;
John Crispin42f3cae2013-01-11 22:44:10 +01001095 __cpu_name[cpu] = "MIPS 24KEc";
1096 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 case PRID_IMP_25KF:
1098 c->cputype = CPU_25KF;
Markos Chandras4f12b912014-07-18 10:51:32 +01001099 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001100 __cpu_name[cpu] = "MIPS 25Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 break;
Ralf Baechlebbc7f222005-07-12 16:12:05 +00001102 case PRID_IMP_34K:
1103 c->cputype = CPU_34K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001104 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001105 __cpu_name[cpu] = "MIPS 34Kc";
Ralf Baechlebbc7f222005-07-12 16:12:05 +00001106 break;
Chris Dearmanc6209532006-05-02 14:08:46 +01001107 case PRID_IMP_74K:
1108 c->cputype = CPU_74K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001109 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001110 __cpu_name[cpu] = "MIPS 74Kc";
Chris Dearmanc6209532006-05-02 14:08:46 +01001111 break;
Steven J. Hill113c62d2012-07-06 23:56:00 +02001112 case PRID_IMP_M14KC:
1113 c->cputype = CPU_M14KC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001114 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill113c62d2012-07-06 23:56:00 +02001115 __cpu_name[cpu] = "MIPS M14Kc";
1116 break;
Steven J. Hillf8fa4812012-12-07 03:51:35 +00001117 case PRID_IMP_M14KEC:
1118 c->cputype = CPU_M14KEC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001119 c->writecombine = _CACHE_UNCACHED;
Steven J. Hillf8fa4812012-12-07 03:51:35 +00001120 __cpu_name[cpu] = "MIPS M14KEc";
1121 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +01001122 case PRID_IMP_1004K:
1123 c->cputype = CPU_1004K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001124 c->writecombine = _CACHE_UNCACHED;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001125 __cpu_name[cpu] = "MIPS 1004Kc";
Ralf Baechle39b8d522008-04-28 17:14:26 +01001126 break;
Steven J. Hill006a8512012-06-26 04:11:03 +00001127 case PRID_IMP_1074K:
Steven J. Hill442e14a2014-01-17 15:03:50 -06001128 c->cputype = CPU_1074K;
Markos Chandras4f12b912014-07-18 10:51:32 +01001129 c->writecombine = _CACHE_UNCACHED;
Steven J. Hill006a8512012-06-26 04:11:03 +00001130 __cpu_name[cpu] = "MIPS 1074Kc";
1131 break;
Leonid Yegoshinb5f065e2013-11-20 10:46:02 +00001132 case PRID_IMP_INTERAPTIV_UP:
1133 c->cputype = CPU_INTERAPTIV;
1134 __cpu_name[cpu] = "MIPS interAptiv";
1135 break;
1136 case PRID_IMP_INTERAPTIV_MP:
1137 c->cputype = CPU_INTERAPTIV;
1138 __cpu_name[cpu] = "MIPS interAptiv (multi)";
1139 break;
Leonid Yegoshinb0d4d302013-11-14 16:12:28 +00001140 case PRID_IMP_PROAPTIV_UP:
1141 c->cputype = CPU_PROAPTIV;
1142 __cpu_name[cpu] = "MIPS proAptiv";
1143 break;
1144 case PRID_IMP_PROAPTIV_MP:
1145 c->cputype = CPU_PROAPTIV;
1146 __cpu_name[cpu] = "MIPS proAptiv (multi)";
1147 break;
James Hogan829dcc02014-01-22 16:19:39 +00001148 case PRID_IMP_P5600:
1149 c->cputype = CPU_P5600;
1150 __cpu_name[cpu] = "MIPS P5600";
1151 break;
Markos Chandrase57f9a22015-07-09 10:40:37 +01001152 case PRID_IMP_I6400:
1153 c->cputype = CPU_I6400;
1154 __cpu_name[cpu] = "MIPS I6400";
1155 break;
Leonid Yegoshin9943ed92014-03-04 13:34:44 +00001156 case PRID_IMP_M5150:
1157 c->cputype = CPU_M5150;
1158 __cpu_name[cpu] = "MIPS M5150";
1159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
Chris Dearman0b6d4972007-09-13 12:32:02 +01001161
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001162 decode_configs(c);
1163
Chris Dearman0b6d4972007-09-13 12:32:02 +01001164 spram_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001167static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Ralf Baechle41943182005-05-05 16:45:59 +00001169 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001170 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 case PRID_IMP_AU1_REV1:
1172 case PRID_IMP_AU1_REV2:
Manuel Lauss270717a2009-03-25 17:49:28 +01001173 c->cputype = CPU_ALCHEMY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 switch ((c->processor_id >> 24) & 0xff) {
1175 case 0:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001176 __cpu_name[cpu] = "Au1000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
1178 case 1:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001179 __cpu_name[cpu] = "Au1500";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 break;
1181 case 2:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001182 __cpu_name[cpu] = "Au1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 break;
1184 case 3:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001185 __cpu_name[cpu] = "Au1550";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 break;
Pete Popove3ad1c22005-03-01 06:33:16 +00001187 case 4:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001188 __cpu_name[cpu] = "Au1200";
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001189 if ((c->processor_id & PRID_REV_MASK) == 2)
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001190 __cpu_name[cpu] = "Au1250";
Manuel Lauss237cfee2007-12-06 09:07:55 +01001191 break;
1192 case 5:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001193 __cpu_name[cpu] = "Au1210";
Pete Popove3ad1c22005-03-01 06:33:16 +00001194 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 default:
Manuel Lauss270717a2009-03-25 17:49:28 +01001196 __cpu_name[cpu] = "Au1xxx";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 break;
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 break;
1200 }
1201}
1202
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001203static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Ralf Baechle41943182005-05-05 16:45:59 +00001205 decode_configs(c);
Ralf Baechle02cf2112005-10-01 13:06:32 +01001206
Markos Chandras4f12b912014-07-18 10:51:32 +01001207 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001208 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 case PRID_IMP_SB1:
1210 c->cputype = CPU_SB1;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001211 __cpu_name[cpu] = "SiByte SB1";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /* FPU in pass1 is known to have issues. */
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001213 if ((c->processor_id & PRID_REV_MASK) < 0x02)
Ralf Baechle010b8532006-01-29 18:42:08 +00001214 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 break;
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001216 case PRID_IMP_SB1A:
1217 c->cputype = CPU_SB1A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001218 __cpu_name[cpu] = "SiByte SB1A";
Andrew Isaacson93ce2f522005-10-19 23:56:20 -07001219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221}
1222
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001223static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Ralf Baechle41943182005-05-05 16:45:59 +00001225 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001226 switch (c->processor_id & PRID_IMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 case PRID_IMP_SR71000:
1228 c->cputype = CPU_SR71000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001229 __cpu_name[cpu] = "Sandcraft SR71000";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 c->scache.ways = 8;
1231 c->tlbsize = 64;
1232 break;
1233 }
1234}
1235
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001236static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
Pete Popovbdf21b12005-07-14 17:47:57 +00001237{
1238 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001239 switch (c->processor_id & PRID_IMP_MASK) {
Pete Popovbdf21b12005-07-14 17:47:57 +00001240 case PRID_IMP_PR4450:
1241 c->cputype = CPU_PR4450;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001242 __cpu_name[cpu] = "Philips PR4450";
Steven J. Hilla96102b2012-12-07 04:31:36 +00001243 set_isa(c, MIPS_CPU_ISA_M32R1);
Pete Popovbdf21b12005-07-14 17:47:57 +00001244 break;
Pete Popovbdf21b12005-07-14 17:47:57 +00001245 }
1246}
1247
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001248static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001249{
1250 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001251 switch (c->processor_id & PRID_IMP_MASK) {
Kevin Cernekee190fca32010-11-23 10:26:45 -08001252 case PRID_IMP_BMIPS32_REV4:
1253 case PRID_IMP_BMIPS32_REV8:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001254 c->cputype = CPU_BMIPS32;
1255 __cpu_name[cpu] = "Broadcom BMIPS32";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001256 set_elf_platform(cpu, "bmips32");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001257 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001258 case PRID_IMP_BMIPS3300:
1259 case PRID_IMP_BMIPS3300_ALT:
1260 case PRID_IMP_BMIPS3300_BUG:
1261 c->cputype = CPU_BMIPS3300;
1262 __cpu_name[cpu] = "Broadcom BMIPS3300";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001263 set_elf_platform(cpu, "bmips3300");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001264 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001265 case PRID_IMP_BMIPS43XX: {
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001266 int rev = c->processor_id & PRID_REV_MASK;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001267
1268 if (rev >= PRID_REV_BMIPS4380_LO &&
1269 rev <= PRID_REV_BMIPS4380_HI) {
1270 c->cputype = CPU_BMIPS4380;
1271 __cpu_name[cpu] = "Broadcom BMIPS4380";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001272 set_elf_platform(cpu, "bmips4380");
Kevin Cernekee602977b2010-10-16 14:22:30 -07001273 } else {
1274 c->cputype = CPU_BMIPS4350;
1275 __cpu_name[cpu] = "Broadcom BMIPS4350";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001276 set_elf_platform(cpu, "bmips4350");
Maxime Bizon0de663e2009-08-18 13:23:37 +01001277 }
1278 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001279 }
Kevin Cernekee602977b2010-10-16 14:22:30 -07001280 case PRID_IMP_BMIPS5000:
Kevin Cernekee68e6a782014-10-20 21:28:01 -07001281 case PRID_IMP_BMIPS5200:
Kevin Cernekee602977b2010-10-16 14:22:30 -07001282 c->cputype = CPU_BMIPS5000;
1283 __cpu_name[cpu] = "Broadcom BMIPS5000";
Kevin Cernekee06785df2011-04-16 11:29:28 -07001284 set_elf_platform(cpu, "bmips5000");
Kevin Cernekee602977b2010-10-16 14:22:30 -07001285 c->options |= MIPS_CPU_ULRI;
1286 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -07001287 }
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001288}
1289
David Daney0dd47812008-12-11 15:33:26 -08001290static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
1291{
1292 decode_configs(c);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001293 switch (c->processor_id & PRID_IMP_MASK) {
David Daney0dd47812008-12-11 15:33:26 -08001294 case PRID_IMP_CAVIUM_CN38XX:
1295 case PRID_IMP_CAVIUM_CN31XX:
1296 case PRID_IMP_CAVIUM_CN30XX:
David Daney6f329462010-02-10 15:12:48 -08001297 c->cputype = CPU_CAVIUM_OCTEON;
1298 __cpu_name[cpu] = "Cavium Octeon";
1299 goto platform;
David Daney0dd47812008-12-11 15:33:26 -08001300 case PRID_IMP_CAVIUM_CN58XX:
1301 case PRID_IMP_CAVIUM_CN56XX:
1302 case PRID_IMP_CAVIUM_CN50XX:
1303 case PRID_IMP_CAVIUM_CN52XX:
David Daney6f329462010-02-10 15:12:48 -08001304 c->cputype = CPU_CAVIUM_OCTEON_PLUS;
1305 __cpu_name[cpu] = "Cavium Octeon+";
1306platform:
Robert Millanc094c992011-04-18 11:37:55 -07001307 set_elf_platform(cpu, "octeon");
David Daney0dd47812008-12-11 15:33:26 -08001308 break;
David Daneya1431b62011-09-24 02:29:54 +02001309 case PRID_IMP_CAVIUM_CN61XX:
David Daney0e56b382010-10-07 16:03:45 -07001310 case PRID_IMP_CAVIUM_CN63XX:
David Daneya1431b62011-09-24 02:29:54 +02001311 case PRID_IMP_CAVIUM_CN66XX:
1312 case PRID_IMP_CAVIUM_CN68XX:
David Daneyaf04bb82013-07-29 15:07:01 -07001313 case PRID_IMP_CAVIUM_CNF71XX:
David Daney0e56b382010-10-07 16:03:45 -07001314 c->cputype = CPU_CAVIUM_OCTEON2;
1315 __cpu_name[cpu] = "Cavium Octeon II";
Robert Millanc094c992011-04-18 11:37:55 -07001316 set_elf_platform(cpu, "octeon2");
David Daney0e56b382010-10-07 16:03:45 -07001317 break;
David Daneyaf04bb82013-07-29 15:07:01 -07001318 case PRID_IMP_CAVIUM_CN70XX:
1319 case PRID_IMP_CAVIUM_CN78XX:
1320 c->cputype = CPU_CAVIUM_OCTEON3;
1321 __cpu_name[cpu] = "Cavium Octeon III";
1322 set_elf_platform(cpu, "octeon3");
1323 break;
David Daney0dd47812008-12-11 15:33:26 -08001324 default:
1325 printk(KERN_INFO "Unknown Octeon chip!\n");
1326 c->cputype = CPU_UNKNOWN;
1327 break;
1328 }
1329}
1330
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001331static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
1332{
1333 decode_configs(c);
1334 /* JZRISC does not implement the CP0 counter. */
1335 c->options &= ~MIPS_CPU_COUNTER;
Maciej W. Rozycki06947aa2014-04-06 21:31:29 +01001336 BUG_ON(!__builtin_constant_p(cpu_has_counter) || cpu_has_counter);
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001337 switch (c->processor_id & PRID_IMP_MASK) {
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001338 case PRID_IMP_JZRISC:
1339 c->cputype = CPU_JZRISC;
Markos Chandras4f12b912014-07-18 10:51:32 +01001340 c->writecombine = _CACHE_UNCACHED_ACCELERATED;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001341 __cpu_name[cpu] = "Ingenic JZRISC";
1342 break;
1343 default:
1344 panic("Unknown Ingenic Processor ID!");
1345 break;
1346 }
1347}
1348
Jayachandran Ca7117c62011-05-11 12:04:58 +05301349static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
1350{
1351 decode_configs(c);
1352
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001353 if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_NETLOGIC_AU13XX) {
Manuel Lauss809f36c2011-11-01 20:03:30 +01001354 c->cputype = CPU_ALCHEMY;
1355 __cpu_name[cpu] = "Au1300";
1356 /* following stuff is not for Alchemy */
1357 return;
1358 }
1359
Ralf Baechle70342282013-01-22 12:59:30 +01001360 c->options = (MIPS_CPU_TLB |
1361 MIPS_CPU_4KEX |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301362 MIPS_CPU_COUNTER |
Ralf Baechle70342282013-01-22 12:59:30 +01001363 MIPS_CPU_DIVEC |
1364 MIPS_CPU_WATCH |
1365 MIPS_CPU_EJTAG |
Jayachandran Ca7117c62011-05-11 12:04:58 +05301366 MIPS_CPU_LLSC);
1367
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001368 switch (c->processor_id & PRID_IMP_MASK) {
Jayachandran C4ca86a22013-08-11 14:43:54 +05301369 case PRID_IMP_NETLOGIC_XLP2XX:
Jayachandran C8907c552013-12-21 16:52:20 +05301370 case PRID_IMP_NETLOGIC_XLP9XX:
Yonghong Song1c983982014-04-29 20:07:53 +05301371 case PRID_IMP_NETLOGIC_XLP5XX:
Jayachandran C4ca86a22013-08-11 14:43:54 +05301372 c->cputype = CPU_XLP;
1373 __cpu_name[cpu] = "Broadcom XLPII";
1374 break;
1375
Jayachandran C2aa54b22011-11-16 00:21:29 +00001376 case PRID_IMP_NETLOGIC_XLP8XX:
1377 case PRID_IMP_NETLOGIC_XLP3XX:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001378 c->cputype = CPU_XLP;
1379 __cpu_name[cpu] = "Netlogic XLP";
1380 break;
1381
Jayachandran Ca7117c62011-05-11 12:04:58 +05301382 case PRID_IMP_NETLOGIC_XLR732:
1383 case PRID_IMP_NETLOGIC_XLR716:
1384 case PRID_IMP_NETLOGIC_XLR532:
1385 case PRID_IMP_NETLOGIC_XLR308:
1386 case PRID_IMP_NETLOGIC_XLR532C:
1387 case PRID_IMP_NETLOGIC_XLR516C:
1388 case PRID_IMP_NETLOGIC_XLR508C:
1389 case PRID_IMP_NETLOGIC_XLR308C:
1390 c->cputype = CPU_XLR;
1391 __cpu_name[cpu] = "Netlogic XLR";
1392 break;
1393
1394 case PRID_IMP_NETLOGIC_XLS608:
1395 case PRID_IMP_NETLOGIC_XLS408:
1396 case PRID_IMP_NETLOGIC_XLS404:
1397 case PRID_IMP_NETLOGIC_XLS208:
1398 case PRID_IMP_NETLOGIC_XLS204:
1399 case PRID_IMP_NETLOGIC_XLS108:
1400 case PRID_IMP_NETLOGIC_XLS104:
1401 case PRID_IMP_NETLOGIC_XLS616B:
1402 case PRID_IMP_NETLOGIC_XLS608B:
1403 case PRID_IMP_NETLOGIC_XLS416B:
1404 case PRID_IMP_NETLOGIC_XLS412B:
1405 case PRID_IMP_NETLOGIC_XLS408B:
1406 case PRID_IMP_NETLOGIC_XLS404B:
1407 c->cputype = CPU_XLR;
1408 __cpu_name[cpu] = "Netlogic XLS";
1409 break;
1410
1411 default:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001412 pr_info("Unknown Netlogic chip id [%02x]!\n",
Jayachandran Ca7117c62011-05-11 12:04:58 +05301413 c->processor_id);
1414 c->cputype = CPU_XLR;
1415 break;
1416 }
1417
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001418 if (c->cputype == CPU_XLP) {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001419 set_isa(c, MIPS_CPU_ISA_M64R2);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001420 c->options |= (MIPS_CPU_FPU | MIPS_CPU_ULRI | MIPS_CPU_MCHECK);
1421 /* This will be updated again after all threads are woken up */
1422 c->tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
1423 } else {
Steven J. Hilla96102b2012-12-07 04:31:36 +00001424 set_isa(c, MIPS_CPU_ISA_M64R1);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +00001425 c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
1426 }
Jayachandran C7777b932013-06-11 14:41:35 +00001427 c->kscratch_mask = 0xf;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301428}
1429
David Daney949e51b2010-10-14 11:32:33 -07001430#ifdef CONFIG_64BIT
1431/* For use by uaccess.h */
1432u64 __ua_limit;
1433EXPORT_SYMBOL(__ua_limit);
1434#endif
1435
Ralf Baechle9966db252007-10-11 23:46:17 +01001436const char *__cpu_name[NR_CPUS];
David Daney874fd3b2010-01-28 16:52:12 -08001437const char *__elf_platform;
Ralf Baechle9966db252007-10-11 23:46:17 +01001438
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001439void cpu_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle9966db252007-10-11 23:46:17 +01001442 unsigned int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Ralf Baechle70342282013-01-22 12:59:30 +01001444 c->processor_id = PRID_IMP_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 c->fpu_id = FPIR_IMP_NONE;
1446 c->cputype = CPU_UNKNOWN;
Markos Chandras4f12b912014-07-18 10:51:32 +01001447 c->writecombine = _CACHE_UNCACHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Maciej W. Rozycki9b266162015-04-03 23:27:48 +01001449 c->fpu_csr31 = FPU_CSR_RN;
1450 c->fpu_msk31 = FPU_CSR_RSVD | FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 c->processor_id = read_c0_prid();
Maciej W. Rozycki8ff374b2013-09-17 16:58:10 +01001453 switch (c->processor_id & PRID_COMP_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 case PRID_COMP_LEGACY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001455 cpu_probe_legacy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
1457 case PRID_COMP_MIPS:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001458 cpu_probe_mips(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
1460 case PRID_COMP_ALCHEMY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001461 cpu_probe_alchemy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 break;
1463 case PRID_COMP_SIBYTE:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001464 cpu_probe_sibyte(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001466 case PRID_COMP_BROADCOM:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001467 cpu_probe_broadcom(c, cpu);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 case PRID_COMP_SANDCRAFT:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001470 cpu_probe_sandcraft(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 break;
Daniel Lairda92b0582008-03-06 09:07:18 +00001472 case PRID_COMP_NXP:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001473 cpu_probe_nxp(c, cpu);
Ralf Baechlea3dddd52006-03-11 08:18:41 +00001474 break;
David Daney0dd47812008-12-11 15:33:26 -08001475 case PRID_COMP_CAVIUM:
1476 cpu_probe_cavium(c, cpu);
1477 break;
Paul Burton252617a2015-05-24 16:11:14 +01001478 case PRID_COMP_INGENIC_D0:
1479 case PRID_COMP_INGENIC_D1:
1480 case PRID_COMP_INGENIC_E1:
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001481 cpu_probe_ingenic(c, cpu);
1482 break;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301483 case PRID_COMP_NETLOGIC:
1484 cpu_probe_netlogic(c, cpu);
1485 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001487
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001488 BUG_ON(!__cpu_name[cpu]);
1489 BUG_ON(c->cputype == CPU_UNKNOWN);
1490
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001491 /*
1492 * Platform code can force the cpu type to optimize code
1493 * generation. In that case be sure the cpu type is correctly
1494 * manually setup otherwise it could trigger some nasty bugs.
1495 */
1496 BUG_ON(current_cpu_type() != c->cputype);
1497
Kevin Cernekee0103d232010-05-02 14:43:52 -07001498 if (mips_fpu_disabled)
1499 c->options &= ~MIPS_CPU_FPU;
1500
1501 if (mips_dsp_disabled)
Steven J. Hillee80f7c72012-08-03 10:26:04 -05001502 c->ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -07001503
Markos Chandras3d528b32014-07-14 12:46:13 +01001504 if (mips_htw_disabled) {
1505 c->options &= ~MIPS_CPU_HTW;
1506 write_c0_pwctl(read_c0_pwctl() &
1507 ~(1 << MIPS_PWCTL_PWEN_SHIFT));
1508 }
1509
Maciej W. Rozycki7aecd5c2015-04-03 23:27:54 +01001510 if (c->options & MIPS_CPU_FPU)
1511 cpu_set_fpu_opts(c);
1512 else
1513 cpu_set_nofpu_opts(c);
Ralf Baechle9966db252007-10-11 23:46:17 +01001514
Joshua Kinard8d5ded12015-06-02 18:21:33 -04001515 if (cpu_has_bp_ghist)
1516 write_c0_r10k_diag(read_c0_r10k_diag() |
1517 R10K_DIAG_E_GHIST);
1518
Leonid Yegoshin8b8aa632014-11-13 13:51:51 +00001519 if (cpu_has_mips_r2_r6) {
Ralf Baechlef6771db2007-11-08 18:02:29 +00001520 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Al Cooperda4b62c2012-07-13 16:44:51 -04001521 /* R2 has Performance Counter Interrupt indicator */
1522 c->options |= MIPS_CPU_PCI;
1523 }
Ralf Baechlef6771db2007-11-08 18:02:29 +00001524 else
1525 c->srsets = 1;
Guenter Roeck91dfc422010-02-02 08:52:20 -08001526
Paul Burtona8ad1362014-01-28 14:28:43 +00001527 if (cpu_has_msa) {
Paul Burtona5e9a692014-01-27 15:23:10 +00001528 c->msa_id = cpu_get_msa_id();
Paul Burtona8ad1362014-01-28 14:28:43 +00001529 WARN(c->msa_id & MSA_IR_WRPF,
1530 "Vector register partitioning unimplemented!");
1531 }
Paul Burtona5e9a692014-01-27 15:23:10 +00001532
Guenter Roeck91dfc422010-02-02 08:52:20 -08001533 cpu_probe_vmbits(c);
David Daney949e51b2010-10-14 11:32:33 -07001534
1535#ifdef CONFIG_64BIT
1536 if (cpu == 0)
1537 __ua_limit = ~((1ull << cpu_vmbits) - 1);
1538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001541void cpu_report(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543 struct cpuinfo_mips *c = &current_cpu_data;
1544
Leonid Yegoshind9f897c2013-10-07 10:43:32 +01001545 pr_info("CPU%d revision is: %08x (%s)\n",
1546 smp_processor_id(), c->processor_id, cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (c->options & MIPS_CPU_FPU)
Ralf Baechle9966db252007-10-11 23:46:17 +01001548 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
Paul Burtona5e9a692014-01-27 15:23:10 +00001549 if (cpu_has_msa)
1550 pr_info("MSA revision is: %08x\n", c->msa_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}