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 ((1 << 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 interupts,
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 a implementation number of 1.
49 Define a major version 1, minor version 0. */
50 #define MIPS_FCR0 ((0 << FCR0_S) | (0x1 << FCR0_PRID) | (0x10 << FCR0_REV))
52 /* MMU types, the first four entries have the same layout as the
73 target_ulong CP0_LLAddr_rw_bitmask
;
77 int32_t CP0_Status_rw_bitmask
;
78 int32_t CP0_TCStatus_rw_bitmask
;
83 int32_t CP0_SRSConf0_rw_bitmask
;
85 int32_t CP0_SRSConf1_rw_bitmask
;
87 int32_t CP0_SRSConf2_rw_bitmask
;
89 int32_t CP0_SRSConf3_rw_bitmask
;
91 int32_t CP0_SRSConf4_rw_bitmask
;
94 enum mips_mmu_types mmu_type
;
97 /*****************************************************************************/
98 /* MIPS CPU definitions */
99 static const mips_def_t mips_defs
[] =
103 .CP0_PRid
= 0x00018000,
104 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
105 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
106 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
107 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
109 .CP0_Config2
= MIPS_CONFIG2
,
110 .CP0_Config3
= MIPS_CONFIG3
,
111 .CP0_LLAddr_rw_bitmask
= 0,
112 .CP0_LLAddr_shift
= 4,
115 .CP0_Status_rw_bitmask
= 0x1278FF17,
118 .insn_flags
= CPU_MIPS32
,
119 .mmu_type
= MMU_TYPE_R4000
,
123 .CP0_PRid
= 0x00018300,
124 /* Config1 implemented, fixed mapping MMU,
125 no virtual icache, uncached coherency. */
126 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
127 .CP0_Config1
= MIPS_CONFIG1
|
128 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
129 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
131 .CP0_Config2
= MIPS_CONFIG2
,
132 .CP0_Config3
= MIPS_CONFIG3
,
133 .CP0_LLAddr_rw_bitmask
= 0,
134 .CP0_LLAddr_shift
= 4,
137 .CP0_Status_rw_bitmask
= 0x1258FF17,
140 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
141 .mmu_type
= MMU_TYPE_FMT
,
145 .CP0_PRid
= 0x00018400,
146 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
147 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
148 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
149 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
151 .CP0_Config2
= MIPS_CONFIG2
,
152 .CP0_Config3
= MIPS_CONFIG3
,
153 .CP0_LLAddr_rw_bitmask
= 0,
154 .CP0_LLAddr_shift
= 4,
157 .CP0_Status_rw_bitmask
= 0x1278FF17,
160 .insn_flags
= CPU_MIPS32
,
161 .mmu_type
= MMU_TYPE_R4000
,
165 .CP0_PRid
= 0x00018500,
166 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
167 .CP0_Config1
= MIPS_CONFIG1
|
168 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
169 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
171 .CP0_Config2
= MIPS_CONFIG2
,
172 .CP0_Config3
= MIPS_CONFIG3
,
173 .CP0_LLAddr_rw_bitmask
= 0,
174 .CP0_LLAddr_shift
= 4,
177 .CP0_Status_rw_bitmask
= 0x1258FF17,
180 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
181 .mmu_type
= MMU_TYPE_FMT
,
185 .CP0_PRid
= 0x00019000,
186 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
187 (MMU_TYPE_R4000
<< CP0C0_MT
),
188 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
189 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
190 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
192 .CP0_Config2
= MIPS_CONFIG2
,
193 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
194 .CP0_LLAddr_rw_bitmask
= 0,
195 .CP0_LLAddr_shift
= 4,
198 .CP0_Status_rw_bitmask
= 0x1278FF17,
201 .insn_flags
= CPU_MIPS32R2
,
202 .mmu_type
= MMU_TYPE_R4000
,
206 .CP0_PRid
= 0x00019100,
207 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
208 (MMU_TYPE_FMT
<< CP0C0_MT
),
209 .CP0_Config1
= MIPS_CONFIG1
|
210 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
211 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
213 .CP0_Config2
= MIPS_CONFIG2
,
214 .CP0_Config3
= MIPS_CONFIG3
,
215 .CP0_LLAddr_rw_bitmask
= 0,
216 .CP0_LLAddr_shift
= 4,
219 .CP0_Status_rw_bitmask
= 0x1258FF17,
222 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
223 .mmu_type
= MMU_TYPE_FMT
,
227 .CP0_PRid
= 0x00019300,
228 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
229 (MMU_TYPE_R4000
<< CP0C0_MT
),
230 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
231 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
232 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
234 .CP0_Config2
= MIPS_CONFIG2
,
235 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
236 .CP0_LLAddr_rw_bitmask
= 0,
237 .CP0_LLAddr_shift
= 4,
240 /* No DSP implemented. */
241 .CP0_Status_rw_bitmask
= 0x1278FF1F,
244 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
245 .mmu_type
= MMU_TYPE_R4000
,
249 .CP0_PRid
= 0x00019300,
250 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
251 (MMU_TYPE_R4000
<< CP0C0_MT
),
252 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
253 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
254 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
256 .CP0_Config2
= MIPS_CONFIG2
,
257 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
258 .CP0_LLAddr_rw_bitmask
= 0,
259 .CP0_LLAddr_shift
= 4,
262 /* No DSP implemented. */
263 .CP0_Status_rw_bitmask
= 0x3678FF1F,
264 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
265 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x93 << FCR0_PRID
),
268 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
269 .mmu_type
= MMU_TYPE_R4000
,
273 .CP0_PRid
= 0x00019500,
274 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
275 (MMU_TYPE_R4000
<< CP0C0_MT
),
276 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
277 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
278 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
280 .CP0_Config2
= MIPS_CONFIG2
,
281 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
) | (1 << CP0C3_MT
),
282 .CP0_LLAddr_rw_bitmask
= 0,
283 .CP0_LLAddr_shift
= 0,
286 /* No DSP implemented. */
287 .CP0_Status_rw_bitmask
= 0x3678FF1F,
288 /* No DSP implemented. */
289 .CP0_TCStatus_rw_bitmask
= (0 << CP0TCSt_TCU3
) | (0 << CP0TCSt_TCU2
) |
290 (1 << CP0TCSt_TCU1
) | (1 << CP0TCSt_TCU0
) |
291 (0 << CP0TCSt_TMX
) | (1 << CP0TCSt_DT
) |
292 (1 << CP0TCSt_DA
) | (1 << CP0TCSt_A
) |
293 (0x3 << CP0TCSt_TKSU
) | (1 << CP0TCSt_IXMT
) |
294 (0xff << CP0TCSt_TASID
),
295 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
296 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x95 << FCR0_PRID
),
297 .CP0_SRSCtl
= (0xf << CP0SRSCtl_HSS
),
298 .CP0_SRSConf0_rw_bitmask
= 0x3fffffff,
299 .CP0_SRSConf0
= (1 << CP0SRSC0_M
) | (0x3fe << CP0SRSC0_SRS3
) |
300 (0x3fe << CP0SRSC0_SRS2
) | (0x3fe << CP0SRSC0_SRS1
),
301 .CP0_SRSConf1_rw_bitmask
= 0x3fffffff,
302 .CP0_SRSConf1
= (1 << CP0SRSC1_M
) | (0x3fe << CP0SRSC1_SRS6
) |
303 (0x3fe << CP0SRSC1_SRS5
) | (0x3fe << CP0SRSC1_SRS4
),
304 .CP0_SRSConf2_rw_bitmask
= 0x3fffffff,
305 .CP0_SRSConf2
= (1 << CP0SRSC2_M
) | (0x3fe << CP0SRSC2_SRS9
) |
306 (0x3fe << CP0SRSC2_SRS8
) | (0x3fe << CP0SRSC2_SRS7
),
307 .CP0_SRSConf3_rw_bitmask
= 0x3fffffff,
308 .CP0_SRSConf3
= (1 << CP0SRSC3_M
) | (0x3fe << CP0SRSC3_SRS12
) |
309 (0x3fe << CP0SRSC3_SRS11
) | (0x3fe << CP0SRSC3_SRS10
),
310 .CP0_SRSConf4_rw_bitmask
= 0x3fffffff,
311 .CP0_SRSConf4
= (0x3fe << CP0SRSC4_SRS15
) |
312 (0x3fe << CP0SRSC4_SRS14
) | (0x3fe << CP0SRSC4_SRS13
),
315 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
| ASE_DSP
| ASE_MT
,
316 .mmu_type
= MMU_TYPE_R4000
,
318 #if defined(TARGET_MIPS64)
321 .CP0_PRid
= 0x00000400,
322 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
323 .CP0_Config0
= (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0
),
324 /* Note: Config1 is only used internally, the R4000 has only Config0. */
325 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
326 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFF,
327 .CP0_LLAddr_shift
= 4,
330 .CP0_Status_rw_bitmask
= 0x3678FFFF,
331 /* The R4000 has a full 64bit FPU but doesn't use the fcr0 bits. */
332 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x0 << FCR0_REV
),
335 .insn_flags
= CPU_MIPS3
,
336 .mmu_type
= MMU_TYPE_R4000
,
340 .CP0_PRid
= 0x00005400,
341 /* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
342 .CP0_Config0
= (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0
),
343 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
344 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFFL
,
345 .CP0_LLAddr_shift
= 4,
348 .CP0_Status_rw_bitmask
= 0x3678FFFF,
349 /* The VR5432 has a full 64bit FPU but doesn't use the fcr0 bits. */
350 .CP1_fcr0
= (0x54 << FCR0_PRID
) | (0x0 << FCR0_REV
),
353 .insn_flags
= CPU_VR54XX
,
354 .mmu_type
= MMU_TYPE_R4000
,
358 .CP0_PRid
= 0x00018100,
359 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
360 (MMU_TYPE_R4000
<< CP0C0_MT
),
361 .CP0_Config1
= MIPS_CONFIG1
| (31 << CP0C1_MMU
) |
362 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
363 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
364 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
365 .CP0_Config2
= MIPS_CONFIG2
,
366 .CP0_Config3
= MIPS_CONFIG3
,
367 .CP0_LLAddr_rw_bitmask
= 0,
368 .CP0_LLAddr_shift
= 4,
371 .CP0_Status_rw_bitmask
= 0x32F8FFFF,
374 .insn_flags
= CPU_MIPS64
,
375 .mmu_type
= MMU_TYPE_R4000
,
379 .CP0_PRid
= 0x00018100,
380 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
381 (MMU_TYPE_R4000
<< CP0C0_MT
),
382 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (31 << CP0C1_MMU
) |
383 (1 << CP0C1_IS
) | (4 << CP0C1_IL
) | (1 << CP0C1_IA
) |
384 (1 << CP0C1_DS
) | (4 << CP0C1_DL
) | (1 << CP0C1_DA
) |
385 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
386 .CP0_Config2
= MIPS_CONFIG2
,
387 .CP0_Config3
= MIPS_CONFIG3
,
388 .CP0_LLAddr_rw_bitmask
= 0,
389 .CP0_LLAddr_shift
= 4,
392 .CP0_Status_rw_bitmask
= 0x36F8FFFF,
393 /* The 5Kf has F64 / L / W but doesn't use the fcr0 bits. */
394 .CP1_fcr0
= (1 << FCR0_D
) | (1 << FCR0_S
) |
395 (0x81 << FCR0_PRID
) | (0x0 << FCR0_REV
),
398 .insn_flags
= CPU_MIPS64
,
399 .mmu_type
= MMU_TYPE_R4000
,
403 /* We emulate a later version of the 20Kc, earlier ones had a broken
405 .CP0_PRid
= 0x000182a0,
406 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
407 (MMU_TYPE_R4000
<< CP0C0_MT
) | (1 << CP0C0_VI
),
408 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (47 << CP0C1_MMU
) |
409 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
410 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
411 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
412 .CP0_Config2
= MIPS_CONFIG2
,
413 .CP0_Config3
= MIPS_CONFIG3
,
414 .CP0_LLAddr_rw_bitmask
= 0,
415 .CP0_LLAddr_shift
= 0,
418 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
419 /* The 20Kc has F64 / L / W but doesn't use the fcr0 bits. */
420 .CP1_fcr0
= (1 << FCR0_3D
) | (1 << FCR0_PS
) |
421 (1 << FCR0_D
) | (1 << FCR0_S
) |
422 (0x82 << FCR0_PRID
) | (0x0 << FCR0_REV
),
425 .insn_flags
= CPU_MIPS64
| ASE_MIPS3D
,
426 .mmu_type
= MMU_TYPE_R4000
,
429 /* A generic CPU providing MIPS64 Release 2 features.
430 FIXME: Eventually this should be replaced by a real CPU model. */
431 .name
= "MIPS64R2-generic",
432 .CP0_PRid
= 0x00010000,
433 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
434 (MMU_TYPE_R4000
<< CP0C0_MT
),
435 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (63 << CP0C1_MMU
) |
436 (2 << CP0C1_IS
) | (4 << CP0C1_IL
) | (3 << CP0C1_IA
) |
437 (2 << CP0C1_DS
) | (4 << CP0C1_DL
) | (3 << CP0C1_DA
) |
438 (1 << CP0C1_PC
) | (1 << CP0C1_WR
) | (1 << CP0C1_EP
),
439 .CP0_Config2
= MIPS_CONFIG2
,
440 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_LPA
),
441 .CP0_LLAddr_rw_bitmask
= 0,
442 .CP0_LLAddr_shift
= 0,
445 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
446 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_3D
) | (1 << FCR0_PS
) |
447 (1 << FCR0_L
) | (1 << FCR0_W
) | (1 << FCR0_D
) |
448 (1 << FCR0_S
) | (0x00 << FCR0_PRID
) | (0x0 << FCR0_REV
),
450 /* The architectural limit is 59, but we have hardcoded 36 bit
452 .PABITS = 59, */ /* the architectural limit */
454 .insn_flags
= CPU_MIPS64R2
| ASE_MIPS3D
,
455 .mmu_type
= MMU_TYPE_R4000
,
460 static const mips_def_t
*cpu_mips_find_by_name (const char *name
)
464 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
465 if (strcasecmp(name
, mips_defs
[i
].name
) == 0) {
466 return &mips_defs
[i
];
472 void mips_cpu_list (FILE *f
, int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...))
476 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
477 (*cpu_fprintf
)(f
, "MIPS '%s'\n",
482 #ifndef CONFIG_USER_ONLY
483 static void no_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
485 env
->tlb
->nb_tlb
= 1;
486 env
->tlb
->map_address
= &no_mmu_map_address
;
489 static void fixed_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
491 env
->tlb
->nb_tlb
= 1;
492 env
->tlb
->map_address
= &fixed_mmu_map_address
;
495 static void r4k_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
497 env
->tlb
->nb_tlb
= 1 + ((def
->CP0_Config1
>> CP0C1_MMU
) & 63);
498 env
->tlb
->map_address
= &r4k_map_address
;
499 env
->tlb
->helper_tlbwi
= r4k_helper_tlbwi
;
500 env
->tlb
->helper_tlbwr
= r4k_helper_tlbwr
;
501 env
->tlb
->helper_tlbp
= r4k_helper_tlbp
;
502 env
->tlb
->helper_tlbr
= r4k_helper_tlbr
;
505 static void mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
507 env
->tlb
= qemu_mallocz(sizeof(CPUMIPSTLBContext
));
509 switch (def
->mmu_type
) {
511 no_mmu_init(env
, def
);
514 r4k_mmu_init(env
, def
);
517 fixed_mmu_init(env
, def
);
523 cpu_abort(env
, "MMU type not supported\n");
526 #endif /* CONFIG_USER_ONLY */
528 static void fpu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
532 for (i
= 0; i
< MIPS_FPU_MAX
; i
++)
533 env
->fpus
[i
].fcr0
= def
->CP1_fcr0
;
535 memcpy(&env
->active_fpu
, &env
->fpus
[0], sizeof(env
->active_fpu
));
538 static void mvp_init (CPUMIPSState
*env
, const mips_def_t
*def
)
540 env
->mvp
= qemu_mallocz(sizeof(CPUMIPSMVPContext
));
542 /* MVPConf1 implemented, TLB sharable, no gating storage support,
543 programmable cache partitioning implemented, number of allocatable
544 and sharable TLB entries, MVP has allocatable TCs, 2 VPEs
545 implemented, 5 TCs implemented. */
546 env
->mvp
->CP0_MVPConf0
= (1 << CP0MVPC0_M
) | (1 << CP0MVPC0_TLBS
) |
547 (0 << CP0MVPC0_GS
) | (1 << CP0MVPC0_PCP
) |
548 // TODO: actually do 2 VPEs.
549 // (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
550 // (0x04 << CP0MVPC0_PTC);
551 (1 << CP0MVPC0_TCA
) | (0x0 << CP0MVPC0_PVPE
) |
552 (0x04 << CP0MVPC0_PTC
);
553 #if !defined(CONFIG_USER_ONLY)
554 /* Usermode has no TLB support */
555 env
->mvp
->CP0_MVPConf0
|= (env
->tlb
->nb_tlb
<< CP0MVPC0_PTLBE
);
558 /* Allocatable CP1 have media extensions, allocatable CP1 have FP support,
559 no UDI implemented, no CP2 implemented, 1 CP1 implemented. */
560 env
->mvp
->CP0_MVPConf1
= (1 << CP0MVPC1_CIM
) | (1 << CP0MVPC1_CIF
) |
561 (0x0 << CP0MVPC1_PCX
) | (0x0 << CP0MVPC1_PCP2
) |
562 (0x1 << CP0MVPC1_PCP1
);