blob: aa327a755982e86134fd88b014d42781ff6d6b7b [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 Baechle41943182005-05-05 16:45:59 +00007 * Copyright (C) 2001, 2004 MIPS 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>
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080019#include <linux/module.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>
25#include <asm/system.h>
David Daney654f57b2008-09-23 00:07:16 -070026#include <asm/watch.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * Not all of the MIPS CPUs have the "wait" instruction available. Moreover,
32 * the implementation of the "wait" feature differs between CPU families. This
33 * points to the function that implements CPU specific wait.
34 * The wait instruction stops the pipeline and reduces the power consumption of
35 * the CPU very much.
36 */
Ralf Baechle982f6ff2009-09-17 02:25:07 +020037void (*cpu_wait)(void);
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080038EXPORT_SYMBOL(cpu_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40static void r3081_wait(void)
41{
42 unsigned long cfg = read_c0_conf();
43 write_c0_conf(cfg | R30XX_CONF_HALT);
44}
45
46static void r39xx_wait(void)
47{
Atsushi Nemoto60a6c372006-06-08 01:09:01 +090048 local_irq_disable();
49 if (!need_resched())
50 write_c0_conf(read_c0_conf() | TX39_CONF_HALT);
51 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
Atsushi Nemotoc65a5482007-11-12 02:05:18 +090054extern void r4k_wait(void);
Atsushi Nemoto60a6c372006-06-08 01:09:01 +090055
56/*
57 * This variant is preferable as it allows testing need_resched and going to
58 * sleep depending on the outcome atomically. Unfortunately the "It is
59 * implementation-dependent whether the pipeline restarts when a non-enabled
60 * interrupt is requested" restriction in the MIPS32/MIPS64 architecture makes
61 * using this version a gamble.
62 */
Kevin D. Kissell8531a352008-09-09 21:48:52 +020063void r4k_wait_irqoff(void)
Atsushi Nemoto60a6c372006-06-08 01:09:01 +090064{
65 local_irq_disable();
66 if (!need_resched())
Kevin D. Kissell8531a352008-09-09 21:48:52 +020067 __asm__(" .set push \n"
68 " .set mips3 \n"
Atsushi Nemoto60a6c372006-06-08 01:09:01 +090069 " wait \n"
Kevin D. Kissell8531a352008-09-09 21:48:52 +020070 " .set pop \n");
Atsushi Nemoto60a6c372006-06-08 01:09:01 +090071 local_irq_enable();
Kevin D. Kissell8531a352008-09-09 21:48:52 +020072 __asm__(" .globl __pastwait \n"
73 "__pastwait: \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
Ralf Baechle5a812992007-07-17 18:49:48 +010076/*
77 * The RM7000 variant has to handle erratum 38. The workaround is to not
78 * have any pending stores when the WAIT instruction is executed.
79 */
80static void rm7k_wait_irqoff(void)
81{
82 local_irq_disable();
83 if (!need_resched())
84 __asm__(
85 " .set push \n"
86 " .set mips3 \n"
87 " .set noat \n"
88 " mfc0 $1, $12 \n"
89 " sync \n"
90 " mtc0 $1, $12 # stalls until W stage \n"
91 " wait \n"
92 " mtc0 $1, $12 # stalls until W stage \n"
93 " .set pop \n");
94 local_irq_enable();
95}
96
Manuel Lauss2882b0c2009-08-22 18:09:27 +020097/*
98 * The Au1xxx wait is available only if using 32khz counter or
99 * external timer source, but specifically not CP0 Counter.
100 * alchemy/common/time.c may override cpu_wait!
101 */
Pete Popov494900a2005-04-07 00:42:10 +0000102static void au1k_wait(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Atsushi Nemoto60a6c372006-06-08 01:09:01 +0900104 __asm__(" .set mips3 \n"
105 " cache 0x14, 0(%0) \n"
106 " cache 0x14, 32(%0) \n"
107 " sync \n"
108 " nop \n"
109 " wait \n"
110 " nop \n"
111 " nop \n"
112 " nop \n"
113 " nop \n"
114 " .set mips0 \n"
Ralf Baechle10f650d2005-05-25 13:32:49 +0000115 : : "r" (au1k_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Ralf Baechle982f6ff2009-09-17 02:25:07 +0200118static int __initdata nowait;
Ralf Baechle55d04df2005-07-13 19:22:45 +0000119
Atsushi Nemotof49a7472007-02-18 01:02:14 +0900120static int __init wait_disable(char *s)
Ralf Baechle55d04df2005-07-13 19:22:45 +0000121{
122 nowait = 1;
123
124 return 1;
125}
126
127__setup("nowait", wait_disable);
128
Kevin Cernekee0103d232010-05-02 14:43:52 -0700129static int __cpuinitdata mips_fpu_disabled;
130
131static int __init fpu_disable(char *s)
132{
133 cpu_data[0].options &= ~MIPS_CPU_FPU;
134 mips_fpu_disabled = 1;
135
136 return 1;
137}
138
139__setup("nofpu", fpu_disable);
140
141int __cpuinitdata mips_dsp_disabled;
142
143static int __init dsp_disable(char *s)
144{
145 cpu_data[0].ases &= ~MIPS_ASE_DSP;
146 mips_dsp_disabled = 1;
147
148 return 1;
149}
150
151__setup("nodsp", dsp_disable);
152
Atsushi Nemotoc65a5482007-11-12 02:05:18 +0900153void __init check_wait(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct cpuinfo_mips *c = &current_cpu_data;
156
Ralf Baechle55d04df2005-07-13 19:22:45 +0000157 if (nowait) {
Ralf Baechlec2379232006-11-30 01:14:44 +0000158 printk("Wait instruction disabled.\n");
Ralf Baechle55d04df2005-07-13 19:22:45 +0000159 return;
160 }
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 switch (c->cputype) {
163 case CPU_R3081:
164 case CPU_R3081E:
165 cpu_wait = r3081_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167 case CPU_TX3927:
168 cpu_wait = r39xx_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 break;
170 case CPU_R4200:
171/* case CPU_R4300: */
172 case CPU_R4600:
173 case CPU_R4640:
174 case CPU_R4650:
175 case CPU_R4700:
176 case CPU_R5000:
Shinya Kuribayashia644b272009-03-03 18:05:51 +0900177 case CPU_R5500:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 case CPU_NEVADA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 case CPU_4KC:
180 case CPU_4KEC:
181 case CPU_4KSC:
182 case CPU_5KC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 case CPU_25KF:
Ralf Baechle4b3e9752007-06-21 00:22:34 +0100184 case CPU_PR4450:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700185 case CPU_BMIPS3300:
186 case CPU_BMIPS4350:
187 case CPU_BMIPS4380:
188 case CPU_BMIPS5000:
David Daney0dd47812008-12-11 15:33:26 -0800189 case CPU_CAVIUM_OCTEON:
David Daney6f329462010-02-10 15:12:48 -0800190 case CPU_CAVIUM_OCTEON_PLUS:
David Daney0e56b382010-10-07 16:03:45 -0700191 case CPU_CAVIUM_OCTEON2:
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000192 case CPU_JZRISC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 cpu_wait = r4k_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
Ralf Baechle4b3e9752007-06-21 00:22:34 +0100195
Ralf Baechle5a812992007-07-17 18:49:48 +0100196 case CPU_RM7000:
197 cpu_wait = rm7k_wait_irqoff;
198 break;
199
Ralf Baechle4b3e9752007-06-21 00:22:34 +0100200 case CPU_24K:
201 case CPU_34K:
Ralf Baechle39b8d522008-04-28 17:14:26 +0100202 case CPU_1004K:
Ralf Baechle4b3e9752007-06-21 00:22:34 +0100203 cpu_wait = r4k_wait;
204 if (read_c0_config7() & MIPS_CONF7_WII)
205 cpu_wait = r4k_wait_irqoff;
206 break;
207
208 case CPU_74K:
209 cpu_wait = r4k_wait;
210 if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0))
211 cpu_wait = r4k_wait_irqoff;
212 break;
213
Atsushi Nemoto60a6c372006-06-08 01:09:01 +0900214 case CPU_TX49XX:
215 cpu_wait = r4k_wait_irqoff;
Atsushi Nemoto60a6c372006-06-08 01:09:01 +0900216 break;
Manuel Lauss270717a2009-03-25 17:49:28 +0100217 case CPU_ALCHEMY:
Manuel Lauss0c694de2008-12-21 09:26:23 +0100218 cpu_wait = au1k_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
Ralf Baechlec8eae712007-06-12 13:04:09 +0100220 case CPU_20KC:
221 /*
222 * WAIT on Rev1.0 has E1, E2, E3 and E16.
223 * WAIT on Rev2.0 and Rev3.0 has E16.
224 * Rev3.1 WAIT is nop, why bother
225 */
226 if ((c->processor_id & 0xff) <= 0x64)
227 break;
228
Ralf Baechle50da4692007-09-14 19:08:43 +0100229 /*
230 * Another rev is incremeting c0_count at a reduced clock
231 * rate while in WAIT mode. So we basically have the choice
232 * between using the cp0 timer as clocksource or avoiding
233 * the WAIT instruction. Until more details are known,
234 * disable the use of WAIT for 20Kc entirely.
235 cpu_wait = r4k_wait;
236 */
Ralf Baechlec8eae712007-06-12 13:04:09 +0100237 break;
Ralf Baechle441ee342006-06-02 11:48:11 +0100238 case CPU_RM9000:
Ralf Baechlec2379232006-11-30 01:14:44 +0000239 if ((c->processor_id & 0x00ff) >= 0x40)
Ralf Baechle441ee342006-06-02 11:48:11 +0100240 cpu_wait = r4k_wait;
Ralf Baechle441ee342006-06-02 11:48:11 +0100241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 }
245}
246
Marc St-Jean9267a302007-06-14 15:55:31 -0600247static inline void check_errata(void)
248{
249 struct cpuinfo_mips *c = &current_cpu_data;
250
251 switch (c->cputype) {
252 case CPU_34K:
253 /*
254 * Erratum "RPS May Cause Incorrect Instruction Execution"
255 * This code only handles VPE0, any SMP/SMTC/RTOS code
256 * making use of VPE1 will be responsable for that VPE.
257 */
258 if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
259 write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
260 break;
261 default:
262 break;
263 }
264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266void __init check_bugs32(void)
267{
Marc St-Jean9267a302007-06-14 15:55:31 -0600268 check_errata();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/*
272 * Probe whether cpu has config register by trying to play with
273 * alternate cache bit and see whether it matters.
274 * It's used by cpu_probe to distinguish between R3000A and R3081.
275 */
276static inline int cpu_has_confreg(void)
277{
278#ifdef CONFIG_CPU_R3000
279 extern unsigned long r3k_cache_size(unsigned long);
280 unsigned long size1, size2;
281 unsigned long cfg = read_c0_conf();
282
283 size1 = r3k_cache_size(ST0_ISC);
284 write_c0_conf(cfg ^ R30XX_CONF_AC);
285 size2 = r3k_cache_size(ST0_ISC);
286 write_c0_conf(cfg);
287 return size1 != size2;
288#else
289 return 0;
290#endif
291}
292
Robert Millanc094c992011-04-18 11:37:55 -0700293static inline void set_elf_platform(int cpu, const char *plat)
294{
295 if (cpu == 0)
296 __elf_platform = plat;
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/*
300 * Get the FPU Implementation/Revision.
301 */
302static inline unsigned long cpu_get_fpu_id(void)
303{
304 unsigned long tmp, fpu_id;
305
306 tmp = read_c0_status();
307 __enable_fpu();
308 fpu_id = read_32bit_cp1_register(CP1_REVISION);
309 write_c0_status(tmp);
310 return fpu_id;
311}
312
313/*
314 * Check the CPU has an FPU the official way.
315 */
316static inline int __cpu_has_fpu(void)
317{
318 return ((cpu_get_fpu_id() & 0xff00) != FPIR_IMP_NONE);
319}
320
Guenter Roeck91dfc422010-02-02 08:52:20 -0800321static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
322{
323#ifdef __NEED_VMBITS_PROBE
David Daney5b7efa82010-02-08 12:27:00 -0800324 write_c0_entryhi(0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800325 back_to_back_c0_hazard();
David Daney5b7efa82010-02-08 12:27:00 -0800326 c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
Guenter Roeck91dfc422010-02-02 08:52:20 -0800327#endif
328}
329
Ralf Baechle02cf2112005-10-01 13:06:32 +0100330#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 | MIPS_CPU_COUNTER)
332
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000333static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 switch (c->processor_id & 0xff00) {
336 case PRID_IMP_R2000:
337 c->cputype = CPU_R2000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000338 __cpu_name[cpu] = "R2000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 c->isa_level = MIPS_CPU_ISA_I;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100340 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
341 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (__cpu_has_fpu())
343 c->options |= MIPS_CPU_FPU;
344 c->tlbsize = 64;
345 break;
346 case PRID_IMP_R3000:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000347 if ((c->processor_id & 0xff) == PRID_REV_R3000A) {
348 if (cpu_has_confreg()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 c->cputype = CPU_R3081E;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000350 __cpu_name[cpu] = "R3081";
351 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 c->cputype = CPU_R3000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000353 __cpu_name[cpu] = "R3000A";
354 }
355 break;
356 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 c->cputype = CPU_R3000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000358 __cpu_name[cpu] = "R3000";
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 c->isa_level = MIPS_CPU_ISA_I;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100361 c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
362 MIPS_CPU_NOFPUEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (__cpu_has_fpu())
364 c->options |= MIPS_CPU_FPU;
365 c->tlbsize = 64;
366 break;
367 case PRID_IMP_R4000:
368 if (read_c0_config() & CONF_SC) {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000369 if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 c->cputype = CPU_R4400PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000371 __cpu_name[cpu] = "R4400PC";
372 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 c->cputype = CPU_R4000PC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000374 __cpu_name[cpu] = "R4000PC";
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 } else {
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000377 if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 c->cputype = CPU_R4400SC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000379 __cpu_name[cpu] = "R4400SC";
380 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 c->cputype = CPU_R4000SC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000382 __cpu_name[cpu] = "R4000SC";
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 c->isa_level = MIPS_CPU_ISA_III;
387 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
388 MIPS_CPU_WATCH | MIPS_CPU_VCE |
389 MIPS_CPU_LLSC;
390 c->tlbsize = 48;
391 break;
392 case PRID_IMP_VR41XX:
393 switch (c->processor_id & 0xf0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 case PRID_REV_VR4111:
395 c->cputype = CPU_VR4111;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000396 __cpu_name[cpu] = "NEC VR4111";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 case PRID_REV_VR4121:
399 c->cputype = CPU_VR4121;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000400 __cpu_name[cpu] = "NEC VR4121";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 break;
402 case PRID_REV_VR4122:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000403 if ((c->processor_id & 0xf) < 0x3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 c->cputype = CPU_VR4122;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000405 __cpu_name[cpu] = "NEC VR4122";
406 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 c->cputype = CPU_VR4181A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000408 __cpu_name[cpu] = "NEC VR4181A";
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 break;
411 case PRID_REV_VR4130:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000412 if ((c->processor_id & 0xf) < 0x4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 c->cputype = CPU_VR4131;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000414 __cpu_name[cpu] = "NEC VR4131";
415 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 c->cputype = CPU_VR4133;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000417 __cpu_name[cpu] = "NEC VR4133";
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 break;
420 default:
421 printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
422 c->cputype = CPU_VR41XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000423 __cpu_name[cpu] = "NEC Vr41xx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
425 }
426 c->isa_level = MIPS_CPU_ISA_III;
427 c->options = R4K_OPTS;
428 c->tlbsize = 32;
429 break;
430 case PRID_IMP_R4300:
431 c->cputype = CPU_R4300;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000432 __cpu_name[cpu] = "R4300";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 c->isa_level = MIPS_CPU_ISA_III;
434 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
435 MIPS_CPU_LLSC;
436 c->tlbsize = 32;
437 break;
438 case PRID_IMP_R4600:
439 c->cputype = CPU_R4600;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000440 __cpu_name[cpu] = "R4600";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 c->isa_level = MIPS_CPU_ISA_III;
Thiemo Seufer075e7502005-07-27 21:48:12 +0000442 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
443 MIPS_CPU_LLSC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 c->tlbsize = 48;
445 break;
446 #if 0
447 case PRID_IMP_R4650:
448 /*
449 * This processor doesn't have an MMU, so it's not
450 * "real easy" to run Linux on it. It is left purely
451 * for documentation. Commented out because it shares
452 * it's c0_prid id number with the TX3900.
453 */
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000454 c->cputype = CPU_R4650;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000455 __cpu_name[cpu] = "R4650";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 c->isa_level = MIPS_CPU_ISA_III;
457 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
458 c->tlbsize = 48;
459 break;
460 #endif
461 case PRID_IMP_TX39:
462 c->isa_level = MIPS_CPU_ISA_I;
Ralf Baechle02cf2112005-10-01 13:06:32 +0100463 c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
466 c->cputype = CPU_TX3927;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000467 __cpu_name[cpu] = "TX3927";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 c->tlbsize = 64;
469 } else {
470 switch (c->processor_id & 0xff) {
471 case PRID_REV_TX3912:
472 c->cputype = CPU_TX3912;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000473 __cpu_name[cpu] = "TX3912";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 c->tlbsize = 32;
475 break;
476 case PRID_REV_TX3922:
477 c->cputype = CPU_TX3922;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000478 __cpu_name[cpu] = "TX3922";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 c->tlbsize = 64;
480 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482 }
483 break;
484 case PRID_IMP_R4700:
485 c->cputype = CPU_R4700;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000486 __cpu_name[cpu] = "R4700";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 c->isa_level = MIPS_CPU_ISA_III;
488 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
489 MIPS_CPU_LLSC;
490 c->tlbsize = 48;
491 break;
492 case PRID_IMP_TX49:
493 c->cputype = CPU_TX49XX;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000494 __cpu_name[cpu] = "R49XX";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 c->isa_level = MIPS_CPU_ISA_III;
496 c->options = R4K_OPTS | MIPS_CPU_LLSC;
497 if (!(c->processor_id & 0x08))
498 c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
499 c->tlbsize = 48;
500 break;
501 case PRID_IMP_R5000:
502 c->cputype = CPU_R5000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000503 __cpu_name[cpu] = "R5000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 c->isa_level = MIPS_CPU_ISA_IV;
505 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
506 MIPS_CPU_LLSC;
507 c->tlbsize = 48;
508 break;
509 case PRID_IMP_R5432:
510 c->cputype = CPU_R5432;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000511 __cpu_name[cpu] = "R5432";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 c->isa_level = MIPS_CPU_ISA_IV;
513 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
514 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
515 c->tlbsize = 48;
516 break;
517 case PRID_IMP_R5500:
518 c->cputype = CPU_R5500;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000519 __cpu_name[cpu] = "R5500";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 c->isa_level = MIPS_CPU_ISA_IV;
521 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
522 MIPS_CPU_WATCH | MIPS_CPU_LLSC;
523 c->tlbsize = 48;
524 break;
525 case PRID_IMP_NEVADA:
526 c->cputype = CPU_NEVADA;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000527 __cpu_name[cpu] = "Nevada";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 c->isa_level = MIPS_CPU_ISA_IV;
529 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
530 MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
531 c->tlbsize = 48;
532 break;
533 case PRID_IMP_R6000:
534 c->cputype = CPU_R6000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000535 __cpu_name[cpu] = "R6000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 c->isa_level = MIPS_CPU_ISA_II;
537 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
538 MIPS_CPU_LLSC;
539 c->tlbsize = 32;
540 break;
541 case PRID_IMP_R6000A:
542 c->cputype = CPU_R6000A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000543 __cpu_name[cpu] = "R6000A";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 c->isa_level = MIPS_CPU_ISA_II;
545 c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
546 MIPS_CPU_LLSC;
547 c->tlbsize = 32;
548 break;
549 case PRID_IMP_RM7000:
550 c->cputype = CPU_RM7000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000551 __cpu_name[cpu] = "RM7000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 c->isa_level = MIPS_CPU_ISA_IV;
553 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
554 MIPS_CPU_LLSC;
555 /*
556 * Undocumented RM7000: Bit 29 in the info register of
557 * the RM7000 v2.0 indicates if the TLB has 48 or 64
558 * entries.
559 *
560 * 29 1 => 64 entry JTLB
561 * 0 => 48 entry JTLB
562 */
563 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
564 break;
565 case PRID_IMP_RM9000:
566 c->cputype = CPU_RM9000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000567 __cpu_name[cpu] = "RM9000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 c->isa_level = MIPS_CPU_ISA_IV;
569 c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
570 MIPS_CPU_LLSC;
571 /*
572 * Bit 29 in the info register of the RM9000
573 * indicates if the TLB has 48 or 64 entries.
574 *
575 * 29 1 => 64 entry JTLB
576 * 0 => 48 entry JTLB
577 */
578 c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
579 break;
580 case PRID_IMP_R8000:
581 c->cputype = CPU_R8000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000582 __cpu_name[cpu] = "RM8000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 c->isa_level = MIPS_CPU_ISA_IV;
584 c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
585 MIPS_CPU_FPU | MIPS_CPU_32FPR |
586 MIPS_CPU_LLSC;
587 c->tlbsize = 384; /* has weird TLB: 3-way x 128 */
588 break;
589 case PRID_IMP_R10000:
590 c->cputype = CPU_R10000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000591 __cpu_name[cpu] = "R10000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 c->isa_level = MIPS_CPU_ISA_IV;
Ralf Baechle8b366122005-11-22 17:53:59 +0000593 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 MIPS_CPU_FPU | MIPS_CPU_32FPR |
595 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
596 MIPS_CPU_LLSC;
597 c->tlbsize = 64;
598 break;
599 case PRID_IMP_R12000:
600 c->cputype = CPU_R12000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000601 __cpu_name[cpu] = "R12000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 c->isa_level = MIPS_CPU_ISA_IV;
Ralf Baechle8b366122005-11-22 17:53:59 +0000603 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 MIPS_CPU_FPU | MIPS_CPU_32FPR |
605 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
606 MIPS_CPU_LLSC;
607 c->tlbsize = 64;
608 break;
Kumba44d921b2006-05-16 22:23:59 -0400609 case PRID_IMP_R14000:
610 c->cputype = CPU_R14000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000611 __cpu_name[cpu] = "R14000";
Kumba44d921b2006-05-16 22:23:59 -0400612 c->isa_level = MIPS_CPU_ISA_IV;
613 c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
614 MIPS_CPU_FPU | MIPS_CPU_32FPR |
615 MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
616 MIPS_CPU_LLSC;
617 c->tlbsize = 64;
618 break;
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800619 case PRID_IMP_LOONGSON2:
620 c->cputype = CPU_LOONGSON2;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000621 __cpu_name[cpu] = "ICT Loongson-2";
Robert Millan5aac1e82011-04-16 11:29:29 -0700622
623 switch (c->processor_id & PRID_REV_MASK) {
624 case PRID_REV_LOONGSON2E:
625 set_elf_platform(cpu, "loongson2e");
626 break;
627 case PRID_REV_LOONGSON2F:
628 set_elf_platform(cpu, "loongson2f");
629 break;
630 }
631
Fuxin Zhang2a21c732007-06-06 14:52:43 +0800632 c->isa_level = MIPS_CPU_ISA_III;
633 c->options = R4K_OPTS |
634 MIPS_CPU_FPU | MIPS_CPU_LLSC |
635 MIPS_CPU_32FPR;
636 c->tlbsize = 64;
637 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639}
640
Ralf Baechle234fcd12008-03-08 09:56:28 +0000641static char unknown_isa[] __cpuinitdata = KERN_ERR \
Ralf Baechleb4672d32005-12-08 14:04:24 +0000642 "Unsupported ISA type, c0.config0: %d.";
643
Ralf Baechle41943182005-05-05 16:45:59 +0000644static inline unsigned int decode_config0(struct cpuinfo_mips *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Ralf Baechle41943182005-05-05 16:45:59 +0000646 unsigned int config0;
647 int isa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Ralf Baechle41943182005-05-05 16:45:59 +0000649 config0 = read_c0_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Ralf Baechle41943182005-05-05 16:45:59 +0000651 if (((config0 & MIPS_CONF_MT) >> 7) == 1)
Ralf Baechle02cf2112005-10-01 13:06:32 +0100652 c->options |= MIPS_CPU_TLB;
Ralf Baechle41943182005-05-05 16:45:59 +0000653 isa = (config0 & MIPS_CONF_AT) >> 13;
654 switch (isa) {
655 case 0:
Thiemo Seufer3a01c492006-07-03 13:30:01 +0100656 switch ((config0 & MIPS_CONF_AR) >> 10) {
Ralf Baechleb4672d32005-12-08 14:04:24 +0000657 case 0:
658 c->isa_level = MIPS_CPU_ISA_M32R1;
659 break;
660 case 1:
661 c->isa_level = MIPS_CPU_ISA_M32R2;
662 break;
663 default:
664 goto unknown;
665 }
Ralf Baechle41943182005-05-05 16:45:59 +0000666 break;
667 case 2:
Thiemo Seufer3a01c492006-07-03 13:30:01 +0100668 switch ((config0 & MIPS_CONF_AR) >> 10) {
Ralf Baechleb4672d32005-12-08 14:04:24 +0000669 case 0:
670 c->isa_level = MIPS_CPU_ISA_M64R1;
671 break;
672 case 1:
673 c->isa_level = MIPS_CPU_ISA_M64R2;
674 break;
675 default:
676 goto unknown;
677 }
Ralf Baechle41943182005-05-05 16:45:59 +0000678 break;
679 default:
Ralf Baechleb4672d32005-12-08 14:04:24 +0000680 goto unknown;
Ralf Baechle41943182005-05-05 16:45:59 +0000681 }
682
683 return config0 & MIPS_CONF_M;
Ralf Baechleb4672d32005-12-08 14:04:24 +0000684
685unknown:
686 panic(unknown_isa, config0);
Ralf Baechle41943182005-05-05 16:45:59 +0000687}
688
689static inline unsigned int decode_config1(struct cpuinfo_mips *c)
690{
691 unsigned int config1;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 config1 = read_c0_config1();
Ralf Baechle41943182005-05-05 16:45:59 +0000694
695 if (config1 & MIPS_CONF1_MD)
696 c->ases |= MIPS_ASE_MDMX;
697 if (config1 & MIPS_CONF1_WR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 c->options |= MIPS_CPU_WATCH;
Ralf Baechle41943182005-05-05 16:45:59 +0000699 if (config1 & MIPS_CONF1_CA)
700 c->ases |= MIPS_ASE_MIPS16;
701 if (config1 & MIPS_CONF1_EP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 c->options |= MIPS_CPU_EJTAG;
Ralf Baechle41943182005-05-05 16:45:59 +0000703 if (config1 & MIPS_CONF1_FP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 c->options |= MIPS_CPU_FPU;
705 c->options |= MIPS_CPU_32FPR;
706 }
Ralf Baechle41943182005-05-05 16:45:59 +0000707 if (cpu_has_tlb)
708 c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
709
710 return config1 & MIPS_CONF_M;
711}
712
713static inline unsigned int decode_config2(struct cpuinfo_mips *c)
714{
715 unsigned int config2;
716
717 config2 = read_c0_config2();
718
719 if (config2 & MIPS_CONF2_SL)
720 c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
721
722 return config2 & MIPS_CONF_M;
723}
724
725static inline unsigned int decode_config3(struct cpuinfo_mips *c)
726{
727 unsigned int config3;
728
729 config3 = read_c0_config3();
730
731 if (config3 & MIPS_CONF3_SM)
732 c->ases |= MIPS_ASE_SMARTMIPS;
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000733 if (config3 & MIPS_CONF3_DSP)
734 c->ases |= MIPS_ASE_DSP;
Ralf Baechle8f406112005-07-14 07:34:18 +0000735 if (config3 & MIPS_CONF3_VINT)
736 c->options |= MIPS_CPU_VINT;
737 if (config3 & MIPS_CONF3_VEIC)
738 c->options |= MIPS_CPU_VEIC;
739 if (config3 & MIPS_CONF3_MT)
Ralf Baechlee0daad42007-02-05 00:10:11 +0000740 c->ases |= MIPS_ASE_MIPSMT;
Ralf Baechlea3692022007-07-10 17:33:02 +0100741 if (config3 & MIPS_CONF3_ULRI)
742 c->options |= MIPS_CPU_ULRI;
Ralf Baechle41943182005-05-05 16:45:59 +0000743
744 return config3 & MIPS_CONF_M;
745}
746
David Daney1b362e32010-01-22 14:41:15 -0800747static inline unsigned int decode_config4(struct cpuinfo_mips *c)
748{
749 unsigned int config4;
750
751 config4 = read_c0_config4();
752
753 if ((config4 & MIPS_CONF4_MMUEXTDEF) == MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
754 && cpu_has_tlb)
755 c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
756
David Daneye77c32f2010-12-21 14:19:09 -0800757 c->kscratch_mask = (config4 >> 16) & 0xff;
758
David Daney1b362e32010-01-22 14:41:15 -0800759 return config4 & MIPS_CONF_M;
760}
761
Ralf Baechle234fcd12008-03-08 09:56:28 +0000762static void __cpuinit decode_configs(struct cpuinfo_mips *c)
Ralf Baechle41943182005-05-05 16:45:59 +0000763{
Ralf Baechle558ce122008-10-29 12:33:34 +0000764 int ok;
765
Ralf Baechle41943182005-05-05 16:45:59 +0000766 /* MIPS32 or MIPS64 compliant CPU. */
Ralf Baechle02cf2112005-10-01 13:06:32 +0100767 c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
768 MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
Ralf Baechle41943182005-05-05 16:45:59 +0000769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 c->scache.flags = MIPS_CACHE_NOT_PRESENT;
771
Ralf Baechle558ce122008-10-29 12:33:34 +0000772 ok = decode_config0(c); /* Read Config registers. */
773 BUG_ON(!ok); /* Arch spec violation! */
774 if (ok)
775 ok = decode_config1(c);
776 if (ok)
777 ok = decode_config2(c);
778 if (ok)
779 ok = decode_config3(c);
David Daney1b362e32010-01-22 14:41:15 -0800780 if (ok)
781 ok = decode_config4(c);
Ralf Baechle558ce122008-10-29 12:33:34 +0000782
783 mips_probe_watch_registers(c);
David Daney0c2f4552010-07-26 14:29:37 -0700784
785 if (cpu_has_mips_r2)
786 c->core = read_c0_ebase() & 0x3ff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000789static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Ralf Baechle41943182005-05-05 16:45:59 +0000791 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 switch (c->processor_id & 0xff00) {
793 case PRID_IMP_4KC:
794 c->cputype = CPU_4KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000795 __cpu_name[cpu] = "MIPS 4Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 break;
797 case PRID_IMP_4KEC:
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000798 case PRID_IMP_4KECR2:
799 c->cputype = CPU_4KEC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000800 __cpu_name[cpu] = "MIPS 4KEc";
Ralf Baechle2b07bd02005-04-08 20:36:05 +0000801 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 case PRID_IMP_4KSC:
Ralf Baechle8afcb5d2005-10-04 15:01:26 +0100803 case PRID_IMP_4KSD:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 c->cputype = CPU_4KSC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000805 __cpu_name[cpu] = "MIPS 4KSc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 break;
807 case PRID_IMP_5KC:
808 c->cputype = CPU_5KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000809 __cpu_name[cpu] = "MIPS 5Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 break;
811 case PRID_IMP_20KC:
812 c->cputype = CPU_20KC;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000813 __cpu_name[cpu] = "MIPS 20Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 break;
815 case PRID_IMP_24K:
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000816 case PRID_IMP_24KE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 c->cputype = CPU_24K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000818 __cpu_name[cpu] = "MIPS 24Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 break;
820 case PRID_IMP_25KF:
821 c->cputype = CPU_25KF;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000822 __cpu_name[cpu] = "MIPS 25Kc";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000824 case PRID_IMP_34K:
825 c->cputype = CPU_34K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000826 __cpu_name[cpu] = "MIPS 34Kc";
Ralf Baechlebbc7f222005-07-12 16:12:05 +0000827 break;
Chris Dearmanc6209532006-05-02 14:08:46 +0100828 case PRID_IMP_74K:
829 c->cputype = CPU_74K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000830 __cpu_name[cpu] = "MIPS 74Kc";
Chris Dearmanc6209532006-05-02 14:08:46 +0100831 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100832 case PRID_IMP_1004K:
833 c->cputype = CPU_1004K;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000834 __cpu_name[cpu] = "MIPS 1004Kc";
Ralf Baechle39b8d522008-04-28 17:14:26 +0100835 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Chris Dearman0b6d4972007-09-13 12:32:02 +0100837
838 spram_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000841static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Ralf Baechle41943182005-05-05 16:45:59 +0000843 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 switch (c->processor_id & 0xff00) {
845 case PRID_IMP_AU1_REV1:
846 case PRID_IMP_AU1_REV2:
Manuel Lauss270717a2009-03-25 17:49:28 +0100847 c->cputype = CPU_ALCHEMY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 switch ((c->processor_id >> 24) & 0xff) {
849 case 0:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000850 __cpu_name[cpu] = "Au1000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 break;
852 case 1:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000853 __cpu_name[cpu] = "Au1500";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 break;
855 case 2:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000856 __cpu_name[cpu] = "Au1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 break;
858 case 3:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000859 __cpu_name[cpu] = "Au1550";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
Pete Popove3ad1c22005-03-01 06:33:16 +0000861 case 4:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000862 __cpu_name[cpu] = "Au1200";
Manuel Lauss270717a2009-03-25 17:49:28 +0100863 if ((c->processor_id & 0xff) == 2)
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000864 __cpu_name[cpu] = "Au1250";
Manuel Lauss237cfee2007-12-06 09:07:55 +0100865 break;
866 case 5:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000867 __cpu_name[cpu] = "Au1210";
Pete Popove3ad1c22005-03-01 06:33:16 +0000868 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 default:
Manuel Lauss270717a2009-03-25 17:49:28 +0100870 __cpu_name[cpu] = "Au1xxx";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 break;
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874 }
875}
876
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000877static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Ralf Baechle41943182005-05-05 16:45:59 +0000879 decode_configs(c);
Ralf Baechle02cf2112005-10-01 13:06:32 +0100880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 switch (c->processor_id & 0xff00) {
882 case PRID_IMP_SB1:
883 c->cputype = CPU_SB1;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000884 __cpu_name[cpu] = "SiByte SB1";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /* FPU in pass1 is known to have issues. */
Ralf Baechleaa323742006-05-29 00:02:12 +0100886 if ((c->processor_id & 0xff) < 0x02)
Ralf Baechle010b8532006-01-29 18:42:08 +0000887 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 break;
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700889 case PRID_IMP_SB1A:
890 c->cputype = CPU_SB1A;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000891 __cpu_name[cpu] = "SiByte SB1A";
Andrew Isaacson93ce2f522005-10-19 23:56:20 -0700892 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894}
895
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000896static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Ralf Baechle41943182005-05-05 16:45:59 +0000898 decode_configs(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 switch (c->processor_id & 0xff00) {
900 case PRID_IMP_SR71000:
901 c->cputype = CPU_SR71000;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000902 __cpu_name[cpu] = "Sandcraft SR71000";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 c->scache.ways = 8;
904 c->tlbsize = 64;
905 break;
906 }
907}
908
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000909static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
Pete Popovbdf21b12005-07-14 17:47:57 +0000910{
911 decode_configs(c);
912 switch (c->processor_id & 0xff00) {
913 case PRID_IMP_PR4450:
914 c->cputype = CPU_PR4450;
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000915 __cpu_name[cpu] = "Philips PR4450";
Ralf Baechlee7958bb2005-12-08 13:00:20 +0000916 c->isa_level = MIPS_CPU_ISA_M32R1;
Pete Popovbdf21b12005-07-14 17:47:57 +0000917 break;
Pete Popovbdf21b12005-07-14 17:47:57 +0000918 }
919}
920
Ralf Baechlecea7e2d2008-10-30 13:38:45 +0000921static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200922{
923 decode_configs(c);
924 switch (c->processor_id & 0xff00) {
Kevin Cernekee190fca32010-11-23 10:26:45 -0800925 case PRID_IMP_BMIPS32_REV4:
926 case PRID_IMP_BMIPS32_REV8:
Kevin Cernekee602977b2010-10-16 14:22:30 -0700927 c->cputype = CPU_BMIPS32;
928 __cpu_name[cpu] = "Broadcom BMIPS32";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700929 set_elf_platform(cpu, "bmips32");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200930 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700931 case PRID_IMP_BMIPS3300:
932 case PRID_IMP_BMIPS3300_ALT:
933 case PRID_IMP_BMIPS3300_BUG:
934 c->cputype = CPU_BMIPS3300;
935 __cpu_name[cpu] = "Broadcom BMIPS3300";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700936 set_elf_platform(cpu, "bmips3300");
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200937 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700938 case PRID_IMP_BMIPS43XX: {
939 int rev = c->processor_id & 0xff;
940
941 if (rev >= PRID_REV_BMIPS4380_LO &&
942 rev <= PRID_REV_BMIPS4380_HI) {
943 c->cputype = CPU_BMIPS4380;
944 __cpu_name[cpu] = "Broadcom BMIPS4380";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700945 set_elf_platform(cpu, "bmips4380");
Kevin Cernekee602977b2010-10-16 14:22:30 -0700946 } else {
947 c->cputype = CPU_BMIPS4350;
948 __cpu_name[cpu] = "Broadcom BMIPS4350";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700949 set_elf_platform(cpu, "bmips4350");
Maxime Bizon0de663e2009-08-18 13:23:37 +0100950 }
951 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200952 }
Kevin Cernekee602977b2010-10-16 14:22:30 -0700953 case PRID_IMP_BMIPS5000:
954 c->cputype = CPU_BMIPS5000;
955 __cpu_name[cpu] = "Broadcom BMIPS5000";
Kevin Cernekee06785df2011-04-16 11:29:28 -0700956 set_elf_platform(cpu, "bmips5000");
Kevin Cernekee602977b2010-10-16 14:22:30 -0700957 c->options |= MIPS_CPU_ULRI;
958 break;
Kevin Cernekee602977b2010-10-16 14:22:30 -0700959 }
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +0200960}
961
David Daney0dd47812008-12-11 15:33:26 -0800962static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
963{
964 decode_configs(c);
965 switch (c->processor_id & 0xff00) {
966 case PRID_IMP_CAVIUM_CN38XX:
967 case PRID_IMP_CAVIUM_CN31XX:
968 case PRID_IMP_CAVIUM_CN30XX:
David Daney6f329462010-02-10 15:12:48 -0800969 c->cputype = CPU_CAVIUM_OCTEON;
970 __cpu_name[cpu] = "Cavium Octeon";
971 goto platform;
David Daney0dd47812008-12-11 15:33:26 -0800972 case PRID_IMP_CAVIUM_CN58XX:
973 case PRID_IMP_CAVIUM_CN56XX:
974 case PRID_IMP_CAVIUM_CN50XX:
975 case PRID_IMP_CAVIUM_CN52XX:
David Daney6f329462010-02-10 15:12:48 -0800976 c->cputype = CPU_CAVIUM_OCTEON_PLUS;
977 __cpu_name[cpu] = "Cavium Octeon+";
978platform:
Robert Millanc094c992011-04-18 11:37:55 -0700979 set_elf_platform(cpu, "octeon");
David Daney0dd47812008-12-11 15:33:26 -0800980 break;
David Daneya1431b62011-09-24 02:29:54 +0200981 case PRID_IMP_CAVIUM_CN61XX:
David Daney0e56b382010-10-07 16:03:45 -0700982 case PRID_IMP_CAVIUM_CN63XX:
David Daneya1431b62011-09-24 02:29:54 +0200983 case PRID_IMP_CAVIUM_CN66XX:
984 case PRID_IMP_CAVIUM_CN68XX:
David Daney0e56b382010-10-07 16:03:45 -0700985 c->cputype = CPU_CAVIUM_OCTEON2;
986 __cpu_name[cpu] = "Cavium Octeon II";
Robert Millanc094c992011-04-18 11:37:55 -0700987 set_elf_platform(cpu, "octeon2");
David Daney0e56b382010-10-07 16:03:45 -0700988 break;
David Daney0dd47812008-12-11 15:33:26 -0800989 default:
990 printk(KERN_INFO "Unknown Octeon chip!\n");
991 c->cputype = CPU_UNKNOWN;
992 break;
993 }
994}
995
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +0000996static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
997{
998 decode_configs(c);
999 /* JZRISC does not implement the CP0 counter. */
1000 c->options &= ~MIPS_CPU_COUNTER;
1001 switch (c->processor_id & 0xff00) {
1002 case PRID_IMP_JZRISC:
1003 c->cputype = CPU_JZRISC;
1004 __cpu_name[cpu] = "Ingenic JZRISC";
1005 break;
1006 default:
1007 panic("Unknown Ingenic Processor ID!");
1008 break;
1009 }
1010}
1011
Jayachandran Ca7117c62011-05-11 12:04:58 +05301012static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
1013{
1014 decode_configs(c);
1015
1016 c->options = (MIPS_CPU_TLB |
1017 MIPS_CPU_4KEX |
1018 MIPS_CPU_COUNTER |
1019 MIPS_CPU_DIVEC |
1020 MIPS_CPU_WATCH |
1021 MIPS_CPU_EJTAG |
1022 MIPS_CPU_LLSC);
1023
1024 switch (c->processor_id & 0xff00) {
1025 case PRID_IMP_NETLOGIC_XLR732:
1026 case PRID_IMP_NETLOGIC_XLR716:
1027 case PRID_IMP_NETLOGIC_XLR532:
1028 case PRID_IMP_NETLOGIC_XLR308:
1029 case PRID_IMP_NETLOGIC_XLR532C:
1030 case PRID_IMP_NETLOGIC_XLR516C:
1031 case PRID_IMP_NETLOGIC_XLR508C:
1032 case PRID_IMP_NETLOGIC_XLR308C:
1033 c->cputype = CPU_XLR;
1034 __cpu_name[cpu] = "Netlogic XLR";
1035 break;
1036
1037 case PRID_IMP_NETLOGIC_XLS608:
1038 case PRID_IMP_NETLOGIC_XLS408:
1039 case PRID_IMP_NETLOGIC_XLS404:
1040 case PRID_IMP_NETLOGIC_XLS208:
1041 case PRID_IMP_NETLOGIC_XLS204:
1042 case PRID_IMP_NETLOGIC_XLS108:
1043 case PRID_IMP_NETLOGIC_XLS104:
1044 case PRID_IMP_NETLOGIC_XLS616B:
1045 case PRID_IMP_NETLOGIC_XLS608B:
1046 case PRID_IMP_NETLOGIC_XLS416B:
1047 case PRID_IMP_NETLOGIC_XLS412B:
1048 case PRID_IMP_NETLOGIC_XLS408B:
1049 case PRID_IMP_NETLOGIC_XLS404B:
1050 c->cputype = CPU_XLR;
1051 __cpu_name[cpu] = "Netlogic XLS";
1052 break;
1053
1054 default:
1055 printk(KERN_INFO "Unknown Netlogic chip id [%02x]!\n",
1056 c->processor_id);
1057 c->cputype = CPU_XLR;
1058 break;
1059 }
1060
1061 c->isa_level = MIPS_CPU_ISA_M64R1;
1062 c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
1063}
1064
David Daney949e51b2010-10-14 11:32:33 -07001065#ifdef CONFIG_64BIT
1066/* For use by uaccess.h */
1067u64 __ua_limit;
1068EXPORT_SYMBOL(__ua_limit);
1069#endif
1070
Ralf Baechle9966db252007-10-11 23:46:17 +01001071const char *__cpu_name[NR_CPUS];
David Daney874fd3b2010-01-28 16:52:12 -08001072const char *__elf_platform;
Ralf Baechle9966db252007-10-11 23:46:17 +01001073
Ralf Baechle234fcd12008-03-08 09:56:28 +00001074__cpuinit void cpu_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle9966db252007-10-11 23:46:17 +01001077 unsigned int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 c->processor_id = PRID_IMP_UNKNOWN;
1080 c->fpu_id = FPIR_IMP_NONE;
1081 c->cputype = CPU_UNKNOWN;
1082
1083 c->processor_id = read_c0_prid();
1084 switch (c->processor_id & 0xff0000) {
1085 case PRID_COMP_LEGACY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001086 cpu_probe_legacy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 break;
1088 case PRID_COMP_MIPS:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001089 cpu_probe_mips(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 break;
1091 case PRID_COMP_ALCHEMY:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001092 cpu_probe_alchemy(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 break;
1094 case PRID_COMP_SIBYTE:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001095 cpu_probe_sibyte(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001097 case PRID_COMP_BROADCOM:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001098 cpu_probe_broadcom(c, cpu);
Aurelien Jarno1c0c13e2007-09-25 15:40:12 +02001099 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 case PRID_COMP_SANDCRAFT:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001101 cpu_probe_sandcraft(c, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 break;
Daniel Lairda92b0582008-03-06 09:07:18 +00001103 case PRID_COMP_NXP:
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001104 cpu_probe_nxp(c, cpu);
Ralf Baechlea3dddd52006-03-11 08:18:41 +00001105 break;
David Daney0dd47812008-12-11 15:33:26 -08001106 case PRID_COMP_CAVIUM:
1107 cpu_probe_cavium(c, cpu);
1108 break;
Lars-Peter Clausen83ccf692010-07-17 11:07:51 +00001109 case PRID_COMP_INGENIC:
1110 cpu_probe_ingenic(c, cpu);
1111 break;
Jayachandran Ca7117c62011-05-11 12:04:58 +05301112 case PRID_COMP_NETLOGIC:
1113 cpu_probe_netlogic(c, cpu);
1114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001116
Ralf Baechlecea7e2d2008-10-30 13:38:45 +00001117 BUG_ON(!__cpu_name[cpu]);
1118 BUG_ON(c->cputype == CPU_UNKNOWN);
1119
Franck Bui-Huudec8b1c2007-10-08 16:11:51 +02001120 /*
1121 * Platform code can force the cpu type to optimize code
1122 * generation. In that case be sure the cpu type is correctly
1123 * manually setup otherwise it could trigger some nasty bugs.
1124 */
1125 BUG_ON(current_cpu_type() != c->cputype);
1126
Kevin Cernekee0103d232010-05-02 14:43:52 -07001127 if (mips_fpu_disabled)
1128 c->options &= ~MIPS_CPU_FPU;
1129
1130 if (mips_dsp_disabled)
1131 c->ases &= ~MIPS_ASE_DSP;
1132
Ralf Baechle41943182005-05-05 16:45:59 +00001133 if (c->options & MIPS_CPU_FPU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 c->fpu_id = cpu_get_fpu_id();
Ralf Baechle41943182005-05-05 16:45:59 +00001135
Ralf Baechlee7958bb2005-12-08 13:00:20 +00001136 if (c->isa_level == MIPS_CPU_ISA_M32R1 ||
Ralf Baechleb4672d32005-12-08 14:04:24 +00001137 c->isa_level == MIPS_CPU_ISA_M32R2 ||
1138 c->isa_level == MIPS_CPU_ISA_M64R1 ||
1139 c->isa_level == MIPS_CPU_ISA_M64R2) {
Ralf Baechle41943182005-05-05 16:45:59 +00001140 if (c->fpu_id & MIPS_FPIR_3D)
1141 c->ases |= MIPS_ASE_MIPS3D;
1142 }
1143 }
Ralf Baechle9966db252007-10-11 23:46:17 +01001144
Ralf Baechlef6771db2007-11-08 18:02:29 +00001145 if (cpu_has_mips_r2)
1146 c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
1147 else
1148 c->srsets = 1;
Guenter Roeck91dfc422010-02-02 08:52:20 -08001149
1150 cpu_probe_vmbits(c);
David Daney949e51b2010-10-14 11:32:33 -07001151
1152#ifdef CONFIG_64BIT
1153 if (cpu == 0)
1154 __ua_limit = ~((1ull << cpu_vmbits) - 1);
1155#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Ralf Baechle234fcd12008-03-08 09:56:28 +00001158__cpuinit void cpu_report(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 struct cpuinfo_mips *c = &current_cpu_data;
1161
Ralf Baechle9966db252007-10-11 23:46:17 +01001162 printk(KERN_INFO "CPU revision is: %08x (%s)\n",
1163 c->processor_id, cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (c->options & MIPS_CPU_FPU)
Ralf Baechle9966db252007-10-11 23:46:17 +01001165 printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}