blob: 4c6167a178754ecab7b0b456129c6d979626b399 [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>
23#include <asm/fpu.h>
24#include <asm/mipsregs.h>
David Daney654f57b2008-09-23 00:07:16 -070025#include <asm/watch.h>
Paul Gortmaker06372a62011-07-23 16:26:41 -040026#include <asm/elf.h>
Chris Dearmana074f0e2009-07-10 01:51:27 -070027#include <asm/spram.h>
David Daney949e51b2010-10-14 11:32:33 -070028#include <asm/uaccess.h>
29
Paul Gortmaker078a55f2013-06-18 13:38:59 +000030static int mips_fpu_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -070031
32static int __init fpu_disable(char *s)
33{
34 cpu_data[0].options &= ~MIPS_CPU_FPU;
35 mips_fpu_disabled = 1;
36
37 return 1;
38}
39
40__setup("nofpu", fpu_disable);
41
Paul Gortmaker078a55f2013-06-18 13:38:59 +000042int mips_dsp_disabled;
Kevin Cernekee0103d232010-05-02 14:43:52 -070043
44static int __init dsp_disable(char *s)
45{
Steven J. Hillee80f7c72012-08-03 10:26:04 -050046 cpu_data[0].ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -070047 mips_dsp_disabled = 1;
48
49 return 1;
50}
51
52__setup("nodsp", dsp_disable);
53
Marc St-Jean9267a302007-06-14 15:55:31 -060054static inline void check_errata(void)
55{
56 struct cpuinfo_mips *c = &current_cpu_data;
57
58 switch (c->cputype) {
59 case CPU_34K:
60 /*
61 * Erratum "RPS May Cause Incorrect Instruction Execution"
62 * This code only handles VPE0, any SMP/SMTC/RTOS code
63 * making use of VPE1 will be responsable for that VPE.
64 */
65 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
66 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
67 break;
68 default:
69 break;
70 }
71}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073void __init check_bugs32(void)
74{
Marc St-Jean9267a302007-06-14 15:55:31 -060075 check_errata();
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78/*
79 * Probe whether cpu has config register by trying to play with
80 * alternate cache bit and see whether it matters.
81 * It's used by cpu_probe to distinguish between R3000A and R3081.
82 */
83static inline int cpu_has_confreg(void)
84{
85#ifdef CONFIG_CPU_R3000
86 extern unsigned long r3k_cache_size(unsigned long);
87 unsigned long size1, size2;
88 unsigned long cfg = read_c0_conf();
89
90 size1 = r3k_cache_size(ST0_ISC);
91 write_c0_conf(cfg ^ R30XX_CONF_AC);
92 size2 = r3k_cache_size(ST0_ISC);
93 write_c0_conf(cfg);
94 return size1 != size2;
95#else
96 return 0;
97#endif
98}
99
Robert Millanc094c992011-04-18 11:37:55 -0700100static inline void set_elf_platform(int cpu, const char *plat)
101{
102 if (cpu == 0)
103 __elf_platform = plat;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Get the FPU Implementation/Revision.
108 */
109static inline unsigned long cpu_get_fpu_id(void)
110{
111 unsigned long tmp, fpu_id;
112
113 tmp = read_c0_status();
114 __enable_fpu();
115 fpu_id = read_32bit_cp1_register(CP1_REVISION);
116 write_c0_status(tmp);
117 return fpu_id;
118}
119
120/*
121 * Check the CPU has an FPU the official way.
122 */
123static inline int __cpu_has_fpu(void)
124{
125 return ((cpu_get_fpu_id() & 0xff00) != FPIR_IMP_NONE);
126}
127
Guenter Roeck91dfc422010-02-02 08:52:20 -0800128static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
129{
130#ifdef __NEED_VMBITS_PROBE
David Daney5b7efa82010-02-08 12:27:00 -0800131 write_c0_entryhi(0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800132 back_to_back_c0_hazard();
David Daney5b7efa82010-02-08 12:27:00 -0800133 c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800134#endif
135}
136
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000137static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
Steven J. Hilla96102b2012-12-07 04:31:36 +0000138{
139 switch (isa) {
140 case MIPS_CPU_ISA_M64R2:
141 c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
142 case MIPS_CPU_ISA_M64R1:
143 c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
144 case MIPS_CPU_ISA_V:
145 c->isa_level |= MIPS_CPU_ISA_V;
146 case MIPS_CPU_ISA_IV:
147 c->isa_level |= MIPS_CPU_ISA_IV;
148 case MIPS_CPU_ISA_III:
Ralf Baechle1990e542013-06-26 17:06:34 +0200149 c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000150 break;
151
152 case MIPS_CPU_ISA_M32R2:
153 c->isa_level |= MIPS_CPU_ISA_M32R2;
154 case MIPS_CPU_ISA_M32R1:
155 c->isa_level |= MIPS_CPU_ISA_M32R1;
156 case MIPS_CPU_ISA_II:
157 c->isa_level |= MIPS_CPU_ISA_II;
Steven J. Hilla96102b2012-12-07 04:31:36 +0000158 break;
159 }
160}
161
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000162static char unknown_isa[] = KERN_ERR \
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100163 "Unsupported ISA type, c0.config0: %d.";
164
165static inline unsigned int decode_config0(struct cpuinfo_mips *c)
166{
167 unsigned int config0;
168 int isa;
169
170 config0 = read_c0_config();
171
172 if (((config0 & MIPS_CONF_MT) >> 7) == 1)
173 c->options |= MIPS_CPU_TLB;
174 isa = (config0 & MIPS_CONF_AT) >> 13;
175 switch (isa) {
176 case 0:
177 switch ((config0 & MIPS_CONF_AR) >> 10) {
178 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000179 set_isa(c, MIPS_CPU_ISA_M32R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100180 break;
181 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000182 set_isa(c, MIPS_CPU_ISA_M32R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100183 break;
184 default:
185 goto unknown;
186 }
187 break;
188 case 2:
189 switch ((config0 & MIPS_CONF_AR) >> 10) {
190 case 0:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000191 set_isa(c, MIPS_CPU_ISA_M64R1);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100192 break;
193 case 1:
Steven J. Hilla96102b2012-12-07 04:31:36 +0000194 set_isa(c, MIPS_CPU_ISA_M64R2);
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100195 break;
196 default:
197 goto unknown;
198 }
199 break;
200 default:
201 goto unknown;
202 }
203
204 return config0 & MIPS_CONF_M;
205
206unknown:
207 panic(unknown_isa, config0);
208}
209
210static inline unsigned int decode_config1(struct cpuinfo_mips *c)
211{
212 unsigned int config1;
213
214 config1 = read_c0_config1();
215
216 if (config1 & MIPS_CONF1_MD)
217 c->ases |= MIPS_ASE_MDMX;
218 if (config1 & MIPS_CONF1_WR)
219 c->options |= MIPS_CPU_WATCH;
220 if (config1 & MIPS_CONF1_CA)
221 c->ases |= MIPS_ASE_MIPS16;
222 if (config1 & MIPS_CONF1_EP)
223 c->options |= MIPS_CPU_EJTAG;
224 if (config1 & MIPS_CONF1_FP) {
225 c->options |= MIPS_CPU_FPU;
226 c->options |= MIPS_CPU_32FPR;
227 }
228 if (cpu_has_tlb)
229 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
230
231 return config1 & MIPS_CONF_M;
232}
233
234static inline unsigned int decode_config2(struct cpuinfo_mips *c)
235{
236 unsigned int config2;
237
238 config2 = read_c0_config2();
239
240 if (config2 & MIPS_CONF2_SL)
241 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
242
243 return config2 & MIPS_CONF_M;
244}
245
246static inline unsigned int decode_config3(struct cpuinfo_mips *c)
247{
248 unsigned int config3;
249
250 config3 = read_c0_config3();
251
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500252 if (config3 & MIPS_CONF3_SM) {
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100253 c->ases |= MIPS_ASE_SMARTMIPS;
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500254 c->options |= MIPS_CPU_RIXI;
255 }
256 if (config3 & MIPS_CONF3_RXI)
257 c->options |= MIPS_CPU_RIXI;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100258 if (config3 & MIPS_CONF3_DSP)
259 c->ases |= MIPS_ASE_DSP;
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500260 if (config3 & MIPS_CONF3_DSP2P)
261 c->ases |= MIPS_ASE_DSP2P;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100262 if (config3 & MIPS_CONF3_VINT)
263 c->options |= MIPS_CPU_VINT;
264 if (config3 & MIPS_CONF3_VEIC)
265 c->options |= MIPS_CPU_VEIC;
266 if (config3 & MIPS_CONF3_MT)
267 c->ases |= MIPS_ASE_MIPSMT;
268 if (config3 & MIPS_CONF3_ULRI)
269 c->options |= MIPS_CPU_ULRI;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000270 if (config3 & MIPS_CONF3_ISA)
271 c->options |= MIPS_CPU_MICROMIPS;
David Daney1e7decd2013-02-16 23:42:43 +0100272 if (config3 & MIPS_CONF3_VZ)
273 c->ases |= MIPS_ASE_VZ;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100274
275 return config3 & MIPS_CONF_M;
276}
277
278static inline unsigned int decode_config4(struct cpuinfo_mips *c)
279{
280 unsigned int config4;
281
282 config4 = read_c0_config4();
283
284 if ((config4 & MIPS_CONF4_MMUEXTDEF) == MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
285 && cpu_has_tlb)
286 c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
287
288 c->kscratch_mask = (config4 >> 16) & 0xff;
289
290 return config4 & MIPS_CONF_M;
291}
292
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000293static void decode_configs(struct cpuinfo_mips *c)
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100294{
295 int ok;
296
297 /* MIPS32 or MIPS64 compliant CPU. */
298 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
299 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
300
301 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
302
303 ok = decode_config0(c); /* Read Config registers. */
Ralf Baechle70342282013-01-22 12:59:30 +0100304 BUG_ON(!ok); /* Arch spec violation! */
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100305 if (ok)
306 ok = decode_config1(c);
307 if (ok)
308 ok = decode_config2(c);
309 if (ok)
310 ok = decode_config3(c);
311 if (ok)
312 ok = decode_config4(c);
313
314 mips_probe_watch_registers(c);
315
316 if (cpu_has_mips_r2)
317 c->core = read_c0_ebase() & 0x3ff;
318}
319
Ralf Baechle02cf2112005-10-01 13:06:32 +0100320#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 | MIPS_CPU_COUNTER)
322
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000323static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 switch (c->processor_id & 0xff00) {
326 case PRID_IMP_R2000:
327 c->cputype = CPU_R2000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000328 __cpu_name[cpu] = "R2000";
Ralf Baechle02cf2112005-10-01 13:06:32 +0100329 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500330 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (__cpu_has_fpu())
332 c->options |= MIPS_CPU_FPU;
333 c->tlbsize = 64;
334 break;
335 case PRID_IMP_R3000:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000336 if ((c->processor_id & 0xff) == PRID_REV_R3000A) {
337 if (cpu_has_confreg()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 c->cputype = CPU_R3081E;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000339 __cpu_name[cpu] = "R3081";
340 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 c->cputype = CPU_R3000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000342 __cpu_name[cpu] = "R3000A";
343 }
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000344 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 c->cputype = CPU_R3000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000346 __cpu_name[cpu] = "R3000";
347 }
Ralf Baechle02cf2112005-10-01 13:06:32 +0100348 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
Steven J. Hill03751e72012-05-10 23:21:18 -0500349 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (__cpu_has_fpu())
351 c->options |= MIPS_CPU_FPU;
352 c->tlbsize = 64;
353 break;
354 case PRID_IMP_R4000:
355 if (read_c0_config() & CONF_SC) {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000356 if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 c->cputype = CPU_R4400PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000358 __cpu_name[cpu] = "R4400PC";
359 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 c->cputype = CPU_R4000PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000361 __cpu_name[cpu] = "R4000PC";
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 } else {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000364 if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 c->cputype = CPU_R4400SC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000366 __cpu_name[cpu] = "R4400SC";
367 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 c->cputype = CPU_R4000SC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000369 __cpu_name[cpu] = "R4000SC";
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Steven J. Hilla96102b2012-12-07 04:31:36 +0000373 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500375 MIPS_CPU_WATCH | MIPS_CPU_VCE |
376 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 c->tlbsize = 48;
378 break;
379 case PRID_IMP_VR41XX:
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900380 set_isa(c, MIPS_CPU_ISA_III);
381 c->options = R4K_OPTS;
382 c->tlbsize = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 switch (c->processor_id & 0xf0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 case PRID_REV_VR4111:
385 c->cputype = CPU_VR4111;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000386 __cpu_name[cpu] = "NEC VR4111";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 case PRID_REV_VR4121:
389 c->cputype = CPU_VR4121;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000390 __cpu_name[cpu] = "NEC VR4121";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 break;
392 case PRID_REV_VR4122:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000393 if ((c->processor_id & 0xf) < 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 c->cputype = CPU_VR4122;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000395 __cpu_name[cpu] = "NEC VR4122";
396 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 c->cputype = CPU_VR4181A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000398 __cpu_name[cpu] = "NEC VR4181A";
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
401 case PRID_REV_VR4130:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000402 if ((c->processor_id & 0xf) < 0x4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 c->cputype = CPU_VR4131;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000404 __cpu_name[cpu] = "NEC VR4131";
405 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 c->cputype = CPU_VR4133;
Yoichi Yuasa9f91e502013-02-21 15:38:19 +0900407 c->options |= MIPS_CPU_LLSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000408 __cpu_name[cpu] = "NEC VR4133";
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 break;
411 default:
412 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
413 c->cputype = CPU_VR41XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000414 __cpu_name[cpu] = "NEC Vr41xx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 break;
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 case PRID_IMP_R4300:
419 c->cputype = CPU_R4300;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000420 __cpu_name[cpu] = "R4300";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000421 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500423 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 c->tlbsize = 32;
425 break;
426 case PRID_IMP_R4600:
427 c->cputype = CPU_R4600;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000428 __cpu_name[cpu] = "R4600";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000429 set_isa(c, MIPS_CPU_ISA_III);
Thiemo Seufer075e7502005-07-27 21:48:12 +0000430 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
431 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 c->tlbsize = 48;
433 break;
434 #if 0
Steven J. Hill03751e72012-05-10 23:21:18 -0500435 case PRID_IMP_R4650:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * This processor doesn't have an MMU, so it's not
438 * "real easy" to run Linux on it. It is left purely
439 * for documentation. Commented out because it shares
440 * it's c0_prid id number with the TX3900.
441 */
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000442 c->cputype = CPU_R4650;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000443 __cpu_name[cpu] = "R4650";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000444 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
Steven J. Hill03751e72012-05-10 23:21:18 -0500446 c->tlbsize = 48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 break;
448 #endif
449 case PRID_IMP_TX39:
Ralf Baechle02cf2112005-10-01 13:06:32 +0100450 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
453 c->cputype = CPU_TX3927;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000454 __cpu_name[cpu] = "TX3927";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 c->tlbsize = 64;
456 } else {
457 switch (c->processor_id & 0xff) {
458 case PRID_REV_TX3912:
459 c->cputype = CPU_TX3912;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000460 __cpu_name[cpu] = "TX3912";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 c->tlbsize = 32;
462 break;
463 case PRID_REV_TX3922:
464 c->cputype = CPU_TX3922;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000465 __cpu_name[cpu] = "TX3922";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 c->tlbsize = 64;
467 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 }
470 break;
471 case PRID_IMP_R4700:
472 c->cputype = CPU_R4700;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000473 __cpu_name[cpu] = "R4700";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000474 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500476 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 c->tlbsize = 48;
478 break;
479 case PRID_IMP_TX49:
480 c->cputype = CPU_TX49XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000481 __cpu_name[cpu] = "R49XX";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000482 set_isa(c, MIPS_CPU_ISA_III);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 c->options = R4K_OPTS | MIPS_CPU_LLSC;
484 if (!(c->processor_id & 0x08))
485 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
486 c->tlbsize = 48;
487 break;
488 case PRID_IMP_R5000:
489 c->cputype = CPU_R5000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000490 __cpu_name[cpu] = "R5000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000491 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500493 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 c->tlbsize = 48;
495 break;
496 case PRID_IMP_R5432:
497 c->cputype = CPU_R5432;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000498 __cpu_name[cpu] = "R5432";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000499 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500501 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 c->tlbsize = 48;
503 break;
504 case PRID_IMP_R5500:
505 c->cputype = CPU_R5500;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000506 __cpu_name[cpu] = "R5500";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000507 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500509 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 c->tlbsize = 48;
511 break;
512 case PRID_IMP_NEVADA:
513 c->cputype = CPU_NEVADA;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000514 __cpu_name[cpu] = "Nevada";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000515 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500517 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 c->tlbsize = 48;
519 break;
520 case PRID_IMP_R6000:
521 c->cputype = CPU_R6000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000522 __cpu_name[cpu] = "R6000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000523 set_isa(c, MIPS_CPU_ISA_II);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500525 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 c->tlbsize = 32;
527 break;
528 case PRID_IMP_R6000A:
529 c->cputype = CPU_R6000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000530 __cpu_name[cpu] = "R6000A";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000531 set_isa(c, MIPS_CPU_ISA_II);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
Steven J. Hill03751e72012-05-10 23:21:18 -0500533 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 c->tlbsize = 32;
535 break;
536 case PRID_IMP_RM7000:
537 c->cputype = CPU_RM7000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000538 __cpu_name[cpu] = "RM7000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000539 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500541 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /*
Ralf Baechle70342282013-01-22 12:59:30 +0100543 * Undocumented RM7000: Bit 29 in the info register of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * the RM7000 v2.0 indicates if the TLB has 48 or 64
545 * entries.
546 *
Ralf Baechle70342282013-01-22 12:59:30 +0100547 * 29 1 => 64 entry JTLB
548 * 0 => 48 entry JTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
550 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
551 break;
552 case PRID_IMP_RM9000:
553 c->cputype = CPU_RM9000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000554 __cpu_name[cpu] = "RM9000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000555 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
Steven J. Hill03751e72012-05-10 23:21:18 -0500557 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
559 * Bit 29 in the info register of the RM9000
560 * indicates if the TLB has 48 or 64 entries.
561 *
Ralf Baechle70342282013-01-22 12:59:30 +0100562 * 29 1 => 64 entry JTLB
563 * 0 => 48 entry JTLB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
566 break;
567 case PRID_IMP_R8000:
568 c->cputype = CPU_R8000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000569 __cpu_name[cpu] = "RM8000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000570 set_isa(c, MIPS_CPU_ISA_IV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500572 MIPS_CPU_FPU | MIPS_CPU_32FPR |
573 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
575 break;
576 case PRID_IMP_R10000:
577 c->cputype = CPU_R10000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000578 __cpu_name[cpu] = "R10000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000579 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000580 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500581 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500583 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 c->tlbsize = 64;
585 break;
586 case PRID_IMP_R12000:
587 c->cputype = CPU_R12000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000588 __cpu_name[cpu] = "R12000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000589 set_isa(c, MIPS_CPU_ISA_IV);
Ralf Baechle8b366122005-11-22 17:53:59 +0000590 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500591 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500593 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 c->tlbsize = 64;
595 break;
Kumba44d921b2006-05-16 22:23:59 -0400596 case PRID_IMP_R14000:
597 c->cputype = CPU_R14000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000598 __cpu_name[cpu] = "R14000";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000599 set_isa(c, MIPS_CPU_ISA_IV);
Kumba44d921b2006-05-16 22:23:59 -0400600 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Steven J. Hill03751e72012-05-10 23:21:18 -0500601 MIPS_CPU_FPU | MIPS_CPU_32FPR |
Kumba44d921b2006-05-16 22:23:59 -0400602 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
Steven J. Hill03751e72012-05-10 23:21:18 -0500603 MIPS_CPU_LLSC;
Kumba44d921b2006-05-16 22:23:59 -0400604 c->tlbsize = 64;
605 break;
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800606 case PRID_IMP_LOONGSON2:
607 c->cputype = CPU_LOONGSON2;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000608 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -0700609
610 switch (c->processor_id & PRID_REV_MASK) {
611 case PRID_REV_LOONGSON2E:
612 set_elf_platform(cpu, "loongson2e");
613 break;
614 case PRID_REV_LOONGSON2F:
615 set_elf_platform(cpu, "loongson2f");
616 break;
617 }
618
Steven J. Hilla96102b2012-12-07 04:31:36 +0000619 set_isa(c, MIPS_CPU_ISA_III);
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800620 c->options = R4K_OPTS |
621 MIPS_CPU_FPU | MIPS_CPU_LLSC |
622 MIPS_CPU_32FPR;
623 c->tlbsize = 64;
624 break;
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100625 case PRID_IMP_LOONGSON1:
626 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100628 c->cputype = CPU_LOONGSON1;
Ralf Baechleb4672d32005-12-08 14:04:24 +0000629
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100630 switch (c->processor_id & PRID_REV_MASK) {
631 case PRID_REV_LOONGSON1B:
632 __cpu_name[cpu] = "Loongson 1B";
Ralf Baechleb4672d32005-12-08 14:04:24 +0000633 break;
Ralf Baechleb4672d32005-12-08 14:04:24 +0000634 }
Kelvin Cheung2fa36392012-06-20 20:05:32 +0100635
Ralf Baechle41943182005-05-05 16:45:59 +0000636 break;
Ralf Baechle41943182005-05-05 16:45:59 +0000637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000640static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Ralf Baechle41943182005-05-05 16:45:59 +0000642 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 switch (c->processor_id & 0xff00) {
644 case PRID_IMP_4KC:
645 c->cputype = CPU_4KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000646 __cpu_name[cpu] = "MIPS 4Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648 case PRID_IMP_4KEC:
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000649 case PRID_IMP_4KECR2:
650 c->cputype = CPU_4KEC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000651 __cpu_name[cpu] = "MIPS 4KEc";
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000652 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 case PRID_IMP_4KSC:
Ralf Baechle8afcb5d2005-10-04 15:01:26 +0100654 case PRID_IMP_4KSD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 c->cputype = CPU_4KSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000656 __cpu_name[cpu] = "MIPS 4KSc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 break;
658 case PRID_IMP_5KC:
659 c->cputype = CPU_5KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000660 __cpu_name[cpu] = "MIPS 5Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
Leonid Yegoshin78d48032012-07-06 21:56:01 +0200662 case PRID_IMP_5KE:
663 c->cputype = CPU_5KE;
664 __cpu_name[cpu] = "MIPS 5KE";
665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 case PRID_IMP_20KC:
667 c->cputype = CPU_20KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000668 __cpu_name[cpu] = "MIPS 20Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670 case PRID_IMP_24K:
671 c->cputype = CPU_24K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000672 __cpu_name[cpu] = "MIPS 24Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
John Crispin42f3cae2013-01-11 22:44:10 +0100674 case PRID_IMP_24KE:
675 c->cputype = CPU_24K;
676 __cpu_name[cpu] = "MIPS 24KEc";
677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 case PRID_IMP_25KF:
679 c->cputype = CPU_25KF;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000680 __cpu_name[cpu] = "MIPS 25Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 break;
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000682 case PRID_IMP_34K:
683 c->cputype = CPU_34K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000684 __cpu_name[cpu] = "MIPS 34Kc";
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000685 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100686 case PRID_IMP_74K:
687 c->cputype = CPU_74K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000688 __cpu_name[cpu] = "MIPS 74Kc";
Chris Dearmanc6209532006-05-02 14:08:46 +0100689 break;
Steven J. Hill113c62d2012-07-06 23:56:00 +0200690 case PRID_IMP_M14KC:
691 c->cputype = CPU_M14KC;
692 __cpu_name[cpu] = "MIPS M14Kc";
693 break;
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000694 case PRID_IMP_M14KEC:
695 c->cputype = CPU_M14KEC;
696 __cpu_name[cpu] = "MIPS M14KEc";
697 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100698 case PRID_IMP_1004K:
699 c->cputype = CPU_1004K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000700 __cpu_name[cpu] = "MIPS 1004Kc";
Ralf Baechle39b8d522008-04-28 17:14:26 +0100701 break;
Steven J. Hill006a8512012-06-26 04:11:03 +0000702 case PRID_IMP_1074K:
703 c->cputype = CPU_74K;
704 __cpu_name[cpu] = "MIPS 1074Kc";
705 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Chris Dearman0b6d4972007-09-13 12:32:02 +0100707
708 spram_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000711static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Ralf Baechle41943182005-05-05 16:45:59 +0000713 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 switch (c->processor_id & 0xff00) {
715 case PRID_IMP_AU1_REV1:
716 case PRID_IMP_AU1_REV2:
Manuel Lauss270717a2009-03-25 17:49:28 +0100717 c->cputype = CPU_ALCHEMY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 switch ((c->processor_id >> 24) & 0xff) {
719 case 0:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000720 __cpu_name[cpu] = "Au1000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 break;
722 case 1:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000723 __cpu_name[cpu] = "Au1500";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
725 case 2:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000726 __cpu_name[cpu] = "Au1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 break;
728 case 3:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000729 __cpu_name[cpu] = "Au1550";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 break;
Pete Popove3ad1c22005-03-01 06:33:16 +0000731 case 4:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000732 __cpu_name[cpu] = "Au1200";
Manuel Lauss270717a2009-03-25 17:49:28 +0100733 if ((c->processor_id & 0xff) == 2)
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000734 __cpu_name[cpu] = "Au1250";
Manuel Lauss237cfee2007-12-06 09:07:55 +0100735 break;
736 case 5:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000737 __cpu_name[cpu] = "Au1210";
Pete Popove3ad1c22005-03-01 06:33:16 +0000738 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 default:
Manuel Lauss270717a2009-03-25 17:49:28 +0100740 __cpu_name[cpu] = "Au1xxx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 break;
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 break;
744 }
745}
746
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000747static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Ralf Baechle41943182005-05-05 16:45:59 +0000749 decode_configs(c);
Ralf Baechle02cf2112005-10-01 13:06:32 +0100750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 switch (c->processor_id & 0xff00) {
752 case PRID_IMP_SB1:
753 c->cputype = CPU_SB1;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000754 __cpu_name[cpu] = "SiByte SB1";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 /* FPU in pass1 is known to have issues. */
Ralf Baechleaa323742006-05-29 00:02:12 +0100756 if ((c->processor_id & 0xff) < 0x02)
Ralf Baechle010b8532006-01-29 18:42:08 +0000757 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 break;
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700759 case PRID_IMP_SB1A:
760 c->cputype = CPU_SB1A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000761 __cpu_name[cpu] = "SiByte SB1A";
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700762 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764}
765
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000766static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Ralf Baechle41943182005-05-05 16:45:59 +0000768 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 switch (c->processor_id & 0xff00) {
770 case PRID_IMP_SR71000:
771 c->cputype = CPU_SR71000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000772 __cpu_name[cpu] = "Sandcraft SR71000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 c->scache.ways = 8;
774 c->tlbsize = 64;
775 break;
776 }
777}
778
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000779static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
Pete Popovbdf21b12005-07-14 17:47:57 +0000780{
781 decode_configs(c);
782 switch (c->processor_id & 0xff00) {
783 case PRID_IMP_PR4450:
784 c->cputype = CPU_PR4450;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000785 __cpu_name[cpu] = "Philips PR4450";
Steven J. Hilla96102b2012-12-07 04:31:36 +0000786 set_isa(c, MIPS_CPU_ISA_M32R1);
Pete Popovbdf21b12005-07-14 17:47:57 +0000787 break;
Pete Popovbdf21b12005-07-14 17:47:57 +0000788 }
789}
790
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000791static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200792{
793 decode_configs(c);
794 switch (c->processor_id & 0xff00) {
Kevin Cernekee190fca32010-11-23 10:26:45 -0800795 case PRID_IMP_BMIPS32_REV4:
796 case PRID_IMP_BMIPS32_REV8:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700797 c->cputype = CPU_BMIPS32;
798 __cpu_name[cpu] = "Broadcom BMIPS32";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700799 set_elf_platform(cpu, "bmips32");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200800 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700801 case PRID_IMP_BMIPS3300:
802 case PRID_IMP_BMIPS3300_ALT:
803 case PRID_IMP_BMIPS3300_BUG:
804 c->cputype = CPU_BMIPS3300;
805 __cpu_name[cpu] = "Broadcom BMIPS3300";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700806 set_elf_platform(cpu, "bmips3300");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200807 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700808 case PRID_IMP_BMIPS43XX: {
809 int rev = c->processor_id & 0xff;
810
811 if (rev >= PRID_REV_BMIPS4380_LO &&
812 rev <= PRID_REV_BMIPS4380_HI) {
813 c->cputype = CPU_BMIPS4380;
814 __cpu_name[cpu] = "Broadcom BMIPS4380";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700815 set_elf_platform(cpu, "bmips4380");
Kevin Cernekee602977b2010-10-16 14:22:30 -0700816 } else {
817 c->cputype = CPU_BMIPS4350;
818 __cpu_name[cpu] = "Broadcom BMIPS4350";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700819 set_elf_platform(cpu, "bmips4350");
Maxime Bizon0de663e2009-08-18 13:23:37 +0100820 }
821 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200822 }
Kevin Cernekee602977b2010-10-16 14:22:30 -0700823 case PRID_IMP_BMIPS5000:
824 c->cputype = CPU_BMIPS5000;
825 __cpu_name[cpu] = "Broadcom BMIPS5000";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700826 set_elf_platform(cpu, "bmips5000");
Kevin Cernekee602977b2010-10-16 14:22:30 -0700827 c->options |= MIPS_CPU_ULRI;
828 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700829 }
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200830}
831
David Daney0dd47812008-12-11 15:33:26 -0800832static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
833{
834 decode_configs(c);
835 switch (c->processor_id & 0xff00) {
836 case PRID_IMP_CAVIUM_CN38XX:
837 case PRID_IMP_CAVIUM_CN31XX:
838 case PRID_IMP_CAVIUM_CN30XX:
David Daney6f329462010-02-10 15:12:48 -0800839 c->cputype = CPU_CAVIUM_OCTEON;
840 __cpu_name[cpu] = "Cavium Octeon";
841 goto platform;
David Daney0dd47812008-12-11 15:33:26 -0800842 case PRID_IMP_CAVIUM_CN58XX:
843 case PRID_IMP_CAVIUM_CN56XX:
844 case PRID_IMP_CAVIUM_CN50XX:
845 case PRID_IMP_CAVIUM_CN52XX:
David Daney6f329462010-02-10 15:12:48 -0800846 c->cputype = CPU_CAVIUM_OCTEON_PLUS;
847 __cpu_name[cpu] = "Cavium Octeon+";
848platform:
Robert Millanc094c992011-04-18 11:37:55 -0700849 set_elf_platform(cpu, "octeon");
David Daney0dd47812008-12-11 15:33:26 -0800850 break;
David Daneya1431b62011-09-24 02:29:54 +0200851 case PRID_IMP_CAVIUM_CN61XX:
David Daney0e56b382010-10-07 16:03:45 -0700852 case PRID_IMP_CAVIUM_CN63XX:
David Daneya1431b62011-09-24 02:29:54 +0200853 case PRID_IMP_CAVIUM_CN66XX:
854 case PRID_IMP_CAVIUM_CN68XX:
David Daney0e56b382010-10-07 16:03:45 -0700855 c->cputype = CPU_CAVIUM_OCTEON2;
856 __cpu_name[cpu] = "Cavium Octeon II";
Robert Millanc094c992011-04-18 11:37:55 -0700857 set_elf_platform(cpu, "octeon2");
David Daney0e56b382010-10-07 16:03:45 -0700858 break;
David Daney0dd47812008-12-11 15:33:26 -0800859 default:
860 printk(KERN_INFO "Unknown Octeon chip!\n");
861 c->cputype = CPU_UNKNOWN;
862 break;
863 }
864}
865
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000866static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
867{
868 decode_configs(c);
869 /* JZRISC does not implement the CP0 counter. */
870 c->options &= ~MIPS_CPU_COUNTER;
871 switch (c->processor_id & 0xff00) {
872 case PRID_IMP_JZRISC:
873 c->cputype = CPU_JZRISC;
874 __cpu_name[cpu] = "Ingenic JZRISC";
875 break;
876 default:
877 panic("Unknown Ingenic Processor ID!");
878 break;
879 }
880}
881
Jayachandran Ca7117c62011-05-11 12:04:58 +0530882static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
883{
884 decode_configs(c);
885
Manuel Lauss809f36c2011-11-01 20:03:30 +0100886 if ((c->processor_id & 0xff00) == PRID_IMP_NETLOGIC_AU13XX) {
887 c->cputype = CPU_ALCHEMY;
888 __cpu_name[cpu] = "Au1300";
889 /* following stuff is not for Alchemy */
890 return;
891 }
892
Ralf Baechle70342282013-01-22 12:59:30 +0100893 c->options = (MIPS_CPU_TLB |
894 MIPS_CPU_4KEX |
Jayachandran Ca7117c62011-05-11 12:04:58 +0530895 MIPS_CPU_COUNTER |
Ralf Baechle70342282013-01-22 12:59:30 +0100896 MIPS_CPU_DIVEC |
897 MIPS_CPU_WATCH |
898 MIPS_CPU_EJTAG |
Jayachandran Ca7117c62011-05-11 12:04:58 +0530899 MIPS_CPU_LLSC);
900
901 switch (c->processor_id & 0xff00) {
Jayachandran C2aa54b22011-11-16 00:21:29 +0000902 case PRID_IMP_NETLOGIC_XLP8XX:
903 case PRID_IMP_NETLOGIC_XLP3XX:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +0000904 c->cputype = CPU_XLP;
905 __cpu_name[cpu] = "Netlogic XLP";
906 break;
907
Jayachandran Ca7117c62011-05-11 12:04:58 +0530908 case PRID_IMP_NETLOGIC_XLR732:
909 case PRID_IMP_NETLOGIC_XLR716:
910 case PRID_IMP_NETLOGIC_XLR532:
911 case PRID_IMP_NETLOGIC_XLR308:
912 case PRID_IMP_NETLOGIC_XLR532C:
913 case PRID_IMP_NETLOGIC_XLR516C:
914 case PRID_IMP_NETLOGIC_XLR508C:
915 case PRID_IMP_NETLOGIC_XLR308C:
916 c->cputype = CPU_XLR;
917 __cpu_name[cpu] = "Netlogic XLR";
918 break;
919
920 case PRID_IMP_NETLOGIC_XLS608:
921 case PRID_IMP_NETLOGIC_XLS408:
922 case PRID_IMP_NETLOGIC_XLS404:
923 case PRID_IMP_NETLOGIC_XLS208:
924 case PRID_IMP_NETLOGIC_XLS204:
925 case PRID_IMP_NETLOGIC_XLS108:
926 case PRID_IMP_NETLOGIC_XLS104:
927 case PRID_IMP_NETLOGIC_XLS616B:
928 case PRID_IMP_NETLOGIC_XLS608B:
929 case PRID_IMP_NETLOGIC_XLS416B:
930 case PRID_IMP_NETLOGIC_XLS412B:
931 case PRID_IMP_NETLOGIC_XLS408B:
932 case PRID_IMP_NETLOGIC_XLS404B:
933 c->cputype = CPU_XLR;
934 __cpu_name[cpu] = "Netlogic XLS";
935 break;
936
937 default:
Jayachandran Ca3d4fb22011-11-16 00:21:20 +0000938 pr_info("Unknown Netlogic chip id [%02x]!\n",
Jayachandran Ca7117c62011-05-11 12:04:58 +0530939 c->processor_id);
940 c->cputype = CPU_XLR;
941 break;
942 }
943
Jayachandran Ca3d4fb22011-11-16 00:21:20 +0000944 if (c->cputype == CPU_XLP) {
Steven J. Hilla96102b2012-12-07 04:31:36 +0000945 set_isa(c, MIPS_CPU_ISA_M64R2);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +0000946 c->options |= (MIPS_CPU_FPU | MIPS_CPU_ULRI | MIPS_CPU_MCHECK);
947 /* This will be updated again after all threads are woken up */
948 c->tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
949 } else {
Steven J. Hilla96102b2012-12-07 04:31:36 +0000950 set_isa(c, MIPS_CPU_ISA_M64R1);
Jayachandran Ca3d4fb22011-11-16 00:21:20 +0000951 c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
952 }
Jayachandran C7777b932013-06-11 14:41:35 +0000953 c->kscratch_mask = 0xf;
Jayachandran Ca7117c62011-05-11 12:04:58 +0530954}
955
David Daney949e51b2010-10-14 11:32:33 -0700956#ifdef CONFIG_64BIT
957/* For use by uaccess.h */
958u64 __ua_limit;
959EXPORT_SYMBOL(__ua_limit);
960#endif
961
Ralf Baechle9966db252007-10-11 23:46:17 +0100962const char *__cpu_name[NR_CPUS];
David Daney874fd3b2010-01-28 16:52:12 -0800963const char *__elf_platform;
Ralf Baechle9966db252007-10-11 23:46:17 +0100964
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000965void cpu_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle9966db252007-10-11 23:46:17 +0100968 unsigned int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Ralf Baechle70342282013-01-22 12:59:30 +0100970 c->processor_id = PRID_IMP_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 c->fpu_id = FPIR_IMP_NONE;
972 c->cputype = CPU_UNKNOWN;
973
974 c->processor_id = read_c0_prid();
975 switch (c->processor_id & 0xff0000) {
976 case PRID_COMP_LEGACY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000977 cpu_probe_legacy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
979 case PRID_COMP_MIPS:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000980 cpu_probe_mips(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 break;
982 case PRID_COMP_ALCHEMY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000983 cpu_probe_alchemy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 break;
985 case PRID_COMP_SIBYTE:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000986 cpu_probe_sibyte(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200988 case PRID_COMP_BROADCOM:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000989 cpu_probe_broadcom(c, cpu);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200990 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 case PRID_COMP_SANDCRAFT:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000992 cpu_probe_sandcraft(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 break;
Daniel Lairda92b0582008-03-06 09:07:18 +0000994 case PRID_COMP_NXP:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000995 cpu_probe_nxp(c, cpu);
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000996 break;
David Daney0dd47812008-12-11 15:33:26 -0800997 case PRID_COMP_CAVIUM:
998 cpu_probe_cavium(c, cpu);
999 break;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001000 case PRID_COMP_INGENIC:
1001 cpu_probe_ingenic(c, cpu);
1002 break;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301003 case PRID_COMP_NETLOGIC:
1004 cpu_probe_netlogic(c, cpu);
1005 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001007
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001008 BUG_ON(!__cpu_name[cpu]);
1009 BUG_ON(c->cputype == CPU_UNKNOWN);
1010
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001011 /*
1012 * Platform code can force the cpu type to optimize code
1013 * generation. In that case be sure the cpu type is correctly
1014 * manually setup otherwise it could trigger some nasty bugs.
1015 */
1016 BUG_ON(current_cpu_type() != c->cputype);
1017
Kevin Cernekee0103d232010-05-02 14:43:52 -07001018 if (mips_fpu_disabled)
1019 c->options &= ~MIPS_CPU_FPU;
1020
1021 if (mips_dsp_disabled)
Steven J. Hillee80f7c72012-08-03 10:26:04 -05001022 c->ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
Kevin Cernekee0103d232010-05-02 14:43:52 -07001023
Ralf Baechle41943182005-05-05 16:45:59 +00001024 if (c->options & MIPS_CPU_FPU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 c->fpu_id = cpu_get_fpu_id();
Ralf Baechle41943182005-05-05 16:45:59 +00001026
Deng-Cheng Zhuadb37892013-04-01 18:14:28 +00001027 if (c->isa_level & (MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M32R2 |
1028 MIPS_CPU_ISA_M64R1 | MIPS_CPU_ISA_M64R2)) {
Ralf Baechle41943182005-05-05 16:45:59 +00001029 if (c->fpu_id & MIPS_FPIR_3D)
1030 c->ases |= MIPS_ASE_MIPS3D;
1031 }
1032 }
Ralf Baechle9966db252007-10-11 23:46:17 +01001033
Al Cooperda4b62c2012-07-13 16:44:51 -04001034 if (cpu_has_mips_r2) {
Ralf Baechlef6771db2007-11-08 18:02:29 +00001035 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Al Cooperda4b62c2012-07-13 16:44:51 -04001036 /* R2 has Performance Counter Interrupt indicator */
1037 c->options |= MIPS_CPU_PCI;
1038 }
Ralf Baechlef6771db2007-11-08 18:02:29 +00001039 else
1040 c->srsets = 1;
Guenter Roeck91dfc422010-02-02 08:52:20 -08001041
1042 cpu_probe_vmbits(c);
David Daney949e51b2010-10-14 11:32:33 -07001043
1044#ifdef CONFIG_64BIT
1045 if (cpu == 0)
1046 __ua_limit = ~((1ull << cpu_vmbits) - 1);
1047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001050void cpu_report(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct cpuinfo_mips *c = &current_cpu_data;
1053
Ralf Baechle9966db252007-10-11 23:46:17 +01001054 printk(KERN_INFO "CPU revision is: %08x (%s)\n",
1055 c->processor_id, cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (c->options & MIPS_CPU_FPU)
Ralf Baechle9966db252007-10-11 23:46:17 +01001057 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}