Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Processor capabilities determination functions. |
| 3 | * |
| 4 | * Copyright (C) xxxx the Anonymous |
Ralf Baechle | 010b853 | 2006-01-29 18:42:08 +0000 | [diff] [blame] | 5 | * Copyright (C) 1994 - 2006 Ralf Baechle |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 6 | * Copyright (C) 2003, 2004 Maciej W. Rozycki |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 7 | * Copyright (C) 2001, 2004 MIPS Inc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/ptrace.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 17 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/stddef.h> |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 19 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Ralf Baechle | 5759906 | 2007-02-18 19:07:31 +0000 | [diff] [blame] | 21 | #include <asm/bugs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/cpu.h> |
| 23 | #include <asm/fpu.h> |
| 24 | #include <asm/mipsregs.h> |
| 25 | #include <asm/system.h> |
David Daney | 654f57b | 2008-09-23 00:07:16 -0700 | [diff] [blame] | 26 | #include <asm/watch.h> |
Chris Dearman | a074f0e | 2009-07-10 01:51:27 -0700 | [diff] [blame] | 27 | #include <asm/spram.h> |
David Daney | 949e51b | 2010-10-14 11:32:33 -0700 | [diff] [blame] | 28 | #include <asm/uaccess.h> |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* |
| 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 Baechle | 982f6ff | 2009-09-17 02:25:07 +0200 | [diff] [blame] | 37 | void (*cpu_wait)(void); |
Wu Zhangjin | f8ede0f | 2009-11-17 01:32:59 +0800 | [diff] [blame] | 38 | EXPORT_SYMBOL(cpu_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | static void r3081_wait(void) |
| 41 | { |
| 42 | unsigned long cfg = read_c0_conf(); |
| 43 | write_c0_conf(cfg | R30XX_CONF_HALT); |
| 44 | } |
| 45 | |
| 46 | static void r39xx_wait(void) |
| 47 | { |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 48 | local_irq_disable(); |
| 49 | if (!need_resched()) |
| 50 | write_c0_conf(read_c0_conf() | TX39_CONF_HALT); |
| 51 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 54 | extern void r4k_wait(void); |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 55 | |
| 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. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 63 | void r4k_wait_irqoff(void) |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 64 | { |
| 65 | local_irq_disable(); |
| 66 | if (!need_resched()) |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 67 | __asm__(" .set push \n" |
| 68 | " .set mips3 \n" |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 69 | " wait \n" |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 70 | " .set pop \n"); |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 71 | local_irq_enable(); |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 72 | __asm__(" .globl __pastwait \n" |
| 73 | "__pastwait: \n"); |
| 74 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Ralf Baechle | 5a81299 | 2007-07-17 18:49:48 +0100 | [diff] [blame] | 77 | /* |
| 78 | * The RM7000 variant has to handle erratum 38. The workaround is to not |
| 79 | * have any pending stores when the WAIT instruction is executed. |
| 80 | */ |
| 81 | static void rm7k_wait_irqoff(void) |
| 82 | { |
| 83 | local_irq_disable(); |
| 84 | if (!need_resched()) |
| 85 | __asm__( |
| 86 | " .set push \n" |
| 87 | " .set mips3 \n" |
| 88 | " .set noat \n" |
| 89 | " mfc0 $1, $12 \n" |
| 90 | " sync \n" |
| 91 | " mtc0 $1, $12 # stalls until W stage \n" |
| 92 | " wait \n" |
| 93 | " mtc0 $1, $12 # stalls until W stage \n" |
| 94 | " .set pop \n"); |
| 95 | local_irq_enable(); |
| 96 | } |
| 97 | |
Manuel Lauss | 2882b0c | 2009-08-22 18:09:27 +0200 | [diff] [blame] | 98 | /* |
| 99 | * The Au1xxx wait is available only if using 32khz counter or |
| 100 | * external timer source, but specifically not CP0 Counter. |
| 101 | * alchemy/common/time.c may override cpu_wait! |
| 102 | */ |
Pete Popov | 494900a | 2005-04-07 00:42:10 +0000 | [diff] [blame] | 103 | static void au1k_wait(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | { |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 105 | __asm__(" .set mips3 \n" |
| 106 | " cache 0x14, 0(%0) \n" |
| 107 | " cache 0x14, 32(%0) \n" |
| 108 | " sync \n" |
| 109 | " nop \n" |
| 110 | " wait \n" |
| 111 | " nop \n" |
| 112 | " nop \n" |
| 113 | " nop \n" |
| 114 | " nop \n" |
| 115 | " .set mips0 \n" |
Ralf Baechle | 10f650d | 2005-05-25 13:32:49 +0000 | [diff] [blame] | 116 | : : "r" (au1k_wait)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Ralf Baechle | 982f6ff | 2009-09-17 02:25:07 +0200 | [diff] [blame] | 119 | static int __initdata nowait; |
Ralf Baechle | 55d04df | 2005-07-13 19:22:45 +0000 | [diff] [blame] | 120 | |
Atsushi Nemoto | f49a747 | 2007-02-18 01:02:14 +0900 | [diff] [blame] | 121 | static int __init wait_disable(char *s) |
Ralf Baechle | 55d04df | 2005-07-13 19:22:45 +0000 | [diff] [blame] | 122 | { |
| 123 | nowait = 1; |
| 124 | |
| 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | __setup("nowait", wait_disable); |
| 129 | |
Kevin Cernekee | 0103d23 | 2010-05-02 14:43:52 -0700 | [diff] [blame] | 130 | static int __cpuinitdata mips_fpu_disabled; |
| 131 | |
| 132 | static int __init fpu_disable(char *s) |
| 133 | { |
| 134 | cpu_data[0].options &= ~MIPS_CPU_FPU; |
| 135 | mips_fpu_disabled = 1; |
| 136 | |
| 137 | return 1; |
| 138 | } |
| 139 | |
| 140 | __setup("nofpu", fpu_disable); |
| 141 | |
| 142 | int __cpuinitdata mips_dsp_disabled; |
| 143 | |
| 144 | static int __init dsp_disable(char *s) |
| 145 | { |
| 146 | cpu_data[0].ases &= ~MIPS_ASE_DSP; |
| 147 | mips_dsp_disabled = 1; |
| 148 | |
| 149 | return 1; |
| 150 | } |
| 151 | |
| 152 | __setup("nodsp", dsp_disable); |
| 153 | |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 154 | void __init check_wait(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 157 | |
Ralf Baechle | 55d04df | 2005-07-13 19:22:45 +0000 | [diff] [blame] | 158 | if (nowait) { |
Ralf Baechle | c237923 | 2006-11-30 01:14:44 +0000 | [diff] [blame] | 159 | printk("Wait instruction disabled.\n"); |
Ralf Baechle | 55d04df | 2005-07-13 19:22:45 +0000 | [diff] [blame] | 160 | return; |
| 161 | } |
| 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | switch (c->cputype) { |
| 164 | case CPU_R3081: |
| 165 | case CPU_R3081E: |
| 166 | cpu_wait = r3081_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | break; |
| 168 | case CPU_TX3927: |
| 169 | cpu_wait = r39xx_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | break; |
| 171 | case CPU_R4200: |
| 172 | /* case CPU_R4300: */ |
| 173 | case CPU_R4600: |
| 174 | case CPU_R4640: |
| 175 | case CPU_R4650: |
| 176 | case CPU_R4700: |
| 177 | case CPU_R5000: |
Shinya Kuribayashi | a644b27 | 2009-03-03 18:05:51 +0900 | [diff] [blame] | 178 | case CPU_R5500: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | case CPU_NEVADA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | case CPU_4KC: |
| 181 | case CPU_4KEC: |
| 182 | case CPU_4KSC: |
| 183 | case CPU_5KC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | case CPU_25KF: |
Ralf Baechle | 4b3e975 | 2007-06-21 00:22:34 +0100 | [diff] [blame] | 185 | case CPU_PR4450: |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 186 | case CPU_BMIPS3300: |
| 187 | case CPU_BMIPS4350: |
| 188 | case CPU_BMIPS4380: |
| 189 | case CPU_BMIPS5000: |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 190 | case CPU_CAVIUM_OCTEON: |
David Daney | 6f32946 | 2010-02-10 15:12:48 -0800 | [diff] [blame] | 191 | case CPU_CAVIUM_OCTEON_PLUS: |
David Daney | 0e56b38 | 2010-10-07 16:03:45 -0700 | [diff] [blame] | 192 | case CPU_CAVIUM_OCTEON2: |
Lars-Peter Clausen | 83ccf69 | 2010-07-17 11:07:51 +0000 | [diff] [blame] | 193 | case CPU_JZRISC: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | cpu_wait = r4k_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | break; |
Ralf Baechle | 4b3e975 | 2007-06-21 00:22:34 +0100 | [diff] [blame] | 196 | |
Ralf Baechle | 5a81299 | 2007-07-17 18:49:48 +0100 | [diff] [blame] | 197 | case CPU_RM7000: |
| 198 | cpu_wait = rm7k_wait_irqoff; |
| 199 | break; |
| 200 | |
Ralf Baechle | 4b3e975 | 2007-06-21 00:22:34 +0100 | [diff] [blame] | 201 | case CPU_24K: |
| 202 | case CPU_34K: |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 203 | case CPU_1004K: |
Ralf Baechle | 4b3e975 | 2007-06-21 00:22:34 +0100 | [diff] [blame] | 204 | cpu_wait = r4k_wait; |
| 205 | if (read_c0_config7() & MIPS_CONF7_WII) |
| 206 | cpu_wait = r4k_wait_irqoff; |
| 207 | break; |
| 208 | |
| 209 | case CPU_74K: |
| 210 | cpu_wait = r4k_wait; |
| 211 | if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0)) |
| 212 | cpu_wait = r4k_wait_irqoff; |
| 213 | break; |
| 214 | |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 215 | case CPU_TX49XX: |
| 216 | cpu_wait = r4k_wait_irqoff; |
Atsushi Nemoto | 60a6c37 | 2006-06-08 01:09:01 +0900 | [diff] [blame] | 217 | break; |
Manuel Lauss | 270717a | 2009-03-25 17:49:28 +0100 | [diff] [blame] | 218 | case CPU_ALCHEMY: |
Manuel Lauss | 0c694de | 2008-12-21 09:26:23 +0100 | [diff] [blame] | 219 | cpu_wait = au1k_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | break; |
Ralf Baechle | c8eae71 | 2007-06-12 13:04:09 +0100 | [diff] [blame] | 221 | case CPU_20KC: |
| 222 | /* |
| 223 | * WAIT on Rev1.0 has E1, E2, E3 and E16. |
| 224 | * WAIT on Rev2.0 and Rev3.0 has E16. |
| 225 | * Rev3.1 WAIT is nop, why bother |
| 226 | */ |
| 227 | if ((c->processor_id & 0xff) <= 0x64) |
| 228 | break; |
| 229 | |
Ralf Baechle | 50da469 | 2007-09-14 19:08:43 +0100 | [diff] [blame] | 230 | /* |
| 231 | * Another rev is incremeting c0_count at a reduced clock |
| 232 | * rate while in WAIT mode. So we basically have the choice |
| 233 | * between using the cp0 timer as clocksource or avoiding |
| 234 | * the WAIT instruction. Until more details are known, |
| 235 | * disable the use of WAIT for 20Kc entirely. |
| 236 | cpu_wait = r4k_wait; |
| 237 | */ |
Ralf Baechle | c8eae71 | 2007-06-12 13:04:09 +0100 | [diff] [blame] | 238 | break; |
Ralf Baechle | 441ee34 | 2006-06-02 11:48:11 +0100 | [diff] [blame] | 239 | case CPU_RM9000: |
Ralf Baechle | c237923 | 2006-11-30 01:14:44 +0000 | [diff] [blame] | 240 | if ((c->processor_id & 0x00ff) >= 0x40) |
Ralf Baechle | 441ee34 | 2006-06-02 11:48:11 +0100 | [diff] [blame] | 241 | cpu_wait = r4k_wait; |
Ralf Baechle | 441ee34 | 2006-06-02 11:48:11 +0100 | [diff] [blame] | 242 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | break; |
| 245 | } |
| 246 | } |
| 247 | |
Marc St-Jean | 9267a30 | 2007-06-14 15:55:31 -0600 | [diff] [blame] | 248 | static inline void check_errata(void) |
| 249 | { |
| 250 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 251 | |
| 252 | switch (c->cputype) { |
| 253 | case CPU_34K: |
| 254 | /* |
| 255 | * Erratum "RPS May Cause Incorrect Instruction Execution" |
| 256 | * This code only handles VPE0, any SMP/SMTC/RTOS code |
| 257 | * making use of VPE1 will be responsable for that VPE. |
| 258 | */ |
| 259 | if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2) |
| 260 | write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS); |
| 261 | break; |
| 262 | default: |
| 263 | break; |
| 264 | } |
| 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | void __init check_bugs32(void) |
| 268 | { |
Marc St-Jean | 9267a30 | 2007-06-14 15:55:31 -0600 | [diff] [blame] | 269 | check_errata(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /* |
| 273 | * Probe whether cpu has config register by trying to play with |
| 274 | * alternate cache bit and see whether it matters. |
| 275 | * It's used by cpu_probe to distinguish between R3000A and R3081. |
| 276 | */ |
| 277 | static inline int cpu_has_confreg(void) |
| 278 | { |
| 279 | #ifdef CONFIG_CPU_R3000 |
| 280 | extern unsigned long r3k_cache_size(unsigned long); |
| 281 | unsigned long size1, size2; |
| 282 | unsigned long cfg = read_c0_conf(); |
| 283 | |
| 284 | size1 = r3k_cache_size(ST0_ISC); |
| 285 | write_c0_conf(cfg ^ R30XX_CONF_AC); |
| 286 | size2 = r3k_cache_size(ST0_ISC); |
| 287 | write_c0_conf(cfg); |
| 288 | return size1 != size2; |
| 289 | #else |
| 290 | return 0; |
| 291 | #endif |
| 292 | } |
| 293 | |
Robert Millan | c094c99 | 2011-04-18 11:37:55 -0700 | [diff] [blame] | 294 | static inline void set_elf_platform(int cpu, const char *plat) |
| 295 | { |
| 296 | if (cpu == 0) |
| 297 | __elf_platform = plat; |
| 298 | } |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /* |
| 301 | * Get the FPU Implementation/Revision. |
| 302 | */ |
| 303 | static inline unsigned long cpu_get_fpu_id(void) |
| 304 | { |
| 305 | unsigned long tmp, fpu_id; |
| 306 | |
| 307 | tmp = read_c0_status(); |
| 308 | __enable_fpu(); |
| 309 | fpu_id = read_32bit_cp1_register(CP1_REVISION); |
| 310 | write_c0_status(tmp); |
| 311 | return fpu_id; |
| 312 | } |
| 313 | |
| 314 | /* |
| 315 | * Check the CPU has an FPU the official way. |
| 316 | */ |
| 317 | static inline int __cpu_has_fpu(void) |
| 318 | { |
| 319 | return ((cpu_get_fpu_id() & 0xff00) != FPIR_IMP_NONE); |
| 320 | } |
| 321 | |
Guenter Roeck | 91dfc42 | 2010-02-02 08:52:20 -0800 | [diff] [blame] | 322 | static inline void cpu_probe_vmbits(struct cpuinfo_mips *c) |
| 323 | { |
| 324 | #ifdef __NEED_VMBITS_PROBE |
David Daney | 5b7efa8 | 2010-02-08 12:27:00 -0800 | [diff] [blame] | 325 | write_c0_entryhi(0x3fffffffffffe000ULL); |
Guenter Roeck | 91dfc42 | 2010-02-02 08:52:20 -0800 | [diff] [blame] | 326 | back_to_back_c0_hazard(); |
David Daney | 5b7efa8 | 2010-02-08 12:27:00 -0800 | [diff] [blame] | 327 | c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL); |
Guenter Roeck | 91dfc42 | 2010-02-02 08:52:20 -0800 | [diff] [blame] | 328 | #endif |
| 329 | } |
| 330 | |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 331 | #define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | | MIPS_CPU_COUNTER) |
| 333 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 334 | static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
| 336 | switch (c->processor_id & 0xff00) { |
| 337 | case PRID_IMP_R2000: |
| 338 | c->cputype = CPU_R2000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 339 | __cpu_name[cpu] = "R2000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | c->isa_level = MIPS_CPU_ISA_I; |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 341 | c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE | |
| 342 | MIPS_CPU_NOFPUEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | if (__cpu_has_fpu()) |
| 344 | c->options |= MIPS_CPU_FPU; |
| 345 | c->tlbsize = 64; |
| 346 | break; |
| 347 | case PRID_IMP_R3000: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 348 | if ((c->processor_id & 0xff) == PRID_REV_R3000A) { |
| 349 | if (cpu_has_confreg()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | c->cputype = CPU_R3081E; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 351 | __cpu_name[cpu] = "R3081"; |
| 352 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | c->cputype = CPU_R3000A; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 354 | __cpu_name[cpu] = "R3000A"; |
| 355 | } |
| 356 | break; |
| 357 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | c->cputype = CPU_R3000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 359 | __cpu_name[cpu] = "R3000"; |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | c->isa_level = MIPS_CPU_ISA_I; |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 362 | c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE | |
| 363 | MIPS_CPU_NOFPUEX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | if (__cpu_has_fpu()) |
| 365 | c->options |= MIPS_CPU_FPU; |
| 366 | c->tlbsize = 64; |
| 367 | break; |
| 368 | case PRID_IMP_R4000: |
| 369 | if (read_c0_config() & CONF_SC) { |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 370 | if ((c->processor_id & 0xff) >= PRID_REV_R4400) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | c->cputype = CPU_R4400PC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 372 | __cpu_name[cpu] = "R4400PC"; |
| 373 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | c->cputype = CPU_R4000PC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 375 | __cpu_name[cpu] = "R4000PC"; |
| 376 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } else { |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 378 | if ((c->processor_id & 0xff) >= PRID_REV_R4400) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | c->cputype = CPU_R4400SC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 380 | __cpu_name[cpu] = "R4400SC"; |
| 381 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | c->cputype = CPU_R4000SC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 383 | __cpu_name[cpu] = "R4000SC"; |
| 384 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | c->isa_level = MIPS_CPU_ISA_III; |
| 388 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 389 | MIPS_CPU_WATCH | MIPS_CPU_VCE | |
| 390 | MIPS_CPU_LLSC; |
| 391 | c->tlbsize = 48; |
| 392 | break; |
| 393 | case PRID_IMP_VR41XX: |
| 394 | switch (c->processor_id & 0xf0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | case PRID_REV_VR4111: |
| 396 | c->cputype = CPU_VR4111; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 397 | __cpu_name[cpu] = "NEC VR4111"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | case PRID_REV_VR4121: |
| 400 | c->cputype = CPU_VR4121; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 401 | __cpu_name[cpu] = "NEC VR4121"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | break; |
| 403 | case PRID_REV_VR4122: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 404 | if ((c->processor_id & 0xf) < 0x3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | c->cputype = CPU_VR4122; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 406 | __cpu_name[cpu] = "NEC VR4122"; |
| 407 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | c->cputype = CPU_VR4181A; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 409 | __cpu_name[cpu] = "NEC VR4181A"; |
| 410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | break; |
| 412 | case PRID_REV_VR4130: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 413 | if ((c->processor_id & 0xf) < 0x4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | c->cputype = CPU_VR4131; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 415 | __cpu_name[cpu] = "NEC VR4131"; |
| 416 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | c->cputype = CPU_VR4133; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 418 | __cpu_name[cpu] = "NEC VR4133"; |
| 419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | break; |
| 421 | default: |
| 422 | printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n"); |
| 423 | c->cputype = CPU_VR41XX; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 424 | __cpu_name[cpu] = "NEC Vr41xx"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | break; |
| 426 | } |
| 427 | c->isa_level = MIPS_CPU_ISA_III; |
| 428 | c->options = R4K_OPTS; |
| 429 | c->tlbsize = 32; |
| 430 | break; |
| 431 | case PRID_IMP_R4300: |
| 432 | c->cputype = CPU_R4300; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 433 | __cpu_name[cpu] = "R4300"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | c->isa_level = MIPS_CPU_ISA_III; |
| 435 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 436 | MIPS_CPU_LLSC; |
| 437 | c->tlbsize = 32; |
| 438 | break; |
| 439 | case PRID_IMP_R4600: |
| 440 | c->cputype = CPU_R4600; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 441 | __cpu_name[cpu] = "R4600"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | c->isa_level = MIPS_CPU_ISA_III; |
Thiemo Seufer | 075e750 | 2005-07-27 21:48:12 +0000 | [diff] [blame] | 443 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 444 | MIPS_CPU_LLSC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | c->tlbsize = 48; |
| 446 | break; |
| 447 | #if 0 |
| 448 | case PRID_IMP_R4650: |
| 449 | /* |
| 450 | * This processor doesn't have an MMU, so it's not |
| 451 | * "real easy" to run Linux on it. It is left purely |
| 452 | * for documentation. Commented out because it shares |
| 453 | * it's c0_prid id number with the TX3900. |
| 454 | */ |
Ralf Baechle | a3dddd5 | 2006-03-11 08:18:41 +0000 | [diff] [blame] | 455 | c->cputype = CPU_R4650; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 456 | __cpu_name[cpu] = "R4650"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | c->isa_level = MIPS_CPU_ISA_III; |
| 458 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; |
| 459 | c->tlbsize = 48; |
| 460 | break; |
| 461 | #endif |
| 462 | case PRID_IMP_TX39: |
| 463 | c->isa_level = MIPS_CPU_ISA_I; |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 464 | c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) { |
| 467 | c->cputype = CPU_TX3927; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 468 | __cpu_name[cpu] = "TX3927"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | c->tlbsize = 64; |
| 470 | } else { |
| 471 | switch (c->processor_id & 0xff) { |
| 472 | case PRID_REV_TX3912: |
| 473 | c->cputype = CPU_TX3912; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 474 | __cpu_name[cpu] = "TX3912"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | c->tlbsize = 32; |
| 476 | break; |
| 477 | case PRID_REV_TX3922: |
| 478 | c->cputype = CPU_TX3922; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 479 | __cpu_name[cpu] = "TX3922"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | c->tlbsize = 64; |
| 481 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | } |
| 483 | } |
| 484 | break; |
| 485 | case PRID_IMP_R4700: |
| 486 | c->cputype = CPU_R4700; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 487 | __cpu_name[cpu] = "R4700"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | c->isa_level = MIPS_CPU_ISA_III; |
| 489 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 490 | MIPS_CPU_LLSC; |
| 491 | c->tlbsize = 48; |
| 492 | break; |
| 493 | case PRID_IMP_TX49: |
| 494 | c->cputype = CPU_TX49XX; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 495 | __cpu_name[cpu] = "R49XX"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | c->isa_level = MIPS_CPU_ISA_III; |
| 497 | c->options = R4K_OPTS | MIPS_CPU_LLSC; |
| 498 | if (!(c->processor_id & 0x08)) |
| 499 | c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR; |
| 500 | c->tlbsize = 48; |
| 501 | break; |
| 502 | case PRID_IMP_R5000: |
| 503 | c->cputype = CPU_R5000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 504 | __cpu_name[cpu] = "R5000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | c->isa_level = MIPS_CPU_ISA_IV; |
| 506 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 507 | MIPS_CPU_LLSC; |
| 508 | c->tlbsize = 48; |
| 509 | break; |
| 510 | case PRID_IMP_R5432: |
| 511 | c->cputype = CPU_R5432; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 512 | __cpu_name[cpu] = "R5432"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | c->isa_level = MIPS_CPU_ISA_IV; |
| 514 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 515 | MIPS_CPU_WATCH | MIPS_CPU_LLSC; |
| 516 | c->tlbsize = 48; |
| 517 | break; |
| 518 | case PRID_IMP_R5500: |
| 519 | c->cputype = CPU_R5500; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 520 | __cpu_name[cpu] = "R5500"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | c->isa_level = MIPS_CPU_ISA_IV; |
| 522 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 523 | MIPS_CPU_WATCH | MIPS_CPU_LLSC; |
| 524 | c->tlbsize = 48; |
| 525 | break; |
| 526 | case PRID_IMP_NEVADA: |
| 527 | c->cputype = CPU_NEVADA; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 528 | __cpu_name[cpu] = "Nevada"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | c->isa_level = MIPS_CPU_ISA_IV; |
| 530 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 531 | MIPS_CPU_DIVEC | MIPS_CPU_LLSC; |
| 532 | c->tlbsize = 48; |
| 533 | break; |
| 534 | case PRID_IMP_R6000: |
| 535 | c->cputype = CPU_R6000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 536 | __cpu_name[cpu] = "R6000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | c->isa_level = MIPS_CPU_ISA_II; |
| 538 | c->options = MIPS_CPU_TLB | MIPS_CPU_FPU | |
| 539 | MIPS_CPU_LLSC; |
| 540 | c->tlbsize = 32; |
| 541 | break; |
| 542 | case PRID_IMP_R6000A: |
| 543 | c->cputype = CPU_R6000A; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 544 | __cpu_name[cpu] = "R6000A"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | c->isa_level = MIPS_CPU_ISA_II; |
| 546 | c->options = MIPS_CPU_TLB | MIPS_CPU_FPU | |
| 547 | MIPS_CPU_LLSC; |
| 548 | c->tlbsize = 32; |
| 549 | break; |
| 550 | case PRID_IMP_RM7000: |
| 551 | c->cputype = CPU_RM7000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 552 | __cpu_name[cpu] = "RM7000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | c->isa_level = MIPS_CPU_ISA_IV; |
| 554 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 555 | MIPS_CPU_LLSC; |
| 556 | /* |
| 557 | * Undocumented RM7000: Bit 29 in the info register of |
| 558 | * the RM7000 v2.0 indicates if the TLB has 48 or 64 |
| 559 | * entries. |
| 560 | * |
| 561 | * 29 1 => 64 entry JTLB |
| 562 | * 0 => 48 entry JTLB |
| 563 | */ |
| 564 | c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48; |
| 565 | break; |
| 566 | case PRID_IMP_RM9000: |
| 567 | c->cputype = CPU_RM9000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 568 | __cpu_name[cpu] = "RM9000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | c->isa_level = MIPS_CPU_ISA_IV; |
| 570 | c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 571 | MIPS_CPU_LLSC; |
| 572 | /* |
| 573 | * Bit 29 in the info register of the RM9000 |
| 574 | * indicates if the TLB has 48 or 64 entries. |
| 575 | * |
| 576 | * 29 1 => 64 entry JTLB |
| 577 | * 0 => 48 entry JTLB |
| 578 | */ |
| 579 | c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48; |
| 580 | break; |
| 581 | case PRID_IMP_R8000: |
| 582 | c->cputype = CPU_R8000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 583 | __cpu_name[cpu] = "RM8000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | c->isa_level = MIPS_CPU_ISA_IV; |
| 585 | c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX | |
| 586 | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 587 | MIPS_CPU_LLSC; |
| 588 | c->tlbsize = 384; /* has weird TLB: 3-way x 128 */ |
| 589 | break; |
| 590 | case PRID_IMP_R10000: |
| 591 | c->cputype = CPU_R10000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 592 | __cpu_name[cpu] = "R10000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | c->isa_level = MIPS_CPU_ISA_IV; |
Ralf Baechle | 8b36612 | 2005-11-22 17:53:59 +0000 | [diff] [blame] | 594 | c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 596 | MIPS_CPU_COUNTER | MIPS_CPU_WATCH | |
| 597 | MIPS_CPU_LLSC; |
| 598 | c->tlbsize = 64; |
| 599 | break; |
| 600 | case PRID_IMP_R12000: |
| 601 | c->cputype = CPU_R12000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 602 | __cpu_name[cpu] = "R12000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | c->isa_level = MIPS_CPU_ISA_IV; |
Ralf Baechle | 8b36612 | 2005-11-22 17:53:59 +0000 | [diff] [blame] | 604 | c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 606 | MIPS_CPU_COUNTER | MIPS_CPU_WATCH | |
| 607 | MIPS_CPU_LLSC; |
| 608 | c->tlbsize = 64; |
| 609 | break; |
Kumba | 44d921b | 2006-05-16 22:23:59 -0400 | [diff] [blame] | 610 | case PRID_IMP_R14000: |
| 611 | c->cputype = CPU_R14000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 612 | __cpu_name[cpu] = "R14000"; |
Kumba | 44d921b | 2006-05-16 22:23:59 -0400 | [diff] [blame] | 613 | c->isa_level = MIPS_CPU_ISA_IV; |
| 614 | c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX | |
| 615 | MIPS_CPU_FPU | MIPS_CPU_32FPR | |
| 616 | MIPS_CPU_COUNTER | MIPS_CPU_WATCH | |
| 617 | MIPS_CPU_LLSC; |
| 618 | c->tlbsize = 64; |
| 619 | break; |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 620 | case PRID_IMP_LOONGSON2: |
| 621 | c->cputype = CPU_LOONGSON2; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 622 | __cpu_name[cpu] = "ICT Loongson-2"; |
Fuxin Zhang | 2a21c73 | 2007-06-06 14:52:43 +0800 | [diff] [blame] | 623 | c->isa_level = MIPS_CPU_ISA_III; |
| 624 | c->options = R4K_OPTS | |
| 625 | MIPS_CPU_FPU | MIPS_CPU_LLSC | |
| 626 | MIPS_CPU_32FPR; |
| 627 | c->tlbsize = 64; |
| 628 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
| 630 | } |
| 631 | |
Ralf Baechle | 234fcd1 | 2008-03-08 09:56:28 +0000 | [diff] [blame] | 632 | static char unknown_isa[] __cpuinitdata = KERN_ERR \ |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 633 | "Unsupported ISA type, c0.config0: %d."; |
| 634 | |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 635 | static inline unsigned int decode_config0(struct cpuinfo_mips *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 637 | unsigned int config0; |
| 638 | int isa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 640 | config0 = read_c0_config(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 642 | if (((config0 & MIPS_CONF_MT) >> 7) == 1) |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 643 | c->options |= MIPS_CPU_TLB; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 644 | isa = (config0 & MIPS_CONF_AT) >> 13; |
| 645 | switch (isa) { |
| 646 | case 0: |
Thiemo Seufer | 3a01c49 | 2006-07-03 13:30:01 +0100 | [diff] [blame] | 647 | switch ((config0 & MIPS_CONF_AR) >> 10) { |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 648 | case 0: |
| 649 | c->isa_level = MIPS_CPU_ISA_M32R1; |
| 650 | break; |
| 651 | case 1: |
| 652 | c->isa_level = MIPS_CPU_ISA_M32R2; |
| 653 | break; |
| 654 | default: |
| 655 | goto unknown; |
| 656 | } |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 657 | break; |
| 658 | case 2: |
Thiemo Seufer | 3a01c49 | 2006-07-03 13:30:01 +0100 | [diff] [blame] | 659 | switch ((config0 & MIPS_CONF_AR) >> 10) { |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 660 | case 0: |
| 661 | c->isa_level = MIPS_CPU_ISA_M64R1; |
| 662 | break; |
| 663 | case 1: |
| 664 | c->isa_level = MIPS_CPU_ISA_M64R2; |
| 665 | break; |
| 666 | default: |
| 667 | goto unknown; |
| 668 | } |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 669 | break; |
| 670 | default: |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 671 | goto unknown; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | return config0 & MIPS_CONF_M; |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 675 | |
| 676 | unknown: |
| 677 | panic(unknown_isa, config0); |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | static inline unsigned int decode_config1(struct cpuinfo_mips *c) |
| 681 | { |
| 682 | unsigned int config1; |
| 683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | config1 = read_c0_config1(); |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 685 | |
| 686 | if (config1 & MIPS_CONF1_MD) |
| 687 | c->ases |= MIPS_ASE_MDMX; |
| 688 | if (config1 & MIPS_CONF1_WR) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | c->options |= MIPS_CPU_WATCH; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 690 | if (config1 & MIPS_CONF1_CA) |
| 691 | c->ases |= MIPS_ASE_MIPS16; |
| 692 | if (config1 & MIPS_CONF1_EP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | c->options |= MIPS_CPU_EJTAG; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 694 | if (config1 & MIPS_CONF1_FP) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | c->options |= MIPS_CPU_FPU; |
| 696 | c->options |= MIPS_CPU_32FPR; |
| 697 | } |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 698 | if (cpu_has_tlb) |
| 699 | c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1; |
| 700 | |
| 701 | return config1 & MIPS_CONF_M; |
| 702 | } |
| 703 | |
| 704 | static inline unsigned int decode_config2(struct cpuinfo_mips *c) |
| 705 | { |
| 706 | unsigned int config2; |
| 707 | |
| 708 | config2 = read_c0_config2(); |
| 709 | |
| 710 | if (config2 & MIPS_CONF2_SL) |
| 711 | c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT; |
| 712 | |
| 713 | return config2 & MIPS_CONF_M; |
| 714 | } |
| 715 | |
| 716 | static inline unsigned int decode_config3(struct cpuinfo_mips *c) |
| 717 | { |
| 718 | unsigned int config3; |
| 719 | |
| 720 | config3 = read_c0_config3(); |
| 721 | |
| 722 | if (config3 & MIPS_CONF3_SM) |
| 723 | c->ases |= MIPS_ASE_SMARTMIPS; |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 724 | if (config3 & MIPS_CONF3_DSP) |
| 725 | c->ases |= MIPS_ASE_DSP; |
Ralf Baechle | 8f40611 | 2005-07-14 07:34:18 +0000 | [diff] [blame] | 726 | if (config3 & MIPS_CONF3_VINT) |
| 727 | c->options |= MIPS_CPU_VINT; |
| 728 | if (config3 & MIPS_CONF3_VEIC) |
| 729 | c->options |= MIPS_CPU_VEIC; |
| 730 | if (config3 & MIPS_CONF3_MT) |
Ralf Baechle | e0daad4 | 2007-02-05 00:10:11 +0000 | [diff] [blame] | 731 | c->ases |= MIPS_ASE_MIPSMT; |
Ralf Baechle | a369202 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 732 | if (config3 & MIPS_CONF3_ULRI) |
| 733 | c->options |= MIPS_CPU_ULRI; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 734 | |
| 735 | return config3 & MIPS_CONF_M; |
| 736 | } |
| 737 | |
David Daney | 1b362e3 | 2010-01-22 14:41:15 -0800 | [diff] [blame] | 738 | static inline unsigned int decode_config4(struct cpuinfo_mips *c) |
| 739 | { |
| 740 | unsigned int config4; |
| 741 | |
| 742 | config4 = read_c0_config4(); |
| 743 | |
| 744 | if ((config4 & MIPS_CONF4_MMUEXTDEF) == MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT |
| 745 | && cpu_has_tlb) |
| 746 | c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40; |
| 747 | |
David Daney | e77c32f | 2010-12-21 14:19:09 -0800 | [diff] [blame] | 748 | c->kscratch_mask = (config4 >> 16) & 0xff; |
| 749 | |
David Daney | 1b362e3 | 2010-01-22 14:41:15 -0800 | [diff] [blame] | 750 | return config4 & MIPS_CONF_M; |
| 751 | } |
| 752 | |
Ralf Baechle | 234fcd1 | 2008-03-08 09:56:28 +0000 | [diff] [blame] | 753 | static void __cpuinit decode_configs(struct cpuinfo_mips *c) |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 754 | { |
Ralf Baechle | 558ce12 | 2008-10-29 12:33:34 +0000 | [diff] [blame] | 755 | int ok; |
| 756 | |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 757 | /* MIPS32 or MIPS64 compliant CPU. */ |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 758 | c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER | |
| 759 | MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK; |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | c->scache.flags = MIPS_CACHE_NOT_PRESENT; |
| 762 | |
Ralf Baechle | 558ce12 | 2008-10-29 12:33:34 +0000 | [diff] [blame] | 763 | ok = decode_config0(c); /* Read Config registers. */ |
| 764 | BUG_ON(!ok); /* Arch spec violation! */ |
| 765 | if (ok) |
| 766 | ok = decode_config1(c); |
| 767 | if (ok) |
| 768 | ok = decode_config2(c); |
| 769 | if (ok) |
| 770 | ok = decode_config3(c); |
David Daney | 1b362e3 | 2010-01-22 14:41:15 -0800 | [diff] [blame] | 771 | if (ok) |
| 772 | ok = decode_config4(c); |
Ralf Baechle | 558ce12 | 2008-10-29 12:33:34 +0000 | [diff] [blame] | 773 | |
| 774 | mips_probe_watch_registers(c); |
David Daney | 0c2f455 | 2010-07-26 14:29:37 -0700 | [diff] [blame] | 775 | |
| 776 | if (cpu_has_mips_r2) |
| 777 | c->core = read_c0_ebase() & 0x3ff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 780 | static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 782 | decode_configs(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | switch (c->processor_id & 0xff00) { |
| 784 | case PRID_IMP_4KC: |
| 785 | c->cputype = CPU_4KC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 786 | __cpu_name[cpu] = "MIPS 4Kc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | break; |
| 788 | case PRID_IMP_4KEC: |
Ralf Baechle | 2b07bd0 | 2005-04-08 20:36:05 +0000 | [diff] [blame] | 789 | case PRID_IMP_4KECR2: |
| 790 | c->cputype = CPU_4KEC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 791 | __cpu_name[cpu] = "MIPS 4KEc"; |
Ralf Baechle | 2b07bd0 | 2005-04-08 20:36:05 +0000 | [diff] [blame] | 792 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | case PRID_IMP_4KSC: |
Ralf Baechle | 8afcb5d | 2005-10-04 15:01:26 +0100 | [diff] [blame] | 794 | case PRID_IMP_4KSD: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | c->cputype = CPU_4KSC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 796 | __cpu_name[cpu] = "MIPS 4KSc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | break; |
| 798 | case PRID_IMP_5KC: |
| 799 | c->cputype = CPU_5KC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 800 | __cpu_name[cpu] = "MIPS 5Kc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | break; |
| 802 | case PRID_IMP_20KC: |
| 803 | c->cputype = CPU_20KC; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 804 | __cpu_name[cpu] = "MIPS 20Kc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | break; |
| 806 | case PRID_IMP_24K: |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 807 | case PRID_IMP_24KE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | c->cputype = CPU_24K; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 809 | __cpu_name[cpu] = "MIPS 24Kc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | break; |
| 811 | case PRID_IMP_25KF: |
| 812 | c->cputype = CPU_25KF; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 813 | __cpu_name[cpu] = "MIPS 25Kc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | break; |
Ralf Baechle | bbc7f22 | 2005-07-12 16:12:05 +0000 | [diff] [blame] | 815 | case PRID_IMP_34K: |
| 816 | c->cputype = CPU_34K; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 817 | __cpu_name[cpu] = "MIPS 34Kc"; |
Ralf Baechle | bbc7f22 | 2005-07-12 16:12:05 +0000 | [diff] [blame] | 818 | break; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 819 | case PRID_IMP_74K: |
| 820 | c->cputype = CPU_74K; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 821 | __cpu_name[cpu] = "MIPS 74Kc"; |
Chris Dearman | c620953 | 2006-05-02 14:08:46 +0100 | [diff] [blame] | 822 | break; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 823 | case PRID_IMP_1004K: |
| 824 | c->cputype = CPU_1004K; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 825 | __cpu_name[cpu] = "MIPS 1004Kc"; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 826 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | } |
Chris Dearman | 0b6d497 | 2007-09-13 12:32:02 +0100 | [diff] [blame] | 828 | |
| 829 | spram_config(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 832 | static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 834 | decode_configs(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | switch (c->processor_id & 0xff00) { |
| 836 | case PRID_IMP_AU1_REV1: |
| 837 | case PRID_IMP_AU1_REV2: |
Manuel Lauss | 270717a | 2009-03-25 17:49:28 +0100 | [diff] [blame] | 838 | c->cputype = CPU_ALCHEMY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | switch ((c->processor_id >> 24) & 0xff) { |
| 840 | case 0: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 841 | __cpu_name[cpu] = "Au1000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | break; |
| 843 | case 1: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 844 | __cpu_name[cpu] = "Au1500"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | break; |
| 846 | case 2: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 847 | __cpu_name[cpu] = "Au1100"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | break; |
| 849 | case 3: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 850 | __cpu_name[cpu] = "Au1550"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | break; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 852 | case 4: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 853 | __cpu_name[cpu] = "Au1200"; |
Manuel Lauss | 270717a | 2009-03-25 17:49:28 +0100 | [diff] [blame] | 854 | if ((c->processor_id & 0xff) == 2) |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 855 | __cpu_name[cpu] = "Au1250"; |
Manuel Lauss | 237cfee | 2007-12-06 09:07:55 +0100 | [diff] [blame] | 856 | break; |
| 857 | case 5: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 858 | __cpu_name[cpu] = "Au1210"; |
Pete Popov | e3ad1c2 | 2005-03-01 06:33:16 +0000 | [diff] [blame] | 859 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | default: |
Manuel Lauss | 270717a | 2009-03-25 17:49:28 +0100 | [diff] [blame] | 861 | __cpu_name[cpu] = "Au1xxx"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | break; |
| 863 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | break; |
| 865 | } |
| 866 | } |
| 867 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 868 | static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 870 | decode_configs(c); |
Ralf Baechle | 02cf211 | 2005-10-01 13:06:32 +0100 | [diff] [blame] | 871 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | switch (c->processor_id & 0xff00) { |
| 873 | case PRID_IMP_SB1: |
| 874 | c->cputype = CPU_SB1; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 875 | __cpu_name[cpu] = "SiByte SB1"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | /* FPU in pass1 is known to have issues. */ |
Ralf Baechle | aa32374 | 2006-05-29 00:02:12 +0100 | [diff] [blame] | 877 | if ((c->processor_id & 0xff) < 0x02) |
Ralf Baechle | 010b853 | 2006-01-29 18:42:08 +0000 | [diff] [blame] | 878 | c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | break; |
Andrew Isaacson | 93ce2f52 | 2005-10-19 23:56:20 -0700 | [diff] [blame] | 880 | case PRID_IMP_SB1A: |
| 881 | c->cputype = CPU_SB1A; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 882 | __cpu_name[cpu] = "SiByte SB1A"; |
Andrew Isaacson | 93ce2f52 | 2005-10-19 23:56:20 -0700 | [diff] [blame] | 883 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | } |
| 886 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 887 | static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 889 | decode_configs(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | switch (c->processor_id & 0xff00) { |
| 891 | case PRID_IMP_SR71000: |
| 892 | c->cputype = CPU_SR71000; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 893 | __cpu_name[cpu] = "Sandcraft SR71000"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | c->scache.ways = 8; |
| 895 | c->tlbsize = 64; |
| 896 | break; |
| 897 | } |
| 898 | } |
| 899 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 900 | static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu) |
Pete Popov | bdf21b1 | 2005-07-14 17:47:57 +0000 | [diff] [blame] | 901 | { |
| 902 | decode_configs(c); |
| 903 | switch (c->processor_id & 0xff00) { |
| 904 | case PRID_IMP_PR4450: |
| 905 | c->cputype = CPU_PR4450; |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 906 | __cpu_name[cpu] = "Philips PR4450"; |
Ralf Baechle | e7958bb | 2005-12-08 13:00:20 +0000 | [diff] [blame] | 907 | c->isa_level = MIPS_CPU_ISA_M32R1; |
Pete Popov | bdf21b1 | 2005-07-14 17:47:57 +0000 | [diff] [blame] | 908 | break; |
Pete Popov | bdf21b1 | 2005-07-14 17:47:57 +0000 | [diff] [blame] | 909 | } |
| 910 | } |
| 911 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 912 | static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu) |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 913 | { |
| 914 | decode_configs(c); |
| 915 | switch (c->processor_id & 0xff00) { |
Kevin Cernekee | 190fca3 | 2010-11-23 10:26:45 -0800 | [diff] [blame] | 916 | case PRID_IMP_BMIPS32_REV4: |
| 917 | case PRID_IMP_BMIPS32_REV8: |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 918 | c->cputype = CPU_BMIPS32; |
| 919 | __cpu_name[cpu] = "Broadcom BMIPS32"; |
Kevin Cernekee | 06785df | 2011-04-16 11:29:28 -0700 | [diff] [blame^] | 920 | set_elf_platform(cpu, "bmips32"); |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 921 | break; |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 922 | case PRID_IMP_BMIPS3300: |
| 923 | case PRID_IMP_BMIPS3300_ALT: |
| 924 | case PRID_IMP_BMIPS3300_BUG: |
| 925 | c->cputype = CPU_BMIPS3300; |
| 926 | __cpu_name[cpu] = "Broadcom BMIPS3300"; |
Kevin Cernekee | 06785df | 2011-04-16 11:29:28 -0700 | [diff] [blame^] | 927 | set_elf_platform(cpu, "bmips3300"); |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 928 | break; |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 929 | case PRID_IMP_BMIPS43XX: { |
| 930 | int rev = c->processor_id & 0xff; |
| 931 | |
| 932 | if (rev >= PRID_REV_BMIPS4380_LO && |
| 933 | rev <= PRID_REV_BMIPS4380_HI) { |
| 934 | c->cputype = CPU_BMIPS4380; |
| 935 | __cpu_name[cpu] = "Broadcom BMIPS4380"; |
Kevin Cernekee | 06785df | 2011-04-16 11:29:28 -0700 | [diff] [blame^] | 936 | set_elf_platform(cpu, "bmips4380"); |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 937 | } else { |
| 938 | c->cputype = CPU_BMIPS4350; |
| 939 | __cpu_name[cpu] = "Broadcom BMIPS4350"; |
Kevin Cernekee | 06785df | 2011-04-16 11:29:28 -0700 | [diff] [blame^] | 940 | set_elf_platform(cpu, "bmips4350"); |
Maxime Bizon | 0de663e | 2009-08-18 13:23:37 +0100 | [diff] [blame] | 941 | } |
| 942 | break; |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 943 | } |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 944 | case PRID_IMP_BMIPS5000: |
| 945 | c->cputype = CPU_BMIPS5000; |
| 946 | __cpu_name[cpu] = "Broadcom BMIPS5000"; |
Kevin Cernekee | 06785df | 2011-04-16 11:29:28 -0700 | [diff] [blame^] | 947 | set_elf_platform(cpu, "bmips5000"); |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 948 | c->options |= MIPS_CPU_ULRI; |
| 949 | break; |
Kevin Cernekee | 602977b | 2010-10-16 14:22:30 -0700 | [diff] [blame] | 950 | } |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 951 | } |
| 952 | |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 953 | static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu) |
| 954 | { |
| 955 | decode_configs(c); |
| 956 | switch (c->processor_id & 0xff00) { |
| 957 | case PRID_IMP_CAVIUM_CN38XX: |
| 958 | case PRID_IMP_CAVIUM_CN31XX: |
| 959 | case PRID_IMP_CAVIUM_CN30XX: |
David Daney | 6f32946 | 2010-02-10 15:12:48 -0800 | [diff] [blame] | 960 | c->cputype = CPU_CAVIUM_OCTEON; |
| 961 | __cpu_name[cpu] = "Cavium Octeon"; |
| 962 | goto platform; |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 963 | case PRID_IMP_CAVIUM_CN58XX: |
| 964 | case PRID_IMP_CAVIUM_CN56XX: |
| 965 | case PRID_IMP_CAVIUM_CN50XX: |
| 966 | case PRID_IMP_CAVIUM_CN52XX: |
David Daney | 6f32946 | 2010-02-10 15:12:48 -0800 | [diff] [blame] | 967 | c->cputype = CPU_CAVIUM_OCTEON_PLUS; |
| 968 | __cpu_name[cpu] = "Cavium Octeon+"; |
| 969 | platform: |
Robert Millan | c094c99 | 2011-04-18 11:37:55 -0700 | [diff] [blame] | 970 | set_elf_platform(cpu, "octeon"); |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 971 | break; |
David Daney | 0e56b38 | 2010-10-07 16:03:45 -0700 | [diff] [blame] | 972 | case PRID_IMP_CAVIUM_CN63XX: |
| 973 | c->cputype = CPU_CAVIUM_OCTEON2; |
| 974 | __cpu_name[cpu] = "Cavium Octeon II"; |
Robert Millan | c094c99 | 2011-04-18 11:37:55 -0700 | [diff] [blame] | 975 | set_elf_platform(cpu, "octeon2"); |
David Daney | 0e56b38 | 2010-10-07 16:03:45 -0700 | [diff] [blame] | 976 | break; |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 977 | default: |
| 978 | printk(KERN_INFO "Unknown Octeon chip!\n"); |
| 979 | c->cputype = CPU_UNKNOWN; |
| 980 | break; |
| 981 | } |
| 982 | } |
| 983 | |
Lars-Peter Clausen | 83ccf69 | 2010-07-17 11:07:51 +0000 | [diff] [blame] | 984 | static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu) |
| 985 | { |
| 986 | decode_configs(c); |
| 987 | /* JZRISC does not implement the CP0 counter. */ |
| 988 | c->options &= ~MIPS_CPU_COUNTER; |
| 989 | switch (c->processor_id & 0xff00) { |
| 990 | case PRID_IMP_JZRISC: |
| 991 | c->cputype = CPU_JZRISC; |
| 992 | __cpu_name[cpu] = "Ingenic JZRISC"; |
| 993 | break; |
| 994 | default: |
| 995 | panic("Unknown Ingenic Processor ID!"); |
| 996 | break; |
| 997 | } |
| 998 | } |
| 999 | |
Jayachandran C | a7117c6 | 2011-05-11 12:04:58 +0530 | [diff] [blame] | 1000 | static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu) |
| 1001 | { |
| 1002 | decode_configs(c); |
| 1003 | |
| 1004 | c->options = (MIPS_CPU_TLB | |
| 1005 | MIPS_CPU_4KEX | |
| 1006 | MIPS_CPU_COUNTER | |
| 1007 | MIPS_CPU_DIVEC | |
| 1008 | MIPS_CPU_WATCH | |
| 1009 | MIPS_CPU_EJTAG | |
| 1010 | MIPS_CPU_LLSC); |
| 1011 | |
| 1012 | switch (c->processor_id & 0xff00) { |
| 1013 | case PRID_IMP_NETLOGIC_XLR732: |
| 1014 | case PRID_IMP_NETLOGIC_XLR716: |
| 1015 | case PRID_IMP_NETLOGIC_XLR532: |
| 1016 | case PRID_IMP_NETLOGIC_XLR308: |
| 1017 | case PRID_IMP_NETLOGIC_XLR532C: |
| 1018 | case PRID_IMP_NETLOGIC_XLR516C: |
| 1019 | case PRID_IMP_NETLOGIC_XLR508C: |
| 1020 | case PRID_IMP_NETLOGIC_XLR308C: |
| 1021 | c->cputype = CPU_XLR; |
| 1022 | __cpu_name[cpu] = "Netlogic XLR"; |
| 1023 | break; |
| 1024 | |
| 1025 | case PRID_IMP_NETLOGIC_XLS608: |
| 1026 | case PRID_IMP_NETLOGIC_XLS408: |
| 1027 | case PRID_IMP_NETLOGIC_XLS404: |
| 1028 | case PRID_IMP_NETLOGIC_XLS208: |
| 1029 | case PRID_IMP_NETLOGIC_XLS204: |
| 1030 | case PRID_IMP_NETLOGIC_XLS108: |
| 1031 | case PRID_IMP_NETLOGIC_XLS104: |
| 1032 | case PRID_IMP_NETLOGIC_XLS616B: |
| 1033 | case PRID_IMP_NETLOGIC_XLS608B: |
| 1034 | case PRID_IMP_NETLOGIC_XLS416B: |
| 1035 | case PRID_IMP_NETLOGIC_XLS412B: |
| 1036 | case PRID_IMP_NETLOGIC_XLS408B: |
| 1037 | case PRID_IMP_NETLOGIC_XLS404B: |
| 1038 | c->cputype = CPU_XLR; |
| 1039 | __cpu_name[cpu] = "Netlogic XLS"; |
| 1040 | break; |
| 1041 | |
| 1042 | default: |
| 1043 | printk(KERN_INFO "Unknown Netlogic chip id [%02x]!\n", |
| 1044 | c->processor_id); |
| 1045 | c->cputype = CPU_XLR; |
| 1046 | break; |
| 1047 | } |
| 1048 | |
| 1049 | c->isa_level = MIPS_CPU_ISA_M64R1; |
| 1050 | c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1; |
| 1051 | } |
| 1052 | |
David Daney | 949e51b | 2010-10-14 11:32:33 -0700 | [diff] [blame] | 1053 | #ifdef CONFIG_64BIT |
| 1054 | /* For use by uaccess.h */ |
| 1055 | u64 __ua_limit; |
| 1056 | EXPORT_SYMBOL(__ua_limit); |
| 1057 | #endif |
| 1058 | |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1059 | const char *__cpu_name[NR_CPUS]; |
David Daney | 874fd3b | 2010-01-28 16:52:12 -0800 | [diff] [blame] | 1060 | const char *__elf_platform; |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1061 | |
Ralf Baechle | 234fcd1 | 2008-03-08 09:56:28 +0000 | [diff] [blame] | 1062 | __cpuinit void cpu_probe(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | { |
| 1064 | struct cpuinfo_mips *c = ¤t_cpu_data; |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1065 | unsigned int cpu = smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | |
| 1067 | c->processor_id = PRID_IMP_UNKNOWN; |
| 1068 | c->fpu_id = FPIR_IMP_NONE; |
| 1069 | c->cputype = CPU_UNKNOWN; |
| 1070 | |
| 1071 | c->processor_id = read_c0_prid(); |
| 1072 | switch (c->processor_id & 0xff0000) { |
| 1073 | case PRID_COMP_LEGACY: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1074 | cpu_probe_legacy(c, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | break; |
| 1076 | case PRID_COMP_MIPS: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1077 | cpu_probe_mips(c, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | break; |
| 1079 | case PRID_COMP_ALCHEMY: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1080 | cpu_probe_alchemy(c, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | break; |
| 1082 | case PRID_COMP_SIBYTE: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1083 | cpu_probe_sibyte(c, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | break; |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 1085 | case PRID_COMP_BROADCOM: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1086 | cpu_probe_broadcom(c, cpu); |
Aurelien Jarno | 1c0c13e | 2007-09-25 15:40:12 +0200 | [diff] [blame] | 1087 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | case PRID_COMP_SANDCRAFT: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1089 | cpu_probe_sandcraft(c, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | break; |
Daniel Laird | a92b058 | 2008-03-06 09:07:18 +0000 | [diff] [blame] | 1091 | case PRID_COMP_NXP: |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1092 | cpu_probe_nxp(c, cpu); |
Ralf Baechle | a3dddd5 | 2006-03-11 08:18:41 +0000 | [diff] [blame] | 1093 | break; |
David Daney | 0dd4781 | 2008-12-11 15:33:26 -0800 | [diff] [blame] | 1094 | case PRID_COMP_CAVIUM: |
| 1095 | cpu_probe_cavium(c, cpu); |
| 1096 | break; |
Lars-Peter Clausen | 83ccf69 | 2010-07-17 11:07:51 +0000 | [diff] [blame] | 1097 | case PRID_COMP_INGENIC: |
| 1098 | cpu_probe_ingenic(c, cpu); |
| 1099 | break; |
Jayachandran C | a7117c6 | 2011-05-11 12:04:58 +0530 | [diff] [blame] | 1100 | case PRID_COMP_NETLOGIC: |
| 1101 | cpu_probe_netlogic(c, cpu); |
| 1102 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | } |
Franck Bui-Huu | dec8b1c | 2007-10-08 16:11:51 +0200 | [diff] [blame] | 1104 | |
Ralf Baechle | cea7e2d | 2008-10-30 13:38:45 +0000 | [diff] [blame] | 1105 | BUG_ON(!__cpu_name[cpu]); |
| 1106 | BUG_ON(c->cputype == CPU_UNKNOWN); |
| 1107 | |
Franck Bui-Huu | dec8b1c | 2007-10-08 16:11:51 +0200 | [diff] [blame] | 1108 | /* |
| 1109 | * Platform code can force the cpu type to optimize code |
| 1110 | * generation. In that case be sure the cpu type is correctly |
| 1111 | * manually setup otherwise it could trigger some nasty bugs. |
| 1112 | */ |
| 1113 | BUG_ON(current_cpu_type() != c->cputype); |
| 1114 | |
Kevin Cernekee | 0103d23 | 2010-05-02 14:43:52 -0700 | [diff] [blame] | 1115 | if (mips_fpu_disabled) |
| 1116 | c->options &= ~MIPS_CPU_FPU; |
| 1117 | |
| 1118 | if (mips_dsp_disabled) |
| 1119 | c->ases &= ~MIPS_ASE_DSP; |
| 1120 | |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 1121 | if (c->options & MIPS_CPU_FPU) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | c->fpu_id = cpu_get_fpu_id(); |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 1123 | |
Ralf Baechle | e7958bb | 2005-12-08 13:00:20 +0000 | [diff] [blame] | 1124 | if (c->isa_level == MIPS_CPU_ISA_M32R1 || |
Ralf Baechle | b4672d3 | 2005-12-08 14:04:24 +0000 | [diff] [blame] | 1125 | c->isa_level == MIPS_CPU_ISA_M32R2 || |
| 1126 | c->isa_level == MIPS_CPU_ISA_M64R1 || |
| 1127 | c->isa_level == MIPS_CPU_ISA_M64R2) { |
Ralf Baechle | 4194318 | 2005-05-05 16:45:59 +0000 | [diff] [blame] | 1128 | if (c->fpu_id & MIPS_FPIR_3D) |
| 1129 | c->ases |= MIPS_ASE_MIPS3D; |
| 1130 | } |
| 1131 | } |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1132 | |
Ralf Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 1133 | if (cpu_has_mips_r2) |
| 1134 | c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1; |
| 1135 | else |
| 1136 | c->srsets = 1; |
Guenter Roeck | 91dfc42 | 2010-02-02 08:52:20 -0800 | [diff] [blame] | 1137 | |
| 1138 | cpu_probe_vmbits(c); |
David Daney | 949e51b | 2010-10-14 11:32:33 -0700 | [diff] [blame] | 1139 | |
| 1140 | #ifdef CONFIG_64BIT |
| 1141 | if (cpu == 0) |
| 1142 | __ua_limit = ~((1ull << cpu_vmbits) - 1); |
| 1143 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | } |
| 1145 | |
Ralf Baechle | 234fcd1 | 2008-03-08 09:56:28 +0000 | [diff] [blame] | 1146 | __cpuinit void cpu_report(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | { |
| 1148 | struct cpuinfo_mips *c = ¤t_cpu_data; |
| 1149 | |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1150 | printk(KERN_INFO "CPU revision is: %08x (%s)\n", |
| 1151 | c->processor_id, cpu_name_string()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | if (c->options & MIPS_CPU_FPU) |
Ralf Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 1153 | printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | } |