9 #include "qemu-common.h"
10 #include "host-utils.h"
11 #if !defined(CONFIG_USER_ONLY)
12 #include "hw/loader.h"
15 static uint32_t cortexa9_cp15_c0_c1
[8] =
16 { 0x1031, 0x11, 0x000, 0, 0x00100103, 0x20000000, 0x01230000, 0x00002111 };
18 static uint32_t cortexa9_cp15_c0_c2
[8] =
19 { 0x00101111, 0x13112111, 0x21232041, 0x11112131, 0x00111142, 0, 0, 0 };
21 static uint32_t cortexa8_cp15_c0_c1
[8] =
22 { 0x1031, 0x11, 0x400, 0, 0x31100003, 0x20000000, 0x01202000, 0x11 };
24 static uint32_t cortexa8_cp15_c0_c2
[8] =
25 { 0x00101111, 0x12112111, 0x21232031, 0x11112131, 0x00111142, 0, 0, 0 };
27 static uint32_t mpcore_cp15_c0_c1
[8] =
28 { 0x111, 0x1, 0, 0x2, 0x01100103, 0x10020302, 0x01222000, 0 };
30 static uint32_t mpcore_cp15_c0_c2
[8] =
31 { 0x00100011, 0x12002111, 0x11221011, 0x01102131, 0x141, 0, 0, 0 };
33 static uint32_t arm1136_cp15_c0_c1
[8] =
34 { 0x111, 0x1, 0x2, 0x3, 0x01130003, 0x10030302, 0x01222110, 0 };
36 static uint32_t arm1136_cp15_c0_c2
[8] =
37 { 0x00140011, 0x12002111, 0x11231111, 0x01102131, 0x141, 0, 0, 0 };
39 static uint32_t cpu_arm_find_by_name(const char *name
);
41 static inline void set_feature(CPUARMState
*env
, int feature
)
43 env
->features
|= 1u << feature
;
46 static void cpu_reset_model_id(CPUARMState
*env
, uint32_t id
)
48 env
->cp15
.c0_cpuid
= id
;
50 case ARM_CPUID_ARM926
:
51 set_feature(env
, ARM_FEATURE_V4T
);
52 set_feature(env
, ARM_FEATURE_V5
);
53 set_feature(env
, ARM_FEATURE_VFP
);
54 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x41011090;
55 env
->cp15
.c0_cachetype
= 0x1dd20d2;
56 env
->cp15
.c1_sys
= 0x00090078;
58 case ARM_CPUID_ARM946
:
59 set_feature(env
, ARM_FEATURE_V4T
);
60 set_feature(env
, ARM_FEATURE_V5
);
61 set_feature(env
, ARM_FEATURE_MPU
);
62 env
->cp15
.c0_cachetype
= 0x0f004006;
63 env
->cp15
.c1_sys
= 0x00000078;
65 case ARM_CPUID_ARM1026
:
66 set_feature(env
, ARM_FEATURE_V4T
);
67 set_feature(env
, ARM_FEATURE_V5
);
68 set_feature(env
, ARM_FEATURE_VFP
);
69 set_feature(env
, ARM_FEATURE_AUXCR
);
70 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410110a0;
71 env
->cp15
.c0_cachetype
= 0x1dd20d2;
72 env
->cp15
.c1_sys
= 0x00090078;
74 case ARM_CPUID_ARM1136_R2
:
75 case ARM_CPUID_ARM1136
:
76 set_feature(env
, ARM_FEATURE_V4T
);
77 set_feature(env
, ARM_FEATURE_V5
);
78 set_feature(env
, ARM_FEATURE_V6
);
79 set_feature(env
, ARM_FEATURE_VFP
);
80 set_feature(env
, ARM_FEATURE_AUXCR
);
81 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410120b4;
82 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11111111;
83 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00000000;
84 memcpy(env
->cp15
.c0_c1
, arm1136_cp15_c0_c1
, 8 * sizeof(uint32_t));
85 memcpy(env
->cp15
.c0_c2
, arm1136_cp15_c0_c2
, 8 * sizeof(uint32_t));
86 env
->cp15
.c0_cachetype
= 0x1dd20d2;
87 env
->cp15
.c1_sys
= 0x00050078;
89 case ARM_CPUID_ARM11MPCORE
:
90 set_feature(env
, ARM_FEATURE_V4T
);
91 set_feature(env
, ARM_FEATURE_V5
);
92 set_feature(env
, ARM_FEATURE_V6
);
93 set_feature(env
, ARM_FEATURE_V6K
);
94 set_feature(env
, ARM_FEATURE_VFP
);
95 set_feature(env
, ARM_FEATURE_AUXCR
);
96 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410120b4;
97 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11111111;
98 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00000000;
99 memcpy(env
->cp15
.c0_c1
, mpcore_cp15_c0_c1
, 8 * sizeof(uint32_t));
100 memcpy(env
->cp15
.c0_c2
, mpcore_cp15_c0_c2
, 8 * sizeof(uint32_t));
101 env
->cp15
.c0_cachetype
= 0x1dd20d2;
103 case ARM_CPUID_CORTEXA8
:
104 set_feature(env
, ARM_FEATURE_V4T
);
105 set_feature(env
, ARM_FEATURE_V5
);
106 set_feature(env
, ARM_FEATURE_V6
);
107 set_feature(env
, ARM_FEATURE_V6K
);
108 set_feature(env
, ARM_FEATURE_V7
);
109 set_feature(env
, ARM_FEATURE_AUXCR
);
110 set_feature(env
, ARM_FEATURE_THUMB2
);
111 set_feature(env
, ARM_FEATURE_VFP
);
112 set_feature(env
, ARM_FEATURE_VFP3
);
113 set_feature(env
, ARM_FEATURE_NEON
);
114 set_feature(env
, ARM_FEATURE_THUMB2EE
);
115 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410330c0;
116 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11110222;
117 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00011100;
118 memcpy(env
->cp15
.c0_c1
, cortexa8_cp15_c0_c1
, 8 * sizeof(uint32_t));
119 memcpy(env
->cp15
.c0_c2
, cortexa8_cp15_c0_c2
, 8 * sizeof(uint32_t));
120 env
->cp15
.c0_cachetype
= 0x82048004;
121 env
->cp15
.c0_clid
= (1 << 27) | (2 << 24) | 3;
122 env
->cp15
.c0_ccsid
[0] = 0xe007e01a; /* 16k L1 dcache. */
123 env
->cp15
.c0_ccsid
[1] = 0x2007e01a; /* 16k L1 icache. */
124 env
->cp15
.c0_ccsid
[2] = 0xf0000000; /* No L2 icache. */
125 env
->cp15
.c1_sys
= 0x00c50078;
127 case ARM_CPUID_CORTEXA9
:
128 set_feature(env
, ARM_FEATURE_V4T
);
129 set_feature(env
, ARM_FEATURE_V5
);
130 set_feature(env
, ARM_FEATURE_V6
);
131 set_feature(env
, ARM_FEATURE_V6K
);
132 set_feature(env
, ARM_FEATURE_V7
);
133 set_feature(env
, ARM_FEATURE_AUXCR
);
134 set_feature(env
, ARM_FEATURE_THUMB2
);
135 set_feature(env
, ARM_FEATURE_VFP
);
136 set_feature(env
, ARM_FEATURE_VFP3
);
137 set_feature(env
, ARM_FEATURE_VFP_FP16
);
138 set_feature(env
, ARM_FEATURE_NEON
);
139 set_feature(env
, ARM_FEATURE_THUMB2EE
);
140 /* Note that A9 supports the MP extensions even for
141 * A9UP and single-core A9MP (which are both different
142 * and valid configurations; we don't model A9UP).
144 set_feature(env
, ARM_FEATURE_V7MP
);
145 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x41034000; /* Guess */
146 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11110222;
147 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x01111111;
148 memcpy(env
->cp15
.c0_c1
, cortexa9_cp15_c0_c1
, 8 * sizeof(uint32_t));
149 memcpy(env
->cp15
.c0_c2
, cortexa9_cp15_c0_c2
, 8 * sizeof(uint32_t));
150 env
->cp15
.c0_cachetype
= 0x80038003;
151 env
->cp15
.c0_clid
= (1 << 27) | (1 << 24) | 3;
152 env
->cp15
.c0_ccsid
[0] = 0xe00fe015; /* 16k L1 dcache. */
153 env
->cp15
.c0_ccsid
[1] = 0x200fe015; /* 16k L1 icache. */
154 env
->cp15
.c1_sys
= 0x00c50078;
156 case ARM_CPUID_CORTEXM3
:
157 set_feature(env
, ARM_FEATURE_V4T
);
158 set_feature(env
, ARM_FEATURE_V5
);
159 set_feature(env
, ARM_FEATURE_V6
);
160 set_feature(env
, ARM_FEATURE_THUMB2
);
161 set_feature(env
, ARM_FEATURE_V7
);
162 set_feature(env
, ARM_FEATURE_M
);
163 set_feature(env
, ARM_FEATURE_DIV
);
165 case ARM_CPUID_ANY
: /* For userspace emulation. */
166 set_feature(env
, ARM_FEATURE_V4T
);
167 set_feature(env
, ARM_FEATURE_V5
);
168 set_feature(env
, ARM_FEATURE_V6
);
169 set_feature(env
, ARM_FEATURE_V6K
);
170 set_feature(env
, ARM_FEATURE_V7
);
171 set_feature(env
, ARM_FEATURE_THUMB2
);
172 set_feature(env
, ARM_FEATURE_VFP
);
173 set_feature(env
, ARM_FEATURE_VFP3
);
174 set_feature(env
, ARM_FEATURE_VFP_FP16
);
175 set_feature(env
, ARM_FEATURE_NEON
);
176 set_feature(env
, ARM_FEATURE_THUMB2EE
);
177 set_feature(env
, ARM_FEATURE_DIV
);
178 set_feature(env
, ARM_FEATURE_V7MP
);
180 case ARM_CPUID_TI915T
:
181 case ARM_CPUID_TI925T
:
182 set_feature(env
, ARM_FEATURE_V4T
);
183 set_feature(env
, ARM_FEATURE_OMAPCP
);
184 env
->cp15
.c0_cpuid
= ARM_CPUID_TI925T
; /* Depends on wiring. */
185 env
->cp15
.c0_cachetype
= 0x5109149;
186 env
->cp15
.c1_sys
= 0x00000070;
187 env
->cp15
.c15_i_max
= 0x000;
188 env
->cp15
.c15_i_min
= 0xff0;
190 case ARM_CPUID_PXA250
:
191 case ARM_CPUID_PXA255
:
192 case ARM_CPUID_PXA260
:
193 case ARM_CPUID_PXA261
:
194 case ARM_CPUID_PXA262
:
195 set_feature(env
, ARM_FEATURE_V4T
);
196 set_feature(env
, ARM_FEATURE_V5
);
197 set_feature(env
, ARM_FEATURE_XSCALE
);
198 /* JTAG_ID is ((id << 28) | 0x09265013) */
199 env
->cp15
.c0_cachetype
= 0xd172172;
200 env
->cp15
.c1_sys
= 0x00000078;
202 case ARM_CPUID_PXA270_A0
:
203 case ARM_CPUID_PXA270_A1
:
204 case ARM_CPUID_PXA270_B0
:
205 case ARM_CPUID_PXA270_B1
:
206 case ARM_CPUID_PXA270_C0
:
207 case ARM_CPUID_PXA270_C5
:
208 set_feature(env
, ARM_FEATURE_V4T
);
209 set_feature(env
, ARM_FEATURE_V5
);
210 set_feature(env
, ARM_FEATURE_XSCALE
);
211 /* JTAG_ID is ((id << 28) | 0x09265013) */
212 set_feature(env
, ARM_FEATURE_IWMMXT
);
213 env
->iwmmxt
.cregs
[ARM_IWMMXT_wCID
] = 0x69051000 | 'Q';
214 env
->cp15
.c0_cachetype
= 0xd172172;
215 env
->cp15
.c1_sys
= 0x00000078;
217 case ARM_CPUID_SA1100
:
218 case ARM_CPUID_SA1110
:
219 set_feature(env
, ARM_FEATURE_STRONGARM
);
220 env
->cp15
.c1_sys
= 0x00000070;
223 cpu_abort(env
, "Bad CPU ID: %x\n", id
);
228 void cpu_reset(CPUARMState
*env
)
232 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
233 qemu_log("CPU Reset (CPU %d)\n", env
->cpu_index
);
234 log_cpu_state(env
, 0);
237 id
= env
->cp15
.c0_cpuid
;
238 memset(env
, 0, offsetof(CPUARMState
, breakpoints
));
240 cpu_reset_model_id(env
, id
);
241 #if defined (CONFIG_USER_ONLY)
242 env
->uncached_cpsr
= ARM_CPU_MODE_USR
;
243 /* For user mode we must enable access to coprocessors */
244 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 1 << 30;
245 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
246 env
->cp15
.c15_cpar
= 3;
247 } else if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
248 env
->cp15
.c15_cpar
= 1;
251 /* SVC mode with interrupts disabled. */
252 env
->uncached_cpsr
= ARM_CPU_MODE_SVC
| CPSR_A
| CPSR_F
| CPSR_I
;
253 /* On ARMv7-M the CPSR_I is the value of the PRIMASK register, and is
254 clear at reset. Initial SP and PC are loaded from ROM. */
258 env
->uncached_cpsr
&= ~CPSR_I
;
261 /* We should really use ldl_phys here, in case the guest
262 modified flash and reset itself. However images
263 loaded via -kenrel have not been copied yet, so load the
264 values directly from there. */
265 env
->regs
[13] = ldl_p(rom
);
268 env
->regs
[15] = pc
& ~1;
271 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 0;
272 env
->cp15
.c2_base_mask
= 0xffffc000u
;
274 set_flush_to_zero(1, &env
->vfp
.standard_fp_status
);
275 set_flush_inputs_to_zero(1, &env
->vfp
.standard_fp_status
);
276 set_default_nan_mode(1, &env
->vfp
.standard_fp_status
);
277 set_float_detect_tininess(float_tininess_before_rounding
,
278 &env
->vfp
.fp_status
);
279 set_float_detect_tininess(float_tininess_before_rounding
,
280 &env
->vfp
.standard_fp_status
);
284 static int vfp_gdb_get_reg(CPUState
*env
, uint8_t *buf
, int reg
)
288 /* VFP data registers are always little-endian. */
289 nregs
= arm_feature(env
, ARM_FEATURE_VFP3
) ? 32 : 16;
291 stfq_le_p(buf
, env
->vfp
.regs
[reg
]);
294 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
295 /* Aliases for Q regs. */
298 stfq_le_p(buf
, env
->vfp
.regs
[(reg
- 32) * 2]);
299 stfq_le_p(buf
+ 8, env
->vfp
.regs
[(reg
- 32) * 2 + 1]);
303 switch (reg
- nregs
) {
304 case 0: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPSID
]); return 4;
305 case 1: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPSCR
]); return 4;
306 case 2: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPEXC
]); return 4;
311 static int vfp_gdb_set_reg(CPUState
*env
, uint8_t *buf
, int reg
)
315 nregs
= arm_feature(env
, ARM_FEATURE_VFP3
) ? 32 : 16;
317 env
->vfp
.regs
[reg
] = ldfq_le_p(buf
);
320 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
323 env
->vfp
.regs
[(reg
- 32) * 2] = ldfq_le_p(buf
);
324 env
->vfp
.regs
[(reg
- 32) * 2 + 1] = ldfq_le_p(buf
+ 8);
328 switch (reg
- nregs
) {
329 case 0: env
->vfp
.xregs
[ARM_VFP_FPSID
] = ldl_p(buf
); return 4;
330 case 1: env
->vfp
.xregs
[ARM_VFP_FPSCR
] = ldl_p(buf
); return 4;
331 case 2: env
->vfp
.xregs
[ARM_VFP_FPEXC
] = ldl_p(buf
) & (1 << 30); return 4;
336 CPUARMState
*cpu_arm_init(const char *cpu_model
)
340 static int inited
= 0;
342 id
= cpu_arm_find_by_name(cpu_model
);
345 env
= qemu_mallocz(sizeof(CPUARMState
));
349 arm_translate_init();
352 env
->cpu_model_str
= cpu_model
;
353 env
->cp15
.c0_cpuid
= id
;
355 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
356 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
357 51, "arm-neon.xml", 0);
358 } else if (arm_feature(env
, ARM_FEATURE_VFP3
)) {
359 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
360 35, "arm-vfp3.xml", 0);
361 } else if (arm_feature(env
, ARM_FEATURE_VFP
)) {
362 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
363 19, "arm-vfp.xml", 0);
374 static const struct arm_cpu_t arm_cpu_names
[] = {
375 { ARM_CPUID_ARM926
, "arm926"},
376 { ARM_CPUID_ARM946
, "arm946"},
377 { ARM_CPUID_ARM1026
, "arm1026"},
378 { ARM_CPUID_ARM1136
, "arm1136"},
379 { ARM_CPUID_ARM1136_R2
, "arm1136-r2"},
380 { ARM_CPUID_ARM11MPCORE
, "arm11mpcore"},
381 { ARM_CPUID_CORTEXM3
, "cortex-m3"},
382 { ARM_CPUID_CORTEXA8
, "cortex-a8"},
383 { ARM_CPUID_CORTEXA9
, "cortex-a9"},
384 { ARM_CPUID_TI925T
, "ti925t" },
385 { ARM_CPUID_PXA250
, "pxa250" },
386 { ARM_CPUID_SA1100
, "sa1100" },
387 { ARM_CPUID_SA1110
, "sa1110" },
388 { ARM_CPUID_PXA255
, "pxa255" },
389 { ARM_CPUID_PXA260
, "pxa260" },
390 { ARM_CPUID_PXA261
, "pxa261" },
391 { ARM_CPUID_PXA262
, "pxa262" },
392 { ARM_CPUID_PXA270
, "pxa270" },
393 { ARM_CPUID_PXA270_A0
, "pxa270-a0" },
394 { ARM_CPUID_PXA270_A1
, "pxa270-a1" },
395 { ARM_CPUID_PXA270_B0
, "pxa270-b0" },
396 { ARM_CPUID_PXA270_B1
, "pxa270-b1" },
397 { ARM_CPUID_PXA270_C0
, "pxa270-c0" },
398 { ARM_CPUID_PXA270_C5
, "pxa270-c5" },
399 { ARM_CPUID_ANY
, "any"},
403 void arm_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
407 (*cpu_fprintf
)(f
, "Available CPUs:\n");
408 for (i
= 0; arm_cpu_names
[i
].name
; i
++) {
409 (*cpu_fprintf
)(f
, " %s\n", arm_cpu_names
[i
].name
);
413 /* return 0 if not found */
414 static uint32_t cpu_arm_find_by_name(const char *name
)
420 for (i
= 0; arm_cpu_names
[i
].name
; i
++) {
421 if (strcmp(name
, arm_cpu_names
[i
].name
) == 0) {
422 id
= arm_cpu_names
[i
].id
;
429 void cpu_arm_close(CPUARMState
*env
)
434 uint32_t cpsr_read(CPUARMState
*env
)
438 return env
->uncached_cpsr
| (env
->NF
& 0x80000000) | (ZF
<< 30) |
439 (env
->CF
<< 29) | ((env
->VF
& 0x80000000) >> 3) | (env
->QF
<< 27)
440 | (env
->thumb
<< 5) | ((env
->condexec_bits
& 3) << 25)
441 | ((env
->condexec_bits
& 0xfc) << 8)
445 void cpsr_write(CPUARMState
*env
, uint32_t val
, uint32_t mask
)
447 if (mask
& CPSR_NZCV
) {
448 env
->ZF
= (~val
) & CPSR_Z
;
450 env
->CF
= (val
>> 29) & 1;
451 env
->VF
= (val
<< 3) & 0x80000000;
454 env
->QF
= ((val
& CPSR_Q
) != 0);
456 env
->thumb
= ((val
& CPSR_T
) != 0);
457 if (mask
& CPSR_IT_0_1
) {
458 env
->condexec_bits
&= ~3;
459 env
->condexec_bits
|= (val
>> 25) & 3;
461 if (mask
& CPSR_IT_2_7
) {
462 env
->condexec_bits
&= 3;
463 env
->condexec_bits
|= (val
>> 8) & 0xfc;
465 if (mask
& CPSR_GE
) {
466 env
->GE
= (val
>> 16) & 0xf;
469 if ((env
->uncached_cpsr
^ val
) & mask
& CPSR_M
) {
470 switch_mode(env
, val
& CPSR_M
);
472 mask
&= ~CACHED_CPSR_BITS
;
473 env
->uncached_cpsr
= (env
->uncached_cpsr
& ~mask
) | (val
& mask
);
476 /* Sign/zero extend */
477 uint32_t HELPER(sxtb16
)(uint32_t x
)
480 res
= (uint16_t)(int8_t)x
;
481 res
|= (uint32_t)(int8_t)(x
>> 16) << 16;
485 uint32_t HELPER(uxtb16
)(uint32_t x
)
488 res
= (uint16_t)(uint8_t)x
;
489 res
|= (uint32_t)(uint8_t)(x
>> 16) << 16;
493 uint32_t HELPER(clz
)(uint32_t x
)
498 int32_t HELPER(sdiv
)(int32_t num
, int32_t den
)
502 if (num
== INT_MIN
&& den
== -1)
507 uint32_t HELPER(udiv
)(uint32_t num
, uint32_t den
)
514 uint32_t HELPER(rbit
)(uint32_t x
)
516 x
= ((x
& 0xff000000) >> 24)
517 | ((x
& 0x00ff0000) >> 8)
518 | ((x
& 0x0000ff00) << 8)
519 | ((x
& 0x000000ff) << 24);
520 x
= ((x
& 0xf0f0f0f0) >> 4)
521 | ((x
& 0x0f0f0f0f) << 4);
522 x
= ((x
& 0x88888888) >> 3)
523 | ((x
& 0x44444444) >> 1)
524 | ((x
& 0x22222222) << 1)
525 | ((x
& 0x11111111) << 3);
529 uint32_t HELPER(abs
)(uint32_t x
)
531 return ((int32_t)x
< 0) ? -x
: x
;
534 #if defined(CONFIG_USER_ONLY)
536 void do_interrupt (CPUState
*env
)
538 env
->exception_index
= -1;
541 int cpu_arm_handle_mmu_fault (CPUState
*env
, target_ulong address
, int rw
,
542 int mmu_idx
, int is_softmmu
)
545 env
->exception_index
= EXCP_PREFETCH_ABORT
;
546 env
->cp15
.c6_insn
= address
;
548 env
->exception_index
= EXCP_DATA_ABORT
;
549 env
->cp15
.c6_data
= address
;
554 /* These should probably raise undefined insn exceptions. */
555 void HELPER(set_cp
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
557 int op1
= (insn
>> 8) & 0xf;
558 cpu_abort(env
, "cp%i insn %08x\n", op1
, insn
);
562 uint32_t HELPER(get_cp
)(CPUState
*env
, uint32_t insn
)
564 int op1
= (insn
>> 8) & 0xf;
565 cpu_abort(env
, "cp%i insn %08x\n", op1
, insn
);
569 void HELPER(set_cp15
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
571 cpu_abort(env
, "cp15 insn %08x\n", insn
);
574 uint32_t HELPER(get_cp15
)(CPUState
*env
, uint32_t insn
)
576 cpu_abort(env
, "cp15 insn %08x\n", insn
);
579 /* These should probably raise undefined insn exceptions. */
580 void HELPER(v7m_msr
)(CPUState
*env
, uint32_t reg
, uint32_t val
)
582 cpu_abort(env
, "v7m_mrs %d\n", reg
);
585 uint32_t HELPER(v7m_mrs
)(CPUState
*env
, uint32_t reg
)
587 cpu_abort(env
, "v7m_mrs %d\n", reg
);
591 void switch_mode(CPUState
*env
, int mode
)
593 if (mode
!= ARM_CPU_MODE_USR
)
594 cpu_abort(env
, "Tried to switch out of user mode\n");
597 void HELPER(set_r13_banked
)(CPUState
*env
, uint32_t mode
, uint32_t val
)
599 cpu_abort(env
, "banked r13 write\n");
602 uint32_t HELPER(get_r13_banked
)(CPUState
*env
, uint32_t mode
)
604 cpu_abort(env
, "banked r13 read\n");
610 extern int semihosting_enabled
;
612 /* Map CPU modes onto saved register banks. */
613 static inline int bank_number (int mode
)
616 case ARM_CPU_MODE_USR
:
617 case ARM_CPU_MODE_SYS
:
619 case ARM_CPU_MODE_SVC
:
621 case ARM_CPU_MODE_ABT
:
623 case ARM_CPU_MODE_UND
:
625 case ARM_CPU_MODE_IRQ
:
627 case ARM_CPU_MODE_FIQ
:
630 cpu_abort(cpu_single_env
, "Bad mode %x\n", mode
);
634 void switch_mode(CPUState
*env
, int mode
)
639 old_mode
= env
->uncached_cpsr
& CPSR_M
;
640 if (mode
== old_mode
)
643 if (old_mode
== ARM_CPU_MODE_FIQ
) {
644 memcpy (env
->fiq_regs
, env
->regs
+ 8, 5 * sizeof(uint32_t));
645 memcpy (env
->regs
+ 8, env
->usr_regs
, 5 * sizeof(uint32_t));
646 } else if (mode
== ARM_CPU_MODE_FIQ
) {
647 memcpy (env
->usr_regs
, env
->regs
+ 8, 5 * sizeof(uint32_t));
648 memcpy (env
->regs
+ 8, env
->fiq_regs
, 5 * sizeof(uint32_t));
651 i
= bank_number(old_mode
);
652 env
->banked_r13
[i
] = env
->regs
[13];
653 env
->banked_r14
[i
] = env
->regs
[14];
654 env
->banked_spsr
[i
] = env
->spsr
;
656 i
= bank_number(mode
);
657 env
->regs
[13] = env
->banked_r13
[i
];
658 env
->regs
[14] = env
->banked_r14
[i
];
659 env
->spsr
= env
->banked_spsr
[i
];
662 static void v7m_push(CPUARMState
*env
, uint32_t val
)
665 stl_phys(env
->regs
[13], val
);
668 static uint32_t v7m_pop(CPUARMState
*env
)
671 val
= ldl_phys(env
->regs
[13]);
676 /* Switch to V7M main or process stack pointer. */
677 static void switch_v7m_sp(CPUARMState
*env
, int process
)
680 if (env
->v7m
.current_sp
!= process
) {
681 tmp
= env
->v7m
.other_sp
;
682 env
->v7m
.other_sp
= env
->regs
[13];
684 env
->v7m
.current_sp
= process
;
688 static void do_v7m_exception_exit(CPUARMState
*env
)
693 type
= env
->regs
[15];
694 if (env
->v7m
.exception
!= 0)
695 armv7m_nvic_complete_irq(env
->nvic
, env
->v7m
.exception
);
697 /* Switch to the target stack. */
698 switch_v7m_sp(env
, (type
& 4) != 0);
700 env
->regs
[0] = v7m_pop(env
);
701 env
->regs
[1] = v7m_pop(env
);
702 env
->regs
[2] = v7m_pop(env
);
703 env
->regs
[3] = v7m_pop(env
);
704 env
->regs
[12] = v7m_pop(env
);
705 env
->regs
[14] = v7m_pop(env
);
706 env
->regs
[15] = v7m_pop(env
);
708 xpsr_write(env
, xpsr
, 0xfffffdff);
709 /* Undo stack alignment. */
712 /* ??? The exception return type specifies Thread/Handler mode. However
713 this is also implied by the xPSR value. Not sure what to do
714 if there is a mismatch. */
715 /* ??? Likewise for mismatches between the CONTROL register and the stack
719 static void do_interrupt_v7m(CPUARMState
*env
)
721 uint32_t xpsr
= xpsr_read(env
);
726 if (env
->v7m
.current_sp
)
728 if (env
->v7m
.exception
== 0)
731 /* For exceptions we just mark as pending on the NVIC, and let that
733 /* TODO: Need to escalate if the current priority is higher than the
734 one we're raising. */
735 switch (env
->exception_index
) {
737 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_USAGE
);
741 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_SVC
);
743 case EXCP_PREFETCH_ABORT
:
744 case EXCP_DATA_ABORT
:
745 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_MEM
);
748 if (semihosting_enabled
) {
750 nr
= lduw_code(env
->regs
[15]) & 0xff;
753 env
->regs
[0] = do_arm_semihosting(env
);
757 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_DEBUG
);
760 env
->v7m
.exception
= armv7m_nvic_acknowledge_irq(env
->nvic
);
762 case EXCP_EXCEPTION_EXIT
:
763 do_v7m_exception_exit(env
);
766 cpu_abort(env
, "Unhandled exception 0x%x\n", env
->exception_index
);
767 return; /* Never happens. Keep compiler happy. */
770 /* Align stack pointer. */
771 /* ??? Should only do this if Configuration Control Register
772 STACKALIGN bit is set. */
773 if (env
->regs
[13] & 4) {
777 /* Switch to the handler mode. */
779 v7m_push(env
, env
->regs
[15]);
780 v7m_push(env
, env
->regs
[14]);
781 v7m_push(env
, env
->regs
[12]);
782 v7m_push(env
, env
->regs
[3]);
783 v7m_push(env
, env
->regs
[2]);
784 v7m_push(env
, env
->regs
[1]);
785 v7m_push(env
, env
->regs
[0]);
786 switch_v7m_sp(env
, 0);
787 env
->uncached_cpsr
&= ~CPSR_IT
;
789 addr
= ldl_phys(env
->v7m
.vecbase
+ env
->v7m
.exception
* 4);
790 env
->regs
[15] = addr
& 0xfffffffe;
791 env
->thumb
= addr
& 1;
794 /* Handle a CPU exception. */
795 void do_interrupt(CPUARMState
*env
)
803 do_interrupt_v7m(env
);
806 /* TODO: Vectored interrupt controller. */
807 switch (env
->exception_index
) {
809 new_mode
= ARM_CPU_MODE_UND
;
818 if (semihosting_enabled
) {
819 /* Check for semihosting interrupt. */
821 mask
= lduw_code(env
->regs
[15] - 2) & 0xff;
823 mask
= ldl_code(env
->regs
[15] - 4) & 0xffffff;
825 /* Only intercept calls from privileged modes, to provide some
826 semblance of security. */
827 if (((mask
== 0x123456 && !env
->thumb
)
828 || (mask
== 0xab && env
->thumb
))
829 && (env
->uncached_cpsr
& CPSR_M
) != ARM_CPU_MODE_USR
) {
830 env
->regs
[0] = do_arm_semihosting(env
);
834 new_mode
= ARM_CPU_MODE_SVC
;
837 /* The PC already points to the next instruction. */
841 /* See if this is a semihosting syscall. */
842 if (env
->thumb
&& semihosting_enabled
) {
843 mask
= lduw_code(env
->regs
[15]) & 0xff;
845 && (env
->uncached_cpsr
& CPSR_M
) != ARM_CPU_MODE_USR
) {
847 env
->regs
[0] = do_arm_semihosting(env
);
851 /* Fall through to prefetch abort. */
852 case EXCP_PREFETCH_ABORT
:
853 new_mode
= ARM_CPU_MODE_ABT
;
855 mask
= CPSR_A
| CPSR_I
;
858 case EXCP_DATA_ABORT
:
859 new_mode
= ARM_CPU_MODE_ABT
;
861 mask
= CPSR_A
| CPSR_I
;
865 new_mode
= ARM_CPU_MODE_IRQ
;
867 /* Disable IRQ and imprecise data aborts. */
868 mask
= CPSR_A
| CPSR_I
;
872 new_mode
= ARM_CPU_MODE_FIQ
;
874 /* Disable FIQ, IRQ and imprecise data aborts. */
875 mask
= CPSR_A
| CPSR_I
| CPSR_F
;
879 cpu_abort(env
, "Unhandled exception 0x%x\n", env
->exception_index
);
880 return; /* Never happens. Keep compiler happy. */
883 if (env
->cp15
.c1_sys
& (1 << 13)) {
886 switch_mode (env
, new_mode
);
887 env
->spsr
= cpsr_read(env
);
889 env
->condexec_bits
= 0;
890 /* Switch to the new mode, and to the correct instruction set. */
891 env
->uncached_cpsr
= (env
->uncached_cpsr
& ~CPSR_M
) | new_mode
;
892 env
->uncached_cpsr
|= mask
;
893 /* this is a lie, as the was no c1_sys on V4T/V5, but who cares
894 * and we should just guard the thumb mode on V4 */
895 if (arm_feature(env
, ARM_FEATURE_V4T
)) {
896 env
->thumb
= (env
->cp15
.c1_sys
& (1 << 30)) != 0;
898 env
->regs
[14] = env
->regs
[15] + offset
;
899 env
->regs
[15] = addr
;
900 env
->interrupt_request
|= CPU_INTERRUPT_EXITTB
;
903 /* Check section/page access permissions.
904 Returns the page protection flags, or zero if the access is not
906 static inline int check_ap(CPUState
*env
, int ap
, int domain
, int access_type
,
912 return PAGE_READ
| PAGE_WRITE
;
914 if (access_type
== 1)
921 if (access_type
== 1)
923 switch ((env
->cp15
.c1_sys
>> 8) & 3) {
925 return is_user
? 0 : PAGE_READ
;
932 return is_user
? 0 : PAGE_READ
| PAGE_WRITE
;
937 return PAGE_READ
| PAGE_WRITE
;
939 return PAGE_READ
| PAGE_WRITE
;
940 case 4: /* Reserved. */
943 return is_user
? 0 : prot_ro
;
947 if (!arm_feature (env
, ARM_FEATURE_V7
))
955 static uint32_t get_level1_table_address(CPUState
*env
, uint32_t address
)
959 if (address
& env
->cp15
.c2_mask
)
960 table
= env
->cp15
.c2_base1
& 0xffffc000;
962 table
= env
->cp15
.c2_base0
& env
->cp15
.c2_base_mask
;
964 table
|= (address
>> 18) & 0x3ffc;
968 static int get_phys_addr_v5(CPUState
*env
, uint32_t address
, int access_type
,
969 int is_user
, uint32_t *phys_ptr
, int *prot
,
970 target_ulong
*page_size
)
980 /* Pagetable walk. */
981 /* Lookup l1 descriptor. */
982 table
= get_level1_table_address(env
, address
);
983 desc
= ldl_phys(table
);
985 domain
= (env
->cp15
.c3
>> ((desc
>> 4) & 0x1e)) & 3;
987 /* Section translation fault. */
991 if (domain
== 0 || domain
== 2) {
993 code
= 9; /* Section domain fault. */
995 code
= 11; /* Page domain fault. */
1000 phys_addr
= (desc
& 0xfff00000) | (address
& 0x000fffff);
1001 ap
= (desc
>> 10) & 3;
1003 *page_size
= 1024 * 1024;
1005 /* Lookup l2 entry. */
1007 /* Coarse pagetable. */
1008 table
= (desc
& 0xfffffc00) | ((address
>> 10) & 0x3fc);
1010 /* Fine pagetable. */
1011 table
= (desc
& 0xfffff000) | ((address
>> 8) & 0xffc);
1013 desc
= ldl_phys(table
);
1015 case 0: /* Page translation fault. */
1018 case 1: /* 64k page. */
1019 phys_addr
= (desc
& 0xffff0000) | (address
& 0xffff);
1020 ap
= (desc
>> (4 + ((address
>> 13) & 6))) & 3;
1021 *page_size
= 0x10000;
1023 case 2: /* 4k page. */
1024 phys_addr
= (desc
& 0xfffff000) | (address
& 0xfff);
1025 ap
= (desc
>> (4 + ((address
>> 13) & 6))) & 3;
1026 *page_size
= 0x1000;
1028 case 3: /* 1k page. */
1030 if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
1031 phys_addr
= (desc
& 0xfffff000) | (address
& 0xfff);
1033 /* Page translation fault. */
1038 phys_addr
= (desc
& 0xfffffc00) | (address
& 0x3ff);
1040 ap
= (desc
>> 4) & 3;
1044 /* Never happens, but compiler isn't smart enough to tell. */
1049 *prot
= check_ap(env
, ap
, domain
, access_type
, is_user
);
1051 /* Access permission fault. */
1055 *phys_ptr
= phys_addr
;
1058 return code
| (domain
<< 4);
1061 static int get_phys_addr_v6(CPUState
*env
, uint32_t address
, int access_type
,
1062 int is_user
, uint32_t *phys_ptr
, int *prot
,
1063 target_ulong
*page_size
)
1074 /* Pagetable walk. */
1075 /* Lookup l1 descriptor. */
1076 table
= get_level1_table_address(env
, address
);
1077 desc
= ldl_phys(table
);
1080 /* Section translation fault. */
1084 } else if (type
== 2 && (desc
& (1 << 18))) {
1088 /* Section or page. */
1089 domain
= (desc
>> 4) & 0x1e;
1091 domain
= (env
->cp15
.c3
>> domain
) & 3;
1092 if (domain
== 0 || domain
== 2) {
1094 code
= 9; /* Section domain fault. */
1096 code
= 11; /* Page domain fault. */
1100 if (desc
& (1 << 18)) {
1102 phys_addr
= (desc
& 0xff000000) | (address
& 0x00ffffff);
1103 *page_size
= 0x1000000;
1106 phys_addr
= (desc
& 0xfff00000) | (address
& 0x000fffff);
1107 *page_size
= 0x100000;
1109 ap
= ((desc
>> 10) & 3) | ((desc
>> 13) & 4);
1110 xn
= desc
& (1 << 4);
1113 /* Lookup l2 entry. */
1114 table
= (desc
& 0xfffffc00) | ((address
>> 10) & 0x3fc);
1115 desc
= ldl_phys(table
);
1116 ap
= ((desc
>> 4) & 3) | ((desc
>> 7) & 4);
1118 case 0: /* Page translation fault. */
1121 case 1: /* 64k page. */
1122 phys_addr
= (desc
& 0xffff0000) | (address
& 0xffff);
1123 xn
= desc
& (1 << 15);
1124 *page_size
= 0x10000;
1126 case 2: case 3: /* 4k page. */
1127 phys_addr
= (desc
& 0xfffff000) | (address
& 0xfff);
1129 *page_size
= 0x1000;
1132 /* Never happens, but compiler isn't smart enough to tell. */
1138 *prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
1140 if (xn
&& access_type
== 2)
1143 /* The simplified model uses AP[0] as an access control bit. */
1144 if ((env
->cp15
.c1_sys
& (1 << 29)) && (ap
& 1) == 0) {
1145 /* Access flag fault. */
1146 code
= (code
== 15) ? 6 : 3;
1149 *prot
= check_ap(env
, ap
, domain
, access_type
, is_user
);
1151 /* Access permission fault. */
1158 *phys_ptr
= phys_addr
;
1161 return code
| (domain
<< 4);
1164 static int get_phys_addr_mpu(CPUState
*env
, uint32_t address
, int access_type
,
1165 int is_user
, uint32_t *phys_ptr
, int *prot
)
1171 *phys_ptr
= address
;
1172 for (n
= 7; n
>= 0; n
--) {
1173 base
= env
->cp15
.c6_region
[n
];
1174 if ((base
& 1) == 0)
1176 mask
= 1 << ((base
>> 1) & 0x1f);
1177 /* Keep this shift separate from the above to avoid an
1178 (undefined) << 32. */
1179 mask
= (mask
<< 1) - 1;
1180 if (((base
^ address
) & ~mask
) == 0)
1186 if (access_type
== 2) {
1187 mask
= env
->cp15
.c5_insn
;
1189 mask
= env
->cp15
.c5_data
;
1191 mask
= (mask
>> (n
* 4)) & 0xf;
1198 *prot
= PAGE_READ
| PAGE_WRITE
;
1203 *prot
|= PAGE_WRITE
;
1206 *prot
= PAGE_READ
| PAGE_WRITE
;
1217 /* Bad permission. */
1224 static inline int get_phys_addr(CPUState
*env
, uint32_t address
,
1225 int access_type
, int is_user
,
1226 uint32_t *phys_ptr
, int *prot
,
1227 target_ulong
*page_size
)
1229 /* Fast Context Switch Extension. */
1230 if (address
< 0x02000000)
1231 address
+= env
->cp15
.c13_fcse
;
1233 if ((env
->cp15
.c1_sys
& 1) == 0) {
1234 /* MMU/MPU disabled. */
1235 *phys_ptr
= address
;
1236 *prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
1237 *page_size
= TARGET_PAGE_SIZE
;
1239 } else if (arm_feature(env
, ARM_FEATURE_MPU
)) {
1240 *page_size
= TARGET_PAGE_SIZE
;
1241 return get_phys_addr_mpu(env
, address
, access_type
, is_user
, phys_ptr
,
1243 } else if (env
->cp15
.c1_sys
& (1 << 23)) {
1244 return get_phys_addr_v6(env
, address
, access_type
, is_user
, phys_ptr
,
1247 return get_phys_addr_v5(env
, address
, access_type
, is_user
, phys_ptr
,
1252 int cpu_arm_handle_mmu_fault (CPUState
*env
, target_ulong address
,
1253 int access_type
, int mmu_idx
, int is_softmmu
)
1256 target_ulong page_size
;
1260 is_user
= mmu_idx
== MMU_USER_IDX
;
1261 ret
= get_phys_addr(env
, address
, access_type
, is_user
, &phys_addr
, &prot
,
1264 /* Map a single [sub]page. */
1265 phys_addr
&= ~(uint32_t)0x3ff;
1266 address
&= ~(uint32_t)0x3ff;
1267 tlb_set_page (env
, address
, phys_addr
, prot
, mmu_idx
, page_size
);
1271 if (access_type
== 2) {
1272 env
->cp15
.c5_insn
= ret
;
1273 env
->cp15
.c6_insn
= address
;
1274 env
->exception_index
= EXCP_PREFETCH_ABORT
;
1276 env
->cp15
.c5_data
= ret
;
1277 if (access_type
== 1 && arm_feature(env
, ARM_FEATURE_V6
))
1278 env
->cp15
.c5_data
|= (1 << 11);
1279 env
->cp15
.c6_data
= address
;
1280 env
->exception_index
= EXCP_DATA_ABORT
;
1285 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
)
1288 target_ulong page_size
;
1292 ret
= get_phys_addr(env
, addr
, 0, 0, &phys_addr
, &prot
, &page_size
);
1300 void HELPER(set_cp
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
1302 int cp_num
= (insn
>> 8) & 0xf;
1303 int cp_info
= (insn
>> 5) & 7;
1304 int src
= (insn
>> 16) & 0xf;
1305 int operand
= insn
& 0xf;
1307 if (env
->cp
[cp_num
].cp_write
)
1308 env
->cp
[cp_num
].cp_write(env
->cp
[cp_num
].opaque
,
1309 cp_info
, src
, operand
, val
);
1312 uint32_t HELPER(get_cp
)(CPUState
*env
, uint32_t insn
)
1314 int cp_num
= (insn
>> 8) & 0xf;
1315 int cp_info
= (insn
>> 5) & 7;
1316 int dest
= (insn
>> 16) & 0xf;
1317 int operand
= insn
& 0xf;
1319 if (env
->cp
[cp_num
].cp_read
)
1320 return env
->cp
[cp_num
].cp_read(env
->cp
[cp_num
].opaque
,
1321 cp_info
, dest
, operand
);
1325 /* Return basic MPU access permission bits. */
1326 static uint32_t simple_mpu_ap_bits(uint32_t val
)
1333 for (i
= 0; i
< 16; i
+= 2) {
1334 ret
|= (val
>> i
) & mask
;
1340 /* Pad basic MPU access permission bits to extended format. */
1341 static uint32_t extended_mpu_ap_bits(uint32_t val
)
1348 for (i
= 0; i
< 16; i
+= 2) {
1349 ret
|= (val
& mask
) << i
;
1355 void HELPER(set_cp15
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
1361 op1
= (insn
>> 21) & 7;
1362 op2
= (insn
>> 5) & 7;
1364 switch ((insn
>> 16) & 0xf) {
1367 if (arm_feature(env
, ARM_FEATURE_XSCALE
))
1369 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1371 if (arm_feature(env
, ARM_FEATURE_V7
)
1372 && op1
== 2 && crm
== 0 && op2
== 0) {
1373 env
->cp15
.c0_cssel
= val
& 0xf;
1377 case 1: /* System configuration. */
1378 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1382 if (!arm_feature(env
, ARM_FEATURE_XSCALE
) || crm
== 0)
1383 env
->cp15
.c1_sys
= val
;
1384 /* ??? Lots of these bits are not implemented. */
1385 /* This may enable/disable the MMU, so do a TLB flush. */
1388 case 1: /* Auxiliary control register. */
1389 if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
1390 env
->cp15
.c1_xscaleauxcr
= val
;
1393 /* Not implemented. */
1396 if (arm_feature(env
, ARM_FEATURE_XSCALE
))
1398 if (env
->cp15
.c1_coproc
!= val
) {
1399 env
->cp15
.c1_coproc
= val
;
1400 /* ??? Is this safe when called from within a TB? */
1408 case 2: /* MMU Page table control / MPU cache control. */
1409 if (arm_feature(env
, ARM_FEATURE_MPU
)) {
1412 env
->cp15
.c2_data
= val
;
1415 env
->cp15
.c2_insn
= val
;
1423 env
->cp15
.c2_base0
= val
;
1426 env
->cp15
.c2_base1
= val
;
1430 env
->cp15
.c2_control
= val
;
1431 env
->cp15
.c2_mask
= ~(((uint32_t)0xffffffffu
) >> val
);
1432 env
->cp15
.c2_base_mask
= ~((uint32_t)0x3fffu
>> val
);
1439 case 3: /* MMU Domain access control / MPU write buffer control. */
1441 tlb_flush(env
, 1); /* Flush TLB as domain not tracked in TLB */
1443 case 4: /* Reserved. */
1445 case 5: /* MMU Fault status / MPU access permission. */
1446 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1450 if (arm_feature(env
, ARM_FEATURE_MPU
))
1451 val
= extended_mpu_ap_bits(val
);
1452 env
->cp15
.c5_data
= val
;
1455 if (arm_feature(env
, ARM_FEATURE_MPU
))
1456 val
= extended_mpu_ap_bits(val
);
1457 env
->cp15
.c5_insn
= val
;
1460 if (!arm_feature(env
, ARM_FEATURE_MPU
))
1462 env
->cp15
.c5_data
= val
;
1465 if (!arm_feature(env
, ARM_FEATURE_MPU
))
1467 env
->cp15
.c5_insn
= val
;
1473 case 6: /* MMU Fault address / MPU base/size. */
1474 if (arm_feature(env
, ARM_FEATURE_MPU
)) {
1477 env
->cp15
.c6_region
[crm
] = val
;
1479 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1483 env
->cp15
.c6_data
= val
;
1485 case 1: /* ??? This is WFAR on armv6 */
1487 env
->cp15
.c6_insn
= val
;
1494 case 7: /* Cache control. */
1495 env
->cp15
.c15_i_max
= 0x000;
1496 env
->cp15
.c15_i_min
= 0xff0;
1500 /* No cache, so nothing to do except VA->PA translations. */
1501 if (arm_feature(env
, ARM_FEATURE_V6K
)) {
1504 if (arm_feature(env
, ARM_FEATURE_V7
)) {
1505 env
->cp15
.c7_par
= val
& 0xfffff6ff;
1507 env
->cp15
.c7_par
= val
& 0xfffff1ff;
1512 target_ulong page_size
;
1514 int ret
, is_user
= op2
& 2;
1515 int access_type
= op2
& 1;
1518 /* Other states are only available with TrustZone */
1521 ret
= get_phys_addr(env
, val
, access_type
, is_user
,
1522 &phys_addr
, &prot
, &page_size
);
1524 /* We do not set any attribute bits in the PAR */
1525 if (page_size
== (1 << 24)
1526 && arm_feature(env
, ARM_FEATURE_V7
)) {
1527 env
->cp15
.c7_par
= (phys_addr
& 0xff000000) | 1 << 1;
1529 env
->cp15
.c7_par
= phys_addr
& 0xfffff000;
1532 env
->cp15
.c7_par
= ((ret
& (10 << 1)) >> 5) |
1533 ((ret
& (12 << 1)) >> 6) |
1534 ((ret
& 0xf) << 1) | 1;
1541 case 8: /* MMU TLB control. */
1543 case 0: /* Invalidate all. */
1546 case 1: /* Invalidate single TLB entry. */
1547 tlb_flush_page(env
, val
& TARGET_PAGE_MASK
);
1549 case 2: /* Invalidate on ASID. */
1550 tlb_flush(env
, val
== 0);
1552 case 3: /* Invalidate single entry on MVA. */
1553 /* ??? This is like case 1, but ignores ASID. */
1561 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1563 if (arm_feature(env
, ARM_FEATURE_STRONGARM
))
1564 break; /* Ignore ReadBuffer access */
1566 case 0: /* Cache lockdown. */
1568 case 0: /* L1 cache. */
1571 env
->cp15
.c9_data
= val
;
1574 env
->cp15
.c9_insn
= val
;
1580 case 1: /* L2 cache. */
1581 /* Ignore writes to L2 lockdown/auxiliary registers. */
1587 case 1: /* TCM memory region registers. */
1588 /* Not implemented. */
1594 case 10: /* MMU TLB lockdown. */
1595 /* ??? TLB lockdown not implemented. */
1597 case 12: /* Reserved. */
1599 case 13: /* Process ID. */
1602 /* Unlike real hardware the qemu TLB uses virtual addresses,
1603 not modified virtual addresses, so this causes a TLB flush.
1605 if (env
->cp15
.c13_fcse
!= val
)
1607 env
->cp15
.c13_fcse
= val
;
1610 /* This changes the ASID, so do a TLB flush. */
1611 if (env
->cp15
.c13_context
!= val
1612 && !arm_feature(env
, ARM_FEATURE_MPU
))
1614 env
->cp15
.c13_context
= val
;
1620 case 14: /* Reserved. */
1622 case 15: /* Implementation specific. */
1623 if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
1624 if (op2
== 0 && crm
== 1) {
1625 if (env
->cp15
.c15_cpar
!= (val
& 0x3fff)) {
1626 /* Changes cp0 to cp13 behavior, so needs a TB flush. */
1628 env
->cp15
.c15_cpar
= val
& 0x3fff;
1634 if (arm_feature(env
, ARM_FEATURE_OMAPCP
)) {
1638 case 1: /* Set TI925T configuration. */
1639 env
->cp15
.c15_ticonfig
= val
& 0xe7;
1640 env
->cp15
.c0_cpuid
= (val
& (1 << 5)) ? /* OS_TYPE bit */
1641 ARM_CPUID_TI915T
: ARM_CPUID_TI925T
;
1643 case 2: /* Set I_max. */
1644 env
->cp15
.c15_i_max
= val
;
1646 case 3: /* Set I_min. */
1647 env
->cp15
.c15_i_min
= val
;
1649 case 4: /* Set thread-ID. */
1650 env
->cp15
.c15_threadid
= val
& 0xffff;
1652 case 8: /* Wait-for-interrupt (deprecated). */
1653 cpu_interrupt(env
, CPU_INTERRUPT_HALT
);
1663 /* ??? For debugging only. Should raise illegal instruction exception. */
1664 cpu_abort(env
, "Unimplemented cp15 register write (c%d, c%d, {%d, %d})\n",
1665 (insn
>> 16) & 0xf, crm
, op1
, op2
);
1668 uint32_t HELPER(get_cp15
)(CPUState
*env
, uint32_t insn
)
1674 op1
= (insn
>> 21) & 7;
1675 op2
= (insn
>> 5) & 7;
1677 switch ((insn
>> 16) & 0xf) {
1678 case 0: /* ID codes. */
1684 case 0: /* Device ID. */
1685 return env
->cp15
.c0_cpuid
;
1686 case 1: /* Cache Type. */
1687 return env
->cp15
.c0_cachetype
;
1688 case 2: /* TCM status. */
1690 case 3: /* TLB type register. */
1691 return 0; /* No lockable TLB entries. */
1693 /* The MPIDR was standardised in v7; prior to
1694 * this it was implemented only in the 11MPCore.
1695 * For all other pre-v7 cores it does not exist.
1697 if (arm_feature(env
, ARM_FEATURE_V7
) ||
1698 ARM_CPUID(env
) == ARM_CPUID_ARM11MPCORE
) {
1699 int mpidr
= env
->cpu_index
;
1700 /* We don't support setting cluster ID ([8..11])
1701 * so these bits always RAZ.
1703 if (arm_feature(env
, ARM_FEATURE_V7MP
)) {
1705 /* Cores which are uniprocessor (non-coherent)
1706 * but still implement the MP extensions set
1707 * bit 30. (For instance, A9UP.) However we do
1708 * not currently model any of those cores.
1713 /* otherwise fall through to the unimplemented-reg case */
1718 if (!arm_feature(env
, ARM_FEATURE_V6
))
1720 return env
->cp15
.c0_c1
[op2
];
1722 if (!arm_feature(env
, ARM_FEATURE_V6
))
1724 return env
->cp15
.c0_c2
[op2
];
1725 case 3: case 4: case 5: case 6: case 7:
1731 /* These registers aren't documented on arm11 cores. However
1732 Linux looks at them anyway. */
1733 if (!arm_feature(env
, ARM_FEATURE_V6
))
1737 if (!arm_feature(env
, ARM_FEATURE_V7
))
1742 return env
->cp15
.c0_ccsid
[env
->cp15
.c0_cssel
];
1744 return env
->cp15
.c0_clid
;
1750 if (op2
!= 0 || crm
!= 0)
1752 return env
->cp15
.c0_cssel
;
1756 case 1: /* System configuration. */
1757 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1760 case 0: /* Control register. */
1761 return env
->cp15
.c1_sys
;
1762 case 1: /* Auxiliary control register. */
1763 if (arm_feature(env
, ARM_FEATURE_XSCALE
))
1764 return env
->cp15
.c1_xscaleauxcr
;
1765 if (!arm_feature(env
, ARM_FEATURE_AUXCR
))
1767 switch (ARM_CPUID(env
)) {
1768 case ARM_CPUID_ARM1026
:
1770 case ARM_CPUID_ARM1136
:
1771 case ARM_CPUID_ARM1136_R2
:
1773 case ARM_CPUID_ARM11MPCORE
:
1775 case ARM_CPUID_CORTEXA8
:
1777 case ARM_CPUID_CORTEXA9
:
1782 case 2: /* Coprocessor access register. */
1783 if (arm_feature(env
, ARM_FEATURE_XSCALE
))
1785 return env
->cp15
.c1_coproc
;
1789 case 2: /* MMU Page table control / MPU cache control. */
1790 if (arm_feature(env
, ARM_FEATURE_MPU
)) {
1793 return env
->cp15
.c2_data
;
1796 return env
->cp15
.c2_insn
;
1804 return env
->cp15
.c2_base0
;
1806 return env
->cp15
.c2_base1
;
1808 return env
->cp15
.c2_control
;
1813 case 3: /* MMU Domain access control / MPU write buffer control. */
1814 return env
->cp15
.c3
;
1815 case 4: /* Reserved. */
1817 case 5: /* MMU Fault status / MPU access permission. */
1818 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1822 if (arm_feature(env
, ARM_FEATURE_MPU
))
1823 return simple_mpu_ap_bits(env
->cp15
.c5_data
);
1824 return env
->cp15
.c5_data
;
1826 if (arm_feature(env
, ARM_FEATURE_MPU
))
1827 return simple_mpu_ap_bits(env
->cp15
.c5_data
);
1828 return env
->cp15
.c5_insn
;
1830 if (!arm_feature(env
, ARM_FEATURE_MPU
))
1832 return env
->cp15
.c5_data
;
1834 if (!arm_feature(env
, ARM_FEATURE_MPU
))
1836 return env
->cp15
.c5_insn
;
1840 case 6: /* MMU Fault address. */
1841 if (arm_feature(env
, ARM_FEATURE_MPU
)) {
1844 return env
->cp15
.c6_region
[crm
];
1846 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1850 return env
->cp15
.c6_data
;
1852 if (arm_feature(env
, ARM_FEATURE_V6
)) {
1853 /* Watchpoint Fault Adrress. */
1854 return 0; /* Not implemented. */
1856 /* Instruction Fault Adrress. */
1857 /* Arm9 doesn't have an IFAR, but implementing it anyway
1858 shouldn't do any harm. */
1859 return env
->cp15
.c6_insn
;
1862 if (arm_feature(env
, ARM_FEATURE_V6
)) {
1863 /* Instruction Fault Adrress. */
1864 return env
->cp15
.c6_insn
;
1872 case 7: /* Cache control. */
1873 if (crm
== 4 && op1
== 0 && op2
== 0) {
1874 return env
->cp15
.c7_par
;
1876 /* FIXME: Should only clear Z flag if destination is r15. */
1879 case 8: /* MMU TLB control. */
1881 case 9: /* Cache lockdown. */
1883 case 0: /* L1 cache. */
1884 if (arm_feature(env
, ARM_FEATURE_OMAPCP
))
1888 return env
->cp15
.c9_data
;
1890 return env
->cp15
.c9_insn
;
1894 case 1: /* L2 cache */
1897 /* L2 Lockdown and Auxiliary control. */
1902 case 10: /* MMU TLB lockdown. */
1903 /* ??? TLB lockdown not implemented. */
1905 case 11: /* TCM DMA control. */
1906 case 12: /* Reserved. */
1908 case 13: /* Process ID. */
1911 return env
->cp15
.c13_fcse
;
1913 return env
->cp15
.c13_context
;
1917 case 14: /* Reserved. */
1919 case 15: /* Implementation specific. */
1920 if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
1921 if (op2
== 0 && crm
== 1)
1922 return env
->cp15
.c15_cpar
;
1926 if (arm_feature(env
, ARM_FEATURE_OMAPCP
)) {
1930 case 1: /* Read TI925T configuration. */
1931 return env
->cp15
.c15_ticonfig
;
1932 case 2: /* Read I_max. */
1933 return env
->cp15
.c15_i_max
;
1934 case 3: /* Read I_min. */
1935 return env
->cp15
.c15_i_min
;
1936 case 4: /* Read thread-ID. */
1937 return env
->cp15
.c15_threadid
;
1938 case 8: /* TI925T_status */
1941 /* TODO: Peripheral port remap register:
1942 * On OMAP2 mcr p15, 0, rn, c15, c2, 4 sets up the interrupt
1943 * controller base address at $rn & ~0xfff and map size of
1944 * 0x200 << ($rn & 0xfff), when MMU is off. */
1950 /* ??? For debugging only. Should raise illegal instruction exception. */
1951 cpu_abort(env
, "Unimplemented cp15 register read (c%d, c%d, {%d, %d})\n",
1952 (insn
>> 16) & 0xf, crm
, op1
, op2
);
1956 void HELPER(set_r13_banked
)(CPUState
*env
, uint32_t mode
, uint32_t val
)
1958 if ((env
->uncached_cpsr
& CPSR_M
) == mode
) {
1959 env
->regs
[13] = val
;
1961 env
->banked_r13
[bank_number(mode
)] = val
;
1965 uint32_t HELPER(get_r13_banked
)(CPUState
*env
, uint32_t mode
)
1967 if ((env
->uncached_cpsr
& CPSR_M
) == mode
) {
1968 return env
->regs
[13];
1970 return env
->banked_r13
[bank_number(mode
)];
1974 uint32_t HELPER(v7m_mrs
)(CPUState
*env
, uint32_t reg
)
1978 return xpsr_read(env
) & 0xf8000000;
1980 return xpsr_read(env
) & 0xf80001ff;
1982 return xpsr_read(env
) & 0xff00fc00;
1984 return xpsr_read(env
) & 0xff00fdff;
1986 return xpsr_read(env
) & 0x000001ff;
1988 return xpsr_read(env
) & 0x0700fc00;
1990 return xpsr_read(env
) & 0x0700edff;
1992 return env
->v7m
.current_sp
? env
->v7m
.other_sp
: env
->regs
[13];
1994 return env
->v7m
.current_sp
? env
->regs
[13] : env
->v7m
.other_sp
;
1995 case 16: /* PRIMASK */
1996 return (env
->uncached_cpsr
& CPSR_I
) != 0;
1997 case 17: /* FAULTMASK */
1998 return (env
->uncached_cpsr
& CPSR_F
) != 0;
1999 case 18: /* BASEPRI */
2000 case 19: /* BASEPRI_MAX */
2001 return env
->v7m
.basepri
;
2002 case 20: /* CONTROL */
2003 return env
->v7m
.control
;
2005 /* ??? For debugging only. */
2006 cpu_abort(env
, "Unimplemented system register read (%d)\n", reg
);
2011 void HELPER(v7m_msr
)(CPUState
*env
, uint32_t reg
, uint32_t val
)
2015 xpsr_write(env
, val
, 0xf8000000);
2018 xpsr_write(env
, val
, 0xf8000000);
2021 xpsr_write(env
, val
, 0xfe00fc00);
2024 xpsr_write(env
, val
, 0xfe00fc00);
2027 /* IPSR bits are readonly. */
2030 xpsr_write(env
, val
, 0x0600fc00);
2033 xpsr_write(env
, val
, 0x0600fc00);
2036 if (env
->v7m
.current_sp
)
2037 env
->v7m
.other_sp
= val
;
2039 env
->regs
[13] = val
;
2042 if (env
->v7m
.current_sp
)
2043 env
->regs
[13] = val
;
2045 env
->v7m
.other_sp
= val
;
2047 case 16: /* PRIMASK */
2049 env
->uncached_cpsr
|= CPSR_I
;
2051 env
->uncached_cpsr
&= ~CPSR_I
;
2053 case 17: /* FAULTMASK */
2055 env
->uncached_cpsr
|= CPSR_F
;
2057 env
->uncached_cpsr
&= ~CPSR_F
;
2059 case 18: /* BASEPRI */
2060 env
->v7m
.basepri
= val
& 0xff;
2062 case 19: /* BASEPRI_MAX */
2064 if (val
!= 0 && (val
< env
->v7m
.basepri
|| env
->v7m
.basepri
== 0))
2065 env
->v7m
.basepri
= val
;
2067 case 20: /* CONTROL */
2068 env
->v7m
.control
= val
& 3;
2069 switch_v7m_sp(env
, (val
& 2) != 0);
2072 /* ??? For debugging only. */
2073 cpu_abort(env
, "Unimplemented system register write (%d)\n", reg
);
2078 void cpu_arm_set_cp_io(CPUARMState
*env
, int cpnum
,
2079 ARMReadCPFunc
*cp_read
, ARMWriteCPFunc
*cp_write
,
2082 if (cpnum
< 0 || cpnum
> 14) {
2083 cpu_abort(env
, "Bad coprocessor number: %i\n", cpnum
);
2087 env
->cp
[cpnum
].cp_read
= cp_read
;
2088 env
->cp
[cpnum
].cp_write
= cp_write
;
2089 env
->cp
[cpnum
].opaque
= opaque
;
2094 /* Note that signed overflow is undefined in C. The following routines are
2095 careful to use unsigned types where modulo arithmetic is required.
2096 Failure to do so _will_ break on newer gcc. */
2098 /* Signed saturating arithmetic. */
2100 /* Perform 16-bit signed saturating addition. */
2101 static inline uint16_t add16_sat(uint16_t a
, uint16_t b
)
2106 if (((res
^ a
) & 0x8000) && !((a
^ b
) & 0x8000)) {
2115 /* Perform 8-bit signed saturating addition. */
2116 static inline uint8_t add8_sat(uint8_t a
, uint8_t b
)
2121 if (((res
^ a
) & 0x80) && !((a
^ b
) & 0x80)) {
2130 /* Perform 16-bit signed saturating subtraction. */
2131 static inline uint16_t sub16_sat(uint16_t a
, uint16_t b
)
2136 if (((res
^ a
) & 0x8000) && ((a
^ b
) & 0x8000)) {
2145 /* Perform 8-bit signed saturating subtraction. */
2146 static inline uint8_t sub8_sat(uint8_t a
, uint8_t b
)
2151 if (((res
^ a
) & 0x80) && ((a
^ b
) & 0x80)) {
2160 #define ADD16(a, b, n) RESULT(add16_sat(a, b), n, 16);
2161 #define SUB16(a, b, n) RESULT(sub16_sat(a, b), n, 16);
2162 #define ADD8(a, b, n) RESULT(add8_sat(a, b), n, 8);
2163 #define SUB8(a, b, n) RESULT(sub8_sat(a, b), n, 8);
2166 #include "op_addsub.h"
2168 /* Unsigned saturating arithmetic. */
2169 static inline uint16_t add16_usat(uint16_t a
, uint16_t b
)
2178 static inline uint16_t sub16_usat(uint16_t a
, uint16_t b
)
2186 static inline uint8_t add8_usat(uint8_t a
, uint8_t b
)
2195 static inline uint8_t sub8_usat(uint8_t a
, uint8_t b
)
2203 #define ADD16(a, b, n) RESULT(add16_usat(a, b), n, 16);
2204 #define SUB16(a, b, n) RESULT(sub16_usat(a, b), n, 16);
2205 #define ADD8(a, b, n) RESULT(add8_usat(a, b), n, 8);
2206 #define SUB8(a, b, n) RESULT(sub8_usat(a, b), n, 8);
2209 #include "op_addsub.h"
2211 /* Signed modulo arithmetic. */
2212 #define SARITH16(a, b, n, op) do { \
2214 sum = (int32_t)(int16_t)(a) op (int32_t)(int16_t)(b); \
2215 RESULT(sum, n, 16); \
2217 ge |= 3 << (n * 2); \
2220 #define SARITH8(a, b, n, op) do { \
2222 sum = (int32_t)(int8_t)(a) op (int32_t)(int8_t)(b); \
2223 RESULT(sum, n, 8); \
2229 #define ADD16(a, b, n) SARITH16(a, b, n, +)
2230 #define SUB16(a, b, n) SARITH16(a, b, n, -)
2231 #define ADD8(a, b, n) SARITH8(a, b, n, +)
2232 #define SUB8(a, b, n) SARITH8(a, b, n, -)
2236 #include "op_addsub.h"
2238 /* Unsigned modulo arithmetic. */
2239 #define ADD16(a, b, n) do { \
2241 sum = (uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b); \
2242 RESULT(sum, n, 16); \
2243 if ((sum >> 16) == 1) \
2244 ge |= 3 << (n * 2); \
2247 #define ADD8(a, b, n) do { \
2249 sum = (uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b); \
2250 RESULT(sum, n, 8); \
2251 if ((sum >> 8) == 1) \
2255 #define SUB16(a, b, n) do { \
2257 sum = (uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b); \
2258 RESULT(sum, n, 16); \
2259 if ((sum >> 16) == 0) \
2260 ge |= 3 << (n * 2); \
2263 #define SUB8(a, b, n) do { \
2265 sum = (uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b); \
2266 RESULT(sum, n, 8); \
2267 if ((sum >> 8) == 0) \
2274 #include "op_addsub.h"
2276 /* Halved signed arithmetic. */
2277 #define ADD16(a, b, n) \
2278 RESULT(((int32_t)(int16_t)(a) + (int32_t)(int16_t)(b)) >> 1, n, 16)
2279 #define SUB16(a, b, n) \
2280 RESULT(((int32_t)(int16_t)(a) - (int32_t)(int16_t)(b)) >> 1, n, 16)
2281 #define ADD8(a, b, n) \
2282 RESULT(((int32_t)(int8_t)(a) + (int32_t)(int8_t)(b)) >> 1, n, 8)
2283 #define SUB8(a, b, n) \
2284 RESULT(((int32_t)(int8_t)(a) - (int32_t)(int8_t)(b)) >> 1, n, 8)
2287 #include "op_addsub.h"
2289 /* Halved unsigned arithmetic. */
2290 #define ADD16(a, b, n) \
2291 RESULT(((uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b)) >> 1, n, 16)
2292 #define SUB16(a, b, n) \
2293 RESULT(((uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b)) >> 1, n, 16)
2294 #define ADD8(a, b, n) \
2295 RESULT(((uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b)) >> 1, n, 8)
2296 #define SUB8(a, b, n) \
2297 RESULT(((uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b)) >> 1, n, 8)
2300 #include "op_addsub.h"
2302 static inline uint8_t do_usad(uint8_t a
, uint8_t b
)
2310 /* Unsigned sum of absolute byte differences. */
2311 uint32_t HELPER(usad8
)(uint32_t a
, uint32_t b
)
2314 sum
= do_usad(a
, b
);
2315 sum
+= do_usad(a
>> 8, b
>> 8);
2316 sum
+= do_usad(a
>> 16, b
>>16);
2317 sum
+= do_usad(a
>> 24, b
>> 24);
2321 /* For ARMv6 SEL instruction. */
2322 uint32_t HELPER(sel_flags
)(uint32_t flags
, uint32_t a
, uint32_t b
)
2335 return (a
& mask
) | (b
& ~mask
);
2338 uint32_t HELPER(logicq_cc
)(uint64_t val
)
2340 return (val
>> 32) | (val
!= 0);
2343 /* VFP support. We follow the convention used for VFP instrunctions:
2344 Single precition routines have a "s" suffix, double precision a
2347 /* Convert host exception flags to vfp form. */
2348 static inline int vfp_exceptbits_from_host(int host_bits
)
2350 int target_bits
= 0;
2352 if (host_bits
& float_flag_invalid
)
2354 if (host_bits
& float_flag_divbyzero
)
2356 if (host_bits
& float_flag_overflow
)
2358 if (host_bits
& float_flag_underflow
)
2360 if (host_bits
& float_flag_inexact
)
2361 target_bits
|= 0x10;
2362 if (host_bits
& float_flag_input_denormal
)
2363 target_bits
|= 0x80;
2367 uint32_t HELPER(vfp_get_fpscr
)(CPUState
*env
)
2372 fpscr
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & 0xffc8ffff)
2373 | (env
->vfp
.vec_len
<< 16)
2374 | (env
->vfp
.vec_stride
<< 20);
2375 i
= get_float_exception_flags(&env
->vfp
.fp_status
);
2376 i
|= get_float_exception_flags(&env
->vfp
.standard_fp_status
);
2377 fpscr
|= vfp_exceptbits_from_host(i
);
2381 uint32_t vfp_get_fpscr(CPUState
*env
)
2383 return HELPER(vfp_get_fpscr
)(env
);
2386 /* Convert vfp exception flags to target form. */
2387 static inline int vfp_exceptbits_to_host(int target_bits
)
2391 if (target_bits
& 1)
2392 host_bits
|= float_flag_invalid
;
2393 if (target_bits
& 2)
2394 host_bits
|= float_flag_divbyzero
;
2395 if (target_bits
& 4)
2396 host_bits
|= float_flag_overflow
;
2397 if (target_bits
& 8)
2398 host_bits
|= float_flag_underflow
;
2399 if (target_bits
& 0x10)
2400 host_bits
|= float_flag_inexact
;
2401 if (target_bits
& 0x80)
2402 host_bits
|= float_flag_input_denormal
;
2406 void HELPER(vfp_set_fpscr
)(CPUState
*env
, uint32_t val
)
2411 changed
= env
->vfp
.xregs
[ARM_VFP_FPSCR
];
2412 env
->vfp
.xregs
[ARM_VFP_FPSCR
] = (val
& 0xffc8ffff);
2413 env
->vfp
.vec_len
= (val
>> 16) & 7;
2414 env
->vfp
.vec_stride
= (val
>> 20) & 3;
2417 if (changed
& (3 << 22)) {
2418 i
= (val
>> 22) & 3;
2421 i
= float_round_nearest_even
;
2427 i
= float_round_down
;
2430 i
= float_round_to_zero
;
2433 set_float_rounding_mode(i
, &env
->vfp
.fp_status
);
2435 if (changed
& (1 << 24)) {
2436 set_flush_to_zero((val
& (1 << 24)) != 0, &env
->vfp
.fp_status
);
2437 set_flush_inputs_to_zero((val
& (1 << 24)) != 0, &env
->vfp
.fp_status
);
2439 if (changed
& (1 << 25))
2440 set_default_nan_mode((val
& (1 << 25)) != 0, &env
->vfp
.fp_status
);
2442 i
= vfp_exceptbits_to_host(val
);
2443 set_float_exception_flags(i
, &env
->vfp
.fp_status
);
2444 set_float_exception_flags(0, &env
->vfp
.standard_fp_status
);
2447 void vfp_set_fpscr(CPUState
*env
, uint32_t val
)
2449 HELPER(vfp_set_fpscr
)(env
, val
);
2452 #define VFP_HELPER(name, p) HELPER(glue(glue(vfp_,name),p))
2454 #define VFP_BINOP(name) \
2455 float32 VFP_HELPER(name, s)(float32 a, float32 b, CPUState *env) \
2457 return float32_ ## name (a, b, &env->vfp.fp_status); \
2459 float64 VFP_HELPER(name, d)(float64 a, float64 b, CPUState *env) \
2461 return float64_ ## name (a, b, &env->vfp.fp_status); \
2469 float32
VFP_HELPER(neg
, s
)(float32 a
)
2471 return float32_chs(a
);
2474 float64
VFP_HELPER(neg
, d
)(float64 a
)
2476 return float64_chs(a
);
2479 float32
VFP_HELPER(abs
, s
)(float32 a
)
2481 return float32_abs(a
);
2484 float64
VFP_HELPER(abs
, d
)(float64 a
)
2486 return float64_abs(a
);
2489 float32
VFP_HELPER(sqrt
, s
)(float32 a
, CPUState
*env
)
2491 return float32_sqrt(a
, &env
->vfp
.fp_status
);
2494 float64
VFP_HELPER(sqrt
, d
)(float64 a
, CPUState
*env
)
2496 return float64_sqrt(a
, &env
->vfp
.fp_status
);
2499 /* XXX: check quiet/signaling case */
2500 #define DO_VFP_cmp(p, type) \
2501 void VFP_HELPER(cmp, p)(type a, type b, CPUState *env) \
2504 switch(type ## _compare_quiet(a, b, &env->vfp.fp_status)) { \
2505 case 0: flags = 0x6; break; \
2506 case -1: flags = 0x8; break; \
2507 case 1: flags = 0x2; break; \
2508 default: case 2: flags = 0x3; break; \
2510 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
2511 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
2513 void VFP_HELPER(cmpe, p)(type a, type b, CPUState *env) \
2516 switch(type ## _compare(a, b, &env->vfp.fp_status)) { \
2517 case 0: flags = 0x6; break; \
2518 case -1: flags = 0x8; break; \
2519 case 1: flags = 0x2; break; \
2520 default: case 2: flags = 0x3; break; \
2522 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
2523 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
2525 DO_VFP_cmp(s
, float32
)
2526 DO_VFP_cmp(d
, float64
)
2529 /* Integer to float conversion. */
2530 float32
VFP_HELPER(uito
, s
)(uint32_t x
, CPUState
*env
)
2532 return uint32_to_float32(x
, &env
->vfp
.fp_status
);
2535 float64
VFP_HELPER(uito
, d
)(uint32_t x
, CPUState
*env
)
2537 return uint32_to_float64(x
, &env
->vfp
.fp_status
);
2540 float32
VFP_HELPER(sito
, s
)(uint32_t x
, CPUState
*env
)
2542 return int32_to_float32(x
, &env
->vfp
.fp_status
);
2545 float64
VFP_HELPER(sito
, d
)(uint32_t x
, CPUState
*env
)
2547 return int32_to_float64(x
, &env
->vfp
.fp_status
);
2550 /* Float to integer conversion. */
2551 uint32_t VFP_HELPER(toui
, s
)(float32 x
, CPUState
*env
)
2553 if (float32_is_any_nan(x
)) {
2554 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2557 return float32_to_uint32(x
, &env
->vfp
.fp_status
);
2560 uint32_t VFP_HELPER(toui
, d
)(float64 x
, CPUState
*env
)
2562 if (float64_is_any_nan(x
)) {
2563 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2566 return float64_to_uint32(x
, &env
->vfp
.fp_status
);
2569 uint32_t VFP_HELPER(tosi
, s
)(float32 x
, CPUState
*env
)
2571 if (float32_is_any_nan(x
)) {
2572 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2575 return float32_to_int32(x
, &env
->vfp
.fp_status
);
2578 uint32_t VFP_HELPER(tosi
, d
)(float64 x
, CPUState
*env
)
2580 if (float64_is_any_nan(x
)) {
2581 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2584 return float64_to_int32(x
, &env
->vfp
.fp_status
);
2587 uint32_t VFP_HELPER(touiz
, s
)(float32 x
, CPUState
*env
)
2589 if (float32_is_any_nan(x
)) {
2590 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2593 return float32_to_uint32_round_to_zero(x
, &env
->vfp
.fp_status
);
2596 uint32_t VFP_HELPER(touiz
, d
)(float64 x
, CPUState
*env
)
2598 if (float64_is_any_nan(x
)) {
2599 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2602 return float64_to_uint32_round_to_zero(x
, &env
->vfp
.fp_status
);
2605 uint32_t VFP_HELPER(tosiz
, s
)(float32 x
, CPUState
*env
)
2607 if (float32_is_any_nan(x
)) {
2608 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2611 return float32_to_int32_round_to_zero(x
, &env
->vfp
.fp_status
);
2614 uint32_t VFP_HELPER(tosiz
, d
)(float64 x
, CPUState
*env
)
2616 if (float64_is_any_nan(x
)) {
2617 float_raise(float_flag_invalid
, &env
->vfp
.fp_status
);
2620 return float64_to_int32_round_to_zero(x
, &env
->vfp
.fp_status
);
2623 /* floating point conversion */
2624 float64
VFP_HELPER(fcvtd
, s
)(float32 x
, CPUState
*env
)
2626 float64 r
= float32_to_float64(x
, &env
->vfp
.fp_status
);
2627 /* ARM requires that S<->D conversion of any kind of NaN generates
2628 * a quiet NaN by forcing the most significant frac bit to 1.
2630 return float64_maybe_silence_nan(r
);
2633 float32
VFP_HELPER(fcvts
, d
)(float64 x
, CPUState
*env
)
2635 float32 r
= float64_to_float32(x
, &env
->vfp
.fp_status
);
2636 /* ARM requires that S<->D conversion of any kind of NaN generates
2637 * a quiet NaN by forcing the most significant frac bit to 1.
2639 return float32_maybe_silence_nan(r
);
2642 /* VFP3 fixed point conversion. */
2643 #define VFP_CONV_FIX(name, p, fsz, itype, sign) \
2644 float##fsz VFP_HELPER(name##to, p)(uint##fsz##_t x, uint32_t shift, \
2648 tmp = sign##int32_to_##float##fsz ((itype##_t)x, &env->vfp.fp_status); \
2649 return float##fsz##_scalbn(tmp, -(int)shift, &env->vfp.fp_status); \
2651 uint##fsz##_t VFP_HELPER(to##name, p)(float##fsz x, uint32_t shift, \
2655 if (float##fsz##_is_any_nan(x)) { \
2656 float_raise(float_flag_invalid, &env->vfp.fp_status); \
2659 tmp = float##fsz##_scalbn(x, shift, &env->vfp.fp_status); \
2660 return float##fsz##_to_##itype##_round_to_zero(tmp, &env->vfp.fp_status); \
2663 VFP_CONV_FIX(sh
, d
, 64, int16
, )
2664 VFP_CONV_FIX(sl
, d
, 64, int32
, )
2665 VFP_CONV_FIX(uh
, d
, 64, uint16
, u
)
2666 VFP_CONV_FIX(ul
, d
, 64, uint32
, u
)
2667 VFP_CONV_FIX(sh
, s
, 32, int16
, )
2668 VFP_CONV_FIX(sl
, s
, 32, int32
, )
2669 VFP_CONV_FIX(uh
, s
, 32, uint16
, u
)
2670 VFP_CONV_FIX(ul
, s
, 32, uint32
, u
)
2673 /* Half precision conversions. */
2674 static float32
do_fcvt_f16_to_f32(uint32_t a
, CPUState
*env
, float_status
*s
)
2676 int ieee
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & (1 << 26)) == 0;
2677 float32 r
= float16_to_float32(make_float16(a
), ieee
, s
);
2679 return float32_maybe_silence_nan(r
);
2684 static uint32_t do_fcvt_f32_to_f16(float32 a
, CPUState
*env
, float_status
*s
)
2686 int ieee
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & (1 << 26)) == 0;
2687 float16 r
= float32_to_float16(a
, ieee
, s
);
2689 r
= float16_maybe_silence_nan(r
);
2691 return float16_val(r
);
2694 float32
HELPER(neon_fcvt_f16_to_f32
)(uint32_t a
, CPUState
*env
)
2696 return do_fcvt_f16_to_f32(a
, env
, &env
->vfp
.standard_fp_status
);
2699 uint32_t HELPER(neon_fcvt_f32_to_f16
)(float32 a
, CPUState
*env
)
2701 return do_fcvt_f32_to_f16(a
, env
, &env
->vfp
.standard_fp_status
);
2704 float32
HELPER(vfp_fcvt_f16_to_f32
)(uint32_t a
, CPUState
*env
)
2706 return do_fcvt_f16_to_f32(a
, env
, &env
->vfp
.fp_status
);
2709 uint32_t HELPER(vfp_fcvt_f32_to_f16
)(float32 a
, CPUState
*env
)
2711 return do_fcvt_f32_to_f16(a
, env
, &env
->vfp
.fp_status
);
2714 #define float32_two make_float32(0x40000000)
2715 #define float32_three make_float32(0x40400000)
2716 #define float32_one_point_five make_float32(0x3fc00000)
2718 float32
HELPER(recps_f32
)(float32 a
, float32 b
, CPUState
*env
)
2720 float_status
*s
= &env
->vfp
.standard_fp_status
;
2721 if ((float32_is_infinity(a
) && float32_is_zero_or_denormal(b
)) ||
2722 (float32_is_infinity(b
) && float32_is_zero_or_denormal(a
))) {
2725 return float32_sub(float32_two
, float32_mul(a
, b
, s
), s
);
2728 float32
HELPER(rsqrts_f32
)(float32 a
, float32 b
, CPUState
*env
)
2730 float_status
*s
= &env
->vfp
.standard_fp_status
;
2732 if ((float32_is_infinity(a
) && float32_is_zero_or_denormal(b
)) ||
2733 (float32_is_infinity(b
) && float32_is_zero_or_denormal(a
))) {
2734 return float32_one_point_five
;
2736 product
= float32_mul(a
, b
, s
);
2737 return float32_div(float32_sub(float32_three
, product
, s
), float32_two
, s
);
2742 /* Constants 256 and 512 are used in some helpers; we avoid relying on
2743 * int->float conversions at run-time. */
2744 #define float64_256 make_float64(0x4070000000000000LL)
2745 #define float64_512 make_float64(0x4080000000000000LL)
2747 /* The algorithm that must be used to calculate the estimate
2748 * is specified by the ARM ARM.
2750 static float64
recip_estimate(float64 a
, CPUState
*env
)
2752 float_status
*s
= &env
->vfp
.standard_fp_status
;
2753 /* q = (int)(a * 512.0) */
2754 float64 q
= float64_mul(float64_512
, a
, s
);
2755 int64_t q_int
= float64_to_int64_round_to_zero(q
, s
);
2757 /* r = 1.0 / (((double)q + 0.5) / 512.0) */
2758 q
= int64_to_float64(q_int
, s
);
2759 q
= float64_add(q
, float64_half
, s
);
2760 q
= float64_div(q
, float64_512
, s
);
2761 q
= float64_div(float64_one
, q
, s
);
2763 /* s = (int)(256.0 * r + 0.5) */
2764 q
= float64_mul(q
, float64_256
, s
);
2765 q
= float64_add(q
, float64_half
, s
);
2766 q_int
= float64_to_int64_round_to_zero(q
, s
);
2768 /* return (double)s / 256.0 */
2769 return float64_div(int64_to_float64(q_int
, s
), float64_256
, s
);
2772 float32
HELPER(recpe_f32
)(float32 a
, CPUState
*env
)
2774 float_status
*s
= &env
->vfp
.standard_fp_status
;
2776 uint32_t val32
= float32_val(a
);
2779 int a_exp
= (val32
& 0x7f800000) >> 23;
2780 int sign
= val32
& 0x80000000;
2782 if (float32_is_any_nan(a
)) {
2783 if (float32_is_signaling_nan(a
)) {
2784 float_raise(float_flag_invalid
, s
);
2786 return float32_default_nan
;
2787 } else if (float32_is_infinity(a
)) {
2788 return float32_set_sign(float32_zero
, float32_is_neg(a
));
2789 } else if (float32_is_zero_or_denormal(a
)) {
2790 float_raise(float_flag_divbyzero
, s
);
2791 return float32_set_sign(float32_infinity
, float32_is_neg(a
));
2792 } else if (a_exp
>= 253) {
2793 float_raise(float_flag_underflow
, s
);
2794 return float32_set_sign(float32_zero
, float32_is_neg(a
));
2797 f64
= make_float64((0x3feULL
<< 52)
2798 | ((int64_t)(val32
& 0x7fffff) << 29));
2800 result_exp
= 253 - a_exp
;
2802 f64
= recip_estimate(f64
, env
);
2805 | ((result_exp
& 0xff) << 23)
2806 | ((float64_val(f64
) >> 29) & 0x7fffff);
2807 return make_float32(val32
);
2810 /* The algorithm that must be used to calculate the estimate
2811 * is specified by the ARM ARM.
2813 static float64
recip_sqrt_estimate(float64 a
, CPUState
*env
)
2815 float_status
*s
= &env
->vfp
.standard_fp_status
;
2819 if (float64_lt(a
, float64_half
, s
)) {
2820 /* range 0.25 <= a < 0.5 */
2822 /* a in units of 1/512 rounded down */
2823 /* q0 = (int)(a * 512.0); */
2824 q
= float64_mul(float64_512
, a
, s
);
2825 q_int
= float64_to_int64_round_to_zero(q
, s
);
2827 /* reciprocal root r */
2828 /* r = 1.0 / sqrt(((double)q0 + 0.5) / 512.0); */
2829 q
= int64_to_float64(q_int
, s
);
2830 q
= float64_add(q
, float64_half
, s
);
2831 q
= float64_div(q
, float64_512
, s
);
2832 q
= float64_sqrt(q
, s
);
2833 q
= float64_div(float64_one
, q
, s
);
2835 /* range 0.5 <= a < 1.0 */
2837 /* a in units of 1/256 rounded down */
2838 /* q1 = (int)(a * 256.0); */
2839 q
= float64_mul(float64_256
, a
, s
);
2840 int64_t q_int
= float64_to_int64_round_to_zero(q
, s
);
2842 /* reciprocal root r */
2843 /* r = 1.0 /sqrt(((double)q1 + 0.5) / 256); */
2844 q
= int64_to_float64(q_int
, s
);
2845 q
= float64_add(q
, float64_half
, s
);
2846 q
= float64_div(q
, float64_256
, s
);
2847 q
= float64_sqrt(q
, s
);
2848 q
= float64_div(float64_one
, q
, s
);
2850 /* r in units of 1/256 rounded to nearest */
2851 /* s = (int)(256.0 * r + 0.5); */
2853 q
= float64_mul(q
, float64_256
,s
);
2854 q
= float64_add(q
, float64_half
, s
);
2855 q_int
= float64_to_int64_round_to_zero(q
, s
);
2857 /* return (double)s / 256.0;*/
2858 return float64_div(int64_to_float64(q_int
, s
), float64_256
, s
);
2861 float32
HELPER(rsqrte_f32
)(float32 a
, CPUState
*env
)
2863 float_status
*s
= &env
->vfp
.standard_fp_status
;
2869 val
= float32_val(a
);
2871 if (float32_is_any_nan(a
)) {
2872 if (float32_is_signaling_nan(a
)) {
2873 float_raise(float_flag_invalid
, s
);
2875 return float32_default_nan
;
2876 } else if (float32_is_zero_or_denormal(a
)) {
2877 float_raise(float_flag_divbyzero
, s
);
2878 return float32_set_sign(float32_infinity
, float32_is_neg(a
));
2879 } else if (float32_is_neg(a
)) {
2880 float_raise(float_flag_invalid
, s
);
2881 return float32_default_nan
;
2882 } else if (float32_is_infinity(a
)) {
2883 return float32_zero
;
2886 /* Normalize to a double-precision value between 0.25 and 1.0,
2887 * preserving the parity of the exponent. */
2888 if ((val
& 0x800000) == 0) {
2889 f64
= make_float64(((uint64_t)(val
& 0x80000000) << 32)
2891 | ((uint64_t)(val
& 0x7fffff) << 29));
2893 f64
= make_float64(((uint64_t)(val
& 0x80000000) << 32)
2895 | ((uint64_t)(val
& 0x7fffff) << 29));
2898 result_exp
= (380 - ((val
& 0x7f800000) >> 23)) / 2;
2900 f64
= recip_sqrt_estimate(f64
, env
);
2902 val64
= float64_val(f64
);
2904 val
= ((val64
>> 63) & 0x80000000)
2905 | ((result_exp
& 0xff) << 23)
2906 | ((val64
>> 29) & 0x7fffff);
2907 return make_float32(val
);
2910 uint32_t HELPER(recpe_u32
)(uint32_t a
, CPUState
*env
)
2914 if ((a
& 0x80000000) == 0) {
2918 f64
= make_float64((0x3feULL
<< 52)
2919 | ((int64_t)(a
& 0x7fffffff) << 21));
2921 f64
= recip_estimate (f64
, env
);
2923 return 0x80000000 | ((float64_val(f64
) >> 21) & 0x7fffffff);
2926 uint32_t HELPER(rsqrte_u32
)(uint32_t a
, CPUState
*env
)
2930 if ((a
& 0xc0000000) == 0) {
2934 if (a
& 0x80000000) {
2935 f64
= make_float64((0x3feULL
<< 52)
2936 | ((uint64_t)(a
& 0x7fffffff) << 21));
2937 } else { /* bits 31-30 == '01' */
2938 f64
= make_float64((0x3fdULL
<< 52)
2939 | ((uint64_t)(a
& 0x3fffffff) << 22));
2942 f64
= recip_sqrt_estimate(f64
, env
);
2944 return 0x80000000 | ((float64_val(f64
) >> 21) & 0x7fffffff);
2947 void HELPER(set_teecr
)(CPUState
*env
, uint32_t val
)
2950 if (env
->teecr
!= val
) {