2 * MIPS emulation for qemu: CPU initialisation routines.
4 * Copyright (c) 2004-2005 Jocelyn Mayer
5 * Copyright (c) 2007 Herve Poussineau
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.
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 /* CPU / CPU family specific config register values. */
23 /* Have config1, uncached coherency */
24 #define MIPS_CONFIG0 \
25 ((1U << CP0C0_M) | (0x2 << CP0C0_K0))
27 /* Have config2, no coprocessor2 attached, no MDMX support attached,
28 no performance counters, watch registers present,
29 no code compression, EJTAG present, no FPU */
30 #define MIPS_CONFIG1 \
32 (0 << CP0C1_C2) | (0 << CP0C1_MD) | (0 << CP0C1_PC) | \
33 (1 << CP0C1_WR) | (0 << CP0C1_CA) | (1 << CP0C1_EP) | \
36 /* Have config3, no tertiary/secondary caches implemented */
37 #define MIPS_CONFIG2 \
40 /* No config4, no DSP ASE, no large physaddr (PABITS),
41 no external interrupt controller, no vectored interrupts,
42 no 1kb pages, no SmartMIPS ASE, no trace logic */
43 #define MIPS_CONFIG3 \
44 ((0 << CP0C3_M) | (0 << CP0C3_DSPP) | (0 << CP0C3_LPA) | \
45 (0 << CP0C3_VEIC) | (0 << CP0C3_VInt) | (0 << CP0C3_SP) | \
46 (0 << CP0C3_SM) | (0 << CP0C3_TL))
48 #define MIPS_CONFIG4 \
51 #define MIPS_CONFIG5 \
54 /* MMU types, the first four entries have the same layout as the
74 int32_t CP0_Config4_rw_bitmask
;
76 int32_t CP0_Config5_rw_bitmask
;
79 target_ulong CP0_LLAddr_rw_bitmask
;
83 int32_t CP0_Status_rw_bitmask
;
84 int32_t CP0_TCStatus_rw_bitmask
;
87 int32_t CP1_fcr31_rw_bitmask
;
92 int32_t CP0_SRSConf0_rw_bitmask
;
94 int32_t CP0_SRSConf1_rw_bitmask
;
96 int32_t CP0_SRSConf2_rw_bitmask
;
98 int32_t CP0_SRSConf3_rw_bitmask
;
100 int32_t CP0_SRSConf4_rw_bitmask
;
101 int32_t CP0_SRSConf4
;
102 int32_t CP0_PageGrain_rw_bitmask
;
103 int32_t CP0_PageGrain
;
105 enum mips_mmu_types mmu_type
;
108 /*****************************************************************************/
109 /* MIPS CPU definitions */
110 static const mips_def_t mips_defs
[] =
114 .CP0_PRid
= 0x00018000,
115 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
116 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
117 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
118 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
120 .CP0_Config2
= MIPS_CONFIG2
,
121 .CP0_Config3
= MIPS_CONFIG3
,
122 .CP0_LLAddr_rw_bitmask
= 0,
123 .CP0_LLAddr_shift
= 4,
126 .CP0_Status_rw_bitmask
= 0x1278FF17,
129 .insn_flags
= CPU_MIPS32
,
130 .mmu_type
= MMU_TYPE_R4000
,
134 .CP0_PRid
= 0x00018300,
135 /* Config1 implemented, fixed mapping MMU,
136 no virtual icache, uncached coherency. */
137 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
138 .CP0_Config1
= MIPS_CONFIG1
|
139 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
140 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
142 .CP0_Config2
= MIPS_CONFIG2
,
143 .CP0_Config3
= MIPS_CONFIG3
,
144 .CP0_LLAddr_rw_bitmask
= 0,
145 .CP0_LLAddr_shift
= 4,
148 .CP0_Status_rw_bitmask
= 0x1258FF17,
151 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
152 .mmu_type
= MMU_TYPE_FMT
,
156 .CP0_PRid
= 0x00018400,
157 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
158 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
159 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
160 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
162 .CP0_Config2
= MIPS_CONFIG2
,
163 .CP0_Config3
= MIPS_CONFIG3
,
164 .CP0_LLAddr_rw_bitmask
= 0,
165 .CP0_LLAddr_shift
= 4,
168 .CP0_Status_rw_bitmask
= 0x1278FF17,
171 .insn_flags
= CPU_MIPS32
,
172 .mmu_type
= MMU_TYPE_R4000
,
176 .CP0_PRid
= 0x00018500,
177 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
178 .CP0_Config1
= MIPS_CONFIG1
|
179 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
180 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
182 .CP0_Config2
= MIPS_CONFIG2
,
183 .CP0_Config3
= MIPS_CONFIG3
,
184 .CP0_LLAddr_rw_bitmask
= 0,
185 .CP0_LLAddr_shift
= 4,
188 .CP0_Status_rw_bitmask
= 0x1258FF17,
191 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
192 .mmu_type
= MMU_TYPE_FMT
,
196 .CP0_PRid
= 0x00019000,
197 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
198 (MMU_TYPE_R4000
<< CP0C0_MT
),
199 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
200 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
201 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
203 .CP0_Config2
= MIPS_CONFIG2
,
204 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
205 .CP0_LLAddr_rw_bitmask
= 0,
206 .CP0_LLAddr_shift
= 4,
209 .CP0_Status_rw_bitmask
= 0x1278FF17,
212 .insn_flags
= CPU_MIPS32R2
,
213 .mmu_type
= MMU_TYPE_R4000
,
217 .CP0_PRid
= 0x00019100,
218 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
219 (MMU_TYPE_FMT
<< CP0C0_MT
),
220 .CP0_Config1
= MIPS_CONFIG1
|
221 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
222 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
224 .CP0_Config2
= MIPS_CONFIG2
,
225 .CP0_Config3
= MIPS_CONFIG3
,
226 .CP0_LLAddr_rw_bitmask
= 0,
227 .CP0_LLAddr_shift
= 4,
230 .CP0_Status_rw_bitmask
= 0x1258FF17,
233 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
234 .mmu_type
= MMU_TYPE_FMT
,
238 .CP0_PRid
= 0x00019300,
239 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
240 (MMU_TYPE_R4000
<< CP0C0_MT
),
241 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
242 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
243 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
245 .CP0_Config2
= MIPS_CONFIG2
,
246 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
247 .CP0_LLAddr_rw_bitmask
= 0,
248 .CP0_LLAddr_shift
= 4,
251 /* No DSP implemented. */
252 .CP0_Status_rw_bitmask
= 0x1278FF1F,
255 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
256 .mmu_type
= MMU_TYPE_R4000
,
260 .CP0_PRid
= 0x00019300,
261 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
262 (MMU_TYPE_R4000
<< CP0C0_MT
),
263 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
264 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
265 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
267 .CP0_Config2
= MIPS_CONFIG2
,
268 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
269 .CP0_LLAddr_rw_bitmask
= 0,
270 .CP0_LLAddr_shift
= 4,
273 /* No DSP implemented. */
274 .CP0_Status_rw_bitmask
= 0x3678FF1F,
275 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
276 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x93 << FCR0_PRID
),
278 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
281 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
282 .mmu_type
= MMU_TYPE_R4000
,
286 .CP0_PRid
= 0x00019500,
287 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
288 (MMU_TYPE_R4000
<< CP0C0_MT
),
289 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
290 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
291 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
293 .CP0_Config2
= MIPS_CONFIG2
,
294 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_VInt
) | (1 << CP0C3_MT
) |
296 .CP0_LLAddr_rw_bitmask
= 0,
297 .CP0_LLAddr_shift
= 0,
300 .CP0_Status_rw_bitmask
= 0x3778FF1F,
301 .CP0_TCStatus_rw_bitmask
= (0 << CP0TCSt_TCU3
) | (0 << CP0TCSt_TCU2
) |
302 (1 << CP0TCSt_TCU1
) | (1 << CP0TCSt_TCU0
) |
303 (0 << CP0TCSt_TMX
) | (1 << CP0TCSt_DT
) |
304 (1 << CP0TCSt_DA
) | (1 << CP0TCSt_A
) |
305 (0x3 << CP0TCSt_TKSU
) | (1 << CP0TCSt_IXMT
) |
306 (0xff << CP0TCSt_TASID
),
307 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
308 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x95 << FCR0_PRID
),
310 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
311 .CP0_SRSCtl
= (0xf << CP0SRSCtl_HSS
),
312 .CP0_SRSConf0_rw_bitmask
= 0x3fffffff,
313 .CP0_SRSConf0
= (1U << CP0SRSC0_M
) | (0x3fe << CP0SRSC0_SRS3
) |
314 (0x3fe << CP0SRSC0_SRS2
) | (0x3fe << CP0SRSC0_SRS1
),
315 .CP0_SRSConf1_rw_bitmask
= 0x3fffffff,
316 .CP0_SRSConf1
= (1U << CP0SRSC1_M
) | (0x3fe << CP0SRSC1_SRS6
) |
317 (0x3fe << CP0SRSC1_SRS5
) | (0x3fe << CP0SRSC1_SRS4
),
318 .CP0_SRSConf2_rw_bitmask
= 0x3fffffff,
319 .CP0_SRSConf2
= (1U << CP0SRSC2_M
) | (0x3fe << CP0SRSC2_SRS9
) |
320 (0x3fe << CP0SRSC2_SRS8
) | (0x3fe << CP0SRSC2_SRS7
),
321 .CP0_SRSConf3_rw_bitmask
= 0x3fffffff,
322 .CP0_SRSConf3
= (1U << CP0SRSC3_M
) | (0x3fe << CP0SRSC3_SRS12
) |
323 (0x3fe << CP0SRSC3_SRS11
) | (0x3fe << CP0SRSC3_SRS10
),
324 .CP0_SRSConf4_rw_bitmask
= 0x3fffffff,
325 .CP0_SRSConf4
= (0x3fe << CP0SRSC4_SRS15
) |
326 (0x3fe << CP0SRSC4_SRS14
) | (0x3fe << CP0SRSC4_SRS13
),
329 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
| ASE_DSP
| ASE_MT
,
330 .mmu_type
= MMU_TYPE_R4000
,
334 .CP0_PRid
= 0x00019700,
335 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
336 (MMU_TYPE_R4000
<< CP0C0_MT
),
337 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
338 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
339 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
341 .CP0_Config2
= MIPS_CONFIG2
,
342 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_DSP2P
) | (1 << CP0C3_DSPP
) |
344 .CP0_LLAddr_rw_bitmask
= 0,
345 .CP0_LLAddr_shift
= 4,
348 .CP0_Status_rw_bitmask
= 0x3778FF1F,
349 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
350 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x93 << FCR0_PRID
),
352 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
355 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
| ASE_DSP
| ASE_DSPR2
,
356 .mmu_type
= MMU_TYPE_R4000
,
360 .CP0_PRid
= 0x00019b00,
361 /* Config1 implemented, fixed mapping MMU,
362 no virtual icache, uncached coherency. */
363 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_KU
) | (0x2 << CP0C0_K23
) |
364 (0x1 << CP0C0_AR
) | (MMU_TYPE_FMT
<< CP0C0_MT
),
365 .CP0_Config1
= MIPS_CONFIG1
,
366 .CP0_Config2
= MIPS_CONFIG2
,
367 .CP0_Config3
= MIPS_CONFIG3
| (0x2 << CP0C3_ISA
) | (1 << CP0C3_VInt
),
368 .CP0_LLAddr_rw_bitmask
= 0,
369 .CP0_LLAddr_shift
= 4,
372 .CP0_Status_rw_bitmask
= 0x1258FF17,
375 .insn_flags
= CPU_MIPS32R2
| ASE_MICROMIPS
,
376 .mmu_type
= MMU_TYPE_FMT
,
380 /* This is the TLB-based MMU core. */
381 .CP0_PRid
= 0x00019c00,
382 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
383 (MMU_TYPE_R4000
<< CP0C0_MT
),
384 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
385 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
386 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
),
387 .CP0_Config2
= MIPS_CONFIG2
,
388 .CP0_Config3
= MIPS_CONFIG3
| (0x2 << CP0C3_ISA
) | (0 << CP0C3_VInt
),
389 .CP0_LLAddr_rw_bitmask
= 0,
390 .CP0_LLAddr_shift
= 4,
393 .CP0_Status_rw_bitmask
= 0x1278FF17,
396 .insn_flags
= CPU_MIPS32R2
| ASE_MICROMIPS
,
397 .mmu_type
= MMU_TYPE_R4000
,
401 * Config3: CMGCR, SC, PW, VZ, CTXTC, CDMM, TL
407 .CP0_PRid
= 0x0001A800,
408 .CP0_Config0
= MIPS_CONFIG0
| (1 << CP0C0_MM
) | (1 << CP0C0_AR
) |
409 (MMU_TYPE_R4000
<< CP0C0_MT
),
410 .CP0_Config1
= MIPS_CONFIG1
| (0x3F << CP0C1_MMU
) |
411 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
412 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
413 (1 << CP0C1_PC
) | (1 << CP0C1_FP
),
414 .CP0_Config2
= MIPS_CONFIG2
,
415 .CP0_Config3
= MIPS_CONFIG3
| (1U << CP0C3_M
) | (1 << CP0C3_MSAP
) |
416 (1 << CP0C3_BP
) | (1 << CP0C3_BI
) | (1 << CP0C3_ULRI
) |
417 (1 << CP0C3_RXI
) | (1 << CP0C3_LPA
) | (1 << CP0C3_VInt
),
418 .CP0_Config4
= MIPS_CONFIG4
| (1U << CP0C4_M
) | (2 << CP0C4_IE
) |
419 (0x1c << CP0C4_KScrExist
),
420 .CP0_Config4_rw_bitmask
= 0,
421 .CP0_Config5
= MIPS_CONFIG5
| (1 << CP0C5_MVH
) | (1 << CP0C5_LLB
) |
423 .CP0_Config5_rw_bitmask
= (1 << CP0C5_K
) | (1 << CP0C5_CV
) |
424 (1 << CP0C5_MSAEn
) | (1 << CP0C5_UFE
) |
425 (1 << CP0C5_FRE
) | (1 << CP0C5_UFR
),
426 .CP0_LLAddr_rw_bitmask
= 0,
427 .CP0_LLAddr_shift
= 0,
430 .CP0_Status_rw_bitmask
= 0x3C68FF1F,
431 .CP0_PageGrain_rw_bitmask
= (1U << CP0PG_RIE
) | (1 << CP0PG_XIE
) |
432 (1 << CP0PG_ELPA
) | (1 << CP0PG_IEC
),
433 .CP1_fcr0
= (1 << FCR0_FREP
) | (1 << FCR0_UFRP
) | (1 << FCR0_HAS2008
) |
434 (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
435 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x03 << FCR0_PRID
),
436 .CP1_fcr31
= (1 << FCR31_ABS2008
) | (1 << FCR31_NAN2008
),
437 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
440 .insn_flags
= CPU_MIPS32R5
| ASE_MSA
,
441 .mmu_type
= MMU_TYPE_R4000
,
444 /* A generic CPU supporting MIPS32 Release 6 ISA.
445 FIXME: Support IEEE 754-2008 FP.
446 Eventually this should be replaced by a real CPU model. */
447 .name
= "mips32r6-generic",
448 .CP0_PRid
= 0x00010000,
449 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AR
) |
450 (MMU_TYPE_R4000
<< CP0C0_MT
),
451 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (31 << CP0C1_MMU
) |
452 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
453 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
454 (0 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
455 .CP0_Config2
= MIPS_CONFIG2
,
456 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_BP
) | (1 << CP0C3_BI
) |
457 (2 << CP0C3_ISA
) | (1 << CP0C3_ULRI
) |
458 (1 << CP0C3_RXI
) | (1U << CP0C3_M
),
459 .CP0_Config4
= MIPS_CONFIG4
| (0xfc << CP0C4_KScrExist
) |
460 (3 << CP0C4_IE
) | (1U << CP0C4_M
),
461 .CP0_Config5
= MIPS_CONFIG5
| (1 << CP0C5_XNP
) | (1 << CP0C5_LLB
),
462 .CP0_Config5_rw_bitmask
= (1 << CP0C5_SBRI
) | (1 << CP0C5_FRE
) |
464 .CP0_LLAddr_rw_bitmask
= 0,
465 .CP0_LLAddr_shift
= 0,
468 .CP0_Status_rw_bitmask
= 0x3058FF1F,
469 .CP0_PageGrain
= (1 << CP0PG_IEC
) | (1 << CP0PG_XIE
) |
471 .CP0_PageGrain_rw_bitmask
= 0,
472 .CP1_fcr0
= (1 << FCR0_FREP
) | (1 << FCR0_HAS2008
) | (1 << FCR0_F64
) |
473 (1 << FCR0_L
) | (1 << FCR0_W
) | (1 << FCR0_D
) |
474 (1 << FCR0_S
) | (0x00 << FCR0_PRID
) | (0x0 << FCR0_REV
),
475 .CP1_fcr31
= (1 << FCR31_ABS2008
) | (1 << FCR31_NAN2008
),
476 .CP1_fcr31_rw_bitmask
= 0x0103FFFF,
479 .insn_flags
= CPU_MIPS32R6
| ASE_MICROMIPS
,
480 .mmu_type
= MMU_TYPE_R4000
,
482 #if defined(TARGET_MIPS64)
485 .CP0_PRid
= 0x00000400,
486 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
487 .CP0_Config0
= (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0
),
488 /* Note: Config1 is only used internally, the R4000 has only Config0. */
489 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
490 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFF,
491 .CP0_LLAddr_shift
= 4,
494 .CP0_Status_rw_bitmask
= 0x3678FFFF,
495 /* The R4000 has a full 64bit FPU but doesn't use the fcr0 bits. */
496 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x0 << FCR0_REV
),
498 .CP1_fcr31_rw_bitmask
= 0x0183FFFF,
501 .insn_flags
= CPU_MIPS3
,
502 .mmu_type
= MMU_TYPE_R4000
,
506 .CP0_PRid
= 0x00005400,
507 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
508 .CP0_Config0
= (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0
),
509 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
510 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFFL
,
511 .CP0_LLAddr_shift
= 4,
514 .CP0_Status_rw_bitmask
= 0x3678FFFF,
515 /* The VR5432 has a full 64bit FPU but doesn't use the fcr0 bits. */
516 .CP1_fcr0
= (0x54 << FCR0_PRID
) | (0x0 << FCR0_REV
),
518 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
521 .insn_flags
= CPU_VR54XX
,
522 .mmu_type
= MMU_TYPE_R4000
,
526 .CP0_PRid
= 0x00018100,
527 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
528 (MMU_TYPE_R4000
<< CP0C0_MT
),
529 .CP0_Config1
= MIPS_CONFIG1
| (31 << CP0C1_MMU
) |
530 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
531 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
532 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
533 .CP0_Config2
= MIPS_CONFIG2
,
534 .CP0_Config3
= MIPS_CONFIG3
,
535 .CP0_LLAddr_rw_bitmask
= 0,
536 .CP0_LLAddr_shift
= 4,
539 .CP0_Status_rw_bitmask
= 0x12F8FFFF,
542 .insn_flags
= CPU_MIPS64
,
543 .mmu_type
= MMU_TYPE_R4000
,
547 .CP0_PRid
= 0x00018100,
548 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
549 (MMU_TYPE_R4000
<< CP0C0_MT
),
550 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (31 << CP0C1_MMU
) |
551 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
552 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
553 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
554 .CP0_Config2
= MIPS_CONFIG2
,
555 .CP0_Config3
= MIPS_CONFIG3
,
556 .CP0_LLAddr_rw_bitmask
= 0,
557 .CP0_LLAddr_shift
= 4,
560 .CP0_Status_rw_bitmask
= 0x36F8FFFF,
561 /* The 5Kf has F64 / L / W but doesn't use the fcr0 bits. */
562 .CP1_fcr0
= (1 << FCR0_D
) | (1 << FCR0_S
) |
563 (0x81 << FCR0_PRID
) | (0x0 << FCR0_REV
),
565 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
568 .insn_flags
= CPU_MIPS64
,
569 .mmu_type
= MMU_TYPE_R4000
,
573 /* We emulate a later version of the 20Kc, earlier ones had a broken
575 .CP0_PRid
= 0x000182a0,
576 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
577 (MMU_TYPE_R4000
<< CP0C0_MT
) | (1 << CP0C0_VI
),
578 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (47 << CP0C1_MMU
) |
579 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
580 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
581 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
582 .CP0_Config2
= MIPS_CONFIG2
,
583 .CP0_Config3
= MIPS_CONFIG3
,
584 .CP0_LLAddr_rw_bitmask
= 0,
585 .CP0_LLAddr_shift
= 0,
588 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
589 /* The 20Kc has F64 / L / W but doesn't use the fcr0 bits. */
590 .CP1_fcr0
= (1 << FCR0_3D
) | (1 << FCR0_PS
) |
591 (1 << FCR0_D
) | (1 << FCR0_S
) |
592 (0x82 << FCR0_PRID
) | (0x0 << FCR0_REV
),
594 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
597 .insn_flags
= CPU_MIPS64
| ASE_MIPS3D
,
598 .mmu_type
= MMU_TYPE_R4000
,
601 /* A generic CPU providing MIPS64 Release 2 features.
602 FIXME: Eventually this should be replaced by a real CPU model. */
603 .name
= "MIPS64R2-generic",
604 .CP0_PRid
= 0x00010000,
605 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
606 (MMU_TYPE_R4000
<< CP0C0_MT
),
607 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (63 << CP0C1_MMU
) |
608 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
609 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
610 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
611 .CP0_Config2
= MIPS_CONFIG2
,
612 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_LPA
),
613 .CP0_LLAddr_rw_bitmask
= 0,
614 .CP0_LLAddr_shift
= 0,
617 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
618 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_3D
) | (1 << FCR0_PS
) |
619 (1 << FCR0_L
) | (1 << FCR0_W
) | (1 << FCR0_D
) |
620 (1 << FCR0_S
) | (0x00 << FCR0_PRID
) | (0x0 << FCR0_REV
),
622 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
625 .insn_flags
= CPU_MIPS64R2
| ASE_MIPS3D
,
626 .mmu_type
= MMU_TYPE_R4000
,
630 .CP0_PRid
= 0x00018900,
631 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
632 (MMU_TYPE_R4000
<< CP0C0_MT
),
633 .CP0_Config1
= MIPS_CONFIG1
| (31 << CP0C1_MMU
) |
634 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
635 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
636 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
637 .CP0_Config2
= MIPS_CONFIG2
,
638 .CP0_Config3
= MIPS_CONFIG3
,
639 .CP0_LLAddr_rw_bitmask
= 0,
640 .CP0_LLAddr_shift
= 4,
643 .CP0_Status_rw_bitmask
= 0x12F8FFFF,
646 .insn_flags
= CPU_MIPS64R2
,
647 .mmu_type
= MMU_TYPE_R4000
,
651 .CP0_PRid
= 0x00018900,
652 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
653 (MMU_TYPE_R4000
<< CP0C0_MT
),
654 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (31 << CP0C1_MMU
) |
655 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
656 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
657 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
658 .CP0_Config2
= MIPS_CONFIG2
,
659 .CP0_Config3
= MIPS_CONFIG3
,
660 .CP0_LLAddr_rw_bitmask
= 0,
661 .CP0_LLAddr_shift
= 4,
664 .CP0_Status_rw_bitmask
= 0x36F8FFFF,
665 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
666 (1 << FCR0_D
) | (1 << FCR0_S
) |
667 (0x89 << FCR0_PRID
) | (0x0 << FCR0_REV
),
670 .insn_flags
= CPU_MIPS64R2
,
671 .mmu_type
= MMU_TYPE_R4000
,
674 /* A generic CPU supporting MIPS64 Release 6 ISA.
675 FIXME: Support IEEE 754-2008 FP.
676 Eventually this should be replaced by a real CPU model. */
677 .name
= "MIPS64R6-generic",
678 .CP0_PRid
= 0x00010000,
679 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
680 (MMU_TYPE_R4000
<< CP0C0_MT
),
681 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (63 << CP0C1_MMU
) |
682 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
683 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
684 (0 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
685 .CP0_Config2
= MIPS_CONFIG2
,
686 .CP0_Config3
= MIPS_CONFIG3
| (1U << CP0C3_M
) |
687 (1 << CP0C3_CMGCR
) | (1 << CP0C3_MSAP
) |
688 (1 << CP0C3_BP
) | (1 << CP0C3_BI
) | (1 << CP0C3_ULRI
) |
689 (1 << CP0C3_RXI
) | (1 << CP0C3_LPA
),
690 .CP0_Config4
= MIPS_CONFIG4
| (1U << CP0C4_M
) | (3 << CP0C4_IE
) |
691 (0xfc << CP0C4_KScrExist
),
692 .CP0_Config5
= MIPS_CONFIG5
| (1 << CP0C5_XNP
) | (1 << CP0C5_VP
) |
694 .CP0_Config5_rw_bitmask
= (1 << CP0C5_MSAEn
) | (1 << CP0C5_SBRI
) |
695 (1 << CP0C5_FRE
) | (1 << CP0C5_UFE
),
696 .CP0_LLAddr_rw_bitmask
= 0,
697 .CP0_LLAddr_shift
= 0,
700 .CP0_Status_rw_bitmask
= 0x30D8FFFF,
701 .CP0_PageGrain
= (1 << CP0PG_IEC
) | (1 << CP0PG_XIE
) |
703 .CP0_PageGrain_rw_bitmask
= (1 << CP0PG_ELPA
),
704 .CP1_fcr0
= (1 << FCR0_FREP
) | (1 << FCR0_HAS2008
) | (1 << FCR0_F64
) |
705 (1 << FCR0_L
) | (1 << FCR0_W
) | (1 << FCR0_D
) |
706 (1 << FCR0_S
) | (0x00 << FCR0_PRID
) | (0x0 << FCR0_REV
),
707 .CP1_fcr31
= (1 << FCR31_ABS2008
) | (1 << FCR31_NAN2008
),
708 .CP1_fcr31_rw_bitmask
= 0x0103FFFF,
711 .insn_flags
= CPU_MIPS64R6
| ASE_MSA
,
712 .mmu_type
= MMU_TYPE_R4000
,
715 .name
= "Loongson-2E",
717 /* 64KB I-cache and d-cache. 4 way with 32 bit cache line size. */
718 .CP0_Config0
= (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) |
719 (0x1<<5) | (0x1<<4) | (0x1<<1),
720 /* Note: Config1 is only used internally,
721 Loongson-2E has only Config0. */
722 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
725 .CP0_Status_rw_bitmask
= 0x35D0FFFF,
726 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x1 << FCR0_REV
),
728 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
731 .insn_flags
= CPU_LOONGSON2E
,
732 .mmu_type
= MMU_TYPE_R4000
,
735 .name
= "Loongson-2F",
737 /* 64KB I-cache and d-cache. 4 way with 32 bit cache line size. */
738 .CP0_Config0
= (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) |
739 (0x1<<5) | (0x1<<4) | (0x1<<1),
740 /* Note: Config1 is only used internally,
741 Loongson-2F has only Config0. */
742 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
745 .CP0_Status_rw_bitmask
= 0xF5D0FF1F, /* Bits 7:5 not writable. */
746 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x1 << FCR0_REV
),
748 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
751 .insn_flags
= CPU_LOONGSON2F
,
752 .mmu_type
= MMU_TYPE_R4000
,
755 /* A generic CPU providing MIPS64 ASE DSP 2 features.
756 FIXME: Eventually this should be replaced by a real CPU model. */
757 .name
= "mips64dspr2",
758 .CP0_PRid
= 0x00010000,
759 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
760 (MMU_TYPE_R4000
<< CP0C0_MT
),
761 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (63 << CP0C1_MMU
) |
762 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
763 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
764 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
765 .CP0_Config2
= MIPS_CONFIG2
,
766 .CP0_Config3
= MIPS_CONFIG3
| (1U << CP0C3_M
) | (1 << CP0C3_DSP2P
) |
767 (1 << CP0C3_DSPP
) | (1 << CP0C3_LPA
),
768 .CP0_LLAddr_rw_bitmask
= 0,
769 .CP0_LLAddr_shift
= 0,
772 .CP0_Status_rw_bitmask
= 0x37FBFFFF,
773 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_3D
) | (1 << FCR0_PS
) |
774 (1 << FCR0_L
) | (1 << FCR0_W
) | (1 << FCR0_D
) |
775 (1 << FCR0_S
) | (0x00 << FCR0_PRID
) | (0x0 << FCR0_REV
),
777 .CP1_fcr31_rw_bitmask
= 0xFF83FFFF,
780 .insn_flags
= CPU_MIPS64R2
| ASE_DSP
| ASE_DSPR2
,
781 .mmu_type
= MMU_TYPE_R4000
,
787 static const mips_def_t
*cpu_mips_find_by_name (const char *name
)
791 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
792 if (strcasecmp(name
, mips_defs
[i
].name
) == 0) {
793 return &mips_defs
[i
];
799 void mips_cpu_list (FILE *f
, fprintf_function cpu_fprintf
)
803 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
804 (*cpu_fprintf
)(f
, "MIPS '%s'\n",
809 #ifndef CONFIG_USER_ONLY
810 static void no_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
812 env
->tlb
->nb_tlb
= 1;
813 env
->tlb
->map_address
= &no_mmu_map_address
;
816 static void fixed_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
818 env
->tlb
->nb_tlb
= 1;
819 env
->tlb
->map_address
= &fixed_mmu_map_address
;
822 static void r4k_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
824 env
->tlb
->nb_tlb
= 1 + ((def
->CP0_Config1
>> CP0C1_MMU
) & 63);
825 env
->tlb
->map_address
= &r4k_map_address
;
826 env
->tlb
->helper_tlbwi
= r4k_helper_tlbwi
;
827 env
->tlb
->helper_tlbwr
= r4k_helper_tlbwr
;
828 env
->tlb
->helper_tlbp
= r4k_helper_tlbp
;
829 env
->tlb
->helper_tlbr
= r4k_helper_tlbr
;
830 env
->tlb
->helper_tlbinv
= r4k_helper_tlbinv
;
831 env
->tlb
->helper_tlbinvf
= r4k_helper_tlbinvf
;
834 static void mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
836 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
838 env
->tlb
= g_malloc0(sizeof(CPUMIPSTLBContext
));
840 switch (def
->mmu_type
) {
842 no_mmu_init(env
, def
);
845 r4k_mmu_init(env
, def
);
848 fixed_mmu_init(env
, def
);
854 cpu_abort(CPU(cpu
), "MMU type not supported\n");
857 #endif /* CONFIG_USER_ONLY */
859 static void fpu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
863 for (i
= 0; i
< MIPS_FPU_MAX
; i
++)
864 env
->fpus
[i
].fcr0
= def
->CP1_fcr0
;
866 memcpy(&env
->active_fpu
, &env
->fpus
[0], sizeof(env
->active_fpu
));
869 static void mvp_init (CPUMIPSState
*env
, const mips_def_t
*def
)
871 env
->mvp
= g_malloc0(sizeof(CPUMIPSMVPContext
));
873 /* MVPConf1 implemented, TLB sharable, no gating storage support,
874 programmable cache partitioning implemented, number of allocatable
875 and sharable TLB entries, MVP has allocatable TCs, 2 VPEs
876 implemented, 5 TCs implemented. */
877 env
->mvp
->CP0_MVPConf0
= (1U << CP0MVPC0_M
) | (1 << CP0MVPC0_TLBS
) |
878 (0 << CP0MVPC0_GS
) | (1 << CP0MVPC0_PCP
) |
879 // TODO: actually do 2 VPEs.
880 // (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
881 // (0x04 << CP0MVPC0_PTC);
882 (1 << CP0MVPC0_TCA
) | (0x0 << CP0MVPC0_PVPE
) |
883 (0x00 << CP0MVPC0_PTC
);
884 #if !defined(CONFIG_USER_ONLY)
885 /* Usermode has no TLB support */
886 env
->mvp
->CP0_MVPConf0
|= (env
->tlb
->nb_tlb
<< CP0MVPC0_PTLBE
);
889 /* Allocatable CP1 have media extensions, allocatable CP1 have FP support,
890 no UDI implemented, no CP2 implemented, 1 CP1 implemented. */
891 env
->mvp
->CP0_MVPConf1
= (1U << CP0MVPC1_CIM
) | (1 << CP0MVPC1_CIF
) |
892 (0x0 << CP0MVPC1_PCX
) | (0x0 << CP0MVPC1_PCP2
) |
893 (0x1 << CP0MVPC1_PCP1
);
896 static void msa_reset(CPUMIPSState
*env
)
898 #ifdef CONFIG_USER_ONLY
899 /* MSA access enabled */
900 env
->CP0_Config5
|= 1 << CP0C5_MSAEn
;
901 env
->CP0_Status
|= (1 << CP0St_CU1
) | (1 << CP0St_FR
);
905 - non-signaling floating point exception mode off (NX bit is 0)
906 - Cause, Enables, and Flags are all 0
907 - round to nearest / ties to even (RM bits are 0) */
908 env
->active_tc
.msacsr
= 0;
910 restore_msa_fp_status(env
);
912 /* tininess detected after rounding.*/
913 set_float_detect_tininess(float_tininess_after_rounding
,
914 &env
->active_tc
.msa_fp_status
);
916 /* clear float_status exception flags */
917 set_float_exception_flags(0, &env
->active_tc
.msa_fp_status
);
919 /* clear float_status nan mode */
920 set_default_nan_mode(0, &env
->active_tc
.msa_fp_status
);
922 /* set proper signanling bit meaning ("1" means "quiet") */
923 set_snan_bit_is_one(0, &env
->active_tc
.msa_fp_status
);