blob: 7cf238f34b2ead4d6d0429431a0678b82ed1cdd4 [file] [log] [blame]
ths33d68b52007-03-18 00:30:29 +00001/*
2 * MIPS emulation for qemu: CPU initialisation routines.
3 *
4 * Copyright (c) 2004-2005 Jocelyn Mayer
5 * Copyright (c) 2007 Herve Poussineau
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000018 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
ths33d68b52007-03-18 00:30:29 +000019 */
20
ths3953d782007-03-21 11:04:42 +000021/* CPU / CPU family specific config register values. */
22
ths6d355242007-12-25 03:13:56 +000023/* Have config1, uncached coherency */
ths3953d782007-03-21 11:04:42 +000024#define MIPS_CONFIG0 \
ths6d355242007-12-25 03:13:56 +000025 ((1 << CP0C0_M) | (0x2 << CP0C0_K0))
ths3953d782007-03-21 11:04:42 +000026
thsae5d8052007-07-29 22:11:46 +000027/* Have config2, no coprocessor2 attached, no MDMX support attached,
ths3953d782007-03-21 11:04:42 +000028 no performance counters, watch registers present,
29 no code compression, EJTAG present, no FPU */
30#define MIPS_CONFIG1 \
thsfcb4a412007-04-17 15:26:47 +000031((1 << CP0C1_M) | \
ths3953d782007-03-21 11:04:42 +000032 (0 << CP0C1_C2) | (0 << CP0C1_MD) | (0 << CP0C1_PC) | \
33 (1 << CP0C1_WR) | (0 << CP0C1_CA) | (1 << CP0C1_EP) | \
34 (0 << CP0C1_FP))
35
36/* Have config3, no tertiary/secondary caches implemented */
37#define MIPS_CONFIG2 \
38((1 << CP0C2_M))
39
ths6d355242007-12-25 03:13:56 +000040/* No config4, no DSP ASE, no large physaddr (PABITS),
Stefan Weilff2712b2011-04-28 17:20:35 +020041 no external interrupt controller, no vectored interrupts,
thsead93602007-09-06 00:18:15 +000042 no 1kb pages, no SmartMIPS ASE, no trace logic */
ths3953d782007-03-21 11:04:42 +000043#define MIPS_CONFIG3 \
44((0 << CP0C3_M) | (0 << CP0C3_DSPP) | (0 << CP0C3_LPA) | \
45 (0 << CP0C3_VEIC) | (0 << CP0C3_VInt) | (0 << CP0C3_SP) | \
thsead93602007-09-06 00:18:15 +000046 (0 << CP0C3_SM) | (0 << CP0C3_TL))
ths3953d782007-03-21 11:04:42 +000047
ths6d355242007-12-25 03:13:56 +000048/* MMU types, the first four entries have the same layout as the
49 CP0C0_MT field. */
50enum mips_mmu_types {
51 MMU_TYPE_NONE,
52 MMU_TYPE_R4000,
53 MMU_TYPE_RESERVED,
54 MMU_TYPE_FMT,
55 MMU_TYPE_R3000,
56 MMU_TYPE_R6000,
57 MMU_TYPE_R8000
58};
59
Anthony Liguoric227f092009-10-01 16:12:16 -050060struct mips_def_t {
ths50366fe2008-07-20 19:13:19 +000061 const char *name;
ths33d68b52007-03-18 00:30:29 +000062 int32_t CP0_PRid;
63 int32_t CP0_Config0;
64 int32_t CP0_Config1;
ths3953d782007-03-21 11:04:42 +000065 int32_t CP0_Config2;
66 int32_t CP0_Config3;
ths34ee2ed2007-03-24 23:36:18 +000067 int32_t CP0_Config6;
68 int32_t CP0_Config7;
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +010069 target_ulong CP0_LLAddr_rw_bitmask;
70 int CP0_LLAddr_shift;
ths2f644542007-04-11 20:34:23 +000071 int32_t SYNCI_Step;
72 int32_t CCRes;
thsead93602007-09-06 00:18:15 +000073 int32_t CP0_Status_rw_bitmask;
74 int32_t CP0_TCStatus_rw_bitmask;
75 int32_t CP0_SRSCtl;
ths3953d782007-03-21 11:04:42 +000076 int32_t CP1_fcr0;
thse034e2c2007-06-23 18:04:12 +000077 int32_t SEGBITS;
ths6d355242007-12-25 03:13:56 +000078 int32_t PABITS;
thsead93602007-09-06 00:18:15 +000079 int32_t CP0_SRSConf0_rw_bitmask;
80 int32_t CP0_SRSConf0;
81 int32_t CP0_SRSConf1_rw_bitmask;
82 int32_t CP0_SRSConf1;
83 int32_t CP0_SRSConf2_rw_bitmask;
84 int32_t CP0_SRSConf2;
85 int32_t CP0_SRSConf3_rw_bitmask;
86 int32_t CP0_SRSConf3;
87 int32_t CP0_SRSConf4_rw_bitmask;
88 int32_t CP0_SRSConf4;
thse189e742007-09-24 12:48:00 +000089 int insn_flags;
ths6d355242007-12-25 03:13:56 +000090 enum mips_mmu_types mmu_type;
ths33d68b52007-03-18 00:30:29 +000091};
92
93/*****************************************************************************/
94/* MIPS CPU definitions */
Anthony Liguoric227f092009-10-01 16:12:16 -050095static const mips_def_t mips_defs[] =
ths33d68b52007-03-18 00:30:29 +000096{
ths33d68b52007-03-18 00:30:29 +000097 {
98 .name = "4Kc",
99 .CP0_PRid = 0x00018000,
ths6d355242007-12-25 03:13:56 +0000100 .CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_R4000 << CP0C0_MT),
thsae5d8052007-07-29 22:11:46 +0000101 .CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000102 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800103 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
Stefan Weilab3aee22009-12-15 14:03:03 +0100104 (0 << CP0C1_CA),
ths3953d782007-03-21 11:04:42 +0000105 .CP0_Config2 = MIPS_CONFIG2,
106 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100107 .CP0_LLAddr_rw_bitmask = 0,
108 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000109 .SYNCI_Step = 32,
110 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000111 .CP0_Status_rw_bitmask = 0x1278FF17,
ths6d355242007-12-25 03:13:56 +0000112 .SEGBITS = 32,
113 .PABITS = 32,
Stefan Weil73642f52009-12-15 14:43:40 +0100114 .insn_flags = CPU_MIPS32,
ths6d355242007-12-25 03:13:56 +0000115 .mmu_type = MMU_TYPE_R4000,
ths33d68b52007-03-18 00:30:29 +0000116 },
117 {
ths8d162c22007-11-19 16:10:33 +0000118 .name = "4Km",
119 .CP0_PRid = 0x00018300,
120 /* Config1 implemented, fixed mapping MMU,
121 no virtual icache, uncached coherency. */
ths6d355242007-12-25 03:13:56 +0000122 .CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_FMT << CP0C0_MT),
ths8d162c22007-11-19 16:10:33 +0000123 .CP0_Config1 = MIPS_CONFIG1 |
aurel3269585492009-01-14 19:40:36 +0000124 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800125 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
126 (1 << CP0C1_CA),
ths8d162c22007-11-19 16:10:33 +0000127 .CP0_Config2 = MIPS_CONFIG2,
128 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100129 .CP0_LLAddr_rw_bitmask = 0,
130 .CP0_LLAddr_shift = 4,
ths8d162c22007-11-19 16:10:33 +0000131 .SYNCI_Step = 32,
132 .CCRes = 2,
133 .CP0_Status_rw_bitmask = 0x1258FF17,
ths6d355242007-12-25 03:13:56 +0000134 .SEGBITS = 32,
135 .PABITS = 32,
ths8d162c22007-11-19 16:10:33 +0000136 .insn_flags = CPU_MIPS32 | ASE_MIPS16,
ths6d355242007-12-25 03:13:56 +0000137 .mmu_type = MMU_TYPE_FMT,
ths8d162c22007-11-19 16:10:33 +0000138 },
139 {
ths34ee2ed2007-03-24 23:36:18 +0000140 .name = "4KEcR1",
ths33d68b52007-03-18 00:30:29 +0000141 .CP0_PRid = 0x00018400,
ths6d355242007-12-25 03:13:56 +0000142 .CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_R4000 << CP0C0_MT),
thsae5d8052007-07-29 22:11:46 +0000143 .CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000144 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800145 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
Stefan Weilab3aee22009-12-15 14:03:03 +0100146 (0 << CP0C1_CA),
ths34ee2ed2007-03-24 23:36:18 +0000147 .CP0_Config2 = MIPS_CONFIG2,
148 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100149 .CP0_LLAddr_rw_bitmask = 0,
150 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000151 .SYNCI_Step = 32,
152 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000153 .CP0_Status_rw_bitmask = 0x1278FF17,
ths6d355242007-12-25 03:13:56 +0000154 .SEGBITS = 32,
155 .PABITS = 32,
Stefan Weil73642f52009-12-15 14:43:40 +0100156 .insn_flags = CPU_MIPS32,
ths6d355242007-12-25 03:13:56 +0000157 .mmu_type = MMU_TYPE_R4000,
ths34ee2ed2007-03-24 23:36:18 +0000158 },
159 {
ths8d162c22007-11-19 16:10:33 +0000160 .name = "4KEmR1",
161 .CP0_PRid = 0x00018500,
ths6d355242007-12-25 03:13:56 +0000162 .CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_FMT << CP0C0_MT),
ths8d162c22007-11-19 16:10:33 +0000163 .CP0_Config1 = MIPS_CONFIG1 |
aurel3269585492009-01-14 19:40:36 +0000164 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800165 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
166 (1 << CP0C1_CA),
ths8d162c22007-11-19 16:10:33 +0000167 .CP0_Config2 = MIPS_CONFIG2,
168 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100169 .CP0_LLAddr_rw_bitmask = 0,
170 .CP0_LLAddr_shift = 4,
ths8d162c22007-11-19 16:10:33 +0000171 .SYNCI_Step = 32,
172 .CCRes = 2,
173 .CP0_Status_rw_bitmask = 0x1258FF17,
ths6d355242007-12-25 03:13:56 +0000174 .SEGBITS = 32,
175 .PABITS = 32,
ths8d162c22007-11-19 16:10:33 +0000176 .insn_flags = CPU_MIPS32 | ASE_MIPS16,
ths6d355242007-12-25 03:13:56 +0000177 .mmu_type = MMU_TYPE_FMT,
ths8d162c22007-11-19 16:10:33 +0000178 },
179 {
ths34ee2ed2007-03-24 23:36:18 +0000180 .name = "4KEc",
181 .CP0_PRid = 0x00019000,
ths6d355242007-12-25 03:13:56 +0000182 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
183 (MMU_TYPE_R4000 << CP0C0_MT),
thsae5d8052007-07-29 22:11:46 +0000184 .CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000185 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800186 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
Stefan Weilab3aee22009-12-15 14:03:03 +0100187 (0 << CP0C1_CA),
ths34ee2ed2007-03-24 23:36:18 +0000188 .CP0_Config2 = MIPS_CONFIG2,
thsead93602007-09-06 00:18:15 +0000189 .CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100190 .CP0_LLAddr_rw_bitmask = 0,
191 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000192 .SYNCI_Step = 32,
193 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000194 .CP0_Status_rw_bitmask = 0x1278FF17,
ths6d355242007-12-25 03:13:56 +0000195 .SEGBITS = 32,
196 .PABITS = 32,
Stefan Weil73642f52009-12-15 14:43:40 +0100197 .insn_flags = CPU_MIPS32R2,
ths6d355242007-12-25 03:13:56 +0000198 .mmu_type = MMU_TYPE_R4000,
ths34ee2ed2007-03-24 23:36:18 +0000199 },
200 {
ths3e4587d2007-11-14 03:11:17 +0000201 .name = "4KEm",
202 .CP0_PRid = 0x00019100,
ths6d355242007-12-25 03:13:56 +0000203 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
aurel3269585492009-01-14 19:40:36 +0000204 (MMU_TYPE_FMT << CP0C0_MT),
ths3e4587d2007-11-14 03:11:17 +0000205 .CP0_Config1 = MIPS_CONFIG1 |
aurel3269585492009-01-14 19:40:36 +0000206 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800207 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
208 (1 << CP0C1_CA),
ths3e4587d2007-11-14 03:11:17 +0000209 .CP0_Config2 = MIPS_CONFIG2,
210 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100211 .CP0_LLAddr_rw_bitmask = 0,
212 .CP0_LLAddr_shift = 4,
ths3e4587d2007-11-14 03:11:17 +0000213 .SYNCI_Step = 32,
214 .CCRes = 2,
215 .CP0_Status_rw_bitmask = 0x1258FF17,
ths6d355242007-12-25 03:13:56 +0000216 .SEGBITS = 32,
217 .PABITS = 32,
ths3e4587d2007-11-14 03:11:17 +0000218 .insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
ths6d355242007-12-25 03:13:56 +0000219 .mmu_type = MMU_TYPE_FMT,
ths3e4587d2007-11-14 03:11:17 +0000220 },
221 {
ths34ee2ed2007-03-24 23:36:18 +0000222 .name = "24Kc",
223 .CP0_PRid = 0x00019300,
ths6d355242007-12-25 03:13:56 +0000224 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
aurel3269585492009-01-14 19:40:36 +0000225 (MMU_TYPE_R4000 << CP0C0_MT),
thsae5d8052007-07-29 22:11:46 +0000226 .CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000227 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800228 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
229 (1 << CP0C1_CA),
ths3953d782007-03-21 11:04:42 +0000230 .CP0_Config2 = MIPS_CONFIG2,
thsead93602007-09-06 00:18:15 +0000231 .CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100232 .CP0_LLAddr_rw_bitmask = 0,
233 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000234 .SYNCI_Step = 32,
235 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000236 /* No DSP implemented. */
ths671880e2007-09-29 19:21:36 +0000237 .CP0_Status_rw_bitmask = 0x1278FF1F,
ths6d355242007-12-25 03:13:56 +0000238 .SEGBITS = 32,
239 .PABITS = 32,
ths3e4587d2007-11-14 03:11:17 +0000240 .insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
ths6d355242007-12-25 03:13:56 +0000241 .mmu_type = MMU_TYPE_R4000,
ths33d68b52007-03-18 00:30:29 +0000242 },
243 {
244 .name = "24Kf",
245 .CP0_PRid = 0x00019300,
ths6d355242007-12-25 03:13:56 +0000246 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
247 (MMU_TYPE_R4000 << CP0C0_MT),
thsae5d8052007-07-29 22:11:46 +0000248 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000249 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800250 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
251 (1 << CP0C1_CA),
ths3953d782007-03-21 11:04:42 +0000252 .CP0_Config2 = MIPS_CONFIG2,
thsead93602007-09-06 00:18:15 +0000253 .CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100254 .CP0_LLAddr_rw_bitmask = 0,
255 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000256 .SYNCI_Step = 32,
257 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000258 /* No DSP implemented. */
ths671880e2007-09-29 19:21:36 +0000259 .CP0_Status_rw_bitmask = 0x3678FF1F,
ths5a5012e2007-05-07 13:55:33 +0000260 .CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
261 (1 << FCR0_D) | (1 << FCR0_S) | (0x93 << FCR0_PRID),
ths6d355242007-12-25 03:13:56 +0000262 .SEGBITS = 32,
263 .PABITS = 32,
ths3e4587d2007-11-14 03:11:17 +0000264 .insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
ths6d355242007-12-25 03:13:56 +0000265 .mmu_type = MMU_TYPE_R4000,
ths33d68b52007-03-18 00:30:29 +0000266 },
thsead93602007-09-06 00:18:15 +0000267 {
268 .name = "34Kf",
269 .CP0_PRid = 0x00019500,
ths6d355242007-12-25 03:13:56 +0000270 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
aurel3269585492009-01-14 19:40:36 +0000271 (MMU_TYPE_R4000 << CP0C0_MT),
thsead93602007-09-06 00:18:15 +0000272 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000273 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
Nathan Froydd19954f2009-12-08 08:06:32 -0800274 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
275 (1 << CP0C1_CA),
thsead93602007-09-06 00:18:15 +0000276 .CP0_Config2 = MIPS_CONFIG2,
Edgar E. Iglesiasded40082011-08-29 23:07:37 +0200277 .CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_VInt) | (1 << CP0C3_MT),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100278 .CP0_LLAddr_rw_bitmask = 0,
279 .CP0_LLAddr_shift = 0,
thsead93602007-09-06 00:18:15 +0000280 .SYNCI_Step = 32,
281 .CCRes = 2,
282 /* No DSP implemented. */
ths671880e2007-09-29 19:21:36 +0000283 .CP0_Status_rw_bitmask = 0x3678FF1F,
thsead93602007-09-06 00:18:15 +0000284 /* No DSP implemented. */
285 .CP0_TCStatus_rw_bitmask = (0 << CP0TCSt_TCU3) | (0 << CP0TCSt_TCU2) |
286 (1 << CP0TCSt_TCU1) | (1 << CP0TCSt_TCU0) |
287 (0 << CP0TCSt_TMX) | (1 << CP0TCSt_DT) |
288 (1 << CP0TCSt_DA) | (1 << CP0TCSt_A) |
289 (0x3 << CP0TCSt_TKSU) | (1 << CP0TCSt_IXMT) |
290 (0xff << CP0TCSt_TASID),
291 .CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
292 (1 << FCR0_D) | (1 << FCR0_S) | (0x95 << FCR0_PRID),
293 .CP0_SRSCtl = (0xf << CP0SRSCtl_HSS),
294 .CP0_SRSConf0_rw_bitmask = 0x3fffffff,
295 .CP0_SRSConf0 = (1 << CP0SRSC0_M) | (0x3fe << CP0SRSC0_SRS3) |
296 (0x3fe << CP0SRSC0_SRS2) | (0x3fe << CP0SRSC0_SRS1),
297 .CP0_SRSConf1_rw_bitmask = 0x3fffffff,
298 .CP0_SRSConf1 = (1 << CP0SRSC1_M) | (0x3fe << CP0SRSC1_SRS6) |
299 (0x3fe << CP0SRSC1_SRS5) | (0x3fe << CP0SRSC1_SRS4),
300 .CP0_SRSConf2_rw_bitmask = 0x3fffffff,
301 .CP0_SRSConf2 = (1 << CP0SRSC2_M) | (0x3fe << CP0SRSC2_SRS9) |
302 (0x3fe << CP0SRSC2_SRS8) | (0x3fe << CP0SRSC2_SRS7),
303 .CP0_SRSConf3_rw_bitmask = 0x3fffffff,
304 .CP0_SRSConf3 = (1 << CP0SRSC3_M) | (0x3fe << CP0SRSC3_SRS12) |
305 (0x3fe << CP0SRSC3_SRS11) | (0x3fe << CP0SRSC3_SRS10),
306 .CP0_SRSConf4_rw_bitmask = 0x3fffffff,
307 .CP0_SRSConf4 = (0x3fe << CP0SRSC4_SRS15) |
308 (0x3fe << CP0SRSC4_SRS14) | (0x3fe << CP0SRSC4_SRS13),
ths6d355242007-12-25 03:13:56 +0000309 .SEGBITS = 32,
310 .PABITS = 32,
ths7385ac02007-10-23 17:04:27 +0000311 .insn_flags = CPU_MIPS32R2 | ASE_MIPS16 | ASE_DSP | ASE_MT,
ths6d355242007-12-25 03:13:56 +0000312 .mmu_type = MMU_TYPE_R4000,
thsead93602007-09-06 00:18:15 +0000313 },
Jia Liuaf13ae02012-10-24 22:17:12 +0800314 {
315 .name = "74Kf",
316 .CP0_PRid = 0x00019700,
317 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
318 (MMU_TYPE_R4000 << CP0C0_MT),
319 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
320 (0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
321 (0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
322 (1 << CP0C1_CA),
323 .CP0_Config2 = MIPS_CONFIG2,
324 .CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt) | (1 << CP0C3_DSPP),
325 .CP0_LLAddr_rw_bitmask = 0,
326 .CP0_LLAddr_shift = 4,
327 .SYNCI_Step = 32,
328 .CCRes = 2,
329 .CP0_Status_rw_bitmask = 0x3778FF1F,
330 .CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
331 (1 << FCR0_D) | (1 << FCR0_S) | (0x93 << FCR0_PRID),
332 .SEGBITS = 32,
333 .PABITS = 32,
334 .insn_flags = CPU_MIPS32R2 | ASE_MIPS16 | ASE_DSP | ASE_DSPR2,
335 .mmu_type = MMU_TYPE_R4000,
336 },
thsd26bc212007-11-08 18:05:37 +0000337#if defined(TARGET_MIPS64)
ths33d68b52007-03-18 00:30:29 +0000338 {
339 .name = "R4000",
340 .CP0_PRid = 0x00000400,
ths6d355242007-12-25 03:13:56 +0000341 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
342 .CP0_Config0 = (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0),
aurel3269585492009-01-14 19:40:36 +0000343 /* Note: Config1 is only used internally, the R4000 has only Config0. */
ths6d355242007-12-25 03:13:56 +0000344 .CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100345 .CP0_LLAddr_rw_bitmask = 0xFFFFFFFF,
346 .CP0_LLAddr_shift = 4,
ths2f644542007-04-11 20:34:23 +0000347 .SYNCI_Step = 16,
348 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000349 .CP0_Status_rw_bitmask = 0x3678FFFF,
aurel3269585492009-01-14 19:40:36 +0000350 /* The R4000 has a full 64bit FPU but doesn't use the fcr0 bits. */
thsc9c1a062007-06-01 14:58:56 +0000351 .CP1_fcr0 = (0x5 << FCR0_PRID) | (0x0 << FCR0_REV),
thse034e2c2007-06-23 18:04:12 +0000352 .SEGBITS = 40,
ths6d355242007-12-25 03:13:56 +0000353 .PABITS = 36,
thse189e742007-09-24 12:48:00 +0000354 .insn_flags = CPU_MIPS3,
ths6d355242007-12-25 03:13:56 +0000355 .mmu_type = MMU_TYPE_R4000,
thsc9c1a062007-06-01 14:58:56 +0000356 },
357 {
thse9c71dd2007-12-25 20:46:56 +0000358 .name = "VR5432",
359 .CP0_PRid = 0x00005400,
360 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
361 .CP0_Config0 = (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0),
362 .CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100363 .CP0_LLAddr_rw_bitmask = 0xFFFFFFFFL,
364 .CP0_LLAddr_shift = 4,
thse9c71dd2007-12-25 20:46:56 +0000365 .SYNCI_Step = 16,
366 .CCRes = 2,
367 .CP0_Status_rw_bitmask = 0x3678FFFF,
368 /* The VR5432 has a full 64bit FPU but doesn't use the fcr0 bits. */
369 .CP1_fcr0 = (0x54 << FCR0_PRID) | (0x0 << FCR0_REV),
370 .SEGBITS = 40,
371 .PABITS = 32,
372 .insn_flags = CPU_VR54XX,
373 .mmu_type = MMU_TYPE_R4000,
374 },
375 {
thsc9c1a062007-06-01 14:58:56 +0000376 .name = "5Kc",
377 .CP0_PRid = 0x00018100,
ths29fe0e32007-12-25 17:32:46 +0000378 .CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
aurel3269585492009-01-14 19:40:36 +0000379 (MMU_TYPE_R4000 << CP0C0_MT),
thsc9c1a062007-06-01 14:58:56 +0000380 .CP0_Config1 = MIPS_CONFIG1 | (31 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000381 (1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
382 (1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
383 (1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
thsc9c1a062007-06-01 14:58:56 +0000384 .CP0_Config2 = MIPS_CONFIG2,
385 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100386 .CP0_LLAddr_rw_bitmask = 0,
387 .CP0_LLAddr_shift = 4,
thsc9c1a062007-06-01 14:58:56 +0000388 .SYNCI_Step = 32,
389 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000390 .CP0_Status_rw_bitmask = 0x32F8FFFF,
thse034e2c2007-06-23 18:04:12 +0000391 .SEGBITS = 42,
ths6d355242007-12-25 03:13:56 +0000392 .PABITS = 36,
thse189e742007-09-24 12:48:00 +0000393 .insn_flags = CPU_MIPS64,
ths6d355242007-12-25 03:13:56 +0000394 .mmu_type = MMU_TYPE_R4000,
thsc9c1a062007-06-01 14:58:56 +0000395 },
396 {
397 .name = "5Kf",
398 .CP0_PRid = 0x00018100,
ths29fe0e32007-12-25 17:32:46 +0000399 .CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
aurel3269585492009-01-14 19:40:36 +0000400 (MMU_TYPE_R4000 << CP0C0_MT),
thsc9c1a062007-06-01 14:58:56 +0000401 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (31 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000402 (1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
403 (1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
404 (1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
thsc9c1a062007-06-01 14:58:56 +0000405 .CP0_Config2 = MIPS_CONFIG2,
406 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100407 .CP0_LLAddr_rw_bitmask = 0,
408 .CP0_LLAddr_shift = 4,
thsc9c1a062007-06-01 14:58:56 +0000409 .SYNCI_Step = 32,
410 .CCRes = 2,
thsead93602007-09-06 00:18:15 +0000411 .CP0_Status_rw_bitmask = 0x36F8FFFF,
aurel3269585492009-01-14 19:40:36 +0000412 /* The 5Kf has F64 / L / W but doesn't use the fcr0 bits. */
thsc9c1a062007-06-01 14:58:56 +0000413 .CP1_fcr0 = (1 << FCR0_D) | (1 << FCR0_S) |
414 (0x81 << FCR0_PRID) | (0x0 << FCR0_REV),
thse034e2c2007-06-23 18:04:12 +0000415 .SEGBITS = 42,
ths6d355242007-12-25 03:13:56 +0000416 .PABITS = 36,
thse189e742007-09-24 12:48:00 +0000417 .insn_flags = CPU_MIPS64,
ths6d355242007-12-25 03:13:56 +0000418 .mmu_type = MMU_TYPE_R4000,
thsc9c1a062007-06-01 14:58:56 +0000419 },
420 {
421 .name = "20Kc",
aurel3269585492009-01-14 19:40:36 +0000422 /* We emulate a later version of the 20Kc, earlier ones had a broken
thsbd04c6f2007-06-12 12:43:47 +0000423 WAIT instruction. */
424 .CP0_PRid = 0x000182a0,
ths29fe0e32007-12-25 17:32:46 +0000425 .CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
ths6d355242007-12-25 03:13:56 +0000426 (MMU_TYPE_R4000 << CP0C0_MT) | (1 << CP0C0_VI),
thsc9c1a062007-06-01 14:58:56 +0000427 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (47 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000428 (2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
429 (2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
430 (1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
thsc9c1a062007-06-01 14:58:56 +0000431 .CP0_Config2 = MIPS_CONFIG2,
432 .CP0_Config3 = MIPS_CONFIG3,
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100433 .CP0_LLAddr_rw_bitmask = 0,
434 .CP0_LLAddr_shift = 0,
thsc9c1a062007-06-01 14:58:56 +0000435 .SYNCI_Step = 32,
thsa1daafd2007-12-24 14:33:57 +0000436 .CCRes = 1,
thsead93602007-09-06 00:18:15 +0000437 .CP0_Status_rw_bitmask = 0x36FBFFFF,
aurel3269585492009-01-14 19:40:36 +0000438 /* The 20Kc has F64 / L / W but doesn't use the fcr0 bits. */
thsc9c1a062007-06-01 14:58:56 +0000439 .CP1_fcr0 = (1 << FCR0_3D) | (1 << FCR0_PS) |
ths5a5012e2007-05-07 13:55:33 +0000440 (1 << FCR0_D) | (1 << FCR0_S) |
thsc9c1a062007-06-01 14:58:56 +0000441 (0x82 << FCR0_PRID) | (0x0 << FCR0_REV),
thse034e2c2007-06-23 18:04:12 +0000442 .SEGBITS = 40,
ths6d355242007-12-25 03:13:56 +0000443 .PABITS = 36,
thse189e742007-09-24 12:48:00 +0000444 .insn_flags = CPU_MIPS64 | ASE_MIPS3D,
ths6d355242007-12-25 03:13:56 +0000445 .mmu_type = MMU_TYPE_R4000,
ths33d68b52007-03-18 00:30:29 +0000446 },
thsd2123ea2007-10-29 09:38:43 +0000447 {
aurel3269585492009-01-14 19:40:36 +0000448 /* A generic CPU providing MIPS64 Release 2 features.
thsd2123ea2007-10-29 09:38:43 +0000449 FIXME: Eventually this should be replaced by a real CPU model. */
450 .name = "MIPS64R2-generic",
ths8c893952007-11-18 03:19:58 +0000451 .CP0_PRid = 0x00010000,
ths6d355242007-12-25 03:13:56 +0000452 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
aurel3269585492009-01-14 19:40:36 +0000453 (MMU_TYPE_R4000 << CP0C0_MT),
thsd2123ea2007-10-29 09:38:43 +0000454 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (63 << CP0C1_MMU) |
aurel3269585492009-01-14 19:40:36 +0000455 (2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
456 (2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
457 (1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
thsd2123ea2007-10-29 09:38:43 +0000458 .CP0_Config2 = MIPS_CONFIG2,
ths6d355242007-12-25 03:13:56 +0000459 .CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_LPA),
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100460 .CP0_LLAddr_rw_bitmask = 0,
461 .CP0_LLAddr_shift = 0,
thsd2123ea2007-10-29 09:38:43 +0000462 .SYNCI_Step = 32,
463 .CCRes = 2,
464 .CP0_Status_rw_bitmask = 0x36FBFFFF,
thsea4b07f2007-12-28 12:35:05 +0000465 .CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_3D) | (1 << FCR0_PS) |
466 (1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
467 (1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
ths6d355242007-12-25 03:13:56 +0000468 .SEGBITS = 42,
469 /* The architectural limit is 59, but we have hardcoded 36 bit
470 in some places...
471 .PABITS = 59, */ /* the architectural limit */
472 .PABITS = 36,
thsd2123ea2007-10-29 09:38:43 +0000473 .insn_flags = CPU_MIPS64R2 | ASE_MIPS3D,
ths6d355242007-12-25 03:13:56 +0000474 .mmu_type = MMU_TYPE_R4000,
thsd2123ea2007-10-29 09:38:43 +0000475 },
Huacai Chen5bc6fba2010-06-29 10:50:27 +0800476 {
477 .name = "Loongson-2E",
478 .CP0_PRid = 0x6302,
479 /*64KB I-cache and d-cache. 4 way with 32 bit cache line size*/
480 .CP0_Config0 = (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) | (0x1<<5) |
481 (0x1<<4) | (0x1<<1),
482 /* Note: Config1 is only used internally, Loongson-2E has only Config0. */
483 .CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
484 .SYNCI_Step = 16,
485 .CCRes = 2,
486 .CP0_Status_rw_bitmask = 0x35D0FFFF,
487 .CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV),
488 .SEGBITS = 40,
489 .PABITS = 40,
490 .insn_flags = CPU_LOONGSON2E,
491 .mmu_type = MMU_TYPE_R4000,
492 },
493 {
494 .name = "Loongson-2F",
495 .CP0_PRid = 0x6303,
496 /*64KB I-cache and d-cache. 4 way with 32 bit cache line size*/
497 .CP0_Config0 = (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) | (0x1<<5) |
498 (0x1<<4) | (0x1<<1),
499 /* Note: Config1 is only used internally, Loongson-2F has only Config0. */
500 .CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
501 .SYNCI_Step = 16,
502 .CCRes = 2,
Stefan Weilebabb672011-04-26 10:29:36 +0200503 .CP0_Status_rw_bitmask = 0xF5D0FF1F, /*bit5:7 not writable*/
Huacai Chen5bc6fba2010-06-29 10:50:27 +0800504 .CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV),
505 .SEGBITS = 40,
506 .PABITS = 40,
507 .insn_flags = CPU_LOONGSON2F,
508 .mmu_type = MMU_TYPE_R4000,
509 },
Jia Liuaf13ae02012-10-24 22:17:12 +0800510 {
511 /* A generic CPU providing MIPS64 ASE DSP 2 features.
512 FIXME: Eventually this should be replaced by a real CPU model. */
513 .name = "mips64dspr2",
514 .CP0_PRid = 0x00010000,
515 .CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
516 (MMU_TYPE_R4000 << CP0C0_MT),
517 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (63 << CP0C1_MMU) |
518 (2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
519 (2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
520 (1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
521 .CP0_Config2 = MIPS_CONFIG2,
522 .CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_LPA),
523 .CP0_LLAddr_rw_bitmask = 0,
524 .CP0_LLAddr_shift = 0,
525 .SYNCI_Step = 32,
526 .CCRes = 2,
527 .CP0_Status_rw_bitmask = 0x37FBFFFF,
528 .CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_3D) | (1 << FCR0_PS) |
529 (1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
530 (1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
531 .SEGBITS = 42,
532 /* The architectural limit is 59, but we have hardcoded 36 bit
533 in some places...
534 .PABITS = 59, */ /* the architectural limit */
535 .PABITS = 36,
536 .insn_flags = CPU_MIPS64R2 | ASE_DSP | ASE_DSPR2,
537 .mmu_type = MMU_TYPE_R4000,
538 },
Huacai Chen5bc6fba2010-06-29 10:50:27 +0800539
ths33d68b52007-03-18 00:30:29 +0000540#endif
541};
542
Anthony Liguoric227f092009-10-01 16:12:16 -0500543static const mips_def_t *cpu_mips_find_by_name (const char *name)
ths33d68b52007-03-18 00:30:29 +0000544{
bellardaaed9092007-11-10 15:15:54 +0000545 int i;
ths33d68b52007-03-18 00:30:29 +0000546
malcb1503cd2008-12-22 20:33:55 +0000547 for (i = 0; i < ARRAY_SIZE(mips_defs); i++) {
ths33d68b52007-03-18 00:30:29 +0000548 if (strcasecmp(name, mips_defs[i].name) == 0) {
bellardaaed9092007-11-10 15:15:54 +0000549 return &mips_defs[i];
ths33d68b52007-03-18 00:30:29 +0000550 }
551 }
bellardaaed9092007-11-10 15:15:54 +0000552 return NULL;
ths33d68b52007-03-18 00:30:29 +0000553}
554
Stefan Weil9a78eea2010-10-22 23:03:33 +0200555void mips_cpu_list (FILE *f, fprintf_function cpu_fprintf)
ths33d68b52007-03-18 00:30:29 +0000556{
557 int i;
558
malcb1503cd2008-12-22 20:33:55 +0000559 for (i = 0; i < ARRAY_SIZE(mips_defs); i++) {
ths33d68b52007-03-18 00:30:29 +0000560 (*cpu_fprintf)(f, "MIPS '%s'\n",
561 mips_defs[i].name);
562 }
563}
564
thsf8a6ec52008-09-02 17:39:45 +0000565#ifndef CONFIG_USER_ONLY
Anthony Liguoric227f092009-10-01 16:12:16 -0500566static void no_mmu_init (CPUMIPSState *env, const mips_def_t *def)
ths29929e32007-05-13 13:49:44 +0000567{
thsead93602007-09-06 00:18:15 +0000568 env->tlb->nb_tlb = 1;
569 env->tlb->map_address = &no_mmu_map_address;
ths29929e32007-05-13 13:49:44 +0000570}
571
Anthony Liguoric227f092009-10-01 16:12:16 -0500572static void fixed_mmu_init (CPUMIPSState *env, const mips_def_t *def)
ths29929e32007-05-13 13:49:44 +0000573{
thsead93602007-09-06 00:18:15 +0000574 env->tlb->nb_tlb = 1;
575 env->tlb->map_address = &fixed_mmu_map_address;
ths29929e32007-05-13 13:49:44 +0000576}
577
Anthony Liguoric227f092009-10-01 16:12:16 -0500578static void r4k_mmu_init (CPUMIPSState *env, const mips_def_t *def)
ths29929e32007-05-13 13:49:44 +0000579{
thsead93602007-09-06 00:18:15 +0000580 env->tlb->nb_tlb = 1 + ((def->CP0_Config1 >> CP0C1_MMU) & 63);
581 env->tlb->map_address = &r4k_map_address;
aurel32c01fccd2009-03-08 00:06:01 +0000582 env->tlb->helper_tlbwi = r4k_helper_tlbwi;
583 env->tlb->helper_tlbwr = r4k_helper_tlbwr;
584 env->tlb->helper_tlbp = r4k_helper_tlbp;
585 env->tlb->helper_tlbr = r4k_helper_tlbr;
thsead93602007-09-06 00:18:15 +0000586}
587
Anthony Liguoric227f092009-10-01 16:12:16 -0500588static void mmu_init (CPUMIPSState *env, const mips_def_t *def)
thsead93602007-09-06 00:18:15 +0000589{
Anthony Liguori7267c092011-08-20 22:09:37 -0500590 env->tlb = g_malloc0(sizeof(CPUMIPSTLBContext));
thsead93602007-09-06 00:18:15 +0000591
ths6d355242007-12-25 03:13:56 +0000592 switch (def->mmu_type) {
593 case MMU_TYPE_NONE:
thsead93602007-09-06 00:18:15 +0000594 no_mmu_init(env, def);
595 break;
ths6d355242007-12-25 03:13:56 +0000596 case MMU_TYPE_R4000:
thsead93602007-09-06 00:18:15 +0000597 r4k_mmu_init(env, def);
598 break;
ths6d355242007-12-25 03:13:56 +0000599 case MMU_TYPE_FMT:
thsead93602007-09-06 00:18:15 +0000600 fixed_mmu_init(env, def);
601 break;
ths6d355242007-12-25 03:13:56 +0000602 case MMU_TYPE_R3000:
603 case MMU_TYPE_R6000:
604 case MMU_TYPE_R8000:
thsead93602007-09-06 00:18:15 +0000605 default:
606 cpu_abort(env, "MMU type not supported\n");
607 }
ths29929e32007-05-13 13:49:44 +0000608}
thsf8a6ec52008-09-02 17:39:45 +0000609#endif /* CONFIG_USER_ONLY */
ths29929e32007-05-13 13:49:44 +0000610
Anthony Liguoric227f092009-10-01 16:12:16 -0500611static void fpu_init (CPUMIPSState *env, const mips_def_t *def)
thsead93602007-09-06 00:18:15 +0000612{
thsf01be152008-09-18 11:57:27 +0000613 int i;
thsead93602007-09-06 00:18:15 +0000614
thsf01be152008-09-18 11:57:27 +0000615 for (i = 0; i < MIPS_FPU_MAX; i++)
616 env->fpus[i].fcr0 = def->CP1_fcr0;
617
618 memcpy(&env->active_fpu, &env->fpus[0], sizeof(env->active_fpu));
thsead93602007-09-06 00:18:15 +0000619}
620
Anthony Liguoric227f092009-10-01 16:12:16 -0500621static void mvp_init (CPUMIPSState *env, const mips_def_t *def)
thsead93602007-09-06 00:18:15 +0000622{
Anthony Liguori7267c092011-08-20 22:09:37 -0500623 env->mvp = g_malloc0(sizeof(CPUMIPSMVPContext));
thsead93602007-09-06 00:18:15 +0000624
625 /* MVPConf1 implemented, TLB sharable, no gating storage support,
626 programmable cache partitioning implemented, number of allocatable
627 and sharable TLB entries, MVP has allocatable TCs, 2 VPEs
628 implemented, 5 TCs implemented. */
629 env->mvp->CP0_MVPConf0 = (1 << CP0MVPC0_M) | (1 << CP0MVPC0_TLBS) |
630 (0 << CP0MVPC0_GS) | (1 << CP0MVPC0_PCP) |
thsead93602007-09-06 00:18:15 +0000631// TODO: actually do 2 VPEs.
632// (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
633// (0x04 << CP0MVPC0_PTC);
634 (1 << CP0MVPC0_TCA) | (0x0 << CP0MVPC0_PVPE) |
Edgar E. Iglesias1dab0052011-08-29 23:07:38 +0200635 (0x00 << CP0MVPC0_PTC);
aurel32932e71c2009-01-12 21:33:13 +0000636#if !defined(CONFIG_USER_ONLY)
ths0eaef5a2008-07-23 16:14:22 +0000637 /* Usermode has no TLB support */
aurel32932e71c2009-01-12 21:33:13 +0000638 env->mvp->CP0_MVPConf0 |= (env->tlb->nb_tlb << CP0MVPC0_PTLBE);
639#endif
ths0eaef5a2008-07-23 16:14:22 +0000640
thsead93602007-09-06 00:18:15 +0000641 /* Allocatable CP1 have media extensions, allocatable CP1 have FP support,
642 no UDI implemented, no CP2 implemented, 1 CP1 implemented. */
643 env->mvp->CP0_MVPConf1 = (1 << CP0MVPC1_CIM) | (1 << CP0MVPC1_CIF) |
644 (0x0 << CP0MVPC1_PCX) | (0x0 << CP0MVPC1_PCP2) |
645 (0x1 << CP0MVPC1_PCP1);
646}