162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * cpu.h: Values of the PRId register used to match up
462306a36Sopenharmony_ci *	  various MIPS cpu types.
562306a36Sopenharmony_ci *
662306a36Sopenharmony_ci * Copyright (C) 1996 David S. Miller (davem@davemloft.net)
762306a36Sopenharmony_ci * Copyright (C) 2004, 2013  Maciej W. Rozycki
862306a36Sopenharmony_ci */
962306a36Sopenharmony_ci#ifndef _ASM_CPU_H
1062306a36Sopenharmony_ci#define _ASM_CPU_H
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#include <linux/bits.h>
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_ci/*
1562306a36Sopenharmony_ci   As of the MIPS32 and MIPS64 specs from MTI, the PRId register (CP0
1662306a36Sopenharmony_ci   register 15, select 0) is defined in this (backwards compatible) way:
1762306a36Sopenharmony_ci
1862306a36Sopenharmony_ci  +----------------+----------------+----------------+----------------+
1962306a36Sopenharmony_ci  | Company Options| Company ID	    | Processor ID   | Revision	      |
2062306a36Sopenharmony_ci  +----------------+----------------+----------------+----------------+
2162306a36Sopenharmony_ci   31		 24 23		  16 15		    8 7
2262306a36Sopenharmony_ci
2362306a36Sopenharmony_ci   I don't have docs for all the previous processors, but my impression is
2462306a36Sopenharmony_ci   that bits 16-23 have been 0 for all MIPS processors before the MIPS32/64
2562306a36Sopenharmony_ci   spec.
2662306a36Sopenharmony_ci*/
2762306a36Sopenharmony_ci
2862306a36Sopenharmony_ci#define PRID_OPT_MASK		0xff000000
2962306a36Sopenharmony_ci
3062306a36Sopenharmony_ci/*
3162306a36Sopenharmony_ci * Assigned Company values for bits 23:16 of the PRId register.
3262306a36Sopenharmony_ci */
3362306a36Sopenharmony_ci
3462306a36Sopenharmony_ci#define PRID_COMP_MASK		0xff0000
3562306a36Sopenharmony_ci
3662306a36Sopenharmony_ci#define PRID_COMP_LEGACY	0x000000
3762306a36Sopenharmony_ci#define PRID_COMP_MIPS		0x010000
3862306a36Sopenharmony_ci#define PRID_COMP_BROADCOM	0x020000
3962306a36Sopenharmony_ci#define PRID_COMP_ALCHEMY	0x030000
4062306a36Sopenharmony_ci#define PRID_COMP_SIBYTE	0x040000
4162306a36Sopenharmony_ci#define PRID_COMP_SANDCRAFT	0x050000
4262306a36Sopenharmony_ci#define PRID_COMP_NXP		0x060000
4362306a36Sopenharmony_ci#define PRID_COMP_TOSHIBA	0x070000
4462306a36Sopenharmony_ci#define PRID_COMP_LSI		0x080000
4562306a36Sopenharmony_ci#define PRID_COMP_LEXRA		0x0b0000
4662306a36Sopenharmony_ci#define PRID_COMP_NETLOGIC	0x0c0000
4762306a36Sopenharmony_ci#define PRID_COMP_CAVIUM	0x0d0000
4862306a36Sopenharmony_ci#define PRID_COMP_LOONGSON	0x140000
4962306a36Sopenharmony_ci#define PRID_COMP_INGENIC_13	0x130000	/* X2000, X2100 */
5062306a36Sopenharmony_ci#define PRID_COMP_INGENIC_D0	0xd00000	/* JZ4730, JZ4740, JZ4750, JZ4755, JZ4760, X1830 */
5162306a36Sopenharmony_ci#define PRID_COMP_INGENIC_D1	0xd10000	/* JZ4770, JZ4775, X1000 */
5262306a36Sopenharmony_ci#define PRID_COMP_INGENIC_E1	0xe10000	/* JZ4780 */
5362306a36Sopenharmony_ci
5462306a36Sopenharmony_ci/*
5562306a36Sopenharmony_ci * Assigned Processor ID (implementation) values for bits 15:8 of the PRId
5662306a36Sopenharmony_ci * register.  In order to detect a certain CPU type exactly eventually
5762306a36Sopenharmony_ci * additional registers may need to be examined.
5862306a36Sopenharmony_ci */
5962306a36Sopenharmony_ci
6062306a36Sopenharmony_ci#define PRID_IMP_MASK		0xff00
6162306a36Sopenharmony_ci
6262306a36Sopenharmony_ci/*
6362306a36Sopenharmony_ci * These are valid when 23:16 == PRID_COMP_LEGACY
6462306a36Sopenharmony_ci */
6562306a36Sopenharmony_ci
6662306a36Sopenharmony_ci#define PRID_IMP_R2000		0x0100
6762306a36Sopenharmony_ci#define PRID_IMP_AU1_REV1	0x0100
6862306a36Sopenharmony_ci#define PRID_IMP_AU1_REV2	0x0200
6962306a36Sopenharmony_ci#define PRID_IMP_R3000		0x0200		/* Same as R2000A  */
7062306a36Sopenharmony_ci#define PRID_IMP_R6000		0x0300		/* Same as R3000A  */
7162306a36Sopenharmony_ci#define PRID_IMP_R4000		0x0400
7262306a36Sopenharmony_ci#define PRID_IMP_R6000A		0x0600
7362306a36Sopenharmony_ci#define PRID_IMP_R10000		0x0900
7462306a36Sopenharmony_ci#define PRID_IMP_R4300		0x0b00
7562306a36Sopenharmony_ci#define PRID_IMP_VR41XX		0x0c00
7662306a36Sopenharmony_ci#define PRID_IMP_R12000		0x0e00
7762306a36Sopenharmony_ci#define PRID_IMP_R14000		0x0f00		/* R14K && R16K */
7862306a36Sopenharmony_ci#define PRID_IMP_R8000		0x1000
7962306a36Sopenharmony_ci#define PRID_IMP_PR4450		0x1200
8062306a36Sopenharmony_ci#define PRID_IMP_R4600		0x2000
8162306a36Sopenharmony_ci#define PRID_IMP_R4700		0x2100
8262306a36Sopenharmony_ci#define PRID_IMP_TX39		0x2200
8362306a36Sopenharmony_ci#define PRID_IMP_R4640		0x2200
8462306a36Sopenharmony_ci#define PRID_IMP_R4650		0x2200		/* Same as R4640 */
8562306a36Sopenharmony_ci#define PRID_IMP_R5000		0x2300
8662306a36Sopenharmony_ci#define PRID_IMP_TX49		0x2d00
8762306a36Sopenharmony_ci#define PRID_IMP_SONIC		0x2400
8862306a36Sopenharmony_ci#define PRID_IMP_MAGIC		0x2500
8962306a36Sopenharmony_ci#define PRID_IMP_RM7000		0x2700
9062306a36Sopenharmony_ci#define PRID_IMP_NEVADA		0x2800		/* RM5260 ??? */
9162306a36Sopenharmony_ci#define PRID_IMP_RM9000		0x3400
9262306a36Sopenharmony_ci#define PRID_IMP_LOONGSON_32	0x4200  /* Loongson-1 */
9362306a36Sopenharmony_ci#define PRID_IMP_R5432		0x5400
9462306a36Sopenharmony_ci#define PRID_IMP_R5500		0x5500
9562306a36Sopenharmony_ci#define PRID_IMP_LOONGSON_64R	0x6100  /* Reduced Loongson-2 */
9662306a36Sopenharmony_ci#define PRID_IMP_LOONGSON_64C	0x6300  /* Classic Loongson-2 and Loongson-3 */
9762306a36Sopenharmony_ci#define PRID_IMP_LOONGSON_64G	0xc000  /* Generic Loongson-2 and Loongson-3 */
9862306a36Sopenharmony_ci
9962306a36Sopenharmony_ci#define PRID_IMP_UNKNOWN	0xff00
10062306a36Sopenharmony_ci
10162306a36Sopenharmony_ci/*
10262306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_MIPS
10362306a36Sopenharmony_ci */
10462306a36Sopenharmony_ci
10562306a36Sopenharmony_ci#define PRID_IMP_QEMU_GENERIC	0x0000
10662306a36Sopenharmony_ci#define PRID_IMP_4KC		0x8000
10762306a36Sopenharmony_ci#define PRID_IMP_5KC		0x8100
10862306a36Sopenharmony_ci#define PRID_IMP_20KC		0x8200
10962306a36Sopenharmony_ci#define PRID_IMP_4KEC		0x8400
11062306a36Sopenharmony_ci#define PRID_IMP_4KSC		0x8600
11162306a36Sopenharmony_ci#define PRID_IMP_25KF		0x8800
11262306a36Sopenharmony_ci#define PRID_IMP_5KE		0x8900
11362306a36Sopenharmony_ci#define PRID_IMP_4KECR2		0x9000
11462306a36Sopenharmony_ci#define PRID_IMP_4KEMPR2	0x9100
11562306a36Sopenharmony_ci#define PRID_IMP_4KSD		0x9200
11662306a36Sopenharmony_ci#define PRID_IMP_24K		0x9300
11762306a36Sopenharmony_ci#define PRID_IMP_34K		0x9500
11862306a36Sopenharmony_ci#define PRID_IMP_24KE		0x9600
11962306a36Sopenharmony_ci#define PRID_IMP_74K		0x9700
12062306a36Sopenharmony_ci#define PRID_IMP_1004K		0x9900
12162306a36Sopenharmony_ci#define PRID_IMP_1074K		0x9a00
12262306a36Sopenharmony_ci#define PRID_IMP_M14KC		0x9c00
12362306a36Sopenharmony_ci#define PRID_IMP_M14KEC		0x9e00
12462306a36Sopenharmony_ci#define PRID_IMP_INTERAPTIV_UP	0xa000
12562306a36Sopenharmony_ci#define PRID_IMP_INTERAPTIV_MP	0xa100
12662306a36Sopenharmony_ci#define PRID_IMP_PROAPTIV_UP	0xa200
12762306a36Sopenharmony_ci#define PRID_IMP_PROAPTIV_MP	0xa300
12862306a36Sopenharmony_ci#define PRID_IMP_P6600		0xa400
12962306a36Sopenharmony_ci#define PRID_IMP_M5150		0xa700
13062306a36Sopenharmony_ci#define PRID_IMP_P5600		0xa800
13162306a36Sopenharmony_ci#define PRID_IMP_I6400		0xa900
13262306a36Sopenharmony_ci#define PRID_IMP_M6250		0xab00
13362306a36Sopenharmony_ci#define PRID_IMP_I6500		0xb000
13462306a36Sopenharmony_ci
13562306a36Sopenharmony_ci/*
13662306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_SIBYTE
13762306a36Sopenharmony_ci */
13862306a36Sopenharmony_ci
13962306a36Sopenharmony_ci#define PRID_IMP_SB1		0x0100
14062306a36Sopenharmony_ci#define PRID_IMP_SB1A		0x1100
14162306a36Sopenharmony_ci
14262306a36Sopenharmony_ci/*
14362306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_SANDCRAFT
14462306a36Sopenharmony_ci */
14562306a36Sopenharmony_ci
14662306a36Sopenharmony_ci#define PRID_IMP_SR71000	0x0400
14762306a36Sopenharmony_ci
14862306a36Sopenharmony_ci/*
14962306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_BROADCOM
15062306a36Sopenharmony_ci */
15162306a36Sopenharmony_ci
15262306a36Sopenharmony_ci#define PRID_IMP_BMIPS32_REV4	0x4000
15362306a36Sopenharmony_ci#define PRID_IMP_BMIPS32_REV8	0x8000
15462306a36Sopenharmony_ci#define PRID_IMP_BMIPS3300	0x9000
15562306a36Sopenharmony_ci#define PRID_IMP_BMIPS3300_ALT	0x9100
15662306a36Sopenharmony_ci#define PRID_IMP_BMIPS3300_BUG	0x0000
15762306a36Sopenharmony_ci#define PRID_IMP_BMIPS43XX	0xa000
15862306a36Sopenharmony_ci#define PRID_IMP_BMIPS5000	0x5a00
15962306a36Sopenharmony_ci#define PRID_IMP_BMIPS5200	0x5b00
16062306a36Sopenharmony_ci
16162306a36Sopenharmony_ci#define PRID_REV_BMIPS4380_LO	0x0040
16262306a36Sopenharmony_ci#define PRID_REV_BMIPS4380_HI	0x006f
16362306a36Sopenharmony_ci
16462306a36Sopenharmony_ci/*
16562306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_CAVIUM
16662306a36Sopenharmony_ci */
16762306a36Sopenharmony_ci
16862306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN38XX 0x0000
16962306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN31XX 0x0100
17062306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN30XX 0x0200
17162306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN58XX 0x0300
17262306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN56XX 0x0400
17362306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN50XX 0x0600
17462306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN52XX 0x0700
17562306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN63XX 0x9000
17662306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN68XX 0x9100
17762306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN66XX 0x9200
17862306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN61XX 0x9300
17962306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CNF71XX 0x9400
18062306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN78XX 0x9500
18162306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN70XX 0x9600
18262306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CN73XX 0x9700
18362306a36Sopenharmony_ci#define PRID_IMP_CAVIUM_CNF75XX 0x9800
18462306a36Sopenharmony_ci
18562306a36Sopenharmony_ci/*
18662306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_INGENIC_*
18762306a36Sopenharmony_ci */
18862306a36Sopenharmony_ci
18962306a36Sopenharmony_ci#define PRID_IMP_XBURST_REV1	0x0200	/* XBurst®1 with MXU1.0/MXU1.1 SIMD ISA	*/
19062306a36Sopenharmony_ci#define PRID_IMP_XBURST_REV2	0x0100	/* XBurst®1 with MXU2.0 SIMD ISA		*/
19162306a36Sopenharmony_ci#define PRID_IMP_XBURST2		0x2000	/* XBurst®2 with MXU2.1 SIMD ISA		*/
19262306a36Sopenharmony_ci
19362306a36Sopenharmony_ci/*
19462306a36Sopenharmony_ci * These are the PRID's for when 23:16 == PRID_COMP_NETLOGIC
19562306a36Sopenharmony_ci */
19662306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR732	0x0000
19762306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR716	0x0200
19862306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR532	0x0900
19962306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR308	0x0600
20062306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR532C	0x0800
20162306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR516C	0x0a00
20262306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR508C	0x0b00
20362306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLR308C	0x0f00
20462306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS608	0x8000
20562306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS408	0x8800
20662306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS404	0x8c00
20762306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS208	0x8e00
20862306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS204	0x8f00
20962306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS108	0xce00
21062306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS104	0xcf00
21162306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS616B	0x4000
21262306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS608B	0x4a00
21362306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS416B	0x4400
21462306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS412B	0x4c00
21562306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS408B	0x4e00
21662306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLS404B	0x4f00
21762306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_AU13XX	0x8000
21862306a36Sopenharmony_ci
21962306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLP8XX	0x1000
22062306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLP3XX	0x1100
22162306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLP2XX	0x1200
22262306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLP9XX	0x1500
22362306a36Sopenharmony_ci#define PRID_IMP_NETLOGIC_XLP5XX	0x1300
22462306a36Sopenharmony_ci
22562306a36Sopenharmony_ci/*
22662306a36Sopenharmony_ci * Particular Revision values for bits 7:0 of the PRId register.
22762306a36Sopenharmony_ci */
22862306a36Sopenharmony_ci
22962306a36Sopenharmony_ci#define PRID_REV_MASK		0x00ff
23062306a36Sopenharmony_ci
23162306a36Sopenharmony_ci/*
23262306a36Sopenharmony_ci * Definitions for 7:0 on legacy processors
23362306a36Sopenharmony_ci */
23462306a36Sopenharmony_ci
23562306a36Sopenharmony_ci#define PRID_REV_TX4927			0x0022
23662306a36Sopenharmony_ci#define PRID_REV_TX4937			0x0030
23762306a36Sopenharmony_ci#define PRID_REV_R4400			0x0040
23862306a36Sopenharmony_ci#define PRID_REV_R3000A			0x0030
23962306a36Sopenharmony_ci#define PRID_REV_R3000			0x0020
24062306a36Sopenharmony_ci#define PRID_REV_R2000A			0x0010
24162306a36Sopenharmony_ci#define PRID_REV_TX3912			0x0010
24262306a36Sopenharmony_ci#define PRID_REV_TX3922			0x0030
24362306a36Sopenharmony_ci#define PRID_REV_TX3927			0x0040
24462306a36Sopenharmony_ci#define PRID_REV_VR4111			0x0050
24562306a36Sopenharmony_ci#define PRID_REV_VR4181			0x0050	/* Same as VR4111 */
24662306a36Sopenharmony_ci#define PRID_REV_VR4121			0x0060
24762306a36Sopenharmony_ci#define PRID_REV_VR4122			0x0070
24862306a36Sopenharmony_ci#define PRID_REV_VR4181A		0x0070	/* Same as VR4122 */
24962306a36Sopenharmony_ci#define PRID_REV_VR4130			0x0080
25062306a36Sopenharmony_ci#define PRID_REV_34K_V1_0_2		0x0022
25162306a36Sopenharmony_ci#define PRID_REV_LOONGSON1B		0x0020
25262306a36Sopenharmony_ci#define PRID_REV_LOONGSON1C		0x0020	/* Same as Loongson-1B */
25362306a36Sopenharmony_ci#define PRID_REV_LOONGSON2E		0x0002
25462306a36Sopenharmony_ci#define PRID_REV_LOONGSON2F		0x0003
25562306a36Sopenharmony_ci#define PRID_REV_LOONGSON2K_R1_0	0x0000
25662306a36Sopenharmony_ci#define PRID_REV_LOONGSON2K_R1_1	0x0001
25762306a36Sopenharmony_ci#define PRID_REV_LOONGSON2K_R1_2	0x0002
25862306a36Sopenharmony_ci#define PRID_REV_LOONGSON2K_R1_3	0x0003
25962306a36Sopenharmony_ci#define PRID_REV_LOONGSON3A_R1		0x0005
26062306a36Sopenharmony_ci#define PRID_REV_LOONGSON3B_R1		0x0006
26162306a36Sopenharmony_ci#define PRID_REV_LOONGSON3B_R2		0x0007
26262306a36Sopenharmony_ci#define PRID_REV_LOONGSON3A_R2_0	0x0008
26362306a36Sopenharmony_ci#define PRID_REV_LOONGSON3A_R3_0	0x0009
26462306a36Sopenharmony_ci#define PRID_REV_LOONGSON3A_R2_1	0x000c
26562306a36Sopenharmony_ci#define PRID_REV_LOONGSON3A_R3_1	0x000d
26662306a36Sopenharmony_ci
26762306a36Sopenharmony_ci/*
26862306a36Sopenharmony_ci * Older processors used to encode processor version and revision in two
26962306a36Sopenharmony_ci * 4-bit bitfields, the 4K seems to simply count up and even newer MTI cores
27062306a36Sopenharmony_ci * have switched to use the 8-bits as 3:3:2 bitfield with the last field as
27162306a36Sopenharmony_ci * the patch number.  *ARGH*
27262306a36Sopenharmony_ci */
27362306a36Sopenharmony_ci#define PRID_REV_ENCODE_44(ver, rev)					\
27462306a36Sopenharmony_ci	((ver) << 4 | (rev))
27562306a36Sopenharmony_ci#define PRID_REV_ENCODE_332(ver, rev, patch)				\
27662306a36Sopenharmony_ci	((ver) << 5 | (rev) << 2 | (patch))
27762306a36Sopenharmony_ci
27862306a36Sopenharmony_ci/*
27962306a36Sopenharmony_ci * FPU implementation/revision register (CP1 control register 0).
28062306a36Sopenharmony_ci *
28162306a36Sopenharmony_ci * +---------------------------------+----------------+----------------+
28262306a36Sopenharmony_ci * | 0				     | Implementation | Revision       |
28362306a36Sopenharmony_ci * +---------------------------------+----------------+----------------+
28462306a36Sopenharmony_ci *  31				   16 15	     8 7	      0
28562306a36Sopenharmony_ci */
28662306a36Sopenharmony_ci
28762306a36Sopenharmony_ci#define FPIR_IMP_MASK		0xff00
28862306a36Sopenharmony_ci
28962306a36Sopenharmony_ci#define FPIR_IMP_NONE		0x0000
29062306a36Sopenharmony_ci
29162306a36Sopenharmony_ci#if !defined(__ASSEMBLY__)
29262306a36Sopenharmony_ci
29362306a36Sopenharmony_cienum cpu_type_enum {
29462306a36Sopenharmony_ci	CPU_UNKNOWN,
29562306a36Sopenharmony_ci
29662306a36Sopenharmony_ci	/*
29762306a36Sopenharmony_ci	 * R2000 class processors
29862306a36Sopenharmony_ci	 */
29962306a36Sopenharmony_ci	CPU_R2000, CPU_R3000, CPU_R3000A, CPU_R3041, CPU_R3051, CPU_R3052,
30062306a36Sopenharmony_ci	CPU_R3081, CPU_R3081E,
30162306a36Sopenharmony_ci
30262306a36Sopenharmony_ci	/*
30362306a36Sopenharmony_ci	 * R4000 class processors
30462306a36Sopenharmony_ci	 */
30562306a36Sopenharmony_ci	CPU_R4000PC, CPU_R4000SC, CPU_R4000MC, CPU_R4200, CPU_R4300, CPU_R4310,
30662306a36Sopenharmony_ci	CPU_R4400PC, CPU_R4400SC, CPU_R4400MC, CPU_R4600, CPU_R4640, CPU_R4650,
30762306a36Sopenharmony_ci	CPU_R4700, CPU_R5000, CPU_R5500, CPU_NEVADA, CPU_R10000,
30862306a36Sopenharmony_ci	CPU_R12000, CPU_R14000, CPU_R16000, CPU_RM7000,
30962306a36Sopenharmony_ci	CPU_SR71000, CPU_TX49XX,
31062306a36Sopenharmony_ci
31162306a36Sopenharmony_ci	/*
31262306a36Sopenharmony_ci	 * MIPS32 class processors
31362306a36Sopenharmony_ci	 */
31462306a36Sopenharmony_ci	CPU_4KC, CPU_4KEC, CPU_4KSC, CPU_24K, CPU_34K, CPU_1004K, CPU_74K,
31562306a36Sopenharmony_ci	CPU_ALCHEMY, CPU_PR4450, CPU_BMIPS32, CPU_BMIPS3300, CPU_BMIPS4350,
31662306a36Sopenharmony_ci	CPU_BMIPS4380, CPU_BMIPS5000, CPU_XBURST, CPU_LOONGSON32, CPU_M14KC,
31762306a36Sopenharmony_ci	CPU_M14KEC, CPU_INTERAPTIV, CPU_P5600, CPU_PROAPTIV, CPU_1074K,
31862306a36Sopenharmony_ci	CPU_M5150, CPU_I6400, CPU_P6600, CPU_M6250,
31962306a36Sopenharmony_ci
32062306a36Sopenharmony_ci	/*
32162306a36Sopenharmony_ci	 * MIPS64 class processors
32262306a36Sopenharmony_ci	 */
32362306a36Sopenharmony_ci	CPU_5KC, CPU_5KE, CPU_20KC, CPU_25KF, CPU_SB1, CPU_SB1A, CPU_LOONGSON2EF,
32462306a36Sopenharmony_ci	CPU_LOONGSON64, CPU_CAVIUM_OCTEON, CPU_CAVIUM_OCTEON_PLUS,
32562306a36Sopenharmony_ci	CPU_CAVIUM_OCTEON2, CPU_CAVIUM_OCTEON3, CPU_I6500,
32662306a36Sopenharmony_ci
32762306a36Sopenharmony_ci	CPU_QEMU_GENERIC,
32862306a36Sopenharmony_ci
32962306a36Sopenharmony_ci	CPU_LAST
33062306a36Sopenharmony_ci};
33162306a36Sopenharmony_ci
33262306a36Sopenharmony_ci#endif /* !__ASSEMBLY */
33362306a36Sopenharmony_ci
33462306a36Sopenharmony_ci/*
33562306a36Sopenharmony_ci * ISA Level encodings
33662306a36Sopenharmony_ci *
33762306a36Sopenharmony_ci */
33862306a36Sopenharmony_ci#define MIPS_CPU_ISA_II		0x00000001
33962306a36Sopenharmony_ci#define MIPS_CPU_ISA_III	0x00000002
34062306a36Sopenharmony_ci#define MIPS_CPU_ISA_IV		0x00000004
34162306a36Sopenharmony_ci#define MIPS_CPU_ISA_V		0x00000008
34262306a36Sopenharmony_ci#define MIPS_CPU_ISA_M32R1	0x00000010
34362306a36Sopenharmony_ci#define MIPS_CPU_ISA_M32R2	0x00000020
34462306a36Sopenharmony_ci#define MIPS_CPU_ISA_M64R1	0x00000040
34562306a36Sopenharmony_ci#define MIPS_CPU_ISA_M64R2	0x00000080
34662306a36Sopenharmony_ci#define MIPS_CPU_ISA_M32R5	0x00000100
34762306a36Sopenharmony_ci#define MIPS_CPU_ISA_M64R5	0x00000200
34862306a36Sopenharmony_ci#define MIPS_CPU_ISA_M32R6	0x00000400
34962306a36Sopenharmony_ci#define MIPS_CPU_ISA_M64R6	0x00000800
35062306a36Sopenharmony_ci
35162306a36Sopenharmony_ci#define MIPS_CPU_ISA_32BIT (MIPS_CPU_ISA_II | MIPS_CPU_ISA_M32R1 | \
35262306a36Sopenharmony_ci	MIPS_CPU_ISA_M32R2 | MIPS_CPU_ISA_M32R5 | MIPS_CPU_ISA_M32R6)
35362306a36Sopenharmony_ci#define MIPS_CPU_ISA_64BIT (MIPS_CPU_ISA_III | MIPS_CPU_ISA_IV | \
35462306a36Sopenharmony_ci	MIPS_CPU_ISA_V | MIPS_CPU_ISA_M64R1 | MIPS_CPU_ISA_M64R2 | \
35562306a36Sopenharmony_ci	MIPS_CPU_ISA_M64R5 | MIPS_CPU_ISA_M64R6)
35662306a36Sopenharmony_ci
35762306a36Sopenharmony_ci/*
35862306a36Sopenharmony_ci * CPU Option encodings
35962306a36Sopenharmony_ci */
36062306a36Sopenharmony_ci#define MIPS_CPU_TLB		BIT_ULL( 0)	/* CPU has TLB */
36162306a36Sopenharmony_ci#define MIPS_CPU_4KEX		BIT_ULL( 1)	/* "R4K" exception model */
36262306a36Sopenharmony_ci#define MIPS_CPU_3K_CACHE	BIT_ULL( 2)	/* R3000-style caches */
36362306a36Sopenharmony_ci#define MIPS_CPU_4K_CACHE	BIT_ULL( 3)	/* R4000-style caches */
36462306a36Sopenharmony_ci#define MIPS_CPU_FPU		BIT_ULL( 5)	/* CPU has FPU */
36562306a36Sopenharmony_ci#define MIPS_CPU_32FPR		BIT_ULL( 6)	/* 32 dbl. prec. FP registers */
36662306a36Sopenharmony_ci#define MIPS_CPU_COUNTER	BIT_ULL( 7)	/* Cycle count/compare */
36762306a36Sopenharmony_ci#define MIPS_CPU_WATCH		BIT_ULL( 8)	/* watchpoint registers */
36862306a36Sopenharmony_ci#define MIPS_CPU_DIVEC		BIT_ULL( 9)	/* dedicated interrupt vector */
36962306a36Sopenharmony_ci#define MIPS_CPU_VCE		BIT_ULL(10)	/* virt. coherence conflict possible */
37062306a36Sopenharmony_ci#define MIPS_CPU_CACHE_CDEX_P	BIT_ULL(11)	/* Create_Dirty_Exclusive CACHE op */
37162306a36Sopenharmony_ci#define MIPS_CPU_CACHE_CDEX_S	BIT_ULL(12)	/* ... same for seconary cache ... */
37262306a36Sopenharmony_ci#define MIPS_CPU_MCHECK		BIT_ULL(13)	/* Machine check exception */
37362306a36Sopenharmony_ci#define MIPS_CPU_EJTAG		BIT_ULL(14)	/* EJTAG exception */
37462306a36Sopenharmony_ci#define MIPS_CPU_NOFPUEX	BIT_ULL(15)	/* no FPU exception */
37562306a36Sopenharmony_ci#define MIPS_CPU_LLSC		BIT_ULL(16)	/* CPU has ll/sc instructions */
37662306a36Sopenharmony_ci#define MIPS_CPU_INCLUSIVE_CACHES BIT_ULL(17)	/* P-cache subset enforced */
37762306a36Sopenharmony_ci#define MIPS_CPU_PREFETCH	BIT_ULL(18)	/* CPU has usable prefetch */
37862306a36Sopenharmony_ci#define MIPS_CPU_VINT		BIT_ULL(19)	/* CPU supports MIPSR2 vectored interrupts */
37962306a36Sopenharmony_ci#define MIPS_CPU_VEIC		BIT_ULL(20)	/* CPU supports MIPSR2 external interrupt controller mode */
38062306a36Sopenharmony_ci#define MIPS_CPU_ULRI		BIT_ULL(21)	/* CPU has ULRI feature */
38162306a36Sopenharmony_ci#define MIPS_CPU_PCI		BIT_ULL(22)	/* CPU has Perf Ctr Int indicator */
38262306a36Sopenharmony_ci#define MIPS_CPU_RIXI		BIT_ULL(23)	/* CPU has TLB Read/eXec Inhibit */
38362306a36Sopenharmony_ci#define MIPS_CPU_MICROMIPS	BIT_ULL(24)	/* CPU has microMIPS capability */
38462306a36Sopenharmony_ci#define MIPS_CPU_TLBINV		BIT_ULL(25)	/* CPU supports TLBINV/F */
38562306a36Sopenharmony_ci#define MIPS_CPU_SEGMENTS	BIT_ULL(26)	/* CPU supports Segmentation Control registers */
38662306a36Sopenharmony_ci#define MIPS_CPU_EVA		BIT_ULL(27)	/* CPU supports Enhanced Virtual Addressing */
38762306a36Sopenharmony_ci#define MIPS_CPU_HTW		BIT_ULL(28)	/* CPU support Hardware Page Table Walker */
38862306a36Sopenharmony_ci#define MIPS_CPU_RIXIEX		BIT_ULL(29)	/* CPU has unique exception codes for {Read, Execute}-Inhibit exceptions */
38962306a36Sopenharmony_ci#define MIPS_CPU_MAAR		BIT_ULL(30)	/* MAAR(I) registers are present */
39062306a36Sopenharmony_ci#define MIPS_CPU_FRE		BIT_ULL(31)	/* FRE & UFE bits implemented */
39162306a36Sopenharmony_ci#define MIPS_CPU_RW_LLB		BIT_ULL(32)	/* LLADDR/LLB writes are allowed */
39262306a36Sopenharmony_ci#define MIPS_CPU_LPA		BIT_ULL(33)	/* CPU supports Large Physical Addressing */
39362306a36Sopenharmony_ci#define MIPS_CPU_CDMM		BIT_ULL(34)	/* CPU has Common Device Memory Map */
39462306a36Sopenharmony_ci#define MIPS_CPU_SP		BIT_ULL(36)	/* Small (1KB) page support */
39562306a36Sopenharmony_ci#define MIPS_CPU_FTLB		BIT_ULL(37)	/* CPU has Fixed-page-size TLB */
39662306a36Sopenharmony_ci#define MIPS_CPU_NAN_LEGACY	BIT_ULL(38)	/* Legacy NaN implemented */
39762306a36Sopenharmony_ci#define MIPS_CPU_NAN_2008	BIT_ULL(39)	/* 2008 NaN implemented */
39862306a36Sopenharmony_ci#define MIPS_CPU_VP		BIT_ULL(40)	/* MIPSr6 Virtual Processors (multi-threading) */
39962306a36Sopenharmony_ci#define MIPS_CPU_LDPTE		BIT_ULL(41)	/* CPU has ldpte/lddir instructions */
40062306a36Sopenharmony_ci#define MIPS_CPU_MVH		BIT_ULL(42)	/* CPU supports MFHC0/MTHC0 */
40162306a36Sopenharmony_ci#define MIPS_CPU_EBASE_WG	BIT_ULL(43)	/* CPU has EBase.WG */
40262306a36Sopenharmony_ci#define MIPS_CPU_BADINSTR	BIT_ULL(44)	/* CPU has BadInstr register */
40362306a36Sopenharmony_ci#define MIPS_CPU_BADINSTRP	BIT_ULL(45)	/* CPU has BadInstrP register */
40462306a36Sopenharmony_ci#define MIPS_CPU_CTXTC		BIT_ULL(46)	/* CPU has [X]ConfigContext registers */
40562306a36Sopenharmony_ci#define MIPS_CPU_PERF		BIT_ULL(47)	/* CPU has MIPS performance counters */
40662306a36Sopenharmony_ci#define MIPS_CPU_GUESTCTL0EXT	BIT_ULL(48)	/* CPU has VZ GuestCtl0Ext register */
40762306a36Sopenharmony_ci#define MIPS_CPU_GUESTCTL1	BIT_ULL(49)	/* CPU has VZ GuestCtl1 register */
40862306a36Sopenharmony_ci#define MIPS_CPU_GUESTCTL2	BIT_ULL(50)	/* CPU has VZ GuestCtl2 register */
40962306a36Sopenharmony_ci#define MIPS_CPU_GUESTID	BIT_ULL(51)	/* CPU uses VZ ASE GuestID feature */
41062306a36Sopenharmony_ci#define MIPS_CPU_DRG		BIT_ULL(52)	/* CPU has VZ Direct Root to Guest (DRG) */
41162306a36Sopenharmony_ci#define MIPS_CPU_UFR		BIT_ULL(53)	/* CPU supports User mode FR switching */
41262306a36Sopenharmony_ci#define MIPS_CPU_SHARED_FTLB_RAM \
41362306a36Sopenharmony_ci				BIT_ULL(54)	/* CPU shares FTLB RAM with another */
41462306a36Sopenharmony_ci#define MIPS_CPU_SHARED_FTLB_ENTRIES \
41562306a36Sopenharmony_ci				BIT_ULL(55)	/* CPU shares FTLB entries with another */
41662306a36Sopenharmony_ci#define MIPS_CPU_MT_PER_TC_PERF_COUNTERS \
41762306a36Sopenharmony_ci				BIT_ULL(56)	/* CPU has perf counters implemented per TC (MIPSMT ASE) */
41862306a36Sopenharmony_ci#define MIPS_CPU_MMID		BIT_ULL(57)	/* CPU supports MemoryMapIDs */
41962306a36Sopenharmony_ci#define MIPS_CPU_MM_SYSAD	BIT_ULL(58)	/* CPU supports write-through SysAD Valid merge */
42062306a36Sopenharmony_ci#define MIPS_CPU_MM_FULL	BIT_ULL(59)	/* CPU supports write-through full merge */
42162306a36Sopenharmony_ci#define MIPS_CPU_MAC_2008_ONLY	BIT_ULL(60)	/* CPU Only support MAC2008 Fused multiply-add instruction */
42262306a36Sopenharmony_ci#define MIPS_CPU_FTLBPAREX	BIT_ULL(61)	/* CPU has FTLB parity exception */
42362306a36Sopenharmony_ci#define MIPS_CPU_GSEXCEX	BIT_ULL(62)	/* CPU has GSExc exception */
42462306a36Sopenharmony_ci
42562306a36Sopenharmony_ci/*
42662306a36Sopenharmony_ci * CPU ASE encodings
42762306a36Sopenharmony_ci */
42862306a36Sopenharmony_ci#define MIPS_ASE_MIPS16		0x00000001 /* code compression */
42962306a36Sopenharmony_ci#define MIPS_ASE_MDMX		0x00000002 /* MIPS digital media extension */
43062306a36Sopenharmony_ci#define MIPS_ASE_MIPS3D		0x00000004 /* MIPS-3D */
43162306a36Sopenharmony_ci#define MIPS_ASE_SMARTMIPS	0x00000008 /* SmartMIPS */
43262306a36Sopenharmony_ci#define MIPS_ASE_DSP		0x00000010 /* Signal Processing ASE */
43362306a36Sopenharmony_ci#define MIPS_ASE_MIPSMT		0x00000020 /* CPU supports MIPS MT */
43462306a36Sopenharmony_ci#define MIPS_ASE_DSP2P		0x00000040 /* Signal Processing ASE Rev 2 */
43562306a36Sopenharmony_ci#define MIPS_ASE_VZ		0x00000080 /* Virtualization ASE */
43662306a36Sopenharmony_ci#define MIPS_ASE_MSA		0x00000100 /* MIPS SIMD Architecture */
43762306a36Sopenharmony_ci#define MIPS_ASE_DSP3		0x00000200 /* Signal Processing ASE Rev 3*/
43862306a36Sopenharmony_ci#define MIPS_ASE_MIPS16E2	0x00000400 /* MIPS16e2 */
43962306a36Sopenharmony_ci#define MIPS_ASE_LOONGSON_MMI	0x00000800 /* Loongson MultiMedia extensions Instructions */
44062306a36Sopenharmony_ci#define MIPS_ASE_LOONGSON_CAM	0x00001000 /* Loongson CAM */
44162306a36Sopenharmony_ci#define MIPS_ASE_LOONGSON_EXT	0x00002000 /* Loongson EXTensions */
44262306a36Sopenharmony_ci#define MIPS_ASE_LOONGSON_EXT2	0x00004000 /* Loongson EXTensions R2 */
44362306a36Sopenharmony_ci
44462306a36Sopenharmony_ci#endif /* _ASM_CPU_H */
445