target-arm: introduce tbflag for CPSR.E
[qemu/ar7.git] / target-arm / cpu.h
blob746128df29f7bf395cdbd81784a62c79604e5bb9
1 /*
2 * ARM virtual CPU header
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef CPU_ARM_H
20 #define CPU_ARM_H
22 #include "config.h"
24 #include "kvm-consts.h"
26 #if defined(TARGET_AARCH64)
27 /* AArch64 definitions */
28 # define TARGET_LONG_BITS 64
29 # define ELF_MACHINE EM_AARCH64
30 #else
31 # define TARGET_LONG_BITS 32
32 # define ELF_MACHINE EM_ARM
33 #endif
35 #define CPUArchState struct CPUARMState
37 #include "qemu-common.h"
38 #include "exec/cpu-defs.h"
40 #include "fpu/softfloat.h"
42 #define TARGET_HAS_ICE 1
44 #define EXCP_UDEF 1 /* undefined instruction */
45 #define EXCP_SWI 2 /* software interrupt */
46 #define EXCP_PREFETCH_ABORT 3
47 #define EXCP_DATA_ABORT 4
48 #define EXCP_IRQ 5
49 #define EXCP_FIQ 6
50 #define EXCP_BKPT 7
51 #define EXCP_EXCEPTION_EXIT 8 /* Return from v7M exception. */
52 #define EXCP_KERNEL_TRAP 9 /* Jumped to kernel code page. */
53 #define EXCP_STREX 10
54 #define EXCP_HVC 11 /* HyperVisor Call */
55 #define EXCP_HYP_TRAP 12
56 #define EXCP_SMC 13 /* Secure Monitor Call */
57 #define EXCP_VIRQ 14
58 #define EXCP_VFIQ 15
60 #define ARMV7M_EXCP_RESET 1
61 #define ARMV7M_EXCP_NMI 2
62 #define ARMV7M_EXCP_HARD 3
63 #define ARMV7M_EXCP_MEM 4
64 #define ARMV7M_EXCP_BUS 5
65 #define ARMV7M_EXCP_USAGE 6
66 #define ARMV7M_EXCP_SVC 11
67 #define ARMV7M_EXCP_DEBUG 12
68 #define ARMV7M_EXCP_PENDSV 14
69 #define ARMV7M_EXCP_SYSTICK 15
71 /* ARM-specific interrupt pending bits. */
72 #define CPU_INTERRUPT_FIQ CPU_INTERRUPT_TGT_EXT_1
73 #define CPU_INTERRUPT_VIRQ CPU_INTERRUPT_TGT_EXT_2
74 #define CPU_INTERRUPT_VFIQ CPU_INTERRUPT_TGT_EXT_3
76 /* The usual mapping for an AArch64 system register to its AArch32
77 * counterpart is for the 32 bit world to have access to the lower
78 * half only (with writes leaving the upper half untouched). It's
79 * therefore useful to be able to pass TCG the offset of the least
80 * significant half of a uint64_t struct member.
82 #ifdef HOST_WORDS_BIGENDIAN
83 #define offsetoflow32(S, M) (offsetof(S, M) + sizeof(uint32_t))
84 #define offsetofhigh32(S, M) offsetof(S, M)
85 #else
86 #define offsetoflow32(S, M) offsetof(S, M)
87 #define offsetofhigh32(S, M) (offsetof(S, M) + sizeof(uint32_t))
88 #endif
90 /* Meanings of the ARMCPU object's four inbound GPIO lines */
91 #define ARM_CPU_IRQ 0
92 #define ARM_CPU_FIQ 1
93 #define ARM_CPU_VIRQ 2
94 #define ARM_CPU_VFIQ 3
96 typedef void ARMWriteCPFunc(void *opaque, int cp_info,
97 int srcreg, int operand, uint32_t value);
98 typedef uint32_t ARMReadCPFunc(void *opaque, int cp_info,
99 int dstreg, int operand);
101 struct arm_boot_info;
103 #define NB_MMU_MODES 4
105 /* We currently assume float and double are IEEE single and double
106 precision respectively.
107 Doing runtime conversions is tricky because VFP registers may contain
108 integer values (eg. as the result of a FTOSI instruction).
109 s<2n> maps to the least significant half of d<n>
110 s<2n+1> maps to the most significant half of d<n>
113 /* CPU state for each instance of a generic timer (in cp15 c14) */
114 typedef struct ARMGenericTimer {
115 uint64_t cval; /* Timer CompareValue register */
116 uint64_t ctl; /* Timer Control register */
117 } ARMGenericTimer;
119 #define GTIMER_PHYS 0
120 #define GTIMER_VIRT 1
121 #define NUM_GTIMERS 2
123 typedef struct CPUARMState {
124 /* Regs for current mode. */
125 uint32_t regs[16];
127 /* 32/64 switch only happens when taking and returning from
128 * exceptions so the overlap semantics are taken care of then
129 * instead of having a complicated union.
131 /* Regs for A64 mode. */
132 uint64_t xregs[32];
133 uint64_t pc;
134 /* PSTATE isn't an architectural register for ARMv8. However, it is
135 * convenient for us to assemble the underlying state into a 32 bit format
136 * identical to the architectural format used for the SPSR. (This is also
137 * what the Linux kernel's 'pstate' field in signal handlers and KVM's
138 * 'pstate' register are.) Of the PSTATE bits:
139 * NZCV are kept in the split out env->CF/VF/NF/ZF, (which have the same
140 * semantics as for AArch32, as described in the comments on each field)
141 * nRW (also known as M[4]) is kept, inverted, in env->aarch64
142 * DAIF (exception masks) are kept in env->daif
143 * all other bits are stored in their correct places in env->pstate
145 uint32_t pstate;
146 uint32_t aarch64; /* 1 if CPU is in aarch64 state; inverse of PSTATE.nRW */
148 /* Frequently accessed CPSR bits are stored separately for efficiency.
149 This contains all the other bits. Use cpsr_{read,write} to access
150 the whole CPSR. */
151 uint32_t uncached_cpsr;
152 uint32_t spsr;
154 /* Banked registers. */
155 uint64_t banked_spsr[8];
156 uint32_t banked_r13[8];
157 uint32_t banked_r14[8];
159 /* These hold r8-r12. */
160 uint32_t usr_regs[5];
161 uint32_t fiq_regs[5];
163 /* cpsr flag cache for faster execution */
164 uint32_t CF; /* 0 or 1 */
165 uint32_t VF; /* V is the bit 31. All other bits are undefined */
166 uint32_t NF; /* N is bit 31. All other bits are undefined. */
167 uint32_t ZF; /* Z set if zero. */
168 uint32_t QF; /* 0 or 1 */
169 uint32_t GE; /* cpsr[19:16] */
170 uint32_t thumb; /* cpsr[5]. 0 = arm mode, 1 = thumb mode. */
171 uint32_t condexec_bits; /* IT bits. cpsr[15:10,26:25]. */
172 uint64_t daif; /* exception masks, in the bits they are in in PSTATE */
174 uint64_t elr_el[4]; /* AArch64 exception link regs */
175 uint64_t sp_el[4]; /* AArch64 banked stack pointers */
177 /* System control coprocessor (cp15) */
178 struct {
179 uint32_t c0_cpuid;
180 uint64_t c0_cssel; /* Cache size selection. */
181 uint64_t c1_sys; /* System control register. */
182 uint64_t c1_coproc; /* Coprocessor access register. */
183 uint32_t c1_xscaleauxcr; /* XScale auxiliary control register. */
184 uint64_t ttbr0_el1; /* MMU translation table base 0. */
185 uint64_t ttbr1_el1; /* MMU translation table base 1. */
186 uint64_t c2_control; /* MMU translation table base control. */
187 uint32_t c2_mask; /* MMU translation table base selection mask. */
188 uint32_t c2_base_mask; /* MMU translation table base 0 mask. */
189 uint32_t c2_data; /* MPU data cachable bits. */
190 uint32_t c2_insn; /* MPU instruction cachable bits. */
191 uint32_t c3; /* MMU domain access control register
192 MPU write buffer control. */
193 uint32_t pmsav5_data_ap; /* PMSAv5 MPU data access permissions */
194 uint32_t pmsav5_insn_ap; /* PMSAv5 MPU insn access permissions */
195 uint64_t hcr_el2; /* Hypervisor configuration register */
196 uint64_t scr_el3; /* Secure configuration register. */
197 uint32_t ifsr_el2; /* Fault status registers. */
198 uint64_t esr_el[4];
199 uint32_t c6_region[8]; /* MPU base/size registers. */
200 uint64_t far_el[4]; /* Fault address registers. */
201 uint64_t par_el1; /* Translation result. */
202 uint32_t c9_insn; /* Cache lockdown registers. */
203 uint32_t c9_data;
204 uint64_t c9_pmcr; /* performance monitor control register */
205 uint64_t c9_pmcnten; /* perf monitor counter enables */
206 uint32_t c9_pmovsr; /* perf monitor overflow status */
207 uint32_t c9_pmxevtyper; /* perf monitor event type */
208 uint32_t c9_pmuserenr; /* perf monitor user enable */
209 uint32_t c9_pminten; /* perf monitor interrupt enables */
210 uint64_t mair_el1;
211 uint64_t c12_vecbase;
212 uint64_t vbar_el[4]; /* vector base address register */
213 uint32_t c13_fcse; /* FCSE PID. */
214 uint64_t contextidr_el1; /* Context ID. */
215 uint64_t tpidr_el0; /* User RW Thread register. */
216 uint64_t tpidrro_el0; /* User RO Thread register. */
217 uint64_t tpidr_el1; /* Privileged Thread register. */
218 uint64_t c14_cntfrq; /* Counter Frequency register */
219 uint64_t c14_cntkctl; /* Timer Control register */
220 ARMGenericTimer c14_timer[NUM_GTIMERS];
221 uint32_t c15_cpar; /* XScale Coprocessor Access Register */
222 uint32_t c15_ticonfig; /* TI925T configuration byte. */
223 uint32_t c15_i_max; /* Maximum D-cache dirty line index. */
224 uint32_t c15_i_min; /* Minimum D-cache dirty line index. */
225 uint32_t c15_threadid; /* TI debugger thread-ID. */
226 uint32_t c15_config_base_address; /* SCU base address. */
227 uint32_t c15_diagnostic; /* diagnostic register */
228 uint32_t c15_power_diagnostic;
229 uint32_t c15_power_control; /* power control */
230 uint64_t dbgbvr[16]; /* breakpoint value registers */
231 uint64_t dbgbcr[16]; /* breakpoint control registers */
232 uint64_t dbgwvr[16]; /* watchpoint value registers */
233 uint64_t dbgwcr[16]; /* watchpoint control registers */
234 uint64_t mdscr_el1;
235 /* If the counter is enabled, this stores the last time the counter
236 * was reset. Otherwise it stores the counter value
238 uint64_t c15_ccnt;
239 uint64_t pmccfiltr_el0; /* Performance Monitor Filter Register */
240 } cp15;
242 struct {
243 uint32_t other_sp;
244 uint32_t vecbase;
245 uint32_t basepri;
246 uint32_t control;
247 int current_sp;
248 int exception;
249 int pending_exception;
250 } v7m;
252 /* Information associated with an exception about to be taken:
253 * code which raises an exception must set cs->exception_index and
254 * the relevant parts of this structure; the cpu_do_interrupt function
255 * will then set the guest-visible registers as part of the exception
256 * entry process.
258 struct {
259 uint32_t syndrome; /* AArch64 format syndrome register */
260 uint32_t fsr; /* AArch32 format fault status register info */
261 uint64_t vaddress; /* virtual addr associated with exception, if any */
262 /* If we implement EL2 we will also need to store information
263 * about the intermediate physical address for stage 2 faults.
265 } exception;
267 /* Thumb-2 EE state. */
268 uint32_t teecr;
269 uint32_t teehbr;
271 /* VFP coprocessor state. */
272 struct {
273 /* VFP/Neon register state. Note that the mapping between S, D and Q
274 * views of the register bank differs between AArch64 and AArch32:
275 * In AArch32:
276 * Qn = regs[2n+1]:regs[2n]
277 * Dn = regs[n]
278 * Sn = regs[n/2] bits 31..0 for even n, and bits 63..32 for odd n
279 * (and regs[32] to regs[63] are inaccessible)
280 * In AArch64:
281 * Qn = regs[2n+1]:regs[2n]
282 * Dn = regs[2n]
283 * Sn = regs[2n] bits 31..0
284 * This corresponds to the architecturally defined mapping between
285 * the two execution states, and means we do not need to explicitly
286 * map these registers when changing states.
288 float64 regs[64];
290 uint32_t xregs[16];
291 /* We store these fpcsr fields separately for convenience. */
292 int vec_len;
293 int vec_stride;
295 /* scratch space when Tn are not sufficient. */
296 uint32_t scratch[8];
298 /* fp_status is the "normal" fp status. standard_fp_status retains
299 * values corresponding to the ARM "Standard FPSCR Value", ie
300 * default-NaN, flush-to-zero, round-to-nearest and is used by
301 * any operations (generally Neon) which the architecture defines
302 * as controlled by the standard FPSCR value rather than the FPSCR.
304 * To avoid having to transfer exception bits around, we simply
305 * say that the FPSCR cumulative exception flags are the logical
306 * OR of the flags in the two fp statuses. This relies on the
307 * only thing which needs to read the exception flags being
308 * an explicit FPSCR read.
310 float_status fp_status;
311 float_status standard_fp_status;
312 } vfp;
313 uint64_t exclusive_addr;
314 uint64_t exclusive_val;
315 uint64_t exclusive_high;
316 #if defined(CONFIG_USER_ONLY)
317 uint64_t exclusive_test;
318 uint32_t exclusive_info;
319 #endif
321 /* iwMMXt coprocessor state. */
322 struct {
323 uint64_t regs[16];
324 uint64_t val;
326 uint32_t cregs[16];
327 } iwmmxt;
329 #if defined(CONFIG_USER_ONLY)
330 /* For usermode syscall translation. */
331 int eabi;
333 /* CPSR.E value for new threads and signal handlers. */
334 uint32_t signal_cpsr_e;
335 #endif
337 struct CPUBreakpoint *cpu_breakpoint[16];
338 struct CPUWatchpoint *cpu_watchpoint[16];
340 CPU_COMMON
342 /* These fields after the common ones so they are preserved on reset. */
344 /* Internal CPU feature flags. */
345 uint64_t features;
347 void *nvic;
348 const struct arm_boot_info *boot_info;
349 } CPUARMState;
351 #include "cpu-qom.h"
353 ARMCPU *cpu_arm_init(const char *cpu_model);
354 int cpu_arm_exec(CPUARMState *s);
355 uint32_t do_arm_semihosting(CPUARMState *env);
357 static inline bool is_a64(CPUARMState *env)
359 return env->aarch64;
362 /* you can call this signal handler from your SIGBUS and SIGSEGV
363 signal handlers to inform the virtual CPU of exceptions. non zero
364 is returned if the signal was handled by the virtual CPU. */
365 int cpu_arm_signal_handler(int host_signum, void *pinfo,
366 void *puc);
367 int arm_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw,
368 int mmu_idx);
371 * pmccntr_sync
372 * @env: CPUARMState
374 * Synchronises the counter in the PMCCNTR. This must always be called twice,
375 * once before any action that might affect the timer and again afterwards.
376 * The function is used to swap the state of the register if required.
377 * This only happens when not in user mode (!CONFIG_USER_ONLY)
379 void pmccntr_sync(CPUARMState *env);
381 /* SCTLR bit meanings. Several bits have been reused in newer
382 * versions of the architecture; in that case we define constants
383 * for both old and new bit meanings. Code which tests against those
384 * bits should probably check or otherwise arrange that the CPU
385 * is the architectural version it expects.
387 #define SCTLR_M (1U << 0)
388 #define SCTLR_A (1U << 1)
389 #define SCTLR_C (1U << 2)
390 #define SCTLR_W (1U << 3) /* up to v6; RAO in v7 */
391 #define SCTLR_SA (1U << 3)
392 #define SCTLR_P (1U << 4) /* up to v5; RAO in v6 and v7 */
393 #define SCTLR_SA0 (1U << 4) /* v8 onward, AArch64 only */
394 #define SCTLR_D (1U << 5) /* up to v5; RAO in v6 */
395 #define SCTLR_CP15BEN (1U << 5) /* v7 onward */
396 #define SCTLR_L (1U << 6) /* up to v5; RAO in v6 and v7; RAZ in v8 */
397 #define SCTLR_B (1U << 7) /* up to v6; RAZ in v7 */
398 #define SCTLR_ITD (1U << 7) /* v8 onward */
399 #define SCTLR_S (1U << 8) /* up to v6; RAZ in v7 */
400 #define SCTLR_SED (1U << 8) /* v8 onward */
401 #define SCTLR_R (1U << 9) /* up to v6; RAZ in v7 */
402 #define SCTLR_UMA (1U << 9) /* v8 onward, AArch64 only */
403 #define SCTLR_F (1U << 10) /* up to v6 */
404 #define SCTLR_SW (1U << 10) /* v7 onward */
405 #define SCTLR_Z (1U << 11)
406 #define SCTLR_I (1U << 12)
407 #define SCTLR_V (1U << 13)
408 #define SCTLR_RR (1U << 14) /* up to v7 */
409 #define SCTLR_DZE (1U << 14) /* v8 onward, AArch64 only */
410 #define SCTLR_L4 (1U << 15) /* up to v6; RAZ in v7 */
411 #define SCTLR_UCT (1U << 15) /* v8 onward, AArch64 only */
412 #define SCTLR_DT (1U << 16) /* up to ??, RAO in v6 and v7 */
413 #define SCTLR_nTWI (1U << 16) /* v8 onward */
414 #define SCTLR_HA (1U << 17)
415 #define SCTLR_IT (1U << 18) /* up to ??, RAO in v6 and v7 */
416 #define SCTLR_nTWE (1U << 18) /* v8 onward */
417 #define SCTLR_WXN (1U << 19)
418 #define SCTLR_ST (1U << 20) /* up to ??, RAZ in v6 */
419 #define SCTLR_UWXN (1U << 20) /* v7 onward */
420 #define SCTLR_FI (1U << 21)
421 #define SCTLR_U (1U << 22)
422 #define SCTLR_XP (1U << 23) /* up to v6; v7 onward RAO */
423 #define SCTLR_VE (1U << 24) /* up to v7 */
424 #define SCTLR_E0E (1U << 24) /* v8 onward, AArch64 only */
425 #define SCTLR_EE (1U << 25)
426 #define SCTLR_L2 (1U << 26) /* up to v6, RAZ in v7 */
427 #define SCTLR_UCI (1U << 26) /* v8 onward, AArch64 only */
428 #define SCTLR_NMFI (1U << 27)
429 #define SCTLR_TRE (1U << 28)
430 #define SCTLR_AFE (1U << 29)
431 #define SCTLR_TE (1U << 30)
433 #define CPSR_M (0x1fU)
434 #define CPSR_T (1U << 5)
435 #define CPSR_F (1U << 6)
436 #define CPSR_I (1U << 7)
437 #define CPSR_A (1U << 8)
438 #define CPSR_E (1U << 9)
439 #define CPSR_IT_2_7 (0xfc00U)
440 #define CPSR_GE (0xfU << 16)
441 #define CPSR_IL (1U << 20)
442 /* Note that the RESERVED bits include bit 21, which is PSTATE_SS in
443 * an AArch64 SPSR but RES0 in AArch32 SPSR and CPSR. In QEMU we use
444 * env->uncached_cpsr bit 21 to store PSTATE.SS when executing in AArch32,
445 * where it is live state but not accessible to the AArch32 code.
447 #define CPSR_RESERVED (0x7U << 21)
448 #define CPSR_J (1U << 24)
449 #define CPSR_IT_0_1 (3U << 25)
450 #define CPSR_Q (1U << 27)
451 #define CPSR_V (1U << 28)
452 #define CPSR_C (1U << 29)
453 #define CPSR_Z (1U << 30)
454 #define CPSR_N (1U << 31)
455 #define CPSR_NZCV (CPSR_N | CPSR_Z | CPSR_C | CPSR_V)
456 #define CPSR_AIF (CPSR_A | CPSR_I | CPSR_F)
458 #define CPSR_IT (CPSR_IT_0_1 | CPSR_IT_2_7)
459 #define CACHED_CPSR_BITS (CPSR_T | CPSR_AIF | CPSR_GE | CPSR_IT | CPSR_Q \
460 | CPSR_NZCV)
461 /* Bits writable in user mode. */
462 #define CPSR_USER (CPSR_NZCV | CPSR_Q | CPSR_GE)
463 /* Execution state bits. MRS read as zero, MSR writes ignored. */
464 #define CPSR_EXEC (CPSR_T | CPSR_IT | CPSR_J | CPSR_IL)
465 /* Mask of bits which may be set by exception return copying them from SPSR */
466 #define CPSR_ERET_MASK (~CPSR_RESERVED)
468 #define TTBCR_N (7U << 0) /* TTBCR.EAE==0 */
469 #define TTBCR_T0SZ (7U << 0) /* TTBCR.EAE==1 */
470 #define TTBCR_PD0 (1U << 4)
471 #define TTBCR_PD1 (1U << 5)
472 #define TTBCR_EPD0 (1U << 7)
473 #define TTBCR_IRGN0 (3U << 8)
474 #define TTBCR_ORGN0 (3U << 10)
475 #define TTBCR_SH0 (3U << 12)
476 #define TTBCR_T1SZ (3U << 16)
477 #define TTBCR_A1 (1U << 22)
478 #define TTBCR_EPD1 (1U << 23)
479 #define TTBCR_IRGN1 (3U << 24)
480 #define TTBCR_ORGN1 (3U << 26)
481 #define TTBCR_SH1 (1U << 28)
482 #define TTBCR_EAE (1U << 31)
484 /* Bit definitions for ARMv8 SPSR (PSTATE) format.
485 * Only these are valid when in AArch64 mode; in
486 * AArch32 mode SPSRs are basically CPSR-format.
488 #define PSTATE_SP (1U)
489 #define PSTATE_M (0xFU)
490 #define PSTATE_nRW (1U << 4)
491 #define PSTATE_F (1U << 6)
492 #define PSTATE_I (1U << 7)
493 #define PSTATE_A (1U << 8)
494 #define PSTATE_D (1U << 9)
495 #define PSTATE_IL (1U << 20)
496 #define PSTATE_SS (1U << 21)
497 #define PSTATE_V (1U << 28)
498 #define PSTATE_C (1U << 29)
499 #define PSTATE_Z (1U << 30)
500 #define PSTATE_N (1U << 31)
501 #define PSTATE_NZCV (PSTATE_N | PSTATE_Z | PSTATE_C | PSTATE_V)
502 #define PSTATE_DAIF (PSTATE_D | PSTATE_A | PSTATE_I | PSTATE_F)
503 #define CACHED_PSTATE_BITS (PSTATE_NZCV | PSTATE_DAIF)
504 /* Mode values for AArch64 */
505 #define PSTATE_MODE_EL3h 13
506 #define PSTATE_MODE_EL3t 12
507 #define PSTATE_MODE_EL2h 9
508 #define PSTATE_MODE_EL2t 8
509 #define PSTATE_MODE_EL1h 5
510 #define PSTATE_MODE_EL1t 4
511 #define PSTATE_MODE_EL0t 0
513 /* Map EL and handler into a PSTATE_MODE. */
514 static inline unsigned int aarch64_pstate_mode(unsigned int el, bool handler)
516 return (el << 2) | handler;
519 /* Return the current PSTATE value. For the moment we don't support 32<->64 bit
520 * interprocessing, so we don't attempt to sync with the cpsr state used by
521 * the 32 bit decoder.
523 static inline uint32_t pstate_read(CPUARMState *env)
525 int ZF;
527 ZF = (env->ZF == 0);
528 return (env->NF & 0x80000000) | (ZF << 30)
529 | (env->CF << 29) | ((env->VF & 0x80000000) >> 3)
530 | env->pstate | env->daif;
533 static inline void pstate_write(CPUARMState *env, uint32_t val)
535 env->ZF = (~val) & PSTATE_Z;
536 env->NF = val;
537 env->CF = (val >> 29) & 1;
538 env->VF = (val << 3) & 0x80000000;
539 env->daif = val & PSTATE_DAIF;
540 env->pstate = val & ~CACHED_PSTATE_BITS;
543 /* Return the current CPSR value. */
544 uint32_t cpsr_read(CPUARMState *env);
545 /* Set the CPSR. Note that some bits of mask must be all-set or all-clear. */
546 void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask);
548 /* Return the current xPSR value. */
549 static inline uint32_t xpsr_read(CPUARMState *env)
551 int ZF;
552 ZF = (env->ZF == 0);
553 return (env->NF & 0x80000000) | (ZF << 30)
554 | (env->CF << 29) | ((env->VF & 0x80000000) >> 3) | (env->QF << 27)
555 | (env->thumb << 24) | ((env->condexec_bits & 3) << 25)
556 | ((env->condexec_bits & 0xfc) << 8)
557 | env->v7m.exception;
560 /* Set the xPSR. Note that some bits of mask must be all-set or all-clear. */
561 static inline void xpsr_write(CPUARMState *env, uint32_t val, uint32_t mask)
563 if (mask & CPSR_NZCV) {
564 env->ZF = (~val) & CPSR_Z;
565 env->NF = val;
566 env->CF = (val >> 29) & 1;
567 env->VF = (val << 3) & 0x80000000;
569 if (mask & CPSR_Q)
570 env->QF = ((val & CPSR_Q) != 0);
571 if (mask & (1 << 24))
572 env->thumb = ((val & (1 << 24)) != 0);
573 if (mask & CPSR_IT_0_1) {
574 env->condexec_bits &= ~3;
575 env->condexec_bits |= (val >> 25) & 3;
577 if (mask & CPSR_IT_2_7) {
578 env->condexec_bits &= 3;
579 env->condexec_bits |= (val >> 8) & 0xfc;
581 if (mask & 0x1ff) {
582 env->v7m.exception = val & 0x1ff;
586 #define HCR_VM (1ULL << 0)
587 #define HCR_SWIO (1ULL << 1)
588 #define HCR_PTW (1ULL << 2)
589 #define HCR_FMO (1ULL << 3)
590 #define HCR_IMO (1ULL << 4)
591 #define HCR_AMO (1ULL << 5)
592 #define HCR_VF (1ULL << 6)
593 #define HCR_VI (1ULL << 7)
594 #define HCR_VSE (1ULL << 8)
595 #define HCR_FB (1ULL << 9)
596 #define HCR_BSU_MASK (3ULL << 10)
597 #define HCR_DC (1ULL << 12)
598 #define HCR_TWI (1ULL << 13)
599 #define HCR_TWE (1ULL << 14)
600 #define HCR_TID0 (1ULL << 15)
601 #define HCR_TID1 (1ULL << 16)
602 #define HCR_TID2 (1ULL << 17)
603 #define HCR_TID3 (1ULL << 18)
604 #define HCR_TSC (1ULL << 19)
605 #define HCR_TIDCP (1ULL << 20)
606 #define HCR_TACR (1ULL << 21)
607 #define HCR_TSW (1ULL << 22)
608 #define HCR_TPC (1ULL << 23)
609 #define HCR_TPU (1ULL << 24)
610 #define HCR_TTLB (1ULL << 25)
611 #define HCR_TVM (1ULL << 26)
612 #define HCR_TGE (1ULL << 27)
613 #define HCR_TDZ (1ULL << 28)
614 #define HCR_HCD (1ULL << 29)
615 #define HCR_TRVM (1ULL << 30)
616 #define HCR_RW (1ULL << 31)
617 #define HCR_CD (1ULL << 32)
618 #define HCR_ID (1ULL << 33)
619 #define HCR_MASK ((1ULL << 34) - 1)
621 #define SCR_NS (1U << 0)
622 #define SCR_IRQ (1U << 1)
623 #define SCR_FIQ (1U << 2)
624 #define SCR_EA (1U << 3)
625 #define SCR_FW (1U << 4)
626 #define SCR_AW (1U << 5)
627 #define SCR_NET (1U << 6)
628 #define SCR_SMD (1U << 7)
629 #define SCR_HCE (1U << 8)
630 #define SCR_SIF (1U << 9)
631 #define SCR_RW (1U << 10)
632 #define SCR_ST (1U << 11)
633 #define SCR_TWI (1U << 12)
634 #define SCR_TWE (1U << 13)
635 #define SCR_AARCH32_MASK (0x3fff & ~(SCR_RW | SCR_ST))
636 #define SCR_AARCH64_MASK (0x3fff & ~SCR_NET)
638 /* Return the current FPSCR value. */
639 uint32_t vfp_get_fpscr(CPUARMState *env);
640 void vfp_set_fpscr(CPUARMState *env, uint32_t val);
642 /* For A64 the FPSCR is split into two logically distinct registers,
643 * FPCR and FPSR. However since they still use non-overlapping bits
644 * we store the underlying state in fpscr and just mask on read/write.
646 #define FPSR_MASK 0xf800009f
647 #define FPCR_MASK 0x07f79f00
648 static inline uint32_t vfp_get_fpsr(CPUARMState *env)
650 return vfp_get_fpscr(env) & FPSR_MASK;
653 static inline void vfp_set_fpsr(CPUARMState *env, uint32_t val)
655 uint32_t new_fpscr = (vfp_get_fpscr(env) & ~FPSR_MASK) | (val & FPSR_MASK);
656 vfp_set_fpscr(env, new_fpscr);
659 static inline uint32_t vfp_get_fpcr(CPUARMState *env)
661 return vfp_get_fpscr(env) & FPCR_MASK;
664 static inline void vfp_set_fpcr(CPUARMState *env, uint32_t val)
666 uint32_t new_fpscr = (vfp_get_fpscr(env) & ~FPCR_MASK) | (val & FPCR_MASK);
667 vfp_set_fpscr(env, new_fpscr);
670 enum arm_cpu_mode {
671 ARM_CPU_MODE_USR = 0x10,
672 ARM_CPU_MODE_FIQ = 0x11,
673 ARM_CPU_MODE_IRQ = 0x12,
674 ARM_CPU_MODE_SVC = 0x13,
675 ARM_CPU_MODE_MON = 0x16,
676 ARM_CPU_MODE_ABT = 0x17,
677 ARM_CPU_MODE_HYP = 0x1a,
678 ARM_CPU_MODE_UND = 0x1b,
679 ARM_CPU_MODE_SYS = 0x1f
682 /* VFP system registers. */
683 #define ARM_VFP_FPSID 0
684 #define ARM_VFP_FPSCR 1
685 #define ARM_VFP_MVFR2 5
686 #define ARM_VFP_MVFR1 6
687 #define ARM_VFP_MVFR0 7
688 #define ARM_VFP_FPEXC 8
689 #define ARM_VFP_FPINST 9
690 #define ARM_VFP_FPINST2 10
692 /* iwMMXt coprocessor control registers. */
693 #define ARM_IWMMXT_wCID 0
694 #define ARM_IWMMXT_wCon 1
695 #define ARM_IWMMXT_wCSSF 2
696 #define ARM_IWMMXT_wCASF 3
697 #define ARM_IWMMXT_wCGR0 8
698 #define ARM_IWMMXT_wCGR1 9
699 #define ARM_IWMMXT_wCGR2 10
700 #define ARM_IWMMXT_wCGR3 11
702 /* If adding a feature bit which corresponds to a Linux ELF
703 * HWCAP bit, remember to update the feature-bit-to-hwcap
704 * mapping in linux-user/elfload.c:get_elf_hwcap().
706 enum arm_features {
707 ARM_FEATURE_VFP, /* Vector Floating-point. */
708 ARM_FEATURE_AUXCR, /* ARM1026 Auxiliary control register. */
709 ARM_FEATURE_XSCALE, /* Intel XScale extensions. */
710 ARM_FEATURE_IWMMXT, /* Intel iwMMXt extension. */
711 ARM_FEATURE_V6,
712 ARM_FEATURE_V6K,
713 ARM_FEATURE_V6_VECBASE,
714 ARM_FEATURE_V7,
715 //~ See http://lists.nongnu.org/archive/html/qemu-devel/2009-05/msg01570.html
716 //~ ARM_FEATURE_THUMB, /* TODO: still unused. */
717 //~ ARM_FEATURE_THUMB1 = ARM_FEATURE_THUMB, /* TODO: still unused. */
718 ARM_FEATURE_THUMB2,
719 ARM_FEATURE_MPU, /* Only has Memory Protection Unit, not full MMU. */
720 ARM_FEATURE_VFP3,
721 ARM_FEATURE_VFP_FP16,
722 ARM_FEATURE_NEON,
723 ARM_FEATURE_THUMB_DIV, /* divide supported in Thumb encoding */
724 ARM_FEATURE_M, /* Microcontroller profile. */
725 ARM_FEATURE_OMAPCP, /* OMAP specific CP15 ops handling. */
726 // TODO: long multiply instructions (M variant), standard for v4 and v5.
727 // TODO: enhanced dsp instructions (E variant).
728 // TODO: ARMv5TExP.
729 ARM_FEATURE_THUMB2EE,
730 ARM_FEATURE_V7MP, /* v7 Multiprocessing Extensions */
731 ARM_FEATURE_V4T,
732 ARM_FEATURE_V5,
733 ARM_FEATURE_STRONGARM,
734 ARM_FEATURE_VAPA, /* cp15 VA to PA lookups */
735 ARM_FEATURE_ARM_DIV, /* divide supported in ARM encoding */
736 ARM_FEATURE_VFP4, /* VFPv4 (implies that NEON is v2) */
737 ARM_FEATURE_GENERIC_TIMER,
738 ARM_FEATURE_MVFR, /* Media and VFP Feature Registers 0 and 1 */
739 ARM_FEATURE_DUMMY_C15_REGS, /* RAZ/WI all of cp15 crn=15 */
740 ARM_FEATURE_CACHE_TEST_CLEAN, /* 926/1026 style test-and-clean ops */
741 ARM_FEATURE_CACHE_DIRTY_REG, /* 1136/1176 cache dirty status register */
742 ARM_FEATURE_CACHE_BLOCK_OPS, /* v6 optional cache block operations */
743 ARM_FEATURE_MPIDR, /* has cp15 MPIDR */
744 ARM_FEATURE_PXN, /* has Privileged Execute Never bit */
745 ARM_FEATURE_LPAE, /* has Large Physical Address Extension */
746 ARM_FEATURE_V8,
747 ARM_FEATURE_AARCH64, /* supports 64 bit mode */
748 ARM_FEATURE_V8_AES, /* implements AES part of v8 Crypto Extensions */
749 ARM_FEATURE_CBAR, /* has cp15 CBAR */
750 ARM_FEATURE_CRC, /* ARMv8 CRC instructions */
751 ARM_FEATURE_CBAR_RO, /* has cp15 CBAR and it is read-only */
752 ARM_FEATURE_EL2, /* has EL2 Virtualization support */
753 ARM_FEATURE_EL3, /* has EL3 Secure monitor support */
754 ARM_FEATURE_V8_SHA1, /* implements SHA1 part of v8 Crypto Extensions */
755 ARM_FEATURE_V8_SHA256, /* implements SHA256 part of v8 Crypto Extensions */
756 ARM_FEATURE_V8_PMULL, /* implements PMULL part of v8 Crypto Extensions */
759 static inline int arm_feature(CPUARMState *env, int feature)
761 return (env->features & (1ULL << feature)) != 0;
764 #if !defined(CONFIG_USER_ONLY)
765 /* Return true if exception levels below EL3 are in secure state,
766 * or would be following an exception return to that level.
767 * Unlike arm_is_secure() (which is always a question about the
768 * _current_ state of the CPU) this doesn't care about the current
769 * EL or mode.
771 static inline bool arm_is_secure_below_el3(CPUARMState *env)
773 if (arm_feature(env, ARM_FEATURE_EL3)) {
774 return !(env->cp15.scr_el3 & SCR_NS);
775 } else {
776 /* If EL2 is not supported then the secure state is implementation
777 * defined, in which case QEMU defaults to non-secure.
779 return false;
783 /* Return true if the processor is in secure state */
784 static inline bool arm_is_secure(CPUARMState *env)
786 if (arm_feature(env, ARM_FEATURE_EL3)) {
787 if (is_a64(env) && extract32(env->pstate, 2, 2) == 3) {
788 /* CPU currently in AArch64 state and EL3 */
789 return true;
790 } else if (!is_a64(env) &&
791 (env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON) {
792 /* CPU currently in AArch32 state and monitor mode */
793 return true;
796 return arm_is_secure_below_el3(env);
799 #else
800 static inline bool arm_is_secure_below_el3(CPUARMState *env)
802 return false;
805 static inline bool arm_is_secure(CPUARMState *env)
807 return false;
809 #endif
811 /* Return true if the specified exception level is running in AArch64 state. */
812 static inline bool arm_el_is_aa64(CPUARMState *env, int el)
814 /* We don't currently support EL2, and this isn't valid for EL0
815 * (if we're in EL0, is_a64() is what you want, and if we're not in EL0
816 * then the state of EL0 isn't well defined.)
818 assert(el == 1 || el == 3);
820 /* AArch64-capable CPUs always run with EL1 in AArch64 mode. This
821 * is a QEMU-imposed simplification which we may wish to change later.
822 * If we in future support EL2 and/or EL3, then the state of lower
823 * exception levels is controlled by the HCR.RW and SCR.RW bits.
825 return arm_feature(env, ARM_FEATURE_AARCH64);
828 void arm_cpu_list(FILE *f, fprintf_function cpu_fprintf);
829 unsigned int arm_excp_target_el(CPUState *cs, unsigned int excp_idx);
831 /* Interface between CPU and Interrupt controller. */
832 void armv7m_nvic_set_pending(void *opaque, int irq);
833 int armv7m_nvic_acknowledge_irq(void *opaque);
834 void armv7m_nvic_complete_irq(void *opaque, int irq);
836 /* Interface for defining coprocessor registers.
837 * Registers are defined in tables of arm_cp_reginfo structs
838 * which are passed to define_arm_cp_regs().
841 /* When looking up a coprocessor register we look for it
842 * via an integer which encodes all of:
843 * coprocessor number
844 * Crn, Crm, opc1, opc2 fields
845 * 32 or 64 bit register (ie is it accessed via MRC/MCR
846 * or via MRRC/MCRR?)
847 * We allow 4 bits for opc1 because MRRC/MCRR have a 4 bit field.
848 * (In this case crn and opc2 should be zero.)
849 * For AArch64, there is no 32/64 bit size distinction;
850 * instead all registers have a 2 bit op0, 3 bit op1 and op2,
851 * and 4 bit CRn and CRm. The encoding patterns are chosen
852 * to be easy to convert to and from the KVM encodings, and also
853 * so that the hashtable can contain both AArch32 and AArch64
854 * registers (to allow for interprocessing where we might run
855 * 32 bit code on a 64 bit core).
857 /* This bit is private to our hashtable cpreg; in KVM register
858 * IDs the AArch64/32 distinction is the KVM_REG_ARM/ARM64
859 * in the upper bits of the 64 bit ID.
861 #define CP_REG_AA64_SHIFT 28
862 #define CP_REG_AA64_MASK (1 << CP_REG_AA64_SHIFT)
864 #define ENCODE_CP_REG(cp, is64, crn, crm, opc1, opc2) \
865 (((cp) << 16) | ((is64) << 15) | ((crn) << 11) | \
866 ((crm) << 7) | ((opc1) << 3) | (opc2))
868 #define ENCODE_AA64_CP_REG(cp, crn, crm, op0, op1, op2) \
869 (CP_REG_AA64_MASK | \
870 ((cp) << CP_REG_ARM_COPROC_SHIFT) | \
871 ((op0) << CP_REG_ARM64_SYSREG_OP0_SHIFT) | \
872 ((op1) << CP_REG_ARM64_SYSREG_OP1_SHIFT) | \
873 ((crn) << CP_REG_ARM64_SYSREG_CRN_SHIFT) | \
874 ((crm) << CP_REG_ARM64_SYSREG_CRM_SHIFT) | \
875 ((op2) << CP_REG_ARM64_SYSREG_OP2_SHIFT))
877 /* Convert a full 64 bit KVM register ID to the truncated 32 bit
878 * version used as a key for the coprocessor register hashtable
880 static inline uint32_t kvm_to_cpreg_id(uint64_t kvmid)
882 uint32_t cpregid = kvmid;
883 if ((kvmid & CP_REG_ARCH_MASK) == CP_REG_ARM64) {
884 cpregid |= CP_REG_AA64_MASK;
885 } else if ((kvmid & CP_REG_SIZE_MASK) == CP_REG_SIZE_U64) {
886 cpregid |= (1 << 15);
888 return cpregid;
891 /* Convert a truncated 32 bit hashtable key into the full
892 * 64 bit KVM register ID.
894 static inline uint64_t cpreg_to_kvm_id(uint32_t cpregid)
896 uint64_t kvmid;
898 if (cpregid & CP_REG_AA64_MASK) {
899 kvmid = cpregid & ~CP_REG_AA64_MASK;
900 kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM64;
901 } else {
902 kvmid = cpregid & ~(1 << 15);
903 if (cpregid & (1 << 15)) {
904 kvmid |= CP_REG_SIZE_U64 | CP_REG_ARM;
905 } else {
906 kvmid |= CP_REG_SIZE_U32 | CP_REG_ARM;
909 return kvmid;
912 /* ARMCPRegInfo type field bits. If the SPECIAL bit is set this is a
913 * special-behaviour cp reg and bits [15..8] indicate what behaviour
914 * it has. Otherwise it is a simple cp reg, where CONST indicates that
915 * TCG can assume the value to be constant (ie load at translate time)
916 * and 64BIT indicates a 64 bit wide coprocessor register. SUPPRESS_TB_END
917 * indicates that the TB should not be ended after a write to this register
918 * (the default is that the TB ends after cp writes). OVERRIDE permits
919 * a register definition to override a previous definition for the
920 * same (cp, is64, crn, crm, opc1, opc2) tuple: either the new or the
921 * old must have the OVERRIDE bit set.
922 * NO_MIGRATE indicates that this register should be ignored for migration;
923 * (eg because any state is accessed via some other coprocessor register).
924 * IO indicates that this register does I/O and therefore its accesses
925 * need to be surrounded by gen_io_start()/gen_io_end(). In particular,
926 * registers which implement clocks or timers require this.
928 #define ARM_CP_SPECIAL 1
929 #define ARM_CP_CONST 2
930 #define ARM_CP_64BIT 4
931 #define ARM_CP_SUPPRESS_TB_END 8
932 #define ARM_CP_OVERRIDE 16
933 #define ARM_CP_NO_MIGRATE 32
934 #define ARM_CP_IO 64
935 #define ARM_CP_NOP (ARM_CP_SPECIAL | (1 << 8))
936 #define ARM_CP_WFI (ARM_CP_SPECIAL | (2 << 8))
937 #define ARM_CP_NZCV (ARM_CP_SPECIAL | (3 << 8))
938 #define ARM_CP_CURRENTEL (ARM_CP_SPECIAL | (4 << 8))
939 #define ARM_CP_DC_ZVA (ARM_CP_SPECIAL | (5 << 8))
940 #define ARM_LAST_SPECIAL ARM_CP_DC_ZVA
941 /* Used only as a terminator for ARMCPRegInfo lists */
942 #define ARM_CP_SENTINEL 0xffff
943 /* Mask of only the flag bits in a type field */
944 #define ARM_CP_FLAG_MASK 0x7f
946 /* Valid values for ARMCPRegInfo state field, indicating which of
947 * the AArch32 and AArch64 execution states this register is visible in.
948 * If the reginfo doesn't explicitly specify then it is AArch32 only.
949 * If the reginfo is declared to be visible in both states then a second
950 * reginfo is synthesised for the AArch32 view of the AArch64 register,
951 * such that the AArch32 view is the lower 32 bits of the AArch64 one.
952 * Note that we rely on the values of these enums as we iterate through
953 * the various states in some places.
955 enum {
956 ARM_CP_STATE_AA32 = 0,
957 ARM_CP_STATE_AA64 = 1,
958 ARM_CP_STATE_BOTH = 2,
961 /* Return true if cptype is a valid type field. This is used to try to
962 * catch errors where the sentinel has been accidentally left off the end
963 * of a list of registers.
965 static inline bool cptype_valid(int cptype)
967 return ((cptype & ~ARM_CP_FLAG_MASK) == 0)
968 || ((cptype & ARM_CP_SPECIAL) &&
969 ((cptype & ~ARM_CP_FLAG_MASK) <= ARM_LAST_SPECIAL));
972 /* Access rights:
973 * We define bits for Read and Write access for what rev C of the v7-AR ARM ARM
974 * defines as PL0 (user), PL1 (fiq/irq/svc/abt/und/sys, ie privileged), and
975 * PL2 (hyp). The other level which has Read and Write bits is Secure PL1
976 * (ie any of the privileged modes in Secure state, or Monitor mode).
977 * If a register is accessible in one privilege level it's always accessible
978 * in higher privilege levels too. Since "Secure PL1" also follows this rule
979 * (ie anything visible in PL2 is visible in S-PL1, some things are only
980 * visible in S-PL1) but "Secure PL1" is a bit of a mouthful, we bend the
981 * terminology a little and call this PL3.
982 * In AArch64 things are somewhat simpler as the PLx bits line up exactly
983 * with the ELx exception levels.
985 * If access permissions for a register are more complex than can be
986 * described with these bits, then use a laxer set of restrictions, and
987 * do the more restrictive/complex check inside a helper function.
989 #define PL3_R 0x80
990 #define PL3_W 0x40
991 #define PL2_R (0x20 | PL3_R)
992 #define PL2_W (0x10 | PL3_W)
993 #define PL1_R (0x08 | PL2_R)
994 #define PL1_W (0x04 | PL2_W)
995 #define PL0_R (0x02 | PL1_R)
996 #define PL0_W (0x01 | PL1_W)
998 #define PL3_RW (PL3_R | PL3_W)
999 #define PL2_RW (PL2_R | PL2_W)
1000 #define PL1_RW (PL1_R | PL1_W)
1001 #define PL0_RW (PL0_R | PL0_W)
1003 /* Return the current Exception Level (as per ARMv8; note that this differs
1004 * from the ARMv7 Privilege Level).
1006 static inline int arm_current_el(CPUARMState *env)
1008 if (is_a64(env)) {
1009 return extract32(env->pstate, 2, 2);
1012 switch (env->uncached_cpsr & 0x1f) {
1013 case ARM_CPU_MODE_USR:
1014 return 0;
1015 case ARM_CPU_MODE_HYP:
1016 return 2;
1017 case ARM_CPU_MODE_MON:
1018 return 3;
1019 default:
1020 if (arm_is_secure(env) && !arm_el_is_aa64(env, 3)) {
1021 /* If EL3 is 32-bit then all secure privileged modes run in
1022 * EL3
1024 return 3;
1027 return 1;
1031 typedef struct ARMCPRegInfo ARMCPRegInfo;
1033 typedef enum CPAccessResult {
1034 /* Access is permitted */
1035 CP_ACCESS_OK = 0,
1036 /* Access fails due to a configurable trap or enable which would
1037 * result in a categorized exception syndrome giving information about
1038 * the failing instruction (ie syndrome category 0x3, 0x4, 0x5, 0x6,
1039 * 0xc or 0x18).
1041 CP_ACCESS_TRAP = 1,
1042 /* Access fails and results in an exception syndrome 0x0 ("uncategorized").
1043 * Note that this is not a catch-all case -- the set of cases which may
1044 * result in this failure is specifically defined by the architecture.
1046 CP_ACCESS_TRAP_UNCATEGORIZED = 2,
1047 } CPAccessResult;
1049 /* Access functions for coprocessor registers. These cannot fail and
1050 * may not raise exceptions.
1052 typedef uint64_t CPReadFn(CPUARMState *env, const ARMCPRegInfo *opaque);
1053 typedef void CPWriteFn(CPUARMState *env, const ARMCPRegInfo *opaque,
1054 uint64_t value);
1055 /* Access permission check functions for coprocessor registers. */
1056 typedef CPAccessResult CPAccessFn(CPUARMState *env, const ARMCPRegInfo *opaque);
1057 /* Hook function for register reset */
1058 typedef void CPResetFn(CPUARMState *env, const ARMCPRegInfo *opaque);
1060 #define CP_ANY 0xff
1062 /* Definition of an ARM coprocessor register */
1063 struct ARMCPRegInfo {
1064 /* Name of register (useful mainly for debugging, need not be unique) */
1065 const char *name;
1066 /* Location of register: coprocessor number and (crn,crm,opc1,opc2)
1067 * tuple. Any of crm, opc1 and opc2 may be CP_ANY to indicate a
1068 * 'wildcard' field -- any value of that field in the MRC/MCR insn
1069 * will be decoded to this register. The register read and write
1070 * callbacks will be passed an ARMCPRegInfo with the crn/crm/opc1/opc2
1071 * used by the program, so it is possible to register a wildcard and
1072 * then behave differently on read/write if necessary.
1073 * For 64 bit registers, only crm and opc1 are relevant; crn and opc2
1074 * must both be zero.
1075 * For AArch64-visible registers, opc0 is also used.
1076 * Since there are no "coprocessors" in AArch64, cp is purely used as a
1077 * way to distinguish (for KVM's benefit) guest-visible system registers
1078 * from demuxed ones provided to preserve the "no side effects on
1079 * KVM register read/write from QEMU" semantics. cp==0x13 is guest
1080 * visible (to match KVM's encoding); cp==0 will be converted to
1081 * cp==0x13 when the ARMCPRegInfo is registered, for convenience.
1083 uint8_t cp;
1084 uint8_t crn;
1085 uint8_t crm;
1086 uint8_t opc0;
1087 uint8_t opc1;
1088 uint8_t opc2;
1089 /* Execution state in which this register is visible: ARM_CP_STATE_* */
1090 int state;
1091 /* Register type: ARM_CP_* bits/values */
1092 int type;
1093 /* Access rights: PL*_[RW] */
1094 int access;
1095 /* The opaque pointer passed to define_arm_cp_regs_with_opaque() when
1096 * this register was defined: can be used to hand data through to the
1097 * register read/write functions, since they are passed the ARMCPRegInfo*.
1099 void *opaque;
1100 /* Value of this register, if it is ARM_CP_CONST. Otherwise, if
1101 * fieldoffset is non-zero, the reset value of the register.
1103 uint64_t resetvalue;
1104 /* Offset of the field in CPUARMState for this register. This is not
1105 * needed if either:
1106 * 1. type is ARM_CP_CONST or one of the ARM_CP_SPECIALs
1107 * 2. both readfn and writefn are specified
1109 ptrdiff_t fieldoffset; /* offsetof(CPUARMState, field) */
1110 /* Function for making any access checks for this register in addition to
1111 * those specified by the 'access' permissions bits. If NULL, no extra
1112 * checks required. The access check is performed at runtime, not at
1113 * translate time.
1115 CPAccessFn *accessfn;
1116 /* Function for handling reads of this register. If NULL, then reads
1117 * will be done by loading from the offset into CPUARMState specified
1118 * by fieldoffset.
1120 CPReadFn *readfn;
1121 /* Function for handling writes of this register. If NULL, then writes
1122 * will be done by writing to the offset into CPUARMState specified
1123 * by fieldoffset.
1125 CPWriteFn *writefn;
1126 /* Function for doing a "raw" read; used when we need to copy
1127 * coprocessor state to the kernel for KVM or out for
1128 * migration. This only needs to be provided if there is also a
1129 * readfn and it has side effects (for instance clear-on-read bits).
1131 CPReadFn *raw_readfn;
1132 /* Function for doing a "raw" write; used when we need to copy KVM
1133 * kernel coprocessor state into userspace, or for inbound
1134 * migration. This only needs to be provided if there is also a
1135 * writefn and it masks out "unwritable" bits or has write-one-to-clear
1136 * or similar behaviour.
1138 CPWriteFn *raw_writefn;
1139 /* Function for resetting the register. If NULL, then reset will be done
1140 * by writing resetvalue to the field specified in fieldoffset. If
1141 * fieldoffset is 0 then no reset will be done.
1143 CPResetFn *resetfn;
1146 /* Macros which are lvalues for the field in CPUARMState for the
1147 * ARMCPRegInfo *ri.
1149 #define CPREG_FIELD32(env, ri) \
1150 (*(uint32_t *)((char *)(env) + (ri)->fieldoffset))
1151 #define CPREG_FIELD64(env, ri) \
1152 (*(uint64_t *)((char *)(env) + (ri)->fieldoffset))
1154 #define REGINFO_SENTINEL { .type = ARM_CP_SENTINEL }
1156 void define_arm_cp_regs_with_opaque(ARMCPU *cpu,
1157 const ARMCPRegInfo *regs, void *opaque);
1158 void define_one_arm_cp_reg_with_opaque(ARMCPU *cpu,
1159 const ARMCPRegInfo *regs, void *opaque);
1160 static inline void define_arm_cp_regs(ARMCPU *cpu, const ARMCPRegInfo *regs)
1162 define_arm_cp_regs_with_opaque(cpu, regs, NULL);
1164 static inline void define_one_arm_cp_reg(ARMCPU *cpu, const ARMCPRegInfo *regs)
1166 define_one_arm_cp_reg_with_opaque(cpu, regs, NULL);
1168 const ARMCPRegInfo *get_arm_cp_reginfo(GHashTable *cpregs, uint32_t encoded_cp);
1170 /* CPWriteFn that can be used to implement writes-ignored behaviour */
1171 void arm_cp_write_ignore(CPUARMState *env, const ARMCPRegInfo *ri,
1172 uint64_t value);
1173 /* CPReadFn that can be used for read-as-zero behaviour */
1174 uint64_t arm_cp_read_zero(CPUARMState *env, const ARMCPRegInfo *ri);
1176 /* CPResetFn that does nothing, for use if no reset is required even
1177 * if fieldoffset is non zero.
1179 void arm_cp_reset_ignore(CPUARMState *env, const ARMCPRegInfo *opaque);
1181 /* Return true if this reginfo struct's field in the cpu state struct
1182 * is 64 bits wide.
1184 static inline bool cpreg_field_is_64bit(const ARMCPRegInfo *ri)
1186 return (ri->state == ARM_CP_STATE_AA64) || (ri->type & ARM_CP_64BIT);
1189 static inline bool cp_access_ok(int current_el,
1190 const ARMCPRegInfo *ri, int isread)
1192 return (ri->access >> ((current_el * 2) + isread)) & 1;
1196 * write_list_to_cpustate
1197 * @cpu: ARMCPU
1199 * For each register listed in the ARMCPU cpreg_indexes list, write
1200 * its value from the cpreg_values list into the ARMCPUState structure.
1201 * This updates TCG's working data structures from KVM data or
1202 * from incoming migration state.
1204 * Returns: true if all register values were updated correctly,
1205 * false if some register was unknown or could not be written.
1206 * Note that we do not stop early on failure -- we will attempt
1207 * writing all registers in the list.
1209 bool write_list_to_cpustate(ARMCPU *cpu);
1212 * write_cpustate_to_list:
1213 * @cpu: ARMCPU
1215 * For each register listed in the ARMCPU cpreg_indexes list, write
1216 * its value from the ARMCPUState structure into the cpreg_values list.
1217 * This is used to copy info from TCG's working data structures into
1218 * KVM or for outbound migration.
1220 * Returns: true if all register values were read correctly,
1221 * false if some register was unknown or could not be read.
1222 * Note that we do not stop early on failure -- we will attempt
1223 * reading all registers in the list.
1225 bool write_cpustate_to_list(ARMCPU *cpu);
1227 /* Does the core conform to the the "MicroController" profile. e.g. Cortex-M3.
1228 Note the M in older cores (eg. ARM7TDMI) stands for Multiply. These are
1229 conventional cores (ie. Application or Realtime profile). */
1231 #define IS_M(env) arm_feature(env, ARM_FEATURE_M)
1233 #define ARM_CPUID_TI915T 0x54029152
1234 #define ARM_CPUID_TI925T 0x54029252
1236 #if defined(CONFIG_USER_ONLY)
1237 #define TARGET_PAGE_BITS 12
1238 #else
1239 /* The ARM MMU allows 1k pages. */
1240 /* ??? Linux doesn't actually use these, and they're deprecated in recent
1241 architecture revisions. Maybe a configure option to disable them. */
1242 #define TARGET_PAGE_BITS 10
1243 #endif
1245 #if defined(TARGET_AARCH64)
1246 # define TARGET_PHYS_ADDR_SPACE_BITS 48
1247 # define TARGET_VIRT_ADDR_SPACE_BITS 64
1248 #else
1249 # define TARGET_PHYS_ADDR_SPACE_BITS 40
1250 # define TARGET_VIRT_ADDR_SPACE_BITS 32
1251 #endif
1253 static inline bool arm_excp_unmasked(CPUState *cs, unsigned int excp_idx)
1255 CPUARMState *env = cs->env_ptr;
1256 unsigned int cur_el = arm_current_el(env);
1257 unsigned int target_el = arm_excp_target_el(cs, excp_idx);
1258 /* FIXME: Use actual secure state. */
1259 bool secure = false;
1260 /* If in EL1/0, Physical IRQ routing to EL2 only happens from NS state. */
1261 bool irq_can_hyp = !secure && cur_el < 2 && target_el == 2;
1262 /* ARMv7-M interrupt return works by loading a magic value
1263 * into the PC. On real hardware the load causes the
1264 * return to occur. The qemu implementation performs the
1265 * jump normally, then does the exception return when the
1266 * CPU tries to execute code at the magic address.
1267 * This will cause the magic PC value to be pushed to
1268 * the stack if an interrupt occurred at the wrong time.
1269 * We avoid this by disabling interrupts when
1270 * pc contains a magic address.
1272 bool irq_unmasked = !(env->daif & PSTATE_I)
1273 && (!IS_M(env) || env->regs[15] < 0xfffffff0);
1275 /* Don't take exceptions if they target a lower EL. */
1276 if (cur_el > target_el) {
1277 return false;
1280 switch (excp_idx) {
1281 case EXCP_FIQ:
1282 if (irq_can_hyp && (env->cp15.hcr_el2 & HCR_FMO)) {
1283 return true;
1285 return !(env->daif & PSTATE_F);
1286 case EXCP_IRQ:
1287 if (irq_can_hyp && (env->cp15.hcr_el2 & HCR_IMO)) {
1288 return true;
1290 return irq_unmasked;
1291 case EXCP_VFIQ:
1292 if (!secure && !(env->cp15.hcr_el2 & HCR_FMO)) {
1293 /* VFIQs are only taken when hypervized and non-secure. */
1294 return false;
1296 return !(env->daif & PSTATE_F);
1297 case EXCP_VIRQ:
1298 if (!secure && !(env->cp15.hcr_el2 & HCR_IMO)) {
1299 /* VIRQs are only taken when hypervized and non-secure. */
1300 return false;
1302 return irq_unmasked;
1303 default:
1304 g_assert_not_reached();
1308 static inline CPUARMState *cpu_init(const char *cpu_model)
1310 ARMCPU *cpu = cpu_arm_init(cpu_model);
1311 if (cpu) {
1312 return &cpu->env;
1314 return NULL;
1317 #define cpu_exec cpu_arm_exec
1318 #define cpu_gen_code cpu_arm_gen_code
1319 #define cpu_signal_handler cpu_arm_signal_handler
1320 #define cpu_list arm_cpu_list
1322 /* MMU modes definitions */
1323 #define MMU_MODE0_SUFFIX _user
1324 #define MMU_MODE1_SUFFIX _kernel
1325 #define MMU_USER_IDX 0
1326 static inline int cpu_mmu_index (CPUARMState *env)
1328 return arm_current_el(env);
1331 /* Return the Exception Level targeted by debug exceptions;
1332 * currently always EL1 since we don't implement EL2 or EL3.
1334 static inline int arm_debug_target_el(CPUARMState *env)
1336 return 1;
1339 static inline bool aa64_generate_debug_exceptions(CPUARMState *env)
1341 if (arm_current_el(env) == arm_debug_target_el(env)) {
1342 if ((extract32(env->cp15.mdscr_el1, 13, 1) == 0)
1343 || (env->daif & PSTATE_D)) {
1344 return false;
1347 return true;
1350 static inline bool aa32_generate_debug_exceptions(CPUARMState *env)
1352 if (arm_current_el(env) == 0 && arm_el_is_aa64(env, 1)) {
1353 return aa64_generate_debug_exceptions(env);
1355 return arm_current_el(env) != 2;
1358 /* Return true if debugging exceptions are currently enabled.
1359 * This corresponds to what in ARM ARM pseudocode would be
1360 * if UsingAArch32() then
1361 * return AArch32.GenerateDebugExceptions()
1362 * else
1363 * return AArch64.GenerateDebugExceptions()
1364 * We choose to push the if() down into this function for clarity,
1365 * since the pseudocode has it at all callsites except for the one in
1366 * CheckSoftwareStep(), where it is elided because both branches would
1367 * always return the same value.
1369 * Parts of the pseudocode relating to EL2 and EL3 are omitted because we
1370 * don't yet implement those exception levels or their associated trap bits.
1372 static inline bool arm_generate_debug_exceptions(CPUARMState *env)
1374 if (env->aarch64) {
1375 return aa64_generate_debug_exceptions(env);
1376 } else {
1377 return aa32_generate_debug_exceptions(env);
1381 /* Is single-stepping active? (Note that the "is EL_D AArch64?" check
1382 * implicitly means this always returns false in pre-v8 CPUs.)
1384 static inline bool arm_singlestep_active(CPUARMState *env)
1386 return extract32(env->cp15.mdscr_el1, 0, 1)
1387 && arm_el_is_aa64(env, arm_debug_target_el(env))
1388 && arm_generate_debug_exceptions(env);
1391 #include "exec/cpu-all.h"
1393 /* Bit usage in the TB flags field: bit 31 indicates whether we are
1394 * in 32 or 64 bit mode. The meaning of the other bits depends on that.
1396 #define ARM_TBFLAG_AARCH64_STATE_SHIFT 31
1397 #define ARM_TBFLAG_AARCH64_STATE_MASK (1U << ARM_TBFLAG_AARCH64_STATE_SHIFT)
1399 /* Bit usage when in AArch32 state: */
1400 #define ARM_TBFLAG_THUMB_SHIFT 0
1401 #define ARM_TBFLAG_THUMB_MASK (1 << ARM_TBFLAG_THUMB_SHIFT)
1402 #define ARM_TBFLAG_VECLEN_SHIFT 1
1403 #define ARM_TBFLAG_VECLEN_MASK (0x7 << ARM_TBFLAG_VECLEN_SHIFT)
1404 #define ARM_TBFLAG_VECSTRIDE_SHIFT 4
1405 #define ARM_TBFLAG_VECSTRIDE_MASK (0x3 << ARM_TBFLAG_VECSTRIDE_SHIFT)
1406 #define ARM_TBFLAG_PRIV_SHIFT 6
1407 #define ARM_TBFLAG_PRIV_MASK (1 << ARM_TBFLAG_PRIV_SHIFT)
1408 #define ARM_TBFLAG_VFPEN_SHIFT 7
1409 #define ARM_TBFLAG_VFPEN_MASK (1 << ARM_TBFLAG_VFPEN_SHIFT)
1410 #define ARM_TBFLAG_CONDEXEC_SHIFT 8
1411 #define ARM_TBFLAG_CONDEXEC_MASK (0xff << ARM_TBFLAG_CONDEXEC_SHIFT)
1412 #define ARM_TBFLAG_SCTLR_B_SHIFT 16
1413 #define ARM_TBFLAG_SCTLR_B_MASK (1 << ARM_TBFLAG_SCTLR_B_SHIFT)
1414 #define ARM_TBFLAG_CPACR_FPEN_SHIFT 17
1415 #define ARM_TBFLAG_CPACR_FPEN_MASK (1 << ARM_TBFLAG_CPACR_FPEN_SHIFT)
1416 #define ARM_TBFLAG_CPSR_E_SHIFT 18
1417 #define ARM_TBFLAG_CPSR_E_MASK (1 << ARM_TBFLAG_CPSR_E_SHIFT)
1418 #define ARM_TBFLAG_SS_ACTIVE_SHIFT 18
1419 #define ARM_TBFLAG_SS_ACTIVE_MASK (1 << ARM_TBFLAG_SS_ACTIVE_SHIFT)
1420 #define ARM_TBFLAG_PSTATE_SS_SHIFT 19
1421 #define ARM_TBFLAG_PSTATE_SS_MASK (1 << ARM_TBFLAG_PSTATE_SS_SHIFT)
1422 /* We store the bottom two bits of the CPAR as TB flags and handle
1423 * checks on the other bits at runtime
1425 #define ARM_TBFLAG_XSCALE_CPAR_SHIFT 20
1426 #define ARM_TBFLAG_XSCALE_CPAR_MASK (3 << ARM_TBFLAG_XSCALE_CPAR_SHIFT)
1428 /* Bit usage when in AArch64 state */
1429 #define ARM_TBFLAG_AA64_EL_SHIFT 0
1430 #define ARM_TBFLAG_AA64_EL_MASK (0x3 << ARM_TBFLAG_AA64_EL_SHIFT)
1431 #define ARM_TBFLAG_AA64_FPEN_SHIFT 2
1432 #define ARM_TBFLAG_AA64_FPEN_MASK (1 << ARM_TBFLAG_AA64_FPEN_SHIFT)
1433 #define ARM_TBFLAG_AA64_SS_ACTIVE_SHIFT 3
1434 #define ARM_TBFLAG_AA64_SS_ACTIVE_MASK (1 << ARM_TBFLAG_AA64_SS_ACTIVE_SHIFT)
1435 #define ARM_TBFLAG_AA64_PSTATE_SS_SHIFT 4
1436 #define ARM_TBFLAG_AA64_PSTATE_SS_MASK (1 << ARM_TBFLAG_AA64_PSTATE_SS_SHIFT)
1438 /* some convenience accessor macros */
1439 #define ARM_TBFLAG_AARCH64_STATE(F) \
1440 (((F) & ARM_TBFLAG_AARCH64_STATE_MASK) >> ARM_TBFLAG_AARCH64_STATE_SHIFT)
1441 #define ARM_TBFLAG_THUMB(F) \
1442 (((F) & ARM_TBFLAG_THUMB_MASK) >> ARM_TBFLAG_THUMB_SHIFT)
1443 #define ARM_TBFLAG_VECLEN(F) \
1444 (((F) & ARM_TBFLAG_VECLEN_MASK) >> ARM_TBFLAG_VECLEN_SHIFT)
1445 #define ARM_TBFLAG_VECSTRIDE(F) \
1446 (((F) & ARM_TBFLAG_VECSTRIDE_MASK) >> ARM_TBFLAG_VECSTRIDE_SHIFT)
1447 #define ARM_TBFLAG_PRIV(F) \
1448 (((F) & ARM_TBFLAG_PRIV_MASK) >> ARM_TBFLAG_PRIV_SHIFT)
1449 #define ARM_TBFLAG_VFPEN(F) \
1450 (((F) & ARM_TBFLAG_VFPEN_MASK) >> ARM_TBFLAG_VFPEN_SHIFT)
1451 #define ARM_TBFLAG_CONDEXEC(F) \
1452 (((F) & ARM_TBFLAG_CONDEXEC_MASK) >> ARM_TBFLAG_CONDEXEC_SHIFT)
1453 #define ARM_TBFLAG_SCTLR_B(F) \
1454 (((F) & ARM_TBFLAG_SCTLR_B_MASK) >> ARM_TBFLAG_SCTLR_B_SHIFT)
1455 #define ARM_TBFLAG_CPACR_FPEN(F) \
1456 (((F) & ARM_TBFLAG_CPACR_FPEN_MASK) >> ARM_TBFLAG_CPACR_FPEN_SHIFT)
1457 #define ARM_TBFLAG_CPSR_E(F) \
1458 (((F) & ARM_TBFLAG_CPSR_E_MASK) >> ARM_TBFLAG_CPSR_E_SHIFT)
1459 #define ARM_TBFLAG_SS_ACTIVE(F) \
1460 (((F) & ARM_TBFLAG_SS_ACTIVE_MASK) >> ARM_TBFLAG_SS_ACTIVE_SHIFT)
1461 #define ARM_TBFLAG_PSTATE_SS(F) \
1462 (((F) & ARM_TBFLAG_PSTATE_SS_MASK) >> ARM_TBFLAG_PSTATE_SS_SHIFT)
1463 #define ARM_TBFLAG_XSCALE_CPAR(F) \
1464 (((F) & ARM_TBFLAG_XSCALE_CPAR_MASK) >> ARM_TBFLAG_XSCALE_CPAR_SHIFT)
1465 #define ARM_TBFLAG_AA64_EL(F) \
1466 (((F) & ARM_TBFLAG_AA64_EL_MASK) >> ARM_TBFLAG_AA64_EL_SHIFT)
1467 #define ARM_TBFLAG_AA64_FPEN(F) \
1468 (((F) & ARM_TBFLAG_AA64_FPEN_MASK) >> ARM_TBFLAG_AA64_FPEN_SHIFT)
1469 #define ARM_TBFLAG_AA64_SS_ACTIVE(F) \
1470 (((F) & ARM_TBFLAG_AA64_SS_ACTIVE_MASK) >> ARM_TBFLAG_AA64_SS_ACTIVE_SHIFT)
1471 #define ARM_TBFLAG_AA64_PSTATE_SS(F) \
1472 (((F) & ARM_TBFLAG_AA64_PSTATE_SS_MASK) >> ARM_TBFLAG_AA64_PSTATE_SS_SHIFT)
1474 static inline bool arm_sctlr_b(CPUARMState *env)
1476 return !arm_feature(env, ARM_FEATURE_V7) && (env->cp15.c1_sys & SCTLR_B) != 0;
1479 static inline bool bswap_code(bool sctlr_b)
1481 #ifdef CONFIG_USER_ONLY
1482 /* Mixed-endian modes are BE8 (SCTLR.B = 0, TARGET_WORDS_BIGENDIAN = 1)
1483 * and "LE8" (SCTLR.B = 1, TARGET_WORDS_BIGENDIAN = 0).
1485 return
1486 #ifdef TARGET_WORDS_BIGENDIAN
1488 #endif
1489 sctlr_b;
1490 #else
1491 /* We do not implement BE32 mode for system-mode emulation, but
1492 * anyway it would always do little-endian accesses with
1493 * TARGET_WORDS_BIGENDIAN = 0.
1495 return 0;
1496 #endif
1500 #ifdef CONFIG_USER_ONLY
1501 /* get_user and put_user respectivaly return and expect data according
1502 * to TARGET_WORDS_BIGENDIAN, but ldrex/strex emulation needs to take
1503 * into account CPSR.E. Similar to bwap_code, a XOR gives exactly the
1504 * required result, we just throw CPSR.E into the mix too:
1506 * TARGET_WORDS_BIGENDIAN SCTLR.B CPSR.E need swap?
1507 * LE/LE no 0 0 no
1508 * LE/BE no 0 1 yes
1509 * BE8/LE yes 0 0 yes
1510 * BE8/BE yes 0 1 no
1511 * BE32/BE yes 1 0 no
1512 * (BE32/LE) yes 1 1 yes
1514 * Officially, BE32 with CPSR.E=1 has "unpredictable" results. We
1515 * implement it as big-endian code, little-endian data.
1517 static inline bool arm_cpu_bswap_data(CPUARMState *env)
1519 return
1520 #ifdef TARGET_WORDS_BIGENDIAN
1522 #endif
1523 arm_sctlr_b(env) ^
1524 !!(env->uncached_cpsr & CPSR_E);
1526 #endif
1528 static inline bool arm_tbflag_is_data_be(unsigned tbflags)
1530 return
1531 #ifdef CONFIG_USER_ONLY
1532 ARM_TBFLAG_SCTLR_B(tbflags) ^
1533 #endif
1534 ARM_TBFLAG_CPSR_E(tbflags);
1537 static inline void cpu_get_tb_cpu_state(CPUARMState *env, target_ulong *pc,
1538 target_ulong *cs_base, int *flags)
1540 int fpen;
1542 if (arm_feature(env, ARM_FEATURE_V6)) {
1543 fpen = extract32(env->cp15.c1_coproc, 20, 2);
1544 } else {
1545 /* CPACR doesn't exist before v6, so VFP is always accessible */
1546 fpen = 3;
1549 if (is_a64(env)) {
1550 *pc = env->pc;
1551 *flags = ARM_TBFLAG_AARCH64_STATE_MASK
1552 | (arm_current_el(env) << ARM_TBFLAG_AA64_EL_SHIFT);
1553 if (fpen == 3 || (fpen == 1 && arm_current_el(env) != 0)) {
1554 *flags |= ARM_TBFLAG_AA64_FPEN_MASK;
1556 /* The SS_ACTIVE and PSTATE_SS bits correspond to the state machine
1557 * states defined in the ARM ARM for software singlestep:
1558 * SS_ACTIVE PSTATE.SS State
1559 * 0 x Inactive (the TB flag for SS is always 0)
1560 * 1 0 Active-pending
1561 * 1 1 Active-not-pending
1563 if (arm_singlestep_active(env)) {
1564 *flags |= ARM_TBFLAG_AA64_SS_ACTIVE_MASK;
1565 if (env->pstate & PSTATE_SS) {
1566 *flags |= ARM_TBFLAG_AA64_PSTATE_SS_MASK;
1569 } else {
1570 int privmode;
1571 *pc = env->regs[15];
1572 *flags = (env->thumb << ARM_TBFLAG_THUMB_SHIFT)
1573 | (env->vfp.vec_len << ARM_TBFLAG_VECLEN_SHIFT)
1574 | (env->vfp.vec_stride << ARM_TBFLAG_VECSTRIDE_SHIFT)
1575 | (env->condexec_bits << ARM_TBFLAG_CONDEXEC_SHIFT)
1576 | (arm_sctlr_b(env) << ARM_TBFLAG_SCTLR_B_SHIFT);
1577 if (arm_feature(env, ARM_FEATURE_M)) {
1578 privmode = !((env->v7m.exception == 0) && (env->v7m.control & 1));
1579 } else {
1580 privmode = (env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR;
1582 if (privmode) {
1583 *flags |= ARM_TBFLAG_PRIV_MASK;
1585 if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)
1586 || arm_el_is_aa64(env, 1)) {
1587 *flags |= ARM_TBFLAG_VFPEN_MASK;
1589 if (fpen == 3 || (fpen == 1 && arm_current_el(env) != 0)) {
1590 *flags |= ARM_TBFLAG_CPACR_FPEN_MASK;
1592 if (env->uncached_cpsr & CPSR_E) {
1593 *flags |= ARM_TBFLAG_CPSR_E_MASK;
1595 /* The SS_ACTIVE and PSTATE_SS bits correspond to the state machine
1596 * states defined in the ARM ARM for software singlestep:
1597 * SS_ACTIVE PSTATE.SS State
1598 * 0 x Inactive (the TB flag for SS is always 0)
1599 * 1 0 Active-pending
1600 * 1 1 Active-not-pending
1602 if (arm_singlestep_active(env)) {
1603 *flags |= ARM_TBFLAG_SS_ACTIVE_MASK;
1604 if (env->uncached_cpsr & PSTATE_SS) {
1605 *flags |= ARM_TBFLAG_PSTATE_SS_MASK;
1608 *flags |= (extract32(env->cp15.c15_cpar, 0, 2)
1609 << ARM_TBFLAG_XSCALE_CPAR_SHIFT);
1612 *cs_base = 0;
1615 #include "exec/exec-all.h"
1617 static inline void cpu_pc_from_tb(CPUARMState *env, TranslationBlock *tb)
1619 if (ARM_TBFLAG_AARCH64_STATE(tb->flags)) {
1620 env->pc = tb->pc;
1621 } else {
1622 env->regs[15] = tb->pc;
1626 enum {
1627 QEMU_PSCI_CONDUIT_DISABLED = 0,
1628 QEMU_PSCI_CONDUIT_SMC = 1,
1629 QEMU_PSCI_CONDUIT_HVC = 2,
1632 #endif