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 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 /* MMU types, the first four entries have the same layout as the
69 target_ulong CP0_LLAddr_rw_bitmask
;
73 int32_t CP0_Status_rw_bitmask
;
74 int32_t CP0_TCStatus_rw_bitmask
;
79 int32_t CP0_SRSConf0_rw_bitmask
;
81 int32_t CP0_SRSConf1_rw_bitmask
;
83 int32_t CP0_SRSConf2_rw_bitmask
;
85 int32_t CP0_SRSConf3_rw_bitmask
;
87 int32_t CP0_SRSConf4_rw_bitmask
;
90 enum mips_mmu_types mmu_type
;
93 /*****************************************************************************/
94 /* MIPS CPU definitions */
95 static const mips_def_t mips_defs
[] =
99 .CP0_PRid
= 0x00018000,
100 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
101 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
102 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
103 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
105 .CP0_Config2
= MIPS_CONFIG2
,
106 .CP0_Config3
= MIPS_CONFIG3
,
107 .CP0_LLAddr_rw_bitmask
= 0,
108 .CP0_LLAddr_shift
= 4,
111 .CP0_Status_rw_bitmask
= 0x1278FF17,
114 .insn_flags
= CPU_MIPS32
,
115 .mmu_type
= MMU_TYPE_R4000
,
119 .CP0_PRid
= 0x00018300,
120 /* Config1 implemented, fixed mapping MMU,
121 no virtual icache, uncached coherency. */
122 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
123 .CP0_Config1
= MIPS_CONFIG1
|
124 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
125 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
127 .CP0_Config2
= MIPS_CONFIG2
,
128 .CP0_Config3
= MIPS_CONFIG3
,
129 .CP0_LLAddr_rw_bitmask
= 0,
130 .CP0_LLAddr_shift
= 4,
133 .CP0_Status_rw_bitmask
= 0x1258FF17,
136 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
137 .mmu_type
= MMU_TYPE_FMT
,
141 .CP0_PRid
= 0x00018400,
142 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_R4000
<< CP0C0_MT
),
143 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
144 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
145 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
147 .CP0_Config2
= MIPS_CONFIG2
,
148 .CP0_Config3
= MIPS_CONFIG3
,
149 .CP0_LLAddr_rw_bitmask
= 0,
150 .CP0_LLAddr_shift
= 4,
153 .CP0_Status_rw_bitmask
= 0x1278FF17,
156 .insn_flags
= CPU_MIPS32
,
157 .mmu_type
= MMU_TYPE_R4000
,
161 .CP0_PRid
= 0x00018500,
162 .CP0_Config0
= MIPS_CONFIG0
| (MMU_TYPE_FMT
<< CP0C0_MT
),
163 .CP0_Config1
= MIPS_CONFIG1
|
164 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
165 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
167 .CP0_Config2
= MIPS_CONFIG2
,
168 .CP0_Config3
= MIPS_CONFIG3
,
169 .CP0_LLAddr_rw_bitmask
= 0,
170 .CP0_LLAddr_shift
= 4,
173 .CP0_Status_rw_bitmask
= 0x1258FF17,
176 .insn_flags
= CPU_MIPS32
| ASE_MIPS16
,
177 .mmu_type
= MMU_TYPE_FMT
,
181 .CP0_PRid
= 0x00019000,
182 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
183 (MMU_TYPE_R4000
<< CP0C0_MT
),
184 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
185 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
186 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
188 .CP0_Config2
= MIPS_CONFIG2
,
189 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
190 .CP0_LLAddr_rw_bitmask
= 0,
191 .CP0_LLAddr_shift
= 4,
194 .CP0_Status_rw_bitmask
= 0x1278FF17,
197 .insn_flags
= CPU_MIPS32R2
,
198 .mmu_type
= MMU_TYPE_R4000
,
202 .CP0_PRid
= 0x00019100,
203 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
204 (MMU_TYPE_FMT
<< CP0C0_MT
),
205 .CP0_Config1
= MIPS_CONFIG1
|
206 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
207 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
209 .CP0_Config2
= MIPS_CONFIG2
,
210 .CP0_Config3
= MIPS_CONFIG3
,
211 .CP0_LLAddr_rw_bitmask
= 0,
212 .CP0_LLAddr_shift
= 4,
215 .CP0_Status_rw_bitmask
= 0x1258FF17,
218 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
219 .mmu_type
= MMU_TYPE_FMT
,
223 .CP0_PRid
= 0x00019300,
224 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
225 (MMU_TYPE_R4000
<< CP0C0_MT
),
226 .CP0_Config1
= MIPS_CONFIG1
| (15 << CP0C1_MMU
) |
227 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
228 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
230 .CP0_Config2
= MIPS_CONFIG2
,
231 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
232 .CP0_LLAddr_rw_bitmask
= 0,
233 .CP0_LLAddr_shift
= 4,
236 /* No DSP implemented. */
237 .CP0_Status_rw_bitmask
= 0x1278FF1F,
240 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
241 .mmu_type
= MMU_TYPE_R4000
,
245 .CP0_PRid
= 0x00019300,
246 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
247 (MMU_TYPE_R4000
<< CP0C0_MT
),
248 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
249 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
250 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
252 .CP0_Config2
= MIPS_CONFIG2
,
253 .CP0_Config3
= MIPS_CONFIG3
| (0 << CP0C3_VInt
),
254 .CP0_LLAddr_rw_bitmask
= 0,
255 .CP0_LLAddr_shift
= 4,
258 /* No DSP implemented. */
259 .CP0_Status_rw_bitmask
= 0x3678FF1F,
260 .CP1_fcr0
= (1 << FCR0_F64
) | (1 << FCR0_L
) | (1 << FCR0_W
) |
261 (1 << FCR0_D
) | (1 << FCR0_S
) | (0x93 << FCR0_PRID
),
264 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
,
265 .mmu_type
= MMU_TYPE_R4000
,
269 .CP0_PRid
= 0x00019500,
270 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) |
271 (MMU_TYPE_R4000
<< CP0C0_MT
),
272 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (15 << CP0C1_MMU
) |
273 (0 << CP0C1_IS
) | (3 << CP0C1_IL
) | (1 << CP0C1_IA
) |
274 (0 << CP0C1_DS
) | (3 << CP0C1_DL
) | (1 << CP0C1_DA
) |
276 .CP0_Config2
= MIPS_CONFIG2
,
277 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_VInt
) | (1 << CP0C3_MT
),
278 .CP0_LLAddr_rw_bitmask
= 0,
279 .CP0_LLAddr_shift
= 0,
282 /* No DSP implemented. */
283 .CP0_Status_rw_bitmask
= 0x3678FF1F,
284 /* 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
),
311 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
| ASE_DSP
| ASE_MT
,
312 .mmu_type
= MMU_TYPE_R4000
,
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
) |
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,
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
),
334 .insn_flags
= CPU_MIPS32R2
| ASE_MIPS16
| ASE_DSP
| ASE_DSPR2
,
335 .mmu_type
= MMU_TYPE_R4000
,
337 #if defined(TARGET_MIPS64)
340 .CP0_PRid
= 0x00000400,
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 /* Note: Config1 is only used internally, the R4000 has only Config0. */
344 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
345 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFF,
346 .CP0_LLAddr_shift
= 4,
349 .CP0_Status_rw_bitmask
= 0x3678FFFF,
350 /* The R4000 has a full 64bit FPU but doesn't use the fcr0 bits. */
351 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x0 << FCR0_REV
),
354 .insn_flags
= CPU_MIPS3
,
355 .mmu_type
= MMU_TYPE_R4000
,
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
),
363 .CP0_LLAddr_rw_bitmask
= 0xFFFFFFFFL
,
364 .CP0_LLAddr_shift
= 4,
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
),
372 .insn_flags
= CPU_VR54XX
,
373 .mmu_type
= MMU_TYPE_R4000
,
377 .CP0_PRid
= 0x00018100,
378 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
379 (MMU_TYPE_R4000
<< CP0C0_MT
),
380 .CP0_Config1
= MIPS_CONFIG1
| (31 << CP0C1_MMU
) |
381 (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
),
384 .CP0_Config2
= MIPS_CONFIG2
,
385 .CP0_Config3
= MIPS_CONFIG3
,
386 .CP0_LLAddr_rw_bitmask
= 0,
387 .CP0_LLAddr_shift
= 4,
390 .CP0_Status_rw_bitmask
= 0x32F8FFFF,
393 .insn_flags
= CPU_MIPS64
,
394 .mmu_type
= MMU_TYPE_R4000
,
398 .CP0_PRid
= 0x00018100,
399 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
400 (MMU_TYPE_R4000
<< CP0C0_MT
),
401 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (31 << CP0C1_MMU
) |
402 (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
),
405 .CP0_Config2
= MIPS_CONFIG2
,
406 .CP0_Config3
= MIPS_CONFIG3
,
407 .CP0_LLAddr_rw_bitmask
= 0,
408 .CP0_LLAddr_shift
= 4,
411 .CP0_Status_rw_bitmask
= 0x36F8FFFF,
412 /* The 5Kf has F64 / L / W but doesn't use the fcr0 bits. */
413 .CP1_fcr0
= (1 << FCR0_D
) | (1 << FCR0_S
) |
414 (0x81 << FCR0_PRID
) | (0x0 << FCR0_REV
),
417 .insn_flags
= CPU_MIPS64
,
418 .mmu_type
= MMU_TYPE_R4000
,
422 /* We emulate a later version of the 20Kc, earlier ones had a broken
424 .CP0_PRid
= 0x000182a0,
425 .CP0_Config0
= MIPS_CONFIG0
| (0x2 << CP0C0_AT
) |
426 (MMU_TYPE_R4000
<< CP0C0_MT
) | (1 << CP0C0_VI
),
427 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (47 << CP0C1_MMU
) |
428 (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
),
431 .CP0_Config2
= MIPS_CONFIG2
,
432 .CP0_Config3
= MIPS_CONFIG3
,
433 .CP0_LLAddr_rw_bitmask
= 0,
434 .CP0_LLAddr_shift
= 0,
437 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
438 /* The 20Kc has F64 / L / W but doesn't use the fcr0 bits. */
439 .CP1_fcr0
= (1 << FCR0_3D
) | (1 << FCR0_PS
) |
440 (1 << FCR0_D
) | (1 << FCR0_S
) |
441 (0x82 << FCR0_PRID
) | (0x0 << FCR0_REV
),
444 .insn_flags
= CPU_MIPS64
| ASE_MIPS3D
,
445 .mmu_type
= MMU_TYPE_R4000
,
448 /* A generic CPU providing MIPS64 Release 2 features.
449 FIXME: Eventually this should be replaced by a real CPU model. */
450 .name
= "MIPS64R2-generic",
451 .CP0_PRid
= 0x00010000,
452 .CP0_Config0
= MIPS_CONFIG0
| (0x1 << CP0C0_AR
) | (0x2 << CP0C0_AT
) |
453 (MMU_TYPE_R4000
<< CP0C0_MT
),
454 .CP0_Config1
= MIPS_CONFIG1
| (1 << CP0C1_FP
) | (63 << CP0C1_MMU
) |
455 (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
),
458 .CP0_Config2
= MIPS_CONFIG2
,
459 .CP0_Config3
= MIPS_CONFIG3
| (1 << CP0C3_LPA
),
460 .CP0_LLAddr_rw_bitmask
= 0,
461 .CP0_LLAddr_shift
= 0,
464 .CP0_Status_rw_bitmask
= 0x36FBFFFF,
465 .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
),
469 /* The architectural limit is 59, but we have hardcoded 36 bit
471 .PABITS = 59, */ /* the architectural limit */
473 .insn_flags
= CPU_MIPS64R2
| ASE_MIPS3D
,
474 .mmu_type
= MMU_TYPE_R4000
,
477 .name
= "Loongson-2E",
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) |
482 /* Note: Config1 is only used internally, Loongson-2E has only Config0. */
483 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
486 .CP0_Status_rw_bitmask
= 0x35D0FFFF,
487 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x1 << FCR0_REV
),
490 .insn_flags
= CPU_LOONGSON2E
,
491 .mmu_type
= MMU_TYPE_R4000
,
494 .name
= "Loongson-2F",
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) |
499 /* Note: Config1 is only used internally, Loongson-2F has only Config0. */
500 .CP0_Config1
= (1 << CP0C1_FP
) | (47 << CP0C1_MMU
),
503 .CP0_Status_rw_bitmask
= 0xF5D0FF1F, /*bit5:7 not writable*/
504 .CP1_fcr0
= (0x5 << FCR0_PRID
) | (0x1 << FCR0_REV
),
507 .insn_flags
= CPU_LOONGSON2F
,
508 .mmu_type
= MMU_TYPE_R4000
,
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,
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
),
532 /* The architectural limit is 59, but we have hardcoded 36 bit
534 .PABITS = 59, */ /* the architectural limit */
536 .insn_flags
= CPU_MIPS64R2
| ASE_DSP
| ASE_DSPR2
,
537 .mmu_type
= MMU_TYPE_R4000
,
543 static const mips_def_t
*cpu_mips_find_by_name (const char *name
)
547 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
548 if (strcasecmp(name
, mips_defs
[i
].name
) == 0) {
549 return &mips_defs
[i
];
555 void mips_cpu_list (FILE *f
, fprintf_function cpu_fprintf
)
559 for (i
= 0; i
< ARRAY_SIZE(mips_defs
); i
++) {
560 (*cpu_fprintf
)(f
, "MIPS '%s'\n",
565 #ifndef CONFIG_USER_ONLY
566 static void no_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
568 env
->tlb
->nb_tlb
= 1;
569 env
->tlb
->map_address
= &no_mmu_map_address
;
572 static void fixed_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
574 env
->tlb
->nb_tlb
= 1;
575 env
->tlb
->map_address
= &fixed_mmu_map_address
;
578 static void r4k_mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
580 env
->tlb
->nb_tlb
= 1 + ((def
->CP0_Config1
>> CP0C1_MMU
) & 63);
581 env
->tlb
->map_address
= &r4k_map_address
;
582 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
;
588 static void mmu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
590 env
->tlb
= g_malloc0(sizeof(CPUMIPSTLBContext
));
592 switch (def
->mmu_type
) {
594 no_mmu_init(env
, def
);
597 r4k_mmu_init(env
, def
);
600 fixed_mmu_init(env
, def
);
606 cpu_abort(env
, "MMU type not supported\n");
609 #endif /* CONFIG_USER_ONLY */
611 static void fpu_init (CPUMIPSState
*env
, const mips_def_t
*def
)
615 for (i
= 0; i
< MIPS_FPU_MAX
; i
++)
616 env
->fpus
[i
].fcr0
= def
->CP1_fcr0
;
618 memcpy(&env
->active_fpu
, &env
->fpus
[0], sizeof(env
->active_fpu
));
621 static void mvp_init (CPUMIPSState
*env
, const mips_def_t
*def
)
623 env
->mvp
= g_malloc0(sizeof(CPUMIPSMVPContext
));
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
) |
631 // TODO: actually do 2 VPEs.
632 // (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
633 // (0x04 << CP0MVPC0_PTC);
634 (1 << CP0MVPC0_TCA
) | (0x0 << CP0MVPC0_PVPE
) |
635 (0x00 << CP0MVPC0_PTC
);
636 #if !defined(CONFIG_USER_ONLY)
637 /* Usermode has no TLB support */
638 env
->mvp
->CP0_MVPConf0
|= (env
->tlb
->nb_tlb
<< CP0MVPC0_PTLBE
);
641 /* 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
);