Linux Audio

Check our new training course

Loading...
v3.5.6
 
   1/*
   2 * Processor capabilities determination functions.
   3 *
   4 * Copyright (C) xxxx  the Anonymous
   5 * Copyright (C) 1994 - 2006 Ralf Baechle
   6 * Copyright (C) 2003, 2004  Maciej W. Rozycki
   7 * Copyright (C) 2001, 2004, 2011, 2012  MIPS Technologies, Inc.
   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 */
  14#include <linux/init.h>
  15#include <linux/kernel.h>
  16#include <linux/ptrace.h>
  17#include <linux/smp.h>
  18#include <linux/stddef.h>
  19#include <linux/export.h>
  20
  21#include <asm/bugs.h>
  22#include <asm/cpu.h>
 
 
  23#include <asm/fpu.h>
  24#include <asm/mipsregs.h>
 
 
  25#include <asm/watch.h>
  26#include <asm/elf.h>
 
  27#include <asm/spram.h>
  28#include <asm/uaccess.h>
 
  29
  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 */
  37void (*cpu_wait)(void);
  38EXPORT_SYMBOL(cpu_wait);
  39
  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{
  48	local_irq_disable();
  49	if (!need_resched())
  50		write_c0_conf(read_c0_conf() | TX39_CONF_HALT);
  51	local_irq_enable();
  52}
  53
  54extern void r4k_wait(void);
  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 */
  63void r4k_wait_irqoff(void)
  64{
  65	local_irq_disable();
  66	if (!need_resched())
  67		__asm__("	.set	push		\n"
  68			"	.set	mips3		\n"
  69			"	wait			\n"
  70			"	.set	pop		\n");
  71	local_irq_enable();
  72	__asm__(" 	.globl __pastwait	\n"
  73		"__pastwait:			\n");
  74}
  75
  76/*
  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
  97/*
  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 */
 102static void au1k_wait(void)
 103{
 104	__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"
 115		: : "r" (au1k_wait));
 116}
 117
 118static int __initdata nowait;
 119
 120static int __init wait_disable(char *s)
 121{
 122	nowait = 1;
 
 123
 124	return 1;
 125}
 126
 127__setup("nowait", wait_disable);
 128
 129static 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
 153void __init check_wait(void)
 154{
 155	struct cpuinfo_mips *c = &current_cpu_data;
 156
 157	if (nowait) {
 158		printk("Wait instruction disabled.\n");
 159		return;
 
 
 
 
 160	}
 161
 162	switch (c->cputype) {
 163	case CPU_R3081:
 164	case CPU_R3081E:
 165		cpu_wait = r3081_wait;
 166		break;
 167	case CPU_TX3927:
 168		cpu_wait = r39xx_wait;
 169		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:
 177	case CPU_R5500:
 178	case CPU_NEVADA:
 179	case CPU_4KC:
 180	case CPU_4KEC:
 181	case CPU_4KSC:
 182	case CPU_5KC:
 183	case CPU_25KF:
 184	case CPU_PR4450:
 185	case CPU_BMIPS3300:
 186	case CPU_BMIPS4350:
 187	case CPU_BMIPS4380:
 188	case CPU_BMIPS5000:
 189	case CPU_CAVIUM_OCTEON:
 190	case CPU_CAVIUM_OCTEON_PLUS:
 191	case CPU_CAVIUM_OCTEON2:
 192	case CPU_JZRISC:
 193	case CPU_XLR:
 194	case CPU_XLP:
 195		cpu_wait = r4k_wait;
 196		break;
 197
 198	case CPU_RM7000:
 199		cpu_wait = rm7k_wait_irqoff;
 200		break;
 
 
 201
 202	case CPU_M14KC:
 203	case CPU_24K:
 204	case CPU_34K:
 205	case CPU_1004K:
 206		cpu_wait = r4k_wait;
 207		if (read_c0_config7() & MIPS_CONF7_WII)
 208			cpu_wait = r4k_wait_irqoff;
 209		break;
 
 210
 211	case CPU_74K:
 212		cpu_wait = r4k_wait;
 213		if ((c->processor_id & 0xff) >= PRID_REV_ENCODE_332(2, 1, 0))
 214			cpu_wait = r4k_wait_irqoff;
 215		break;
 216
 217	case CPU_TX49XX:
 218		cpu_wait = r4k_wait_irqoff;
 219		break;
 220	case CPU_ALCHEMY:
 221		cpu_wait = au1k_wait;
 222		break;
 223	case CPU_20KC:
 224		/*
 225		 * WAIT on Rev1.0 has E1, E2, E3 and E16.
 226		 * WAIT on Rev2.0 and Rev3.0 has E16.
 227		 * Rev3.1 WAIT is nop, why bother
 228		 */
 229		if ((c->processor_id & 0xff) <= 0x64)
 230			break;
 231
 232		/*
 233		 * Another rev is incremeting c0_count at a reduced clock
 234		 * rate while in WAIT mode.  So we basically have the choice
 235		 * between using the cp0 timer as clocksource or avoiding
 236		 * the WAIT instruction.  Until more details are known,
 237		 * disable the use of WAIT for 20Kc entirely.
 238		   cpu_wait = r4k_wait;
 239		 */
 240		break;
 241	case CPU_RM9000:
 242		if ((c->processor_id & 0x00ff) >= 0x40)
 243			cpu_wait = r4k_wait;
 244		break;
 245	default:
 246		break;
 247	}
 248}
 249
 250static inline void check_errata(void)
 251{
 252	struct cpuinfo_mips *c = &current_cpu_data;
 253
 254	switch (c->cputype) {
 255	case CPU_34K:
 256		/*
 257		 * Erratum "RPS May Cause Incorrect Instruction Execution"
 258		 * This code only handles VPE0, any SMP/SMTC/RTOS code
 259		 * making use of VPE1 will be responsable for that VPE.
 260		 */
 261		if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
 262			write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
 263		break;
 264	default:
 265		break;
 266	}
 267}
 268
 269void __init check_bugs32(void)
 270{
 271	check_errata();
 272}
 273
 274/*
 275 * Probe whether cpu has config register by trying to play with
 276 * alternate cache bit and see whether it matters.
 277 * It's used by cpu_probe to distinguish between R3000A and R3081.
 278 */
 279static inline int cpu_has_confreg(void)
 280{
 281#ifdef CONFIG_CPU_R3000
 282	extern unsigned long r3k_cache_size(unsigned long);
 283	unsigned long size1, size2;
 284	unsigned long cfg = read_c0_conf();
 285
 286	size1 = r3k_cache_size(ST0_ISC);
 287	write_c0_conf(cfg ^ R30XX_CONF_AC);
 288	size2 = r3k_cache_size(ST0_ISC);
 289	write_c0_conf(cfg);
 290	return size1 != size2;
 291#else
 292	return 0;
 293#endif
 294}
 295
 296static inline void set_elf_platform(int cpu, const char *plat)
 297{
 298	if (cpu == 0)
 299		__elf_platform = plat;
 300}
 301
 302/*
 303 * Get the FPU Implementation/Revision.
 304 */
 305static inline unsigned long cpu_get_fpu_id(void)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 306{
 307	unsigned long tmp, fpu_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 308
 309	tmp = read_c0_status();
 310	__enable_fpu();
 311	fpu_id = read_32bit_cp1_register(CP1_REVISION);
 312	write_c0_status(tmp);
 313	return fpu_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 314}
 315
 316/*
 317 * Check the CPU has an FPU the official way.
 
 318 */
 319static inline int __cpu_has_fpu(void)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 320{
 321	return ((cpu_get_fpu_id() & 0xff00) != FPIR_IMP_NONE);
 
 
 
 
 
 
 322}
 323
 324static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
 325{
 326#ifdef __NEED_VMBITS_PROBE
 327	write_c0_entryhi(0x3fffffffffffe000ULL);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 328	back_to_back_c0_hazard();
 329	c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
 330#endif
 
 
 
 
 
 
 
 
 
 
 
 331}
 332
 333#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
 334		| MIPS_CPU_COUNTER)
 335
 336static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
 337{
 338	switch (c->processor_id & 0xff00) {
 339	case PRID_IMP_R2000:
 340		c->cputype = CPU_R2000;
 341		__cpu_name[cpu] = "R2000";
 342		c->isa_level = MIPS_CPU_ISA_I;
 343		c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
 344			     MIPS_CPU_NOFPUEX;
 345		if (__cpu_has_fpu())
 346			c->options |= MIPS_CPU_FPU;
 347		c->tlbsize = 64;
 348		break;
 349	case PRID_IMP_R3000:
 350		if ((c->processor_id & 0xff) == PRID_REV_R3000A) {
 351			if (cpu_has_confreg()) {
 352				c->cputype = CPU_R3081E;
 353				__cpu_name[cpu] = "R3081";
 354			} else {
 355				c->cputype = CPU_R3000A;
 356				__cpu_name[cpu] = "R3000A";
 357			}
 358			break;
 359		} else {
 360			c->cputype = CPU_R3000;
 361			__cpu_name[cpu] = "R3000";
 362		}
 363		c->isa_level = MIPS_CPU_ISA_I;
 364		c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
 365			     MIPS_CPU_NOFPUEX;
 366		if (__cpu_has_fpu())
 367			c->options |= MIPS_CPU_FPU;
 368		c->tlbsize = 64;
 369		break;
 370	case PRID_IMP_R4000:
 371		if (read_c0_config() & CONF_SC) {
 372			if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
 
 373				c->cputype = CPU_R4400PC;
 374				__cpu_name[cpu] = "R4400PC";
 375			} else {
 376				c->cputype = CPU_R4000PC;
 377				__cpu_name[cpu] = "R4000PC";
 378			}
 379		} else {
 380			if ((c->processor_id & 0xff) >= PRID_REV_R4400) {
 381				c->cputype = CPU_R4400SC;
 382				__cpu_name[cpu] = "R4400SC";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 383			} else {
 384				c->cputype = CPU_R4000SC;
 385				__cpu_name[cpu] = "R4000SC";
 386			}
 387		}
 388
 389		c->isa_level = MIPS_CPU_ISA_III;
 
 390		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 391			     MIPS_CPU_WATCH | MIPS_CPU_VCE |
 392			     MIPS_CPU_LLSC;
 393		c->tlbsize = 48;
 394		break;
 395	case PRID_IMP_VR41XX:
 396		switch (c->processor_id & 0xf0) {
 397		case PRID_REV_VR4111:
 398			c->cputype = CPU_VR4111;
 399			__cpu_name[cpu] = "NEC VR4111";
 400			break;
 401		case PRID_REV_VR4121:
 402			c->cputype = CPU_VR4121;
 403			__cpu_name[cpu] = "NEC VR4121";
 404			break;
 405		case PRID_REV_VR4122:
 406			if ((c->processor_id & 0xf) < 0x3) {
 407				c->cputype = CPU_VR4122;
 408				__cpu_name[cpu] = "NEC VR4122";
 409			} else {
 410				c->cputype = CPU_VR4181A;
 411				__cpu_name[cpu] = "NEC VR4181A";
 412			}
 413			break;
 414		case PRID_REV_VR4130:
 415			if ((c->processor_id & 0xf) < 0x4) {
 416				c->cputype = CPU_VR4131;
 417				__cpu_name[cpu] = "NEC VR4131";
 418			} else {
 419				c->cputype = CPU_VR4133;
 420				__cpu_name[cpu] = "NEC VR4133";
 421			}
 422			break;
 423		default:
 424			printk(KERN_INFO "Unexpected CPU of NEC VR4100 series\n");
 425			c->cputype = CPU_VR41XX;
 426			__cpu_name[cpu] = "NEC Vr41xx";
 427			break;
 428		}
 429		c->isa_level = MIPS_CPU_ISA_III;
 430		c->options = R4K_OPTS;
 431		c->tlbsize = 32;
 432		break;
 433	case PRID_IMP_R4300:
 434		c->cputype = CPU_R4300;
 435		__cpu_name[cpu] = "R4300";
 436		c->isa_level = MIPS_CPU_ISA_III;
 
 437		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 438			     MIPS_CPU_LLSC;
 439		c->tlbsize = 32;
 440		break;
 441	case PRID_IMP_R4600:
 442		c->cputype = CPU_R4600;
 443		__cpu_name[cpu] = "R4600";
 444		c->isa_level = MIPS_CPU_ISA_III;
 
 445		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 446			     MIPS_CPU_LLSC;
 447		c->tlbsize = 48;
 448		break;
 449	#if 0
 450	case PRID_IMP_R4650:
 451		/*
 452		 * This processor doesn't have an MMU, so it's not
 453		 * "real easy" to run Linux on it. It is left purely
 454		 * for documentation.  Commented out because it shares
 455		 * it's c0_prid id number with the TX3900.
 456		 */
 457		c->cputype = CPU_R4650;
 458		__cpu_name[cpu] = "R4650";
 459		c->isa_level = MIPS_CPU_ISA_III;
 
 460		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
 461		c->tlbsize = 48;
 462		break;
 463	#endif
 464	case PRID_IMP_TX39:
 465		c->isa_level = MIPS_CPU_ISA_I;
 466		c->options = MIPS_CPU_TLB | MIPS_CPU_TX39_CACHE;
 467
 468		if ((c->processor_id & 0xf0) == (PRID_REV_TX3927 & 0xf0)) {
 469			c->cputype = CPU_TX3927;
 470			__cpu_name[cpu] = "TX3927";
 471			c->tlbsize = 64;
 472		} else {
 473			switch (c->processor_id & 0xff) {
 474			case PRID_REV_TX3912:
 475				c->cputype = CPU_TX3912;
 476				__cpu_name[cpu] = "TX3912";
 477				c->tlbsize = 32;
 478				break;
 479			case PRID_REV_TX3922:
 480				c->cputype = CPU_TX3922;
 481				__cpu_name[cpu] = "TX3922";
 482				c->tlbsize = 64;
 483				break;
 484			}
 485		}
 486		break;
 487	case PRID_IMP_R4700:
 488		c->cputype = CPU_R4700;
 489		__cpu_name[cpu] = "R4700";
 490		c->isa_level = MIPS_CPU_ISA_III;
 
 491		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 492			     MIPS_CPU_LLSC;
 493		c->tlbsize = 48;
 494		break;
 495	case PRID_IMP_TX49:
 496		c->cputype = CPU_TX49XX;
 497		__cpu_name[cpu] = "R49XX";
 498		c->isa_level = MIPS_CPU_ISA_III;
 
 499		c->options = R4K_OPTS | MIPS_CPU_LLSC;
 500		if (!(c->processor_id & 0x08))
 501			c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
 502		c->tlbsize = 48;
 503		break;
 504	case PRID_IMP_R5000:
 505		c->cputype = CPU_R5000;
 506		__cpu_name[cpu] = "R5000";
 507		c->isa_level = MIPS_CPU_ISA_IV;
 508		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 509			     MIPS_CPU_LLSC;
 510		c->tlbsize = 48;
 511		break;
 512	case PRID_IMP_R5432:
 513		c->cputype = CPU_R5432;
 514		__cpu_name[cpu] = "R5432";
 515		c->isa_level = MIPS_CPU_ISA_IV;
 516		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 517			     MIPS_CPU_WATCH | MIPS_CPU_LLSC;
 518		c->tlbsize = 48;
 519		break;
 520	case PRID_IMP_R5500:
 521		c->cputype = CPU_R5500;
 522		__cpu_name[cpu] = "R5500";
 523		c->isa_level = MIPS_CPU_ISA_IV;
 524		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 525			     MIPS_CPU_WATCH | MIPS_CPU_LLSC;
 526		c->tlbsize = 48;
 527		break;
 528	case PRID_IMP_NEVADA:
 529		c->cputype = CPU_NEVADA;
 530		__cpu_name[cpu] = "Nevada";
 531		c->isa_level = MIPS_CPU_ISA_IV;
 532		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 533			     MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
 534		c->tlbsize = 48;
 535		break;
 536	case PRID_IMP_R6000:
 537		c->cputype = CPU_R6000;
 538		__cpu_name[cpu] = "R6000";
 539		c->isa_level = MIPS_CPU_ISA_II;
 540		c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
 541			     MIPS_CPU_LLSC;
 542		c->tlbsize = 32;
 543		break;
 544	case PRID_IMP_R6000A:
 545		c->cputype = CPU_R6000A;
 546		__cpu_name[cpu] = "R6000A";
 547		c->isa_level = MIPS_CPU_ISA_II;
 548		c->options = MIPS_CPU_TLB | MIPS_CPU_FPU |
 549			     MIPS_CPU_LLSC;
 550		c->tlbsize = 32;
 551		break;
 552	case PRID_IMP_RM7000:
 553		c->cputype = CPU_RM7000;
 554		__cpu_name[cpu] = "RM7000";
 555		c->isa_level = MIPS_CPU_ISA_IV;
 556		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 557			     MIPS_CPU_LLSC;
 558		/*
 559		 * Undocumented RM7000:  Bit 29 in the info register of
 560		 * the RM7000 v2.0 indicates if the TLB has 48 or 64
 561		 * entries.
 562		 *
 563		 * 29      1 =>    64 entry JTLB
 564		 *         0 =>    48 entry JTLB
 565		 */
 566		c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
 567		break;
 568	case PRID_IMP_RM9000:
 569		c->cputype = CPU_RM9000;
 570		__cpu_name[cpu] = "RM9000";
 571		c->isa_level = MIPS_CPU_ISA_IV;
 572		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
 573			     MIPS_CPU_LLSC;
 574		/*
 575		 * Bit 29 in the info register of the RM9000
 576		 * indicates if the TLB has 48 or 64 entries.
 577		 *
 578		 * 29      1 =>    64 entry JTLB
 579		 *         0 =>    48 entry JTLB
 580		 */
 581		c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
 582		break;
 583	case PRID_IMP_R8000:
 584		c->cputype = CPU_R8000;
 585		__cpu_name[cpu] = "RM8000";
 586		c->isa_level = MIPS_CPU_ISA_IV;
 587		c->options = MIPS_CPU_TLB | MIPS_CPU_4KEX |
 588			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
 589			     MIPS_CPU_LLSC;
 590		c->tlbsize = 384;      /* has weird TLB: 3-way x 128 */
 591		break;
 592	case PRID_IMP_R10000:
 593		c->cputype = CPU_R10000;
 594		__cpu_name[cpu] = "R10000";
 595		c->isa_level = MIPS_CPU_ISA_IV;
 596		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
 597			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
 598			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
 599			     MIPS_CPU_LLSC;
 600		c->tlbsize = 64;
 601		break;
 602	case PRID_IMP_R12000:
 603		c->cputype = CPU_R12000;
 604		__cpu_name[cpu] = "R12000";
 605		c->isa_level = MIPS_CPU_ISA_IV;
 606		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
 607			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
 608			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
 609			     MIPS_CPU_LLSC;
 610		c->tlbsize = 64;
 
 611		break;
 612	case PRID_IMP_R14000:
 613		c->cputype = CPU_R14000;
 614		__cpu_name[cpu] = "R14000";
 615		c->isa_level = MIPS_CPU_ISA_IV;
 
 
 
 
 
 616		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
 617			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
 618			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
 619			     MIPS_CPU_LLSC;
 620		c->tlbsize = 64;
 
 621		break;
 622	case PRID_IMP_LOONGSON2:
 623		c->cputype = CPU_LOONGSON2;
 624		__cpu_name[cpu] = "ICT Loongson-2";
 625
 626		switch (c->processor_id & PRID_REV_MASK) {
 627		case PRID_REV_LOONGSON2E:
 
 
 628			set_elf_platform(cpu, "loongson2e");
 
 
 629			break;
 630		case PRID_REV_LOONGSON2F:
 
 
 631			set_elf_platform(cpu, "loongson2f");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 632			break;
 633		}
 634
 635		c->isa_level = MIPS_CPU_ISA_III;
 636		c->options = R4K_OPTS |
 637			     MIPS_CPU_FPU | MIPS_CPU_LLSC |
 638			     MIPS_CPU_32FPR;
 639		c->tlbsize = 64;
 
 
 640		break;
 641	}
 642}
 643
 644static char unknown_isa[] __cpuinitdata = KERN_ERR \
 645	"Unsupported ISA type, c0.config0: %d.";
 646
 647static inline unsigned int decode_config0(struct cpuinfo_mips *c)
 648{
 649	unsigned int config0;
 650	int isa;
 651
 652	config0 = read_c0_config();
 653
 654	if (((config0 & MIPS_CONF_MT) >> 7) == 1)
 655		c->options |= MIPS_CPU_TLB;
 656	isa = (config0 & MIPS_CONF_AT) >> 13;
 657	switch (isa) {
 658	case 0:
 659		switch ((config0 & MIPS_CONF_AR) >> 10) {
 660		case 0:
 661			c->isa_level = MIPS_CPU_ISA_M32R1;
 662			break;
 663		case 1:
 664			c->isa_level = MIPS_CPU_ISA_M32R2;
 665			break;
 666		default:
 667			goto unknown;
 668		}
 669		break;
 670	case 2:
 671		switch ((config0 & MIPS_CONF_AR) >> 10) {
 672		case 0:
 673			c->isa_level = MIPS_CPU_ISA_M64R1;
 674			break;
 675		case 1:
 676			c->isa_level = MIPS_CPU_ISA_M64R2;
 677			break;
 678		default:
 679			goto unknown;
 680		}
 681		break;
 682	default:
 683		goto unknown;
 684	}
 685
 686	return config0 & MIPS_CONF_M;
 687
 688unknown:
 689	panic(unknown_isa, config0);
 690}
 691
 692static inline unsigned int decode_config1(struct cpuinfo_mips *c)
 693{
 694	unsigned int config1;
 695
 696	config1 = read_c0_config1();
 697
 698	if (config1 & MIPS_CONF1_MD)
 699		c->ases |= MIPS_ASE_MDMX;
 700	if (config1 & MIPS_CONF1_WR)
 701		c->options |= MIPS_CPU_WATCH;
 702	if (config1 & MIPS_CONF1_CA)
 703		c->ases |= MIPS_ASE_MIPS16;
 704	if (config1 & MIPS_CONF1_EP)
 705		c->options |= MIPS_CPU_EJTAG;
 706	if (config1 & MIPS_CONF1_FP) {
 707		c->options |= MIPS_CPU_FPU;
 708		c->options |= MIPS_CPU_32FPR;
 709	}
 710	if (cpu_has_tlb)
 711		c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
 712
 713	return config1 & MIPS_CONF_M;
 714}
 715
 716static inline unsigned int decode_config2(struct cpuinfo_mips *c)
 717{
 718	unsigned int config2;
 719
 720	config2 = read_c0_config2();
 721
 722	if (config2 & MIPS_CONF2_SL)
 723		c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
 724
 725	return config2 & MIPS_CONF_M;
 726}
 727
 728static inline unsigned int decode_config3(struct cpuinfo_mips *c)
 729{
 730	unsigned int config3;
 731
 732	config3 = read_c0_config3();
 733
 734	if (config3 & MIPS_CONF3_SM)
 735		c->ases |= MIPS_ASE_SMARTMIPS;
 736	if (config3 & MIPS_CONF3_DSP)
 737		c->ases |= MIPS_ASE_DSP;
 738	if (config3 & MIPS_CONF3_VINT)
 739		c->options |= MIPS_CPU_VINT;
 740	if (config3 & MIPS_CONF3_VEIC)
 741		c->options |= MIPS_CPU_VEIC;
 742	if (config3 & MIPS_CONF3_MT)
 743		c->ases |= MIPS_ASE_MIPSMT;
 744	if (config3 & MIPS_CONF3_ULRI)
 745		c->options |= MIPS_CPU_ULRI;
 746
 747	return config3 & MIPS_CONF_M;
 748}
 749
 750static inline unsigned int decode_config4(struct cpuinfo_mips *c)
 751{
 752	unsigned int config4;
 753
 754	config4 = read_c0_config4();
 755
 756	if ((config4 & MIPS_CONF4_MMUEXTDEF) == MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT
 757	    && cpu_has_tlb)
 758		c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
 759
 760	c->kscratch_mask = (config4 >> 16) & 0xff;
 761
 762	return config4 & MIPS_CONF_M;
 763}
 764
 765static void __cpuinit decode_configs(struct cpuinfo_mips *c)
 766{
 767	int ok;
 768
 769	/* MIPS32 or MIPS64 compliant CPU.  */
 770	c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
 771		     MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
 772
 773	c->scache.flags = MIPS_CACHE_NOT_PRESENT;
 774
 775	ok = decode_config0(c);			/* Read Config registers.  */
 776	BUG_ON(!ok);				/* Arch spec violation!  */
 777	if (ok)
 778		ok = decode_config1(c);
 779	if (ok)
 780		ok = decode_config2(c);
 781	if (ok)
 782		ok = decode_config3(c);
 783	if (ok)
 784		ok = decode_config4(c);
 785
 786	mips_probe_watch_registers(c);
 787
 788	if (cpu_has_mips_r2)
 789		c->core = read_c0_ebase() & 0x3ff;
 790}
 791
 792static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
 793{
 794	decode_configs(c);
 795	switch (c->processor_id & 0xff00) {
 
 
 
 
 
 796	case PRID_IMP_4KC:
 797		c->cputype = CPU_4KC;
 
 798		__cpu_name[cpu] = "MIPS 4Kc";
 799		break;
 800	case PRID_IMP_4KEC:
 801	case PRID_IMP_4KECR2:
 802		c->cputype = CPU_4KEC;
 
 803		__cpu_name[cpu] = "MIPS 4KEc";
 804		break;
 805	case PRID_IMP_4KSC:
 806	case PRID_IMP_4KSD:
 807		c->cputype = CPU_4KSC;
 
 808		__cpu_name[cpu] = "MIPS 4KSc";
 809		break;
 810	case PRID_IMP_5KC:
 811		c->cputype = CPU_5KC;
 
 812		__cpu_name[cpu] = "MIPS 5Kc";
 813		break;
 814	case PRID_IMP_5KE:
 815		c->cputype = CPU_5KE;
 
 816		__cpu_name[cpu] = "MIPS 5KE";
 817		break;
 818	case PRID_IMP_20KC:
 819		c->cputype = CPU_20KC;
 
 820		__cpu_name[cpu] = "MIPS 20Kc";
 821		break;
 822	case PRID_IMP_24K:
 823	case PRID_IMP_24KE:
 824		c->cputype = CPU_24K;
 
 825		__cpu_name[cpu] = "MIPS 24Kc";
 826		break;
 
 
 
 
 
 827	case PRID_IMP_25KF:
 828		c->cputype = CPU_25KF;
 
 829		__cpu_name[cpu] = "MIPS 25Kc";
 830		break;
 831	case PRID_IMP_34K:
 832		c->cputype = CPU_34K;
 
 833		__cpu_name[cpu] = "MIPS 34Kc";
 
 834		break;
 835	case PRID_IMP_74K:
 836		c->cputype = CPU_74K;
 
 837		__cpu_name[cpu] = "MIPS 74Kc";
 838		break;
 839	case PRID_IMP_M14KC:
 840		c->cputype = CPU_M14KC;
 
 841		__cpu_name[cpu] = "MIPS M14Kc";
 842		break;
 
 
 
 
 
 843	case PRID_IMP_1004K:
 844		c->cputype = CPU_1004K;
 
 845		__cpu_name[cpu] = "MIPS 1004Kc";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 846		break;
 847	}
 848
 
 
 849	spram_config();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 850}
 851
 852static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
 853{
 854	decode_configs(c);
 855	switch (c->processor_id & 0xff00) {
 856	case PRID_IMP_AU1_REV1:
 857	case PRID_IMP_AU1_REV2:
 858		c->cputype = CPU_ALCHEMY;
 859		switch ((c->processor_id >> 24) & 0xff) {
 860		case 0:
 861			__cpu_name[cpu] = "Au1000";
 862			break;
 863		case 1:
 864			__cpu_name[cpu] = "Au1500";
 865			break;
 866		case 2:
 867			__cpu_name[cpu] = "Au1100";
 868			break;
 869		case 3:
 870			__cpu_name[cpu] = "Au1550";
 871			break;
 872		case 4:
 873			__cpu_name[cpu] = "Au1200";
 874			if ((c->processor_id & 0xff) == 2)
 875				__cpu_name[cpu] = "Au1250";
 876			break;
 877		case 5:
 878			__cpu_name[cpu] = "Au1210";
 879			break;
 880		default:
 881			__cpu_name[cpu] = "Au1xxx";
 882			break;
 883		}
 884		break;
 885	}
 886}
 887
 888static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
 889{
 890	decode_configs(c);
 891
 892	switch (c->processor_id & 0xff00) {
 
 893	case PRID_IMP_SB1:
 894		c->cputype = CPU_SB1;
 895		__cpu_name[cpu] = "SiByte SB1";
 896		/* FPU in pass1 is known to have issues. */
 897		if ((c->processor_id & 0xff) < 0x02)
 898			c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
 899		break;
 900	case PRID_IMP_SB1A:
 901		c->cputype = CPU_SB1A;
 902		__cpu_name[cpu] = "SiByte SB1A";
 903		break;
 904	}
 905}
 906
 907static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
 908{
 909	decode_configs(c);
 910	switch (c->processor_id & 0xff00) {
 911	case PRID_IMP_SR71000:
 912		c->cputype = CPU_SR71000;
 913		__cpu_name[cpu] = "Sandcraft SR71000";
 914		c->scache.ways = 8;
 915		c->tlbsize = 64;
 916		break;
 917	}
 918}
 919
 920static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
 921{
 922	decode_configs(c);
 923	switch (c->processor_id & 0xff00) {
 924	case PRID_IMP_PR4450:
 925		c->cputype = CPU_PR4450;
 926		__cpu_name[cpu] = "Philips PR4450";
 927		c->isa_level = MIPS_CPU_ISA_M32R1;
 928		break;
 929	}
 930}
 931
 932static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
 933{
 934	decode_configs(c);
 935	switch (c->processor_id & 0xff00) {
 936	case PRID_IMP_BMIPS32_REV4:
 937	case PRID_IMP_BMIPS32_REV8:
 938		c->cputype = CPU_BMIPS32;
 939		__cpu_name[cpu] = "Broadcom BMIPS32";
 940		set_elf_platform(cpu, "bmips32");
 941		break;
 942	case PRID_IMP_BMIPS3300:
 943	case PRID_IMP_BMIPS3300_ALT:
 944	case PRID_IMP_BMIPS3300_BUG:
 945		c->cputype = CPU_BMIPS3300;
 946		__cpu_name[cpu] = "Broadcom BMIPS3300";
 947		set_elf_platform(cpu, "bmips3300");
 
 948		break;
 949	case PRID_IMP_BMIPS43XX: {
 950		int rev = c->processor_id & 0xff;
 951
 952		if (rev >= PRID_REV_BMIPS4380_LO &&
 953				rev <= PRID_REV_BMIPS4380_HI) {
 954			c->cputype = CPU_BMIPS4380;
 955			__cpu_name[cpu] = "Broadcom BMIPS4380";
 956			set_elf_platform(cpu, "bmips4380");
 
 
 957		} else {
 958			c->cputype = CPU_BMIPS4350;
 959			__cpu_name[cpu] = "Broadcom BMIPS4350";
 960			set_elf_platform(cpu, "bmips4350");
 961		}
 962		break;
 963	}
 964	case PRID_IMP_BMIPS5000:
 
 965		c->cputype = CPU_BMIPS5000;
 966		__cpu_name[cpu] = "Broadcom BMIPS5000";
 
 
 
 967		set_elf_platform(cpu, "bmips5000");
 968		c->options |= MIPS_CPU_ULRI;
 
 969		break;
 970	}
 971}
 972
 973static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
 974{
 975	decode_configs(c);
 976	switch (c->processor_id & 0xff00) {
 977	case PRID_IMP_CAVIUM_CN38XX:
 978	case PRID_IMP_CAVIUM_CN31XX:
 979	case PRID_IMP_CAVIUM_CN30XX:
 980		c->cputype = CPU_CAVIUM_OCTEON;
 981		__cpu_name[cpu] = "Cavium Octeon";
 982		goto platform;
 983	case PRID_IMP_CAVIUM_CN58XX:
 984	case PRID_IMP_CAVIUM_CN56XX:
 985	case PRID_IMP_CAVIUM_CN50XX:
 986	case PRID_IMP_CAVIUM_CN52XX:
 987		c->cputype = CPU_CAVIUM_OCTEON_PLUS;
 988		__cpu_name[cpu] = "Cavium Octeon+";
 989platform:
 990		set_elf_platform(cpu, "octeon");
 991		break;
 992	case PRID_IMP_CAVIUM_CN61XX:
 993	case PRID_IMP_CAVIUM_CN63XX:
 994	case PRID_IMP_CAVIUM_CN66XX:
 995	case PRID_IMP_CAVIUM_CN68XX:
 
 996		c->cputype = CPU_CAVIUM_OCTEON2;
 997		__cpu_name[cpu] = "Cavium Octeon II";
 998		set_elf_platform(cpu, "octeon2");
 999		break;
 
 
 
 
 
 
 
 
1000	default:
1001		printk(KERN_INFO "Unknown Octeon chip!\n");
1002		c->cputype = CPU_UNKNOWN;
1003		break;
1004	}
1005}
1006
1007static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
 
 
 
1008{
1009	decode_configs(c);
1010	/* JZRISC does not implement the CP0 counter. */
1011	c->options &= ~MIPS_CPU_COUNTER;
1012	switch (c->processor_id & 0xff00) {
1013	case PRID_IMP_JZRISC:
1014		c->cputype = CPU_JZRISC;
1015		__cpu_name[cpu] = "Ingenic JZRISC";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1016		break;
1017	default:
1018		panic("Unknown Ingenic Processor ID!");
1019		break;
1020	}
 
 
1021}
 
 
 
1022
1023static inline void cpu_probe_netlogic(struct cpuinfo_mips *c, int cpu)
1024{
1025	decode_configs(c);
1026
1027	if ((c->processor_id & 0xff00) == PRID_IMP_NETLOGIC_AU13XX) {
1028		c->cputype = CPU_ALCHEMY;
1029		__cpu_name[cpu] = "Au1300";
1030		/* following stuff is not for Alchemy */
1031		return;
1032	}
1033
1034	c->options = (MIPS_CPU_TLB       |
1035			MIPS_CPU_4KEX    |
1036			MIPS_CPU_COUNTER |
1037			MIPS_CPU_DIVEC   |
1038			MIPS_CPU_WATCH   |
1039			MIPS_CPU_EJTAG   |
1040			MIPS_CPU_LLSC);
1041
1042	switch (c->processor_id & 0xff00) {
1043	case PRID_IMP_NETLOGIC_XLP8XX:
1044	case PRID_IMP_NETLOGIC_XLP3XX:
1045		c->cputype = CPU_XLP;
1046		__cpu_name[cpu] = "Netlogic XLP";
1047		break;
1048
1049	case PRID_IMP_NETLOGIC_XLR732:
1050	case PRID_IMP_NETLOGIC_XLR716:
1051	case PRID_IMP_NETLOGIC_XLR532:
1052	case PRID_IMP_NETLOGIC_XLR308:
1053	case PRID_IMP_NETLOGIC_XLR532C:
1054	case PRID_IMP_NETLOGIC_XLR516C:
1055	case PRID_IMP_NETLOGIC_XLR508C:
1056	case PRID_IMP_NETLOGIC_XLR308C:
1057		c->cputype = CPU_XLR;
1058		__cpu_name[cpu] = "Netlogic XLR";
1059		break;
1060
1061	case PRID_IMP_NETLOGIC_XLS608:
1062	case PRID_IMP_NETLOGIC_XLS408:
1063	case PRID_IMP_NETLOGIC_XLS404:
1064	case PRID_IMP_NETLOGIC_XLS208:
1065	case PRID_IMP_NETLOGIC_XLS204:
1066	case PRID_IMP_NETLOGIC_XLS108:
1067	case PRID_IMP_NETLOGIC_XLS104:
1068	case PRID_IMP_NETLOGIC_XLS616B:
1069	case PRID_IMP_NETLOGIC_XLS608B:
1070	case PRID_IMP_NETLOGIC_XLS416B:
1071	case PRID_IMP_NETLOGIC_XLS412B:
1072	case PRID_IMP_NETLOGIC_XLS408B:
1073	case PRID_IMP_NETLOGIC_XLS404B:
1074		c->cputype = CPU_XLR;
1075		__cpu_name[cpu] = "Netlogic XLS";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1076		break;
1077
1078	default:
1079		pr_info("Unknown Netlogic chip id [%02x]!\n",
1080		       c->processor_id);
1081		c->cputype = CPU_XLR;
1082		break;
1083	}
1084
1085	if (c->cputype == CPU_XLP) {
1086		c->isa_level = MIPS_CPU_ISA_M64R2;
1087		c->options |= (MIPS_CPU_FPU | MIPS_CPU_ULRI | MIPS_CPU_MCHECK);
1088		/* This will be updated again after all threads are woken up */
1089		c->tlbsize = ((read_c0_config6() >> 16) & 0xffff) + 1;
1090	} else {
1091		c->isa_level = MIPS_CPU_ISA_M64R1;
1092		c->tlbsize = ((read_c0_config1() >> 25) & 0x3f) + 1;
1093	}
1094}
1095
1096#ifdef CONFIG_64BIT
1097/* For use by uaccess.h */
1098u64 __ua_limit;
1099EXPORT_SYMBOL(__ua_limit);
1100#endif
1101
1102const char *__cpu_name[NR_CPUS];
1103const char *__elf_platform;
 
1104
1105__cpuinit void cpu_probe(void)
1106{
1107	struct cpuinfo_mips *c = &current_cpu_data;
1108	unsigned int cpu = smp_processor_id();
1109
1110	c->processor_id	= PRID_IMP_UNKNOWN;
 
 
 
 
 
 
1111	c->fpu_id	= FPIR_IMP_NONE;
1112	c->cputype	= CPU_UNKNOWN;
 
 
 
 
1113
1114	c->processor_id = read_c0_prid();
1115	switch (c->processor_id & 0xff0000) {
1116	case PRID_COMP_LEGACY:
1117		cpu_probe_legacy(c, cpu);
1118		break;
1119	case PRID_COMP_MIPS:
1120		cpu_probe_mips(c, cpu);
1121		break;
1122	case PRID_COMP_ALCHEMY:
1123		cpu_probe_alchemy(c, cpu);
1124		break;
1125	case PRID_COMP_SIBYTE:
1126		cpu_probe_sibyte(c, cpu);
1127		break;
1128	case PRID_COMP_BROADCOM:
1129		cpu_probe_broadcom(c, cpu);
1130		break;
1131	case PRID_COMP_SANDCRAFT:
1132		cpu_probe_sandcraft(c, cpu);
1133		break;
1134	case PRID_COMP_NXP:
1135		cpu_probe_nxp(c, cpu);
1136		break;
1137	case PRID_COMP_CAVIUM:
1138		cpu_probe_cavium(c, cpu);
1139		break;
1140	case PRID_COMP_INGENIC:
1141		cpu_probe_ingenic(c, cpu);
1142		break;
1143	case PRID_COMP_NETLOGIC:
1144		cpu_probe_netlogic(c, cpu);
 
 
 
1145		break;
1146	}
1147
1148	BUG_ON(!__cpu_name[cpu]);
1149	BUG_ON(c->cputype == CPU_UNKNOWN);
1150
1151	/*
1152	 * Platform code can force the cpu type to optimize code
1153	 * generation. In that case be sure the cpu type is correctly
1154	 * manually setup otherwise it could trigger some nasty bugs.
1155	 */
1156	BUG_ON(current_cpu_type() != c->cputype);
1157
 
 
 
 
 
 
 
 
 
1158	if (mips_fpu_disabled)
1159		c->options &= ~MIPS_CPU_FPU;
1160
1161	if (mips_dsp_disabled)
1162		c->ases &= ~MIPS_ASE_DSP;
1163
1164	if (c->options & MIPS_CPU_FPU) {
1165		c->fpu_id = cpu_get_fpu_id();
1166
1167		if (c->isa_level == MIPS_CPU_ISA_M32R1 ||
1168		    c->isa_level == MIPS_CPU_ISA_M32R2 ||
1169		    c->isa_level == MIPS_CPU_ISA_M64R1 ||
1170		    c->isa_level == MIPS_CPU_ISA_M64R2) {
1171			if (c->fpu_id & MIPS_FPIR_3D)
1172				c->ases |= MIPS_ASE_MIPS3D;
1173		}
1174	}
1175
1176	if (cpu_has_mips_r2)
 
 
 
 
 
1177		c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
 
 
 
1178	else
1179		c->srsets = 1;
1180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1181	cpu_probe_vmbits(c);
1182
 
 
 
 
 
 
 
1183#ifdef CONFIG_64BIT
1184	if (cpu == 0)
1185		__ua_limit = ~((1ull << cpu_vmbits) - 1);
1186#endif
 
 
1187}
1188
1189__cpuinit void cpu_report(void)
1190{
1191	struct cpuinfo_mips *c = &current_cpu_data;
1192
1193	printk(KERN_INFO "CPU revision is: %08x (%s)\n",
1194	       c->processor_id, cpu_name_string());
1195	if (c->options & MIPS_CPU_FPU)
1196		printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1197}
v6.2
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * Processor capabilities determination functions.
   4 *
   5 * Copyright (C) xxxx  the Anonymous
   6 * Copyright (C) 1994 - 2006 Ralf Baechle
   7 * Copyright (C) 2003, 2004  Maciej W. Rozycki
   8 * Copyright (C) 2001, 2004, 2011, 2012	 MIPS Technologies, Inc.
 
 
 
 
 
   9 */
  10#include <linux/init.h>
  11#include <linux/kernel.h>
  12#include <linux/ptrace.h>
  13#include <linux/smp.h>
  14#include <linux/stddef.h>
  15#include <linux/export.h>
  16
  17#include <asm/bugs.h>
  18#include <asm/cpu.h>
  19#include <asm/cpu-features.h>
  20#include <asm/cpu-type.h>
  21#include <asm/fpu.h>
  22#include <asm/mipsregs.h>
  23#include <asm/mipsmtregs.h>
  24#include <asm/msa.h>
  25#include <asm/watch.h>
  26#include <asm/elf.h>
  27#include <asm/pgtable-bits.h>
  28#include <asm/spram.h>
  29#include <asm/traps.h>
  30#include <linux/uaccess.h>
  31
  32#include "fpu-probe.h"
 
 
 
 
 
 
 
 
  33
  34#include <asm/mach-loongson64/cpucfg-emul.h>
 
 
 
 
  35
  36/* Hardware capabilities */
  37unsigned int elf_hwcap __read_mostly;
  38EXPORT_SYMBOL_GPL(elf_hwcap);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  39
  40static inline unsigned long cpu_get_msa_id(void)
 
 
 
 
  41{
  42	unsigned long status, msa_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
  43
  44	status = read_c0_status();
  45	__enable_fpu(FPU_64BIT);
  46	enable_msa();
  47	msa_id = read_msa_ir();
  48	disable_msa();
  49	write_c0_status(status);
  50	return msa_id;
 
 
 
 
 
 
 
 
 
 
 
 
  51}
  52
  53static int mips_dsp_disabled;
  54
  55static int __init dsp_disable(char *s)
  56{
  57	cpu_data[0].ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
  58	mips_dsp_disabled = 1;
  59
  60	return 1;
  61}
  62
  63__setup("nodsp", dsp_disable);
  64
  65static int mips_htw_disabled;
  66
  67static int __init htw_disable(char *s)
  68{
  69	mips_htw_disabled = 1;
  70	cpu_data[0].options &= ~MIPS_CPU_HTW;
  71	write_c0_pwctl(read_c0_pwctl() &
  72		       ~(1 << MIPS_PWCTL_PWEN_SHIFT));
  73
  74	return 1;
  75}
  76
  77__setup("nohtw", htw_disable);
  78
  79static int mips_ftlb_disabled;
  80static int mips_has_ftlb_configured;
  81
  82enum ftlb_flags {
  83	FTLB_EN		= 1 << 0,
  84	FTLB_SET_PROB	= 1 << 1,
  85};
  86
  87static int set_ftlb_enable(struct cpuinfo_mips *c, enum ftlb_flags flags);
  88
  89static int __init ftlb_disable(char *s)
  90{
  91	unsigned int config4, mmuextdef;
 
  92
  93	/*
  94	 * If the core hasn't done any FTLB configuration, there is nothing
  95	 * for us to do here.
  96	 */
  97	if (!mips_has_ftlb_configured)
  98		return 1;
  99
 100	/* Disable it in the boot cpu */
 101	if (set_ftlb_enable(&cpu_data[0], 0)) {
 102		pr_warn("Can't turn FTLB off\n");
 103		return 1;
 104	}
 105
 106	config4 = read_c0_config4();
 
 
 107
 108	/* Check that FTLB has been disabled */
 109	mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
 110	/* MMUSIZEEXT == VTLB ON, FTLB OFF */
 111	if (mmuextdef == MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT) {
 112		/* This should never happen */
 113		pr_warn("FTLB could not be disabled!\n");
 114		return 1;
 115	}
 116
 117	mips_ftlb_disabled = 1;
 118	mips_has_ftlb_configured = 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 119
 120	/*
 121	 * noftlb is mainly used for debug purposes so print
 122	 * an informative message instead of using pr_debug()
 123	 */
 124	pr_info("FTLB has been disabled\n");
 125
 126	/*
 127	 * Some of these bits are duplicated in the decode_config4.
 128	 * MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT is the only possible case
 129	 * once FTLB has been disabled so undo what decode_config4 did.
 130	 */
 131	cpu_data[0].tlbsize -= cpu_data[0].tlbsizeftlbways *
 132			       cpu_data[0].tlbsizeftlbsets;
 133	cpu_data[0].tlbsizeftlbsets = 0;
 134	cpu_data[0].tlbsizeftlbways = 0;
 135
 136	return 1;
 137}
 
 
 
 138
 139__setup("noftlb", ftlb_disable);
 
 
 
 
 
 
 
 
 
 
 
 
 
 140
 141/*
 142 * Check if the CPU has per tc perf counters
 143 */
 144static inline void cpu_set_mt_per_tc_perf(struct cpuinfo_mips *c)
 145{
 146	if (read_c0_config7() & MTI_CONF7_PTC)
 147		c->options |= MIPS_CPU_MT_PER_TC_PERF_COUNTERS;
 
 
 
 
 
 
 
 
 
 148}
 149
 150static inline void check_errata(void)
 151{
 152	struct cpuinfo_mips *c = &current_cpu_data;
 153
 154	switch (current_cpu_type()) {
 155	case CPU_34K:
 156		/*
 157		 * Erratum "RPS May Cause Incorrect Instruction Execution"
 158		 * This code only handles VPE0, any SMP/RTOS code
 159		 * making use of VPE1 will be responsible for that VPE.
 160		 */
 161		if ((c->processor_id & PRID_REV_MASK) <= PRID_REV_34K_V1_0_2)
 162			write_c0_config7(read_c0_config7() | MIPS_CONF7_RPS);
 163		break;
 164	default:
 165		break;
 166	}
 167}
 168
 169void __init check_bugs32(void)
 170{
 171	check_errata();
 172}
 173
 174/*
 175 * Probe whether cpu has config register by trying to play with
 176 * alternate cache bit and see whether it matters.
 177 * It's used by cpu_probe to distinguish between R3000A and R3081.
 178 */
 179static inline int cpu_has_confreg(void)
 180{
 181#ifdef CONFIG_CPU_R3000
 182	extern unsigned long r3k_cache_size(unsigned long);
 183	unsigned long size1, size2;
 184	unsigned long cfg = read_c0_conf();
 185
 186	size1 = r3k_cache_size(ST0_ISC);
 187	write_c0_conf(cfg ^ R30XX_CONF_AC);
 188	size2 = r3k_cache_size(ST0_ISC);
 189	write_c0_conf(cfg);
 190	return size1 != size2;
 191#else
 192	return 0;
 193#endif
 194}
 195
 196static inline void set_elf_platform(int cpu, const char *plat)
 197{
 198	if (cpu == 0)
 199		__elf_platform = plat;
 200}
 201
 202static inline void set_elf_base_platform(const char *plat)
 203{
 204	if (__elf_base_platform == NULL) {
 205		__elf_base_platform = plat;
 206	}
 207}
 208
 209static inline void cpu_probe_vmbits(struct cpuinfo_mips *c)
 210{
 211#ifdef __NEED_VMBITS_PROBE
 212	write_c0_entryhi(0x3fffffffffffe000ULL);
 213	back_to_back_c0_hazard();
 214	c->vmbits = fls64(read_c0_entryhi() & 0x3fffffffffffe000ULL);
 215#endif
 216}
 217
 218static void set_isa(struct cpuinfo_mips *c, unsigned int isa)
 219{
 220	switch (isa) {
 221	case MIPS_CPU_ISA_M64R5:
 222		c->isa_level |= MIPS_CPU_ISA_M32R5 | MIPS_CPU_ISA_M64R5;
 223		set_elf_base_platform("mips64r5");
 224		fallthrough;
 225	case MIPS_CPU_ISA_M64R2:
 226		c->isa_level |= MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M64R2;
 227		set_elf_base_platform("mips64r2");
 228		fallthrough;
 229	case MIPS_CPU_ISA_M64R1:
 230		c->isa_level |= MIPS_CPU_ISA_M32R1 | MIPS_CPU_ISA_M64R1;
 231		set_elf_base_platform("mips64");
 232		fallthrough;
 233	case MIPS_CPU_ISA_V:
 234		c->isa_level |= MIPS_CPU_ISA_V;
 235		set_elf_base_platform("mips5");
 236		fallthrough;
 237	case MIPS_CPU_ISA_IV:
 238		c->isa_level |= MIPS_CPU_ISA_IV;
 239		set_elf_base_platform("mips4");
 240		fallthrough;
 241	case MIPS_CPU_ISA_III:
 242		c->isa_level |= MIPS_CPU_ISA_II | MIPS_CPU_ISA_III;
 243		set_elf_base_platform("mips3");
 244		break;
 245
 246	/* R6 incompatible with everything else */
 247	case MIPS_CPU_ISA_M64R6:
 248		c->isa_level |= MIPS_CPU_ISA_M32R6 | MIPS_CPU_ISA_M64R6;
 249		set_elf_base_platform("mips64r6");
 250		fallthrough;
 251	case MIPS_CPU_ISA_M32R6:
 252		c->isa_level |= MIPS_CPU_ISA_M32R6;
 253		set_elf_base_platform("mips32r6");
 254		/* Break here so we don't add incompatible ISAs */
 255		break;
 256	case MIPS_CPU_ISA_M32R5:
 257		c->isa_level |= MIPS_CPU_ISA_M32R5;
 258		set_elf_base_platform("mips32r5");
 259		fallthrough;
 260	case MIPS_CPU_ISA_M32R2:
 261		c->isa_level |= MIPS_CPU_ISA_M32R2;
 262		set_elf_base_platform("mips32r2");
 263		fallthrough;
 264	case MIPS_CPU_ISA_M32R1:
 265		c->isa_level |= MIPS_CPU_ISA_M32R1;
 266		set_elf_base_platform("mips32");
 267		fallthrough;
 268	case MIPS_CPU_ISA_II:
 269		c->isa_level |= MIPS_CPU_ISA_II;
 270		set_elf_base_platform("mips2");
 271		break;
 272	}
 273}
 274
 275static char unknown_isa[] = KERN_ERR \
 276	"Unsupported ISA type, c0.config0: %d.";
 277
 278static unsigned int calculate_ftlb_probability(struct cpuinfo_mips *c)
 279{
 280
 281	unsigned int probability = c->tlbsize / c->tlbsizevtlb;
 282
 283	/*
 284	 * 0 = All TLBWR instructions go to FTLB
 285	 * 1 = 15:1: For every 16 TBLWR instructions, 15 go to the
 286	 * FTLB and 1 goes to the VTLB.
 287	 * 2 = 7:1: As above with 7:1 ratio.
 288	 * 3 = 3:1: As above with 3:1 ratio.
 289	 *
 290	 * Use the linear midpoint as the probability threshold.
 291	 */
 292	if (probability >= 12)
 293		return 1;
 294	else if (probability >= 6)
 295		return 2;
 296	else
 297		/*
 298		 * So FTLB is less than 4 times bigger than VTLB.
 299		 * A 3:1 ratio can still be useful though.
 300		 */
 301		return 3;
 302}
 303
 304static int set_ftlb_enable(struct cpuinfo_mips *c, enum ftlb_flags flags)
 305{
 306	unsigned int config;
 307
 308	/* It's implementation dependent how the FTLB can be enabled */
 309	switch (c->cputype) {
 310	case CPU_PROAPTIV:
 311	case CPU_P5600:
 312	case CPU_P6600:
 313		/* proAptiv & related cores use Config6 to enable the FTLB */
 314		config = read_c0_config6();
 315
 316		if (flags & FTLB_EN)
 317			config |= MTI_CONF6_FTLBEN;
 318		else
 319			config &= ~MTI_CONF6_FTLBEN;
 320
 321		if (flags & FTLB_SET_PROB) {
 322			config &= ~(3 << MTI_CONF6_FTLBP_SHIFT);
 323			config |= calculate_ftlb_probability(c)
 324				  << MTI_CONF6_FTLBP_SHIFT;
 325		}
 326
 327		write_c0_config6(config);
 328		back_to_back_c0_hazard();
 329		break;
 330	case CPU_I6400:
 331	case CPU_I6500:
 332		/* There's no way to disable the FTLB */
 333		if (!(flags & FTLB_EN))
 334			return 1;
 335		return 0;
 336	case CPU_LOONGSON64:
 337		/* Flush ITLB, DTLB, VTLB and FTLB */
 338		write_c0_diag(LOONGSON_DIAG_ITLB | LOONGSON_DIAG_DTLB |
 339			      LOONGSON_DIAG_VTLB | LOONGSON_DIAG_FTLB);
 340		/* Loongson-3 cores use Config6 to enable the FTLB */
 341		config = read_c0_config6();
 342		if (flags & FTLB_EN)
 343			/* Enable FTLB */
 344			write_c0_config6(config & ~LOONGSON_CONF6_FTLBDIS);
 345		else
 346			/* Disable FTLB */
 347			write_c0_config6(config | LOONGSON_CONF6_FTLBDIS);
 348		break;
 349	default:
 350		return 1;
 351	}
 352
 353	return 0;
 354}
 355
 356static int mm_config(struct cpuinfo_mips *c)
 357{
 358	unsigned int config0, update, mm;
 359
 360	config0 = read_c0_config();
 361	mm = config0 & MIPS_CONF_MM;
 362
 363	/*
 364	 * It's implementation dependent what type of write-merge is supported
 365	 * and whether it can be enabled/disabled. If it is settable lets make
 366	 * the merging allowed by default. Some platforms might have
 367	 * write-through caching unsupported. In this case just ignore the
 368	 * CP0.Config.MM bit field value.
 369	 */
 370	switch (c->cputype) {
 371	case CPU_24K:
 372	case CPU_34K:
 373	case CPU_74K:
 374	case CPU_P5600:
 375	case CPU_P6600:
 376		c->options |= MIPS_CPU_MM_FULL;
 377		update = MIPS_CONF_MM_FULL;
 378		break;
 379	case CPU_1004K:
 380	case CPU_1074K:
 381	case CPU_INTERAPTIV:
 382	case CPU_PROAPTIV:
 383		mm = 0;
 384		fallthrough;
 385	default:
 386		update = 0;
 387		break;
 388	}
 389
 390	if (update) {
 391		config0 = (config0 & ~MIPS_CONF_MM) | update;
 392		write_c0_config(config0);
 393	} else if (mm == MIPS_CONF_MM_SYSAD) {
 394		c->options |= MIPS_CPU_MM_SYSAD;
 395	} else if (mm == MIPS_CONF_MM_FULL) {
 396		c->options |= MIPS_CPU_MM_FULL;
 397	}
 398
 399	return 0;
 400}
 401
 402static inline unsigned int decode_config0(struct cpuinfo_mips *c)
 403{
 404	unsigned int config0;
 405	int isa, mt;
 406
 407	config0 = read_c0_config();
 408
 409	/*
 410	 * Look for Standard TLB or Dual VTLB and FTLB
 411	 */
 412	mt = config0 & MIPS_CONF_MT;
 413	if (mt == MIPS_CONF_MT_TLB)
 414		c->options |= MIPS_CPU_TLB;
 415	else if (mt == MIPS_CONF_MT_FTLB)
 416		c->options |= MIPS_CPU_TLB | MIPS_CPU_FTLB;
 417
 418	isa = (config0 & MIPS_CONF_AT) >> 13;
 419	switch (isa) {
 420	case 0:
 421		switch ((config0 & MIPS_CONF_AR) >> 10) {
 422		case 0:
 423			set_isa(c, MIPS_CPU_ISA_M32R1);
 424			break;
 425		case 1:
 426			set_isa(c, MIPS_CPU_ISA_M32R2);
 427			break;
 428		case 2:
 429			set_isa(c, MIPS_CPU_ISA_M32R6);
 430			break;
 431		default:
 432			goto unknown;
 433		}
 434		break;
 435	case 2:
 436		switch ((config0 & MIPS_CONF_AR) >> 10) {
 437		case 0:
 438			set_isa(c, MIPS_CPU_ISA_M64R1);
 439			break;
 440		case 1:
 441			set_isa(c, MIPS_CPU_ISA_M64R2);
 442			break;
 443		case 2:
 444			set_isa(c, MIPS_CPU_ISA_M64R6);
 445			break;
 446		default:
 447			goto unknown;
 448		}
 449		break;
 450	default:
 451		goto unknown;
 452	}
 453
 454	return config0 & MIPS_CONF_M;
 455
 456unknown:
 457	panic(unknown_isa, config0);
 458}
 459
 460static inline unsigned int decode_config1(struct cpuinfo_mips *c)
 461{
 462	unsigned int config1;
 463
 464	config1 = read_c0_config1();
 465
 466	if (config1 & MIPS_CONF1_MD)
 467		c->ases |= MIPS_ASE_MDMX;
 468	if (config1 & MIPS_CONF1_PC)
 469		c->options |= MIPS_CPU_PERF;
 470	if (config1 & MIPS_CONF1_WR)
 471		c->options |= MIPS_CPU_WATCH;
 472	if (config1 & MIPS_CONF1_CA)
 473		c->ases |= MIPS_ASE_MIPS16;
 474	if (config1 & MIPS_CONF1_EP)
 475		c->options |= MIPS_CPU_EJTAG;
 476	if (config1 & MIPS_CONF1_FP) {
 477		c->options |= MIPS_CPU_FPU;
 478		c->options |= MIPS_CPU_32FPR;
 479	}
 480	if (cpu_has_tlb) {
 481		c->tlbsize = ((config1 & MIPS_CONF1_TLBS) >> 25) + 1;
 482		c->tlbsizevtlb = c->tlbsize;
 483		c->tlbsizeftlbsets = 0;
 484	}
 485
 486	return config1 & MIPS_CONF_M;
 487}
 488
 489static inline unsigned int decode_config2(struct cpuinfo_mips *c)
 490{
 491	unsigned int config2;
 492
 493	config2 = read_c0_config2();
 494
 495	if (config2 & MIPS_CONF2_SL)
 496		c->scache.flags &= ~MIPS_CACHE_NOT_PRESENT;
 497
 498	return config2 & MIPS_CONF_M;
 499}
 500
 501static inline unsigned int decode_config3(struct cpuinfo_mips *c)
 502{
 503	unsigned int config3;
 504
 505	config3 = read_c0_config3();
 506
 507	if (config3 & MIPS_CONF3_SM) {
 508		c->ases |= MIPS_ASE_SMARTMIPS;
 509		c->options |= MIPS_CPU_RIXI | MIPS_CPU_CTXTC;
 510	}
 511	if (config3 & MIPS_CONF3_RXI)
 512		c->options |= MIPS_CPU_RIXI;
 513	if (config3 & MIPS_CONF3_CTXTC)
 514		c->options |= MIPS_CPU_CTXTC;
 515	if (config3 & MIPS_CONF3_DSP)
 516		c->ases |= MIPS_ASE_DSP;
 517	if (config3 & MIPS_CONF3_DSP2P) {
 518		c->ases |= MIPS_ASE_DSP2P;
 519		if (cpu_has_mips_r6)
 520			c->ases |= MIPS_ASE_DSP3;
 521	}
 522	if (config3 & MIPS_CONF3_VINT)
 523		c->options |= MIPS_CPU_VINT;
 524	if (config3 & MIPS_CONF3_VEIC)
 525		c->options |= MIPS_CPU_VEIC;
 526	if (config3 & MIPS_CONF3_LPA)
 527		c->options |= MIPS_CPU_LPA;
 528	if (config3 & MIPS_CONF3_MT)
 529		c->ases |= MIPS_ASE_MIPSMT;
 530	if (config3 & MIPS_CONF3_ULRI)
 531		c->options |= MIPS_CPU_ULRI;
 532	if (config3 & MIPS_CONF3_ISA)
 533		c->options |= MIPS_CPU_MICROMIPS;
 534	if (config3 & MIPS_CONF3_VZ)
 535		c->ases |= MIPS_ASE_VZ;
 536	if (config3 & MIPS_CONF3_SC)
 537		c->options |= MIPS_CPU_SEGMENTS;
 538	if (config3 & MIPS_CONF3_BI)
 539		c->options |= MIPS_CPU_BADINSTR;
 540	if (config3 & MIPS_CONF3_BP)
 541		c->options |= MIPS_CPU_BADINSTRP;
 542	if (config3 & MIPS_CONF3_MSA)
 543		c->ases |= MIPS_ASE_MSA;
 544	if (config3 & MIPS_CONF3_PW) {
 545		c->htw_seq = 0;
 546		c->options |= MIPS_CPU_HTW;
 547	}
 548	if (config3 & MIPS_CONF3_CDMM)
 549		c->options |= MIPS_CPU_CDMM;
 550	if (config3 & MIPS_CONF3_SP)
 551		c->options |= MIPS_CPU_SP;
 552
 553	return config3 & MIPS_CONF_M;
 554}
 555
 556static inline unsigned int decode_config4(struct cpuinfo_mips *c)
 557{
 558	unsigned int config4;
 559	unsigned int newcf4;
 560	unsigned int mmuextdef;
 561	unsigned int ftlb_page = MIPS_CONF4_FTLBPAGESIZE;
 562	unsigned long asid_mask;
 563
 564	config4 = read_c0_config4();
 565
 566	if (cpu_has_tlb) {
 567		if (((config4 & MIPS_CONF4_IE) >> 29) == 2)
 568			c->options |= MIPS_CPU_TLBINV;
 569
 570		/*
 571		 * R6 has dropped the MMUExtDef field from config4.
 572		 * On R6 the fields always describe the FTLB, and only if it is
 573		 * present according to Config.MT.
 574		 */
 575		if (!cpu_has_mips_r6)
 576			mmuextdef = config4 & MIPS_CONF4_MMUEXTDEF;
 577		else if (cpu_has_ftlb)
 578			mmuextdef = MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT;
 579		else
 580			mmuextdef = 0;
 581
 582		switch (mmuextdef) {
 583		case MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT:
 584			c->tlbsize += (config4 & MIPS_CONF4_MMUSIZEEXT) * 0x40;
 585			c->tlbsizevtlb = c->tlbsize;
 586			break;
 587		case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT:
 588			c->tlbsizevtlb +=
 589				((config4 & MIPS_CONF4_VTLBSIZEEXT) >>
 590				  MIPS_CONF4_VTLBSIZEEXT_SHIFT) * 0x40;
 591			c->tlbsize = c->tlbsizevtlb;
 592			ftlb_page = MIPS_CONF4_VFTLBPAGESIZE;
 593			fallthrough;
 594		case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT:
 595			if (mips_ftlb_disabled)
 596				break;
 597			newcf4 = (config4 & ~ftlb_page) |
 598				(page_size_ftlb(mmuextdef) <<
 599				 MIPS_CONF4_FTLBPAGESIZE_SHIFT);
 600			write_c0_config4(newcf4);
 601			back_to_back_c0_hazard();
 602			config4 = read_c0_config4();
 603			if (config4 != newcf4) {
 604				pr_err("PAGE_SIZE 0x%lx is not supported by FTLB (config4=0x%x)\n",
 605				       PAGE_SIZE, config4);
 606				/* Switch FTLB off */
 607				set_ftlb_enable(c, 0);
 608				mips_ftlb_disabled = 1;
 609				break;
 610			}
 611			c->tlbsizeftlbsets = 1 <<
 612				((config4 & MIPS_CONF4_FTLBSETS) >>
 613				 MIPS_CONF4_FTLBSETS_SHIFT);
 614			c->tlbsizeftlbways = ((config4 & MIPS_CONF4_FTLBWAYS) >>
 615					      MIPS_CONF4_FTLBWAYS_SHIFT) + 2;
 616			c->tlbsize += c->tlbsizeftlbways * c->tlbsizeftlbsets;
 617			mips_has_ftlb_configured = 1;
 618			break;
 619		}
 620	}
 621
 622	c->kscratch_mask = (config4 & MIPS_CONF4_KSCREXIST)
 623				>> MIPS_CONF4_KSCREXIST_SHIFT;
 624
 625	asid_mask = MIPS_ENTRYHI_ASID;
 626	if (config4 & MIPS_CONF4_AE)
 627		asid_mask |= MIPS_ENTRYHI_ASIDX;
 628	set_cpu_asid_mask(c, asid_mask);
 629
 630	/*
 631	 * Warn if the computed ASID mask doesn't match the mask the kernel
 632	 * is built for. This may indicate either a serious problem or an
 633	 * easy optimisation opportunity, but either way should be addressed.
 634	 */
 635	WARN_ON(asid_mask != cpu_asid_mask(c));
 636
 637	return config4 & MIPS_CONF_M;
 638}
 639
 640static inline unsigned int decode_config5(struct cpuinfo_mips *c)
 641{
 642	unsigned int config5, max_mmid_width;
 643	unsigned long asid_mask;
 644
 645	config5 = read_c0_config5();
 646	config5 &= ~(MIPS_CONF5_UFR | MIPS_CONF5_UFE);
 647
 648	if (cpu_has_mips_r6) {
 649		if (!__builtin_constant_p(cpu_has_mmid) || cpu_has_mmid)
 650			config5 |= MIPS_CONF5_MI;
 651		else
 652			config5 &= ~MIPS_CONF5_MI;
 653	}
 654
 655	write_c0_config5(config5);
 656
 657	if (config5 & MIPS_CONF5_EVA)
 658		c->options |= MIPS_CPU_EVA;
 659	if (config5 & MIPS_CONF5_MRP)
 660		c->options |= MIPS_CPU_MAAR;
 661	if (config5 & MIPS_CONF5_LLB)
 662		c->options |= MIPS_CPU_RW_LLB;
 663	if (config5 & MIPS_CONF5_MVH)
 664		c->options |= MIPS_CPU_MVH;
 665	if (cpu_has_mips_r6 && (config5 & MIPS_CONF5_VP))
 666		c->options |= MIPS_CPU_VP;
 667	if (config5 & MIPS_CONF5_CA2)
 668		c->ases |= MIPS_ASE_MIPS16E2;
 669
 670	if (config5 & MIPS_CONF5_CRCP)
 671		elf_hwcap |= HWCAP_MIPS_CRC32;
 672
 673	if (cpu_has_mips_r6) {
 674		/* Ensure the write to config5 above takes effect */
 675		back_to_back_c0_hazard();
 676
 677		/* Check whether we successfully enabled MMID support */
 678		config5 = read_c0_config5();
 679		if (config5 & MIPS_CONF5_MI)
 680			c->options |= MIPS_CPU_MMID;
 681
 682		/*
 683		 * Warn if we've hardcoded cpu_has_mmid to a value unsuitable
 684		 * for the CPU we're running on, or if CPUs in an SMP system
 685		 * have inconsistent MMID support.
 686		 */
 687		WARN_ON(!!cpu_has_mmid != !!(config5 & MIPS_CONF5_MI));
 688
 689		if (cpu_has_mmid) {
 690			write_c0_memorymapid(~0ul);
 691			back_to_back_c0_hazard();
 692			asid_mask = read_c0_memorymapid();
 693
 694			/*
 695			 * We maintain a bitmap to track MMID allocation, and
 696			 * need a sensible upper bound on the size of that
 697			 * bitmap. The initial CPU with MMID support (I6500)
 698			 * supports 16 bit MMIDs, which gives us an 8KiB
 699			 * bitmap. The architecture recommends that hardware
 700			 * support 32 bit MMIDs, which would give us a 512MiB
 701			 * bitmap - that's too big in most cases.
 702			 *
 703			 * Cap MMID width at 16 bits for now & we can revisit
 704			 * this if & when hardware supports anything wider.
 705			 */
 706			max_mmid_width = 16;
 707			if (asid_mask > GENMASK(max_mmid_width - 1, 0)) {
 708				pr_info("Capping MMID width at %d bits",
 709					max_mmid_width);
 710				asid_mask = GENMASK(max_mmid_width - 1, 0);
 711			}
 712
 713			set_cpu_asid_mask(c, asid_mask);
 714		}
 715	}
 716
 717	return config5 & MIPS_CONF_M;
 718}
 719
 720static void decode_configs(struct cpuinfo_mips *c)
 721{
 722	int ok;
 723
 724	/* MIPS32 or MIPS64 compliant CPU.  */
 725	c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER |
 726		     MIPS_CPU_DIVEC | MIPS_CPU_LLSC | MIPS_CPU_MCHECK;
 727
 728	c->scache.flags = MIPS_CACHE_NOT_PRESENT;
 729
 730	/* Enable FTLB if present and not disabled */
 731	set_ftlb_enable(c, mips_ftlb_disabled ? 0 : FTLB_EN);
 732
 733	ok = decode_config0(c);			/* Read Config registers.  */
 734	BUG_ON(!ok);				/* Arch spec violation!	 */
 735	if (ok)
 736		ok = decode_config1(c);
 737	if (ok)
 738		ok = decode_config2(c);
 739	if (ok)
 740		ok = decode_config3(c);
 741	if (ok)
 742		ok = decode_config4(c);
 743	if (ok)
 744		ok = decode_config5(c);
 745
 746	/* Probe the EBase.WG bit */
 747	if (cpu_has_mips_r2_r6) {
 748		u64 ebase;
 749		unsigned int status;
 750
 751		/* {read,write}_c0_ebase_64() may be UNDEFINED prior to r6 */
 752		ebase = cpu_has_mips64r6 ? read_c0_ebase_64()
 753					 : (s32)read_c0_ebase();
 754		if (ebase & MIPS_EBASE_WG) {
 755			/* WG bit already set, we can avoid the clumsy probe */
 756			c->options |= MIPS_CPU_EBASE_WG;
 757		} else {
 758			/* Its UNDEFINED to change EBase while BEV=0 */
 759			status = read_c0_status();
 760			write_c0_status(status | ST0_BEV);
 761			irq_enable_hazard();
 762			/*
 763			 * On pre-r6 cores, this may well clobber the upper bits
 764			 * of EBase. This is hard to avoid without potentially
 765			 * hitting UNDEFINED dm*c0 behaviour if EBase is 32-bit.
 766			 */
 767			if (cpu_has_mips64r6)
 768				write_c0_ebase_64(ebase | MIPS_EBASE_WG);
 769			else
 770				write_c0_ebase(ebase | MIPS_EBASE_WG);
 771			back_to_back_c0_hazard();
 772			/* Restore BEV */
 773			write_c0_status(status);
 774			if (read_c0_ebase() & MIPS_EBASE_WG) {
 775				c->options |= MIPS_CPU_EBASE_WG;
 776				write_c0_ebase(ebase);
 777			}
 778		}
 779	}
 780
 781	/* configure the FTLB write probability */
 782	set_ftlb_enable(c, (mips_ftlb_disabled ? 0 : FTLB_EN) | FTLB_SET_PROB);
 783
 784	mips_probe_watch_registers(c);
 785
 786#ifndef CONFIG_MIPS_CPS
 787	if (cpu_has_mips_r2_r6) {
 788		unsigned int core;
 789
 790		core = get_ebase_cpunum();
 791		if (cpu_has_mipsmt)
 792			core >>= fls(core_nvpes()) - 1;
 793		cpu_set_core(c, core);
 794	}
 795#endif
 796}
 797
 798/*
 799 * Probe for certain guest capabilities by writing config bits and reading back.
 800 * Finally write back the original value.
 801 */
 802#define probe_gc0_config(name, maxconf, bits)				\
 803do {									\
 804	unsigned int tmp;						\
 805	tmp = read_gc0_##name();					\
 806	write_gc0_##name(tmp | (bits));					\
 807	back_to_back_c0_hazard();					\
 808	maxconf = read_gc0_##name();					\
 809	write_gc0_##name(tmp);						\
 810} while (0)
 811
 812/*
 813 * Probe for dynamic guest capabilities by changing certain config bits and
 814 * reading back to see if they change. Finally write back the original value.
 815 */
 816#define probe_gc0_config_dyn(name, maxconf, dynconf, bits)		\
 817do {									\
 818	maxconf = read_gc0_##name();					\
 819	write_gc0_##name(maxconf ^ (bits));				\
 820	back_to_back_c0_hazard();					\
 821	dynconf = maxconf ^ read_gc0_##name();				\
 822	write_gc0_##name(maxconf);					\
 823	maxconf |= dynconf;						\
 824} while (0)
 825
 826static inline unsigned int decode_guest_config0(struct cpuinfo_mips *c)
 827{
 828	unsigned int config0;
 829
 830	probe_gc0_config(config, config0, MIPS_CONF_M);
 831
 832	if (config0 & MIPS_CONF_M)
 833		c->guest.conf |= BIT(1);
 834	return config0 & MIPS_CONF_M;
 835}
 836
 837static inline unsigned int decode_guest_config1(struct cpuinfo_mips *c)
 838{
 839	unsigned int config1, config1_dyn;
 840
 841	probe_gc0_config_dyn(config1, config1, config1_dyn,
 842			     MIPS_CONF_M | MIPS_CONF1_PC | MIPS_CONF1_WR |
 843			     MIPS_CONF1_FP);
 844
 845	if (config1 & MIPS_CONF1_FP)
 846		c->guest.options |= MIPS_CPU_FPU;
 847	if (config1_dyn & MIPS_CONF1_FP)
 848		c->guest.options_dyn |= MIPS_CPU_FPU;
 849
 850	if (config1 & MIPS_CONF1_WR)
 851		c->guest.options |= MIPS_CPU_WATCH;
 852	if (config1_dyn & MIPS_CONF1_WR)
 853		c->guest.options_dyn |= MIPS_CPU_WATCH;
 854
 855	if (config1 & MIPS_CONF1_PC)
 856		c->guest.options |= MIPS_CPU_PERF;
 857	if (config1_dyn & MIPS_CONF1_PC)
 858		c->guest.options_dyn |= MIPS_CPU_PERF;
 859
 860	if (config1 & MIPS_CONF_M)
 861		c->guest.conf |= BIT(2);
 862	return config1 & MIPS_CONF_M;
 863}
 864
 865static inline unsigned int decode_guest_config2(struct cpuinfo_mips *c)
 866{
 867	unsigned int config2;
 868
 869	probe_gc0_config(config2, config2, MIPS_CONF_M);
 870
 871	if (config2 & MIPS_CONF_M)
 872		c->guest.conf |= BIT(3);
 873	return config2 & MIPS_CONF_M;
 874}
 875
 876static inline unsigned int decode_guest_config3(struct cpuinfo_mips *c)
 877{
 878	unsigned int config3, config3_dyn;
 879
 880	probe_gc0_config_dyn(config3, config3, config3_dyn,
 881			     MIPS_CONF_M | MIPS_CONF3_MSA | MIPS_CONF3_ULRI |
 882			     MIPS_CONF3_CTXTC);
 883
 884	if (config3 & MIPS_CONF3_CTXTC)
 885		c->guest.options |= MIPS_CPU_CTXTC;
 886	if (config3_dyn & MIPS_CONF3_CTXTC)
 887		c->guest.options_dyn |= MIPS_CPU_CTXTC;
 888
 889	if (config3 & MIPS_CONF3_PW)
 890		c->guest.options |= MIPS_CPU_HTW;
 891
 892	if (config3 & MIPS_CONF3_ULRI)
 893		c->guest.options |= MIPS_CPU_ULRI;
 894
 895	if (config3 & MIPS_CONF3_SC)
 896		c->guest.options |= MIPS_CPU_SEGMENTS;
 897
 898	if (config3 & MIPS_CONF3_BI)
 899		c->guest.options |= MIPS_CPU_BADINSTR;
 900	if (config3 & MIPS_CONF3_BP)
 901		c->guest.options |= MIPS_CPU_BADINSTRP;
 902
 903	if (config3 & MIPS_CONF3_MSA)
 904		c->guest.ases |= MIPS_ASE_MSA;
 905	if (config3_dyn & MIPS_CONF3_MSA)
 906		c->guest.ases_dyn |= MIPS_ASE_MSA;
 907
 908	if (config3 & MIPS_CONF_M)
 909		c->guest.conf |= BIT(4);
 910	return config3 & MIPS_CONF_M;
 911}
 912
 913static inline unsigned int decode_guest_config4(struct cpuinfo_mips *c)
 914{
 915	unsigned int config4;
 916
 917	probe_gc0_config(config4, config4,
 918			 MIPS_CONF_M | MIPS_CONF4_KSCREXIST);
 919
 920	c->guest.kscratch_mask = (config4 & MIPS_CONF4_KSCREXIST)
 921				>> MIPS_CONF4_KSCREXIST_SHIFT;
 922
 923	if (config4 & MIPS_CONF_M)
 924		c->guest.conf |= BIT(5);
 925	return config4 & MIPS_CONF_M;
 926}
 927
 928static inline unsigned int decode_guest_config5(struct cpuinfo_mips *c)
 929{
 930	unsigned int config5, config5_dyn;
 931
 932	probe_gc0_config_dyn(config5, config5, config5_dyn,
 933			 MIPS_CONF_M | MIPS_CONF5_MVH | MIPS_CONF5_MRP);
 934
 935	if (config5 & MIPS_CONF5_MRP)
 936		c->guest.options |= MIPS_CPU_MAAR;
 937	if (config5_dyn & MIPS_CONF5_MRP)
 938		c->guest.options_dyn |= MIPS_CPU_MAAR;
 939
 940	if (config5 & MIPS_CONF5_LLB)
 941		c->guest.options |= MIPS_CPU_RW_LLB;
 942
 943	if (config5 & MIPS_CONF5_MVH)
 944		c->guest.options |= MIPS_CPU_MVH;
 945
 946	if (config5 & MIPS_CONF_M)
 947		c->guest.conf |= BIT(6);
 948	return config5 & MIPS_CONF_M;
 949}
 950
 951static inline void decode_guest_configs(struct cpuinfo_mips *c)
 952{
 953	unsigned int ok;
 954
 955	ok = decode_guest_config0(c);
 956	if (ok)
 957		ok = decode_guest_config1(c);
 958	if (ok)
 959		ok = decode_guest_config2(c);
 960	if (ok)
 961		ok = decode_guest_config3(c);
 962	if (ok)
 963		ok = decode_guest_config4(c);
 964	if (ok)
 965		decode_guest_config5(c);
 966}
 967
 968static inline void cpu_probe_guestctl0(struct cpuinfo_mips *c)
 969{
 970	unsigned int guestctl0, temp;
 971
 972	guestctl0 = read_c0_guestctl0();
 973
 974	if (guestctl0 & MIPS_GCTL0_G0E)
 975		c->options |= MIPS_CPU_GUESTCTL0EXT;
 976	if (guestctl0 & MIPS_GCTL0_G1)
 977		c->options |= MIPS_CPU_GUESTCTL1;
 978	if (guestctl0 & MIPS_GCTL0_G2)
 979		c->options |= MIPS_CPU_GUESTCTL2;
 980	if (!(guestctl0 & MIPS_GCTL0_RAD)) {
 981		c->options |= MIPS_CPU_GUESTID;
 982
 983		/*
 984		 * Probe for Direct Root to Guest (DRG). Set GuestCtl1.RID = 0
 985		 * first, otherwise all data accesses will be fully virtualised
 986		 * as if they were performed by guest mode.
 987		 */
 988		write_c0_guestctl1(0);
 989		tlbw_use_hazard();
 990
 991		write_c0_guestctl0(guestctl0 | MIPS_GCTL0_DRG);
 992		back_to_back_c0_hazard();
 993		temp = read_c0_guestctl0();
 994
 995		if (temp & MIPS_GCTL0_DRG) {
 996			write_c0_guestctl0(guestctl0);
 997			c->options |= MIPS_CPU_DRG;
 998		}
 999	}
1000}
1001
1002static inline void cpu_probe_guestctl1(struct cpuinfo_mips *c)
1003{
1004	if (cpu_has_guestid) {
1005		/* determine the number of bits of GuestID available */
1006		write_c0_guestctl1(MIPS_GCTL1_ID);
1007		back_to_back_c0_hazard();
1008		c->guestid_mask = (read_c0_guestctl1() & MIPS_GCTL1_ID)
1009						>> MIPS_GCTL1_ID_SHIFT;
1010		write_c0_guestctl1(0);
1011	}
1012}
1013
1014static inline void cpu_probe_gtoffset(struct cpuinfo_mips *c)
1015{
1016	/* determine the number of bits of GTOffset available */
1017	write_c0_gtoffset(0xffffffff);
1018	back_to_back_c0_hazard();
1019	c->gtoffset_mask = read_c0_gtoffset();
1020	write_c0_gtoffset(0);
1021}
1022
1023static inline void cpu_probe_vz(struct cpuinfo_mips *c)
1024{
1025	cpu_probe_guestctl0(c);
1026	if (cpu_has_guestctl1)
1027		cpu_probe_guestctl1(c);
1028
1029	cpu_probe_gtoffset(c);
1030
1031	decode_guest_configs(c);
1032}
1033
1034#define R4K_OPTS (MIPS_CPU_TLB | MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE \
1035		| MIPS_CPU_COUNTER)
1036
1037static inline void cpu_probe_legacy(struct cpuinfo_mips *c, unsigned int cpu)
1038{
1039	switch (c->processor_id & PRID_IMP_MASK) {
1040	case PRID_IMP_R2000:
1041		c->cputype = CPU_R2000;
1042		__cpu_name[cpu] = "R2000";
1043		c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
1044		c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
1045			     MIPS_CPU_NOFPUEX;
1046		if (__cpu_has_fpu())
1047			c->options |= MIPS_CPU_FPU;
1048		c->tlbsize = 64;
1049		break;
1050	case PRID_IMP_R3000:
1051		if ((c->processor_id & PRID_REV_MASK) == PRID_REV_R3000A) {
1052			if (cpu_has_confreg()) {
1053				c->cputype = CPU_R3081E;
1054				__cpu_name[cpu] = "R3081";
1055			} else {
1056				c->cputype = CPU_R3000A;
1057				__cpu_name[cpu] = "R3000A";
1058			}
 
1059		} else {
1060			c->cputype = CPU_R3000;
1061			__cpu_name[cpu] = "R3000";
1062		}
1063		c->fpu_msk31 |= FPU_CSR_CONDX | FPU_CSR_FS;
1064		c->options = MIPS_CPU_TLB | MIPS_CPU_3K_CACHE |
1065			     MIPS_CPU_NOFPUEX;
1066		if (__cpu_has_fpu())
1067			c->options |= MIPS_CPU_FPU;
1068		c->tlbsize = 64;
1069		break;
1070	case PRID_IMP_R4000:
1071		if (read_c0_config() & CONF_SC) {
1072			if ((c->processor_id & PRID_REV_MASK) >=
1073			    PRID_REV_R4400) {
1074				c->cputype = CPU_R4400PC;
1075				__cpu_name[cpu] = "R4400PC";
1076			} else {
1077				c->cputype = CPU_R4000PC;
1078				__cpu_name[cpu] = "R4000PC";
1079			}
1080		} else {
1081			int cca = read_c0_config() & CONF_CM_CMASK;
1082			int mc;
1083
1084			/*
1085			 * SC and MC versions can't be reliably told apart,
1086			 * but only the latter support coherent caching
1087			 * modes so assume the firmware has set the KSEG0
1088			 * coherency attribute reasonably (if uncached, we
1089			 * assume SC).
1090			 */
1091			switch (cca) {
1092			case CONF_CM_CACHABLE_CE:
1093			case CONF_CM_CACHABLE_COW:
1094			case CONF_CM_CACHABLE_CUW:
1095				mc = 1;
1096				break;
1097			default:
1098				mc = 0;
1099				break;
1100			}
1101			if ((c->processor_id & PRID_REV_MASK) >=
1102			    PRID_REV_R4400) {
1103				c->cputype = mc ? CPU_R4400MC : CPU_R4400SC;
1104				__cpu_name[cpu] = mc ? "R4400MC" : "R4400SC";
1105			} else {
1106				c->cputype = mc ? CPU_R4000MC : CPU_R4000SC;
1107				__cpu_name[cpu] = mc ? "R4000MC" : "R4000SC";
1108			}
1109		}
1110
1111		set_isa(c, MIPS_CPU_ISA_III);
1112		c->fpu_msk31 |= FPU_CSR_CONDX;
1113		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1114			     MIPS_CPU_WATCH | MIPS_CPU_VCE |
1115			     MIPS_CPU_LLSC;
1116		c->tlbsize = 48;
1117		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118	case PRID_IMP_R4300:
1119		c->cputype = CPU_R4300;
1120		__cpu_name[cpu] = "R4300";
1121		set_isa(c, MIPS_CPU_ISA_III);
1122		c->fpu_msk31 |= FPU_CSR_CONDX;
1123		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1124			     MIPS_CPU_LLSC;
1125		c->tlbsize = 32;
1126		break;
1127	case PRID_IMP_R4600:
1128		c->cputype = CPU_R4600;
1129		__cpu_name[cpu] = "R4600";
1130		set_isa(c, MIPS_CPU_ISA_III);
1131		c->fpu_msk31 |= FPU_CSR_CONDX;
1132		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1133			     MIPS_CPU_LLSC;
1134		c->tlbsize = 48;
1135		break;
1136	#if 0
1137	case PRID_IMP_R4650:
1138		/*
1139		 * This processor doesn't have an MMU, so it's not
1140		 * "real easy" to run Linux on it. It is left purely
1141		 * for documentation.  Commented out because it shares
1142		 * it's c0_prid id number with the TX3900.
1143		 */
1144		c->cputype = CPU_R4650;
1145		__cpu_name[cpu] = "R4650";
1146		set_isa(c, MIPS_CPU_ISA_III);
1147		c->fpu_msk31 |= FPU_CSR_CONDX;
1148		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC;
1149		c->tlbsize = 48;
1150		break;
1151	#endif
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1152	case PRID_IMP_R4700:
1153		c->cputype = CPU_R4700;
1154		__cpu_name[cpu] = "R4700";
1155		set_isa(c, MIPS_CPU_ISA_III);
1156		c->fpu_msk31 |= FPU_CSR_CONDX;
1157		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1158			     MIPS_CPU_LLSC;
1159		c->tlbsize = 48;
1160		break;
1161	case PRID_IMP_TX49:
1162		c->cputype = CPU_TX49XX;
1163		__cpu_name[cpu] = "R49XX";
1164		set_isa(c, MIPS_CPU_ISA_III);
1165		c->fpu_msk31 |= FPU_CSR_CONDX;
1166		c->options = R4K_OPTS | MIPS_CPU_LLSC;
1167		if (!(c->processor_id & 0x08))
1168			c->options |= MIPS_CPU_FPU | MIPS_CPU_32FPR;
1169		c->tlbsize = 48;
1170		break;
1171	case PRID_IMP_R5000:
1172		c->cputype = CPU_R5000;
1173		__cpu_name[cpu] = "R5000";
1174		set_isa(c, MIPS_CPU_ISA_IV);
1175		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1176			     MIPS_CPU_LLSC;
1177		c->tlbsize = 48;
1178		break;
 
 
 
 
 
 
 
 
1179	case PRID_IMP_R5500:
1180		c->cputype = CPU_R5500;
1181		__cpu_name[cpu] = "R5500";
1182		set_isa(c, MIPS_CPU_ISA_IV);
1183		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1184			     MIPS_CPU_WATCH | MIPS_CPU_LLSC;
1185		c->tlbsize = 48;
1186		break;
1187	case PRID_IMP_NEVADA:
1188		c->cputype = CPU_NEVADA;
1189		__cpu_name[cpu] = "Nevada";
1190		set_isa(c, MIPS_CPU_ISA_IV);
1191		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1192			     MIPS_CPU_DIVEC | MIPS_CPU_LLSC;
1193		c->tlbsize = 48;
1194		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1195	case PRID_IMP_RM7000:
1196		c->cputype = CPU_RM7000;
1197		__cpu_name[cpu] = "RM7000";
1198		set_isa(c, MIPS_CPU_ISA_IV);
1199		c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR |
1200			     MIPS_CPU_LLSC;
1201		/*
1202		 * Undocumented RM7000:	 Bit 29 in the info register of
1203		 * the RM7000 v2.0 indicates if the TLB has 48 or 64
1204		 * entries.
1205		 *
1206		 * 29	   1 =>	   64 entry JTLB
1207		 *	   0 =>	   48 entry JTLB
1208		 */
1209		c->tlbsize = (read_c0_info() & (1 << 29)) ? 64 : 48;
1210		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1211	case PRID_IMP_R10000:
1212		c->cputype = CPU_R10000;
1213		__cpu_name[cpu] = "R10000";
1214		set_isa(c, MIPS_CPU_ISA_IV);
1215		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
1216			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
1217			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
1218			     MIPS_CPU_LLSC;
1219		c->tlbsize = 64;
1220		break;
1221	case PRID_IMP_R12000:
1222		c->cputype = CPU_R12000;
1223		__cpu_name[cpu] = "R12000";
1224		set_isa(c, MIPS_CPU_ISA_IV);
1225		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
1226			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
1227			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
1228			     MIPS_CPU_LLSC;
1229		c->tlbsize = 64;
1230		write_c0_r10k_diag(read_c0_r10k_diag() | R10K_DIAG_E_GHIST);
1231		break;
1232	case PRID_IMP_R14000:
1233		if (((c->processor_id >> 4) & 0x0f) > 2) {
1234			c->cputype = CPU_R16000;
1235			__cpu_name[cpu] = "R16000";
1236		} else {
1237			c->cputype = CPU_R14000;
1238			__cpu_name[cpu] = "R14000";
1239		}
1240		set_isa(c, MIPS_CPU_ISA_IV);
1241		c->options = MIPS_CPU_TLB | MIPS_CPU_4K_CACHE | MIPS_CPU_4KEX |
1242			     MIPS_CPU_FPU | MIPS_CPU_32FPR |
1243			     MIPS_CPU_COUNTER | MIPS_CPU_WATCH |
1244			     MIPS_CPU_LLSC;
1245		c->tlbsize = 64;
1246		write_c0_r10k_diag(read_c0_r10k_diag() | R10K_DIAG_E_GHIST);
1247		break;
1248	case PRID_IMP_LOONGSON_64C:  /* Loongson-2/3 */
 
 
 
1249		switch (c->processor_id & PRID_REV_MASK) {
1250		case PRID_REV_LOONGSON2E:
1251			c->cputype = CPU_LOONGSON2EF;
1252			__cpu_name[cpu] = "ICT Loongson-2";
1253			set_elf_platform(cpu, "loongson2e");
1254			set_isa(c, MIPS_CPU_ISA_III);
1255			c->fpu_msk31 |= FPU_CSR_CONDX;
1256			break;
1257		case PRID_REV_LOONGSON2F:
1258			c->cputype = CPU_LOONGSON2EF;
1259			__cpu_name[cpu] = "ICT Loongson-2";
1260			set_elf_platform(cpu, "loongson2f");
1261			set_isa(c, MIPS_CPU_ISA_III);
1262			c->fpu_msk31 |= FPU_CSR_CONDX;
1263			break;
1264		case PRID_REV_LOONGSON3A_R1:
1265			c->cputype = CPU_LOONGSON64;
1266			__cpu_name[cpu] = "ICT Loongson-3";
1267			set_elf_platform(cpu, "loongson3a");
1268			set_isa(c, MIPS_CPU_ISA_M64R1);
1269			c->ases |= (MIPS_ASE_LOONGSON_MMI | MIPS_ASE_LOONGSON_CAM |
1270				MIPS_ASE_LOONGSON_EXT);
1271			break;
1272		case PRID_REV_LOONGSON3B_R1:
1273		case PRID_REV_LOONGSON3B_R2:
1274			c->cputype = CPU_LOONGSON64;
1275			__cpu_name[cpu] = "ICT Loongson-3";
1276			set_elf_platform(cpu, "loongson3b");
1277			set_isa(c, MIPS_CPU_ISA_M64R1);
1278			c->ases |= (MIPS_ASE_LOONGSON_MMI | MIPS_ASE_LOONGSON_CAM |
1279				MIPS_ASE_LOONGSON_EXT);
1280			break;
1281		}
1282
 
1283		c->options = R4K_OPTS |
1284			     MIPS_CPU_FPU | MIPS_CPU_LLSC |
1285			     MIPS_CPU_32FPR;
1286		c->tlbsize = 64;
1287		set_cpu_asid_mask(c, MIPS_ENTRYHI_ASID);
1288		c->writecombine = _CACHE_UNCACHED_ACCELERATED;
1289		break;
1290	case PRID_IMP_LOONGSON_32:  /* Loongson-1 */
1291		decode_configs(c);
 
 
 
 
 
 
 
 
1292
1293		c->cputype = CPU_LOONGSON32;
1294
1295		switch (c->processor_id & PRID_REV_MASK) {
1296		case PRID_REV_LOONGSON1B:
1297			__cpu_name[cpu] = "Loongson 1B";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1298			break;
 
 
1299		}
 
 
 
 
1300
1301		break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1302	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1303}
1304
1305static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
1306{
1307	c->writecombine = _CACHE_UNCACHED_ACCELERATED;
1308	switch (c->processor_id & PRID_IMP_MASK) {
1309	case PRID_IMP_QEMU_GENERIC:
1310		c->writecombine = _CACHE_UNCACHED;
1311		c->cputype = CPU_QEMU_GENERIC;
1312		__cpu_name[cpu] = "MIPS GENERIC QEMU";
1313		break;
1314	case PRID_IMP_4KC:
1315		c->cputype = CPU_4KC;
1316		c->writecombine = _CACHE_UNCACHED;
1317		__cpu_name[cpu] = "MIPS 4Kc";
1318		break;
1319	case PRID_IMP_4KEC:
1320	case PRID_IMP_4KECR2:
1321		c->cputype = CPU_4KEC;
1322		c->writecombine = _CACHE_UNCACHED;
1323		__cpu_name[cpu] = "MIPS 4KEc";
1324		break;
1325	case PRID_IMP_4KSC:
1326	case PRID_IMP_4KSD:
1327		c->cputype = CPU_4KSC;
1328		c->writecombine = _CACHE_UNCACHED;
1329		__cpu_name[cpu] = "MIPS 4KSc";
1330		break;
1331	case PRID_IMP_5KC:
1332		c->cputype = CPU_5KC;
1333		c->writecombine = _CACHE_UNCACHED;
1334		__cpu_name[cpu] = "MIPS 5Kc";
1335		break;
1336	case PRID_IMP_5KE:
1337		c->cputype = CPU_5KE;
1338		c->writecombine = _CACHE_UNCACHED;
1339		__cpu_name[cpu] = "MIPS 5KE";
1340		break;
1341	case PRID_IMP_20KC:
1342		c->cputype = CPU_20KC;
1343		c->writecombine = _CACHE_UNCACHED;
1344		__cpu_name[cpu] = "MIPS 20Kc";
1345		break;
1346	case PRID_IMP_24K:
 
1347		c->cputype = CPU_24K;
1348		c->writecombine = _CACHE_UNCACHED;
1349		__cpu_name[cpu] = "MIPS 24Kc";
1350		break;
1351	case PRID_IMP_24KE:
1352		c->cputype = CPU_24K;
1353		c->writecombine = _CACHE_UNCACHED;
1354		__cpu_name[cpu] = "MIPS 24KEc";
1355		break;
1356	case PRID_IMP_25KF:
1357		c->cputype = CPU_25KF;
1358		c->writecombine = _CACHE_UNCACHED;
1359		__cpu_name[cpu] = "MIPS 25Kc";
1360		break;
1361	case PRID_IMP_34K:
1362		c->cputype = CPU_34K;
1363		c->writecombine = _CACHE_UNCACHED;
1364		__cpu_name[cpu] = "MIPS 34Kc";
1365		cpu_set_mt_per_tc_perf(c);
1366		break;
1367	case PRID_IMP_74K:
1368		c->cputype = CPU_74K;
1369		c->writecombine = _CACHE_UNCACHED;
1370		__cpu_name[cpu] = "MIPS 74Kc";
1371		break;
1372	case PRID_IMP_M14KC:
1373		c->cputype = CPU_M14KC;
1374		c->writecombine = _CACHE_UNCACHED;
1375		__cpu_name[cpu] = "MIPS M14Kc";
1376		break;
1377	case PRID_IMP_M14KEC:
1378		c->cputype = CPU_M14KEC;
1379		c->writecombine = _CACHE_UNCACHED;
1380		__cpu_name[cpu] = "MIPS M14KEc";
1381		break;
1382	case PRID_IMP_1004K:
1383		c->cputype = CPU_1004K;
1384		c->writecombine = _CACHE_UNCACHED;
1385		__cpu_name[cpu] = "MIPS 1004Kc";
1386		cpu_set_mt_per_tc_perf(c);
1387		break;
1388	case PRID_IMP_1074K:
1389		c->cputype = CPU_1074K;
1390		c->writecombine = _CACHE_UNCACHED;
1391		__cpu_name[cpu] = "MIPS 1074Kc";
1392		break;
1393	case PRID_IMP_INTERAPTIV_UP:
1394		c->cputype = CPU_INTERAPTIV;
1395		__cpu_name[cpu] = "MIPS interAptiv";
1396		cpu_set_mt_per_tc_perf(c);
1397		break;
1398	case PRID_IMP_INTERAPTIV_MP:
1399		c->cputype = CPU_INTERAPTIV;
1400		__cpu_name[cpu] = "MIPS interAptiv (multi)";
1401		cpu_set_mt_per_tc_perf(c);
1402		break;
1403	case PRID_IMP_PROAPTIV_UP:
1404		c->cputype = CPU_PROAPTIV;
1405		__cpu_name[cpu] = "MIPS proAptiv";
1406		break;
1407	case PRID_IMP_PROAPTIV_MP:
1408		c->cputype = CPU_PROAPTIV;
1409		__cpu_name[cpu] = "MIPS proAptiv (multi)";
1410		break;
1411	case PRID_IMP_P5600:
1412		c->cputype = CPU_P5600;
1413		__cpu_name[cpu] = "MIPS P5600";
1414		break;
1415	case PRID_IMP_P6600:
1416		c->cputype = CPU_P6600;
1417		__cpu_name[cpu] = "MIPS P6600";
1418		break;
1419	case PRID_IMP_I6400:
1420		c->cputype = CPU_I6400;
1421		__cpu_name[cpu] = "MIPS I6400";
1422		break;
1423	case PRID_IMP_I6500:
1424		c->cputype = CPU_I6500;
1425		__cpu_name[cpu] = "MIPS I6500";
1426		break;
1427	case PRID_IMP_M5150:
1428		c->cputype = CPU_M5150;
1429		__cpu_name[cpu] = "MIPS M5150";
1430		break;
1431	case PRID_IMP_M6250:
1432		c->cputype = CPU_M6250;
1433		__cpu_name[cpu] = "MIPS M6250";
1434		break;
1435	}
1436
1437	decode_configs(c);
1438
1439	spram_config();
1440
1441	mm_config(c);
1442
1443	switch (__get_cpu_type(c->cputype)) {
1444	case CPU_M5150:
1445	case CPU_P5600:
1446		set_isa(c, MIPS_CPU_ISA_M32R5);
1447		break;
1448	case CPU_I6500:
1449		c->options |= MIPS_CPU_SHARED_FTLB_ENTRIES;
1450		fallthrough;
1451	case CPU_I6400:
1452		c->options |= MIPS_CPU_SHARED_FTLB_RAM;
1453		fallthrough;
1454	default:
1455		break;
1456	}
1457
1458	/* Recent MIPS cores use the implementation-dependent ExcCode 16 for
1459	 * cache/FTLB parity exceptions.
1460	 */
1461	switch (__get_cpu_type(c->cputype)) {
1462	case CPU_PROAPTIV:
1463	case CPU_P5600:
1464	case CPU_P6600:
1465	case CPU_I6400:
1466	case CPU_I6500:
1467		c->options |= MIPS_CPU_FTLBPAREX;
1468		break;
1469	}
1470}
1471
1472static inline void cpu_probe_alchemy(struct cpuinfo_mips *c, unsigned int cpu)
1473{
1474	decode_configs(c);
1475	switch (c->processor_id & PRID_IMP_MASK) {
1476	case PRID_IMP_AU1_REV1:
1477	case PRID_IMP_AU1_REV2:
1478		c->cputype = CPU_ALCHEMY;
1479		switch ((c->processor_id >> 24) & 0xff) {
1480		case 0:
1481			__cpu_name[cpu] = "Au1000";
1482			break;
1483		case 1:
1484			__cpu_name[cpu] = "Au1500";
1485			break;
1486		case 2:
1487			__cpu_name[cpu] = "Au1100";
1488			break;
1489		case 3:
1490			__cpu_name[cpu] = "Au1550";
1491			break;
1492		case 4:
1493			__cpu_name[cpu] = "Au1200";
1494			if ((c->processor_id & PRID_REV_MASK) == 2)
1495				__cpu_name[cpu] = "Au1250";
1496			break;
1497		case 5:
1498			__cpu_name[cpu] = "Au1210";
1499			break;
1500		default:
1501			__cpu_name[cpu] = "Au1xxx";
1502			break;
1503		}
1504		break;
1505	}
1506}
1507
1508static inline void cpu_probe_sibyte(struct cpuinfo_mips *c, unsigned int cpu)
1509{
1510	decode_configs(c);
1511
1512	c->writecombine = _CACHE_UNCACHED_ACCELERATED;
1513	switch (c->processor_id & PRID_IMP_MASK) {
1514	case PRID_IMP_SB1:
1515		c->cputype = CPU_SB1;
1516		__cpu_name[cpu] = "SiByte SB1";
1517		/* FPU in pass1 is known to have issues. */
1518		if ((c->processor_id & PRID_REV_MASK) < 0x02)
1519			c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
1520		break;
1521	case PRID_IMP_SB1A:
1522		c->cputype = CPU_SB1A;
1523		__cpu_name[cpu] = "SiByte SB1A";
1524		break;
1525	}
1526}
1527
1528static inline void cpu_probe_sandcraft(struct cpuinfo_mips *c, unsigned int cpu)
1529{
1530	decode_configs(c);
1531	switch (c->processor_id & PRID_IMP_MASK) {
1532	case PRID_IMP_SR71000:
1533		c->cputype = CPU_SR71000;
1534		__cpu_name[cpu] = "Sandcraft SR71000";
1535		c->scache.ways = 8;
1536		c->tlbsize = 64;
1537		break;
1538	}
1539}
1540
1541static inline void cpu_probe_nxp(struct cpuinfo_mips *c, unsigned int cpu)
1542{
1543	decode_configs(c);
1544	switch (c->processor_id & PRID_IMP_MASK) {
1545	case PRID_IMP_PR4450:
1546		c->cputype = CPU_PR4450;
1547		__cpu_name[cpu] = "Philips PR4450";
1548		set_isa(c, MIPS_CPU_ISA_M32R1);
1549		break;
1550	}
1551}
1552
1553static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
1554{
1555	decode_configs(c);
1556	switch (c->processor_id & PRID_IMP_MASK) {
1557	case PRID_IMP_BMIPS32_REV4:
1558	case PRID_IMP_BMIPS32_REV8:
1559		c->cputype = CPU_BMIPS32;
1560		__cpu_name[cpu] = "Broadcom BMIPS32";
1561		set_elf_platform(cpu, "bmips32");
1562		break;
1563	case PRID_IMP_BMIPS3300:
1564	case PRID_IMP_BMIPS3300_ALT:
1565	case PRID_IMP_BMIPS3300_BUG:
1566		c->cputype = CPU_BMIPS3300;
1567		__cpu_name[cpu] = "Broadcom BMIPS3300";
1568		set_elf_platform(cpu, "bmips3300");
1569		reserve_exception_space(0x400, VECTORSPACING * 64);
1570		break;
1571	case PRID_IMP_BMIPS43XX: {
1572		int rev = c->processor_id & PRID_REV_MASK;
1573
1574		if (rev >= PRID_REV_BMIPS4380_LO &&
1575				rev <= PRID_REV_BMIPS4380_HI) {
1576			c->cputype = CPU_BMIPS4380;
1577			__cpu_name[cpu] = "Broadcom BMIPS4380";
1578			set_elf_platform(cpu, "bmips4380");
1579			c->options |= MIPS_CPU_RIXI;
1580			reserve_exception_space(0x400, VECTORSPACING * 64);
1581		} else {
1582			c->cputype = CPU_BMIPS4350;
1583			__cpu_name[cpu] = "Broadcom BMIPS4350";
1584			set_elf_platform(cpu, "bmips4350");
1585		}
1586		break;
1587	}
1588	case PRID_IMP_BMIPS5000:
1589	case PRID_IMP_BMIPS5200:
1590		c->cputype = CPU_BMIPS5000;
1591		if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_BMIPS5200)
1592			__cpu_name[cpu] = "Broadcom BMIPS5200";
1593		else
1594			__cpu_name[cpu] = "Broadcom BMIPS5000";
1595		set_elf_platform(cpu, "bmips5000");
1596		c->options |= MIPS_CPU_ULRI | MIPS_CPU_RIXI;
1597		reserve_exception_space(0x1000, VECTORSPACING * 64);
1598		break;
1599	}
1600}
1601
1602static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
1603{
1604	decode_configs(c);
1605	switch (c->processor_id & PRID_IMP_MASK) {
1606	case PRID_IMP_CAVIUM_CN38XX:
1607	case PRID_IMP_CAVIUM_CN31XX:
1608	case PRID_IMP_CAVIUM_CN30XX:
1609		c->cputype = CPU_CAVIUM_OCTEON;
1610		__cpu_name[cpu] = "Cavium Octeon";
1611		goto platform;
1612	case PRID_IMP_CAVIUM_CN58XX:
1613	case PRID_IMP_CAVIUM_CN56XX:
1614	case PRID_IMP_CAVIUM_CN50XX:
1615	case PRID_IMP_CAVIUM_CN52XX:
1616		c->cputype = CPU_CAVIUM_OCTEON_PLUS;
1617		__cpu_name[cpu] = "Cavium Octeon+";
1618platform:
1619		set_elf_platform(cpu, "octeon");
1620		break;
1621	case PRID_IMP_CAVIUM_CN61XX:
1622	case PRID_IMP_CAVIUM_CN63XX:
1623	case PRID_IMP_CAVIUM_CN66XX:
1624	case PRID_IMP_CAVIUM_CN68XX:
1625	case PRID_IMP_CAVIUM_CNF71XX:
1626		c->cputype = CPU_CAVIUM_OCTEON2;
1627		__cpu_name[cpu] = "Cavium Octeon II";
1628		set_elf_platform(cpu, "octeon2");
1629		break;
1630	case PRID_IMP_CAVIUM_CN70XX:
1631	case PRID_IMP_CAVIUM_CN73XX:
1632	case PRID_IMP_CAVIUM_CNF75XX:
1633	case PRID_IMP_CAVIUM_CN78XX:
1634		c->cputype = CPU_CAVIUM_OCTEON3;
1635		__cpu_name[cpu] = "Cavium Octeon III";
1636		set_elf_platform(cpu, "octeon3");
1637		break;
1638	default:
1639		printk(KERN_INFO "Unknown Octeon chip!\n");
1640		c->cputype = CPU_UNKNOWN;
1641		break;
1642	}
1643}
1644
1645#ifdef CONFIG_CPU_LOONGSON64
1646#include <loongson_regs.h>
1647
1648static inline void decode_cpucfg(struct cpuinfo_mips *c)
1649{
1650	u32 cfg1 = read_cpucfg(LOONGSON_CFG1);
1651	u32 cfg2 = read_cpucfg(LOONGSON_CFG2);
1652	u32 cfg3 = read_cpucfg(LOONGSON_CFG3);
1653
1654	if (cfg1 & LOONGSON_CFG1_MMI)
1655		c->ases |= MIPS_ASE_LOONGSON_MMI;
1656
1657	if (cfg2 & LOONGSON_CFG2_LEXT1)
1658		c->ases |= MIPS_ASE_LOONGSON_EXT;
1659
1660	if (cfg2 & LOONGSON_CFG2_LEXT2)
1661		c->ases |= MIPS_ASE_LOONGSON_EXT2;
1662
1663	if (cfg2 & LOONGSON_CFG2_LSPW) {
1664		c->options |= MIPS_CPU_LDPTE;
1665		c->guest.options |= MIPS_CPU_LDPTE;
1666	}
1667
1668	if (cfg3 & LOONGSON_CFG3_LCAMP)
1669		c->ases |= MIPS_ASE_LOONGSON_CAM;
1670}
1671
1672static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu)
1673{
1674	/* All Loongson processors covered here define ExcCode 16 as GSExc. */
1675	c->options |= MIPS_CPU_GSEXCEX;
1676
1677	switch (c->processor_id & PRID_IMP_MASK) {
1678	case PRID_IMP_LOONGSON_64R: /* Loongson-64 Reduced */
1679		switch (c->processor_id & PRID_REV_MASK) {
1680		case PRID_REV_LOONGSON2K_R1_0:
1681		case PRID_REV_LOONGSON2K_R1_1:
1682		case PRID_REV_LOONGSON2K_R1_2:
1683		case PRID_REV_LOONGSON2K_R1_3:
1684			c->cputype = CPU_LOONGSON64;
1685			__cpu_name[cpu] = "Loongson-2K";
1686			set_elf_platform(cpu, "gs264e");
1687			set_isa(c, MIPS_CPU_ISA_M64R2);
1688			break;
1689		}
1690		c->ases |= (MIPS_ASE_LOONGSON_MMI | MIPS_ASE_LOONGSON_EXT |
1691				MIPS_ASE_LOONGSON_EXT2);
1692		break;
1693	case PRID_IMP_LOONGSON_64C:  /* Loongson-3 Classic */
1694		switch (c->processor_id & PRID_REV_MASK) {
1695		case PRID_REV_LOONGSON3A_R2_0:
1696		case PRID_REV_LOONGSON3A_R2_1:
1697			c->cputype = CPU_LOONGSON64;
1698			__cpu_name[cpu] = "ICT Loongson-3";
1699			set_elf_platform(cpu, "loongson3a");
1700			set_isa(c, MIPS_CPU_ISA_M64R2);
1701			break;
1702		case PRID_REV_LOONGSON3A_R3_0:
1703		case PRID_REV_LOONGSON3A_R3_1:
1704			c->cputype = CPU_LOONGSON64;
1705			__cpu_name[cpu] = "ICT Loongson-3";
1706			set_elf_platform(cpu, "loongson3a");
1707			set_isa(c, MIPS_CPU_ISA_M64R2);
1708			break;
1709		}
1710		/*
1711		 * Loongson-3 Classic did not implement MIPS standard TLBINV
1712		 * but implemented TLBINVF and EHINV. As currently we're only
1713		 * using these two features, enable MIPS_CPU_TLBINV as well.
1714		 *
1715		 * Also some early Loongson-3A2000 had wrong TLB type in Config
1716		 * register, we correct it here.
1717		 */
1718		c->options |= MIPS_CPU_FTLB | MIPS_CPU_TLBINV | MIPS_CPU_LDPTE;
1719		c->ases |= (MIPS_ASE_LOONGSON_MMI | MIPS_ASE_LOONGSON_CAM |
1720			MIPS_ASE_LOONGSON_EXT | MIPS_ASE_LOONGSON_EXT2);
1721		c->ases &= ~MIPS_ASE_VZ; /* VZ of Loongson-3A2000/3000 is incomplete */
1722		break;
1723	case PRID_IMP_LOONGSON_64G:
1724		c->cputype = CPU_LOONGSON64;
1725		__cpu_name[cpu] = "ICT Loongson-3";
1726		set_elf_platform(cpu, "loongson3a");
1727		set_isa(c, MIPS_CPU_ISA_M64R2);
1728		decode_cpucfg(c);
1729		break;
1730	default:
1731		panic("Unknown Loongson Processor ID!");
1732		break;
1733	}
1734
1735	decode_configs(c);
1736}
1737#else
1738static inline void cpu_probe_loongson(struct cpuinfo_mips *c, unsigned int cpu) { }
1739#endif
1740
1741static inline void cpu_probe_ingenic(struct cpuinfo_mips *c, unsigned int cpu)
1742{
1743	decode_configs(c);
1744
1745	/*
1746	 * XBurst misses a config2 register, so config3 decode was skipped in
1747	 * decode_configs().
1748	 */
1749	decode_config3(c);
1750
1751	/* XBurst does not implement the CP0 counter. */
1752	c->options &= ~MIPS_CPU_COUNTER;
1753	BUG_ON(__builtin_constant_p(cpu_has_counter) && cpu_has_counter);
1754
1755	/* XBurst has virtually tagged icache */
1756	c->icache.flags |= MIPS_CACHE_VTAG;
1757
1758	switch (c->processor_id & PRID_IMP_MASK) {
1759
1760	/* XBurst®1 with MXU1.0/MXU1.1 SIMD ISA */
1761	case PRID_IMP_XBURST_REV1:
1762
1763		/*
1764		 * The XBurst core by default attempts to avoid branch target
1765		 * buffer lookups by detecting & special casing loops. This
1766		 * feature will cause BogoMIPS and lpj calculate in error.
1767		 * Set cp0 config7 bit 4 to disable this feature.
1768		 */
1769		set_c0_config7(MIPS_CONF7_BTB_LOOP_EN);
1770
1771		switch (c->processor_id & PRID_COMP_MASK) {
1772
1773		/*
1774		 * The config0 register in the XBurst CPUs with a processor ID of
1775		 * PRID_COMP_INGENIC_D0 report themselves as MIPS32r2 compatible,
1776		 * but they don't actually support this ISA.
1777		 */
1778		case PRID_COMP_INGENIC_D0:
1779			c->isa_level &= ~MIPS_CPU_ISA_M32R2;
1780
1781			/* FPU is not properly detected on JZ4760(B). */
1782			if (c->processor_id == 0x2ed0024f)
1783				c->options |= MIPS_CPU_FPU;
1784
1785			fallthrough;
1786
1787		/*
1788		 * The config0 register in the XBurst CPUs with a processor ID of
1789		 * PRID_COMP_INGENIC_D0 or PRID_COMP_INGENIC_D1 has an abandoned
1790		 * huge page tlb mode, this mode is not compatible with the MIPS
1791		 * standard, it will cause tlbmiss and into an infinite loop
1792		 * (line 21 in the tlb-funcs.S) when starting the init process.
1793		 * After chip reset, the default is HPTLB mode, Write 0xa9000000
1794		 * to cp0 register 5 sel 4 to switch back to VTLB mode to prevent
1795		 * getting stuck.
1796		 */
1797		case PRID_COMP_INGENIC_D1:
1798			write_c0_page_ctrl(XBURST_PAGECTRL_HPTLB_DIS);
1799			break;
1800
1801		default:
1802			break;
1803		}
1804		fallthrough;
1805
1806	/* XBurst®1 with MXU2.0 SIMD ISA */
1807	case PRID_IMP_XBURST_REV2:
1808		/* Ingenic uses the WA bit to achieve write-combine memory writes */
1809		c->writecombine = _CACHE_CACHABLE_WA;
1810		c->cputype = CPU_XBURST;
1811		__cpu_name[cpu] = "Ingenic XBurst";
1812		break;
1813
1814	/* XBurst®2 with MXU2.1 SIMD ISA */
1815	case PRID_IMP_XBURST2:
1816		c->cputype = CPU_XBURST;
1817		__cpu_name[cpu] = "Ingenic XBurst II";
1818		break;
 
1819
1820	default:
1821		panic("Unknown Ingenic Processor ID!");
1822		break;
 
 
 
 
 
1823	}
1824}
1825
1826#ifdef CONFIG_64BIT
1827/* For use by uaccess.h */
1828u64 __ua_limit;
1829EXPORT_SYMBOL(__ua_limit);
1830#endif
1831
1832const char *__cpu_name[NR_CPUS];
1833const char *__elf_platform;
1834const char *__elf_base_platform;
1835
1836void cpu_probe(void)
1837{
1838	struct cpuinfo_mips *c = &current_cpu_data;
1839	unsigned int cpu = smp_processor_id();
1840
1841	/*
1842	 * Set a default elf platform, cpu probe may later
1843	 * overwrite it with a more precise value
1844	 */
1845	set_elf_platform(cpu, "mips");
1846
1847	c->processor_id = PRID_IMP_UNKNOWN;
1848	c->fpu_id	= FPIR_IMP_NONE;
1849	c->cputype	= CPU_UNKNOWN;
1850	c->writecombine = _CACHE_UNCACHED;
1851
1852	c->fpu_csr31	= FPU_CSR_RN;
1853	c->fpu_msk31	= FPU_CSR_RSVD | FPU_CSR_ABS2008 | FPU_CSR_NAN2008;
1854
1855	c->processor_id = read_c0_prid();
1856	switch (c->processor_id & PRID_COMP_MASK) {
1857	case PRID_COMP_LEGACY:
1858		cpu_probe_legacy(c, cpu);
1859		break;
1860	case PRID_COMP_MIPS:
1861		cpu_probe_mips(c, cpu);
1862		break;
1863	case PRID_COMP_ALCHEMY:
1864		cpu_probe_alchemy(c, cpu);
1865		break;
1866	case PRID_COMP_SIBYTE:
1867		cpu_probe_sibyte(c, cpu);
1868		break;
1869	case PRID_COMP_BROADCOM:
1870		cpu_probe_broadcom(c, cpu);
1871		break;
1872	case PRID_COMP_SANDCRAFT:
1873		cpu_probe_sandcraft(c, cpu);
1874		break;
1875	case PRID_COMP_NXP:
1876		cpu_probe_nxp(c, cpu);
1877		break;
1878	case PRID_COMP_CAVIUM:
1879		cpu_probe_cavium(c, cpu);
1880		break;
1881	case PRID_COMP_LOONGSON:
1882		cpu_probe_loongson(c, cpu);
1883		break;
1884	case PRID_COMP_INGENIC_13:
1885	case PRID_COMP_INGENIC_D0:
1886	case PRID_COMP_INGENIC_D1:
1887	case PRID_COMP_INGENIC_E1:
1888		cpu_probe_ingenic(c, cpu);
1889		break;
1890	}
1891
1892	BUG_ON(!__cpu_name[cpu]);
1893	BUG_ON(c->cputype == CPU_UNKNOWN);
1894
1895	/*
1896	 * Platform code can force the cpu type to optimize code
1897	 * generation. In that case be sure the cpu type is correctly
1898	 * manually setup otherwise it could trigger some nasty bugs.
1899	 */
1900	BUG_ON(current_cpu_type() != c->cputype);
1901
1902	if (cpu_has_rixi) {
1903		/* Enable the RIXI exceptions */
1904		set_c0_pagegrain(PG_IEC);
1905		back_to_back_c0_hazard();
1906		/* Verify the IEC bit is set */
1907		if (read_c0_pagegrain() & PG_IEC)
1908			c->options |= MIPS_CPU_RIXIEX;
1909	}
1910
1911	if (mips_fpu_disabled)
1912		c->options &= ~MIPS_CPU_FPU;
1913
1914	if (mips_dsp_disabled)
1915		c->ases &= ~(MIPS_ASE_DSP | MIPS_ASE_DSP2P);
1916
1917	if (mips_htw_disabled) {
1918		c->options &= ~MIPS_CPU_HTW;
1919		write_c0_pwctl(read_c0_pwctl() &
1920			       ~(1 << MIPS_PWCTL_PWEN_SHIFT));
 
 
 
 
 
 
1921	}
1922
1923	if (c->options & MIPS_CPU_FPU)
1924		cpu_set_fpu_opts(c);
1925	else
1926		cpu_set_nofpu_opts(c);
1927
1928	if (cpu_has_mips_r2_r6) {
1929		c->srsets = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
1930		/* R2 has Performance Counter Interrupt indicator */
1931		c->options |= MIPS_CPU_PCI;
1932	}
1933	else
1934		c->srsets = 1;
1935
1936	if (cpu_has_mips_r6)
1937		elf_hwcap |= HWCAP_MIPS_R6;
1938
1939	if (cpu_has_msa) {
1940		c->msa_id = cpu_get_msa_id();
1941		WARN(c->msa_id & MSA_IR_WRPF,
1942		     "Vector register partitioning unimplemented!");
1943		elf_hwcap |= HWCAP_MIPS_MSA;
1944	}
1945
1946	if (cpu_has_mips16)
1947		elf_hwcap |= HWCAP_MIPS_MIPS16;
1948
1949	if (cpu_has_mdmx)
1950		elf_hwcap |= HWCAP_MIPS_MDMX;
1951
1952	if (cpu_has_mips3d)
1953		elf_hwcap |= HWCAP_MIPS_MIPS3D;
1954
1955	if (cpu_has_smartmips)
1956		elf_hwcap |= HWCAP_MIPS_SMARTMIPS;
1957
1958	if (cpu_has_dsp)
1959		elf_hwcap |= HWCAP_MIPS_DSP;
1960
1961	if (cpu_has_dsp2)
1962		elf_hwcap |= HWCAP_MIPS_DSP2;
1963
1964	if (cpu_has_dsp3)
1965		elf_hwcap |= HWCAP_MIPS_DSP3;
1966
1967	if (cpu_has_mips16e2)
1968		elf_hwcap |= HWCAP_MIPS_MIPS16E2;
1969
1970	if (cpu_has_loongson_mmi)
1971		elf_hwcap |= HWCAP_LOONGSON_MMI;
1972
1973	if (cpu_has_loongson_ext)
1974		elf_hwcap |= HWCAP_LOONGSON_EXT;
1975
1976	if (cpu_has_loongson_ext2)
1977		elf_hwcap |= HWCAP_LOONGSON_EXT2;
1978
1979	if (cpu_has_vz)
1980		cpu_probe_vz(c);
1981
1982	cpu_probe_vmbits(c);
1983
1984	/* Synthesize CPUCFG data if running on Loongson processors;
1985	 * no-op otherwise.
1986	 *
1987	 * This looks at previously probed features, so keep this at bottom.
1988	 */
1989	loongson3_cpucfg_synthesize_data(c);
1990
1991#ifdef CONFIG_64BIT
1992	if (cpu == 0)
1993		__ua_limit = ~((1ull << cpu_vmbits) - 1);
1994#endif
1995
1996	reserve_exception_space(0, 0x1000);
1997}
1998
1999void cpu_report(void)
2000{
2001	struct cpuinfo_mips *c = &current_cpu_data;
2002
2003	pr_info("CPU%d revision is: %08x (%s)\n",
2004		smp_processor_id(), c->processor_id, cpu_name_string());
2005	if (c->options & MIPS_CPU_FPU)
2006		printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
2007	if (cpu_has_msa)
2008		pr_info("MSA revision is: %08x\n", c->msa_id);
2009}
2010
2011void cpu_set_cluster(struct cpuinfo_mips *cpuinfo, unsigned int cluster)
2012{
2013	/* Ensure the core number fits in the field */
2014	WARN_ON(cluster > (MIPS_GLOBALNUMBER_CLUSTER >>
2015			   MIPS_GLOBALNUMBER_CLUSTER_SHF));
2016
2017	cpuinfo->globalnumber &= ~MIPS_GLOBALNUMBER_CLUSTER;
2018	cpuinfo->globalnumber |= cluster << MIPS_GLOBALNUMBER_CLUSTER_SHF;
2019}
2020
2021void cpu_set_core(struct cpuinfo_mips *cpuinfo, unsigned int core)
2022{
2023	/* Ensure the core number fits in the field */
2024	WARN_ON(core > (MIPS_GLOBALNUMBER_CORE >> MIPS_GLOBALNUMBER_CORE_SHF));
2025
2026	cpuinfo->globalnumber &= ~MIPS_GLOBALNUMBER_CORE;
2027	cpuinfo->globalnumber |= core << MIPS_GLOBALNUMBER_CORE_SHF;
2028}
2029
2030void cpu_set_vpe_id(struct cpuinfo_mips *cpuinfo, unsigned int vpe)
2031{
2032	/* Ensure the VP(E) ID fits in the field */
2033	WARN_ON(vpe > (MIPS_GLOBALNUMBER_VP >> MIPS_GLOBALNUMBER_VP_SHF));
2034
2035	/* Ensure we're not using VP(E)s without support */
2036	WARN_ON(vpe && !IS_ENABLED(CONFIG_MIPS_MT_SMP) &&
2037		!IS_ENABLED(CONFIG_CPU_MIPSR6));
2038
2039	cpuinfo->globalnumber &= ~MIPS_GLOBALNUMBER_VP;
2040	cpuinfo->globalnumber |= vpe << MIPS_GLOBALNUMBER_VP_SHF;
2041}