8 #include "qemu-common.h"
9 #include "host-utils.h"
10 #if !defined(CONFIG_USER_ONLY)
11 #include "hw/loader.h"
14 static uint32_t cortexa9_cp15_c0_c1
[8] =
15 { 0x1031, 0x11, 0x000, 0, 0x00100103, 0x20000000, 0x01230000, 0x00002111 };
17 static uint32_t cortexa9_cp15_c0_c2
[8] =
18 { 0x00101111, 0x13112111, 0x21232041, 0x11112131, 0x00111142, 0, 0, 0 };
20 static uint32_t cortexa8_cp15_c0_c1
[8] =
21 { 0x1031, 0x11, 0x400, 0, 0x31100003, 0x20000000, 0x01202000, 0x11 };
23 static uint32_t cortexa8_cp15_c0_c2
[8] =
24 { 0x00101111, 0x12112111, 0x21232031, 0x11112131, 0x00111142, 0, 0, 0 };
26 static uint32_t mpcore_cp15_c0_c1
[8] =
27 { 0x111, 0x1, 0, 0x2, 0x01100103, 0x10020302, 0x01222000, 0 };
29 static uint32_t mpcore_cp15_c0_c2
[8] =
30 { 0x00100011, 0x12002111, 0x11221011, 0x01102131, 0x141, 0, 0, 0 };
32 static uint32_t arm1136_cp15_c0_c1
[8] =
33 { 0x111, 0x1, 0x2, 0x3, 0x01130003, 0x10030302, 0x01222110, 0 };
35 static uint32_t arm1136_cp15_c0_c2
[8] =
36 { 0x00140011, 0x12002111, 0x11231111, 0x01102131, 0x141, 0, 0, 0 };
38 static uint32_t cpu_arm_find_by_name(const char *name
);
40 static inline void set_feature(CPUARMState
*env
, int feature
)
42 env
->features
|= 1u << feature
;
45 static void cpu_reset_model_id(CPUARMState
*env
, uint32_t id
)
47 env
->cp15
.c0_cpuid
= id
;
49 case ARM_CPUID_ARM926
:
50 set_feature(env
, ARM_FEATURE_V4T
);
51 set_feature(env
, ARM_FEATURE_V5
);
52 set_feature(env
, ARM_FEATURE_VFP
);
53 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x41011090;
54 env
->cp15
.c0_cachetype
= 0x1dd20d2;
55 env
->cp15
.c1_sys
= 0x00090078;
57 case ARM_CPUID_ARM946
:
58 set_feature(env
, ARM_FEATURE_V4T
);
59 set_feature(env
, ARM_FEATURE_V5
);
60 set_feature(env
, ARM_FEATURE_MPU
);
61 env
->cp15
.c0_cachetype
= 0x0f004006;
62 env
->cp15
.c1_sys
= 0x00000078;
64 case ARM_CPUID_ARM1026
:
65 set_feature(env
, ARM_FEATURE_V4T
);
66 set_feature(env
, ARM_FEATURE_V5
);
67 set_feature(env
, ARM_FEATURE_VFP
);
68 set_feature(env
, ARM_FEATURE_AUXCR
);
69 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410110a0;
70 env
->cp15
.c0_cachetype
= 0x1dd20d2;
71 env
->cp15
.c1_sys
= 0x00090078;
73 case ARM_CPUID_ARM1136_R2
:
74 case ARM_CPUID_ARM1136
:
75 set_feature(env
, ARM_FEATURE_V4T
);
76 set_feature(env
, ARM_FEATURE_V5
);
77 set_feature(env
, ARM_FEATURE_V6
);
78 set_feature(env
, ARM_FEATURE_VFP
);
79 set_feature(env
, ARM_FEATURE_AUXCR
);
80 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410120b4;
81 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11111111;
82 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00000000;
83 memcpy(env
->cp15
.c0_c1
, arm1136_cp15_c0_c1
, 8 * sizeof(uint32_t));
84 memcpy(env
->cp15
.c0_c2
, arm1136_cp15_c0_c2
, 8 * sizeof(uint32_t));
85 env
->cp15
.c0_cachetype
= 0x1dd20d2;
86 env
->cp15
.c1_sys
= 0x00050078;
88 case ARM_CPUID_ARM11MPCORE
:
89 set_feature(env
, ARM_FEATURE_V4T
);
90 set_feature(env
, ARM_FEATURE_V5
);
91 set_feature(env
, ARM_FEATURE_V6
);
92 set_feature(env
, ARM_FEATURE_V6K
);
93 set_feature(env
, ARM_FEATURE_VFP
);
94 set_feature(env
, ARM_FEATURE_AUXCR
);
95 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410120b4;
96 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11111111;
97 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00000000;
98 memcpy(env
->cp15
.c0_c1
, mpcore_cp15_c0_c1
, 8 * sizeof(uint32_t));
99 memcpy(env
->cp15
.c0_c2
, mpcore_cp15_c0_c2
, 8 * sizeof(uint32_t));
100 env
->cp15
.c0_cachetype
= 0x1dd20d2;
102 case ARM_CPUID_CORTEXA8
:
103 set_feature(env
, ARM_FEATURE_V4T
);
104 set_feature(env
, ARM_FEATURE_V5
);
105 set_feature(env
, ARM_FEATURE_V6
);
106 set_feature(env
, ARM_FEATURE_V6K
);
107 set_feature(env
, ARM_FEATURE_V7
);
108 set_feature(env
, ARM_FEATURE_AUXCR
);
109 set_feature(env
, ARM_FEATURE_THUMB2
);
110 set_feature(env
, ARM_FEATURE_VFP
);
111 set_feature(env
, ARM_FEATURE_VFP3
);
112 set_feature(env
, ARM_FEATURE_NEON
);
113 set_feature(env
, ARM_FEATURE_THUMB2EE
);
114 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x410330c0;
115 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11110222;
116 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x00011100;
117 memcpy(env
->cp15
.c0_c1
, cortexa8_cp15_c0_c1
, 8 * sizeof(uint32_t));
118 memcpy(env
->cp15
.c0_c2
, cortexa8_cp15_c0_c2
, 8 * sizeof(uint32_t));
119 env
->cp15
.c0_cachetype
= 0x82048004;
120 env
->cp15
.c0_clid
= (1 << 27) | (2 << 24) | 3;
121 env
->cp15
.c0_ccsid
[0] = 0xe007e01a; /* 16k L1 dcache. */
122 env
->cp15
.c0_ccsid
[1] = 0x2007e01a; /* 16k L1 icache. */
123 env
->cp15
.c0_ccsid
[2] = 0xf0000000; /* No L2 icache. */
124 env
->cp15
.c1_sys
= 0x00c50078;
126 case ARM_CPUID_CORTEXA9
:
127 set_feature(env
, ARM_FEATURE_V4T
);
128 set_feature(env
, ARM_FEATURE_V5
);
129 set_feature(env
, ARM_FEATURE_V6
);
130 set_feature(env
, ARM_FEATURE_V6K
);
131 set_feature(env
, ARM_FEATURE_V7
);
132 set_feature(env
, ARM_FEATURE_AUXCR
);
133 set_feature(env
, ARM_FEATURE_THUMB2
);
134 set_feature(env
, ARM_FEATURE_VFP
);
135 set_feature(env
, ARM_FEATURE_VFP3
);
136 set_feature(env
, ARM_FEATURE_VFP_FP16
);
137 set_feature(env
, ARM_FEATURE_NEON
);
138 set_feature(env
, ARM_FEATURE_THUMB2EE
);
139 /* Note that A9 supports the MP extensions even for
140 * A9UP and single-core A9MP (which are both different
141 * and valid configurations; we don't model A9UP).
143 set_feature(env
, ARM_FEATURE_V7MP
);
144 env
->vfp
.xregs
[ARM_VFP_FPSID
] = 0x41034000; /* Guess */
145 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = 0x11110222;
146 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = 0x01111111;
147 memcpy(env
->cp15
.c0_c1
, cortexa9_cp15_c0_c1
, 8 * sizeof(uint32_t));
148 memcpy(env
->cp15
.c0_c2
, cortexa9_cp15_c0_c2
, 8 * sizeof(uint32_t));
149 env
->cp15
.c0_cachetype
= 0x80038003;
150 env
->cp15
.c0_clid
= (1 << 27) | (1 << 24) | 3;
151 env
->cp15
.c0_ccsid
[0] = 0xe00fe015; /* 16k L1 dcache. */
152 env
->cp15
.c0_ccsid
[1] = 0x200fe015; /* 16k L1 icache. */
153 env
->cp15
.c1_sys
= 0x00c50078;
155 case ARM_CPUID_CORTEXM3
:
156 set_feature(env
, ARM_FEATURE_V4T
);
157 set_feature(env
, ARM_FEATURE_V5
);
158 set_feature(env
, ARM_FEATURE_V6
);
159 set_feature(env
, ARM_FEATURE_THUMB2
);
160 set_feature(env
, ARM_FEATURE_V7
);
161 set_feature(env
, ARM_FEATURE_M
);
162 set_feature(env
, ARM_FEATURE_DIV
);
164 case ARM_CPUID_ANY
: /* For userspace emulation. */
165 set_feature(env
, ARM_FEATURE_V4T
);
166 set_feature(env
, ARM_FEATURE_V5
);
167 set_feature(env
, ARM_FEATURE_V6
);
168 set_feature(env
, ARM_FEATURE_V6K
);
169 set_feature(env
, ARM_FEATURE_V7
);
170 set_feature(env
, ARM_FEATURE_THUMB2
);
171 set_feature(env
, ARM_FEATURE_VFP
);
172 set_feature(env
, ARM_FEATURE_VFP3
);
173 set_feature(env
, ARM_FEATURE_VFP_FP16
);
174 set_feature(env
, ARM_FEATURE_NEON
);
175 set_feature(env
, ARM_FEATURE_THUMB2EE
);
176 set_feature(env
, ARM_FEATURE_DIV
);
177 set_feature(env
, ARM_FEATURE_V7MP
);
179 case ARM_CPUID_TI915T
:
180 case ARM_CPUID_TI925T
:
181 set_feature(env
, ARM_FEATURE_V4T
);
182 set_feature(env
, ARM_FEATURE_OMAPCP
);
183 env
->cp15
.c0_cpuid
= ARM_CPUID_TI925T
; /* Depends on wiring. */
184 env
->cp15
.c0_cachetype
= 0x5109149;
185 env
->cp15
.c1_sys
= 0x00000070;
186 env
->cp15
.c15_i_max
= 0x000;
187 env
->cp15
.c15_i_min
= 0xff0;
189 case ARM_CPUID_PXA250
:
190 case ARM_CPUID_PXA255
:
191 case ARM_CPUID_PXA260
:
192 case ARM_CPUID_PXA261
:
193 case ARM_CPUID_PXA262
:
194 set_feature(env
, ARM_FEATURE_V4T
);
195 set_feature(env
, ARM_FEATURE_V5
);
196 set_feature(env
, ARM_FEATURE_XSCALE
);
197 /* JTAG_ID is ((id << 28) | 0x09265013) */
198 env
->cp15
.c0_cachetype
= 0xd172172;
199 env
->cp15
.c1_sys
= 0x00000078;
201 case ARM_CPUID_PXA270_A0
:
202 case ARM_CPUID_PXA270_A1
:
203 case ARM_CPUID_PXA270_B0
:
204 case ARM_CPUID_PXA270_B1
:
205 case ARM_CPUID_PXA270_C0
:
206 case ARM_CPUID_PXA270_C5
:
207 set_feature(env
, ARM_FEATURE_V4T
);
208 set_feature(env
, ARM_FEATURE_V5
);
209 set_feature(env
, ARM_FEATURE_XSCALE
);
210 /* JTAG_ID is ((id << 28) | 0x09265013) */
211 set_feature(env
, ARM_FEATURE_IWMMXT
);
212 env
->iwmmxt
.cregs
[ARM_IWMMXT_wCID
] = 0x69051000 | 'Q';
213 env
->cp15
.c0_cachetype
= 0xd172172;
214 env
->cp15
.c1_sys
= 0x00000078;
216 case ARM_CPUID_SA1100
:
217 case ARM_CPUID_SA1110
:
218 set_feature(env
, ARM_FEATURE_STRONGARM
);
219 env
->cp15
.c1_sys
= 0x00000070;
222 cpu_abort(env
, "Bad CPU ID: %x\n", id
);
227 void cpu_reset(CPUARMState
*env
)
231 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
232 qemu_log("CPU Reset (CPU %d)\n", env
->cpu_index
);
233 log_cpu_state(env
, 0);
236 id
= env
->cp15
.c0_cpuid
;
237 memset(env
, 0, offsetof(CPUARMState
, breakpoints
));
239 cpu_reset_model_id(env
, id
);
240 #if defined (CONFIG_USER_ONLY)
241 env
->uncached_cpsr
= ARM_CPU_MODE_USR
;
242 /* For user mode we must enable access to coprocessors */
243 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 1 << 30;
244 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
245 env
->cp15
.c15_cpar
= 3;
246 } else if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
247 env
->cp15
.c15_cpar
= 1;
250 /* SVC mode with interrupts disabled. */
251 env
->uncached_cpsr
= ARM_CPU_MODE_SVC
| CPSR_A
| CPSR_F
| CPSR_I
;
252 /* On ARMv7-M the CPSR_I is the value of the PRIMASK register, and is
253 clear at reset. Initial SP and PC are loaded from ROM. */
257 env
->uncached_cpsr
&= ~CPSR_I
;
260 /* We should really use ldl_phys here, in case the guest
261 modified flash and reset itself. However images
262 loaded via -kenrel have not been copied yet, so load the
263 values directly from there. */
264 env
->regs
[13] = ldl_p(rom
);
267 env
->regs
[15] = pc
& ~1;
270 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 0;
271 env
->cp15
.c2_base_mask
= 0xffffc000u
;
273 set_flush_to_zero(1, &env
->vfp
.standard_fp_status
);
274 set_flush_inputs_to_zero(1, &env
->vfp
.standard_fp_status
);
275 set_default_nan_mode(1, &env
->vfp
.standard_fp_status
);
276 set_float_detect_tininess(float_tininess_before_rounding
,
277 &env
->vfp
.fp_status
);
278 set_float_detect_tininess(float_tininess_before_rounding
,
279 &env
->vfp
.standard_fp_status
);
283 static int vfp_gdb_get_reg(CPUState
*env
, uint8_t *buf
, int reg
)
287 /* VFP data registers are always little-endian. */
288 nregs
= arm_feature(env
, ARM_FEATURE_VFP3
) ? 32 : 16;
290 stfq_le_p(buf
, env
->vfp
.regs
[reg
]);
293 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
294 /* Aliases for Q regs. */
297 stfq_le_p(buf
, env
->vfp
.regs
[(reg
- 32) * 2]);
298 stfq_le_p(buf
+ 8, env
->vfp
.regs
[(reg
- 32) * 2 + 1]);
302 switch (reg
- nregs
) {
303 case 0: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPSID
]); return 4;
304 case 1: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPSCR
]); return 4;
305 case 2: stl_p(buf
, env
->vfp
.xregs
[ARM_VFP_FPEXC
]); return 4;
310 static int vfp_gdb_set_reg(CPUState
*env
, uint8_t *buf
, int reg
)
314 nregs
= arm_feature(env
, ARM_FEATURE_VFP3
) ? 32 : 16;
316 env
->vfp
.regs
[reg
] = ldfq_le_p(buf
);
319 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
322 env
->vfp
.regs
[(reg
- 32) * 2] = ldfq_le_p(buf
);
323 env
->vfp
.regs
[(reg
- 32) * 2 + 1] = ldfq_le_p(buf
+ 8);
327 switch (reg
- nregs
) {
328 case 0: env
->vfp
.xregs
[ARM_VFP_FPSID
] = ldl_p(buf
); return 4;
329 case 1: env
->vfp
.xregs
[ARM_VFP_FPSCR
] = ldl_p(buf
); return 4;
330 case 2: env
->vfp
.xregs
[ARM_VFP_FPEXC
] = ldl_p(buf
) & (1 << 30); return 4;
335 CPUARMState
*cpu_arm_init(const char *cpu_model
)
339 static int inited
= 0;
341 id
= cpu_arm_find_by_name(cpu_model
);
344 env
= qemu_mallocz(sizeof(CPUARMState
));
348 arm_translate_init();
351 env
->cpu_model_str
= cpu_model
;
352 env
->cp15
.c0_cpuid
= id
;
354 if (arm_feature(env
, ARM_FEATURE_NEON
)) {
355 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
356 51, "arm-neon.xml", 0);
357 } else if (arm_feature(env
, ARM_FEATURE_VFP3
)) {
358 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
359 35, "arm-vfp3.xml", 0);
360 } else if (arm_feature(env
, ARM_FEATURE_VFP
)) {
361 gdb_register_coprocessor(env
, vfp_gdb_get_reg
, vfp_gdb_set_reg
,
362 19, "arm-vfp.xml", 0);
373 static const struct arm_cpu_t arm_cpu_names
[] = {
374 { ARM_CPUID_ARM926
, "arm926"},
375 { ARM_CPUID_ARM946
, "arm946"},
376 { ARM_CPUID_ARM1026
, "arm1026"},
377 { ARM_CPUID_ARM1136
, "arm1136"},
378 { ARM_CPUID_ARM1136_R2
, "arm1136-r2"},
379 { ARM_CPUID_ARM11MPCORE
, "arm11mpcore"},
380 { ARM_CPUID_CORTEXM3
, "cortex-m3"},
381 { ARM_CPUID_CORTEXA8
, "cortex-a8"},
382 { ARM_CPUID_CORTEXA9
, "cortex-a9"},
383 { ARM_CPUID_TI925T
, "ti925t" },
384 { ARM_CPUID_PXA250
, "pxa250" },
385 { ARM_CPUID_SA1100
, "sa1100" },
386 { ARM_CPUID_SA1110
, "sa1110" },
387 { ARM_CPUID_PXA255
, "pxa255" },
388 { ARM_CPUID_PXA260
, "pxa260" },
389 { ARM_CPUID_PXA261
, "pxa261" },
390 { ARM_CPUID_PXA262
, "pxa262" },
391 { ARM_CPUID_PXA270
, "pxa270" },
392 { ARM_CPUID_PXA270_A0
, "pxa270-a0" },
393 { ARM_CPUID_PXA270_A1
, "pxa270-a1" },
394 { ARM_CPUID_PXA270_B0
, "pxa270-b0" },
395 { ARM_CPUID_PXA270_B1
, "pxa270-b1" },
396 { ARM_CPUID_PXA270_C0
, "pxa270-c0" },
397 { ARM_CPUID_PXA270_C5
, "pxa270-c5" },
398 { ARM_CPUID_ANY
, "any"},
402 void arm_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
406 (*cpu_fprintf
)(f
, "Available CPUs:\n");
407 for (i
= 0; arm_cpu_names
[i
].name
; i
++) {
408 (*cpu_fprintf
)(f
, " %s\n", arm_cpu_names
[i
].name
);
412 /* return 0 if not found */
413 static uint32_t cpu_arm_find_by_name(const char *name
)
419 for (i
= 0; arm_cpu_names
[i
].name
; i
++) {
420 if (strcmp(name
, arm_cpu_names
[i
].name
) == 0) {
421 id
= arm_cpu_names
[i
].id
;
428 void cpu_arm_close(CPUARMState
*env
)
433 uint32_t cpsr_read(CPUARMState
*env
)
437 return env
->uncached_cpsr
| (env
->NF
& 0x80000000) | (ZF
<< 30) |
438 (env
->CF
<< 29) | ((env
->VF
& 0x80000000) >> 3) | (env
->QF
<< 27)
439 | (env
->thumb
<< 5) | ((env
->condexec_bits
& 3) << 25)
440 | ((env
->condexec_bits
& 0xfc) << 8)
444 void cpsr_write(CPUARMState
*env
, uint32_t val
, uint32_t mask
)
446 if (mask
& CPSR_NZCV
) {
447 env
->ZF
= (~val
) & CPSR_Z
;
449 env
->CF
= (val
>> 29) & 1;
450 env
->VF
= (val
<< 3) & 0x80000000;
453 env
->QF
= ((val
& CPSR_Q
) != 0);
455 env
->thumb
= ((val
& CPSR_T
) != 0);
456 if (mask
& CPSR_IT_0_1
) {
457 env
->condexec_bits
&= ~3;
458 env
->condexec_bits
|= (val
>> 25) & 3;
460 if (mask
& CPSR_IT_2_7
) {
461 env
->condexec_bits
&= 3;
462 env
->condexec_bits
|= (val
>> 8) & 0xfc;
464 if (mask
& CPSR_GE
) {
465 env
->GE
= (val
>> 16) & 0xf;
468 if ((env
->uncached_cpsr
^ val
) & mask
& CPSR_M
) {
469 switch_mode(env
, val
& CPSR_M
);
471 mask
&= ~CACHED_CPSR_BITS
;
472 env
->uncached_cpsr
= (env
->uncached_cpsr
& ~mask
) | (val
& mask
);
475 /* Sign/zero extend */
476 uint32_t HELPER(sxtb16
)(uint32_t x
)
479 res
= (uint16_t)(int8_t)x
;
480 res
|= (uint32_t)(int8_t)(x
>> 16) << 16;
484 uint32_t HELPER(uxtb16
)(uint32_t x
)
487 res
= (uint16_t)(uint8_t)x
;
488 res
|= (uint32_t)(uint8_t)(x
>> 16) << 16;
492 uint32_t HELPER(clz
)(uint32_t x
)
497 int32_t HELPER(sdiv
)(int32_t num
, int32_t den
)
501 if (num
== INT_MIN
&& den
== -1)
506 uint32_t HELPER(udiv
)(uint32_t num
, uint32_t den
)
513 uint32_t HELPER(rbit
)(uint32_t x
)
515 x
= ((x
& 0xff000000) >> 24)
516 | ((x
& 0x00ff0000) >> 8)
517 | ((x
& 0x0000ff00) << 8)
518 | ((x
& 0x000000ff) << 24);
519 x
= ((x
& 0xf0f0f0f0) >> 4)
520 | ((x
& 0x0f0f0f0f) << 4);
521 x
= ((x
& 0x88888888) >> 3)
522 | ((x
& 0x44444444) >> 1)
523 | ((x
& 0x22222222) << 1)
524 | ((x
& 0x11111111) << 3);
528 uint32_t HELPER(abs
)(uint32_t x
)
530 return ((int32_t)x
< 0) ? -x
: x
;
533 #if defined(CONFIG_USER_ONLY)
535 void do_interrupt (CPUState
*env
)
537 env
->exception_index
= -1;
540 int cpu_arm_handle_mmu_fault (CPUState
*env
, target_ulong address
, int rw
,
541 int mmu_idx
, int is_softmmu
)
544 env
->exception_index
= EXCP_PREFETCH_ABORT
;
545 env
->cp15
.c6_insn
= address
;
547 env
->exception_index
= EXCP_DATA_ABORT
;
548 env
->cp15
.c6_data
= address
;
553 /* These should probably raise undefined insn exceptions. */
554 void HELPER(set_cp
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
556 int op1
= (insn
>> 8) & 0xf;
557 cpu_abort(env
, "cp%i insn %08x\n", op1
, insn
);
561 uint32_t HELPER(get_cp
)(CPUState
*env
, uint32_t insn
)
563 int op1
= (insn
>> 8) & 0xf;
564 cpu_abort(env
, "cp%i insn %08x\n", op1
, insn
);
568 void HELPER(set_cp15
)(CPUState
*env
, uint32_t insn
, uint32_t val
)
570 cpu_abort(env
, "cp15 insn %08x\n", insn
);
573 uint32_t HELPER(get_cp15
)(CPUState
*env
, uint32_t insn
)
575 cpu_abort(env
, "cp15 insn %08x\n", insn
);
578 /* These should probably raise undefined insn exceptions. */
579 void HELPER(v7m_msr
)(CPUState
*env
, uint32_t reg
, uint32_t val
)
581 cpu_abort(env
, "v7m_mrs %d\n", reg
);
584 uint32_t HELPER(v7m_mrs
)(CPUState
*env
, uint32_t reg
)
586 cpu_abort(env
, "v7m_mrs %d\n", reg
);
590 void switch_mode(CPUState
*env
, int mode
)
592 if (mode
!= ARM_CPU_MODE_USR
)
593 cpu_abort(env
, "Tried to switch out of user mode\n");
596 void HELPER(set_r13_banked
)(CPUState
*env
, uint32_t mode
, uint32_t val
)
598 cpu_abort(env
, "banked r13 write\n");
601 uint32_t HELPER(get_r13_banked
)(CPUState
*env
, uint32_t mode
)
603 cpu_abort(env
, "banked r13 read\n");
609 extern int semihosting_enabled
;
611 /* Map CPU modes onto saved register banks. */
612 static inline int bank_number (int mode
)
615 case ARM_CPU_MODE_USR
:
616 case ARM_CPU_MODE_SYS
:
618 case ARM_CPU_MODE_SVC
:
620 case ARM_CPU_MODE_ABT
:
622 case ARM_CPU_MODE_UND
:
624 case ARM_CPU_MODE_IRQ
:
626 case ARM_CPU_MODE_FIQ
:
629 cpu_abort(cpu_single_env
, "Bad mode %x\n", mode
);
633 void switch_mode(CPUState
*env
, int mode
)
638 old_mode
= env
->uncached_cpsr
& CPSR_M
;
639 if (mode
== old_mode
)
642 if (old_mode
== ARM_CPU_MODE_FIQ
) {
643 memcpy (env
->fiq_regs
, env
->regs
+ 8, 5 * sizeof(uint32_t));
644 memcpy (env
->regs
+ 8, env
->usr_regs
, 5 * sizeof(uint32_t));
645 } else if (mode
== ARM_CPU_MODE_FIQ
) {
646 memcpy (env
->usr_regs
, env
->regs
+ 8, 5 * sizeof(uint32_t));
647 memcpy (env
->regs
+ 8, env
->fiq_regs
, 5 * sizeof(uint32_t));
650 i
= bank_number(old_mode
);
651 env
->banked_r13
[i
] = env
->regs
[13];
652 env
->banked_r14
[i
] = env
->regs
[14];
653 env
->banked_spsr
[i
] = env
->spsr
;
655 i
= bank_number(mode
);
656 env
->regs
[13] = env
->banked_r13
[i
];
657 env
->regs
[14] = env
->banked_r14
[i
];
658 env
->spsr
= env
->banked_spsr
[i
];
661 static void v7m_push(CPUARMState
*env
, uint32_t val
)
664 stl_phys(env
->regs
[13], val
);
667 static uint32_t v7m_pop(CPUARMState
*env
)
670 val
= ldl_phys(env
->regs
[13]);
675 /* Switch to V7M main or process stack pointer. */
676 static void switch_v7m_sp(CPUARMState
*env
, int process
)
679 if (env
->v7m
.current_sp
!= process
) {
680 tmp
= env
->v7m
.other_sp
;
681 env
->v7m
.other_sp
= env
->regs
[13];
683 env
->v7m
.current_sp
= process
;
687 static void do_v7m_exception_exit(CPUARMState
*env
)
692 type
= env
->regs
[15];
693 if (env
->v7m
.exception
!= 0)
694 armv7m_nvic_complete_irq(env
->nvic
, env
->v7m
.exception
);
696 /* Switch to the target stack. */
697 switch_v7m_sp(env
, (type
& 4) != 0);
699 env
->regs
[0] = v7m_pop(env
);
700 env
->regs
[1] = v7m_pop(env
);
701 env
->regs
[2] = v7m_pop(env
);
702 env
->regs
[3] = v7m_pop(env
);
703 env
->regs
[12] = v7m_pop(env
);
704 env
->regs
[14] = v7m_pop(env
);
705 env
->regs
[15] = v7m_pop(env
);
707 xpsr_write(env
, xpsr
, 0xfffffdff);
708 /* Undo stack alignment. */
711 /* ??? The exception return type specifies Thread/Handler mode. However
712 this is also implied by the xPSR value. Not sure what to do
713 if there is a mismatch. */
714 /* ??? Likewise for mismatches between the CONTROL register and the stack
718 static void do_interrupt_v7m(CPUARMState
*env
)
720 uint32_t xpsr
= xpsr_read(env
);
725 if (env
->v7m
.current_sp
)
727 if (env
->v7m
.exception
== 0)
730 /* For exceptions we just mark as pending on the NVIC, and let that
732 /* TODO: Need to escalate if the current priority is higher than the
733 one we're raising. */
734 switch (env
->exception_index
) {
736 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_USAGE
);
740 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_SVC
);
742 case EXCP_PREFETCH_ABORT
:
743 case EXCP_DATA_ABORT
:
744 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_MEM
);
747 if (semihosting_enabled
) {
749 nr
= lduw_code(env
->regs
[15]) & 0xff;
752 env
->regs
[0] = do_arm_semihosting(env
);
756 armv7m_nvic_set_pending(env
->nvic
, ARMV7M_EXCP_DEBUG
);
759 env
->v7m
.exception
= armv7m_nvic_acknowledge_irq(env
->nvic
);
761 case EXCP_EXCEPTION_EXIT
:
762 do_v7m_exception_exit(env
);
765 cpu_abort(env
, "Unhandled exception 0x%x\n", env
->exception_index
);
766 return; /* Never happens. Keep compiler happy. */
769 /* Align stack pointer. */
770 /* ??? Should only do this if Configuration Control Register
771 STACKALIGN bit is set. */
772 if (env
->regs
[13] & 4) {
776 /* Switch to the handler mode. */
778 v7m_push(env
, env
->regs
[15]);
779 v7m_push(env
, env
->regs
[14]);
780 v7m_push(env
, env
->regs
[12]);
781 v7m_push(env
, env
->regs
[3]);
782 v7m_push(env
, env
->regs
[2]);
783 v7m_push(env
, env
->regs
[1]);
784 v7m_push(env
, env
->regs
[0]);
785 switch_v7m_sp(env
, 0);
786 env
->uncached_cpsr
&= ~CPSR_IT
;
788 addr
= ldl_phys(env
->v7m
.vecbase
+ env
->v7m
.exception
* 4);
789 env
->regs
[15] = addr
& 0xfffffffe;
790 env
->thumb
= addr
& 1;
793 /* Handle a CPU exception. */
794 void do_interrupt(CPUARMState
*env
)
802 do_interrupt_v7m(env
);
805 /* TODO: Vectored interrupt controller. */
806 switch (env
->exception_index
) {
808 new_mode
= ARM_CPU_MODE_UND
;
817 if (semihosting_enabled
) {
818 /* Check for semihosting interrupt. */
820 mask
= lduw_code(env
->regs
[15] - 2) & 0xff;
822 mask
= ldl_code(env
->regs
[15] - 4) & 0xffffff;
824 /* Only intercept calls from privileged modes, to provide some
825 semblance of security. */
826 if (((mask
== 0x123456 && !env
->thumb
)
827 || (mask
== 0xab && env
->thumb
))
828 && (env
->uncached_cpsr
& CPSR_M
) != ARM_CPU_MODE_USR
) {
829 env
->regs
[0] = do_arm_semihosting(env
);
833 new_mode
= ARM_CPU_MODE_SVC
;
836 /* The PC already points to the next instruction. */
840 /* See if this is a semihosting syscall. */
841 if (env
->thumb
&& semihosting_enabled
) {
842 mask
= lduw_code(env
->regs
[15]) & 0xff;
844 && (env
->uncached_cpsr
& CPSR_M
) != ARM_CPU_MODE_USR
) {
846 env
->regs
[0] = do_arm_semihosting(env
);
850 env
->cp15
.c5_insn
= 2;
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
| float_flag_output_denormal
))
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 and float to integer conversions */
2531 #define CONV_ITOF(name, fsz, sign) \
2532 float##fsz HELPER(name)(uint32_t x, void *fpstp) \
2534 float_status *fpst = fpstp; \
2535 return sign##int32_to_##float##fsz(x, fpst); \
2538 #define CONV_FTOI(name, fsz, sign, round) \
2539 uint32_t HELPER(name)(float##fsz x, void *fpstp) \
2541 float_status *fpst = fpstp; \
2542 if (float##fsz##_is_any_nan(x)) { \
2543 float_raise(float_flag_invalid, fpst); \
2546 return float##fsz##_to_##sign##int32##round(x, fpst); \
2549 #define FLOAT_CONVS(name, p, fsz, sign) \
2550 CONV_ITOF(vfp_##name##to##p, fsz, sign) \
2551 CONV_FTOI(vfp_to##name##p, fsz, sign, ) \
2552 CONV_FTOI(vfp_to##name##z##p, fsz, sign, _round_to_zero)
2554 FLOAT_CONVS(si
, s
, 32, )
2555 FLOAT_CONVS(si
, d
, 64, )
2556 FLOAT_CONVS(ui
, s
, 32, u
)
2557 FLOAT_CONVS(ui
, d
, 64, u
)
2563 /* floating point conversion */
2564 float64
VFP_HELPER(fcvtd
, s
)(float32 x
, CPUState
*env
)
2566 float64 r
= float32_to_float64(x
, &env
->vfp
.fp_status
);
2567 /* ARM requires that S<->D conversion of any kind of NaN generates
2568 * a quiet NaN by forcing the most significant frac bit to 1.
2570 return float64_maybe_silence_nan(r
);
2573 float32
VFP_HELPER(fcvts
, d
)(float64 x
, CPUState
*env
)
2575 float32 r
= float64_to_float32(x
, &env
->vfp
.fp_status
);
2576 /* ARM requires that S<->D conversion of any kind of NaN generates
2577 * a quiet NaN by forcing the most significant frac bit to 1.
2579 return float32_maybe_silence_nan(r
);
2582 /* VFP3 fixed point conversion. */
2583 #define VFP_CONV_FIX(name, p, fsz, itype, sign) \
2584 float##fsz HELPER(vfp_##name##to##p)(uint##fsz##_t x, uint32_t shift, \
2587 float_status *fpst = fpstp; \
2589 tmp = sign##int32_to_##float##fsz((itype##_t)x, fpst); \
2590 return float##fsz##_scalbn(tmp, -(int)shift, fpst); \
2592 uint##fsz##_t HELPER(vfp_to##name##p)(float##fsz x, uint32_t shift, \
2595 float_status *fpst = fpstp; \
2597 if (float##fsz##_is_any_nan(x)) { \
2598 float_raise(float_flag_invalid, fpst); \
2601 tmp = float##fsz##_scalbn(x, shift, fpst); \
2602 return float##fsz##_to_##itype##_round_to_zero(tmp, fpst); \
2605 VFP_CONV_FIX(sh
, d
, 64, int16
, )
2606 VFP_CONV_FIX(sl
, d
, 64, int32
, )
2607 VFP_CONV_FIX(uh
, d
, 64, uint16
, u
)
2608 VFP_CONV_FIX(ul
, d
, 64, uint32
, u
)
2609 VFP_CONV_FIX(sh
, s
, 32, int16
, )
2610 VFP_CONV_FIX(sl
, s
, 32, int32
, )
2611 VFP_CONV_FIX(uh
, s
, 32, uint16
, u
)
2612 VFP_CONV_FIX(ul
, s
, 32, uint32
, u
)
2615 /* Half precision conversions. */
2616 static float32
do_fcvt_f16_to_f32(uint32_t a
, CPUState
*env
, float_status
*s
)
2618 int ieee
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & (1 << 26)) == 0;
2619 float32 r
= float16_to_float32(make_float16(a
), ieee
, s
);
2621 return float32_maybe_silence_nan(r
);
2626 static uint32_t do_fcvt_f32_to_f16(float32 a
, CPUState
*env
, float_status
*s
)
2628 int ieee
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & (1 << 26)) == 0;
2629 float16 r
= float32_to_float16(a
, ieee
, s
);
2631 r
= float16_maybe_silence_nan(r
);
2633 return float16_val(r
);
2636 float32
HELPER(neon_fcvt_f16_to_f32
)(uint32_t a
, CPUState
*env
)
2638 return do_fcvt_f16_to_f32(a
, env
, &env
->vfp
.standard_fp_status
);
2641 uint32_t HELPER(neon_fcvt_f32_to_f16
)(float32 a
, CPUState
*env
)
2643 return do_fcvt_f32_to_f16(a
, env
, &env
->vfp
.standard_fp_status
);
2646 float32
HELPER(vfp_fcvt_f16_to_f32
)(uint32_t a
, CPUState
*env
)
2648 return do_fcvt_f16_to_f32(a
, env
, &env
->vfp
.fp_status
);
2651 uint32_t HELPER(vfp_fcvt_f32_to_f16
)(float32 a
, CPUState
*env
)
2653 return do_fcvt_f32_to_f16(a
, env
, &env
->vfp
.fp_status
);
2656 #define float32_two make_float32(0x40000000)
2657 #define float32_three make_float32(0x40400000)
2658 #define float32_one_point_five make_float32(0x3fc00000)
2660 float32
HELPER(recps_f32
)(float32 a
, float32 b
, CPUState
*env
)
2662 float_status
*s
= &env
->vfp
.standard_fp_status
;
2663 if ((float32_is_infinity(a
) && float32_is_zero_or_denormal(b
)) ||
2664 (float32_is_infinity(b
) && float32_is_zero_or_denormal(a
))) {
2665 if (!(float32_is_zero(a
) || float32_is_zero(b
))) {
2666 float_raise(float_flag_input_denormal
, s
);
2670 return float32_sub(float32_two
, float32_mul(a
, b
, s
), s
);
2673 float32
HELPER(rsqrts_f32
)(float32 a
, float32 b
, CPUState
*env
)
2675 float_status
*s
= &env
->vfp
.standard_fp_status
;
2677 if ((float32_is_infinity(a
) && float32_is_zero_or_denormal(b
)) ||
2678 (float32_is_infinity(b
) && float32_is_zero_or_denormal(a
))) {
2679 if (!(float32_is_zero(a
) || float32_is_zero(b
))) {
2680 float_raise(float_flag_input_denormal
, s
);
2682 return float32_one_point_five
;
2684 product
= float32_mul(a
, b
, s
);
2685 return float32_div(float32_sub(float32_three
, product
, s
), float32_two
, s
);
2690 /* Constants 256 and 512 are used in some helpers; we avoid relying on
2691 * int->float conversions at run-time. */
2692 #define float64_256 make_float64(0x4070000000000000LL)
2693 #define float64_512 make_float64(0x4080000000000000LL)
2695 /* The algorithm that must be used to calculate the estimate
2696 * is specified by the ARM ARM.
2698 static float64
recip_estimate(float64 a
, CPUState
*env
)
2700 /* These calculations mustn't set any fp exception flags,
2701 * so we use a local copy of the fp_status.
2703 float_status dummy_status
= env
->vfp
.standard_fp_status
;
2704 float_status
*s
= &dummy_status
;
2705 /* q = (int)(a * 512.0) */
2706 float64 q
= float64_mul(float64_512
, a
, s
);
2707 int64_t q_int
= float64_to_int64_round_to_zero(q
, s
);
2709 /* r = 1.0 / (((double)q + 0.5) / 512.0) */
2710 q
= int64_to_float64(q_int
, s
);
2711 q
= float64_add(q
, float64_half
, s
);
2712 q
= float64_div(q
, float64_512
, s
);
2713 q
= float64_div(float64_one
, q
, s
);
2715 /* s = (int)(256.0 * r + 0.5) */
2716 q
= float64_mul(q
, float64_256
, s
);
2717 q
= float64_add(q
, float64_half
, s
);
2718 q_int
= float64_to_int64_round_to_zero(q
, s
);
2720 /* return (double)s / 256.0 */
2721 return float64_div(int64_to_float64(q_int
, s
), float64_256
, s
);
2724 float32
HELPER(recpe_f32
)(float32 a
, CPUState
*env
)
2726 float_status
*s
= &env
->vfp
.standard_fp_status
;
2728 uint32_t val32
= float32_val(a
);
2731 int a_exp
= (val32
& 0x7f800000) >> 23;
2732 int sign
= val32
& 0x80000000;
2734 if (float32_is_any_nan(a
)) {
2735 if (float32_is_signaling_nan(a
)) {
2736 float_raise(float_flag_invalid
, s
);
2738 return float32_default_nan
;
2739 } else if (float32_is_infinity(a
)) {
2740 return float32_set_sign(float32_zero
, float32_is_neg(a
));
2741 } else if (float32_is_zero_or_denormal(a
)) {
2742 if (!float32_is_zero(a
)) {
2743 float_raise(float_flag_input_denormal
, s
);
2745 float_raise(float_flag_divbyzero
, s
);
2746 return float32_set_sign(float32_infinity
, float32_is_neg(a
));
2747 } else if (a_exp
>= 253) {
2748 float_raise(float_flag_underflow
, s
);
2749 return float32_set_sign(float32_zero
, float32_is_neg(a
));
2752 f64
= make_float64((0x3feULL
<< 52)
2753 | ((int64_t)(val32
& 0x7fffff) << 29));
2755 result_exp
= 253 - a_exp
;
2757 f64
= recip_estimate(f64
, env
);
2760 | ((result_exp
& 0xff) << 23)
2761 | ((float64_val(f64
) >> 29) & 0x7fffff);
2762 return make_float32(val32
);
2765 /* The algorithm that must be used to calculate the estimate
2766 * is specified by the ARM ARM.
2768 static float64
recip_sqrt_estimate(float64 a
, CPUState
*env
)
2770 /* These calculations mustn't set any fp exception flags,
2771 * so we use a local copy of the fp_status.
2773 float_status dummy_status
= env
->vfp
.standard_fp_status
;
2774 float_status
*s
= &dummy_status
;
2778 if (float64_lt(a
, float64_half
, s
)) {
2779 /* range 0.25 <= a < 0.5 */
2781 /* a in units of 1/512 rounded down */
2782 /* q0 = (int)(a * 512.0); */
2783 q
= float64_mul(float64_512
, a
, s
);
2784 q_int
= float64_to_int64_round_to_zero(q
, s
);
2786 /* reciprocal root r */
2787 /* r = 1.0 / sqrt(((double)q0 + 0.5) / 512.0); */
2788 q
= int64_to_float64(q_int
, s
);
2789 q
= float64_add(q
, float64_half
, s
);
2790 q
= float64_div(q
, float64_512
, s
);
2791 q
= float64_sqrt(q
, s
);
2792 q
= float64_div(float64_one
, q
, s
);
2794 /* range 0.5 <= a < 1.0 */
2796 /* a in units of 1/256 rounded down */
2797 /* q1 = (int)(a * 256.0); */
2798 q
= float64_mul(float64_256
, a
, s
);
2799 int64_t q_int
= float64_to_int64_round_to_zero(q
, s
);
2801 /* reciprocal root r */
2802 /* r = 1.0 /sqrt(((double)q1 + 0.5) / 256); */
2803 q
= int64_to_float64(q_int
, s
);
2804 q
= float64_add(q
, float64_half
, s
);
2805 q
= float64_div(q
, float64_256
, s
);
2806 q
= float64_sqrt(q
, s
);
2807 q
= float64_div(float64_one
, q
, s
);
2809 /* r in units of 1/256 rounded to nearest */
2810 /* s = (int)(256.0 * r + 0.5); */
2812 q
= float64_mul(q
, float64_256
,s
);
2813 q
= float64_add(q
, float64_half
, s
);
2814 q_int
= float64_to_int64_round_to_zero(q
, s
);
2816 /* return (double)s / 256.0;*/
2817 return float64_div(int64_to_float64(q_int
, s
), float64_256
, s
);
2820 float32
HELPER(rsqrte_f32
)(float32 a
, CPUState
*env
)
2822 float_status
*s
= &env
->vfp
.standard_fp_status
;
2828 val
= float32_val(a
);
2830 if (float32_is_any_nan(a
)) {
2831 if (float32_is_signaling_nan(a
)) {
2832 float_raise(float_flag_invalid
, s
);
2834 return float32_default_nan
;
2835 } else if (float32_is_zero_or_denormal(a
)) {
2836 if (!float32_is_zero(a
)) {
2837 float_raise(float_flag_input_denormal
, s
);
2839 float_raise(float_flag_divbyzero
, s
);
2840 return float32_set_sign(float32_infinity
, float32_is_neg(a
));
2841 } else if (float32_is_neg(a
)) {
2842 float_raise(float_flag_invalid
, s
);
2843 return float32_default_nan
;
2844 } else if (float32_is_infinity(a
)) {
2845 return float32_zero
;
2848 /* Normalize to a double-precision value between 0.25 and 1.0,
2849 * preserving the parity of the exponent. */
2850 if ((val
& 0x800000) == 0) {
2851 f64
= make_float64(((uint64_t)(val
& 0x80000000) << 32)
2853 | ((uint64_t)(val
& 0x7fffff) << 29));
2855 f64
= make_float64(((uint64_t)(val
& 0x80000000) << 32)
2857 | ((uint64_t)(val
& 0x7fffff) << 29));
2860 result_exp
= (380 - ((val
& 0x7f800000) >> 23)) / 2;
2862 f64
= recip_sqrt_estimate(f64
, env
);
2864 val64
= float64_val(f64
);
2866 val
= ((val64
>> 63) & 0x80000000)
2867 | ((result_exp
& 0xff) << 23)
2868 | ((val64
>> 29) & 0x7fffff);
2869 return make_float32(val
);
2872 uint32_t HELPER(recpe_u32
)(uint32_t a
, CPUState
*env
)
2876 if ((a
& 0x80000000) == 0) {
2880 f64
= make_float64((0x3feULL
<< 52)
2881 | ((int64_t)(a
& 0x7fffffff) << 21));
2883 f64
= recip_estimate (f64
, env
);
2885 return 0x80000000 | ((float64_val(f64
) >> 21) & 0x7fffffff);
2888 uint32_t HELPER(rsqrte_u32
)(uint32_t a
, CPUState
*env
)
2892 if ((a
& 0xc0000000) == 0) {
2896 if (a
& 0x80000000) {
2897 f64
= make_float64((0x3feULL
<< 52)
2898 | ((uint64_t)(a
& 0x7fffffff) << 21));
2899 } else { /* bits 31-30 == '01' */
2900 f64
= make_float64((0x3fdULL
<< 52)
2901 | ((uint64_t)(a
& 0x3fffffff) << 22));
2904 f64
= recip_sqrt_estimate(f64
, env
);
2906 return 0x80000000 | ((float64_val(f64
) >> 21) & 0x7fffffff);
2909 void HELPER(set_teecr
)(CPUState
*env
, uint32_t val
)
2912 if (env
->teecr
!= val
) {