target/arm: Hoist arm_is_el2_enabled check in sve_exception_el
[qemu.git] / target / arm / helper.c
blob61e8026d0e36ac8b1eb4b65052e50fb419bab3e5
1 /*
2 * ARM generic helpers.
4 * This code is licensed under the GNU GPL v2 or later.
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
9 #include "qemu/osdep.h"
10 #include "qemu/units.h"
11 #include "qemu/log.h"
12 #include "trace.h"
13 #include "cpu.h"
14 #include "internals.h"
15 #include "exec/helper-proto.h"
16 #include "qemu/host-utils.h"
17 #include "qemu/main-loop.h"
18 #include "qemu/timer.h"
19 #include "qemu/bitops.h"
20 #include "qemu/crc32c.h"
21 #include "qemu/qemu-print.h"
22 #include "exec/exec-all.h"
23 #include <zlib.h> /* For crc32 */
24 #include "hw/irq.h"
25 #include "semihosting/semihost.h"
26 #include "sysemu/cpus.h"
27 #include "sysemu/cpu-timers.h"
28 #include "sysemu/kvm.h"
29 #include "qemu/range.h"
30 #include "qapi/qapi-commands-machine-target.h"
31 #include "qapi/error.h"
32 #include "qemu/guest-random.h"
33 #ifdef CONFIG_TCG
34 #include "arm_ldst.h"
35 #include "exec/cpu_ldst.h"
36 #include "semihosting/common-semi.h"
37 #endif
38 #include "cpregs.h"
40 #define ARM_CPU_FREQ 1000000000 /* FIXME: 1 GHz, should be configurable */
42 static void switch_mode(CPUARMState *env, int mode);
44 static uint64_t raw_read(CPUARMState *env, const ARMCPRegInfo *ri)
46 assert(ri->fieldoffset);
47 if (cpreg_field_is_64bit(ri)) {
48 return CPREG_FIELD64(env, ri);
49 } else {
50 return CPREG_FIELD32(env, ri);
54 static void raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
55 uint64_t value)
57 assert(ri->fieldoffset);
58 if (cpreg_field_is_64bit(ri)) {
59 CPREG_FIELD64(env, ri) = value;
60 } else {
61 CPREG_FIELD32(env, ri) = value;
65 static void *raw_ptr(CPUARMState *env, const ARMCPRegInfo *ri)
67 return (char *)env + ri->fieldoffset;
70 uint64_t read_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri)
72 /* Raw read of a coprocessor register (as needed for migration, etc). */
73 if (ri->type & ARM_CP_CONST) {
74 return ri->resetvalue;
75 } else if (ri->raw_readfn) {
76 return ri->raw_readfn(env, ri);
77 } else if (ri->readfn) {
78 return ri->readfn(env, ri);
79 } else {
80 return raw_read(env, ri);
84 static void write_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri,
85 uint64_t v)
87 /* Raw write of a coprocessor register (as needed for migration, etc).
88 * Note that constant registers are treated as write-ignored; the
89 * caller should check for success by whether a readback gives the
90 * value written.
92 if (ri->type & ARM_CP_CONST) {
93 return;
94 } else if (ri->raw_writefn) {
95 ri->raw_writefn(env, ri, v);
96 } else if (ri->writefn) {
97 ri->writefn(env, ri, v);
98 } else {
99 raw_write(env, ri, v);
103 static bool raw_accessors_invalid(const ARMCPRegInfo *ri)
105 /* Return true if the regdef would cause an assertion if you called
106 * read_raw_cp_reg() or write_raw_cp_reg() on it (ie if it is a
107 * program bug for it not to have the NO_RAW flag).
108 * NB that returning false here doesn't necessarily mean that calling
109 * read/write_raw_cp_reg() is safe, because we can't distinguish "has
110 * read/write access functions which are safe for raw use" from "has
111 * read/write access functions which have side effects but has forgotten
112 * to provide raw access functions".
113 * The tests here line up with the conditions in read/write_raw_cp_reg()
114 * and assertions in raw_read()/raw_write().
116 if ((ri->type & ARM_CP_CONST) ||
117 ri->fieldoffset ||
118 ((ri->raw_writefn || ri->writefn) && (ri->raw_readfn || ri->readfn))) {
119 return false;
121 return true;
124 bool write_cpustate_to_list(ARMCPU *cpu, bool kvm_sync)
126 /* Write the coprocessor state from cpu->env to the (index,value) list. */
127 int i;
128 bool ok = true;
130 for (i = 0; i < cpu->cpreg_array_len; i++) {
131 uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
132 const ARMCPRegInfo *ri;
133 uint64_t newval;
135 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
136 if (!ri) {
137 ok = false;
138 continue;
140 if (ri->type & ARM_CP_NO_RAW) {
141 continue;
144 newval = read_raw_cp_reg(&cpu->env, ri);
145 if (kvm_sync) {
147 * Only sync if the previous list->cpustate sync succeeded.
148 * Rather than tracking the success/failure state for every
149 * item in the list, we just recheck "does the raw write we must
150 * have made in write_list_to_cpustate() read back OK" here.
152 uint64_t oldval = cpu->cpreg_values[i];
154 if (oldval == newval) {
155 continue;
158 write_raw_cp_reg(&cpu->env, ri, oldval);
159 if (read_raw_cp_reg(&cpu->env, ri) != oldval) {
160 continue;
163 write_raw_cp_reg(&cpu->env, ri, newval);
165 cpu->cpreg_values[i] = newval;
167 return ok;
170 bool write_list_to_cpustate(ARMCPU *cpu)
172 int i;
173 bool ok = true;
175 for (i = 0; i < cpu->cpreg_array_len; i++) {
176 uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
177 uint64_t v = cpu->cpreg_values[i];
178 const ARMCPRegInfo *ri;
180 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
181 if (!ri) {
182 ok = false;
183 continue;
185 if (ri->type & ARM_CP_NO_RAW) {
186 continue;
188 /* Write value and confirm it reads back as written
189 * (to catch read-only registers and partially read-only
190 * registers where the incoming migration value doesn't match)
192 write_raw_cp_reg(&cpu->env, ri, v);
193 if (read_raw_cp_reg(&cpu->env, ri) != v) {
194 ok = false;
197 return ok;
200 static void add_cpreg_to_list(gpointer key, gpointer opaque)
202 ARMCPU *cpu = opaque;
203 uint32_t regidx = (uintptr_t)key;
204 const ARMCPRegInfo *ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
206 if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
207 cpu->cpreg_indexes[cpu->cpreg_array_len] = cpreg_to_kvm_id(regidx);
208 /* The value array need not be initialized at this point */
209 cpu->cpreg_array_len++;
213 static void count_cpreg(gpointer key, gpointer opaque)
215 ARMCPU *cpu = opaque;
216 const ARMCPRegInfo *ri;
218 ri = g_hash_table_lookup(cpu->cp_regs, key);
220 if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
221 cpu->cpreg_array_len++;
225 static gint cpreg_key_compare(gconstpointer a, gconstpointer b)
227 uint64_t aidx = cpreg_to_kvm_id((uintptr_t)a);
228 uint64_t bidx = cpreg_to_kvm_id((uintptr_t)b);
230 if (aidx > bidx) {
231 return 1;
233 if (aidx < bidx) {
234 return -1;
236 return 0;
239 void init_cpreg_list(ARMCPU *cpu)
241 /* Initialise the cpreg_tuples[] array based on the cp_regs hash.
242 * Note that we require cpreg_tuples[] to be sorted by key ID.
244 GList *keys;
245 int arraylen;
247 keys = g_hash_table_get_keys(cpu->cp_regs);
248 keys = g_list_sort(keys, cpreg_key_compare);
250 cpu->cpreg_array_len = 0;
252 g_list_foreach(keys, count_cpreg, cpu);
254 arraylen = cpu->cpreg_array_len;
255 cpu->cpreg_indexes = g_new(uint64_t, arraylen);
256 cpu->cpreg_values = g_new(uint64_t, arraylen);
257 cpu->cpreg_vmstate_indexes = g_new(uint64_t, arraylen);
258 cpu->cpreg_vmstate_values = g_new(uint64_t, arraylen);
259 cpu->cpreg_vmstate_array_len = cpu->cpreg_array_len;
260 cpu->cpreg_array_len = 0;
262 g_list_foreach(keys, add_cpreg_to_list, cpu);
264 assert(cpu->cpreg_array_len == arraylen);
266 g_list_free(keys);
270 * Some registers are not accessible from AArch32 EL3 if SCR.NS == 0.
272 static CPAccessResult access_el3_aa32ns(CPUARMState *env,
273 const ARMCPRegInfo *ri,
274 bool isread)
276 if (!is_a64(env) && arm_current_el(env) == 3 &&
277 arm_is_secure_below_el3(env)) {
278 return CP_ACCESS_TRAP_UNCATEGORIZED;
280 return CP_ACCESS_OK;
283 /* Some secure-only AArch32 registers trap to EL3 if used from
284 * Secure EL1 (but are just ordinary UNDEF in other non-EL3 contexts).
285 * Note that an access from Secure EL1 can only happen if EL3 is AArch64.
286 * We assume that the .access field is set to PL1_RW.
288 static CPAccessResult access_trap_aa32s_el1(CPUARMState *env,
289 const ARMCPRegInfo *ri,
290 bool isread)
292 if (arm_current_el(env) == 3) {
293 return CP_ACCESS_OK;
295 if (arm_is_secure_below_el3(env)) {
296 if (env->cp15.scr_el3 & SCR_EEL2) {
297 return CP_ACCESS_TRAP_EL2;
299 return CP_ACCESS_TRAP_EL3;
301 /* This will be EL1 NS and EL2 NS, which just UNDEF */
302 return CP_ACCESS_TRAP_UNCATEGORIZED;
305 static uint64_t arm_mdcr_el2_eff(CPUARMState *env)
307 return arm_is_el2_enabled(env) ? env->cp15.mdcr_el2 : 0;
310 /* Check for traps to "powerdown debug" registers, which are controlled
311 * by MDCR.TDOSA
313 static CPAccessResult access_tdosa(CPUARMState *env, const ARMCPRegInfo *ri,
314 bool isread)
316 int el = arm_current_el(env);
317 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
318 bool mdcr_el2_tdosa = (mdcr_el2 & MDCR_TDOSA) || (mdcr_el2 & MDCR_TDE) ||
319 (arm_hcr_el2_eff(env) & HCR_TGE);
321 if (el < 2 && mdcr_el2_tdosa) {
322 return CP_ACCESS_TRAP_EL2;
324 if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDOSA)) {
325 return CP_ACCESS_TRAP_EL3;
327 return CP_ACCESS_OK;
330 /* Check for traps to "debug ROM" registers, which are controlled
331 * by MDCR_EL2.TDRA for EL2 but by the more general MDCR_EL3.TDA for EL3.
333 static CPAccessResult access_tdra(CPUARMState *env, const ARMCPRegInfo *ri,
334 bool isread)
336 int el = arm_current_el(env);
337 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
338 bool mdcr_el2_tdra = (mdcr_el2 & MDCR_TDRA) || (mdcr_el2 & MDCR_TDE) ||
339 (arm_hcr_el2_eff(env) & HCR_TGE);
341 if (el < 2 && mdcr_el2_tdra) {
342 return CP_ACCESS_TRAP_EL2;
344 if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDA)) {
345 return CP_ACCESS_TRAP_EL3;
347 return CP_ACCESS_OK;
350 /* Check for traps to general debug registers, which are controlled
351 * by MDCR_EL2.TDA for EL2 and MDCR_EL3.TDA for EL3.
353 static CPAccessResult access_tda(CPUARMState *env, const ARMCPRegInfo *ri,
354 bool isread)
356 int el = arm_current_el(env);
357 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
358 bool mdcr_el2_tda = (mdcr_el2 & MDCR_TDA) || (mdcr_el2 & MDCR_TDE) ||
359 (arm_hcr_el2_eff(env) & HCR_TGE);
361 if (el < 2 && mdcr_el2_tda) {
362 return CP_ACCESS_TRAP_EL2;
364 if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDA)) {
365 return CP_ACCESS_TRAP_EL3;
367 return CP_ACCESS_OK;
370 /* Check for traps to performance monitor registers, which are controlled
371 * by MDCR_EL2.TPM for EL2 and MDCR_EL3.TPM for EL3.
373 static CPAccessResult access_tpm(CPUARMState *env, const ARMCPRegInfo *ri,
374 bool isread)
376 int el = arm_current_el(env);
377 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
379 if (el < 2 && (mdcr_el2 & MDCR_TPM)) {
380 return CP_ACCESS_TRAP_EL2;
382 if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TPM)) {
383 return CP_ACCESS_TRAP_EL3;
385 return CP_ACCESS_OK;
388 /* Check for traps from EL1 due to HCR_EL2.TVM and HCR_EL2.TRVM. */
389 static CPAccessResult access_tvm_trvm(CPUARMState *env, const ARMCPRegInfo *ri,
390 bool isread)
392 if (arm_current_el(env) == 1) {
393 uint64_t trap = isread ? HCR_TRVM : HCR_TVM;
394 if (arm_hcr_el2_eff(env) & trap) {
395 return CP_ACCESS_TRAP_EL2;
398 return CP_ACCESS_OK;
401 /* Check for traps from EL1 due to HCR_EL2.TSW. */
402 static CPAccessResult access_tsw(CPUARMState *env, const ARMCPRegInfo *ri,
403 bool isread)
405 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TSW)) {
406 return CP_ACCESS_TRAP_EL2;
408 return CP_ACCESS_OK;
411 /* Check for traps from EL1 due to HCR_EL2.TACR. */
412 static CPAccessResult access_tacr(CPUARMState *env, const ARMCPRegInfo *ri,
413 bool isread)
415 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TACR)) {
416 return CP_ACCESS_TRAP_EL2;
418 return CP_ACCESS_OK;
421 /* Check for traps from EL1 due to HCR_EL2.TTLB. */
422 static CPAccessResult access_ttlb(CPUARMState *env, const ARMCPRegInfo *ri,
423 bool isread)
425 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TTLB)) {
426 return CP_ACCESS_TRAP_EL2;
428 return CP_ACCESS_OK;
431 static void dacr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
433 ARMCPU *cpu = env_archcpu(env);
435 raw_write(env, ri, value);
436 tlb_flush(CPU(cpu)); /* Flush TLB as domain not tracked in TLB */
439 static void fcse_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
441 ARMCPU *cpu = env_archcpu(env);
443 if (raw_read(env, ri) != value) {
444 /* Unlike real hardware the qemu TLB uses virtual addresses,
445 * not modified virtual addresses, so this causes a TLB flush.
447 tlb_flush(CPU(cpu));
448 raw_write(env, ri, value);
452 static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
453 uint64_t value)
455 ARMCPU *cpu = env_archcpu(env);
457 if (raw_read(env, ri) != value && !arm_feature(env, ARM_FEATURE_PMSA)
458 && !extended_addresses_enabled(env)) {
459 /* For VMSA (when not using the LPAE long descriptor page table
460 * format) this register includes the ASID, so do a TLB flush.
461 * For PMSA it is purely a process ID and no action is needed.
463 tlb_flush(CPU(cpu));
465 raw_write(env, ri, value);
468 /* IS variants of TLB operations must affect all cores */
469 static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
470 uint64_t value)
472 CPUState *cs = env_cpu(env);
474 tlb_flush_all_cpus_synced(cs);
477 static void tlbiasid_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
478 uint64_t value)
480 CPUState *cs = env_cpu(env);
482 tlb_flush_all_cpus_synced(cs);
485 static void tlbimva_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
486 uint64_t value)
488 CPUState *cs = env_cpu(env);
490 tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
493 static void tlbimvaa_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
494 uint64_t value)
496 CPUState *cs = env_cpu(env);
498 tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
502 * Non-IS variants of TLB operations are upgraded to
503 * IS versions if we are at EL1 and HCR_EL2.FB is effectively set to
504 * force broadcast of these operations.
506 static bool tlb_force_broadcast(CPUARMState *env)
508 return arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_FB);
511 static void tlbiall_write(CPUARMState *env, const ARMCPRegInfo *ri,
512 uint64_t value)
514 /* Invalidate all (TLBIALL) */
515 CPUState *cs = env_cpu(env);
517 if (tlb_force_broadcast(env)) {
518 tlb_flush_all_cpus_synced(cs);
519 } else {
520 tlb_flush(cs);
524 static void tlbimva_write(CPUARMState *env, const ARMCPRegInfo *ri,
525 uint64_t value)
527 /* Invalidate single TLB entry by MVA and ASID (TLBIMVA) */
528 CPUState *cs = env_cpu(env);
530 value &= TARGET_PAGE_MASK;
531 if (tlb_force_broadcast(env)) {
532 tlb_flush_page_all_cpus_synced(cs, value);
533 } else {
534 tlb_flush_page(cs, value);
538 static void tlbiasid_write(CPUARMState *env, const ARMCPRegInfo *ri,
539 uint64_t value)
541 /* Invalidate by ASID (TLBIASID) */
542 CPUState *cs = env_cpu(env);
544 if (tlb_force_broadcast(env)) {
545 tlb_flush_all_cpus_synced(cs);
546 } else {
547 tlb_flush(cs);
551 static void tlbimvaa_write(CPUARMState *env, const ARMCPRegInfo *ri,
552 uint64_t value)
554 /* Invalidate single entry by MVA, all ASIDs (TLBIMVAA) */
555 CPUState *cs = env_cpu(env);
557 value &= TARGET_PAGE_MASK;
558 if (tlb_force_broadcast(env)) {
559 tlb_flush_page_all_cpus_synced(cs, value);
560 } else {
561 tlb_flush_page(cs, value);
565 static void tlbiall_nsnh_write(CPUARMState *env, const ARMCPRegInfo *ri,
566 uint64_t value)
568 CPUState *cs = env_cpu(env);
570 tlb_flush_by_mmuidx(cs,
571 ARMMMUIdxBit_E10_1 |
572 ARMMMUIdxBit_E10_1_PAN |
573 ARMMMUIdxBit_E10_0);
576 static void tlbiall_nsnh_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
577 uint64_t value)
579 CPUState *cs = env_cpu(env);
581 tlb_flush_by_mmuidx_all_cpus_synced(cs,
582 ARMMMUIdxBit_E10_1 |
583 ARMMMUIdxBit_E10_1_PAN |
584 ARMMMUIdxBit_E10_0);
588 static void tlbiall_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
589 uint64_t value)
591 CPUState *cs = env_cpu(env);
593 tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_E2);
596 static void tlbiall_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
597 uint64_t value)
599 CPUState *cs = env_cpu(env);
601 tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_E2);
604 static void tlbimva_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
605 uint64_t value)
607 CPUState *cs = env_cpu(env);
608 uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
610 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_E2);
613 static void tlbimva_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
614 uint64_t value)
616 CPUState *cs = env_cpu(env);
617 uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
619 tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
620 ARMMMUIdxBit_E2);
623 static const ARMCPRegInfo cp_reginfo[] = {
624 /* Define the secure and non-secure FCSE identifier CP registers
625 * separately because there is no secure bank in V8 (no _EL3). This allows
626 * the secure register to be properly reset and migrated. There is also no
627 * v8 EL1 version of the register so the non-secure instance stands alone.
629 { .name = "FCSEIDR",
630 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
631 .access = PL1_RW, .secure = ARM_CP_SECSTATE_NS,
632 .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_ns),
633 .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
634 { .name = "FCSEIDR_S",
635 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
636 .access = PL1_RW, .secure = ARM_CP_SECSTATE_S,
637 .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_s),
638 .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
639 /* Define the secure and non-secure context identifier CP registers
640 * separately because there is no secure bank in V8 (no _EL3). This allows
641 * the secure register to be properly reset and migrated. In the
642 * non-secure case, the 32-bit register will have reset and migration
643 * disabled during registration as it is handled by the 64-bit instance.
645 { .name = "CONTEXTIDR_EL1", .state = ARM_CP_STATE_BOTH,
646 .opc0 = 3, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
647 .access = PL1_RW, .accessfn = access_tvm_trvm,
648 .secure = ARM_CP_SECSTATE_NS,
649 .fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[1]),
650 .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
651 { .name = "CONTEXTIDR_S", .state = ARM_CP_STATE_AA32,
652 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
653 .access = PL1_RW, .accessfn = access_tvm_trvm,
654 .secure = ARM_CP_SECSTATE_S,
655 .fieldoffset = offsetof(CPUARMState, cp15.contextidr_s),
656 .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
659 static const ARMCPRegInfo not_v8_cp_reginfo[] = {
660 /* NB: Some of these registers exist in v8 but with more precise
661 * definitions that don't use CP_ANY wildcards (mostly in v8_cp_reginfo[]).
663 /* MMU Domain access control / MPU write buffer control */
664 { .name = "DACR",
665 .cp = 15, .opc1 = CP_ANY, .crn = 3, .crm = CP_ANY, .opc2 = CP_ANY,
666 .access = PL1_RW, .accessfn = access_tvm_trvm, .resetvalue = 0,
667 .writefn = dacr_write, .raw_writefn = raw_write,
668 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
669 offsetoflow32(CPUARMState, cp15.dacr_ns) } },
670 /* ARMv7 allocates a range of implementation defined TLB LOCKDOWN regs.
671 * For v6 and v5, these mappings are overly broad.
673 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 0,
674 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
675 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 1,
676 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
677 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 4,
678 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
679 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 8,
680 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
681 /* Cache maintenance ops; some of this space may be overridden later. */
682 { .name = "CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
683 .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
684 .type = ARM_CP_NOP | ARM_CP_OVERRIDE },
687 static const ARMCPRegInfo not_v6_cp_reginfo[] = {
688 /* Not all pre-v6 cores implemented this WFI, so this is slightly
689 * over-broad.
691 { .name = "WFI_v5", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = 2,
692 .access = PL1_W, .type = ARM_CP_WFI },
695 static const ARMCPRegInfo not_v7_cp_reginfo[] = {
696 /* Standard v6 WFI (also used in some pre-v6 cores); not in v7 (which
697 * is UNPREDICTABLE; we choose to NOP as most implementations do).
699 { .name = "WFI_v6", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
700 .access = PL1_W, .type = ARM_CP_WFI },
701 /* L1 cache lockdown. Not architectural in v6 and earlier but in practice
702 * implemented in 926, 946, 1026, 1136, 1176 and 11MPCore. StrongARM and
703 * OMAPCP will override this space.
705 { .name = "DLOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 0,
706 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_data),
707 .resetvalue = 0 },
708 { .name = "ILOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 1,
709 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_insn),
710 .resetvalue = 0 },
711 /* v6 doesn't have the cache ID registers but Linux reads them anyway */
712 { .name = "DUMMY", .cp = 15, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = CP_ANY,
713 .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
714 .resetvalue = 0 },
715 /* We don't implement pre-v7 debug but most CPUs had at least a DBGDIDR;
716 * implementing it as RAZ means the "debug architecture version" bits
717 * will read as a reserved value, which should cause Linux to not try
718 * to use the debug hardware.
720 { .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 0,
721 .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = 0 },
722 /* MMU TLB control. Note that the wildcarding means we cover not just
723 * the unified TLB ops but also the dside/iside/inner-shareable variants.
725 { .name = "TLBIALL", .cp = 15, .crn = 8, .crm = CP_ANY,
726 .opc1 = CP_ANY, .opc2 = 0, .access = PL1_W, .writefn = tlbiall_write,
727 .type = ARM_CP_NO_RAW },
728 { .name = "TLBIMVA", .cp = 15, .crn = 8, .crm = CP_ANY,
729 .opc1 = CP_ANY, .opc2 = 1, .access = PL1_W, .writefn = tlbimva_write,
730 .type = ARM_CP_NO_RAW },
731 { .name = "TLBIASID", .cp = 15, .crn = 8, .crm = CP_ANY,
732 .opc1 = CP_ANY, .opc2 = 2, .access = PL1_W, .writefn = tlbiasid_write,
733 .type = ARM_CP_NO_RAW },
734 { .name = "TLBIMVAA", .cp = 15, .crn = 8, .crm = CP_ANY,
735 .opc1 = CP_ANY, .opc2 = 3, .access = PL1_W, .writefn = tlbimvaa_write,
736 .type = ARM_CP_NO_RAW },
737 { .name = "PRRR", .cp = 15, .crn = 10, .crm = 2,
738 .opc1 = 0, .opc2 = 0, .access = PL1_RW, .type = ARM_CP_NOP },
739 { .name = "NMRR", .cp = 15, .crn = 10, .crm = 2,
740 .opc1 = 0, .opc2 = 1, .access = PL1_RW, .type = ARM_CP_NOP },
743 static void cpacr_write(CPUARMState *env, const ARMCPRegInfo *ri,
744 uint64_t value)
746 uint32_t mask = 0;
748 /* In ARMv8 most bits of CPACR_EL1 are RES0. */
749 if (!arm_feature(env, ARM_FEATURE_V8)) {
750 /* ARMv7 defines bits for unimplemented coprocessors as RAZ/WI.
751 * ASEDIS [31] and D32DIS [30] are both UNK/SBZP without VFP.
752 * TRCDIS [28] is RAZ/WI since we do not implement a trace macrocell.
754 if (cpu_isar_feature(aa32_vfp_simd, env_archcpu(env))) {
755 /* VFP coprocessor: cp10 & cp11 [23:20] */
756 mask |= R_CPACR_ASEDIS_MASK |
757 R_CPACR_D32DIS_MASK |
758 R_CPACR_CP11_MASK |
759 R_CPACR_CP10_MASK;
761 if (!arm_feature(env, ARM_FEATURE_NEON)) {
762 /* ASEDIS [31] bit is RAO/WI */
763 value |= R_CPACR_ASEDIS_MASK;
766 /* VFPv3 and upwards with NEON implement 32 double precision
767 * registers (D0-D31).
769 if (!cpu_isar_feature(aa32_simd_r32, env_archcpu(env))) {
770 /* D32DIS [30] is RAO/WI if D16-31 are not implemented. */
771 value |= R_CPACR_D32DIS_MASK;
774 value &= mask;
778 * For A-profile AArch32 EL3 (but not M-profile secure mode), if NSACR.CP10
779 * is 0 then CPACR.{CP11,CP10} ignore writes and read as 0b00.
781 if (arm_feature(env, ARM_FEATURE_EL3) && !arm_el_is_aa64(env, 3) &&
782 !arm_is_secure(env) && !extract32(env->cp15.nsacr, 10, 1)) {
783 mask = R_CPACR_CP11_MASK | R_CPACR_CP10_MASK;
784 value = (value & ~mask) | (env->cp15.cpacr_el1 & mask);
787 env->cp15.cpacr_el1 = value;
790 static uint64_t cpacr_read(CPUARMState *env, const ARMCPRegInfo *ri)
793 * For A-profile AArch32 EL3 (but not M-profile secure mode), if NSACR.CP10
794 * is 0 then CPACR.{CP11,CP10} ignore writes and read as 0b00.
796 uint64_t value = env->cp15.cpacr_el1;
798 if (arm_feature(env, ARM_FEATURE_EL3) && !arm_el_is_aa64(env, 3) &&
799 !arm_is_secure(env) && !extract32(env->cp15.nsacr, 10, 1)) {
800 value = ~(R_CPACR_CP11_MASK | R_CPACR_CP10_MASK);
802 return value;
806 static void cpacr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
808 /* Call cpacr_write() so that we reset with the correct RAO bits set
809 * for our CPU features.
811 cpacr_write(env, ri, 0);
814 static CPAccessResult cpacr_access(CPUARMState *env, const ARMCPRegInfo *ri,
815 bool isread)
817 if (arm_feature(env, ARM_FEATURE_V8)) {
818 /* Check if CPACR accesses are to be trapped to EL2 */
819 if (arm_current_el(env) == 1 && arm_is_el2_enabled(env) &&
820 FIELD_EX64(env->cp15.cptr_el[2], CPTR_EL2, TCPAC)) {
821 return CP_ACCESS_TRAP_EL2;
822 /* Check if CPACR accesses are to be trapped to EL3 */
823 } else if (arm_current_el(env) < 3 &&
824 FIELD_EX64(env->cp15.cptr_el[3], CPTR_EL3, TCPAC)) {
825 return CP_ACCESS_TRAP_EL3;
829 return CP_ACCESS_OK;
832 static CPAccessResult cptr_access(CPUARMState *env, const ARMCPRegInfo *ri,
833 bool isread)
835 /* Check if CPTR accesses are set to trap to EL3 */
836 if (arm_current_el(env) == 2 &&
837 FIELD_EX64(env->cp15.cptr_el[3], CPTR_EL3, TCPAC)) {
838 return CP_ACCESS_TRAP_EL3;
841 return CP_ACCESS_OK;
844 static const ARMCPRegInfo v6_cp_reginfo[] = {
845 /* prefetch by MVA in v6, NOP in v7 */
846 { .name = "MVA_prefetch",
847 .cp = 15, .crn = 7, .crm = 13, .opc1 = 0, .opc2 = 1,
848 .access = PL1_W, .type = ARM_CP_NOP },
849 /* We need to break the TB after ISB to execute self-modifying code
850 * correctly and also to take any pending interrupts immediately.
851 * So use arm_cp_write_ignore() function instead of ARM_CP_NOP flag.
853 { .name = "ISB", .cp = 15, .crn = 7, .crm = 5, .opc1 = 0, .opc2 = 4,
854 .access = PL0_W, .type = ARM_CP_NO_RAW, .writefn = arm_cp_write_ignore },
855 { .name = "DSB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 4,
856 .access = PL0_W, .type = ARM_CP_NOP },
857 { .name = "DMB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 5,
858 .access = PL0_W, .type = ARM_CP_NOP },
859 { .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 2,
860 .access = PL1_RW, .accessfn = access_tvm_trvm,
861 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ifar_s),
862 offsetof(CPUARMState, cp15.ifar_ns) },
863 .resetvalue = 0, },
864 /* Watchpoint Fault Address Register : should actually only be present
865 * for 1136, 1176, 11MPCore.
867 { .name = "WFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1,
868 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0, },
869 { .name = "CPACR", .state = ARM_CP_STATE_BOTH, .opc0 = 3,
870 .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 2, .accessfn = cpacr_access,
871 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.cpacr_el1),
872 .resetfn = cpacr_reset, .writefn = cpacr_write, .readfn = cpacr_read },
875 typedef struct pm_event {
876 uint16_t number; /* PMEVTYPER.evtCount is 16 bits wide */
877 /* If the event is supported on this CPU (used to generate PMCEID[01]) */
878 bool (*supported)(CPUARMState *);
880 * Retrieve the current count of the underlying event. The programmed
881 * counters hold a difference from the return value from this function
883 uint64_t (*get_count)(CPUARMState *);
885 * Return how many nanoseconds it will take (at a minimum) for count events
886 * to occur. A negative value indicates the counter will never overflow, or
887 * that the counter has otherwise arranged for the overflow bit to be set
888 * and the PMU interrupt to be raised on overflow.
890 int64_t (*ns_per_count)(uint64_t);
891 } pm_event;
893 static bool event_always_supported(CPUARMState *env)
895 return true;
898 static uint64_t swinc_get_count(CPUARMState *env)
901 * SW_INCR events are written directly to the pmevcntr's by writes to
902 * PMSWINC, so there is no underlying count maintained by the PMU itself
904 return 0;
907 static int64_t swinc_ns_per(uint64_t ignored)
909 return -1;
913 * Return the underlying cycle count for the PMU cycle counters. If we're in
914 * usermode, simply return 0.
916 static uint64_t cycles_get_count(CPUARMState *env)
918 #ifndef CONFIG_USER_ONLY
919 return muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
920 ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
921 #else
922 return cpu_get_host_ticks();
923 #endif
926 #ifndef CONFIG_USER_ONLY
927 static int64_t cycles_ns_per(uint64_t cycles)
929 return (ARM_CPU_FREQ / NANOSECONDS_PER_SECOND) * cycles;
932 static bool instructions_supported(CPUARMState *env)
934 return icount_enabled() == 1; /* Precise instruction counting */
937 static uint64_t instructions_get_count(CPUARMState *env)
939 return (uint64_t)icount_get_raw();
942 static int64_t instructions_ns_per(uint64_t icount)
944 return icount_to_ns((int64_t)icount);
946 #endif
948 static bool pmu_8_1_events_supported(CPUARMState *env)
950 /* For events which are supported in any v8.1 PMU */
951 return cpu_isar_feature(any_pmu_8_1, env_archcpu(env));
954 static bool pmu_8_4_events_supported(CPUARMState *env)
956 /* For events which are supported in any v8.1 PMU */
957 return cpu_isar_feature(any_pmu_8_4, env_archcpu(env));
960 static uint64_t zero_event_get_count(CPUARMState *env)
962 /* For events which on QEMU never fire, so their count is always zero */
963 return 0;
966 static int64_t zero_event_ns_per(uint64_t cycles)
968 /* An event which never fires can never overflow */
969 return -1;
972 static const pm_event pm_events[] = {
973 { .number = 0x000, /* SW_INCR */
974 .supported = event_always_supported,
975 .get_count = swinc_get_count,
976 .ns_per_count = swinc_ns_per,
978 #ifndef CONFIG_USER_ONLY
979 { .number = 0x008, /* INST_RETIRED, Instruction architecturally executed */
980 .supported = instructions_supported,
981 .get_count = instructions_get_count,
982 .ns_per_count = instructions_ns_per,
984 { .number = 0x011, /* CPU_CYCLES, Cycle */
985 .supported = event_always_supported,
986 .get_count = cycles_get_count,
987 .ns_per_count = cycles_ns_per,
989 #endif
990 { .number = 0x023, /* STALL_FRONTEND */
991 .supported = pmu_8_1_events_supported,
992 .get_count = zero_event_get_count,
993 .ns_per_count = zero_event_ns_per,
995 { .number = 0x024, /* STALL_BACKEND */
996 .supported = pmu_8_1_events_supported,
997 .get_count = zero_event_get_count,
998 .ns_per_count = zero_event_ns_per,
1000 { .number = 0x03c, /* STALL */
1001 .supported = pmu_8_4_events_supported,
1002 .get_count = zero_event_get_count,
1003 .ns_per_count = zero_event_ns_per,
1008 * Note: Before increasing MAX_EVENT_ID beyond 0x3f into the 0x40xx range of
1009 * events (i.e. the statistical profiling extension), this implementation
1010 * should first be updated to something sparse instead of the current
1011 * supported_event_map[] array.
1013 #define MAX_EVENT_ID 0x3c
1014 #define UNSUPPORTED_EVENT UINT16_MAX
1015 static uint16_t supported_event_map[MAX_EVENT_ID + 1];
1018 * Called upon CPU initialization to initialize PMCEID[01]_EL0 and build a map
1019 * of ARM event numbers to indices in our pm_events array.
1021 * Note: Events in the 0x40XX range are not currently supported.
1023 void pmu_init(ARMCPU *cpu)
1025 unsigned int i;
1028 * Empty supported_event_map and cpu->pmceid[01] before adding supported
1029 * events to them
1031 for (i = 0; i < ARRAY_SIZE(supported_event_map); i++) {
1032 supported_event_map[i] = UNSUPPORTED_EVENT;
1034 cpu->pmceid0 = 0;
1035 cpu->pmceid1 = 0;
1037 for (i = 0; i < ARRAY_SIZE(pm_events); i++) {
1038 const pm_event *cnt = &pm_events[i];
1039 assert(cnt->number <= MAX_EVENT_ID);
1040 /* We do not currently support events in the 0x40xx range */
1041 assert(cnt->number <= 0x3f);
1043 if (cnt->supported(&cpu->env)) {
1044 supported_event_map[cnt->number] = i;
1045 uint64_t event_mask = 1ULL << (cnt->number & 0x1f);
1046 if (cnt->number & 0x20) {
1047 cpu->pmceid1 |= event_mask;
1048 } else {
1049 cpu->pmceid0 |= event_mask;
1056 * Check at runtime whether a PMU event is supported for the current machine
1058 static bool event_supported(uint16_t number)
1060 if (number > MAX_EVENT_ID) {
1061 return false;
1063 return supported_event_map[number] != UNSUPPORTED_EVENT;
1066 static CPAccessResult pmreg_access(CPUARMState *env, const ARMCPRegInfo *ri,
1067 bool isread)
1069 /* Performance monitor registers user accessibility is controlled
1070 * by PMUSERENR. MDCR_EL2.TPM and MDCR_EL3.TPM allow configurable
1071 * trapping to EL2 or EL3 for other accesses.
1073 int el = arm_current_el(env);
1074 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
1076 if (el == 0 && !(env->cp15.c9_pmuserenr & 1)) {
1077 return CP_ACCESS_TRAP;
1079 if (el < 2 && (mdcr_el2 & MDCR_TPM)) {
1080 return CP_ACCESS_TRAP_EL2;
1082 if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TPM)) {
1083 return CP_ACCESS_TRAP_EL3;
1086 return CP_ACCESS_OK;
1089 static CPAccessResult pmreg_access_xevcntr(CPUARMState *env,
1090 const ARMCPRegInfo *ri,
1091 bool isread)
1093 /* ER: event counter read trap control */
1094 if (arm_feature(env, ARM_FEATURE_V8)
1095 && arm_current_el(env) == 0
1096 && (env->cp15.c9_pmuserenr & (1 << 3)) != 0
1097 && isread) {
1098 return CP_ACCESS_OK;
1101 return pmreg_access(env, ri, isread);
1104 static CPAccessResult pmreg_access_swinc(CPUARMState *env,
1105 const ARMCPRegInfo *ri,
1106 bool isread)
1108 /* SW: software increment write trap control */
1109 if (arm_feature(env, ARM_FEATURE_V8)
1110 && arm_current_el(env) == 0
1111 && (env->cp15.c9_pmuserenr & (1 << 1)) != 0
1112 && !isread) {
1113 return CP_ACCESS_OK;
1116 return pmreg_access(env, ri, isread);
1119 static CPAccessResult pmreg_access_selr(CPUARMState *env,
1120 const ARMCPRegInfo *ri,
1121 bool isread)
1123 /* ER: event counter read trap control */
1124 if (arm_feature(env, ARM_FEATURE_V8)
1125 && arm_current_el(env) == 0
1126 && (env->cp15.c9_pmuserenr & (1 << 3)) != 0) {
1127 return CP_ACCESS_OK;
1130 return pmreg_access(env, ri, isread);
1133 static CPAccessResult pmreg_access_ccntr(CPUARMState *env,
1134 const ARMCPRegInfo *ri,
1135 bool isread)
1137 /* CR: cycle counter read trap control */
1138 if (arm_feature(env, ARM_FEATURE_V8)
1139 && arm_current_el(env) == 0
1140 && (env->cp15.c9_pmuserenr & (1 << 2)) != 0
1141 && isread) {
1142 return CP_ACCESS_OK;
1145 return pmreg_access(env, ri, isread);
1148 /* Returns true if the counter (pass 31 for PMCCNTR) should count events using
1149 * the current EL, security state, and register configuration.
1151 static bool pmu_counter_enabled(CPUARMState *env, uint8_t counter)
1153 uint64_t filter;
1154 bool e, p, u, nsk, nsu, nsh, m;
1155 bool enabled, prohibited, filtered;
1156 bool secure = arm_is_secure(env);
1157 int el = arm_current_el(env);
1158 uint64_t mdcr_el2 = arm_mdcr_el2_eff(env);
1159 uint8_t hpmn = mdcr_el2 & MDCR_HPMN;
1161 if (!arm_feature(env, ARM_FEATURE_PMU)) {
1162 return false;
1165 if (!arm_feature(env, ARM_FEATURE_EL2) ||
1166 (counter < hpmn || counter == 31)) {
1167 e = env->cp15.c9_pmcr & PMCRE;
1168 } else {
1169 e = mdcr_el2 & MDCR_HPME;
1171 enabled = e && (env->cp15.c9_pmcnten & (1 << counter));
1173 if (!secure) {
1174 if (el == 2 && (counter < hpmn || counter == 31)) {
1175 prohibited = mdcr_el2 & MDCR_HPMD;
1176 } else {
1177 prohibited = false;
1179 } else {
1180 prohibited = arm_feature(env, ARM_FEATURE_EL3) &&
1181 !(env->cp15.mdcr_el3 & MDCR_SPME);
1184 if (prohibited && counter == 31) {
1185 prohibited = env->cp15.c9_pmcr & PMCRDP;
1188 if (counter == 31) {
1189 filter = env->cp15.pmccfiltr_el0;
1190 } else {
1191 filter = env->cp15.c14_pmevtyper[counter];
1194 p = filter & PMXEVTYPER_P;
1195 u = filter & PMXEVTYPER_U;
1196 nsk = arm_feature(env, ARM_FEATURE_EL3) && (filter & PMXEVTYPER_NSK);
1197 nsu = arm_feature(env, ARM_FEATURE_EL3) && (filter & PMXEVTYPER_NSU);
1198 nsh = arm_feature(env, ARM_FEATURE_EL2) && (filter & PMXEVTYPER_NSH);
1199 m = arm_el_is_aa64(env, 1) &&
1200 arm_feature(env, ARM_FEATURE_EL3) && (filter & PMXEVTYPER_M);
1202 if (el == 0) {
1203 filtered = secure ? u : u != nsu;
1204 } else if (el == 1) {
1205 filtered = secure ? p : p != nsk;
1206 } else if (el == 2) {
1207 filtered = !nsh;
1208 } else { /* EL3 */
1209 filtered = m != p;
1212 if (counter != 31) {
1214 * If not checking PMCCNTR, ensure the counter is setup to an event we
1215 * support
1217 uint16_t event = filter & PMXEVTYPER_EVTCOUNT;
1218 if (!event_supported(event)) {
1219 return false;
1223 return enabled && !prohibited && !filtered;
1226 static void pmu_update_irq(CPUARMState *env)
1228 ARMCPU *cpu = env_archcpu(env);
1229 qemu_set_irq(cpu->pmu_interrupt, (env->cp15.c9_pmcr & PMCRE) &&
1230 (env->cp15.c9_pminten & env->cp15.c9_pmovsr));
1234 * Ensure c15_ccnt is the guest-visible count so that operations such as
1235 * enabling/disabling the counter or filtering, modifying the count itself,
1236 * etc. can be done logically. This is essentially a no-op if the counter is
1237 * not enabled at the time of the call.
1239 static void pmccntr_op_start(CPUARMState *env)
1241 uint64_t cycles = cycles_get_count(env);
1243 if (pmu_counter_enabled(env, 31)) {
1244 uint64_t eff_cycles = cycles;
1245 if (env->cp15.c9_pmcr & PMCRD) {
1246 /* Increment once every 64 processor clock cycles */
1247 eff_cycles /= 64;
1250 uint64_t new_pmccntr = eff_cycles - env->cp15.c15_ccnt_delta;
1252 uint64_t overflow_mask = env->cp15.c9_pmcr & PMCRLC ? \
1253 1ull << 63 : 1ull << 31;
1254 if (env->cp15.c15_ccnt & ~new_pmccntr & overflow_mask) {
1255 env->cp15.c9_pmovsr |= (1 << 31);
1256 pmu_update_irq(env);
1259 env->cp15.c15_ccnt = new_pmccntr;
1261 env->cp15.c15_ccnt_delta = cycles;
1265 * If PMCCNTR is enabled, recalculate the delta between the clock and the
1266 * guest-visible count. A call to pmccntr_op_finish should follow every call to
1267 * pmccntr_op_start.
1269 static void pmccntr_op_finish(CPUARMState *env)
1271 if (pmu_counter_enabled(env, 31)) {
1272 #ifndef CONFIG_USER_ONLY
1273 /* Calculate when the counter will next overflow */
1274 uint64_t remaining_cycles = -env->cp15.c15_ccnt;
1275 if (!(env->cp15.c9_pmcr & PMCRLC)) {
1276 remaining_cycles = (uint32_t)remaining_cycles;
1278 int64_t overflow_in = cycles_ns_per(remaining_cycles);
1280 if (overflow_in > 0) {
1281 int64_t overflow_at = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
1282 overflow_in;
1283 ARMCPU *cpu = env_archcpu(env);
1284 timer_mod_anticipate_ns(cpu->pmu_timer, overflow_at);
1286 #endif
1288 uint64_t prev_cycles = env->cp15.c15_ccnt_delta;
1289 if (env->cp15.c9_pmcr & PMCRD) {
1290 /* Increment once every 64 processor clock cycles */
1291 prev_cycles /= 64;
1293 env->cp15.c15_ccnt_delta = prev_cycles - env->cp15.c15_ccnt;
1297 static void pmevcntr_op_start(CPUARMState *env, uint8_t counter)
1300 uint16_t event = env->cp15.c14_pmevtyper[counter] & PMXEVTYPER_EVTCOUNT;
1301 uint64_t count = 0;
1302 if (event_supported(event)) {
1303 uint16_t event_idx = supported_event_map[event];
1304 count = pm_events[event_idx].get_count(env);
1307 if (pmu_counter_enabled(env, counter)) {
1308 uint32_t new_pmevcntr = count - env->cp15.c14_pmevcntr_delta[counter];
1310 if (env->cp15.c14_pmevcntr[counter] & ~new_pmevcntr & INT32_MIN) {
1311 env->cp15.c9_pmovsr |= (1 << counter);
1312 pmu_update_irq(env);
1314 env->cp15.c14_pmevcntr[counter] = new_pmevcntr;
1316 env->cp15.c14_pmevcntr_delta[counter] = count;
1319 static void pmevcntr_op_finish(CPUARMState *env, uint8_t counter)
1321 if (pmu_counter_enabled(env, counter)) {
1322 #ifndef CONFIG_USER_ONLY
1323 uint16_t event = env->cp15.c14_pmevtyper[counter] & PMXEVTYPER_EVTCOUNT;
1324 uint16_t event_idx = supported_event_map[event];
1325 uint64_t delta = UINT32_MAX -
1326 (uint32_t)env->cp15.c14_pmevcntr[counter] + 1;
1327 int64_t overflow_in = pm_events[event_idx].ns_per_count(delta);
1329 if (overflow_in > 0) {
1330 int64_t overflow_at = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
1331 overflow_in;
1332 ARMCPU *cpu = env_archcpu(env);
1333 timer_mod_anticipate_ns(cpu->pmu_timer, overflow_at);
1335 #endif
1337 env->cp15.c14_pmevcntr_delta[counter] -=
1338 env->cp15.c14_pmevcntr[counter];
1342 void pmu_op_start(CPUARMState *env)
1344 unsigned int i;
1345 pmccntr_op_start(env);
1346 for (i = 0; i < pmu_num_counters(env); i++) {
1347 pmevcntr_op_start(env, i);
1351 void pmu_op_finish(CPUARMState *env)
1353 unsigned int i;
1354 pmccntr_op_finish(env);
1355 for (i = 0; i < pmu_num_counters(env); i++) {
1356 pmevcntr_op_finish(env, i);
1360 void pmu_pre_el_change(ARMCPU *cpu, void *ignored)
1362 pmu_op_start(&cpu->env);
1365 void pmu_post_el_change(ARMCPU *cpu, void *ignored)
1367 pmu_op_finish(&cpu->env);
1370 void arm_pmu_timer_cb(void *opaque)
1372 ARMCPU *cpu = opaque;
1375 * Update all the counter values based on the current underlying counts,
1376 * triggering interrupts to be raised, if necessary. pmu_op_finish() also
1377 * has the effect of setting the cpu->pmu_timer to the next earliest time a
1378 * counter may expire.
1380 pmu_op_start(&cpu->env);
1381 pmu_op_finish(&cpu->env);
1384 static void pmcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1385 uint64_t value)
1387 pmu_op_start(env);
1389 if (value & PMCRC) {
1390 /* The counter has been reset */
1391 env->cp15.c15_ccnt = 0;
1394 if (value & PMCRP) {
1395 unsigned int i;
1396 for (i = 0; i < pmu_num_counters(env); i++) {
1397 env->cp15.c14_pmevcntr[i] = 0;
1401 env->cp15.c9_pmcr &= ~PMCR_WRITABLE_MASK;
1402 env->cp15.c9_pmcr |= (value & PMCR_WRITABLE_MASK);
1404 pmu_op_finish(env);
1407 static void pmswinc_write(CPUARMState *env, const ARMCPRegInfo *ri,
1408 uint64_t value)
1410 unsigned int i;
1411 for (i = 0; i < pmu_num_counters(env); i++) {
1412 /* Increment a counter's count iff: */
1413 if ((value & (1 << i)) && /* counter's bit is set */
1414 /* counter is enabled and not filtered */
1415 pmu_counter_enabled(env, i) &&
1416 /* counter is SW_INCR */
1417 (env->cp15.c14_pmevtyper[i] & PMXEVTYPER_EVTCOUNT) == 0x0) {
1418 pmevcntr_op_start(env, i);
1421 * Detect if this write causes an overflow since we can't predict
1422 * PMSWINC overflows like we can for other events
1424 uint32_t new_pmswinc = env->cp15.c14_pmevcntr[i] + 1;
1426 if (env->cp15.c14_pmevcntr[i] & ~new_pmswinc & INT32_MIN) {
1427 env->cp15.c9_pmovsr |= (1 << i);
1428 pmu_update_irq(env);
1431 env->cp15.c14_pmevcntr[i] = new_pmswinc;
1433 pmevcntr_op_finish(env, i);
1438 static uint64_t pmccntr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1440 uint64_t ret;
1441 pmccntr_op_start(env);
1442 ret = env->cp15.c15_ccnt;
1443 pmccntr_op_finish(env);
1444 return ret;
1447 static void pmselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1448 uint64_t value)
1450 /* The value of PMSELR.SEL affects the behavior of PMXEVTYPER and
1451 * PMXEVCNTR. We allow [0..31] to be written to PMSELR here; in the
1452 * meanwhile, we check PMSELR.SEL when PMXEVTYPER and PMXEVCNTR are
1453 * accessed.
1455 env->cp15.c9_pmselr = value & 0x1f;
1458 static void pmccntr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1459 uint64_t value)
1461 pmccntr_op_start(env);
1462 env->cp15.c15_ccnt = value;
1463 pmccntr_op_finish(env);
1466 static void pmccntr_write32(CPUARMState *env, const ARMCPRegInfo *ri,
1467 uint64_t value)
1469 uint64_t cur_val = pmccntr_read(env, NULL);
1471 pmccntr_write(env, ri, deposit64(cur_val, 0, 32, value));
1474 static void pmccfiltr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1475 uint64_t value)
1477 pmccntr_op_start(env);
1478 env->cp15.pmccfiltr_el0 = value & PMCCFILTR_EL0;
1479 pmccntr_op_finish(env);
1482 static void pmccfiltr_write_a32(CPUARMState *env, const ARMCPRegInfo *ri,
1483 uint64_t value)
1485 pmccntr_op_start(env);
1486 /* M is not accessible from AArch32 */
1487 env->cp15.pmccfiltr_el0 = (env->cp15.pmccfiltr_el0 & PMCCFILTR_M) |
1488 (value & PMCCFILTR);
1489 pmccntr_op_finish(env);
1492 static uint64_t pmccfiltr_read_a32(CPUARMState *env, const ARMCPRegInfo *ri)
1494 /* M is not visible in AArch32 */
1495 return env->cp15.pmccfiltr_el0 & PMCCFILTR;
1498 static void pmcntenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
1499 uint64_t value)
1501 value &= pmu_counter_mask(env);
1502 env->cp15.c9_pmcnten |= value;
1505 static void pmcntenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1506 uint64_t value)
1508 value &= pmu_counter_mask(env);
1509 env->cp15.c9_pmcnten &= ~value;
1512 static void pmovsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1513 uint64_t value)
1515 value &= pmu_counter_mask(env);
1516 env->cp15.c9_pmovsr &= ~value;
1517 pmu_update_irq(env);
1520 static void pmovsset_write(CPUARMState *env, const ARMCPRegInfo *ri,
1521 uint64_t value)
1523 value &= pmu_counter_mask(env);
1524 env->cp15.c9_pmovsr |= value;
1525 pmu_update_irq(env);
1528 static void pmevtyper_write(CPUARMState *env, const ARMCPRegInfo *ri,
1529 uint64_t value, const uint8_t counter)
1531 if (counter == 31) {
1532 pmccfiltr_write(env, ri, value);
1533 } else if (counter < pmu_num_counters(env)) {
1534 pmevcntr_op_start(env, counter);
1537 * If this counter's event type is changing, store the current
1538 * underlying count for the new type in c14_pmevcntr_delta[counter] so
1539 * pmevcntr_op_finish has the correct baseline when it converts back to
1540 * a delta.
1542 uint16_t old_event = env->cp15.c14_pmevtyper[counter] &
1543 PMXEVTYPER_EVTCOUNT;
1544 uint16_t new_event = value & PMXEVTYPER_EVTCOUNT;
1545 if (old_event != new_event) {
1546 uint64_t count = 0;
1547 if (event_supported(new_event)) {
1548 uint16_t event_idx = supported_event_map[new_event];
1549 count = pm_events[event_idx].get_count(env);
1551 env->cp15.c14_pmevcntr_delta[counter] = count;
1554 env->cp15.c14_pmevtyper[counter] = value & PMXEVTYPER_MASK;
1555 pmevcntr_op_finish(env, counter);
1557 /* Attempts to access PMXEVTYPER are CONSTRAINED UNPREDICTABLE when
1558 * PMSELR value is equal to or greater than the number of implemented
1559 * counters, but not equal to 0x1f. We opt to behave as a RAZ/WI.
1563 static uint64_t pmevtyper_read(CPUARMState *env, const ARMCPRegInfo *ri,
1564 const uint8_t counter)
1566 if (counter == 31) {
1567 return env->cp15.pmccfiltr_el0;
1568 } else if (counter < pmu_num_counters(env)) {
1569 return env->cp15.c14_pmevtyper[counter];
1570 } else {
1572 * We opt to behave as a RAZ/WI when attempts to access PMXEVTYPER
1573 * are CONSTRAINED UNPREDICTABLE. See comments in pmevtyper_write().
1575 return 0;
1579 static void pmevtyper_writefn(CPUARMState *env, const ARMCPRegInfo *ri,
1580 uint64_t value)
1582 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1583 pmevtyper_write(env, ri, value, counter);
1586 static void pmevtyper_rawwrite(CPUARMState *env, const ARMCPRegInfo *ri,
1587 uint64_t value)
1589 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1590 env->cp15.c14_pmevtyper[counter] = value;
1593 * pmevtyper_rawwrite is called between a pair of pmu_op_start and
1594 * pmu_op_finish calls when loading saved state for a migration. Because
1595 * we're potentially updating the type of event here, the value written to
1596 * c14_pmevcntr_delta by the preceeding pmu_op_start call may be for a
1597 * different counter type. Therefore, we need to set this value to the
1598 * current count for the counter type we're writing so that pmu_op_finish
1599 * has the correct count for its calculation.
1601 uint16_t event = value & PMXEVTYPER_EVTCOUNT;
1602 if (event_supported(event)) {
1603 uint16_t event_idx = supported_event_map[event];
1604 env->cp15.c14_pmevcntr_delta[counter] =
1605 pm_events[event_idx].get_count(env);
1609 static uint64_t pmevtyper_readfn(CPUARMState *env, const ARMCPRegInfo *ri)
1611 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1612 return pmevtyper_read(env, ri, counter);
1615 static void pmxevtyper_write(CPUARMState *env, const ARMCPRegInfo *ri,
1616 uint64_t value)
1618 pmevtyper_write(env, ri, value, env->cp15.c9_pmselr & 31);
1621 static uint64_t pmxevtyper_read(CPUARMState *env, const ARMCPRegInfo *ri)
1623 return pmevtyper_read(env, ri, env->cp15.c9_pmselr & 31);
1626 static void pmevcntr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1627 uint64_t value, uint8_t counter)
1629 if (counter < pmu_num_counters(env)) {
1630 pmevcntr_op_start(env, counter);
1631 env->cp15.c14_pmevcntr[counter] = value;
1632 pmevcntr_op_finish(env, counter);
1635 * We opt to behave as a RAZ/WI when attempts to access PM[X]EVCNTR
1636 * are CONSTRAINED UNPREDICTABLE.
1640 static uint64_t pmevcntr_read(CPUARMState *env, const ARMCPRegInfo *ri,
1641 uint8_t counter)
1643 if (counter < pmu_num_counters(env)) {
1644 uint64_t ret;
1645 pmevcntr_op_start(env, counter);
1646 ret = env->cp15.c14_pmevcntr[counter];
1647 pmevcntr_op_finish(env, counter);
1648 return ret;
1649 } else {
1650 /* We opt to behave as a RAZ/WI when attempts to access PM[X]EVCNTR
1651 * are CONSTRAINED UNPREDICTABLE. */
1652 return 0;
1656 static void pmevcntr_writefn(CPUARMState *env, const ARMCPRegInfo *ri,
1657 uint64_t value)
1659 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1660 pmevcntr_write(env, ri, value, counter);
1663 static uint64_t pmevcntr_readfn(CPUARMState *env, const ARMCPRegInfo *ri)
1665 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1666 return pmevcntr_read(env, ri, counter);
1669 static void pmevcntr_rawwrite(CPUARMState *env, const ARMCPRegInfo *ri,
1670 uint64_t value)
1672 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1673 assert(counter < pmu_num_counters(env));
1674 env->cp15.c14_pmevcntr[counter] = value;
1675 pmevcntr_write(env, ri, value, counter);
1678 static uint64_t pmevcntr_rawread(CPUARMState *env, const ARMCPRegInfo *ri)
1680 uint8_t counter = ((ri->crm & 3) << 3) | (ri->opc2 & 7);
1681 assert(counter < pmu_num_counters(env));
1682 return env->cp15.c14_pmevcntr[counter];
1685 static void pmxevcntr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1686 uint64_t value)
1688 pmevcntr_write(env, ri, value, env->cp15.c9_pmselr & 31);
1691 static uint64_t pmxevcntr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1693 return pmevcntr_read(env, ri, env->cp15.c9_pmselr & 31);
1696 static void pmuserenr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1697 uint64_t value)
1699 if (arm_feature(env, ARM_FEATURE_V8)) {
1700 env->cp15.c9_pmuserenr = value & 0xf;
1701 } else {
1702 env->cp15.c9_pmuserenr = value & 1;
1706 static void pmintenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
1707 uint64_t value)
1709 /* We have no event counters so only the C bit can be changed */
1710 value &= pmu_counter_mask(env);
1711 env->cp15.c9_pminten |= value;
1712 pmu_update_irq(env);
1715 static void pmintenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1716 uint64_t value)
1718 value &= pmu_counter_mask(env);
1719 env->cp15.c9_pminten &= ~value;
1720 pmu_update_irq(env);
1723 static void vbar_write(CPUARMState *env, const ARMCPRegInfo *ri,
1724 uint64_t value)
1726 /* Note that even though the AArch64 view of this register has bits
1727 * [10:0] all RES0 we can only mask the bottom 5, to comply with the
1728 * architectural requirements for bits which are RES0 only in some
1729 * contexts. (ARMv8 would permit us to do no masking at all, but ARMv7
1730 * requires the bottom five bits to be RAZ/WI because they're UNK/SBZP.)
1732 raw_write(env, ri, value & ~0x1FULL);
1735 static void scr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
1737 /* Begin with base v8.0 state. */
1738 uint32_t valid_mask = 0x3fff;
1739 ARMCPU *cpu = env_archcpu(env);
1741 if (ri->state == ARM_CP_STATE_AA64) {
1742 if (arm_feature(env, ARM_FEATURE_AARCH64) &&
1743 !cpu_isar_feature(aa64_aa32_el1, cpu)) {
1744 value |= SCR_FW | SCR_AW; /* these two bits are RES1. */
1746 valid_mask &= ~SCR_NET;
1748 if (cpu_isar_feature(aa64_ras, cpu)) {
1749 valid_mask |= SCR_TERR;
1751 if (cpu_isar_feature(aa64_lor, cpu)) {
1752 valid_mask |= SCR_TLOR;
1754 if (cpu_isar_feature(aa64_pauth, cpu)) {
1755 valid_mask |= SCR_API | SCR_APK;
1757 if (cpu_isar_feature(aa64_sel2, cpu)) {
1758 valid_mask |= SCR_EEL2;
1760 if (cpu_isar_feature(aa64_mte, cpu)) {
1761 valid_mask |= SCR_ATA;
1763 if (cpu_isar_feature(aa64_scxtnum, cpu)) {
1764 valid_mask |= SCR_ENSCXT;
1766 if (cpu_isar_feature(aa64_doublefault, cpu)) {
1767 valid_mask |= SCR_EASE | SCR_NMEA;
1769 } else {
1770 valid_mask &= ~(SCR_RW | SCR_ST);
1771 if (cpu_isar_feature(aa32_ras, cpu)) {
1772 valid_mask |= SCR_TERR;
1776 if (!arm_feature(env, ARM_FEATURE_EL2)) {
1777 valid_mask &= ~SCR_HCE;
1779 /* On ARMv7, SMD (or SCD as it is called in v7) is only
1780 * supported if EL2 exists. The bit is UNK/SBZP when
1781 * EL2 is unavailable. In QEMU ARMv7, we force it to always zero
1782 * when EL2 is unavailable.
1783 * On ARMv8, this bit is always available.
1785 if (arm_feature(env, ARM_FEATURE_V7) &&
1786 !arm_feature(env, ARM_FEATURE_V8)) {
1787 valid_mask &= ~SCR_SMD;
1791 /* Clear all-context RES0 bits. */
1792 value &= valid_mask;
1793 raw_write(env, ri, value);
1796 static void scr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1799 * scr_write will set the RES1 bits on an AArch64-only CPU.
1800 * The reset value will be 0x30 on an AArch64-only CPU and 0 otherwise.
1802 scr_write(env, ri, 0);
1805 static CPAccessResult access_aa64_tid2(CPUARMState *env,
1806 const ARMCPRegInfo *ri,
1807 bool isread)
1809 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TID2)) {
1810 return CP_ACCESS_TRAP_EL2;
1813 return CP_ACCESS_OK;
1816 static uint64_t ccsidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1818 ARMCPU *cpu = env_archcpu(env);
1820 /* Acquire the CSSELR index from the bank corresponding to the CCSIDR
1821 * bank
1823 uint32_t index = A32_BANKED_REG_GET(env, csselr,
1824 ri->secure & ARM_CP_SECSTATE_S);
1826 return cpu->ccsidr[index];
1829 static void csselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1830 uint64_t value)
1832 raw_write(env, ri, value & 0xf);
1835 static uint64_t isr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1837 CPUState *cs = env_cpu(env);
1838 bool el1 = arm_current_el(env) == 1;
1839 uint64_t hcr_el2 = el1 ? arm_hcr_el2_eff(env) : 0;
1840 uint64_t ret = 0;
1842 if (hcr_el2 & HCR_IMO) {
1843 if (cs->interrupt_request & CPU_INTERRUPT_VIRQ) {
1844 ret |= CPSR_I;
1846 } else {
1847 if (cs->interrupt_request & CPU_INTERRUPT_HARD) {
1848 ret |= CPSR_I;
1852 if (hcr_el2 & HCR_FMO) {
1853 if (cs->interrupt_request & CPU_INTERRUPT_VFIQ) {
1854 ret |= CPSR_F;
1856 } else {
1857 if (cs->interrupt_request & CPU_INTERRUPT_FIQ) {
1858 ret |= CPSR_F;
1862 if (hcr_el2 & HCR_AMO) {
1863 if (cs->interrupt_request & CPU_INTERRUPT_VSERR) {
1864 ret |= CPSR_A;
1868 return ret;
1871 static CPAccessResult access_aa64_tid1(CPUARMState *env, const ARMCPRegInfo *ri,
1872 bool isread)
1874 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TID1)) {
1875 return CP_ACCESS_TRAP_EL2;
1878 return CP_ACCESS_OK;
1881 static CPAccessResult access_aa32_tid1(CPUARMState *env, const ARMCPRegInfo *ri,
1882 bool isread)
1884 if (arm_feature(env, ARM_FEATURE_V8)) {
1885 return access_aa64_tid1(env, ri, isread);
1888 return CP_ACCESS_OK;
1891 static const ARMCPRegInfo v7_cp_reginfo[] = {
1892 /* the old v6 WFI, UNPREDICTABLE in v7 but we choose to NOP */
1893 { .name = "NOP", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
1894 .access = PL1_W, .type = ARM_CP_NOP },
1895 /* Performance monitors are implementation defined in v7,
1896 * but with an ARM recommended set of registers, which we
1897 * follow.
1899 * Performance registers fall into three categories:
1900 * (a) always UNDEF in PL0, RW in PL1 (PMINTENSET, PMINTENCLR)
1901 * (b) RO in PL0 (ie UNDEF on write), RW in PL1 (PMUSERENR)
1902 * (c) UNDEF in PL0 if PMUSERENR.EN==0, otherwise accessible (all others)
1903 * For the cases controlled by PMUSERENR we must set .access to PL0_RW
1904 * or PL0_RO as appropriate and then check PMUSERENR in the helper fn.
1906 { .name = "PMCNTENSET", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 1,
1907 .access = PL0_RW, .type = ARM_CP_ALIAS,
1908 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
1909 .writefn = pmcntenset_write,
1910 .accessfn = pmreg_access,
1911 .raw_writefn = raw_write },
1912 { .name = "PMCNTENSET_EL0", .state = ARM_CP_STATE_AA64,
1913 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 1,
1914 .access = PL0_RW, .accessfn = pmreg_access,
1915 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten), .resetvalue = 0,
1916 .writefn = pmcntenset_write, .raw_writefn = raw_write },
1917 { .name = "PMCNTENCLR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 2,
1918 .access = PL0_RW,
1919 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
1920 .accessfn = pmreg_access,
1921 .writefn = pmcntenclr_write,
1922 .type = ARM_CP_ALIAS },
1923 { .name = "PMCNTENCLR_EL0", .state = ARM_CP_STATE_AA64,
1924 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 2,
1925 .access = PL0_RW, .accessfn = pmreg_access,
1926 .type = ARM_CP_ALIAS,
1927 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten),
1928 .writefn = pmcntenclr_write },
1929 { .name = "PMOVSR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 3,
1930 .access = PL0_RW, .type = ARM_CP_IO,
1931 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmovsr),
1932 .accessfn = pmreg_access,
1933 .writefn = pmovsr_write,
1934 .raw_writefn = raw_write },
1935 { .name = "PMOVSCLR_EL0", .state = ARM_CP_STATE_AA64,
1936 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 3,
1937 .access = PL0_RW, .accessfn = pmreg_access,
1938 .type = ARM_CP_ALIAS | ARM_CP_IO,
1939 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmovsr),
1940 .writefn = pmovsr_write,
1941 .raw_writefn = raw_write },
1942 { .name = "PMSWINC", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 4,
1943 .access = PL0_W, .accessfn = pmreg_access_swinc,
1944 .type = ARM_CP_NO_RAW | ARM_CP_IO,
1945 .writefn = pmswinc_write },
1946 { .name = "PMSWINC_EL0", .state = ARM_CP_STATE_AA64,
1947 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 4,
1948 .access = PL0_W, .accessfn = pmreg_access_swinc,
1949 .type = ARM_CP_NO_RAW | ARM_CP_IO,
1950 .writefn = pmswinc_write },
1951 { .name = "PMSELR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 5,
1952 .access = PL0_RW, .type = ARM_CP_ALIAS,
1953 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmselr),
1954 .accessfn = pmreg_access_selr, .writefn = pmselr_write,
1955 .raw_writefn = raw_write},
1956 { .name = "PMSELR_EL0", .state = ARM_CP_STATE_AA64,
1957 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 5,
1958 .access = PL0_RW, .accessfn = pmreg_access_selr,
1959 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmselr),
1960 .writefn = pmselr_write, .raw_writefn = raw_write, },
1961 { .name = "PMCCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 0,
1962 .access = PL0_RW, .resetvalue = 0, .type = ARM_CP_ALIAS | ARM_CP_IO,
1963 .readfn = pmccntr_read, .writefn = pmccntr_write32,
1964 .accessfn = pmreg_access_ccntr },
1965 { .name = "PMCCNTR_EL0", .state = ARM_CP_STATE_AA64,
1966 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 0,
1967 .access = PL0_RW, .accessfn = pmreg_access_ccntr,
1968 .type = ARM_CP_IO,
1969 .fieldoffset = offsetof(CPUARMState, cp15.c15_ccnt),
1970 .readfn = pmccntr_read, .writefn = pmccntr_write,
1971 .raw_readfn = raw_read, .raw_writefn = raw_write, },
1972 { .name = "PMCCFILTR", .cp = 15, .opc1 = 0, .crn = 14, .crm = 15, .opc2 = 7,
1973 .writefn = pmccfiltr_write_a32, .readfn = pmccfiltr_read_a32,
1974 .access = PL0_RW, .accessfn = pmreg_access,
1975 .type = ARM_CP_ALIAS | ARM_CP_IO,
1976 .resetvalue = 0, },
1977 { .name = "PMCCFILTR_EL0", .state = ARM_CP_STATE_AA64,
1978 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 15, .opc2 = 7,
1979 .writefn = pmccfiltr_write, .raw_writefn = raw_write,
1980 .access = PL0_RW, .accessfn = pmreg_access,
1981 .type = ARM_CP_IO,
1982 .fieldoffset = offsetof(CPUARMState, cp15.pmccfiltr_el0),
1983 .resetvalue = 0, },
1984 { .name = "PMXEVTYPER", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 1,
1985 .access = PL0_RW, .type = ARM_CP_NO_RAW | ARM_CP_IO,
1986 .accessfn = pmreg_access,
1987 .writefn = pmxevtyper_write, .readfn = pmxevtyper_read },
1988 { .name = "PMXEVTYPER_EL0", .state = ARM_CP_STATE_AA64,
1989 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 1,
1990 .access = PL0_RW, .type = ARM_CP_NO_RAW | ARM_CP_IO,
1991 .accessfn = pmreg_access,
1992 .writefn = pmxevtyper_write, .readfn = pmxevtyper_read },
1993 { .name = "PMXEVCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 2,
1994 .access = PL0_RW, .type = ARM_CP_NO_RAW | ARM_CP_IO,
1995 .accessfn = pmreg_access_xevcntr,
1996 .writefn = pmxevcntr_write, .readfn = pmxevcntr_read },
1997 { .name = "PMXEVCNTR_EL0", .state = ARM_CP_STATE_AA64,
1998 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 2,
1999 .access = PL0_RW, .type = ARM_CP_NO_RAW | ARM_CP_IO,
2000 .accessfn = pmreg_access_xevcntr,
2001 .writefn = pmxevcntr_write, .readfn = pmxevcntr_read },
2002 { .name = "PMUSERENR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 0,
2003 .access = PL0_R | PL1_RW, .accessfn = access_tpm,
2004 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmuserenr),
2005 .resetvalue = 0,
2006 .writefn = pmuserenr_write, .raw_writefn = raw_write },
2007 { .name = "PMUSERENR_EL0", .state = ARM_CP_STATE_AA64,
2008 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 14, .opc2 = 0,
2009 .access = PL0_R | PL1_RW, .accessfn = access_tpm, .type = ARM_CP_ALIAS,
2010 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmuserenr),
2011 .resetvalue = 0,
2012 .writefn = pmuserenr_write, .raw_writefn = raw_write },
2013 { .name = "PMINTENSET", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 1,
2014 .access = PL1_RW, .accessfn = access_tpm,
2015 .type = ARM_CP_ALIAS | ARM_CP_IO,
2016 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pminten),
2017 .resetvalue = 0,
2018 .writefn = pmintenset_write, .raw_writefn = raw_write },
2019 { .name = "PMINTENSET_EL1", .state = ARM_CP_STATE_AA64,
2020 .opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 1,
2021 .access = PL1_RW, .accessfn = access_tpm,
2022 .type = ARM_CP_IO,
2023 .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
2024 .writefn = pmintenset_write, .raw_writefn = raw_write,
2025 .resetvalue = 0x0 },
2026 { .name = "PMINTENCLR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 2,
2027 .access = PL1_RW, .accessfn = access_tpm,
2028 .type = ARM_CP_ALIAS | ARM_CP_IO | ARM_CP_NO_RAW,
2029 .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
2030 .writefn = pmintenclr_write, },
2031 { .name = "PMINTENCLR_EL1", .state = ARM_CP_STATE_AA64,
2032 .opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 2,
2033 .access = PL1_RW, .accessfn = access_tpm,
2034 .type = ARM_CP_ALIAS | ARM_CP_IO | ARM_CP_NO_RAW,
2035 .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
2036 .writefn = pmintenclr_write },
2037 { .name = "CCSIDR", .state = ARM_CP_STATE_BOTH,
2038 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 0,
2039 .access = PL1_R,
2040 .accessfn = access_aa64_tid2,
2041 .readfn = ccsidr_read, .type = ARM_CP_NO_RAW },
2042 { .name = "CSSELR", .state = ARM_CP_STATE_BOTH,
2043 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 2, .opc2 = 0,
2044 .access = PL1_RW,
2045 .accessfn = access_aa64_tid2,
2046 .writefn = csselr_write, .resetvalue = 0,
2047 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.csselr_s),
2048 offsetof(CPUARMState, cp15.csselr_ns) } },
2049 /* Auxiliary ID register: this actually has an IMPDEF value but for now
2050 * just RAZ for all cores:
2052 { .name = "AIDR", .state = ARM_CP_STATE_BOTH,
2053 .opc0 = 3, .opc1 = 1, .crn = 0, .crm = 0, .opc2 = 7,
2054 .access = PL1_R, .type = ARM_CP_CONST,
2055 .accessfn = access_aa64_tid1,
2056 .resetvalue = 0 },
2057 /* Auxiliary fault status registers: these also are IMPDEF, and we
2058 * choose to RAZ/WI for all cores.
2060 { .name = "AFSR0_EL1", .state = ARM_CP_STATE_BOTH,
2061 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 0,
2062 .access = PL1_RW, .accessfn = access_tvm_trvm,
2063 .type = ARM_CP_CONST, .resetvalue = 0 },
2064 { .name = "AFSR1_EL1", .state = ARM_CP_STATE_BOTH,
2065 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 1,
2066 .access = PL1_RW, .accessfn = access_tvm_trvm,
2067 .type = ARM_CP_CONST, .resetvalue = 0 },
2068 /* MAIR can just read-as-written because we don't implement caches
2069 * and so don't need to care about memory attributes.
2071 { .name = "MAIR_EL1", .state = ARM_CP_STATE_AA64,
2072 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0,
2073 .access = PL1_RW, .accessfn = access_tvm_trvm,
2074 .fieldoffset = offsetof(CPUARMState, cp15.mair_el[1]),
2075 .resetvalue = 0 },
2076 { .name = "MAIR_EL3", .state = ARM_CP_STATE_AA64,
2077 .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 2, .opc2 = 0,
2078 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[3]),
2079 .resetvalue = 0 },
2080 /* For non-long-descriptor page tables these are PRRR and NMRR;
2081 * regardless they still act as reads-as-written for QEMU.
2083 /* MAIR0/1 are defined separately from their 64-bit counterpart which
2084 * allows them to assign the correct fieldoffset based on the endianness
2085 * handled in the field definitions.
2087 { .name = "MAIR0", .state = ARM_CP_STATE_AA32,
2088 .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0,
2089 .access = PL1_RW, .accessfn = access_tvm_trvm,
2090 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair0_s),
2091 offsetof(CPUARMState, cp15.mair0_ns) },
2092 .resetfn = arm_cp_reset_ignore },
2093 { .name = "MAIR1", .state = ARM_CP_STATE_AA32,
2094 .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 1,
2095 .access = PL1_RW, .accessfn = access_tvm_trvm,
2096 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair1_s),
2097 offsetof(CPUARMState, cp15.mair1_ns) },
2098 .resetfn = arm_cp_reset_ignore },
2099 { .name = "ISR_EL1", .state = ARM_CP_STATE_BOTH,
2100 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 1, .opc2 = 0,
2101 .type = ARM_CP_NO_RAW, .access = PL1_R, .readfn = isr_read },
2102 /* 32 bit ITLB invalidates */
2103 { .name = "ITLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 0,
2104 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2105 .writefn = tlbiall_write },
2106 { .name = "ITLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 1,
2107 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2108 .writefn = tlbimva_write },
2109 { .name = "ITLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 2,
2110 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2111 .writefn = tlbiasid_write },
2112 /* 32 bit DTLB invalidates */
2113 { .name = "DTLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 0,
2114 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2115 .writefn = tlbiall_write },
2116 { .name = "DTLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 1,
2117 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2118 .writefn = tlbimva_write },
2119 { .name = "DTLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 2,
2120 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2121 .writefn = tlbiasid_write },
2122 /* 32 bit TLB invalidates */
2123 { .name = "TLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
2124 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2125 .writefn = tlbiall_write },
2126 { .name = "TLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
2127 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2128 .writefn = tlbimva_write },
2129 { .name = "TLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
2130 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2131 .writefn = tlbiasid_write },
2132 { .name = "TLBIMVAA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
2133 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2134 .writefn = tlbimvaa_write },
2137 static const ARMCPRegInfo v7mp_cp_reginfo[] = {
2138 /* 32 bit TLB invalidates, Inner Shareable */
2139 { .name = "TLBIALLIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
2140 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2141 .writefn = tlbiall_is_write },
2142 { .name = "TLBIMVAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
2143 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2144 .writefn = tlbimva_is_write },
2145 { .name = "TLBIASIDIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
2146 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2147 .writefn = tlbiasid_is_write },
2148 { .name = "TLBIMVAAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
2149 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
2150 .writefn = tlbimvaa_is_write },
2153 static const ARMCPRegInfo pmovsset_cp_reginfo[] = {
2154 /* PMOVSSET is not implemented in v7 before v7ve */
2155 { .name = "PMOVSSET", .cp = 15, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 3,
2156 .access = PL0_RW, .accessfn = pmreg_access,
2157 .type = ARM_CP_ALIAS | ARM_CP_IO,
2158 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmovsr),
2159 .writefn = pmovsset_write,
2160 .raw_writefn = raw_write },
2161 { .name = "PMOVSSET_EL0", .state = ARM_CP_STATE_AA64,
2162 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 14, .opc2 = 3,
2163 .access = PL0_RW, .accessfn = pmreg_access,
2164 .type = ARM_CP_ALIAS | ARM_CP_IO,
2165 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmovsr),
2166 .writefn = pmovsset_write,
2167 .raw_writefn = raw_write },
2170 static void teecr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2171 uint64_t value)
2173 value &= 1;
2174 env->teecr = value;
2177 static CPAccessResult teecr_access(CPUARMState *env, const ARMCPRegInfo *ri,
2178 bool isread)
2181 * HSTR.TTEE only exists in v7A, not v8A, but v8A doesn't have T2EE
2182 * at all, so we don't need to check whether we're v8A.
2184 if (arm_current_el(env) < 2 && !arm_is_secure_below_el3(env) &&
2185 (env->cp15.hstr_el2 & HSTR_TTEE)) {
2186 return CP_ACCESS_TRAP_EL2;
2188 return CP_ACCESS_OK;
2191 static CPAccessResult teehbr_access(CPUARMState *env, const ARMCPRegInfo *ri,
2192 bool isread)
2194 if (arm_current_el(env) == 0 && (env->teecr & 1)) {
2195 return CP_ACCESS_TRAP;
2197 return teecr_access(env, ri, isread);
2200 static const ARMCPRegInfo t2ee_cp_reginfo[] = {
2201 { .name = "TEECR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 6, .opc2 = 0,
2202 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, teecr),
2203 .resetvalue = 0,
2204 .writefn = teecr_write, .accessfn = teecr_access },
2205 { .name = "TEEHBR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 6, .opc2 = 0,
2206 .access = PL0_RW, .fieldoffset = offsetof(CPUARMState, teehbr),
2207 .accessfn = teehbr_access, .resetvalue = 0 },
2210 static const ARMCPRegInfo v6k_cp_reginfo[] = {
2211 { .name = "TPIDR_EL0", .state = ARM_CP_STATE_AA64,
2212 .opc0 = 3, .opc1 = 3, .opc2 = 2, .crn = 13, .crm = 0,
2213 .access = PL0_RW,
2214 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[0]), .resetvalue = 0 },
2215 { .name = "TPIDRURW", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 2,
2216 .access = PL0_RW,
2217 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrurw_s),
2218 offsetoflow32(CPUARMState, cp15.tpidrurw_ns) },
2219 .resetfn = arm_cp_reset_ignore },
2220 { .name = "TPIDRRO_EL0", .state = ARM_CP_STATE_AA64,
2221 .opc0 = 3, .opc1 = 3, .opc2 = 3, .crn = 13, .crm = 0,
2222 .access = PL0_R|PL1_W,
2223 .fieldoffset = offsetof(CPUARMState, cp15.tpidrro_el[0]),
2224 .resetvalue = 0},
2225 { .name = "TPIDRURO", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 3,
2226 .access = PL0_R|PL1_W,
2227 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidruro_s),
2228 offsetoflow32(CPUARMState, cp15.tpidruro_ns) },
2229 .resetfn = arm_cp_reset_ignore },
2230 { .name = "TPIDR_EL1", .state = ARM_CP_STATE_AA64,
2231 .opc0 = 3, .opc1 = 0, .opc2 = 4, .crn = 13, .crm = 0,
2232 .access = PL1_RW,
2233 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[1]), .resetvalue = 0 },
2234 { .name = "TPIDRPRW", .opc1 = 0, .cp = 15, .crn = 13, .crm = 0, .opc2 = 4,
2235 .access = PL1_RW,
2236 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrprw_s),
2237 offsetoflow32(CPUARMState, cp15.tpidrprw_ns) },
2238 .resetvalue = 0 },
2241 #ifndef CONFIG_USER_ONLY
2243 static CPAccessResult gt_cntfrq_access(CPUARMState *env, const ARMCPRegInfo *ri,
2244 bool isread)
2246 /* CNTFRQ: not visible from PL0 if both PL0PCTEN and PL0VCTEN are zero.
2247 * Writable only at the highest implemented exception level.
2249 int el = arm_current_el(env);
2250 uint64_t hcr;
2251 uint32_t cntkctl;
2253 switch (el) {
2254 case 0:
2255 hcr = arm_hcr_el2_eff(env);
2256 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
2257 cntkctl = env->cp15.cnthctl_el2;
2258 } else {
2259 cntkctl = env->cp15.c14_cntkctl;
2261 if (!extract32(cntkctl, 0, 2)) {
2262 return CP_ACCESS_TRAP;
2264 break;
2265 case 1:
2266 if (!isread && ri->state == ARM_CP_STATE_AA32 &&
2267 arm_is_secure_below_el3(env)) {
2268 /* Accesses from 32-bit Secure EL1 UNDEF (*not* trap to EL3!) */
2269 return CP_ACCESS_TRAP_UNCATEGORIZED;
2271 break;
2272 case 2:
2273 case 3:
2274 break;
2277 if (!isread && el < arm_highest_el(env)) {
2278 return CP_ACCESS_TRAP_UNCATEGORIZED;
2281 return CP_ACCESS_OK;
2284 static CPAccessResult gt_counter_access(CPUARMState *env, int timeridx,
2285 bool isread)
2287 unsigned int cur_el = arm_current_el(env);
2288 bool has_el2 = arm_is_el2_enabled(env);
2289 uint64_t hcr = arm_hcr_el2_eff(env);
2291 switch (cur_el) {
2292 case 0:
2293 /* If HCR_EL2.<E2H,TGE> == '11': check CNTHCTL_EL2.EL0[PV]CTEN. */
2294 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
2295 return (extract32(env->cp15.cnthctl_el2, timeridx, 1)
2296 ? CP_ACCESS_OK : CP_ACCESS_TRAP_EL2);
2299 /* CNT[PV]CT: not visible from PL0 if EL0[PV]CTEN is zero */
2300 if (!extract32(env->cp15.c14_cntkctl, timeridx, 1)) {
2301 return CP_ACCESS_TRAP;
2304 /* If HCR_EL2.<E2H,TGE> == '10': check CNTHCTL_EL2.EL1PCTEN. */
2305 if (hcr & HCR_E2H) {
2306 if (timeridx == GTIMER_PHYS &&
2307 !extract32(env->cp15.cnthctl_el2, 10, 1)) {
2308 return CP_ACCESS_TRAP_EL2;
2310 } else {
2311 /* If HCR_EL2.<E2H> == 0: check CNTHCTL_EL2.EL1PCEN. */
2312 if (has_el2 && timeridx == GTIMER_PHYS &&
2313 !extract32(env->cp15.cnthctl_el2, 1, 1)) {
2314 return CP_ACCESS_TRAP_EL2;
2317 break;
2319 case 1:
2320 /* Check CNTHCTL_EL2.EL1PCTEN, which changes location based on E2H. */
2321 if (has_el2 && timeridx == GTIMER_PHYS &&
2322 (hcr & HCR_E2H
2323 ? !extract32(env->cp15.cnthctl_el2, 10, 1)
2324 : !extract32(env->cp15.cnthctl_el2, 0, 1))) {
2325 return CP_ACCESS_TRAP_EL2;
2327 break;
2329 return CP_ACCESS_OK;
2332 static CPAccessResult gt_timer_access(CPUARMState *env, int timeridx,
2333 bool isread)
2335 unsigned int cur_el = arm_current_el(env);
2336 bool has_el2 = arm_is_el2_enabled(env);
2337 uint64_t hcr = arm_hcr_el2_eff(env);
2339 switch (cur_el) {
2340 case 0:
2341 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
2342 /* If HCR_EL2.<E2H,TGE> == '11': check CNTHCTL_EL2.EL0[PV]TEN. */
2343 return (extract32(env->cp15.cnthctl_el2, 9 - timeridx, 1)
2344 ? CP_ACCESS_OK : CP_ACCESS_TRAP_EL2);
2348 * CNT[PV]_CVAL, CNT[PV]_CTL, CNT[PV]_TVAL: not visible from
2349 * EL0 if EL0[PV]TEN is zero.
2351 if (!extract32(env->cp15.c14_cntkctl, 9 - timeridx, 1)) {
2352 return CP_ACCESS_TRAP;
2354 /* fall through */
2356 case 1:
2357 if (has_el2 && timeridx == GTIMER_PHYS) {
2358 if (hcr & HCR_E2H) {
2359 /* If HCR_EL2.<E2H,TGE> == '10': check CNTHCTL_EL2.EL1PTEN. */
2360 if (!extract32(env->cp15.cnthctl_el2, 11, 1)) {
2361 return CP_ACCESS_TRAP_EL2;
2363 } else {
2364 /* If HCR_EL2.<E2H> == 0: check CNTHCTL_EL2.EL1PCEN. */
2365 if (!extract32(env->cp15.cnthctl_el2, 1, 1)) {
2366 return CP_ACCESS_TRAP_EL2;
2370 break;
2372 return CP_ACCESS_OK;
2375 static CPAccessResult gt_pct_access(CPUARMState *env,
2376 const ARMCPRegInfo *ri,
2377 bool isread)
2379 return gt_counter_access(env, GTIMER_PHYS, isread);
2382 static CPAccessResult gt_vct_access(CPUARMState *env,
2383 const ARMCPRegInfo *ri,
2384 bool isread)
2386 return gt_counter_access(env, GTIMER_VIRT, isread);
2389 static CPAccessResult gt_ptimer_access(CPUARMState *env, const ARMCPRegInfo *ri,
2390 bool isread)
2392 return gt_timer_access(env, GTIMER_PHYS, isread);
2395 static CPAccessResult gt_vtimer_access(CPUARMState *env, const ARMCPRegInfo *ri,
2396 bool isread)
2398 return gt_timer_access(env, GTIMER_VIRT, isread);
2401 static CPAccessResult gt_stimer_access(CPUARMState *env,
2402 const ARMCPRegInfo *ri,
2403 bool isread)
2405 /* The AArch64 register view of the secure physical timer is
2406 * always accessible from EL3, and configurably accessible from
2407 * Secure EL1.
2409 switch (arm_current_el(env)) {
2410 case 1:
2411 if (!arm_is_secure(env)) {
2412 return CP_ACCESS_TRAP;
2414 if (!(env->cp15.scr_el3 & SCR_ST)) {
2415 return CP_ACCESS_TRAP_EL3;
2417 return CP_ACCESS_OK;
2418 case 0:
2419 case 2:
2420 return CP_ACCESS_TRAP;
2421 case 3:
2422 return CP_ACCESS_OK;
2423 default:
2424 g_assert_not_reached();
2428 static uint64_t gt_get_countervalue(CPUARMState *env)
2430 ARMCPU *cpu = env_archcpu(env);
2432 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) / gt_cntfrq_period_ns(cpu);
2435 static void gt_recalc_timer(ARMCPU *cpu, int timeridx)
2437 ARMGenericTimer *gt = &cpu->env.cp15.c14_timer[timeridx];
2439 if (gt->ctl & 1) {
2440 /* Timer enabled: calculate and set current ISTATUS, irq, and
2441 * reset timer to when ISTATUS next has to change
2443 uint64_t offset = timeridx == GTIMER_VIRT ?
2444 cpu->env.cp15.cntvoff_el2 : 0;
2445 uint64_t count = gt_get_countervalue(&cpu->env);
2446 /* Note that this must be unsigned 64 bit arithmetic: */
2447 int istatus = count - offset >= gt->cval;
2448 uint64_t nexttick;
2449 int irqstate;
2451 gt->ctl = deposit32(gt->ctl, 2, 1, istatus);
2453 irqstate = (istatus && !(gt->ctl & 2));
2454 qemu_set_irq(cpu->gt_timer_outputs[timeridx], irqstate);
2456 if (istatus) {
2457 /* Next transition is when count rolls back over to zero */
2458 nexttick = UINT64_MAX;
2459 } else {
2460 /* Next transition is when we hit cval */
2461 nexttick = gt->cval + offset;
2463 /* Note that the desired next expiry time might be beyond the
2464 * signed-64-bit range of a QEMUTimer -- in this case we just
2465 * set the timer for as far in the future as possible. When the
2466 * timer expires we will reset the timer for any remaining period.
2468 if (nexttick > INT64_MAX / gt_cntfrq_period_ns(cpu)) {
2469 timer_mod_ns(cpu->gt_timer[timeridx], INT64_MAX);
2470 } else {
2471 timer_mod(cpu->gt_timer[timeridx], nexttick);
2473 trace_arm_gt_recalc(timeridx, irqstate, nexttick);
2474 } else {
2475 /* Timer disabled: ISTATUS and timer output always clear */
2476 gt->ctl &= ~4;
2477 qemu_set_irq(cpu->gt_timer_outputs[timeridx], 0);
2478 timer_del(cpu->gt_timer[timeridx]);
2479 trace_arm_gt_recalc_disabled(timeridx);
2483 static void gt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri,
2484 int timeridx)
2486 ARMCPU *cpu = env_archcpu(env);
2488 timer_del(cpu->gt_timer[timeridx]);
2491 static uint64_t gt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
2493 return gt_get_countervalue(env);
2496 static uint64_t gt_virt_cnt_offset(CPUARMState *env)
2498 uint64_t hcr;
2500 switch (arm_current_el(env)) {
2501 case 2:
2502 hcr = arm_hcr_el2_eff(env);
2503 if (hcr & HCR_E2H) {
2504 return 0;
2506 break;
2507 case 0:
2508 hcr = arm_hcr_el2_eff(env);
2509 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
2510 return 0;
2512 break;
2515 return env->cp15.cntvoff_el2;
2518 static uint64_t gt_virt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
2520 return gt_get_countervalue(env) - gt_virt_cnt_offset(env);
2523 static void gt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2524 int timeridx,
2525 uint64_t value)
2527 trace_arm_gt_cval_write(timeridx, value);
2528 env->cp15.c14_timer[timeridx].cval = value;
2529 gt_recalc_timer(env_archcpu(env), timeridx);
2532 static uint64_t gt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri,
2533 int timeridx)
2535 uint64_t offset = 0;
2537 switch (timeridx) {
2538 case GTIMER_VIRT:
2539 case GTIMER_HYPVIRT:
2540 offset = gt_virt_cnt_offset(env);
2541 break;
2544 return (uint32_t)(env->cp15.c14_timer[timeridx].cval -
2545 (gt_get_countervalue(env) - offset));
2548 static void gt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2549 int timeridx,
2550 uint64_t value)
2552 uint64_t offset = 0;
2554 switch (timeridx) {
2555 case GTIMER_VIRT:
2556 case GTIMER_HYPVIRT:
2557 offset = gt_virt_cnt_offset(env);
2558 break;
2561 trace_arm_gt_tval_write(timeridx, value);
2562 env->cp15.c14_timer[timeridx].cval = gt_get_countervalue(env) - offset +
2563 sextract64(value, 0, 32);
2564 gt_recalc_timer(env_archcpu(env), timeridx);
2567 static void gt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2568 int timeridx,
2569 uint64_t value)
2571 ARMCPU *cpu = env_archcpu(env);
2572 uint32_t oldval = env->cp15.c14_timer[timeridx].ctl;
2574 trace_arm_gt_ctl_write(timeridx, value);
2575 env->cp15.c14_timer[timeridx].ctl = deposit64(oldval, 0, 2, value);
2576 if ((oldval ^ value) & 1) {
2577 /* Enable toggled */
2578 gt_recalc_timer(cpu, timeridx);
2579 } else if ((oldval ^ value) & 2) {
2580 /* IMASK toggled: don't need to recalculate,
2581 * just set the interrupt line based on ISTATUS
2583 int irqstate = (oldval & 4) && !(value & 2);
2585 trace_arm_gt_imask_toggle(timeridx, irqstate);
2586 qemu_set_irq(cpu->gt_timer_outputs[timeridx], irqstate);
2590 static void gt_phys_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2592 gt_timer_reset(env, ri, GTIMER_PHYS);
2595 static void gt_phys_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2596 uint64_t value)
2598 gt_cval_write(env, ri, GTIMER_PHYS, value);
2601 static uint64_t gt_phys_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
2603 return gt_tval_read(env, ri, GTIMER_PHYS);
2606 static void gt_phys_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2607 uint64_t value)
2609 gt_tval_write(env, ri, GTIMER_PHYS, value);
2612 static void gt_phys_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2613 uint64_t value)
2615 gt_ctl_write(env, ri, GTIMER_PHYS, value);
2618 static int gt_phys_redir_timeridx(CPUARMState *env)
2620 switch (arm_mmu_idx(env)) {
2621 case ARMMMUIdx_E20_0:
2622 case ARMMMUIdx_E20_2:
2623 case ARMMMUIdx_E20_2_PAN:
2624 case ARMMMUIdx_SE20_0:
2625 case ARMMMUIdx_SE20_2:
2626 case ARMMMUIdx_SE20_2_PAN:
2627 return GTIMER_HYP;
2628 default:
2629 return GTIMER_PHYS;
2633 static int gt_virt_redir_timeridx(CPUARMState *env)
2635 switch (arm_mmu_idx(env)) {
2636 case ARMMMUIdx_E20_0:
2637 case ARMMMUIdx_E20_2:
2638 case ARMMMUIdx_E20_2_PAN:
2639 case ARMMMUIdx_SE20_0:
2640 case ARMMMUIdx_SE20_2:
2641 case ARMMMUIdx_SE20_2_PAN:
2642 return GTIMER_HYPVIRT;
2643 default:
2644 return GTIMER_VIRT;
2648 static uint64_t gt_phys_redir_cval_read(CPUARMState *env,
2649 const ARMCPRegInfo *ri)
2651 int timeridx = gt_phys_redir_timeridx(env);
2652 return env->cp15.c14_timer[timeridx].cval;
2655 static void gt_phys_redir_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2656 uint64_t value)
2658 int timeridx = gt_phys_redir_timeridx(env);
2659 gt_cval_write(env, ri, timeridx, value);
2662 static uint64_t gt_phys_redir_tval_read(CPUARMState *env,
2663 const ARMCPRegInfo *ri)
2665 int timeridx = gt_phys_redir_timeridx(env);
2666 return gt_tval_read(env, ri, timeridx);
2669 static void gt_phys_redir_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2670 uint64_t value)
2672 int timeridx = gt_phys_redir_timeridx(env);
2673 gt_tval_write(env, ri, timeridx, value);
2676 static uint64_t gt_phys_redir_ctl_read(CPUARMState *env,
2677 const ARMCPRegInfo *ri)
2679 int timeridx = gt_phys_redir_timeridx(env);
2680 return env->cp15.c14_timer[timeridx].ctl;
2683 static void gt_phys_redir_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2684 uint64_t value)
2686 int timeridx = gt_phys_redir_timeridx(env);
2687 gt_ctl_write(env, ri, timeridx, value);
2690 static void gt_virt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2692 gt_timer_reset(env, ri, GTIMER_VIRT);
2695 static void gt_virt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2696 uint64_t value)
2698 gt_cval_write(env, ri, GTIMER_VIRT, value);
2701 static uint64_t gt_virt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
2703 return gt_tval_read(env, ri, GTIMER_VIRT);
2706 static void gt_virt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2707 uint64_t value)
2709 gt_tval_write(env, ri, GTIMER_VIRT, value);
2712 static void gt_virt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2713 uint64_t value)
2715 gt_ctl_write(env, ri, GTIMER_VIRT, value);
2718 static void gt_cntvoff_write(CPUARMState *env, const ARMCPRegInfo *ri,
2719 uint64_t value)
2721 ARMCPU *cpu = env_archcpu(env);
2723 trace_arm_gt_cntvoff_write(value);
2724 raw_write(env, ri, value);
2725 gt_recalc_timer(cpu, GTIMER_VIRT);
2728 static uint64_t gt_virt_redir_cval_read(CPUARMState *env,
2729 const ARMCPRegInfo *ri)
2731 int timeridx = gt_virt_redir_timeridx(env);
2732 return env->cp15.c14_timer[timeridx].cval;
2735 static void gt_virt_redir_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2736 uint64_t value)
2738 int timeridx = gt_virt_redir_timeridx(env);
2739 gt_cval_write(env, ri, timeridx, value);
2742 static uint64_t gt_virt_redir_tval_read(CPUARMState *env,
2743 const ARMCPRegInfo *ri)
2745 int timeridx = gt_virt_redir_timeridx(env);
2746 return gt_tval_read(env, ri, timeridx);
2749 static void gt_virt_redir_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2750 uint64_t value)
2752 int timeridx = gt_virt_redir_timeridx(env);
2753 gt_tval_write(env, ri, timeridx, value);
2756 static uint64_t gt_virt_redir_ctl_read(CPUARMState *env,
2757 const ARMCPRegInfo *ri)
2759 int timeridx = gt_virt_redir_timeridx(env);
2760 return env->cp15.c14_timer[timeridx].ctl;
2763 static void gt_virt_redir_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2764 uint64_t value)
2766 int timeridx = gt_virt_redir_timeridx(env);
2767 gt_ctl_write(env, ri, timeridx, value);
2770 static void gt_hyp_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2772 gt_timer_reset(env, ri, GTIMER_HYP);
2775 static void gt_hyp_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2776 uint64_t value)
2778 gt_cval_write(env, ri, GTIMER_HYP, value);
2781 static uint64_t gt_hyp_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
2783 return gt_tval_read(env, ri, GTIMER_HYP);
2786 static void gt_hyp_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2787 uint64_t value)
2789 gt_tval_write(env, ri, GTIMER_HYP, value);
2792 static void gt_hyp_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2793 uint64_t value)
2795 gt_ctl_write(env, ri, GTIMER_HYP, value);
2798 static void gt_sec_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2800 gt_timer_reset(env, ri, GTIMER_SEC);
2803 static void gt_sec_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2804 uint64_t value)
2806 gt_cval_write(env, ri, GTIMER_SEC, value);
2809 static uint64_t gt_sec_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
2811 return gt_tval_read(env, ri, GTIMER_SEC);
2814 static void gt_sec_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2815 uint64_t value)
2817 gt_tval_write(env, ri, GTIMER_SEC, value);
2820 static void gt_sec_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2821 uint64_t value)
2823 gt_ctl_write(env, ri, GTIMER_SEC, value);
2826 static void gt_hv_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2828 gt_timer_reset(env, ri, GTIMER_HYPVIRT);
2831 static void gt_hv_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2832 uint64_t value)
2834 gt_cval_write(env, ri, GTIMER_HYPVIRT, value);
2837 static uint64_t gt_hv_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
2839 return gt_tval_read(env, ri, GTIMER_HYPVIRT);
2842 static void gt_hv_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
2843 uint64_t value)
2845 gt_tval_write(env, ri, GTIMER_HYPVIRT, value);
2848 static void gt_hv_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
2849 uint64_t value)
2851 gt_ctl_write(env, ri, GTIMER_HYPVIRT, value);
2854 void arm_gt_ptimer_cb(void *opaque)
2856 ARMCPU *cpu = opaque;
2858 gt_recalc_timer(cpu, GTIMER_PHYS);
2861 void arm_gt_vtimer_cb(void *opaque)
2863 ARMCPU *cpu = opaque;
2865 gt_recalc_timer(cpu, GTIMER_VIRT);
2868 void arm_gt_htimer_cb(void *opaque)
2870 ARMCPU *cpu = opaque;
2872 gt_recalc_timer(cpu, GTIMER_HYP);
2875 void arm_gt_stimer_cb(void *opaque)
2877 ARMCPU *cpu = opaque;
2879 gt_recalc_timer(cpu, GTIMER_SEC);
2882 void arm_gt_hvtimer_cb(void *opaque)
2884 ARMCPU *cpu = opaque;
2886 gt_recalc_timer(cpu, GTIMER_HYPVIRT);
2889 static void arm_gt_cntfrq_reset(CPUARMState *env, const ARMCPRegInfo *opaque)
2891 ARMCPU *cpu = env_archcpu(env);
2893 cpu->env.cp15.c14_cntfrq = cpu->gt_cntfrq_hz;
2896 static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
2897 /* Note that CNTFRQ is purely reads-as-written for the benefit
2898 * of software; writing it doesn't actually change the timer frequency.
2899 * Our reset value matches the fixed frequency we implement the timer at.
2901 { .name = "CNTFRQ", .cp = 15, .crn = 14, .crm = 0, .opc1 = 0, .opc2 = 0,
2902 .type = ARM_CP_ALIAS,
2903 .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
2904 .fieldoffset = offsetoflow32(CPUARMState, cp15.c14_cntfrq),
2906 { .name = "CNTFRQ_EL0", .state = ARM_CP_STATE_AA64,
2907 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 0,
2908 .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
2909 .fieldoffset = offsetof(CPUARMState, cp15.c14_cntfrq),
2910 .resetfn = arm_gt_cntfrq_reset,
2912 /* overall control: mostly access permissions */
2913 { .name = "CNTKCTL", .state = ARM_CP_STATE_BOTH,
2914 .opc0 = 3, .opc1 = 0, .crn = 14, .crm = 1, .opc2 = 0,
2915 .access = PL1_RW,
2916 .fieldoffset = offsetof(CPUARMState, cp15.c14_cntkctl),
2917 .resetvalue = 0,
2919 /* per-timer control */
2920 { .name = "CNTP_CTL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
2921 .secure = ARM_CP_SECSTATE_NS,
2922 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
2923 .accessfn = gt_ptimer_access,
2924 .fieldoffset = offsetoflow32(CPUARMState,
2925 cp15.c14_timer[GTIMER_PHYS].ctl),
2926 .readfn = gt_phys_redir_ctl_read, .raw_readfn = raw_read,
2927 .writefn = gt_phys_redir_ctl_write, .raw_writefn = raw_write,
2929 { .name = "CNTP_CTL_S",
2930 .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
2931 .secure = ARM_CP_SECSTATE_S,
2932 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
2933 .accessfn = gt_ptimer_access,
2934 .fieldoffset = offsetoflow32(CPUARMState,
2935 cp15.c14_timer[GTIMER_SEC].ctl),
2936 .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
2938 { .name = "CNTP_CTL_EL0", .state = ARM_CP_STATE_AA64,
2939 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 1,
2940 .type = ARM_CP_IO, .access = PL0_RW,
2941 .accessfn = gt_ptimer_access,
2942 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].ctl),
2943 .resetvalue = 0,
2944 .readfn = gt_phys_redir_ctl_read, .raw_readfn = raw_read,
2945 .writefn = gt_phys_redir_ctl_write, .raw_writefn = raw_write,
2947 { .name = "CNTV_CTL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 1,
2948 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL0_RW,
2949 .accessfn = gt_vtimer_access,
2950 .fieldoffset = offsetoflow32(CPUARMState,
2951 cp15.c14_timer[GTIMER_VIRT].ctl),
2952 .readfn = gt_virt_redir_ctl_read, .raw_readfn = raw_read,
2953 .writefn = gt_virt_redir_ctl_write, .raw_writefn = raw_write,
2955 { .name = "CNTV_CTL_EL0", .state = ARM_CP_STATE_AA64,
2956 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 1,
2957 .type = ARM_CP_IO, .access = PL0_RW,
2958 .accessfn = gt_vtimer_access,
2959 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].ctl),
2960 .resetvalue = 0,
2961 .readfn = gt_virt_redir_ctl_read, .raw_readfn = raw_read,
2962 .writefn = gt_virt_redir_ctl_write, .raw_writefn = raw_write,
2964 /* TimerValue views: a 32 bit downcounting view of the underlying state */
2965 { .name = "CNTP_TVAL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
2966 .secure = ARM_CP_SECSTATE_NS,
2967 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
2968 .accessfn = gt_ptimer_access,
2969 .readfn = gt_phys_redir_tval_read, .writefn = gt_phys_redir_tval_write,
2971 { .name = "CNTP_TVAL_S",
2972 .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
2973 .secure = ARM_CP_SECSTATE_S,
2974 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
2975 .accessfn = gt_ptimer_access,
2976 .readfn = gt_sec_tval_read, .writefn = gt_sec_tval_write,
2978 { .name = "CNTP_TVAL_EL0", .state = ARM_CP_STATE_AA64,
2979 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 0,
2980 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
2981 .accessfn = gt_ptimer_access, .resetfn = gt_phys_timer_reset,
2982 .readfn = gt_phys_redir_tval_read, .writefn = gt_phys_redir_tval_write,
2984 { .name = "CNTV_TVAL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 0,
2985 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
2986 .accessfn = gt_vtimer_access,
2987 .readfn = gt_virt_redir_tval_read, .writefn = gt_virt_redir_tval_write,
2989 { .name = "CNTV_TVAL_EL0", .state = ARM_CP_STATE_AA64,
2990 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 0,
2991 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL0_RW,
2992 .accessfn = gt_vtimer_access, .resetfn = gt_virt_timer_reset,
2993 .readfn = gt_virt_redir_tval_read, .writefn = gt_virt_redir_tval_write,
2995 /* The counter itself */
2996 { .name = "CNTPCT", .cp = 15, .crm = 14, .opc1 = 0,
2997 .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
2998 .accessfn = gt_pct_access,
2999 .readfn = gt_cnt_read, .resetfn = arm_cp_reset_ignore,
3001 { .name = "CNTPCT_EL0", .state = ARM_CP_STATE_AA64,
3002 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 1,
3003 .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
3004 .accessfn = gt_pct_access, .readfn = gt_cnt_read,
3006 { .name = "CNTVCT", .cp = 15, .crm = 14, .opc1 = 1,
3007 .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
3008 .accessfn = gt_vct_access,
3009 .readfn = gt_virt_cnt_read, .resetfn = arm_cp_reset_ignore,
3011 { .name = "CNTVCT_EL0", .state = ARM_CP_STATE_AA64,
3012 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 2,
3013 .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
3014 .accessfn = gt_vct_access, .readfn = gt_virt_cnt_read,
3016 /* Comparison value, indicating when the timer goes off */
3017 { .name = "CNTP_CVAL", .cp = 15, .crm = 14, .opc1 = 2,
3018 .secure = ARM_CP_SECSTATE_NS,
3019 .access = PL0_RW,
3020 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
3021 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
3022 .accessfn = gt_ptimer_access,
3023 .readfn = gt_phys_redir_cval_read, .raw_readfn = raw_read,
3024 .writefn = gt_phys_redir_cval_write, .raw_writefn = raw_write,
3026 { .name = "CNTP_CVAL_S", .cp = 15, .crm = 14, .opc1 = 2,
3027 .secure = ARM_CP_SECSTATE_S,
3028 .access = PL0_RW,
3029 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
3030 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
3031 .accessfn = gt_ptimer_access,
3032 .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
3034 { .name = "CNTP_CVAL_EL0", .state = ARM_CP_STATE_AA64,
3035 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 2,
3036 .access = PL0_RW,
3037 .type = ARM_CP_IO,
3038 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
3039 .resetvalue = 0, .accessfn = gt_ptimer_access,
3040 .readfn = gt_phys_redir_cval_read, .raw_readfn = raw_read,
3041 .writefn = gt_phys_redir_cval_write, .raw_writefn = raw_write,
3043 { .name = "CNTV_CVAL", .cp = 15, .crm = 14, .opc1 = 3,
3044 .access = PL0_RW,
3045 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
3046 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
3047 .accessfn = gt_vtimer_access,
3048 .readfn = gt_virt_redir_cval_read, .raw_readfn = raw_read,
3049 .writefn = gt_virt_redir_cval_write, .raw_writefn = raw_write,
3051 { .name = "CNTV_CVAL_EL0", .state = ARM_CP_STATE_AA64,
3052 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 2,
3053 .access = PL0_RW,
3054 .type = ARM_CP_IO,
3055 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
3056 .resetvalue = 0, .accessfn = gt_vtimer_access,
3057 .readfn = gt_virt_redir_cval_read, .raw_readfn = raw_read,
3058 .writefn = gt_virt_redir_cval_write, .raw_writefn = raw_write,
3060 /* Secure timer -- this is actually restricted to only EL3
3061 * and configurably Secure-EL1 via the accessfn.
3063 { .name = "CNTPS_TVAL_EL1", .state = ARM_CP_STATE_AA64,
3064 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 0,
3065 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW,
3066 .accessfn = gt_stimer_access,
3067 .readfn = gt_sec_tval_read,
3068 .writefn = gt_sec_tval_write,
3069 .resetfn = gt_sec_timer_reset,
3071 { .name = "CNTPS_CTL_EL1", .state = ARM_CP_STATE_AA64,
3072 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 1,
3073 .type = ARM_CP_IO, .access = PL1_RW,
3074 .accessfn = gt_stimer_access,
3075 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].ctl),
3076 .resetvalue = 0,
3077 .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
3079 { .name = "CNTPS_CVAL_EL1", .state = ARM_CP_STATE_AA64,
3080 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 2,
3081 .type = ARM_CP_IO, .access = PL1_RW,
3082 .accessfn = gt_stimer_access,
3083 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
3084 .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
3088 static CPAccessResult e2h_access(CPUARMState *env, const ARMCPRegInfo *ri,
3089 bool isread)
3091 if (!(arm_hcr_el2_eff(env) & HCR_E2H)) {
3092 return CP_ACCESS_TRAP;
3094 return CP_ACCESS_OK;
3097 #else
3099 /* In user-mode most of the generic timer registers are inaccessible
3100 * however modern kernels (4.12+) allow access to cntvct_el0
3103 static uint64_t gt_virt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
3105 ARMCPU *cpu = env_archcpu(env);
3107 /* Currently we have no support for QEMUTimer in linux-user so we
3108 * can't call gt_get_countervalue(env), instead we directly
3109 * call the lower level functions.
3111 return cpu_get_clock() / gt_cntfrq_period_ns(cpu);
3114 static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
3115 { .name = "CNTFRQ_EL0", .state = ARM_CP_STATE_AA64,
3116 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 0,
3117 .type = ARM_CP_CONST, .access = PL0_R /* no PL1_RW in linux-user */,
3118 .fieldoffset = offsetof(CPUARMState, cp15.c14_cntfrq),
3119 .resetvalue = NANOSECONDS_PER_SECOND / GTIMER_SCALE,
3121 { .name = "CNTVCT_EL0", .state = ARM_CP_STATE_AA64,
3122 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 2,
3123 .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
3124 .readfn = gt_virt_cnt_read,
3128 #endif
3130 static void par_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
3132 if (arm_feature(env, ARM_FEATURE_LPAE)) {
3133 raw_write(env, ri, value);
3134 } else if (arm_feature(env, ARM_FEATURE_V7)) {
3135 raw_write(env, ri, value & 0xfffff6ff);
3136 } else {
3137 raw_write(env, ri, value & 0xfffff1ff);
3141 #ifndef CONFIG_USER_ONLY
3142 /* get_phys_addr() isn't present for user-mode-only targets */
3144 static CPAccessResult ats_access(CPUARMState *env, const ARMCPRegInfo *ri,
3145 bool isread)
3147 if (ri->opc2 & 4) {
3148 /* The ATS12NSO* operations must trap to EL3 or EL2 if executed in
3149 * Secure EL1 (which can only happen if EL3 is AArch64).
3150 * They are simply UNDEF if executed from NS EL1.
3151 * They function normally from EL2 or EL3.
3153 if (arm_current_el(env) == 1) {
3154 if (arm_is_secure_below_el3(env)) {
3155 if (env->cp15.scr_el3 & SCR_EEL2) {
3156 return CP_ACCESS_TRAP_UNCATEGORIZED_EL2;
3158 return CP_ACCESS_TRAP_UNCATEGORIZED_EL3;
3160 return CP_ACCESS_TRAP_UNCATEGORIZED;
3163 return CP_ACCESS_OK;
3166 #ifdef CONFIG_TCG
3167 static uint64_t do_ats_write(CPUARMState *env, uint64_t value,
3168 MMUAccessType access_type, ARMMMUIdx mmu_idx)
3170 hwaddr phys_addr;
3171 target_ulong page_size;
3172 int prot;
3173 bool ret;
3174 uint64_t par64;
3175 bool format64 = false;
3176 MemTxAttrs attrs = {};
3177 ARMMMUFaultInfo fi = {};
3178 ARMCacheAttrs cacheattrs = {};
3180 ret = get_phys_addr(env, value, access_type, mmu_idx, &phys_addr, &attrs,
3181 &prot, &page_size, &fi, &cacheattrs);
3184 * ATS operations only do S1 or S1+S2 translations, so we never
3185 * have to deal with the ARMCacheAttrs format for S2 only.
3187 assert(!cacheattrs.is_s2_format);
3189 if (ret) {
3191 * Some kinds of translation fault must cause exceptions rather
3192 * than being reported in the PAR.
3194 int current_el = arm_current_el(env);
3195 int target_el;
3196 uint32_t syn, fsr, fsc;
3197 bool take_exc = false;
3199 if (fi.s1ptw && current_el == 1
3200 && arm_mmu_idx_is_stage1_of_2(mmu_idx)) {
3202 * Synchronous stage 2 fault on an access made as part of the
3203 * translation table walk for AT S1E0* or AT S1E1* insn
3204 * executed from NS EL1. If this is a synchronous external abort
3205 * and SCR_EL3.EA == 1, then we take a synchronous external abort
3206 * to EL3. Otherwise the fault is taken as an exception to EL2,
3207 * and HPFAR_EL2 holds the faulting IPA.
3209 if (fi.type == ARMFault_SyncExternalOnWalk &&
3210 (env->cp15.scr_el3 & SCR_EA)) {
3211 target_el = 3;
3212 } else {
3213 env->cp15.hpfar_el2 = extract64(fi.s2addr, 12, 47) << 4;
3214 if (arm_is_secure_below_el3(env) && fi.s1ns) {
3215 env->cp15.hpfar_el2 |= HPFAR_NS;
3217 target_el = 2;
3219 take_exc = true;
3220 } else if (fi.type == ARMFault_SyncExternalOnWalk) {
3222 * Synchronous external aborts during a translation table walk
3223 * are taken as Data Abort exceptions.
3225 if (fi.stage2) {
3226 if (current_el == 3) {
3227 target_el = 3;
3228 } else {
3229 target_el = 2;
3231 } else {
3232 target_el = exception_target_el(env);
3234 take_exc = true;
3237 if (take_exc) {
3238 /* Construct FSR and FSC using same logic as arm_deliver_fault() */
3239 if (target_el == 2 || arm_el_is_aa64(env, target_el) ||
3240 arm_s1_regime_using_lpae_format(env, mmu_idx)) {
3241 fsr = arm_fi_to_lfsc(&fi);
3242 fsc = extract32(fsr, 0, 6);
3243 } else {
3244 fsr = arm_fi_to_sfsc(&fi);
3245 fsc = 0x3f;
3248 * Report exception with ESR indicating a fault due to a
3249 * translation table walk for a cache maintenance instruction.
3251 syn = syn_data_abort_no_iss(current_el == target_el, 0,
3252 fi.ea, 1, fi.s1ptw, 1, fsc);
3253 env->exception.vaddress = value;
3254 env->exception.fsr = fsr;
3255 raise_exception(env, EXCP_DATA_ABORT, syn, target_el);
3259 if (is_a64(env)) {
3260 format64 = true;
3261 } else if (arm_feature(env, ARM_FEATURE_LPAE)) {
3263 * ATS1Cxx:
3264 * * TTBCR.EAE determines whether the result is returned using the
3265 * 32-bit or the 64-bit PAR format
3266 * * Instructions executed in Hyp mode always use the 64bit format
3268 * ATS1S2NSOxx uses the 64bit format if any of the following is true:
3269 * * The Non-secure TTBCR.EAE bit is set to 1
3270 * * The implementation includes EL2, and the value of HCR.VM is 1
3272 * (Note that HCR.DC makes HCR.VM behave as if it is 1.)
3274 * ATS1Hx always uses the 64bit format.
3276 format64 = arm_s1_regime_using_lpae_format(env, mmu_idx);
3278 if (arm_feature(env, ARM_FEATURE_EL2)) {
3279 if (mmu_idx == ARMMMUIdx_E10_0 ||
3280 mmu_idx == ARMMMUIdx_E10_1 ||
3281 mmu_idx == ARMMMUIdx_E10_1_PAN) {
3282 format64 |= env->cp15.hcr_el2 & (HCR_VM | HCR_DC);
3283 } else {
3284 format64 |= arm_current_el(env) == 2;
3289 if (format64) {
3290 /* Create a 64-bit PAR */
3291 par64 = (1 << 11); /* LPAE bit always set */
3292 if (!ret) {
3293 par64 |= phys_addr & ~0xfffULL;
3294 if (!attrs.secure) {
3295 par64 |= (1 << 9); /* NS */
3297 par64 |= (uint64_t)cacheattrs.attrs << 56; /* ATTR */
3298 par64 |= cacheattrs.shareability << 7; /* SH */
3299 } else {
3300 uint32_t fsr = arm_fi_to_lfsc(&fi);
3302 par64 |= 1; /* F */
3303 par64 |= (fsr & 0x3f) << 1; /* FS */
3304 if (fi.stage2) {
3305 par64 |= (1 << 9); /* S */
3307 if (fi.s1ptw) {
3308 par64 |= (1 << 8); /* PTW */
3311 } else {
3312 /* fsr is a DFSR/IFSR value for the short descriptor
3313 * translation table format (with WnR always clear).
3314 * Convert it to a 32-bit PAR.
3316 if (!ret) {
3317 /* We do not set any attribute bits in the PAR */
3318 if (page_size == (1 << 24)
3319 && arm_feature(env, ARM_FEATURE_V7)) {
3320 par64 = (phys_addr & 0xff000000) | (1 << 1);
3321 } else {
3322 par64 = phys_addr & 0xfffff000;
3324 if (!attrs.secure) {
3325 par64 |= (1 << 9); /* NS */
3327 } else {
3328 uint32_t fsr = arm_fi_to_sfsc(&fi);
3330 par64 = ((fsr & (1 << 10)) >> 5) | ((fsr & (1 << 12)) >> 6) |
3331 ((fsr & 0xf) << 1) | 1;
3334 return par64;
3336 #endif /* CONFIG_TCG */
3338 static void ats_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
3340 #ifdef CONFIG_TCG
3341 MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
3342 uint64_t par64;
3343 ARMMMUIdx mmu_idx;
3344 int el = arm_current_el(env);
3345 bool secure = arm_is_secure_below_el3(env);
3347 switch (ri->opc2 & 6) {
3348 case 0:
3349 /* stage 1 current state PL1: ATS1CPR, ATS1CPW, ATS1CPRP, ATS1CPWP */
3350 switch (el) {
3351 case 3:
3352 mmu_idx = ARMMMUIdx_SE3;
3353 break;
3354 case 2:
3355 g_assert(!secure); /* ARMv8.4-SecEL2 is 64-bit only */
3356 /* fall through */
3357 case 1:
3358 if (ri->crm == 9 && (env->uncached_cpsr & CPSR_PAN)) {
3359 mmu_idx = (secure ? ARMMMUIdx_Stage1_SE1_PAN
3360 : ARMMMUIdx_Stage1_E1_PAN);
3361 } else {
3362 mmu_idx = secure ? ARMMMUIdx_Stage1_SE1 : ARMMMUIdx_Stage1_E1;
3364 break;
3365 default:
3366 g_assert_not_reached();
3368 break;
3369 case 2:
3370 /* stage 1 current state PL0: ATS1CUR, ATS1CUW */
3371 switch (el) {
3372 case 3:
3373 mmu_idx = ARMMMUIdx_SE10_0;
3374 break;
3375 case 2:
3376 g_assert(!secure); /* ARMv8.4-SecEL2 is 64-bit only */
3377 mmu_idx = ARMMMUIdx_Stage1_E0;
3378 break;
3379 case 1:
3380 mmu_idx = secure ? ARMMMUIdx_Stage1_SE0 : ARMMMUIdx_Stage1_E0;
3381 break;
3382 default:
3383 g_assert_not_reached();
3385 break;
3386 case 4:
3387 /* stage 1+2 NonSecure PL1: ATS12NSOPR, ATS12NSOPW */
3388 mmu_idx = ARMMMUIdx_E10_1;
3389 break;
3390 case 6:
3391 /* stage 1+2 NonSecure PL0: ATS12NSOUR, ATS12NSOUW */
3392 mmu_idx = ARMMMUIdx_E10_0;
3393 break;
3394 default:
3395 g_assert_not_reached();
3398 par64 = do_ats_write(env, value, access_type, mmu_idx);
3400 A32_BANKED_CURRENT_REG_SET(env, par, par64);
3401 #else
3402 /* Handled by hardware accelerator. */
3403 g_assert_not_reached();
3404 #endif /* CONFIG_TCG */
3407 static void ats1h_write(CPUARMState *env, const ARMCPRegInfo *ri,
3408 uint64_t value)
3410 #ifdef CONFIG_TCG
3411 MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
3412 uint64_t par64;
3414 par64 = do_ats_write(env, value, access_type, ARMMMUIdx_E2);
3416 A32_BANKED_CURRENT_REG_SET(env, par, par64);
3417 #else
3418 /* Handled by hardware accelerator. */
3419 g_assert_not_reached();
3420 #endif /* CONFIG_TCG */
3423 static CPAccessResult at_s1e2_access(CPUARMState *env, const ARMCPRegInfo *ri,
3424 bool isread)
3426 if (arm_current_el(env) == 3 &&
3427 !(env->cp15.scr_el3 & (SCR_NS | SCR_EEL2))) {
3428 return CP_ACCESS_TRAP;
3430 return CP_ACCESS_OK;
3433 static void ats_write64(CPUARMState *env, const ARMCPRegInfo *ri,
3434 uint64_t value)
3436 #ifdef CONFIG_TCG
3437 MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
3438 ARMMMUIdx mmu_idx;
3439 int secure = arm_is_secure_below_el3(env);
3441 switch (ri->opc2 & 6) {
3442 case 0:
3443 switch (ri->opc1) {
3444 case 0: /* AT S1E1R, AT S1E1W, AT S1E1RP, AT S1E1WP */
3445 if (ri->crm == 9 && (env->pstate & PSTATE_PAN)) {
3446 mmu_idx = (secure ? ARMMMUIdx_Stage1_SE1_PAN
3447 : ARMMMUIdx_Stage1_E1_PAN);
3448 } else {
3449 mmu_idx = secure ? ARMMMUIdx_Stage1_SE1 : ARMMMUIdx_Stage1_E1;
3451 break;
3452 case 4: /* AT S1E2R, AT S1E2W */
3453 mmu_idx = secure ? ARMMMUIdx_SE2 : ARMMMUIdx_E2;
3454 break;
3455 case 6: /* AT S1E3R, AT S1E3W */
3456 mmu_idx = ARMMMUIdx_SE3;
3457 break;
3458 default:
3459 g_assert_not_reached();
3461 break;
3462 case 2: /* AT S1E0R, AT S1E0W */
3463 mmu_idx = secure ? ARMMMUIdx_Stage1_SE0 : ARMMMUIdx_Stage1_E0;
3464 break;
3465 case 4: /* AT S12E1R, AT S12E1W */
3466 mmu_idx = secure ? ARMMMUIdx_SE10_1 : ARMMMUIdx_E10_1;
3467 break;
3468 case 6: /* AT S12E0R, AT S12E0W */
3469 mmu_idx = secure ? ARMMMUIdx_SE10_0 : ARMMMUIdx_E10_0;
3470 break;
3471 default:
3472 g_assert_not_reached();
3475 env->cp15.par_el[1] = do_ats_write(env, value, access_type, mmu_idx);
3476 #else
3477 /* Handled by hardware accelerator. */
3478 g_assert_not_reached();
3479 #endif /* CONFIG_TCG */
3481 #endif
3483 static const ARMCPRegInfo vapa_cp_reginfo[] = {
3484 { .name = "PAR", .cp = 15, .crn = 7, .crm = 4, .opc1 = 0, .opc2 = 0,
3485 .access = PL1_RW, .resetvalue = 0,
3486 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.par_s),
3487 offsetoflow32(CPUARMState, cp15.par_ns) },
3488 .writefn = par_write },
3489 #ifndef CONFIG_USER_ONLY
3490 /* This underdecoding is safe because the reginfo is NO_RAW. */
3491 { .name = "ATS", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = CP_ANY,
3492 .access = PL1_W, .accessfn = ats_access,
3493 .writefn = ats_write, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC },
3494 #endif
3497 /* Return basic MPU access permission bits. */
3498 static uint32_t simple_mpu_ap_bits(uint32_t val)
3500 uint32_t ret;
3501 uint32_t mask;
3502 int i;
3503 ret = 0;
3504 mask = 3;
3505 for (i = 0; i < 16; i += 2) {
3506 ret |= (val >> i) & mask;
3507 mask <<= 2;
3509 return ret;
3512 /* Pad basic MPU access permission bits to extended format. */
3513 static uint32_t extended_mpu_ap_bits(uint32_t val)
3515 uint32_t ret;
3516 uint32_t mask;
3517 int i;
3518 ret = 0;
3519 mask = 3;
3520 for (i = 0; i < 16; i += 2) {
3521 ret |= (val & mask) << i;
3522 mask <<= 2;
3524 return ret;
3527 static void pmsav5_data_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
3528 uint64_t value)
3530 env->cp15.pmsav5_data_ap = extended_mpu_ap_bits(value);
3533 static uint64_t pmsav5_data_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
3535 return simple_mpu_ap_bits(env->cp15.pmsav5_data_ap);
3538 static void pmsav5_insn_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
3539 uint64_t value)
3541 env->cp15.pmsav5_insn_ap = extended_mpu_ap_bits(value);
3544 static uint64_t pmsav5_insn_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
3546 return simple_mpu_ap_bits(env->cp15.pmsav5_insn_ap);
3549 static uint64_t pmsav7_read(CPUARMState *env, const ARMCPRegInfo *ri)
3551 uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
3553 if (!u32p) {
3554 return 0;
3557 u32p += env->pmsav7.rnr[M_REG_NS];
3558 return *u32p;
3561 static void pmsav7_write(CPUARMState *env, const ARMCPRegInfo *ri,
3562 uint64_t value)
3564 ARMCPU *cpu = env_archcpu(env);
3565 uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
3567 if (!u32p) {
3568 return;
3571 u32p += env->pmsav7.rnr[M_REG_NS];
3572 tlb_flush(CPU(cpu)); /* Mappings may have changed - purge! */
3573 *u32p = value;
3576 static void pmsav7_rgnr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3577 uint64_t value)
3579 ARMCPU *cpu = env_archcpu(env);
3580 uint32_t nrgs = cpu->pmsav7_dregion;
3582 if (value >= nrgs) {
3583 qemu_log_mask(LOG_GUEST_ERROR,
3584 "PMSAv7 RGNR write >= # supported regions, %" PRIu32
3585 " > %" PRIu32 "\n", (uint32_t)value, nrgs);
3586 return;
3589 raw_write(env, ri, value);
3592 static const ARMCPRegInfo pmsav7_cp_reginfo[] = {
3593 /* Reset for all these registers is handled in arm_cpu_reset(),
3594 * because the PMSAv7 is also used by M-profile CPUs, which do
3595 * not register cpregs but still need the state to be reset.
3597 { .name = "DRBAR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 0,
3598 .access = PL1_RW, .type = ARM_CP_NO_RAW,
3599 .fieldoffset = offsetof(CPUARMState, pmsav7.drbar),
3600 .readfn = pmsav7_read, .writefn = pmsav7_write,
3601 .resetfn = arm_cp_reset_ignore },
3602 { .name = "DRSR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 2,
3603 .access = PL1_RW, .type = ARM_CP_NO_RAW,
3604 .fieldoffset = offsetof(CPUARMState, pmsav7.drsr),
3605 .readfn = pmsav7_read, .writefn = pmsav7_write,
3606 .resetfn = arm_cp_reset_ignore },
3607 { .name = "DRACR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 4,
3608 .access = PL1_RW, .type = ARM_CP_NO_RAW,
3609 .fieldoffset = offsetof(CPUARMState, pmsav7.dracr),
3610 .readfn = pmsav7_read, .writefn = pmsav7_write,
3611 .resetfn = arm_cp_reset_ignore },
3612 { .name = "RGNR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 2, .opc2 = 0,
3613 .access = PL1_RW,
3614 .fieldoffset = offsetof(CPUARMState, pmsav7.rnr[M_REG_NS]),
3615 .writefn = pmsav7_rgnr_write,
3616 .resetfn = arm_cp_reset_ignore },
3619 static const ARMCPRegInfo pmsav5_cp_reginfo[] = {
3620 { .name = "DATA_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
3621 .access = PL1_RW, .type = ARM_CP_ALIAS,
3622 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
3623 .readfn = pmsav5_data_ap_read, .writefn = pmsav5_data_ap_write, },
3624 { .name = "INSN_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
3625 .access = PL1_RW, .type = ARM_CP_ALIAS,
3626 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
3627 .readfn = pmsav5_insn_ap_read, .writefn = pmsav5_insn_ap_write, },
3628 { .name = "DATA_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 2,
3629 .access = PL1_RW,
3630 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
3631 .resetvalue = 0, },
3632 { .name = "INSN_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 3,
3633 .access = PL1_RW,
3634 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
3635 .resetvalue = 0, },
3636 { .name = "DCACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
3637 .access = PL1_RW,
3638 .fieldoffset = offsetof(CPUARMState, cp15.c2_data), .resetvalue = 0, },
3639 { .name = "ICACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 1,
3640 .access = PL1_RW,
3641 .fieldoffset = offsetof(CPUARMState, cp15.c2_insn), .resetvalue = 0, },
3642 /* Protection region base and size registers */
3643 { .name = "946_PRBS0", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0,
3644 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3645 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[0]) },
3646 { .name = "946_PRBS1", .cp = 15, .crn = 6, .crm = 1, .opc1 = 0,
3647 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3648 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[1]) },
3649 { .name = "946_PRBS2", .cp = 15, .crn = 6, .crm = 2, .opc1 = 0,
3650 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3651 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[2]) },
3652 { .name = "946_PRBS3", .cp = 15, .crn = 6, .crm = 3, .opc1 = 0,
3653 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3654 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[3]) },
3655 { .name = "946_PRBS4", .cp = 15, .crn = 6, .crm = 4, .opc1 = 0,
3656 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3657 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[4]) },
3658 { .name = "946_PRBS5", .cp = 15, .crn = 6, .crm = 5, .opc1 = 0,
3659 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3660 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[5]) },
3661 { .name = "946_PRBS6", .cp = 15, .crn = 6, .crm = 6, .opc1 = 0,
3662 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3663 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[6]) },
3664 { .name = "946_PRBS7", .cp = 15, .crn = 6, .crm = 7, .opc1 = 0,
3665 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
3666 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[7]) },
3669 static void vmsa_ttbcr_raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
3670 uint64_t value)
3672 TCR *tcr = raw_ptr(env, ri);
3673 int maskshift = extract32(value, 0, 3);
3675 if (!arm_feature(env, ARM_FEATURE_V8)) {
3676 if (arm_feature(env, ARM_FEATURE_LPAE) && (value & TTBCR_EAE)) {
3677 /* Pre ARMv8 bits [21:19], [15:14] and [6:3] are UNK/SBZP when
3678 * using Long-desciptor translation table format */
3679 value &= ~((7 << 19) | (3 << 14) | (0xf << 3));
3680 } else if (arm_feature(env, ARM_FEATURE_EL3)) {
3681 /* In an implementation that includes the Security Extensions
3682 * TTBCR has additional fields PD0 [4] and PD1 [5] for
3683 * Short-descriptor translation table format.
3685 value &= TTBCR_PD1 | TTBCR_PD0 | TTBCR_N;
3686 } else {
3687 value &= TTBCR_N;
3691 /* Update the masks corresponding to the TCR bank being written
3692 * Note that we always calculate mask and base_mask, but
3693 * they are only used for short-descriptor tables (ie if EAE is 0);
3694 * for long-descriptor tables the TCR fields are used differently
3695 * and the mask and base_mask values are meaningless.
3697 tcr->raw_tcr = value;
3698 tcr->mask = ~(((uint32_t)0xffffffffu) >> maskshift);
3699 tcr->base_mask = ~((uint32_t)0x3fffu >> maskshift);
3702 static void vmsa_ttbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3703 uint64_t value)
3705 ARMCPU *cpu = env_archcpu(env);
3706 TCR *tcr = raw_ptr(env, ri);
3708 if (arm_feature(env, ARM_FEATURE_LPAE)) {
3709 /* With LPAE the TTBCR could result in a change of ASID
3710 * via the TTBCR.A1 bit, so do a TLB flush.
3712 tlb_flush(CPU(cpu));
3714 /* Preserve the high half of TCR_EL1, set via TTBCR2. */
3715 value = deposit64(tcr->raw_tcr, 0, 32, value);
3716 vmsa_ttbcr_raw_write(env, ri, value);
3719 static void vmsa_ttbcr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
3721 TCR *tcr = raw_ptr(env, ri);
3723 /* Reset both the TCR as well as the masks corresponding to the bank of
3724 * the TCR being reset.
3726 tcr->raw_tcr = 0;
3727 tcr->mask = 0;
3728 tcr->base_mask = 0xffffc000u;
3731 static void vmsa_tcr_el12_write(CPUARMState *env, const ARMCPRegInfo *ri,
3732 uint64_t value)
3734 ARMCPU *cpu = env_archcpu(env);
3735 TCR *tcr = raw_ptr(env, ri);
3737 /* For AArch64 the A1 bit could result in a change of ASID, so TLB flush. */
3738 tlb_flush(CPU(cpu));
3739 tcr->raw_tcr = value;
3742 static void vmsa_ttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3743 uint64_t value)
3745 /* If the ASID changes (with a 64-bit write), we must flush the TLB. */
3746 if (cpreg_field_is_64bit(ri) &&
3747 extract64(raw_read(env, ri) ^ value, 48, 16) != 0) {
3748 ARMCPU *cpu = env_archcpu(env);
3749 tlb_flush(CPU(cpu));
3751 raw_write(env, ri, value);
3754 static void vmsa_tcr_ttbr_el2_write(CPUARMState *env, const ARMCPRegInfo *ri,
3755 uint64_t value)
3758 * If we are running with E2&0 regime, then an ASID is active.
3759 * Flush if that might be changing. Note we're not checking
3760 * TCR_EL2.A1 to know if this is really the TTBRx_EL2 that
3761 * holds the active ASID, only checking the field that might.
3763 if (extract64(raw_read(env, ri) ^ value, 48, 16) &&
3764 (arm_hcr_el2_eff(env) & HCR_E2H)) {
3765 uint16_t mask = ARMMMUIdxBit_E20_2 |
3766 ARMMMUIdxBit_E20_2_PAN |
3767 ARMMMUIdxBit_E20_0;
3769 if (arm_is_secure_below_el3(env)) {
3770 mask >>= ARM_MMU_IDX_A_NS;
3773 tlb_flush_by_mmuidx(env_cpu(env), mask);
3775 raw_write(env, ri, value);
3778 static void vttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3779 uint64_t value)
3781 ARMCPU *cpu = env_archcpu(env);
3782 CPUState *cs = CPU(cpu);
3785 * A change in VMID to the stage2 page table (Stage2) invalidates
3786 * the combined stage 1&2 tlbs (EL10_1 and EL10_0).
3788 if (raw_read(env, ri) != value) {
3789 uint16_t mask = ARMMMUIdxBit_E10_1 |
3790 ARMMMUIdxBit_E10_1_PAN |
3791 ARMMMUIdxBit_E10_0;
3793 if (arm_is_secure_below_el3(env)) {
3794 mask >>= ARM_MMU_IDX_A_NS;
3797 tlb_flush_by_mmuidx(cs, mask);
3798 raw_write(env, ri, value);
3802 static const ARMCPRegInfo vmsa_pmsa_cp_reginfo[] = {
3803 { .name = "DFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
3804 .access = PL1_RW, .accessfn = access_tvm_trvm, .type = ARM_CP_ALIAS,
3805 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dfsr_s),
3806 offsetoflow32(CPUARMState, cp15.dfsr_ns) }, },
3807 { .name = "IFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
3808 .access = PL1_RW, .accessfn = access_tvm_trvm, .resetvalue = 0,
3809 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.ifsr_s),
3810 offsetoflow32(CPUARMState, cp15.ifsr_ns) } },
3811 { .name = "DFAR", .cp = 15, .opc1 = 0, .crn = 6, .crm = 0, .opc2 = 0,
3812 .access = PL1_RW, .accessfn = access_tvm_trvm, .resetvalue = 0,
3813 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.dfar_s),
3814 offsetof(CPUARMState, cp15.dfar_ns) } },
3815 { .name = "FAR_EL1", .state = ARM_CP_STATE_AA64,
3816 .opc0 = 3, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 0,
3817 .access = PL1_RW, .accessfn = access_tvm_trvm,
3818 .fieldoffset = offsetof(CPUARMState, cp15.far_el[1]),
3819 .resetvalue = 0, },
3822 static const ARMCPRegInfo vmsa_cp_reginfo[] = {
3823 { .name = "ESR_EL1", .state = ARM_CP_STATE_AA64,
3824 .opc0 = 3, .crn = 5, .crm = 2, .opc1 = 0, .opc2 = 0,
3825 .access = PL1_RW, .accessfn = access_tvm_trvm,
3826 .fieldoffset = offsetof(CPUARMState, cp15.esr_el[1]), .resetvalue = 0, },
3827 { .name = "TTBR0_EL1", .state = ARM_CP_STATE_BOTH,
3828 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 0,
3829 .access = PL1_RW, .accessfn = access_tvm_trvm,
3830 .writefn = vmsa_ttbr_write, .resetvalue = 0,
3831 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
3832 offsetof(CPUARMState, cp15.ttbr0_ns) } },
3833 { .name = "TTBR1_EL1", .state = ARM_CP_STATE_BOTH,
3834 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 1,
3835 .access = PL1_RW, .accessfn = access_tvm_trvm,
3836 .writefn = vmsa_ttbr_write, .resetvalue = 0,
3837 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
3838 offsetof(CPUARMState, cp15.ttbr1_ns) } },
3839 { .name = "TCR_EL1", .state = ARM_CP_STATE_AA64,
3840 .opc0 = 3, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
3841 .access = PL1_RW, .accessfn = access_tvm_trvm,
3842 .writefn = vmsa_tcr_el12_write,
3843 .resetfn = vmsa_ttbcr_reset, .raw_writefn = raw_write,
3844 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[1]) },
3845 { .name = "TTBCR", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
3846 .access = PL1_RW, .accessfn = access_tvm_trvm,
3847 .type = ARM_CP_ALIAS, .writefn = vmsa_ttbcr_write,
3848 .raw_writefn = vmsa_ttbcr_raw_write,
3849 /* No offsetoflow32 -- pass the entire TCR to writefn/raw_writefn. */
3850 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.tcr_el[3]),
3851 offsetof(CPUARMState, cp15.tcr_el[1])} },
3854 /* Note that unlike TTBCR, writing to TTBCR2 does not require flushing
3855 * qemu tlbs nor adjusting cached masks.
3857 static const ARMCPRegInfo ttbcr2_reginfo = {
3858 .name = "TTBCR2", .cp = 15, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 3,
3859 .access = PL1_RW, .accessfn = access_tvm_trvm,
3860 .type = ARM_CP_ALIAS,
3861 .bank_fieldoffsets = {
3862 offsetofhigh32(CPUARMState, cp15.tcr_el[3].raw_tcr),
3863 offsetofhigh32(CPUARMState, cp15.tcr_el[1].raw_tcr),
3867 static void omap_ticonfig_write(CPUARMState *env, const ARMCPRegInfo *ri,
3868 uint64_t value)
3870 env->cp15.c15_ticonfig = value & 0xe7;
3871 /* The OS_TYPE bit in this register changes the reported CPUID! */
3872 env->cp15.c0_cpuid = (value & (1 << 5)) ?
3873 ARM_CPUID_TI915T : ARM_CPUID_TI925T;
3876 static void omap_threadid_write(CPUARMState *env, const ARMCPRegInfo *ri,
3877 uint64_t value)
3879 env->cp15.c15_threadid = value & 0xffff;
3882 static void omap_wfi_write(CPUARMState *env, const ARMCPRegInfo *ri,
3883 uint64_t value)
3885 /* Wait-for-interrupt (deprecated) */
3886 cpu_interrupt(env_cpu(env), CPU_INTERRUPT_HALT);
3889 static void omap_cachemaint_write(CPUARMState *env, const ARMCPRegInfo *ri,
3890 uint64_t value)
3892 /* On OMAP there are registers indicating the max/min index of dcache lines
3893 * containing a dirty line; cache flush operations have to reset these.
3895 env->cp15.c15_i_max = 0x000;
3896 env->cp15.c15_i_min = 0xff0;
3899 static const ARMCPRegInfo omap_cp_reginfo[] = {
3900 { .name = "DFSR", .cp = 15, .crn = 5, .crm = CP_ANY,
3901 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_OVERRIDE,
3902 .fieldoffset = offsetoflow32(CPUARMState, cp15.esr_el[1]),
3903 .resetvalue = 0, },
3904 { .name = "", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0,
3905 .access = PL1_RW, .type = ARM_CP_NOP },
3906 { .name = "TICONFIG", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0,
3907 .access = PL1_RW,
3908 .fieldoffset = offsetof(CPUARMState, cp15.c15_ticonfig), .resetvalue = 0,
3909 .writefn = omap_ticonfig_write },
3910 { .name = "IMAX", .cp = 15, .crn = 15, .crm = 2, .opc1 = 0, .opc2 = 0,
3911 .access = PL1_RW,
3912 .fieldoffset = offsetof(CPUARMState, cp15.c15_i_max), .resetvalue = 0, },
3913 { .name = "IMIN", .cp = 15, .crn = 15, .crm = 3, .opc1 = 0, .opc2 = 0,
3914 .access = PL1_RW, .resetvalue = 0xff0,
3915 .fieldoffset = offsetof(CPUARMState, cp15.c15_i_min) },
3916 { .name = "THREADID", .cp = 15, .crn = 15, .crm = 4, .opc1 = 0, .opc2 = 0,
3917 .access = PL1_RW,
3918 .fieldoffset = offsetof(CPUARMState, cp15.c15_threadid), .resetvalue = 0,
3919 .writefn = omap_threadid_write },
3920 { .name = "TI925T_STATUS", .cp = 15, .crn = 15,
3921 .crm = 8, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
3922 .type = ARM_CP_NO_RAW,
3923 .readfn = arm_cp_read_zero, .writefn = omap_wfi_write, },
3924 /* TODO: Peripheral port remap register:
3925 * On OMAP2 mcr p15, 0, rn, c15, c2, 4 sets up the interrupt controller
3926 * base address at $rn & ~0xfff and map size of 0x200 << ($rn & 0xfff),
3927 * when MMU is off.
3929 { .name = "OMAP_CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
3930 .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
3931 .type = ARM_CP_OVERRIDE | ARM_CP_NO_RAW,
3932 .writefn = omap_cachemaint_write },
3933 { .name = "C9", .cp = 15, .crn = 9,
3934 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW,
3935 .type = ARM_CP_CONST | ARM_CP_OVERRIDE, .resetvalue = 0 },
3938 static void xscale_cpar_write(CPUARMState *env, const ARMCPRegInfo *ri,
3939 uint64_t value)
3941 env->cp15.c15_cpar = value & 0x3fff;
3944 static const ARMCPRegInfo xscale_cp_reginfo[] = {
3945 { .name = "XSCALE_CPAR",
3946 .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
3947 .fieldoffset = offsetof(CPUARMState, cp15.c15_cpar), .resetvalue = 0,
3948 .writefn = xscale_cpar_write, },
3949 { .name = "XSCALE_AUXCR",
3950 .cp = 15, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 1, .access = PL1_RW,
3951 .fieldoffset = offsetof(CPUARMState, cp15.c1_xscaleauxcr),
3952 .resetvalue = 0, },
3953 /* XScale specific cache-lockdown: since we have no cache we NOP these
3954 * and hope the guest does not really rely on cache behaviour.
3956 { .name = "XSCALE_LOCK_ICACHE_LINE",
3957 .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 0,
3958 .access = PL1_W, .type = ARM_CP_NOP },
3959 { .name = "XSCALE_UNLOCK_ICACHE",
3960 .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 1,
3961 .access = PL1_W, .type = ARM_CP_NOP },
3962 { .name = "XSCALE_DCACHE_LOCK",
3963 .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 0,
3964 .access = PL1_RW, .type = ARM_CP_NOP },
3965 { .name = "XSCALE_UNLOCK_DCACHE",
3966 .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 1,
3967 .access = PL1_W, .type = ARM_CP_NOP },
3970 static const ARMCPRegInfo dummy_c15_cp_reginfo[] = {
3971 /* RAZ/WI the whole crn=15 space, when we don't have a more specific
3972 * implementation of this implementation-defined space.
3973 * Ideally this should eventually disappear in favour of actually
3974 * implementing the correct behaviour for all cores.
3976 { .name = "C15_IMPDEF", .cp = 15, .crn = 15,
3977 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
3978 .access = PL1_RW,
3979 .type = ARM_CP_CONST | ARM_CP_NO_RAW | ARM_CP_OVERRIDE,
3980 .resetvalue = 0 },
3983 static const ARMCPRegInfo cache_dirty_status_cp_reginfo[] = {
3984 /* Cache status: RAZ because we have no cache so it's always clean */
3985 { .name = "CDSR", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 6,
3986 .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
3987 .resetvalue = 0 },
3990 static const ARMCPRegInfo cache_block_ops_cp_reginfo[] = {
3991 /* We never have a a block transfer operation in progress */
3992 { .name = "BXSR", .cp = 15, .crn = 7, .crm = 12, .opc1 = 0, .opc2 = 4,
3993 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
3994 .resetvalue = 0 },
3995 /* The cache ops themselves: these all NOP for QEMU */
3996 { .name = "IICR", .cp = 15, .crm = 5, .opc1 = 0,
3997 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
3998 { .name = "IDCR", .cp = 15, .crm = 6, .opc1 = 0,
3999 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
4000 { .name = "CDCR", .cp = 15, .crm = 12, .opc1 = 0,
4001 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
4002 { .name = "PIR", .cp = 15, .crm = 12, .opc1 = 1,
4003 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
4004 { .name = "PDR", .cp = 15, .crm = 12, .opc1 = 2,
4005 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
4006 { .name = "CIDCR", .cp = 15, .crm = 14, .opc1 = 0,
4007 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
4010 static const ARMCPRegInfo cache_test_clean_cp_reginfo[] = {
4011 /* The cache test-and-clean instructions always return (1 << 30)
4012 * to indicate that there are no dirty cache lines.
4014 { .name = "TC_DCACHE", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 3,
4015 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
4016 .resetvalue = (1 << 30) },
4017 { .name = "TCI_DCACHE", .cp = 15, .crn = 7, .crm = 14, .opc1 = 0, .opc2 = 3,
4018 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
4019 .resetvalue = (1 << 30) },
4022 static const ARMCPRegInfo strongarm_cp_reginfo[] = {
4023 /* Ignore ReadBuffer accesses */
4024 { .name = "C9_READBUFFER", .cp = 15, .crn = 9,
4025 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
4026 .access = PL1_RW, .resetvalue = 0,
4027 .type = ARM_CP_CONST | ARM_CP_OVERRIDE | ARM_CP_NO_RAW },
4030 static uint64_t midr_read(CPUARMState *env, const ARMCPRegInfo *ri)
4032 unsigned int cur_el = arm_current_el(env);
4034 if (arm_is_el2_enabled(env) && cur_el == 1) {
4035 return env->cp15.vpidr_el2;
4037 return raw_read(env, ri);
4040 static uint64_t mpidr_read_val(CPUARMState *env)
4042 ARMCPU *cpu = env_archcpu(env);
4043 uint64_t mpidr = cpu->mp_affinity;
4045 if (arm_feature(env, ARM_FEATURE_V7MP)) {
4046 mpidr |= (1U << 31);
4047 /* Cores which are uniprocessor (non-coherent)
4048 * but still implement the MP extensions set
4049 * bit 30. (For instance, Cortex-R5).
4051 if (cpu->mp_is_up) {
4052 mpidr |= (1u << 30);
4055 return mpidr;
4058 static uint64_t mpidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
4060 unsigned int cur_el = arm_current_el(env);
4062 if (arm_is_el2_enabled(env) && cur_el == 1) {
4063 return env->cp15.vmpidr_el2;
4065 return mpidr_read_val(env);
4068 static const ARMCPRegInfo lpae_cp_reginfo[] = {
4069 /* NOP AMAIR0/1 */
4070 { .name = "AMAIR0", .state = ARM_CP_STATE_BOTH,
4071 .opc0 = 3, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 0,
4072 .access = PL1_RW, .accessfn = access_tvm_trvm,
4073 .type = ARM_CP_CONST, .resetvalue = 0 },
4074 /* AMAIR1 is mapped to AMAIR_EL1[63:32] */
4075 { .name = "AMAIR1", .cp = 15, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 1,
4076 .access = PL1_RW, .accessfn = access_tvm_trvm,
4077 .type = ARM_CP_CONST, .resetvalue = 0 },
4078 { .name = "PAR", .cp = 15, .crm = 7, .opc1 = 0,
4079 .access = PL1_RW, .type = ARM_CP_64BIT, .resetvalue = 0,
4080 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.par_s),
4081 offsetof(CPUARMState, cp15.par_ns)} },
4082 { .name = "TTBR0", .cp = 15, .crm = 2, .opc1 = 0,
4083 .access = PL1_RW, .accessfn = access_tvm_trvm,
4084 .type = ARM_CP_64BIT | ARM_CP_ALIAS,
4085 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
4086 offsetof(CPUARMState, cp15.ttbr0_ns) },
4087 .writefn = vmsa_ttbr_write, },
4088 { .name = "TTBR1", .cp = 15, .crm = 2, .opc1 = 1,
4089 .access = PL1_RW, .accessfn = access_tvm_trvm,
4090 .type = ARM_CP_64BIT | ARM_CP_ALIAS,
4091 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
4092 offsetof(CPUARMState, cp15.ttbr1_ns) },
4093 .writefn = vmsa_ttbr_write, },
4096 static uint64_t aa64_fpcr_read(CPUARMState *env, const ARMCPRegInfo *ri)
4098 return vfp_get_fpcr(env);
4101 static void aa64_fpcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4102 uint64_t value)
4104 vfp_set_fpcr(env, value);
4107 static uint64_t aa64_fpsr_read(CPUARMState *env, const ARMCPRegInfo *ri)
4109 return vfp_get_fpsr(env);
4112 static void aa64_fpsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4113 uint64_t value)
4115 vfp_set_fpsr(env, value);
4118 static CPAccessResult aa64_daif_access(CPUARMState *env, const ARMCPRegInfo *ri,
4119 bool isread)
4121 if (arm_current_el(env) == 0 && !(arm_sctlr(env, 0) & SCTLR_UMA)) {
4122 return CP_ACCESS_TRAP;
4124 return CP_ACCESS_OK;
4127 static void aa64_daif_write(CPUARMState *env, const ARMCPRegInfo *ri,
4128 uint64_t value)
4130 env->daif = value & PSTATE_DAIF;
4133 static uint64_t aa64_pan_read(CPUARMState *env, const ARMCPRegInfo *ri)
4135 return env->pstate & PSTATE_PAN;
4138 static void aa64_pan_write(CPUARMState *env, const ARMCPRegInfo *ri,
4139 uint64_t value)
4141 env->pstate = (env->pstate & ~PSTATE_PAN) | (value & PSTATE_PAN);
4144 static const ARMCPRegInfo pan_reginfo = {
4145 .name = "PAN", .state = ARM_CP_STATE_AA64,
4146 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 3,
4147 .type = ARM_CP_NO_RAW, .access = PL1_RW,
4148 .readfn = aa64_pan_read, .writefn = aa64_pan_write
4151 static uint64_t aa64_uao_read(CPUARMState *env, const ARMCPRegInfo *ri)
4153 return env->pstate & PSTATE_UAO;
4156 static void aa64_uao_write(CPUARMState *env, const ARMCPRegInfo *ri,
4157 uint64_t value)
4159 env->pstate = (env->pstate & ~PSTATE_UAO) | (value & PSTATE_UAO);
4162 static const ARMCPRegInfo uao_reginfo = {
4163 .name = "UAO", .state = ARM_CP_STATE_AA64,
4164 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 4,
4165 .type = ARM_CP_NO_RAW, .access = PL1_RW,
4166 .readfn = aa64_uao_read, .writefn = aa64_uao_write
4169 static uint64_t aa64_dit_read(CPUARMState *env, const ARMCPRegInfo *ri)
4171 return env->pstate & PSTATE_DIT;
4174 static void aa64_dit_write(CPUARMState *env, const ARMCPRegInfo *ri,
4175 uint64_t value)
4177 env->pstate = (env->pstate & ~PSTATE_DIT) | (value & PSTATE_DIT);
4180 static const ARMCPRegInfo dit_reginfo = {
4181 .name = "DIT", .state = ARM_CP_STATE_AA64,
4182 .opc0 = 3, .opc1 = 3, .crn = 4, .crm = 2, .opc2 = 5,
4183 .type = ARM_CP_NO_RAW, .access = PL0_RW,
4184 .readfn = aa64_dit_read, .writefn = aa64_dit_write
4187 static uint64_t aa64_ssbs_read(CPUARMState *env, const ARMCPRegInfo *ri)
4189 return env->pstate & PSTATE_SSBS;
4192 static void aa64_ssbs_write(CPUARMState *env, const ARMCPRegInfo *ri,
4193 uint64_t value)
4195 env->pstate = (env->pstate & ~PSTATE_SSBS) | (value & PSTATE_SSBS);
4198 static const ARMCPRegInfo ssbs_reginfo = {
4199 .name = "SSBS", .state = ARM_CP_STATE_AA64,
4200 .opc0 = 3, .opc1 = 3, .crn = 4, .crm = 2, .opc2 = 6,
4201 .type = ARM_CP_NO_RAW, .access = PL0_RW,
4202 .readfn = aa64_ssbs_read, .writefn = aa64_ssbs_write
4205 static CPAccessResult aa64_cacheop_poc_access(CPUARMState *env,
4206 const ARMCPRegInfo *ri,
4207 bool isread)
4209 /* Cache invalidate/clean to Point of Coherency or Persistence... */
4210 switch (arm_current_el(env)) {
4211 case 0:
4212 /* ... EL0 must UNDEF unless SCTLR_EL1.UCI is set. */
4213 if (!(arm_sctlr(env, 0) & SCTLR_UCI)) {
4214 return CP_ACCESS_TRAP;
4216 /* fall through */
4217 case 1:
4218 /* ... EL1 must trap to EL2 if HCR_EL2.TPCP is set. */
4219 if (arm_hcr_el2_eff(env) & HCR_TPCP) {
4220 return CP_ACCESS_TRAP_EL2;
4222 break;
4224 return CP_ACCESS_OK;
4227 static CPAccessResult aa64_cacheop_pou_access(CPUARMState *env,
4228 const ARMCPRegInfo *ri,
4229 bool isread)
4231 /* Cache invalidate/clean to Point of Unification... */
4232 switch (arm_current_el(env)) {
4233 case 0:
4234 /* ... EL0 must UNDEF unless SCTLR_EL1.UCI is set. */
4235 if (!(arm_sctlr(env, 0) & SCTLR_UCI)) {
4236 return CP_ACCESS_TRAP;
4238 /* fall through */
4239 case 1:
4240 /* ... EL1 must trap to EL2 if HCR_EL2.TPU is set. */
4241 if (arm_hcr_el2_eff(env) & HCR_TPU) {
4242 return CP_ACCESS_TRAP_EL2;
4244 break;
4246 return CP_ACCESS_OK;
4249 /* See: D4.7.2 TLB maintenance requirements and the TLB maintenance instructions
4250 * Page D4-1736 (DDI0487A.b)
4253 static int vae1_tlbmask(CPUARMState *env)
4255 uint64_t hcr = arm_hcr_el2_eff(env);
4256 uint16_t mask;
4258 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
4259 mask = ARMMMUIdxBit_E20_2 |
4260 ARMMMUIdxBit_E20_2_PAN |
4261 ARMMMUIdxBit_E20_0;
4262 } else {
4263 mask = ARMMMUIdxBit_E10_1 |
4264 ARMMMUIdxBit_E10_1_PAN |
4265 ARMMMUIdxBit_E10_0;
4268 if (arm_is_secure_below_el3(env)) {
4269 mask >>= ARM_MMU_IDX_A_NS;
4272 return mask;
4275 /* Return 56 if TBI is enabled, 64 otherwise. */
4276 static int tlbbits_for_regime(CPUARMState *env, ARMMMUIdx mmu_idx,
4277 uint64_t addr)
4279 uint64_t tcr = regime_tcr(env, mmu_idx)->raw_tcr;
4280 int tbi = aa64_va_parameter_tbi(tcr, mmu_idx);
4281 int select = extract64(addr, 55, 1);
4283 return (tbi >> select) & 1 ? 56 : 64;
4286 static int vae1_tlbbits(CPUARMState *env, uint64_t addr)
4288 uint64_t hcr = arm_hcr_el2_eff(env);
4289 ARMMMUIdx mmu_idx;
4291 /* Only the regime of the mmu_idx below is significant. */
4292 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
4293 mmu_idx = ARMMMUIdx_E20_0;
4294 } else {
4295 mmu_idx = ARMMMUIdx_E10_0;
4298 if (arm_is_secure_below_el3(env)) {
4299 mmu_idx &= ~ARM_MMU_IDX_A_NS;
4302 return tlbbits_for_regime(env, mmu_idx, addr);
4305 static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4306 uint64_t value)
4308 CPUState *cs = env_cpu(env);
4309 int mask = vae1_tlbmask(env);
4311 tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
4314 static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
4315 uint64_t value)
4317 CPUState *cs = env_cpu(env);
4318 int mask = vae1_tlbmask(env);
4320 if (tlb_force_broadcast(env)) {
4321 tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
4322 } else {
4323 tlb_flush_by_mmuidx(cs, mask);
4327 static int alle1_tlbmask(CPUARMState *env)
4330 * Note that the 'ALL' scope must invalidate both stage 1 and
4331 * stage 2 translations, whereas most other scopes only invalidate
4332 * stage 1 translations.
4334 if (arm_is_secure_below_el3(env)) {
4335 return ARMMMUIdxBit_SE10_1 |
4336 ARMMMUIdxBit_SE10_1_PAN |
4337 ARMMMUIdxBit_SE10_0;
4338 } else {
4339 return ARMMMUIdxBit_E10_1 |
4340 ARMMMUIdxBit_E10_1_PAN |
4341 ARMMMUIdxBit_E10_0;
4345 static int e2_tlbmask(CPUARMState *env)
4347 if (arm_is_secure_below_el3(env)) {
4348 return ARMMMUIdxBit_SE20_0 |
4349 ARMMMUIdxBit_SE20_2 |
4350 ARMMMUIdxBit_SE20_2_PAN |
4351 ARMMMUIdxBit_SE2;
4352 } else {
4353 return ARMMMUIdxBit_E20_0 |
4354 ARMMMUIdxBit_E20_2 |
4355 ARMMMUIdxBit_E20_2_PAN |
4356 ARMMMUIdxBit_E2;
4360 static void tlbi_aa64_alle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
4361 uint64_t value)
4363 CPUState *cs = env_cpu(env);
4364 int mask = alle1_tlbmask(env);
4366 tlb_flush_by_mmuidx(cs, mask);
4369 static void tlbi_aa64_alle2_write(CPUARMState *env, const ARMCPRegInfo *ri,
4370 uint64_t value)
4372 CPUState *cs = env_cpu(env);
4373 int mask = e2_tlbmask(env);
4375 tlb_flush_by_mmuidx(cs, mask);
4378 static void tlbi_aa64_alle3_write(CPUARMState *env, const ARMCPRegInfo *ri,
4379 uint64_t value)
4381 ARMCPU *cpu = env_archcpu(env);
4382 CPUState *cs = CPU(cpu);
4384 tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_SE3);
4387 static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4388 uint64_t value)
4390 CPUState *cs = env_cpu(env);
4391 int mask = alle1_tlbmask(env);
4393 tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
4396 static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4397 uint64_t value)
4399 CPUState *cs = env_cpu(env);
4400 int mask = e2_tlbmask(env);
4402 tlb_flush_by_mmuidx_all_cpus_synced(cs, mask);
4405 static void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4406 uint64_t value)
4408 CPUState *cs = env_cpu(env);
4410 tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_SE3);
4413 static void tlbi_aa64_vae2_write(CPUARMState *env, const ARMCPRegInfo *ri,
4414 uint64_t value)
4416 /* Invalidate by VA, EL2
4417 * Currently handles both VAE2 and VALE2, since we don't support
4418 * flush-last-level-only.
4420 CPUState *cs = env_cpu(env);
4421 int mask = e2_tlbmask(env);
4422 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4424 tlb_flush_page_by_mmuidx(cs, pageaddr, mask);
4427 static void tlbi_aa64_vae3_write(CPUARMState *env, const ARMCPRegInfo *ri,
4428 uint64_t value)
4430 /* Invalidate by VA, EL3
4431 * Currently handles both VAE3 and VALE3, since we don't support
4432 * flush-last-level-only.
4434 ARMCPU *cpu = env_archcpu(env);
4435 CPUState *cs = CPU(cpu);
4436 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4438 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_SE3);
4441 static void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4442 uint64_t value)
4444 CPUState *cs = env_cpu(env);
4445 int mask = vae1_tlbmask(env);
4446 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4447 int bits = vae1_tlbbits(env, pageaddr);
4449 tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
4452 static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
4453 uint64_t value)
4455 /* Invalidate by VA, EL1&0 (AArch64 version).
4456 * Currently handles all of VAE1, VAAE1, VAALE1 and VALE1,
4457 * since we don't support flush-for-specific-ASID-only or
4458 * flush-last-level-only.
4460 CPUState *cs = env_cpu(env);
4461 int mask = vae1_tlbmask(env);
4462 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4463 int bits = vae1_tlbbits(env, pageaddr);
4465 if (tlb_force_broadcast(env)) {
4466 tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
4467 } else {
4468 tlb_flush_page_bits_by_mmuidx(cs, pageaddr, mask, bits);
4472 static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4473 uint64_t value)
4475 CPUState *cs = env_cpu(env);
4476 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4477 bool secure = arm_is_secure_below_el3(env);
4478 int mask = secure ? ARMMMUIdxBit_SE2 : ARMMMUIdxBit_E2;
4479 int bits = tlbbits_for_regime(env, secure ? ARMMMUIdx_SE2 : ARMMMUIdx_E2,
4480 pageaddr);
4482 tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr, mask, bits);
4485 static void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
4486 uint64_t value)
4488 CPUState *cs = env_cpu(env);
4489 uint64_t pageaddr = sextract64(value << 12, 0, 56);
4490 int bits = tlbbits_for_regime(env, ARMMMUIdx_SE3, pageaddr);
4492 tlb_flush_page_bits_by_mmuidx_all_cpus_synced(cs, pageaddr,
4493 ARMMMUIdxBit_SE3, bits);
4496 #ifdef TARGET_AARCH64
4497 typedef struct {
4498 uint64_t base;
4499 uint64_t length;
4500 } TLBIRange;
4502 static TLBIRange tlbi_aa64_get_range(CPUARMState *env, ARMMMUIdx mmuidx,
4503 uint64_t value)
4505 unsigned int page_size_granule, page_shift, num, scale, exponent;
4506 /* Extract one bit to represent the va selector in use. */
4507 uint64_t select = sextract64(value, 36, 1);
4508 ARMVAParameters param = aa64_va_parameters(env, select, mmuidx, true);
4509 TLBIRange ret = { };
4511 page_size_granule = extract64(value, 46, 2);
4513 /* The granule encoded in value must match the granule in use. */
4514 if (page_size_granule != (param.using64k ? 3 : param.using16k ? 2 : 1)) {
4515 qemu_log_mask(LOG_GUEST_ERROR, "Invalid tlbi page size granule %d\n",
4516 page_size_granule);
4517 return ret;
4520 page_shift = (page_size_granule - 1) * 2 + 12;
4521 num = extract64(value, 39, 5);
4522 scale = extract64(value, 44, 2);
4523 exponent = (5 * scale) + 1;
4525 ret.length = (num + 1) << (exponent + page_shift);
4527 if (param.select) {
4528 ret.base = sextract64(value, 0, 37);
4529 } else {
4530 ret.base = extract64(value, 0, 37);
4532 if (param.ds) {
4534 * With DS=1, BaseADDR is always shifted 16 so that it is able
4535 * to address all 52 va bits. The input address is perforce
4536 * aligned on a 64k boundary regardless of translation granule.
4538 page_shift = 16;
4540 ret.base <<= page_shift;
4542 return ret;
4545 static void do_rvae_write(CPUARMState *env, uint64_t value,
4546 int idxmap, bool synced)
4548 ARMMMUIdx one_idx = ARM_MMU_IDX_A | ctz32(idxmap);
4549 TLBIRange range;
4550 int bits;
4552 range = tlbi_aa64_get_range(env, one_idx, value);
4553 bits = tlbbits_for_regime(env, one_idx, range.base);
4555 if (synced) {
4556 tlb_flush_range_by_mmuidx_all_cpus_synced(env_cpu(env),
4557 range.base,
4558 range.length,
4559 idxmap,
4560 bits);
4561 } else {
4562 tlb_flush_range_by_mmuidx(env_cpu(env), range.base,
4563 range.length, idxmap, bits);
4567 static void tlbi_aa64_rvae1_write(CPUARMState *env,
4568 const ARMCPRegInfo *ri,
4569 uint64_t value)
4572 * Invalidate by VA range, EL1&0.
4573 * Currently handles all of RVAE1, RVAAE1, RVAALE1 and RVALE1,
4574 * since we don't support flush-for-specific-ASID-only or
4575 * flush-last-level-only.
4578 do_rvae_write(env, value, vae1_tlbmask(env),
4579 tlb_force_broadcast(env));
4582 static void tlbi_aa64_rvae1is_write(CPUARMState *env,
4583 const ARMCPRegInfo *ri,
4584 uint64_t value)
4587 * Invalidate by VA range, Inner/Outer Shareable EL1&0.
4588 * Currently handles all of RVAE1IS, RVAE1OS, RVAAE1IS, RVAAE1OS,
4589 * RVAALE1IS, RVAALE1OS, RVALE1IS and RVALE1OS, since we don't support
4590 * flush-for-specific-ASID-only, flush-last-level-only or inner/outer
4591 * shareable specific flushes.
4594 do_rvae_write(env, value, vae1_tlbmask(env), true);
4597 static int vae2_tlbmask(CPUARMState *env)
4599 return (arm_is_secure_below_el3(env)
4600 ? ARMMMUIdxBit_SE2 : ARMMMUIdxBit_E2);
4603 static void tlbi_aa64_rvae2_write(CPUARMState *env,
4604 const ARMCPRegInfo *ri,
4605 uint64_t value)
4608 * Invalidate by VA range, EL2.
4609 * Currently handles all of RVAE2 and RVALE2,
4610 * since we don't support flush-for-specific-ASID-only or
4611 * flush-last-level-only.
4614 do_rvae_write(env, value, vae2_tlbmask(env),
4615 tlb_force_broadcast(env));
4620 static void tlbi_aa64_rvae2is_write(CPUARMState *env,
4621 const ARMCPRegInfo *ri,
4622 uint64_t value)
4625 * Invalidate by VA range, Inner/Outer Shareable, EL2.
4626 * Currently handles all of RVAE2IS, RVAE2OS, RVALE2IS and RVALE2OS,
4627 * since we don't support flush-for-specific-ASID-only,
4628 * flush-last-level-only or inner/outer shareable specific flushes.
4631 do_rvae_write(env, value, vae2_tlbmask(env), true);
4635 static void tlbi_aa64_rvae3_write(CPUARMState *env,
4636 const ARMCPRegInfo *ri,
4637 uint64_t value)
4640 * Invalidate by VA range, EL3.
4641 * Currently handles all of RVAE3 and RVALE3,
4642 * since we don't support flush-for-specific-ASID-only or
4643 * flush-last-level-only.
4646 do_rvae_write(env, value, ARMMMUIdxBit_SE3,
4647 tlb_force_broadcast(env));
4650 static void tlbi_aa64_rvae3is_write(CPUARMState *env,
4651 const ARMCPRegInfo *ri,
4652 uint64_t value)
4655 * Invalidate by VA range, EL3, Inner/Outer Shareable.
4656 * Currently handles all of RVAE3IS, RVAE3OS, RVALE3IS and RVALE3OS,
4657 * since we don't support flush-for-specific-ASID-only,
4658 * flush-last-level-only or inner/outer specific flushes.
4661 do_rvae_write(env, value, ARMMMUIdxBit_SE3, true);
4663 #endif
4665 static CPAccessResult aa64_zva_access(CPUARMState *env, const ARMCPRegInfo *ri,
4666 bool isread)
4668 int cur_el = arm_current_el(env);
4670 if (cur_el < 2) {
4671 uint64_t hcr = arm_hcr_el2_eff(env);
4673 if (cur_el == 0) {
4674 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
4675 if (!(env->cp15.sctlr_el[2] & SCTLR_DZE)) {
4676 return CP_ACCESS_TRAP_EL2;
4678 } else {
4679 if (!(env->cp15.sctlr_el[1] & SCTLR_DZE)) {
4680 return CP_ACCESS_TRAP;
4682 if (hcr & HCR_TDZ) {
4683 return CP_ACCESS_TRAP_EL2;
4686 } else if (hcr & HCR_TDZ) {
4687 return CP_ACCESS_TRAP_EL2;
4690 return CP_ACCESS_OK;
4693 static uint64_t aa64_dczid_read(CPUARMState *env, const ARMCPRegInfo *ri)
4695 ARMCPU *cpu = env_archcpu(env);
4696 int dzp_bit = 1 << 4;
4698 /* DZP indicates whether DC ZVA access is allowed */
4699 if (aa64_zva_access(env, NULL, false) == CP_ACCESS_OK) {
4700 dzp_bit = 0;
4702 return cpu->dcz_blocksize | dzp_bit;
4705 static CPAccessResult sp_el0_access(CPUARMState *env, const ARMCPRegInfo *ri,
4706 bool isread)
4708 if (!(env->pstate & PSTATE_SP)) {
4709 /* Access to SP_EL0 is undefined if it's being used as
4710 * the stack pointer.
4712 return CP_ACCESS_TRAP_UNCATEGORIZED;
4714 return CP_ACCESS_OK;
4717 static uint64_t spsel_read(CPUARMState *env, const ARMCPRegInfo *ri)
4719 return env->pstate & PSTATE_SP;
4722 static void spsel_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t val)
4724 update_spsel(env, val);
4727 static void sctlr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4728 uint64_t value)
4730 ARMCPU *cpu = env_archcpu(env);
4732 if (arm_feature(env, ARM_FEATURE_PMSA) && !cpu->has_mpu) {
4733 /* M bit is RAZ/WI for PMSA with no MPU implemented */
4734 value &= ~SCTLR_M;
4737 /* ??? Lots of these bits are not implemented. */
4739 if (ri->state == ARM_CP_STATE_AA64 && !cpu_isar_feature(aa64_mte, cpu)) {
4740 if (ri->opc1 == 6) { /* SCTLR_EL3 */
4741 value &= ~(SCTLR_ITFSB | SCTLR_TCF | SCTLR_ATA);
4742 } else {
4743 value &= ~(SCTLR_ITFSB | SCTLR_TCF0 | SCTLR_TCF |
4744 SCTLR_ATA0 | SCTLR_ATA);
4748 if (raw_read(env, ri) == value) {
4749 /* Skip the TLB flush if nothing actually changed; Linux likes
4750 * to do a lot of pointless SCTLR writes.
4752 return;
4755 raw_write(env, ri, value);
4757 /* This may enable/disable the MMU, so do a TLB flush. */
4758 tlb_flush(CPU(cpu));
4760 if (ri->type & ARM_CP_SUPPRESS_TB_END) {
4762 * Normally we would always end the TB on an SCTLR write; see the
4763 * comment in ARMCPRegInfo sctlr initialization below for why Xscale
4764 * is special. Setting ARM_CP_SUPPRESS_TB_END also stops the rebuild
4765 * of hflags from the translator, so do it here.
4767 arm_rebuild_hflags(env);
4771 static void sdcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4772 uint64_t value)
4774 env->cp15.mdcr_el3 = value & SDCR_VALID_MASK;
4777 static const ARMCPRegInfo v8_cp_reginfo[] = {
4778 /* Minimal set of EL0-visible registers. This will need to be expanded
4779 * significantly for system emulation of AArch64 CPUs.
4781 { .name = "NZCV", .state = ARM_CP_STATE_AA64,
4782 .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 2,
4783 .access = PL0_RW, .type = ARM_CP_NZCV },
4784 { .name = "DAIF", .state = ARM_CP_STATE_AA64,
4785 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 2,
4786 .type = ARM_CP_NO_RAW,
4787 .access = PL0_RW, .accessfn = aa64_daif_access,
4788 .fieldoffset = offsetof(CPUARMState, daif),
4789 .writefn = aa64_daif_write, .resetfn = arm_cp_reset_ignore },
4790 { .name = "FPCR", .state = ARM_CP_STATE_AA64,
4791 .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 4,
4792 .access = PL0_RW, .type = ARM_CP_FPU | ARM_CP_SUPPRESS_TB_END,
4793 .readfn = aa64_fpcr_read, .writefn = aa64_fpcr_write },
4794 { .name = "FPSR", .state = ARM_CP_STATE_AA64,
4795 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 4,
4796 .access = PL0_RW, .type = ARM_CP_FPU | ARM_CP_SUPPRESS_TB_END,
4797 .readfn = aa64_fpsr_read, .writefn = aa64_fpsr_write },
4798 { .name = "DCZID_EL0", .state = ARM_CP_STATE_AA64,
4799 .opc0 = 3, .opc1 = 3, .opc2 = 7, .crn = 0, .crm = 0,
4800 .access = PL0_R, .type = ARM_CP_NO_RAW,
4801 .readfn = aa64_dczid_read },
4802 { .name = "DC_ZVA", .state = ARM_CP_STATE_AA64,
4803 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 4, .opc2 = 1,
4804 .access = PL0_W, .type = ARM_CP_DC_ZVA,
4805 #ifndef CONFIG_USER_ONLY
4806 /* Avoid overhead of an access check that always passes in user-mode */
4807 .accessfn = aa64_zva_access,
4808 #endif
4810 { .name = "CURRENTEL", .state = ARM_CP_STATE_AA64,
4811 .opc0 = 3, .opc1 = 0, .opc2 = 2, .crn = 4, .crm = 2,
4812 .access = PL1_R, .type = ARM_CP_CURRENTEL },
4813 /* Cache ops: all NOPs since we don't emulate caches */
4814 { .name = "IC_IALLUIS", .state = ARM_CP_STATE_AA64,
4815 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
4816 .access = PL1_W, .type = ARM_CP_NOP,
4817 .accessfn = aa64_cacheop_pou_access },
4818 { .name = "IC_IALLU", .state = ARM_CP_STATE_AA64,
4819 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
4820 .access = PL1_W, .type = ARM_CP_NOP,
4821 .accessfn = aa64_cacheop_pou_access },
4822 { .name = "IC_IVAU", .state = ARM_CP_STATE_AA64,
4823 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 5, .opc2 = 1,
4824 .access = PL0_W, .type = ARM_CP_NOP,
4825 .accessfn = aa64_cacheop_pou_access },
4826 { .name = "DC_IVAC", .state = ARM_CP_STATE_AA64,
4827 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
4828 .access = PL1_W, .accessfn = aa64_cacheop_poc_access,
4829 .type = ARM_CP_NOP },
4830 { .name = "DC_ISW", .state = ARM_CP_STATE_AA64,
4831 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
4832 .access = PL1_W, .accessfn = access_tsw, .type = ARM_CP_NOP },
4833 { .name = "DC_CVAC", .state = ARM_CP_STATE_AA64,
4834 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 10, .opc2 = 1,
4835 .access = PL0_W, .type = ARM_CP_NOP,
4836 .accessfn = aa64_cacheop_poc_access },
4837 { .name = "DC_CSW", .state = ARM_CP_STATE_AA64,
4838 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
4839 .access = PL1_W, .accessfn = access_tsw, .type = ARM_CP_NOP },
4840 { .name = "DC_CVAU", .state = ARM_CP_STATE_AA64,
4841 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 11, .opc2 = 1,
4842 .access = PL0_W, .type = ARM_CP_NOP,
4843 .accessfn = aa64_cacheop_pou_access },
4844 { .name = "DC_CIVAC", .state = ARM_CP_STATE_AA64,
4845 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 14, .opc2 = 1,
4846 .access = PL0_W, .type = ARM_CP_NOP,
4847 .accessfn = aa64_cacheop_poc_access },
4848 { .name = "DC_CISW", .state = ARM_CP_STATE_AA64,
4849 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
4850 .access = PL1_W, .accessfn = access_tsw, .type = ARM_CP_NOP },
4851 /* TLBI operations */
4852 { .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64,
4853 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
4854 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4855 .writefn = tlbi_aa64_vmalle1is_write },
4856 { .name = "TLBI_VAE1IS", .state = ARM_CP_STATE_AA64,
4857 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
4858 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4859 .writefn = tlbi_aa64_vae1is_write },
4860 { .name = "TLBI_ASIDE1IS", .state = ARM_CP_STATE_AA64,
4861 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
4862 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4863 .writefn = tlbi_aa64_vmalle1is_write },
4864 { .name = "TLBI_VAAE1IS", .state = ARM_CP_STATE_AA64,
4865 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
4866 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4867 .writefn = tlbi_aa64_vae1is_write },
4868 { .name = "TLBI_VALE1IS", .state = ARM_CP_STATE_AA64,
4869 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
4870 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4871 .writefn = tlbi_aa64_vae1is_write },
4872 { .name = "TLBI_VAALE1IS", .state = ARM_CP_STATE_AA64,
4873 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
4874 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4875 .writefn = tlbi_aa64_vae1is_write },
4876 { .name = "TLBI_VMALLE1", .state = ARM_CP_STATE_AA64,
4877 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
4878 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4879 .writefn = tlbi_aa64_vmalle1_write },
4880 { .name = "TLBI_VAE1", .state = ARM_CP_STATE_AA64,
4881 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
4882 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4883 .writefn = tlbi_aa64_vae1_write },
4884 { .name = "TLBI_ASIDE1", .state = ARM_CP_STATE_AA64,
4885 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
4886 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4887 .writefn = tlbi_aa64_vmalle1_write },
4888 { .name = "TLBI_VAAE1", .state = ARM_CP_STATE_AA64,
4889 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
4890 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4891 .writefn = tlbi_aa64_vae1_write },
4892 { .name = "TLBI_VALE1", .state = ARM_CP_STATE_AA64,
4893 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
4894 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4895 .writefn = tlbi_aa64_vae1_write },
4896 { .name = "TLBI_VAALE1", .state = ARM_CP_STATE_AA64,
4897 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
4898 .access = PL1_W, .accessfn = access_ttlb, .type = ARM_CP_NO_RAW,
4899 .writefn = tlbi_aa64_vae1_write },
4900 { .name = "TLBI_IPAS2E1IS", .state = ARM_CP_STATE_AA64,
4901 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
4902 .access = PL2_W, .type = ARM_CP_NOP },
4903 { .name = "TLBI_IPAS2LE1IS", .state = ARM_CP_STATE_AA64,
4904 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 5,
4905 .access = PL2_W, .type = ARM_CP_NOP },
4906 { .name = "TLBI_ALLE1IS", .state = ARM_CP_STATE_AA64,
4907 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
4908 .access = PL2_W, .type = ARM_CP_NO_RAW,
4909 .writefn = tlbi_aa64_alle1is_write },
4910 { .name = "TLBI_VMALLS12E1IS", .state = ARM_CP_STATE_AA64,
4911 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 6,
4912 .access = PL2_W, .type = ARM_CP_NO_RAW,
4913 .writefn = tlbi_aa64_alle1is_write },
4914 { .name = "TLBI_IPAS2E1", .state = ARM_CP_STATE_AA64,
4915 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 1,
4916 .access = PL2_W, .type = ARM_CP_NOP },
4917 { .name = "TLBI_IPAS2LE1", .state = ARM_CP_STATE_AA64,
4918 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 5,
4919 .access = PL2_W, .type = ARM_CP_NOP },
4920 { .name = "TLBI_ALLE1", .state = ARM_CP_STATE_AA64,
4921 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 4,
4922 .access = PL2_W, .type = ARM_CP_NO_RAW,
4923 .writefn = tlbi_aa64_alle1_write },
4924 { .name = "TLBI_VMALLS12E1", .state = ARM_CP_STATE_AA64,
4925 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 6,
4926 .access = PL2_W, .type = ARM_CP_NO_RAW,
4927 .writefn = tlbi_aa64_alle1is_write },
4928 #ifndef CONFIG_USER_ONLY
4929 /* 64 bit address translation operations */
4930 { .name = "AT_S1E1R", .state = ARM_CP_STATE_AA64,
4931 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 0,
4932 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4933 .writefn = ats_write64 },
4934 { .name = "AT_S1E1W", .state = ARM_CP_STATE_AA64,
4935 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 1,
4936 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4937 .writefn = ats_write64 },
4938 { .name = "AT_S1E0R", .state = ARM_CP_STATE_AA64,
4939 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 2,
4940 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4941 .writefn = ats_write64 },
4942 { .name = "AT_S1E0W", .state = ARM_CP_STATE_AA64,
4943 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 3,
4944 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4945 .writefn = ats_write64 },
4946 { .name = "AT_S12E1R", .state = ARM_CP_STATE_AA64,
4947 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 4,
4948 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4949 .writefn = ats_write64 },
4950 { .name = "AT_S12E1W", .state = ARM_CP_STATE_AA64,
4951 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 5,
4952 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4953 .writefn = ats_write64 },
4954 { .name = "AT_S12E0R", .state = ARM_CP_STATE_AA64,
4955 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 6,
4956 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4957 .writefn = ats_write64 },
4958 { .name = "AT_S12E0W", .state = ARM_CP_STATE_AA64,
4959 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 7,
4960 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4961 .writefn = ats_write64 },
4962 /* AT S1E2* are elsewhere as they UNDEF from EL3 if EL2 is not present */
4963 { .name = "AT_S1E3R", .state = ARM_CP_STATE_AA64,
4964 .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 0,
4965 .access = PL3_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4966 .writefn = ats_write64 },
4967 { .name = "AT_S1E3W", .state = ARM_CP_STATE_AA64,
4968 .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 1,
4969 .access = PL3_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
4970 .writefn = ats_write64 },
4971 { .name = "PAR_EL1", .state = ARM_CP_STATE_AA64,
4972 .type = ARM_CP_ALIAS,
4973 .opc0 = 3, .opc1 = 0, .crn = 7, .crm = 4, .opc2 = 0,
4974 .access = PL1_RW, .resetvalue = 0,
4975 .fieldoffset = offsetof(CPUARMState, cp15.par_el[1]),
4976 .writefn = par_write },
4977 #endif
4978 /* TLB invalidate last level of translation table walk */
4979 { .name = "TLBIMVALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
4980 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
4981 .writefn = tlbimva_is_write },
4982 { .name = "TLBIMVAALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
4983 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
4984 .writefn = tlbimvaa_is_write },
4985 { .name = "TLBIMVAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
4986 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
4987 .writefn = tlbimva_write },
4988 { .name = "TLBIMVAAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
4989 .type = ARM_CP_NO_RAW, .access = PL1_W, .accessfn = access_ttlb,
4990 .writefn = tlbimvaa_write },
4991 { .name = "TLBIMVALH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 5,
4992 .type = ARM_CP_NO_RAW, .access = PL2_W,
4993 .writefn = tlbimva_hyp_write },
4994 { .name = "TLBIMVALHIS",
4995 .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 5,
4996 .type = ARM_CP_NO_RAW, .access = PL2_W,
4997 .writefn = tlbimva_hyp_is_write },
4998 { .name = "TLBIIPAS2",
4999 .cp = 15, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 1,
5000 .type = ARM_CP_NOP, .access = PL2_W },
5001 { .name = "TLBIIPAS2IS",
5002 .cp = 15, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
5003 .type = ARM_CP_NOP, .access = PL2_W },
5004 { .name = "TLBIIPAS2L",
5005 .cp = 15, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 5,
5006 .type = ARM_CP_NOP, .access = PL2_W },
5007 { .name = "TLBIIPAS2LIS",
5008 .cp = 15, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 5,
5009 .type = ARM_CP_NOP, .access = PL2_W },
5010 /* 32 bit cache operations */
5011 { .name = "ICIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
5012 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_pou_access },
5013 { .name = "BPIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 6,
5014 .type = ARM_CP_NOP, .access = PL1_W },
5015 { .name = "ICIALLU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
5016 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_pou_access },
5017 { .name = "ICIMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 1,
5018 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_pou_access },
5019 { .name = "BPIALL", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 6,
5020 .type = ARM_CP_NOP, .access = PL1_W },
5021 { .name = "BPIMVA", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 7,
5022 .type = ARM_CP_NOP, .access = PL1_W },
5023 { .name = "DCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
5024 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_poc_access },
5025 { .name = "DCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
5026 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
5027 { .name = "DCCMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 1,
5028 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_poc_access },
5029 { .name = "DCCSW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
5030 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
5031 { .name = "DCCMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 11, .opc2 = 1,
5032 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_pou_access },
5033 { .name = "DCCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 1,
5034 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = aa64_cacheop_poc_access },
5035 { .name = "DCCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
5036 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
5037 /* MMU Domain access control / MPU write buffer control */
5038 { .name = "DACR", .cp = 15, .opc1 = 0, .crn = 3, .crm = 0, .opc2 = 0,
5039 .access = PL1_RW, .accessfn = access_tvm_trvm, .resetvalue = 0,
5040 .writefn = dacr_write, .raw_writefn = raw_write,
5041 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
5042 offsetoflow32(CPUARMState, cp15.dacr_ns) } },
5043 { .name = "ELR_EL1", .state = ARM_CP_STATE_AA64,
5044 .type = ARM_CP_ALIAS,
5045 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 1,
5046 .access = PL1_RW,
5047 .fieldoffset = offsetof(CPUARMState, elr_el[1]) },
5048 { .name = "SPSR_EL1", .state = ARM_CP_STATE_AA64,
5049 .type = ARM_CP_ALIAS,
5050 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 0,
5051 .access = PL1_RW,
5052 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_SVC]) },
5053 /* We rely on the access checks not allowing the guest to write to the
5054 * state field when SPSel indicates that it's being used as the stack
5055 * pointer.
5057 { .name = "SP_EL0", .state = ARM_CP_STATE_AA64,
5058 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 1, .opc2 = 0,
5059 .access = PL1_RW, .accessfn = sp_el0_access,
5060 .type = ARM_CP_ALIAS,
5061 .fieldoffset = offsetof(CPUARMState, sp_el[0]) },
5062 { .name = "SP_EL1", .state = ARM_CP_STATE_AA64,
5063 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0,
5064 .access = PL2_RW, .type = ARM_CP_ALIAS,
5065 .fieldoffset = offsetof(CPUARMState, sp_el[1]) },
5066 { .name = "SPSel", .state = ARM_CP_STATE_AA64,
5067 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0,
5068 .type = ARM_CP_NO_RAW,
5069 .access = PL1_RW, .readfn = spsel_read, .writefn = spsel_write },
5070 { .name = "FPEXC32_EL2", .state = ARM_CP_STATE_AA64,
5071 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 3, .opc2 = 0,
5072 .access = PL2_RW,
5073 .type = ARM_CP_ALIAS | ARM_CP_FPU | ARM_CP_EL3_NO_EL2_KEEP,
5074 .fieldoffset = offsetof(CPUARMState, vfp.xregs[ARM_VFP_FPEXC]) },
5075 { .name = "DACR32_EL2", .state = ARM_CP_STATE_AA64,
5076 .opc0 = 3, .opc1 = 4, .crn = 3, .crm = 0, .opc2 = 0,
5077 .access = PL2_RW, .resetvalue = 0, .type = ARM_CP_EL3_NO_EL2_KEEP,
5078 .writefn = dacr_write, .raw_writefn = raw_write,
5079 .fieldoffset = offsetof(CPUARMState, cp15.dacr32_el2) },
5080 { .name = "IFSR32_EL2", .state = ARM_CP_STATE_AA64,
5081 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 0, .opc2 = 1,
5082 .access = PL2_RW, .resetvalue = 0, .type = ARM_CP_EL3_NO_EL2_KEEP,
5083 .fieldoffset = offsetof(CPUARMState, cp15.ifsr32_el2) },
5084 { .name = "SPSR_IRQ", .state = ARM_CP_STATE_AA64,
5085 .type = ARM_CP_ALIAS,
5086 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 0,
5087 .access = PL2_RW,
5088 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_IRQ]) },
5089 { .name = "SPSR_ABT", .state = ARM_CP_STATE_AA64,
5090 .type = ARM_CP_ALIAS,
5091 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 1,
5092 .access = PL2_RW,
5093 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_ABT]) },
5094 { .name = "SPSR_UND", .state = ARM_CP_STATE_AA64,
5095 .type = ARM_CP_ALIAS,
5096 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 2,
5097 .access = PL2_RW,
5098 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_UND]) },
5099 { .name = "SPSR_FIQ", .state = ARM_CP_STATE_AA64,
5100 .type = ARM_CP_ALIAS,
5101 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 3,
5102 .access = PL2_RW,
5103 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_FIQ]) },
5104 { .name = "MDCR_EL3", .state = ARM_CP_STATE_AA64,
5105 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 3, .opc2 = 1,
5106 .resetvalue = 0,
5107 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el3) },
5108 { .name = "SDCR", .type = ARM_CP_ALIAS,
5109 .cp = 15, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 1,
5110 .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
5111 .writefn = sdcr_write,
5112 .fieldoffset = offsetoflow32(CPUARMState, cp15.mdcr_el3) },
5115 static void do_hcr_write(CPUARMState *env, uint64_t value, uint64_t valid_mask)
5117 ARMCPU *cpu = env_archcpu(env);
5119 if (arm_feature(env, ARM_FEATURE_V8)) {
5120 valid_mask |= MAKE_64BIT_MASK(0, 34); /* ARMv8.0 */
5121 } else {
5122 valid_mask |= MAKE_64BIT_MASK(0, 28); /* ARMv7VE */
5125 if (arm_feature(env, ARM_FEATURE_EL3)) {
5126 valid_mask &= ~HCR_HCD;
5127 } else if (cpu->psci_conduit != QEMU_PSCI_CONDUIT_SMC) {
5128 /* Architecturally HCR.TSC is RES0 if EL3 is not implemented.
5129 * However, if we're using the SMC PSCI conduit then QEMU is
5130 * effectively acting like EL3 firmware and so the guest at
5131 * EL2 should retain the ability to prevent EL1 from being
5132 * able to make SMC calls into the ersatz firmware, so in
5133 * that case HCR.TSC should be read/write.
5135 valid_mask &= ~HCR_TSC;
5138 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
5139 if (cpu_isar_feature(aa64_vh, cpu)) {
5140 valid_mask |= HCR_E2H;
5142 if (cpu_isar_feature(aa64_ras, cpu)) {
5143 valid_mask |= HCR_TERR | HCR_TEA;
5145 if (cpu_isar_feature(aa64_lor, cpu)) {
5146 valid_mask |= HCR_TLOR;
5148 if (cpu_isar_feature(aa64_pauth, cpu)) {
5149 valid_mask |= HCR_API | HCR_APK;
5151 if (cpu_isar_feature(aa64_mte, cpu)) {
5152 valid_mask |= HCR_ATA | HCR_DCT | HCR_TID5;
5154 if (cpu_isar_feature(aa64_scxtnum, cpu)) {
5155 valid_mask |= HCR_ENSCXT;
5157 if (cpu_isar_feature(aa64_fwb, cpu)) {
5158 valid_mask |= HCR_FWB;
5162 /* Clear RES0 bits. */
5163 value &= valid_mask;
5166 * These bits change the MMU setup:
5167 * HCR_VM enables stage 2 translation
5168 * HCR_PTW forbids certain page-table setups
5169 * HCR_DC disables stage1 and enables stage2 translation
5170 * HCR_DCT enables tagging on (disabled) stage1 translation
5171 * HCR_FWB changes the interpretation of stage2 descriptor bits
5173 if ((env->cp15.hcr_el2 ^ value) &
5174 (HCR_VM | HCR_PTW | HCR_DC | HCR_DCT | HCR_FWB)) {
5175 tlb_flush(CPU(cpu));
5177 env->cp15.hcr_el2 = value;
5180 * Updates to VI and VF require us to update the status of
5181 * virtual interrupts, which are the logical OR of these bits
5182 * and the state of the input lines from the GIC. (This requires
5183 * that we have the iothread lock, which is done by marking the
5184 * reginfo structs as ARM_CP_IO.)
5185 * Note that if a write to HCR pends a VIRQ or VFIQ it is never
5186 * possible for it to be taken immediately, because VIRQ and
5187 * VFIQ are masked unless running at EL0 or EL1, and HCR
5188 * can only be written at EL2.
5190 g_assert(qemu_mutex_iothread_locked());
5191 arm_cpu_update_virq(cpu);
5192 arm_cpu_update_vfiq(cpu);
5193 arm_cpu_update_vserr(cpu);
5196 static void hcr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
5198 do_hcr_write(env, value, 0);
5201 static void hcr_writehigh(CPUARMState *env, const ARMCPRegInfo *ri,
5202 uint64_t value)
5204 /* Handle HCR2 write, i.e. write to high half of HCR_EL2 */
5205 value = deposit64(env->cp15.hcr_el2, 32, 32, value);
5206 do_hcr_write(env, value, MAKE_64BIT_MASK(0, 32));
5209 static void hcr_writelow(CPUARMState *env, const ARMCPRegInfo *ri,
5210 uint64_t value)
5212 /* Handle HCR write, i.e. write to low half of HCR_EL2 */
5213 value = deposit64(env->cp15.hcr_el2, 0, 32, value);
5214 do_hcr_write(env, value, MAKE_64BIT_MASK(32, 32));
5218 * Return the effective value of HCR_EL2.
5219 * Bits that are not included here:
5220 * RW (read from SCR_EL3.RW as needed)
5222 uint64_t arm_hcr_el2_eff(CPUARMState *env)
5224 uint64_t ret = env->cp15.hcr_el2;
5226 if (!arm_is_el2_enabled(env)) {
5228 * "This register has no effect if EL2 is not enabled in the
5229 * current Security state". This is ARMv8.4-SecEL2 speak for
5230 * !(SCR_EL3.NS==1 || SCR_EL3.EEL2==1).
5232 * Prior to that, the language was "In an implementation that
5233 * includes EL3, when the value of SCR_EL3.NS is 0 the PE behaves
5234 * as if this field is 0 for all purposes other than a direct
5235 * read or write access of HCR_EL2". With lots of enumeration
5236 * on a per-field basis. In current QEMU, this is condition
5237 * is arm_is_secure_below_el3.
5239 * Since the v8.4 language applies to the entire register, and
5240 * appears to be backward compatible, use that.
5242 return 0;
5246 * For a cpu that supports both aarch64 and aarch32, we can set bits
5247 * in HCR_EL2 (e.g. via EL3) that are RES0 when we enter EL2 as aa32.
5248 * Ignore all of the bits in HCR+HCR2 that are not valid for aarch32.
5250 if (!arm_el_is_aa64(env, 2)) {
5251 uint64_t aa32_valid;
5254 * These bits are up-to-date as of ARMv8.6.
5255 * For HCR, it's easiest to list just the 2 bits that are invalid.
5256 * For HCR2, list those that are valid.
5258 aa32_valid = MAKE_64BIT_MASK(0, 32) & ~(HCR_RW | HCR_TDZ);
5259 aa32_valid |= (HCR_CD | HCR_ID | HCR_TERR | HCR_TEA | HCR_MIOCNCE |
5260 HCR_TID4 | HCR_TICAB | HCR_TOCU | HCR_TTLBIS);
5261 ret &= aa32_valid;
5264 if (ret & HCR_TGE) {
5265 /* These bits are up-to-date as of ARMv8.6. */
5266 if (ret & HCR_E2H) {
5267 ret &= ~(HCR_VM | HCR_FMO | HCR_IMO | HCR_AMO |
5268 HCR_BSU_MASK | HCR_DC | HCR_TWI | HCR_TWE |
5269 HCR_TID0 | HCR_TID2 | HCR_TPCP | HCR_TPU |
5270 HCR_TDZ | HCR_CD | HCR_ID | HCR_MIOCNCE |
5271 HCR_TID4 | HCR_TICAB | HCR_TOCU | HCR_ENSCXT |
5272 HCR_TTLBIS | HCR_TTLBOS | HCR_TID5);
5273 } else {
5274 ret |= HCR_FMO | HCR_IMO | HCR_AMO;
5276 ret &= ~(HCR_SWIO | HCR_PTW | HCR_VF | HCR_VI | HCR_VSE |
5277 HCR_FB | HCR_TID1 | HCR_TID3 | HCR_TSC | HCR_TACR |
5278 HCR_TSW | HCR_TTLB | HCR_TVM | HCR_HCD | HCR_TRVM |
5279 HCR_TLOR);
5282 return ret;
5286 * Corresponds to ARM pseudocode function ELIsInHost().
5288 bool el_is_in_host(CPUARMState *env, int el)
5290 uint64_t mask;
5293 * Since we only care about E2H and TGE, we can skip arm_hcr_el2_eff().
5294 * Perform the simplest bit tests first, and validate EL2 afterward.
5296 if (el & 1) {
5297 return false; /* EL1 or EL3 */
5301 * Note that hcr_write() checks isar_feature_aa64_vh(),
5302 * aka HaveVirtHostExt(), in allowing HCR_E2H to be set.
5304 mask = el ? HCR_E2H : HCR_E2H | HCR_TGE;
5305 if ((env->cp15.hcr_el2 & mask) != mask) {
5306 return false;
5309 /* TGE and/or E2H set: double check those bits are currently legal. */
5310 return arm_is_el2_enabled(env) && arm_el_is_aa64(env, 2);
5313 static void hcrx_write(CPUARMState *env, const ARMCPRegInfo *ri,
5314 uint64_t value)
5316 uint64_t valid_mask = 0;
5318 /* No features adding bits to HCRX are implemented. */
5320 /* Clear RES0 bits. */
5321 env->cp15.hcrx_el2 = value & valid_mask;
5324 static CPAccessResult access_hxen(CPUARMState *env, const ARMCPRegInfo *ri,
5325 bool isread)
5327 if (arm_current_el(env) < 3
5328 && arm_feature(env, ARM_FEATURE_EL3)
5329 && !(env->cp15.scr_el3 & SCR_HXEN)) {
5330 return CP_ACCESS_TRAP_EL3;
5332 return CP_ACCESS_OK;
5335 static const ARMCPRegInfo hcrx_el2_reginfo = {
5336 .name = "HCRX_EL2", .state = ARM_CP_STATE_AA64,
5337 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 2, .opc2 = 2,
5338 .access = PL2_RW, .writefn = hcrx_write, .accessfn = access_hxen,
5339 .fieldoffset = offsetof(CPUARMState, cp15.hcrx_el2),
5342 /* Return the effective value of HCRX_EL2. */
5343 uint64_t arm_hcrx_el2_eff(CPUARMState *env)
5346 * The bits in this register behave as 0 for all purposes other than
5347 * direct reads of the register if:
5348 * - EL2 is not enabled in the current security state,
5349 * - SCR_EL3.HXEn is 0.
5351 if (!arm_is_el2_enabled(env)
5352 || (arm_feature(env, ARM_FEATURE_EL3)
5353 && !(env->cp15.scr_el3 & SCR_HXEN))) {
5354 return 0;
5356 return env->cp15.hcrx_el2;
5359 static void cptr_el2_write(CPUARMState *env, const ARMCPRegInfo *ri,
5360 uint64_t value)
5363 * For A-profile AArch32 EL3, if NSACR.CP10
5364 * is 0 then HCPTR.{TCP11,TCP10} ignore writes and read as 1.
5366 if (arm_feature(env, ARM_FEATURE_EL3) && !arm_el_is_aa64(env, 3) &&
5367 !arm_is_secure(env) && !extract32(env->cp15.nsacr, 10, 1)) {
5368 uint64_t mask = R_HCPTR_TCP11_MASK | R_HCPTR_TCP10_MASK;
5369 value = (value & ~mask) | (env->cp15.cptr_el[2] & mask);
5371 env->cp15.cptr_el[2] = value;
5374 static uint64_t cptr_el2_read(CPUARMState *env, const ARMCPRegInfo *ri)
5377 * For A-profile AArch32 EL3, if NSACR.CP10
5378 * is 0 then HCPTR.{TCP11,TCP10} ignore writes and read as 1.
5380 uint64_t value = env->cp15.cptr_el[2];
5382 if (arm_feature(env, ARM_FEATURE_EL3) && !arm_el_is_aa64(env, 3) &&
5383 !arm_is_secure(env) && !extract32(env->cp15.nsacr, 10, 1)) {
5384 value |= R_HCPTR_TCP11_MASK | R_HCPTR_TCP10_MASK;
5386 return value;
5389 static const ARMCPRegInfo el2_cp_reginfo[] = {
5390 { .name = "HCR_EL2", .state = ARM_CP_STATE_AA64,
5391 .type = ARM_CP_IO,
5392 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
5393 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
5394 .writefn = hcr_write },
5395 { .name = "HCR", .state = ARM_CP_STATE_AA32,
5396 .type = ARM_CP_ALIAS | ARM_CP_IO,
5397 .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
5398 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
5399 .writefn = hcr_writelow },
5400 { .name = "HACR_EL2", .state = ARM_CP_STATE_BOTH,
5401 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 7,
5402 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
5403 { .name = "ELR_EL2", .state = ARM_CP_STATE_AA64,
5404 .type = ARM_CP_ALIAS,
5405 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 1,
5406 .access = PL2_RW,
5407 .fieldoffset = offsetof(CPUARMState, elr_el[2]) },
5408 { .name = "ESR_EL2", .state = ARM_CP_STATE_BOTH,
5409 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 2, .opc2 = 0,
5410 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[2]) },
5411 { .name = "FAR_EL2", .state = ARM_CP_STATE_BOTH,
5412 .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 0,
5413 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[2]) },
5414 { .name = "HIFAR", .state = ARM_CP_STATE_AA32,
5415 .type = ARM_CP_ALIAS,
5416 .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 2,
5417 .access = PL2_RW,
5418 .fieldoffset = offsetofhigh32(CPUARMState, cp15.far_el[2]) },
5419 { .name = "SPSR_EL2", .state = ARM_CP_STATE_AA64,
5420 .type = ARM_CP_ALIAS,
5421 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 0,
5422 .access = PL2_RW,
5423 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_HYP]) },
5424 { .name = "VBAR_EL2", .state = ARM_CP_STATE_BOTH,
5425 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
5426 .access = PL2_RW, .writefn = vbar_write,
5427 .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[2]),
5428 .resetvalue = 0 },
5429 { .name = "SP_EL2", .state = ARM_CP_STATE_AA64,
5430 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 1, .opc2 = 0,
5431 .access = PL3_RW, .type = ARM_CP_ALIAS,
5432 .fieldoffset = offsetof(CPUARMState, sp_el[2]) },
5433 { .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
5434 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
5435 .access = PL2_RW, .accessfn = cptr_access, .resetvalue = 0,
5436 .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[2]),
5437 .readfn = cptr_el2_read, .writefn = cptr_el2_write },
5438 { .name = "MAIR_EL2", .state = ARM_CP_STATE_BOTH,
5439 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 0,
5440 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[2]),
5441 .resetvalue = 0 },
5442 { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
5443 .cp = 15, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 1,
5444 .access = PL2_RW, .type = ARM_CP_ALIAS,
5445 .fieldoffset = offsetofhigh32(CPUARMState, cp15.mair_el[2]) },
5446 { .name = "AMAIR_EL2", .state = ARM_CP_STATE_BOTH,
5447 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 0,
5448 .access = PL2_RW, .type = ARM_CP_CONST,
5449 .resetvalue = 0 },
5450 /* HAMAIR1 is mapped to AMAIR_EL2[63:32] */
5451 { .name = "HAMAIR1", .state = ARM_CP_STATE_AA32,
5452 .cp = 15, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 1,
5453 .access = PL2_RW, .type = ARM_CP_CONST,
5454 .resetvalue = 0 },
5455 { .name = "AFSR0_EL2", .state = ARM_CP_STATE_BOTH,
5456 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 0,
5457 .access = PL2_RW, .type = ARM_CP_CONST,
5458 .resetvalue = 0 },
5459 { .name = "AFSR1_EL2", .state = ARM_CP_STATE_BOTH,
5460 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 1,
5461 .access = PL2_RW, .type = ARM_CP_CONST,
5462 .resetvalue = 0 },
5463 { .name = "TCR_EL2", .state = ARM_CP_STATE_BOTH,
5464 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 2,
5465 .access = PL2_RW, .writefn = vmsa_tcr_el12_write,
5466 /* no .raw_writefn or .resetfn needed as we never use mask/base_mask */
5467 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[2]) },
5468 { .name = "VTCR", .state = ARM_CP_STATE_AA32,
5469 .cp = 15, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
5470 .type = ARM_CP_ALIAS,
5471 .access = PL2_RW, .accessfn = access_el3_aa32ns,
5472 .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
5473 { .name = "VTCR_EL2", .state = ARM_CP_STATE_AA64,
5474 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
5475 .access = PL2_RW,
5476 /* no .writefn needed as this can't cause an ASID change;
5477 * no .raw_writefn or .resetfn needed as we never use mask/base_mask
5479 .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
5480 { .name = "VTTBR", .state = ARM_CP_STATE_AA32,
5481 .cp = 15, .opc1 = 6, .crm = 2,
5482 .type = ARM_CP_64BIT | ARM_CP_ALIAS,
5483 .access = PL2_RW, .accessfn = access_el3_aa32ns,
5484 .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2),
5485 .writefn = vttbr_write },
5486 { .name = "VTTBR_EL2", .state = ARM_CP_STATE_AA64,
5487 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 0,
5488 .access = PL2_RW, .writefn = vttbr_write,
5489 .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2) },
5490 { .name = "SCTLR_EL2", .state = ARM_CP_STATE_BOTH,
5491 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 0,
5492 .access = PL2_RW, .raw_writefn = raw_write, .writefn = sctlr_write,
5493 .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[2]) },
5494 { .name = "TPIDR_EL2", .state = ARM_CP_STATE_BOTH,
5495 .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 2,
5496 .access = PL2_RW, .resetvalue = 0,
5497 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[2]) },
5498 { .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
5499 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
5500 .access = PL2_RW, .resetvalue = 0, .writefn = vmsa_tcr_ttbr_el2_write,
5501 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
5502 { .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
5503 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
5504 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
5505 { .name = "TLBIALLNSNH",
5506 .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 4,
5507 .type = ARM_CP_NO_RAW, .access = PL2_W,
5508 .writefn = tlbiall_nsnh_write },
5509 { .name = "TLBIALLNSNHIS",
5510 .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
5511 .type = ARM_CP_NO_RAW, .access = PL2_W,
5512 .writefn = tlbiall_nsnh_is_write },
5513 { .name = "TLBIALLH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 0,
5514 .type = ARM_CP_NO_RAW, .access = PL2_W,
5515 .writefn = tlbiall_hyp_write },
5516 { .name = "TLBIALLHIS", .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 0,
5517 .type = ARM_CP_NO_RAW, .access = PL2_W,
5518 .writefn = tlbiall_hyp_is_write },
5519 { .name = "TLBIMVAH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 1,
5520 .type = ARM_CP_NO_RAW, .access = PL2_W,
5521 .writefn = tlbimva_hyp_write },
5522 { .name = "TLBIMVAHIS", .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 1,
5523 .type = ARM_CP_NO_RAW, .access = PL2_W,
5524 .writefn = tlbimva_hyp_is_write },
5525 { .name = "TLBI_ALLE2", .state = ARM_CP_STATE_AA64,
5526 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 0,
5527 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5528 .writefn = tlbi_aa64_alle2_write },
5529 { .name = "TLBI_VAE2", .state = ARM_CP_STATE_AA64,
5530 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 1,
5531 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5532 .writefn = tlbi_aa64_vae2_write },
5533 { .name = "TLBI_VALE2", .state = ARM_CP_STATE_AA64,
5534 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 5,
5535 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5536 .writefn = tlbi_aa64_vae2_write },
5537 { .name = "TLBI_ALLE2IS", .state = ARM_CP_STATE_AA64,
5538 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 0,
5539 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5540 .writefn = tlbi_aa64_alle2is_write },
5541 { .name = "TLBI_VAE2IS", .state = ARM_CP_STATE_AA64,
5542 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 1,
5543 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5544 .writefn = tlbi_aa64_vae2is_write },
5545 { .name = "TLBI_VALE2IS", .state = ARM_CP_STATE_AA64,
5546 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 5,
5547 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
5548 .writefn = tlbi_aa64_vae2is_write },
5549 #ifndef CONFIG_USER_ONLY
5550 /* Unlike the other EL2-related AT operations, these must
5551 * UNDEF from EL3 if EL2 is not implemented, which is why we
5552 * define them here rather than with the rest of the AT ops.
5554 { .name = "AT_S1E2R", .state = ARM_CP_STATE_AA64,
5555 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
5556 .access = PL2_W, .accessfn = at_s1e2_access,
5557 .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC | ARM_CP_EL3_NO_EL2_UNDEF,
5558 .writefn = ats_write64 },
5559 { .name = "AT_S1E2W", .state = ARM_CP_STATE_AA64,
5560 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
5561 .access = PL2_W, .accessfn = at_s1e2_access,
5562 .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC | ARM_CP_EL3_NO_EL2_UNDEF,
5563 .writefn = ats_write64 },
5564 /* The AArch32 ATS1H* operations are CONSTRAINED UNPREDICTABLE
5565 * if EL2 is not implemented; we choose to UNDEF. Behaviour at EL3
5566 * with SCR.NS == 0 outside Monitor mode is UNPREDICTABLE; we choose
5567 * to behave as if SCR.NS was 1.
5569 { .name = "ATS1HR", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
5570 .access = PL2_W,
5571 .writefn = ats1h_write, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC },
5572 { .name = "ATS1HW", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
5573 .access = PL2_W,
5574 .writefn = ats1h_write, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC },
5575 { .name = "CNTHCTL_EL2", .state = ARM_CP_STATE_BOTH,
5576 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 1, .opc2 = 0,
5577 /* ARMv7 requires bit 0 and 1 to reset to 1. ARMv8 defines the
5578 * reset values as IMPDEF. We choose to reset to 3 to comply with
5579 * both ARMv7 and ARMv8.
5581 .access = PL2_RW, .resetvalue = 3,
5582 .fieldoffset = offsetof(CPUARMState, cp15.cnthctl_el2) },
5583 { .name = "CNTVOFF_EL2", .state = ARM_CP_STATE_AA64,
5584 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 0, .opc2 = 3,
5585 .access = PL2_RW, .type = ARM_CP_IO, .resetvalue = 0,
5586 .writefn = gt_cntvoff_write,
5587 .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
5588 { .name = "CNTVOFF", .cp = 15, .opc1 = 4, .crm = 14,
5589 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS | ARM_CP_IO,
5590 .writefn = gt_cntvoff_write,
5591 .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
5592 { .name = "CNTHP_CVAL_EL2", .state = ARM_CP_STATE_AA64,
5593 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 2,
5594 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
5595 .type = ARM_CP_IO, .access = PL2_RW,
5596 .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
5597 { .name = "CNTHP_CVAL", .cp = 15, .opc1 = 6, .crm = 14,
5598 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
5599 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_IO,
5600 .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
5601 { .name = "CNTHP_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
5602 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 0,
5603 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL2_RW,
5604 .resetfn = gt_hyp_timer_reset,
5605 .readfn = gt_hyp_tval_read, .writefn = gt_hyp_tval_write },
5606 { .name = "CNTHP_CTL_EL2", .state = ARM_CP_STATE_BOTH,
5607 .type = ARM_CP_IO,
5608 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 1,
5609 .access = PL2_RW,
5610 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].ctl),
5611 .resetvalue = 0,
5612 .writefn = gt_hyp_ctl_write, .raw_writefn = raw_write },
5613 #endif
5614 { .name = "HPFAR", .state = ARM_CP_STATE_AA32,
5615 .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
5616 .access = PL2_RW, .accessfn = access_el3_aa32ns,
5617 .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
5618 { .name = "HPFAR_EL2", .state = ARM_CP_STATE_AA64,
5619 .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
5620 .access = PL2_RW,
5621 .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
5622 { .name = "HSTR_EL2", .state = ARM_CP_STATE_BOTH,
5623 .cp = 15, .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 3,
5624 .access = PL2_RW,
5625 .fieldoffset = offsetof(CPUARMState, cp15.hstr_el2) },
5628 static const ARMCPRegInfo el2_v8_cp_reginfo[] = {
5629 { .name = "HCR2", .state = ARM_CP_STATE_AA32,
5630 .type = ARM_CP_ALIAS | ARM_CP_IO,
5631 .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 4,
5632 .access = PL2_RW,
5633 .fieldoffset = offsetofhigh32(CPUARMState, cp15.hcr_el2),
5634 .writefn = hcr_writehigh },
5637 static CPAccessResult sel2_access(CPUARMState *env, const ARMCPRegInfo *ri,
5638 bool isread)
5640 if (arm_current_el(env) == 3 || arm_is_secure_below_el3(env)) {
5641 return CP_ACCESS_OK;
5643 return CP_ACCESS_TRAP_UNCATEGORIZED;
5646 static const ARMCPRegInfo el2_sec_cp_reginfo[] = {
5647 { .name = "VSTTBR_EL2", .state = ARM_CP_STATE_AA64,
5648 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 6, .opc2 = 0,
5649 .access = PL2_RW, .accessfn = sel2_access,
5650 .fieldoffset = offsetof(CPUARMState, cp15.vsttbr_el2) },
5651 { .name = "VSTCR_EL2", .state = ARM_CP_STATE_AA64,
5652 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 6, .opc2 = 2,
5653 .access = PL2_RW, .accessfn = sel2_access,
5654 .fieldoffset = offsetof(CPUARMState, cp15.vstcr_el2) },
5657 static CPAccessResult nsacr_access(CPUARMState *env, const ARMCPRegInfo *ri,
5658 bool isread)
5660 /* The NSACR is RW at EL3, and RO for NS EL1 and NS EL2.
5661 * At Secure EL1 it traps to EL3 or EL2.
5663 if (arm_current_el(env) == 3) {
5664 return CP_ACCESS_OK;
5666 if (arm_is_secure_below_el3(env)) {
5667 if (env->cp15.scr_el3 & SCR_EEL2) {
5668 return CP_ACCESS_TRAP_EL2;
5670 return CP_ACCESS_TRAP_EL3;
5672 /* Accesses from EL1 NS and EL2 NS are UNDEF for write but allow reads. */
5673 if (isread) {
5674 return CP_ACCESS_OK;
5676 return CP_ACCESS_TRAP_UNCATEGORIZED;
5679 static const ARMCPRegInfo el3_cp_reginfo[] = {
5680 { .name = "SCR_EL3", .state = ARM_CP_STATE_AA64,
5681 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 0,
5682 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.scr_el3),
5683 .resetfn = scr_reset, .writefn = scr_write },
5684 { .name = "SCR", .type = ARM_CP_ALIAS | ARM_CP_NEWEL,
5685 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 0,
5686 .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
5687 .fieldoffset = offsetoflow32(CPUARMState, cp15.scr_el3),
5688 .writefn = scr_write },
5689 { .name = "SDER32_EL3", .state = ARM_CP_STATE_AA64,
5690 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 1,
5691 .access = PL3_RW, .resetvalue = 0,
5692 .fieldoffset = offsetof(CPUARMState, cp15.sder) },
5693 { .name = "SDER",
5694 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 1,
5695 .access = PL3_RW, .resetvalue = 0,
5696 .fieldoffset = offsetoflow32(CPUARMState, cp15.sder) },
5697 { .name = "MVBAR", .cp = 15, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
5698 .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
5699 .writefn = vbar_write, .resetvalue = 0,
5700 .fieldoffset = offsetof(CPUARMState, cp15.mvbar) },
5701 { .name = "TTBR0_EL3", .state = ARM_CP_STATE_AA64,
5702 .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 0,
5703 .access = PL3_RW, .resetvalue = 0,
5704 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[3]) },
5705 { .name = "TCR_EL3", .state = ARM_CP_STATE_AA64,
5706 .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 2,
5707 .access = PL3_RW,
5708 /* no .writefn needed as this can't cause an ASID change;
5709 * we must provide a .raw_writefn and .resetfn because we handle
5710 * reset and migration for the AArch32 TTBCR(S), which might be
5711 * using mask and base_mask.
5713 .resetfn = vmsa_ttbcr_reset, .raw_writefn = vmsa_ttbcr_raw_write,
5714 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[3]) },
5715 { .name = "ELR_EL3", .state = ARM_CP_STATE_AA64,
5716 .type = ARM_CP_ALIAS,
5717 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 1,
5718 .access = PL3_RW,
5719 .fieldoffset = offsetof(CPUARMState, elr_el[3]) },
5720 { .name = "ESR_EL3", .state = ARM_CP_STATE_AA64,
5721 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 2, .opc2 = 0,
5722 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[3]) },
5723 { .name = "FAR_EL3", .state = ARM_CP_STATE_AA64,
5724 .opc0 = 3, .opc1 = 6, .crn = 6, .crm = 0, .opc2 = 0,
5725 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[3]) },
5726 { .name = "SPSR_EL3", .state = ARM_CP_STATE_AA64,
5727 .type = ARM_CP_ALIAS,
5728 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 0,
5729 .access = PL3_RW,
5730 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_MON]) },
5731 { .name = "VBAR_EL3", .state = ARM_CP_STATE_AA64,
5732 .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 0,
5733 .access = PL3_RW, .writefn = vbar_write,
5734 .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[3]),
5735 .resetvalue = 0 },
5736 { .name = "CPTR_EL3", .state = ARM_CP_STATE_AA64,
5737 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 2,
5738 .access = PL3_RW, .accessfn = cptr_access, .resetvalue = 0,
5739 .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[3]) },
5740 { .name = "TPIDR_EL3", .state = ARM_CP_STATE_AA64,
5741 .opc0 = 3, .opc1 = 6, .crn = 13, .crm = 0, .opc2 = 2,
5742 .access = PL3_RW, .resetvalue = 0,
5743 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[3]) },
5744 { .name = "AMAIR_EL3", .state = ARM_CP_STATE_AA64,
5745 .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 3, .opc2 = 0,
5746 .access = PL3_RW, .type = ARM_CP_CONST,
5747 .resetvalue = 0 },
5748 { .name = "AFSR0_EL3", .state = ARM_CP_STATE_BOTH,
5749 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 0,
5750 .access = PL3_RW, .type = ARM_CP_CONST,
5751 .resetvalue = 0 },
5752 { .name = "AFSR1_EL3", .state = ARM_CP_STATE_BOTH,
5753 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 1,
5754 .access = PL3_RW, .type = ARM_CP_CONST,
5755 .resetvalue = 0 },
5756 { .name = "TLBI_ALLE3IS", .state = ARM_CP_STATE_AA64,
5757 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 0,
5758 .access = PL3_W, .type = ARM_CP_NO_RAW,
5759 .writefn = tlbi_aa64_alle3is_write },
5760 { .name = "TLBI_VAE3IS", .state = ARM_CP_STATE_AA64,
5761 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 1,
5762 .access = PL3_W, .type = ARM_CP_NO_RAW,
5763 .writefn = tlbi_aa64_vae3is_write },
5764 { .name = "TLBI_VALE3IS", .state = ARM_CP_STATE_AA64,
5765 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 5,
5766 .access = PL3_W, .type = ARM_CP_NO_RAW,
5767 .writefn = tlbi_aa64_vae3is_write },
5768 { .name = "TLBI_ALLE3", .state = ARM_CP_STATE_AA64,
5769 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 0,
5770 .access = PL3_W, .type = ARM_CP_NO_RAW,
5771 .writefn = tlbi_aa64_alle3_write },
5772 { .name = "TLBI_VAE3", .state = ARM_CP_STATE_AA64,
5773 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 1,
5774 .access = PL3_W, .type = ARM_CP_NO_RAW,
5775 .writefn = tlbi_aa64_vae3_write },
5776 { .name = "TLBI_VALE3", .state = ARM_CP_STATE_AA64,
5777 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 5,
5778 .access = PL3_W, .type = ARM_CP_NO_RAW,
5779 .writefn = tlbi_aa64_vae3_write },
5782 #ifndef CONFIG_USER_ONLY
5783 /* Test if system register redirection is to occur in the current state. */
5784 static bool redirect_for_e2h(CPUARMState *env)
5786 return arm_current_el(env) == 2 && (arm_hcr_el2_eff(env) & HCR_E2H);
5789 static uint64_t el2_e2h_read(CPUARMState *env, const ARMCPRegInfo *ri)
5791 CPReadFn *readfn;
5793 if (redirect_for_e2h(env)) {
5794 /* Switch to the saved EL2 version of the register. */
5795 ri = ri->opaque;
5796 readfn = ri->readfn;
5797 } else {
5798 readfn = ri->orig_readfn;
5800 if (readfn == NULL) {
5801 readfn = raw_read;
5803 return readfn(env, ri);
5806 static void el2_e2h_write(CPUARMState *env, const ARMCPRegInfo *ri,
5807 uint64_t value)
5809 CPWriteFn *writefn;
5811 if (redirect_for_e2h(env)) {
5812 /* Switch to the saved EL2 version of the register. */
5813 ri = ri->opaque;
5814 writefn = ri->writefn;
5815 } else {
5816 writefn = ri->orig_writefn;
5818 if (writefn == NULL) {
5819 writefn = raw_write;
5821 writefn(env, ri, value);
5824 static void define_arm_vh_e2h_redirects_aliases(ARMCPU *cpu)
5826 struct E2HAlias {
5827 uint32_t src_key, dst_key, new_key;
5828 const char *src_name, *dst_name, *new_name;
5829 bool (*feature)(const ARMISARegisters *id);
5832 #define K(op0, op1, crn, crm, op2) \
5833 ENCODE_AA64_CP_REG(CP_REG_ARM64_SYSREG_CP, crn, crm, op0, op1, op2)
5835 static const struct E2HAlias aliases[] = {
5836 { K(3, 0, 1, 0, 0), K(3, 4, 1, 0, 0), K(3, 5, 1, 0, 0),
5837 "SCTLR", "SCTLR_EL2", "SCTLR_EL12" },
5838 { K(3, 0, 1, 0, 2), K(3, 4, 1, 1, 2), K(3, 5, 1, 0, 2),
5839 "CPACR", "CPTR_EL2", "CPACR_EL12" },
5840 { K(3, 0, 2, 0, 0), K(3, 4, 2, 0, 0), K(3, 5, 2, 0, 0),
5841 "TTBR0_EL1", "TTBR0_EL2", "TTBR0_EL12" },
5842 { K(3, 0, 2, 0, 1), K(3, 4, 2, 0, 1), K(3, 5, 2, 0, 1),
5843 "TTBR1_EL1", "TTBR1_EL2", "TTBR1_EL12" },
5844 { K(3, 0, 2, 0, 2), K(3, 4, 2, 0, 2), K(3, 5, 2, 0, 2),
5845 "TCR_EL1", "TCR_EL2", "TCR_EL12" },
5846 { K(3, 0, 4, 0, 0), K(3, 4, 4, 0, 0), K(3, 5, 4, 0, 0),
5847 "SPSR_EL1", "SPSR_EL2", "SPSR_EL12" },
5848 { K(3, 0, 4, 0, 1), K(3, 4, 4, 0, 1), K(3, 5, 4, 0, 1),
5849 "ELR_EL1", "ELR_EL2", "ELR_EL12" },
5850 { K(3, 0, 5, 1, 0), K(3, 4, 5, 1, 0), K(3, 5, 5, 1, 0),
5851 "AFSR0_EL1", "AFSR0_EL2", "AFSR0_EL12" },
5852 { K(3, 0, 5, 1, 1), K(3, 4, 5, 1, 1), K(3, 5, 5, 1, 1),
5853 "AFSR1_EL1", "AFSR1_EL2", "AFSR1_EL12" },
5854 { K(3, 0, 5, 2, 0), K(3, 4, 5, 2, 0), K(3, 5, 5, 2, 0),
5855 "ESR_EL1", "ESR_EL2", "ESR_EL12" },
5856 { K(3, 0, 6, 0, 0), K(3, 4, 6, 0, 0), K(3, 5, 6, 0, 0),
5857 "FAR_EL1", "FAR_EL2", "FAR_EL12" },
5858 { K(3, 0, 10, 2, 0), K(3, 4, 10, 2, 0), K(3, 5, 10, 2, 0),
5859 "MAIR_EL1", "MAIR_EL2", "MAIR_EL12" },
5860 { K(3, 0, 10, 3, 0), K(3, 4, 10, 3, 0), K(3, 5, 10, 3, 0),
5861 "AMAIR0", "AMAIR_EL2", "AMAIR_EL12" },
5862 { K(3, 0, 12, 0, 0), K(3, 4, 12, 0, 0), K(3, 5, 12, 0, 0),
5863 "VBAR", "VBAR_EL2", "VBAR_EL12" },
5864 { K(3, 0, 13, 0, 1), K(3, 4, 13, 0, 1), K(3, 5, 13, 0, 1),
5865 "CONTEXTIDR_EL1", "CONTEXTIDR_EL2", "CONTEXTIDR_EL12" },
5866 { K(3, 0, 14, 1, 0), K(3, 4, 14, 1, 0), K(3, 5, 14, 1, 0),
5867 "CNTKCTL", "CNTHCTL_EL2", "CNTKCTL_EL12" },
5870 * Note that redirection of ZCR is mentioned in the description
5871 * of ZCR_EL2, and aliasing in the description of ZCR_EL1, but
5872 * not in the summary table.
5874 { K(3, 0, 1, 2, 0), K(3, 4, 1, 2, 0), K(3, 5, 1, 2, 0),
5875 "ZCR_EL1", "ZCR_EL2", "ZCR_EL12", isar_feature_aa64_sve },
5877 { K(3, 0, 5, 6, 0), K(3, 4, 5, 6, 0), K(3, 5, 5, 6, 0),
5878 "TFSR_EL1", "TFSR_EL2", "TFSR_EL12", isar_feature_aa64_mte },
5880 { K(3, 0, 13, 0, 7), K(3, 4, 13, 0, 7), K(3, 5, 13, 0, 7),
5881 "SCXTNUM_EL1", "SCXTNUM_EL2", "SCXTNUM_EL12",
5882 isar_feature_aa64_scxtnum },
5884 /* TODO: ARMv8.2-SPE -- PMSCR_EL2 */
5885 /* TODO: ARMv8.4-Trace -- TRFCR_EL2 */
5887 #undef K
5889 size_t i;
5891 for (i = 0; i < ARRAY_SIZE(aliases); i++) {
5892 const struct E2HAlias *a = &aliases[i];
5893 ARMCPRegInfo *src_reg, *dst_reg, *new_reg;
5894 bool ok;
5896 if (a->feature && !a->feature(&cpu->isar)) {
5897 continue;
5900 src_reg = g_hash_table_lookup(cpu->cp_regs,
5901 (gpointer)(uintptr_t)a->src_key);
5902 dst_reg = g_hash_table_lookup(cpu->cp_regs,
5903 (gpointer)(uintptr_t)a->dst_key);
5904 g_assert(src_reg != NULL);
5905 g_assert(dst_reg != NULL);
5907 /* Cross-compare names to detect typos in the keys. */
5908 g_assert(strcmp(src_reg->name, a->src_name) == 0);
5909 g_assert(strcmp(dst_reg->name, a->dst_name) == 0);
5911 /* None of the core system registers use opaque; we will. */
5912 g_assert(src_reg->opaque == NULL);
5914 /* Create alias before redirection so we dup the right data. */
5915 new_reg = g_memdup(src_reg, sizeof(ARMCPRegInfo));
5917 new_reg->name = a->new_name;
5918 new_reg->type |= ARM_CP_ALIAS;
5919 /* Remove PL1/PL0 access, leaving PL2/PL3 R/W in place. */
5920 new_reg->access &= PL2_RW | PL3_RW;
5922 ok = g_hash_table_insert(cpu->cp_regs,
5923 (gpointer)(uintptr_t)a->new_key, new_reg);
5924 g_assert(ok);
5926 src_reg->opaque = dst_reg;
5927 src_reg->orig_readfn = src_reg->readfn ?: raw_read;
5928 src_reg->orig_writefn = src_reg->writefn ?: raw_write;
5929 if (!src_reg->raw_readfn) {
5930 src_reg->raw_readfn = raw_read;
5932 if (!src_reg->raw_writefn) {
5933 src_reg->raw_writefn = raw_write;
5935 src_reg->readfn = el2_e2h_read;
5936 src_reg->writefn = el2_e2h_write;
5939 #endif
5941 static CPAccessResult ctr_el0_access(CPUARMState *env, const ARMCPRegInfo *ri,
5942 bool isread)
5944 int cur_el = arm_current_el(env);
5946 if (cur_el < 2) {
5947 uint64_t hcr = arm_hcr_el2_eff(env);
5949 if (cur_el == 0) {
5950 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
5951 if (!(env->cp15.sctlr_el[2] & SCTLR_UCT)) {
5952 return CP_ACCESS_TRAP_EL2;
5954 } else {
5955 if (!(env->cp15.sctlr_el[1] & SCTLR_UCT)) {
5956 return CP_ACCESS_TRAP;
5958 if (hcr & HCR_TID2) {
5959 return CP_ACCESS_TRAP_EL2;
5962 } else if (hcr & HCR_TID2) {
5963 return CP_ACCESS_TRAP_EL2;
5967 if (arm_current_el(env) < 2 && arm_hcr_el2_eff(env) & HCR_TID2) {
5968 return CP_ACCESS_TRAP_EL2;
5971 return CP_ACCESS_OK;
5974 static void oslar_write(CPUARMState *env, const ARMCPRegInfo *ri,
5975 uint64_t value)
5977 /* Writes to OSLAR_EL1 may update the OS lock status, which can be
5978 * read via a bit in OSLSR_EL1.
5980 int oslock;
5982 if (ri->state == ARM_CP_STATE_AA32) {
5983 oslock = (value == 0xC5ACCE55);
5984 } else {
5985 oslock = value & 1;
5988 env->cp15.oslsr_el1 = deposit32(env->cp15.oslsr_el1, 1, 1, oslock);
5991 static const ARMCPRegInfo debug_cp_reginfo[] = {
5992 /* DBGDRAR, DBGDSAR: always RAZ since we don't implement memory mapped
5993 * debug components. The AArch64 version of DBGDRAR is named MDRAR_EL1;
5994 * unlike DBGDRAR it is never accessible from EL0.
5995 * DBGDSAR is deprecated and must RAZ from v8 anyway, so it has no AArch64
5996 * accessor.
5998 { .name = "DBGDRAR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 0,
5999 .access = PL0_R, .accessfn = access_tdra,
6000 .type = ARM_CP_CONST, .resetvalue = 0 },
6001 { .name = "MDRAR_EL1", .state = ARM_CP_STATE_AA64,
6002 .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
6003 .access = PL1_R, .accessfn = access_tdra,
6004 .type = ARM_CP_CONST, .resetvalue = 0 },
6005 { .name = "DBGDSAR", .cp = 14, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
6006 .access = PL0_R, .accessfn = access_tdra,
6007 .type = ARM_CP_CONST, .resetvalue = 0 },
6008 /* Monitor debug system control register; the 32-bit alias is DBGDSCRext. */
6009 { .name = "MDSCR_EL1", .state = ARM_CP_STATE_BOTH,
6010 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
6011 .access = PL1_RW, .accessfn = access_tda,
6012 .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1),
6013 .resetvalue = 0 },
6015 * MDCCSR_EL0[30:29] map to EDSCR[30:29]. Simply RAZ as the external
6016 * Debug Communication Channel is not implemented.
6018 { .name = "MDCCSR_EL0", .state = ARM_CP_STATE_AA64,
6019 .opc0 = 2, .opc1 = 3, .crn = 0, .crm = 1, .opc2 = 0,
6020 .access = PL0_R, .accessfn = access_tda,
6021 .type = ARM_CP_CONST, .resetvalue = 0 },
6023 * DBGDSCRint[15,12,5:2] map to MDSCR_EL1[15,12,5:2]. Map all bits as
6024 * it is unlikely a guest will care.
6025 * We don't implement the configurable EL0 access.
6027 { .name = "DBGDSCRint", .state = ARM_CP_STATE_AA32,
6028 .cp = 14, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
6029 .type = ARM_CP_ALIAS,
6030 .access = PL1_R, .accessfn = access_tda,
6031 .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1), },
6032 { .name = "OSLAR_EL1", .state = ARM_CP_STATE_BOTH,
6033 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 4,
6034 .access = PL1_W, .type = ARM_CP_NO_RAW,
6035 .accessfn = access_tdosa,
6036 .writefn = oslar_write },
6037 { .name = "OSLSR_EL1", .state = ARM_CP_STATE_BOTH,
6038 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 4,
6039 .access = PL1_R, .resetvalue = 10,
6040 .accessfn = access_tdosa,
6041 .fieldoffset = offsetof(CPUARMState, cp15.oslsr_el1) },
6042 /* Dummy OSDLR_EL1: 32-bit Linux will read this */
6043 { .name = "OSDLR_EL1", .state = ARM_CP_STATE_BOTH,
6044 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 4,
6045 .access = PL1_RW, .accessfn = access_tdosa,
6046 .type = ARM_CP_NOP },
6047 /* Dummy DBGVCR: Linux wants to clear this on startup, but we don't
6048 * implement vector catch debug events yet.
6050 { .name = "DBGVCR",
6051 .cp = 14, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
6052 .access = PL1_RW, .accessfn = access_tda,
6053 .type = ARM_CP_NOP },
6054 /* Dummy DBGVCR32_EL2 (which is only for a 64-bit hypervisor
6055 * to save and restore a 32-bit guest's DBGVCR)
6057 { .name = "DBGVCR32_EL2", .state = ARM_CP_STATE_AA64,
6058 .opc0 = 2, .opc1 = 4, .crn = 0, .crm = 7, .opc2 = 0,
6059 .access = PL2_RW, .accessfn = access_tda,
6060 .type = ARM_CP_NOP | ARM_CP_EL3_NO_EL2_KEEP },
6061 /* Dummy MDCCINT_EL1, since we don't implement the Debug Communications
6062 * Channel but Linux may try to access this register. The 32-bit
6063 * alias is DBGDCCINT.
6065 { .name = "MDCCINT_EL1", .state = ARM_CP_STATE_BOTH,
6066 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 0,
6067 .access = PL1_RW, .accessfn = access_tda,
6068 .type = ARM_CP_NOP },
6071 static const ARMCPRegInfo debug_lpae_cp_reginfo[] = {
6072 /* 64 bit access versions of the (dummy) debug registers */
6073 { .name = "DBGDRAR", .cp = 14, .crm = 1, .opc1 = 0,
6074 .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
6075 { .name = "DBGDSAR", .cp = 14, .crm = 2, .opc1 = 0,
6076 .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
6080 * Check for traps to RAS registers, which are controlled
6081 * by HCR_EL2.TERR and SCR_EL3.TERR.
6083 static CPAccessResult access_terr(CPUARMState *env, const ARMCPRegInfo *ri,
6084 bool isread)
6086 int el = arm_current_el(env);
6088 if (el < 2 && (arm_hcr_el2_eff(env) & HCR_TERR)) {
6089 return CP_ACCESS_TRAP_EL2;
6091 if (el < 3 && (env->cp15.scr_el3 & SCR_TERR)) {
6092 return CP_ACCESS_TRAP_EL3;
6094 return CP_ACCESS_OK;
6097 static uint64_t disr_read(CPUARMState *env, const ARMCPRegInfo *ri)
6099 int el = arm_current_el(env);
6101 if (el < 2 && (arm_hcr_el2_eff(env) & HCR_AMO)) {
6102 return env->cp15.vdisr_el2;
6104 if (el < 3 && (env->cp15.scr_el3 & SCR_EA)) {
6105 return 0; /* RAZ/WI */
6107 return env->cp15.disr_el1;
6110 static void disr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t val)
6112 int el = arm_current_el(env);
6114 if (el < 2 && (arm_hcr_el2_eff(env) & HCR_AMO)) {
6115 env->cp15.vdisr_el2 = val;
6116 return;
6118 if (el < 3 && (env->cp15.scr_el3 & SCR_EA)) {
6119 return; /* RAZ/WI */
6121 env->cp15.disr_el1 = val;
6125 * Minimal RAS implementation with no Error Records.
6126 * Which means that all of the Error Record registers:
6127 * ERXADDR_EL1
6128 * ERXCTLR_EL1
6129 * ERXFR_EL1
6130 * ERXMISC0_EL1
6131 * ERXMISC1_EL1
6132 * ERXMISC2_EL1
6133 * ERXMISC3_EL1
6134 * ERXPFGCDN_EL1 (RASv1p1)
6135 * ERXPFGCTL_EL1 (RASv1p1)
6136 * ERXPFGF_EL1 (RASv1p1)
6137 * ERXSTATUS_EL1
6138 * and
6139 * ERRSELR_EL1
6140 * may generate UNDEFINED, which is the effect we get by not
6141 * listing them at all.
6143 static const ARMCPRegInfo minimal_ras_reginfo[] = {
6144 { .name = "DISR_EL1", .state = ARM_CP_STATE_BOTH,
6145 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 1, .opc2 = 1,
6146 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.disr_el1),
6147 .readfn = disr_read, .writefn = disr_write, .raw_writefn = raw_write },
6148 { .name = "ERRIDR_EL1", .state = ARM_CP_STATE_BOTH,
6149 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 3, .opc2 = 0,
6150 .access = PL1_R, .accessfn = access_terr,
6151 .type = ARM_CP_CONST, .resetvalue = 0 },
6152 { .name = "VDISR_EL2", .state = ARM_CP_STATE_BOTH,
6153 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 1, .opc2 = 1,
6154 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.vdisr_el2) },
6155 { .name = "VSESR_EL2", .state = ARM_CP_STATE_BOTH,
6156 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 2, .opc2 = 3,
6157 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.vsesr_el2) },
6161 * Return the exception level to which exceptions should be taken
6162 * via SVEAccessTrap. This excludes the check for whether the exception
6163 * should be routed through AArch64.AdvSIMDFPAccessTrap. That can easily
6164 * be found by testing 0 < fp_exception_el < sve_exception_el.
6166 * C.f. the ARM pseudocode function CheckSVEEnabled. Note that the
6167 * pseudocode does *not* separate out the FP trap checks, but has them
6168 * all in one function.
6170 int sve_exception_el(CPUARMState *env, int el)
6172 #ifndef CONFIG_USER_ONLY
6173 if (el <= 1 && !el_is_in_host(env, el)) {
6174 switch (FIELD_EX64(env->cp15.cpacr_el1, CPACR_EL1, ZEN)) {
6175 case 1:
6176 if (el != 0) {
6177 break;
6179 /* fall through */
6180 case 0:
6181 case 2:
6182 return 1;
6186 if (el <= 2 && arm_is_el2_enabled(env)) {
6187 /* CPTR_EL2 changes format with HCR_EL2.E2H (regardless of TGE). */
6188 if (env->cp15.hcr_el2 & HCR_E2H) {
6189 switch (FIELD_EX64(env->cp15.cptr_el[2], CPTR_EL2, ZEN)) {
6190 case 1:
6191 if (el != 0 || !(env->cp15.hcr_el2 & HCR_TGE)) {
6192 break;
6194 /* fall through */
6195 case 0:
6196 case 2:
6197 return 2;
6199 } else {
6200 if (FIELD_EX64(env->cp15.cptr_el[2], CPTR_EL2, TZ)) {
6201 return 2;
6206 /* CPTR_EL3. Since EZ is negative we must check for EL3. */
6207 if (arm_feature(env, ARM_FEATURE_EL3)
6208 && !FIELD_EX64(env->cp15.cptr_el[3], CPTR_EL3, EZ)) {
6209 return 3;
6211 #endif
6212 return 0;
6215 uint32_t aarch64_sve_zcr_get_valid_len(ARMCPU *cpu, uint32_t start_len)
6217 uint32_t end_len;
6219 start_len = MIN(start_len, ARM_MAX_VQ - 1);
6220 end_len = start_len;
6222 if (!test_bit(start_len, cpu->sve_vq_map)) {
6223 end_len = find_last_bit(cpu->sve_vq_map, start_len);
6224 assert(end_len < start_len);
6226 return end_len;
6230 * Given that SVE is enabled, return the vector length for EL.
6232 uint32_t sve_zcr_len_for_el(CPUARMState *env, int el)
6234 ARMCPU *cpu = env_archcpu(env);
6235 uint32_t zcr_len = cpu->sve_max_vq - 1;
6237 if (el <= 1 && !el_is_in_host(env, el)) {
6238 zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[1]);
6240 if (el <= 2 && arm_feature(env, ARM_FEATURE_EL2)) {
6241 zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[2]);
6243 if (arm_feature(env, ARM_FEATURE_EL3)) {
6244 zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[3]);
6247 return aarch64_sve_zcr_get_valid_len(cpu, zcr_len);
6250 static void zcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
6251 uint64_t value)
6253 int cur_el = arm_current_el(env);
6254 int old_len = sve_zcr_len_for_el(env, cur_el);
6255 int new_len;
6257 /* Bits other than [3:0] are RAZ/WI. */
6258 QEMU_BUILD_BUG_ON(ARM_MAX_VQ > 16);
6259 raw_write(env, ri, value & 0xf);
6262 * Because we arrived here, we know both FP and SVE are enabled;
6263 * otherwise we would have trapped access to the ZCR_ELn register.
6265 new_len = sve_zcr_len_for_el(env, cur_el);
6266 if (new_len < old_len) {
6267 aarch64_sve_narrow_vq(env, new_len + 1);
6271 static const ARMCPRegInfo zcr_reginfo[] = {
6272 { .name = "ZCR_EL1", .state = ARM_CP_STATE_AA64,
6273 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 2, .opc2 = 0,
6274 .access = PL1_RW, .type = ARM_CP_SVE,
6275 .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[1]),
6276 .writefn = zcr_write, .raw_writefn = raw_write },
6277 { .name = "ZCR_EL2", .state = ARM_CP_STATE_AA64,
6278 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 2, .opc2 = 0,
6279 .access = PL2_RW, .type = ARM_CP_SVE,
6280 .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[2]),
6281 .writefn = zcr_write, .raw_writefn = raw_write },
6282 { .name = "ZCR_EL3", .state = ARM_CP_STATE_AA64,
6283 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 2, .opc2 = 0,
6284 .access = PL3_RW, .type = ARM_CP_SVE,
6285 .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[3]),
6286 .writefn = zcr_write, .raw_writefn = raw_write },
6289 void hw_watchpoint_update(ARMCPU *cpu, int n)
6291 CPUARMState *env = &cpu->env;
6292 vaddr len = 0;
6293 vaddr wvr = env->cp15.dbgwvr[n];
6294 uint64_t wcr = env->cp15.dbgwcr[n];
6295 int mask;
6296 int flags = BP_CPU | BP_STOP_BEFORE_ACCESS;
6298 if (env->cpu_watchpoint[n]) {
6299 cpu_watchpoint_remove_by_ref(CPU(cpu), env->cpu_watchpoint[n]);
6300 env->cpu_watchpoint[n] = NULL;
6303 if (!FIELD_EX64(wcr, DBGWCR, E)) {
6304 /* E bit clear : watchpoint disabled */
6305 return;
6308 switch (FIELD_EX64(wcr, DBGWCR, LSC)) {
6309 case 0:
6310 /* LSC 00 is reserved and must behave as if the wp is disabled */
6311 return;
6312 case 1:
6313 flags |= BP_MEM_READ;
6314 break;
6315 case 2:
6316 flags |= BP_MEM_WRITE;
6317 break;
6318 case 3:
6319 flags |= BP_MEM_ACCESS;
6320 break;
6323 /* Attempts to use both MASK and BAS fields simultaneously are
6324 * CONSTRAINED UNPREDICTABLE; we opt to ignore BAS in this case,
6325 * thus generating a watchpoint for every byte in the masked region.
6327 mask = FIELD_EX64(wcr, DBGWCR, MASK);
6328 if (mask == 1 || mask == 2) {
6329 /* Reserved values of MASK; we must act as if the mask value was
6330 * some non-reserved value, or as if the watchpoint were disabled.
6331 * We choose the latter.
6333 return;
6334 } else if (mask) {
6335 /* Watchpoint covers an aligned area up to 2GB in size */
6336 len = 1ULL << mask;
6337 /* If masked bits in WVR are not zero it's CONSTRAINED UNPREDICTABLE
6338 * whether the watchpoint fires when the unmasked bits match; we opt
6339 * to generate the exceptions.
6341 wvr &= ~(len - 1);
6342 } else {
6343 /* Watchpoint covers bytes defined by the byte address select bits */
6344 int bas = FIELD_EX64(wcr, DBGWCR, BAS);
6345 int basstart;
6347 if (extract64(wvr, 2, 1)) {
6348 /* Deprecated case of an only 4-aligned address. BAS[7:4] are
6349 * ignored, and BAS[3:0] define which bytes to watch.
6351 bas &= 0xf;
6354 if (bas == 0) {
6355 /* This must act as if the watchpoint is disabled */
6356 return;
6359 /* The BAS bits are supposed to be programmed to indicate a contiguous
6360 * range of bytes. Otherwise it is CONSTRAINED UNPREDICTABLE whether
6361 * we fire for each byte in the word/doubleword addressed by the WVR.
6362 * We choose to ignore any non-zero bits after the first range of 1s.
6364 basstart = ctz32(bas);
6365 len = cto32(bas >> basstart);
6366 wvr += basstart;
6369 cpu_watchpoint_insert(CPU(cpu), wvr, len, flags,
6370 &env->cpu_watchpoint[n]);
6373 void hw_watchpoint_update_all(ARMCPU *cpu)
6375 int i;
6376 CPUARMState *env = &cpu->env;
6378 /* Completely clear out existing QEMU watchpoints and our array, to
6379 * avoid possible stale entries following migration load.
6381 cpu_watchpoint_remove_all(CPU(cpu), BP_CPU);
6382 memset(env->cpu_watchpoint, 0, sizeof(env->cpu_watchpoint));
6384 for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_watchpoint); i++) {
6385 hw_watchpoint_update(cpu, i);
6389 static void dbgwvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
6390 uint64_t value)
6392 ARMCPU *cpu = env_archcpu(env);
6393 int i = ri->crm;
6396 * Bits [1:0] are RES0.
6398 * It is IMPLEMENTATION DEFINED whether [63:49] ([63:53] with FEAT_LVA)
6399 * are hardwired to the value of bit [48] ([52] with FEAT_LVA), or if
6400 * they contain the value written. It is CONSTRAINED UNPREDICTABLE
6401 * whether the RESS bits are ignored when comparing an address.
6403 * Therefore we are allowed to compare the entire register, which lets
6404 * us avoid considering whether or not FEAT_LVA is actually enabled.
6406 value &= ~3ULL;
6408 raw_write(env, ri, value);
6409 hw_watchpoint_update(cpu, i);
6412 static void dbgwcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
6413 uint64_t value)
6415 ARMCPU *cpu = env_archcpu(env);
6416 int i = ri->crm;
6418 raw_write(env, ri, value);
6419 hw_watchpoint_update(cpu, i);
6422 void hw_breakpoint_update(ARMCPU *cpu, int n)
6424 CPUARMState *env = &cpu->env;
6425 uint64_t bvr = env->cp15.dbgbvr[n];
6426 uint64_t bcr = env->cp15.dbgbcr[n];
6427 vaddr addr;
6428 int bt;
6429 int flags = BP_CPU;
6431 if (env->cpu_breakpoint[n]) {
6432 cpu_breakpoint_remove_by_ref(CPU(cpu), env->cpu_breakpoint[n]);
6433 env->cpu_breakpoint[n] = NULL;
6436 if (!extract64(bcr, 0, 1)) {
6437 /* E bit clear : watchpoint disabled */
6438 return;
6441 bt = extract64(bcr, 20, 4);
6443 switch (bt) {
6444 case 4: /* unlinked address mismatch (reserved if AArch64) */
6445 case 5: /* linked address mismatch (reserved if AArch64) */
6446 qemu_log_mask(LOG_UNIMP,
6447 "arm: address mismatch breakpoint types not implemented\n");
6448 return;
6449 case 0: /* unlinked address match */
6450 case 1: /* linked address match */
6453 * Bits [1:0] are RES0.
6455 * It is IMPLEMENTATION DEFINED whether bits [63:49]
6456 * ([63:53] for FEAT_LVA) are hardwired to a copy of the sign bit
6457 * of the VA field ([48] or [52] for FEAT_LVA), or whether the
6458 * value is read as written. It is CONSTRAINED UNPREDICTABLE
6459 * whether the RESS bits are ignored when comparing an address.
6460 * Therefore we are allowed to compare the entire register, which
6461 * lets us avoid considering whether FEAT_LVA is actually enabled.
6463 * The BAS field is used to allow setting breakpoints on 16-bit
6464 * wide instructions; it is CONSTRAINED UNPREDICTABLE whether
6465 * a bp will fire if the addresses covered by the bp and the addresses
6466 * covered by the insn overlap but the insn doesn't start at the
6467 * start of the bp address range. We choose to require the insn and
6468 * the bp to have the same address. The constraints on writing to
6469 * BAS enforced in dbgbcr_write mean we have only four cases:
6470 * 0b0000 => no breakpoint
6471 * 0b0011 => breakpoint on addr
6472 * 0b1100 => breakpoint on addr + 2
6473 * 0b1111 => breakpoint on addr
6474 * See also figure D2-3 in the v8 ARM ARM (DDI0487A.c).
6476 int bas = extract64(bcr, 5, 4);
6477 addr = bvr & ~3ULL;
6478 if (bas == 0) {
6479 return;
6481 if (bas == 0xc) {
6482 addr += 2;
6484 break;
6486 case 2: /* unlinked context ID match */
6487 case 8: /* unlinked VMID match (reserved if no EL2) */
6488 case 10: /* unlinked context ID and VMID match (reserved if no EL2) */
6489 qemu_log_mask(LOG_UNIMP,
6490 "arm: unlinked context breakpoint types not implemented\n");
6491 return;
6492 case 9: /* linked VMID match (reserved if no EL2) */
6493 case 11: /* linked context ID and VMID match (reserved if no EL2) */
6494 case 3: /* linked context ID match */
6495 default:
6496 /* We must generate no events for Linked context matches (unless
6497 * they are linked to by some other bp/wp, which is handled in
6498 * updates for the linking bp/wp). We choose to also generate no events
6499 * for reserved values.
6501 return;
6504 cpu_breakpoint_insert(CPU(cpu), addr, flags, &env->cpu_breakpoint[n]);
6507 void hw_breakpoint_update_all(ARMCPU *cpu)
6509 int i;
6510 CPUARMState *env = &cpu->env;
6512 /* Completely clear out existing QEMU breakpoints and our array, to
6513 * avoid possible stale entries following migration load.
6515 cpu_breakpoint_remove_all(CPU(cpu), BP_CPU);
6516 memset(env->cpu_breakpoint, 0, sizeof(env->cpu_breakpoint));
6518 for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_breakpoint); i++) {
6519 hw_breakpoint_update(cpu, i);
6523 static void dbgbvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
6524 uint64_t value)
6526 ARMCPU *cpu = env_archcpu(env);
6527 int i = ri->crm;
6529 raw_write(env, ri, value);
6530 hw_breakpoint_update(cpu, i);
6533 static void dbgbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
6534 uint64_t value)
6536 ARMCPU *cpu = env_archcpu(env);
6537 int i = ri->crm;
6539 /* BAS[3] is a read-only copy of BAS[2], and BAS[1] a read-only
6540 * copy of BAS[0].
6542 value = deposit64(value, 6, 1, extract64(value, 5, 1));
6543 value = deposit64(value, 8, 1, extract64(value, 7, 1));
6545 raw_write(env, ri, value);
6546 hw_breakpoint_update(cpu, i);
6549 static void define_debug_regs(ARMCPU *cpu)
6551 /* Define v7 and v8 architectural debug registers.
6552 * These are just dummy implementations for now.
6554 int i;
6555 int wrps, brps, ctx_cmps;
6558 * The Arm ARM says DBGDIDR is optional and deprecated if EL1 cannot
6559 * use AArch32. Given that bit 15 is RES1, if the value is 0 then
6560 * the register must not exist for this cpu.
6562 if (cpu->isar.dbgdidr != 0) {
6563 ARMCPRegInfo dbgdidr = {
6564 .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0,
6565 .opc1 = 0, .opc2 = 0,
6566 .access = PL0_R, .accessfn = access_tda,
6567 .type = ARM_CP_CONST, .resetvalue = cpu->isar.dbgdidr,
6569 define_one_arm_cp_reg(cpu, &dbgdidr);
6572 brps = arm_num_brps(cpu);
6573 wrps = arm_num_wrps(cpu);
6574 ctx_cmps = arm_num_ctx_cmps(cpu);
6576 assert(ctx_cmps <= brps);
6578 define_arm_cp_regs(cpu, debug_cp_reginfo);
6580 if (arm_feature(&cpu->env, ARM_FEATURE_LPAE)) {
6581 define_arm_cp_regs(cpu, debug_lpae_cp_reginfo);
6584 for (i = 0; i < brps; i++) {
6585 char *dbgbvr_el1_name = g_strdup_printf("DBGBVR%d_EL1", i);
6586 char *dbgbcr_el1_name = g_strdup_printf("DBGBCR%d_EL1", i);
6587 ARMCPRegInfo dbgregs[] = {
6588 { .name = dbgbvr_el1_name, .state = ARM_CP_STATE_BOTH,
6589 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 4,
6590 .access = PL1_RW, .accessfn = access_tda,
6591 .fieldoffset = offsetof(CPUARMState, cp15.dbgbvr[i]),
6592 .writefn = dbgbvr_write, .raw_writefn = raw_write
6594 { .name = dbgbcr_el1_name, .state = ARM_CP_STATE_BOTH,
6595 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 5,
6596 .access = PL1_RW, .accessfn = access_tda,
6597 .fieldoffset = offsetof(CPUARMState, cp15.dbgbcr[i]),
6598 .writefn = dbgbcr_write, .raw_writefn = raw_write
6601 define_arm_cp_regs(cpu, dbgregs);
6602 g_free(dbgbvr_el1_name);
6603 g_free(dbgbcr_el1_name);
6606 for (i = 0; i < wrps; i++) {
6607 char *dbgwvr_el1_name = g_strdup_printf("DBGWVR%d_EL1", i);
6608 char *dbgwcr_el1_name = g_strdup_printf("DBGWCR%d_EL1", i);
6609 ARMCPRegInfo dbgregs[] = {
6610 { .name = dbgwvr_el1_name, .state = ARM_CP_STATE_BOTH,
6611 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 6,
6612 .access = PL1_RW, .accessfn = access_tda,
6613 .fieldoffset = offsetof(CPUARMState, cp15.dbgwvr[i]),
6614 .writefn = dbgwvr_write, .raw_writefn = raw_write
6616 { .name = dbgwcr_el1_name, .state = ARM_CP_STATE_BOTH,
6617 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 7,
6618 .access = PL1_RW, .accessfn = access_tda,
6619 .fieldoffset = offsetof(CPUARMState, cp15.dbgwcr[i]),
6620 .writefn = dbgwcr_write, .raw_writefn = raw_write
6623 define_arm_cp_regs(cpu, dbgregs);
6624 g_free(dbgwvr_el1_name);
6625 g_free(dbgwcr_el1_name);
6629 static void define_pmu_regs(ARMCPU *cpu)
6632 * v7 performance monitor control register: same implementor
6633 * field as main ID register, and we implement four counters in
6634 * addition to the cycle count register.
6636 unsigned int i, pmcrn = pmu_num_counters(&cpu->env);
6637 ARMCPRegInfo pmcr = {
6638 .name = "PMCR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 0,
6639 .access = PL0_RW,
6640 .type = ARM_CP_IO | ARM_CP_ALIAS,
6641 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcr),
6642 .accessfn = pmreg_access, .writefn = pmcr_write,
6643 .raw_writefn = raw_write,
6645 ARMCPRegInfo pmcr64 = {
6646 .name = "PMCR_EL0", .state = ARM_CP_STATE_AA64,
6647 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 0,
6648 .access = PL0_RW, .accessfn = pmreg_access,
6649 .type = ARM_CP_IO,
6650 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcr),
6651 .resetvalue = cpu->isar.reset_pmcr_el0,
6652 .writefn = pmcr_write, .raw_writefn = raw_write,
6655 define_one_arm_cp_reg(cpu, &pmcr);
6656 define_one_arm_cp_reg(cpu, &pmcr64);
6657 for (i = 0; i < pmcrn; i++) {
6658 char *pmevcntr_name = g_strdup_printf("PMEVCNTR%d", i);
6659 char *pmevcntr_el0_name = g_strdup_printf("PMEVCNTR%d_EL0", i);
6660 char *pmevtyper_name = g_strdup_printf("PMEVTYPER%d", i);
6661 char *pmevtyper_el0_name = g_strdup_printf("PMEVTYPER%d_EL0", i);
6662 ARMCPRegInfo pmev_regs[] = {
6663 { .name = pmevcntr_name, .cp = 15, .crn = 14,
6664 .crm = 8 | (3 & (i >> 3)), .opc1 = 0, .opc2 = i & 7,
6665 .access = PL0_RW, .type = ARM_CP_IO | ARM_CP_ALIAS,
6666 .readfn = pmevcntr_readfn, .writefn = pmevcntr_writefn,
6667 .accessfn = pmreg_access_xevcntr },
6668 { .name = pmevcntr_el0_name, .state = ARM_CP_STATE_AA64,
6669 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 8 | (3 & (i >> 3)),
6670 .opc2 = i & 7, .access = PL0_RW, .accessfn = pmreg_access_xevcntr,
6671 .type = ARM_CP_IO,
6672 .readfn = pmevcntr_readfn, .writefn = pmevcntr_writefn,
6673 .raw_readfn = pmevcntr_rawread,
6674 .raw_writefn = pmevcntr_rawwrite },
6675 { .name = pmevtyper_name, .cp = 15, .crn = 14,
6676 .crm = 12 | (3 & (i >> 3)), .opc1 = 0, .opc2 = i & 7,
6677 .access = PL0_RW, .type = ARM_CP_IO | ARM_CP_ALIAS,
6678 .readfn = pmevtyper_readfn, .writefn = pmevtyper_writefn,
6679 .accessfn = pmreg_access },
6680 { .name = pmevtyper_el0_name, .state = ARM_CP_STATE_AA64,
6681 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 12 | (3 & (i >> 3)),
6682 .opc2 = i & 7, .access = PL0_RW, .accessfn = pmreg_access,
6683 .type = ARM_CP_IO,
6684 .readfn = pmevtyper_readfn, .writefn = pmevtyper_writefn,
6685 .raw_writefn = pmevtyper_rawwrite },
6687 define_arm_cp_regs(cpu, pmev_regs);
6688 g_free(pmevcntr_name);
6689 g_free(pmevcntr_el0_name);
6690 g_free(pmevtyper_name);
6691 g_free(pmevtyper_el0_name);
6693 if (cpu_isar_feature(aa32_pmu_8_1, cpu)) {
6694 ARMCPRegInfo v81_pmu_regs[] = {
6695 { .name = "PMCEID2", .state = ARM_CP_STATE_AA32,
6696 .cp = 15, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 4,
6697 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
6698 .resetvalue = extract64(cpu->pmceid0, 32, 32) },
6699 { .name = "PMCEID3", .state = ARM_CP_STATE_AA32,
6700 .cp = 15, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 5,
6701 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
6702 .resetvalue = extract64(cpu->pmceid1, 32, 32) },
6704 define_arm_cp_regs(cpu, v81_pmu_regs);
6706 if (cpu_isar_feature(any_pmu_8_4, cpu)) {
6707 static const ARMCPRegInfo v84_pmmir = {
6708 .name = "PMMIR_EL1", .state = ARM_CP_STATE_BOTH,
6709 .opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 6,
6710 .access = PL1_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
6711 .resetvalue = 0
6713 define_one_arm_cp_reg(cpu, &v84_pmmir);
6717 /* We don't know until after realize whether there's a GICv3
6718 * attached, and that is what registers the gicv3 sysregs.
6719 * So we have to fill in the GIC fields in ID_PFR/ID_PFR1_EL1/ID_AA64PFR0_EL1
6720 * at runtime.
6722 static uint64_t id_pfr1_read(CPUARMState *env, const ARMCPRegInfo *ri)
6724 ARMCPU *cpu = env_archcpu(env);
6725 uint64_t pfr1 = cpu->isar.id_pfr1;
6727 if (env->gicv3state) {
6728 pfr1 |= 1 << 28;
6730 return pfr1;
6733 #ifndef CONFIG_USER_ONLY
6734 static uint64_t id_aa64pfr0_read(CPUARMState *env, const ARMCPRegInfo *ri)
6736 ARMCPU *cpu = env_archcpu(env);
6737 uint64_t pfr0 = cpu->isar.id_aa64pfr0;
6739 if (env->gicv3state) {
6740 pfr0 |= 1 << 24;
6742 return pfr0;
6744 #endif
6746 /* Shared logic between LORID and the rest of the LOR* registers.
6747 * Secure state exclusion has already been dealt with.
6749 static CPAccessResult access_lor_ns(CPUARMState *env,
6750 const ARMCPRegInfo *ri, bool isread)
6752 int el = arm_current_el(env);
6754 if (el < 2 && (arm_hcr_el2_eff(env) & HCR_TLOR)) {
6755 return CP_ACCESS_TRAP_EL2;
6757 if (el < 3 && (env->cp15.scr_el3 & SCR_TLOR)) {
6758 return CP_ACCESS_TRAP_EL3;
6760 return CP_ACCESS_OK;
6763 static CPAccessResult access_lor_other(CPUARMState *env,
6764 const ARMCPRegInfo *ri, bool isread)
6766 if (arm_is_secure_below_el3(env)) {
6767 /* Access denied in secure mode. */
6768 return CP_ACCESS_TRAP;
6770 return access_lor_ns(env, ri, isread);
6774 * A trivial implementation of ARMv8.1-LOR leaves all of these
6775 * registers fixed at 0, which indicates that there are zero
6776 * supported Limited Ordering regions.
6778 static const ARMCPRegInfo lor_reginfo[] = {
6779 { .name = "LORSA_EL1", .state = ARM_CP_STATE_AA64,
6780 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 4, .opc2 = 0,
6781 .access = PL1_RW, .accessfn = access_lor_other,
6782 .type = ARM_CP_CONST, .resetvalue = 0 },
6783 { .name = "LOREA_EL1", .state = ARM_CP_STATE_AA64,
6784 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 4, .opc2 = 1,
6785 .access = PL1_RW, .accessfn = access_lor_other,
6786 .type = ARM_CP_CONST, .resetvalue = 0 },
6787 { .name = "LORN_EL1", .state = ARM_CP_STATE_AA64,
6788 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 4, .opc2 = 2,
6789 .access = PL1_RW, .accessfn = access_lor_other,
6790 .type = ARM_CP_CONST, .resetvalue = 0 },
6791 { .name = "LORC_EL1", .state = ARM_CP_STATE_AA64,
6792 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 4, .opc2 = 3,
6793 .access = PL1_RW, .accessfn = access_lor_other,
6794 .type = ARM_CP_CONST, .resetvalue = 0 },
6795 { .name = "LORID_EL1", .state = ARM_CP_STATE_AA64,
6796 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 4, .opc2 = 7,
6797 .access = PL1_R, .accessfn = access_lor_ns,
6798 .type = ARM_CP_CONST, .resetvalue = 0 },
6801 #ifdef TARGET_AARCH64
6802 static CPAccessResult access_pauth(CPUARMState *env, const ARMCPRegInfo *ri,
6803 bool isread)
6805 int el = arm_current_el(env);
6807 if (el < 2 &&
6808 arm_is_el2_enabled(env) &&
6809 !(arm_hcr_el2_eff(env) & HCR_APK)) {
6810 return CP_ACCESS_TRAP_EL2;
6812 if (el < 3 &&
6813 arm_feature(env, ARM_FEATURE_EL3) &&
6814 !(env->cp15.scr_el3 & SCR_APK)) {
6815 return CP_ACCESS_TRAP_EL3;
6817 return CP_ACCESS_OK;
6820 static const ARMCPRegInfo pauth_reginfo[] = {
6821 { .name = "APDAKEYLO_EL1", .state = ARM_CP_STATE_AA64,
6822 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 2, .opc2 = 0,
6823 .access = PL1_RW, .accessfn = access_pauth,
6824 .fieldoffset = offsetof(CPUARMState, keys.apda.lo) },
6825 { .name = "APDAKEYHI_EL1", .state = ARM_CP_STATE_AA64,
6826 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 2, .opc2 = 1,
6827 .access = PL1_RW, .accessfn = access_pauth,
6828 .fieldoffset = offsetof(CPUARMState, keys.apda.hi) },
6829 { .name = "APDBKEYLO_EL1", .state = ARM_CP_STATE_AA64,
6830 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 2, .opc2 = 2,
6831 .access = PL1_RW, .accessfn = access_pauth,
6832 .fieldoffset = offsetof(CPUARMState, keys.apdb.lo) },
6833 { .name = "APDBKEYHI_EL1", .state = ARM_CP_STATE_AA64,
6834 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 2, .opc2 = 3,
6835 .access = PL1_RW, .accessfn = access_pauth,
6836 .fieldoffset = offsetof(CPUARMState, keys.apdb.hi) },
6837 { .name = "APGAKEYLO_EL1", .state = ARM_CP_STATE_AA64,
6838 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 3, .opc2 = 0,
6839 .access = PL1_RW, .accessfn = access_pauth,
6840 .fieldoffset = offsetof(CPUARMState, keys.apga.lo) },
6841 { .name = "APGAKEYHI_EL1", .state = ARM_CP_STATE_AA64,
6842 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 3, .opc2 = 1,
6843 .access = PL1_RW, .accessfn = access_pauth,
6844 .fieldoffset = offsetof(CPUARMState, keys.apga.hi) },
6845 { .name = "APIAKEYLO_EL1", .state = ARM_CP_STATE_AA64,
6846 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 1, .opc2 = 0,
6847 .access = PL1_RW, .accessfn = access_pauth,
6848 .fieldoffset = offsetof(CPUARMState, keys.apia.lo) },
6849 { .name = "APIAKEYHI_EL1", .state = ARM_CP_STATE_AA64,
6850 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 1, .opc2 = 1,
6851 .access = PL1_RW, .accessfn = access_pauth,
6852 .fieldoffset = offsetof(CPUARMState, keys.apia.hi) },
6853 { .name = "APIBKEYLO_EL1", .state = ARM_CP_STATE_AA64,
6854 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 1, .opc2 = 2,
6855 .access = PL1_RW, .accessfn = access_pauth,
6856 .fieldoffset = offsetof(CPUARMState, keys.apib.lo) },
6857 { .name = "APIBKEYHI_EL1", .state = ARM_CP_STATE_AA64,
6858 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 1, .opc2 = 3,
6859 .access = PL1_RW, .accessfn = access_pauth,
6860 .fieldoffset = offsetof(CPUARMState, keys.apib.hi) },
6863 static const ARMCPRegInfo tlbirange_reginfo[] = {
6864 { .name = "TLBI_RVAE1IS", .state = ARM_CP_STATE_AA64,
6865 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 1,
6866 .access = PL1_W, .type = ARM_CP_NO_RAW,
6867 .writefn = tlbi_aa64_rvae1is_write },
6868 { .name = "TLBI_RVAAE1IS", .state = ARM_CP_STATE_AA64,
6869 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 3,
6870 .access = PL1_W, .type = ARM_CP_NO_RAW,
6871 .writefn = tlbi_aa64_rvae1is_write },
6872 { .name = "TLBI_RVALE1IS", .state = ARM_CP_STATE_AA64,
6873 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 5,
6874 .access = PL1_W, .type = ARM_CP_NO_RAW,
6875 .writefn = tlbi_aa64_rvae1is_write },
6876 { .name = "TLBI_RVAALE1IS", .state = ARM_CP_STATE_AA64,
6877 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 2, .opc2 = 7,
6878 .access = PL1_W, .type = ARM_CP_NO_RAW,
6879 .writefn = tlbi_aa64_rvae1is_write },
6880 { .name = "TLBI_RVAE1OS", .state = ARM_CP_STATE_AA64,
6881 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 1,
6882 .access = PL1_W, .type = ARM_CP_NO_RAW,
6883 .writefn = tlbi_aa64_rvae1is_write },
6884 { .name = "TLBI_RVAAE1OS", .state = ARM_CP_STATE_AA64,
6885 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 3,
6886 .access = PL1_W, .type = ARM_CP_NO_RAW,
6887 .writefn = tlbi_aa64_rvae1is_write },
6888 { .name = "TLBI_RVALE1OS", .state = ARM_CP_STATE_AA64,
6889 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 5,
6890 .access = PL1_W, .type = ARM_CP_NO_RAW,
6891 .writefn = tlbi_aa64_rvae1is_write },
6892 { .name = "TLBI_RVAALE1OS", .state = ARM_CP_STATE_AA64,
6893 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 7,
6894 .access = PL1_W, .type = ARM_CP_NO_RAW,
6895 .writefn = tlbi_aa64_rvae1is_write },
6896 { .name = "TLBI_RVAE1", .state = ARM_CP_STATE_AA64,
6897 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 1,
6898 .access = PL1_W, .type = ARM_CP_NO_RAW,
6899 .writefn = tlbi_aa64_rvae1_write },
6900 { .name = "TLBI_RVAAE1", .state = ARM_CP_STATE_AA64,
6901 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 3,
6902 .access = PL1_W, .type = ARM_CP_NO_RAW,
6903 .writefn = tlbi_aa64_rvae1_write },
6904 { .name = "TLBI_RVALE1", .state = ARM_CP_STATE_AA64,
6905 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 5,
6906 .access = PL1_W, .type = ARM_CP_NO_RAW,
6907 .writefn = tlbi_aa64_rvae1_write },
6908 { .name = "TLBI_RVAALE1", .state = ARM_CP_STATE_AA64,
6909 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 7,
6910 .access = PL1_W, .type = ARM_CP_NO_RAW,
6911 .writefn = tlbi_aa64_rvae1_write },
6912 { .name = "TLBI_RIPAS2E1IS", .state = ARM_CP_STATE_AA64,
6913 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 2,
6914 .access = PL2_W, .type = ARM_CP_NOP },
6915 { .name = "TLBI_RIPAS2LE1IS", .state = ARM_CP_STATE_AA64,
6916 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 6,
6917 .access = PL2_W, .type = ARM_CP_NOP },
6918 { .name = "TLBI_RVAE2IS", .state = ARM_CP_STATE_AA64,
6919 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 2, .opc2 = 1,
6920 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6921 .writefn = tlbi_aa64_rvae2is_write },
6922 { .name = "TLBI_RVALE2IS", .state = ARM_CP_STATE_AA64,
6923 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 2, .opc2 = 5,
6924 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6925 .writefn = tlbi_aa64_rvae2is_write },
6926 { .name = "TLBI_RIPAS2E1", .state = ARM_CP_STATE_AA64,
6927 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 2,
6928 .access = PL2_W, .type = ARM_CP_NOP },
6929 { .name = "TLBI_RIPAS2LE1", .state = ARM_CP_STATE_AA64,
6930 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 6,
6931 .access = PL2_W, .type = ARM_CP_NOP },
6932 { .name = "TLBI_RVAE2OS", .state = ARM_CP_STATE_AA64,
6933 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 5, .opc2 = 1,
6934 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6935 .writefn = tlbi_aa64_rvae2is_write },
6936 { .name = "TLBI_RVALE2OS", .state = ARM_CP_STATE_AA64,
6937 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 5, .opc2 = 5,
6938 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6939 .writefn = tlbi_aa64_rvae2is_write },
6940 { .name = "TLBI_RVAE2", .state = ARM_CP_STATE_AA64,
6941 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 6, .opc2 = 1,
6942 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6943 .writefn = tlbi_aa64_rvae2_write },
6944 { .name = "TLBI_RVALE2", .state = ARM_CP_STATE_AA64,
6945 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 6, .opc2 = 5,
6946 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
6947 .writefn = tlbi_aa64_rvae2_write },
6948 { .name = "TLBI_RVAE3IS", .state = ARM_CP_STATE_AA64,
6949 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 2, .opc2 = 1,
6950 .access = PL3_W, .type = ARM_CP_NO_RAW,
6951 .writefn = tlbi_aa64_rvae3is_write },
6952 { .name = "TLBI_RVALE3IS", .state = ARM_CP_STATE_AA64,
6953 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 2, .opc2 = 5,
6954 .access = PL3_W, .type = ARM_CP_NO_RAW,
6955 .writefn = tlbi_aa64_rvae3is_write },
6956 { .name = "TLBI_RVAE3OS", .state = ARM_CP_STATE_AA64,
6957 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 5, .opc2 = 1,
6958 .access = PL3_W, .type = ARM_CP_NO_RAW,
6959 .writefn = tlbi_aa64_rvae3is_write },
6960 { .name = "TLBI_RVALE3OS", .state = ARM_CP_STATE_AA64,
6961 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 5, .opc2 = 5,
6962 .access = PL3_W, .type = ARM_CP_NO_RAW,
6963 .writefn = tlbi_aa64_rvae3is_write },
6964 { .name = "TLBI_RVAE3", .state = ARM_CP_STATE_AA64,
6965 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 6, .opc2 = 1,
6966 .access = PL3_W, .type = ARM_CP_NO_RAW,
6967 .writefn = tlbi_aa64_rvae3_write },
6968 { .name = "TLBI_RVALE3", .state = ARM_CP_STATE_AA64,
6969 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 6, .opc2 = 5,
6970 .access = PL3_W, .type = ARM_CP_NO_RAW,
6971 .writefn = tlbi_aa64_rvae3_write },
6974 static const ARMCPRegInfo tlbios_reginfo[] = {
6975 { .name = "TLBI_VMALLE1OS", .state = ARM_CP_STATE_AA64,
6976 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 0,
6977 .access = PL1_W, .type = ARM_CP_NO_RAW,
6978 .writefn = tlbi_aa64_vmalle1is_write },
6979 { .name = "TLBI_VAE1OS", .state = ARM_CP_STATE_AA64,
6980 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 1,
6981 .access = PL1_W, .type = ARM_CP_NO_RAW,
6982 .writefn = tlbi_aa64_vae1is_write },
6983 { .name = "TLBI_ASIDE1OS", .state = ARM_CP_STATE_AA64,
6984 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 2,
6985 .access = PL1_W, .type = ARM_CP_NO_RAW,
6986 .writefn = tlbi_aa64_vmalle1is_write },
6987 { .name = "TLBI_VAAE1OS", .state = ARM_CP_STATE_AA64,
6988 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 3,
6989 .access = PL1_W, .type = ARM_CP_NO_RAW,
6990 .writefn = tlbi_aa64_vae1is_write },
6991 { .name = "TLBI_VALE1OS", .state = ARM_CP_STATE_AA64,
6992 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 5,
6993 .access = PL1_W, .type = ARM_CP_NO_RAW,
6994 .writefn = tlbi_aa64_vae1is_write },
6995 { .name = "TLBI_VAALE1OS", .state = ARM_CP_STATE_AA64,
6996 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 1, .opc2 = 7,
6997 .access = PL1_W, .type = ARM_CP_NO_RAW,
6998 .writefn = tlbi_aa64_vae1is_write },
6999 { .name = "TLBI_ALLE2OS", .state = ARM_CP_STATE_AA64,
7000 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 0,
7001 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
7002 .writefn = tlbi_aa64_alle2is_write },
7003 { .name = "TLBI_VAE2OS", .state = ARM_CP_STATE_AA64,
7004 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 1,
7005 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
7006 .writefn = tlbi_aa64_vae2is_write },
7007 { .name = "TLBI_ALLE1OS", .state = ARM_CP_STATE_AA64,
7008 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 4,
7009 .access = PL2_W, .type = ARM_CP_NO_RAW,
7010 .writefn = tlbi_aa64_alle1is_write },
7011 { .name = "TLBI_VALE2OS", .state = ARM_CP_STATE_AA64,
7012 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 5,
7013 .access = PL2_W, .type = ARM_CP_NO_RAW | ARM_CP_EL3_NO_EL2_UNDEF,
7014 .writefn = tlbi_aa64_vae2is_write },
7015 { .name = "TLBI_VMALLS12E1OS", .state = ARM_CP_STATE_AA64,
7016 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 1, .opc2 = 6,
7017 .access = PL2_W, .type = ARM_CP_NO_RAW,
7018 .writefn = tlbi_aa64_alle1is_write },
7019 { .name = "TLBI_IPAS2E1OS", .state = ARM_CP_STATE_AA64,
7020 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 0,
7021 .access = PL2_W, .type = ARM_CP_NOP },
7022 { .name = "TLBI_RIPAS2E1OS", .state = ARM_CP_STATE_AA64,
7023 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 3,
7024 .access = PL2_W, .type = ARM_CP_NOP },
7025 { .name = "TLBI_IPAS2LE1OS", .state = ARM_CP_STATE_AA64,
7026 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 4,
7027 .access = PL2_W, .type = ARM_CP_NOP },
7028 { .name = "TLBI_RIPAS2LE1OS", .state = ARM_CP_STATE_AA64,
7029 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 7,
7030 .access = PL2_W, .type = ARM_CP_NOP },
7031 { .name = "TLBI_ALLE3OS", .state = ARM_CP_STATE_AA64,
7032 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 1, .opc2 = 0,
7033 .access = PL3_W, .type = ARM_CP_NO_RAW,
7034 .writefn = tlbi_aa64_alle3is_write },
7035 { .name = "TLBI_VAE3OS", .state = ARM_CP_STATE_AA64,
7036 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 1, .opc2 = 1,
7037 .access = PL3_W, .type = ARM_CP_NO_RAW,
7038 .writefn = tlbi_aa64_vae3is_write },
7039 { .name = "TLBI_VALE3OS", .state = ARM_CP_STATE_AA64,
7040 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 1, .opc2 = 5,
7041 .access = PL3_W, .type = ARM_CP_NO_RAW,
7042 .writefn = tlbi_aa64_vae3is_write },
7045 static uint64_t rndr_readfn(CPUARMState *env, const ARMCPRegInfo *ri)
7047 Error *err = NULL;
7048 uint64_t ret;
7050 /* Success sets NZCV = 0000. */
7051 env->NF = env->CF = env->VF = 0, env->ZF = 1;
7053 if (qemu_guest_getrandom(&ret, sizeof(ret), &err) < 0) {
7055 * ??? Failed, for unknown reasons in the crypto subsystem.
7056 * The best we can do is log the reason and return the
7057 * timed-out indication to the guest. There is no reason
7058 * we know to expect this failure to be transitory, so the
7059 * guest may well hang retrying the operation.
7061 qemu_log_mask(LOG_UNIMP, "%s: Crypto failure: %s",
7062 ri->name, error_get_pretty(err));
7063 error_free(err);
7065 env->ZF = 0; /* NZCF = 0100 */
7066 return 0;
7068 return ret;
7071 /* We do not support re-seeding, so the two registers operate the same. */
7072 static const ARMCPRegInfo rndr_reginfo[] = {
7073 { .name = "RNDR", .state = ARM_CP_STATE_AA64,
7074 .type = ARM_CP_NO_RAW | ARM_CP_SUPPRESS_TB_END | ARM_CP_IO,
7075 .opc0 = 3, .opc1 = 3, .crn = 2, .crm = 4, .opc2 = 0,
7076 .access = PL0_R, .readfn = rndr_readfn },
7077 { .name = "RNDRRS", .state = ARM_CP_STATE_AA64,
7078 .type = ARM_CP_NO_RAW | ARM_CP_SUPPRESS_TB_END | ARM_CP_IO,
7079 .opc0 = 3, .opc1 = 3, .crn = 2, .crm = 4, .opc2 = 1,
7080 .access = PL0_R, .readfn = rndr_readfn },
7083 #ifndef CONFIG_USER_ONLY
7084 static void dccvap_writefn(CPUARMState *env, const ARMCPRegInfo *opaque,
7085 uint64_t value)
7087 ARMCPU *cpu = env_archcpu(env);
7088 /* CTR_EL0 System register -> DminLine, bits [19:16] */
7089 uint64_t dline_size = 4 << ((cpu->ctr >> 16) & 0xF);
7090 uint64_t vaddr_in = (uint64_t) value;
7091 uint64_t vaddr = vaddr_in & ~(dline_size - 1);
7092 void *haddr;
7093 int mem_idx = cpu_mmu_index(env, false);
7095 /* This won't be crossing page boundaries */
7096 haddr = probe_read(env, vaddr, dline_size, mem_idx, GETPC());
7097 if (haddr) {
7099 ram_addr_t offset;
7100 MemoryRegion *mr;
7102 /* RCU lock is already being held */
7103 mr = memory_region_from_host(haddr, &offset);
7105 if (mr) {
7106 memory_region_writeback(mr, offset, dline_size);
7111 static const ARMCPRegInfo dcpop_reg[] = {
7112 { .name = "DC_CVAP", .state = ARM_CP_STATE_AA64,
7113 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 12, .opc2 = 1,
7114 .access = PL0_W, .type = ARM_CP_NO_RAW | ARM_CP_SUPPRESS_TB_END,
7115 .accessfn = aa64_cacheop_poc_access, .writefn = dccvap_writefn },
7118 static const ARMCPRegInfo dcpodp_reg[] = {
7119 { .name = "DC_CVADP", .state = ARM_CP_STATE_AA64,
7120 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 13, .opc2 = 1,
7121 .access = PL0_W, .type = ARM_CP_NO_RAW | ARM_CP_SUPPRESS_TB_END,
7122 .accessfn = aa64_cacheop_poc_access, .writefn = dccvap_writefn },
7124 #endif /*CONFIG_USER_ONLY*/
7126 static CPAccessResult access_aa64_tid5(CPUARMState *env, const ARMCPRegInfo *ri,
7127 bool isread)
7129 if ((arm_current_el(env) < 2) && (arm_hcr_el2_eff(env) & HCR_TID5)) {
7130 return CP_ACCESS_TRAP_EL2;
7133 return CP_ACCESS_OK;
7136 static CPAccessResult access_mte(CPUARMState *env, const ARMCPRegInfo *ri,
7137 bool isread)
7139 int el = arm_current_el(env);
7141 if (el < 2 && arm_is_el2_enabled(env)) {
7142 uint64_t hcr = arm_hcr_el2_eff(env);
7143 if (!(hcr & HCR_ATA) && (!(hcr & HCR_E2H) || !(hcr & HCR_TGE))) {
7144 return CP_ACCESS_TRAP_EL2;
7147 if (el < 3 &&
7148 arm_feature(env, ARM_FEATURE_EL3) &&
7149 !(env->cp15.scr_el3 & SCR_ATA)) {
7150 return CP_ACCESS_TRAP_EL3;
7152 return CP_ACCESS_OK;
7155 static uint64_t tco_read(CPUARMState *env, const ARMCPRegInfo *ri)
7157 return env->pstate & PSTATE_TCO;
7160 static void tco_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t val)
7162 env->pstate = (env->pstate & ~PSTATE_TCO) | (val & PSTATE_TCO);
7165 static const ARMCPRegInfo mte_reginfo[] = {
7166 { .name = "TFSRE0_EL1", .state = ARM_CP_STATE_AA64,
7167 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 6, .opc2 = 1,
7168 .access = PL1_RW, .accessfn = access_mte,
7169 .fieldoffset = offsetof(CPUARMState, cp15.tfsr_el[0]) },
7170 { .name = "TFSR_EL1", .state = ARM_CP_STATE_AA64,
7171 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 6, .opc2 = 0,
7172 .access = PL1_RW, .accessfn = access_mte,
7173 .fieldoffset = offsetof(CPUARMState, cp15.tfsr_el[1]) },
7174 { .name = "TFSR_EL2", .state = ARM_CP_STATE_AA64,
7175 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 6, .opc2 = 0,
7176 .access = PL2_RW, .accessfn = access_mte,
7177 .fieldoffset = offsetof(CPUARMState, cp15.tfsr_el[2]) },
7178 { .name = "TFSR_EL3", .state = ARM_CP_STATE_AA64,
7179 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 6, .opc2 = 0,
7180 .access = PL3_RW,
7181 .fieldoffset = offsetof(CPUARMState, cp15.tfsr_el[3]) },
7182 { .name = "RGSR_EL1", .state = ARM_CP_STATE_AA64,
7183 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 5,
7184 .access = PL1_RW, .accessfn = access_mte,
7185 .fieldoffset = offsetof(CPUARMState, cp15.rgsr_el1) },
7186 { .name = "GCR_EL1", .state = ARM_CP_STATE_AA64,
7187 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 6,
7188 .access = PL1_RW, .accessfn = access_mte,
7189 .fieldoffset = offsetof(CPUARMState, cp15.gcr_el1) },
7190 { .name = "GMID_EL1", .state = ARM_CP_STATE_AA64,
7191 .opc0 = 3, .opc1 = 1, .crn = 0, .crm = 0, .opc2 = 4,
7192 .access = PL1_R, .accessfn = access_aa64_tid5,
7193 .type = ARM_CP_CONST, .resetvalue = GMID_EL1_BS },
7194 { .name = "TCO", .state = ARM_CP_STATE_AA64,
7195 .opc0 = 3, .opc1 = 3, .crn = 4, .crm = 2, .opc2 = 7,
7196 .type = ARM_CP_NO_RAW,
7197 .access = PL0_RW, .readfn = tco_read, .writefn = tco_write },
7198 { .name = "DC_IGVAC", .state = ARM_CP_STATE_AA64,
7199 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 3,
7200 .type = ARM_CP_NOP, .access = PL1_W,
7201 .accessfn = aa64_cacheop_poc_access },
7202 { .name = "DC_IGSW", .state = ARM_CP_STATE_AA64,
7203 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 4,
7204 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7205 { .name = "DC_IGDVAC", .state = ARM_CP_STATE_AA64,
7206 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 5,
7207 .type = ARM_CP_NOP, .access = PL1_W,
7208 .accessfn = aa64_cacheop_poc_access },
7209 { .name = "DC_IGDSW", .state = ARM_CP_STATE_AA64,
7210 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 6,
7211 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7212 { .name = "DC_CGSW", .state = ARM_CP_STATE_AA64,
7213 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 4,
7214 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7215 { .name = "DC_CGDSW", .state = ARM_CP_STATE_AA64,
7216 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 6,
7217 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7218 { .name = "DC_CIGSW", .state = ARM_CP_STATE_AA64,
7219 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 4,
7220 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7221 { .name = "DC_CIGDSW", .state = ARM_CP_STATE_AA64,
7222 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 6,
7223 .type = ARM_CP_NOP, .access = PL1_W, .accessfn = access_tsw },
7226 static const ARMCPRegInfo mte_tco_ro_reginfo[] = {
7227 { .name = "TCO", .state = ARM_CP_STATE_AA64,
7228 .opc0 = 3, .opc1 = 3, .crn = 4, .crm = 2, .opc2 = 7,
7229 .type = ARM_CP_CONST, .access = PL0_RW, },
7232 static const ARMCPRegInfo mte_el0_cacheop_reginfo[] = {
7233 { .name = "DC_CGVAC", .state = ARM_CP_STATE_AA64,
7234 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 10, .opc2 = 3,
7235 .type = ARM_CP_NOP, .access = PL0_W,
7236 .accessfn = aa64_cacheop_poc_access },
7237 { .name = "DC_CGDVAC", .state = ARM_CP_STATE_AA64,
7238 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 10, .opc2 = 5,
7239 .type = ARM_CP_NOP, .access = PL0_W,
7240 .accessfn = aa64_cacheop_poc_access },
7241 { .name = "DC_CGVAP", .state = ARM_CP_STATE_AA64,
7242 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 12, .opc2 = 3,
7243 .type = ARM_CP_NOP, .access = PL0_W,
7244 .accessfn = aa64_cacheop_poc_access },
7245 { .name = "DC_CGDVAP", .state = ARM_CP_STATE_AA64,
7246 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 12, .opc2 = 5,
7247 .type = ARM_CP_NOP, .access = PL0_W,
7248 .accessfn = aa64_cacheop_poc_access },
7249 { .name = "DC_CGVADP", .state = ARM_CP_STATE_AA64,
7250 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 13, .opc2 = 3,
7251 .type = ARM_CP_NOP, .access = PL0_W,
7252 .accessfn = aa64_cacheop_poc_access },
7253 { .name = "DC_CGDVADP", .state = ARM_CP_STATE_AA64,
7254 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 13, .opc2 = 5,
7255 .type = ARM_CP_NOP, .access = PL0_W,
7256 .accessfn = aa64_cacheop_poc_access },
7257 { .name = "DC_CIGVAC", .state = ARM_CP_STATE_AA64,
7258 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 14, .opc2 = 3,
7259 .type = ARM_CP_NOP, .access = PL0_W,
7260 .accessfn = aa64_cacheop_poc_access },
7261 { .name = "DC_CIGDVAC", .state = ARM_CP_STATE_AA64,
7262 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 14, .opc2 = 5,
7263 .type = ARM_CP_NOP, .access = PL0_W,
7264 .accessfn = aa64_cacheop_poc_access },
7265 { .name = "DC_GVA", .state = ARM_CP_STATE_AA64,
7266 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 4, .opc2 = 3,
7267 .access = PL0_W, .type = ARM_CP_DC_GVA,
7268 #ifndef CONFIG_USER_ONLY
7269 /* Avoid overhead of an access check that always passes in user-mode */
7270 .accessfn = aa64_zva_access,
7271 #endif
7273 { .name = "DC_GZVA", .state = ARM_CP_STATE_AA64,
7274 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 4, .opc2 = 4,
7275 .access = PL0_W, .type = ARM_CP_DC_GZVA,
7276 #ifndef CONFIG_USER_ONLY
7277 /* Avoid overhead of an access check that always passes in user-mode */
7278 .accessfn = aa64_zva_access,
7279 #endif
7283 static CPAccessResult access_scxtnum(CPUARMState *env, const ARMCPRegInfo *ri,
7284 bool isread)
7286 uint64_t hcr = arm_hcr_el2_eff(env);
7287 int el = arm_current_el(env);
7289 if (el == 0 && !((hcr & HCR_E2H) && (hcr & HCR_TGE))) {
7290 if (env->cp15.sctlr_el[1] & SCTLR_TSCXT) {
7291 if (hcr & HCR_TGE) {
7292 return CP_ACCESS_TRAP_EL2;
7294 return CP_ACCESS_TRAP;
7296 } else if (el < 2 && (env->cp15.sctlr_el[2] & SCTLR_TSCXT)) {
7297 return CP_ACCESS_TRAP_EL2;
7299 if (el < 2 && arm_is_el2_enabled(env) && !(hcr & HCR_ENSCXT)) {
7300 return CP_ACCESS_TRAP_EL2;
7302 if (el < 3
7303 && arm_feature(env, ARM_FEATURE_EL3)
7304 && !(env->cp15.scr_el3 & SCR_ENSCXT)) {
7305 return CP_ACCESS_TRAP_EL3;
7307 return CP_ACCESS_OK;
7310 static const ARMCPRegInfo scxtnum_reginfo[] = {
7311 { .name = "SCXTNUM_EL0", .state = ARM_CP_STATE_AA64,
7312 .opc0 = 3, .opc1 = 3, .crn = 13, .crm = 0, .opc2 = 7,
7313 .access = PL0_RW, .accessfn = access_scxtnum,
7314 .fieldoffset = offsetof(CPUARMState, scxtnum_el[0]) },
7315 { .name = "SCXTNUM_EL1", .state = ARM_CP_STATE_AA64,
7316 .opc0 = 3, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 7,
7317 .access = PL1_RW, .accessfn = access_scxtnum,
7318 .fieldoffset = offsetof(CPUARMState, scxtnum_el[1]) },
7319 { .name = "SCXTNUM_EL2", .state = ARM_CP_STATE_AA64,
7320 .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 7,
7321 .access = PL2_RW, .accessfn = access_scxtnum,
7322 .fieldoffset = offsetof(CPUARMState, scxtnum_el[2]) },
7323 { .name = "SCXTNUM_EL3", .state = ARM_CP_STATE_AA64,
7324 .opc0 = 3, .opc1 = 6, .crn = 13, .crm = 0, .opc2 = 7,
7325 .access = PL3_RW,
7326 .fieldoffset = offsetof(CPUARMState, scxtnum_el[3]) },
7328 #endif /* TARGET_AARCH64 */
7330 static CPAccessResult access_predinv(CPUARMState *env, const ARMCPRegInfo *ri,
7331 bool isread)
7333 int el = arm_current_el(env);
7335 if (el == 0) {
7336 uint64_t sctlr = arm_sctlr(env, el);
7337 if (!(sctlr & SCTLR_EnRCTX)) {
7338 return CP_ACCESS_TRAP;
7340 } else if (el == 1) {
7341 uint64_t hcr = arm_hcr_el2_eff(env);
7342 if (hcr & HCR_NV) {
7343 return CP_ACCESS_TRAP_EL2;
7346 return CP_ACCESS_OK;
7349 static const ARMCPRegInfo predinv_reginfo[] = {
7350 { .name = "CFP_RCTX", .state = ARM_CP_STATE_AA64,
7351 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 3, .opc2 = 4,
7352 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7353 { .name = "DVP_RCTX", .state = ARM_CP_STATE_AA64,
7354 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 3, .opc2 = 5,
7355 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7356 { .name = "CPP_RCTX", .state = ARM_CP_STATE_AA64,
7357 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 3, .opc2 = 7,
7358 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7360 * Note the AArch32 opcodes have a different OPC1.
7362 { .name = "CFPRCTX", .state = ARM_CP_STATE_AA32,
7363 .cp = 15, .opc1 = 0, .crn = 7, .crm = 3, .opc2 = 4,
7364 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7365 { .name = "DVPRCTX", .state = ARM_CP_STATE_AA32,
7366 .cp = 15, .opc1 = 0, .crn = 7, .crm = 3, .opc2 = 5,
7367 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7368 { .name = "CPPRCTX", .state = ARM_CP_STATE_AA32,
7369 .cp = 15, .opc1 = 0, .crn = 7, .crm = 3, .opc2 = 7,
7370 .type = ARM_CP_NOP, .access = PL0_W, .accessfn = access_predinv },
7373 static uint64_t ccsidr2_read(CPUARMState *env, const ARMCPRegInfo *ri)
7375 /* Read the high 32 bits of the current CCSIDR */
7376 return extract64(ccsidr_read(env, ri), 32, 32);
7379 static const ARMCPRegInfo ccsidr2_reginfo[] = {
7380 { .name = "CCSIDR2", .state = ARM_CP_STATE_BOTH,
7381 .opc0 = 3, .opc1 = 1, .crn = 0, .crm = 0, .opc2 = 2,
7382 .access = PL1_R,
7383 .accessfn = access_aa64_tid2,
7384 .readfn = ccsidr2_read, .type = ARM_CP_NO_RAW },
7387 static CPAccessResult access_aa64_tid3(CPUARMState *env, const ARMCPRegInfo *ri,
7388 bool isread)
7390 if ((arm_current_el(env) < 2) && (arm_hcr_el2_eff(env) & HCR_TID3)) {
7391 return CP_ACCESS_TRAP_EL2;
7394 return CP_ACCESS_OK;
7397 static CPAccessResult access_aa32_tid3(CPUARMState *env, const ARMCPRegInfo *ri,
7398 bool isread)
7400 if (arm_feature(env, ARM_FEATURE_V8)) {
7401 return access_aa64_tid3(env, ri, isread);
7404 return CP_ACCESS_OK;
7407 static CPAccessResult access_jazelle(CPUARMState *env, const ARMCPRegInfo *ri,
7408 bool isread)
7410 if (arm_current_el(env) == 1 && (arm_hcr_el2_eff(env) & HCR_TID0)) {
7411 return CP_ACCESS_TRAP_EL2;
7414 return CP_ACCESS_OK;
7417 static CPAccessResult access_joscr_jmcr(CPUARMState *env,
7418 const ARMCPRegInfo *ri, bool isread)
7421 * HSTR.TJDBX traps JOSCR and JMCR accesses, but it exists only
7422 * in v7A, not in v8A.
7424 if (!arm_feature(env, ARM_FEATURE_V8) &&
7425 arm_current_el(env) < 2 && !arm_is_secure_below_el3(env) &&
7426 (env->cp15.hstr_el2 & HSTR_TJDBX)) {
7427 return CP_ACCESS_TRAP_EL2;
7429 return CP_ACCESS_OK;
7432 static const ARMCPRegInfo jazelle_regs[] = {
7433 { .name = "JIDR",
7434 .cp = 14, .crn = 0, .crm = 0, .opc1 = 7, .opc2 = 0,
7435 .access = PL1_R, .accessfn = access_jazelle,
7436 .type = ARM_CP_CONST, .resetvalue = 0 },
7437 { .name = "JOSCR",
7438 .cp = 14, .crn = 1, .crm = 0, .opc1 = 7, .opc2 = 0,
7439 .accessfn = access_joscr_jmcr,
7440 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
7441 { .name = "JMCR",
7442 .cp = 14, .crn = 2, .crm = 0, .opc1 = 7, .opc2 = 0,
7443 .accessfn = access_joscr_jmcr,
7444 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
7447 static const ARMCPRegInfo contextidr_el2 = {
7448 .name = "CONTEXTIDR_EL2", .state = ARM_CP_STATE_AA64,
7449 .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 1,
7450 .access = PL2_RW,
7451 .fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[2])
7454 static const ARMCPRegInfo vhe_reginfo[] = {
7455 { .name = "TTBR1_EL2", .state = ARM_CP_STATE_AA64,
7456 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 1,
7457 .access = PL2_RW, .writefn = vmsa_tcr_ttbr_el2_write,
7458 .fieldoffset = offsetof(CPUARMState, cp15.ttbr1_el[2]) },
7459 #ifndef CONFIG_USER_ONLY
7460 { .name = "CNTHV_CVAL_EL2", .state = ARM_CP_STATE_AA64,
7461 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 3, .opc2 = 2,
7462 .fieldoffset =
7463 offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYPVIRT].cval),
7464 .type = ARM_CP_IO, .access = PL2_RW,
7465 .writefn = gt_hv_cval_write, .raw_writefn = raw_write },
7466 { .name = "CNTHV_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
7467 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 3, .opc2 = 0,
7468 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL2_RW,
7469 .resetfn = gt_hv_timer_reset,
7470 .readfn = gt_hv_tval_read, .writefn = gt_hv_tval_write },
7471 { .name = "CNTHV_CTL_EL2", .state = ARM_CP_STATE_BOTH,
7472 .type = ARM_CP_IO,
7473 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 3, .opc2 = 1,
7474 .access = PL2_RW,
7475 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYPVIRT].ctl),
7476 .writefn = gt_hv_ctl_write, .raw_writefn = raw_write },
7477 { .name = "CNTP_CTL_EL02", .state = ARM_CP_STATE_AA64,
7478 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 2, .opc2 = 1,
7479 .type = ARM_CP_IO | ARM_CP_ALIAS,
7480 .access = PL2_RW, .accessfn = e2h_access,
7481 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].ctl),
7482 .writefn = gt_phys_ctl_write, .raw_writefn = raw_write },
7483 { .name = "CNTV_CTL_EL02", .state = ARM_CP_STATE_AA64,
7484 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 3, .opc2 = 1,
7485 .type = ARM_CP_IO | ARM_CP_ALIAS,
7486 .access = PL2_RW, .accessfn = e2h_access,
7487 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].ctl),
7488 .writefn = gt_virt_ctl_write, .raw_writefn = raw_write },
7489 { .name = "CNTP_TVAL_EL02", .state = ARM_CP_STATE_AA64,
7490 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 2, .opc2 = 0,
7491 .type = ARM_CP_NO_RAW | ARM_CP_IO | ARM_CP_ALIAS,
7492 .access = PL2_RW, .accessfn = e2h_access,
7493 .readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write },
7494 { .name = "CNTV_TVAL_EL02", .state = ARM_CP_STATE_AA64,
7495 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 3, .opc2 = 0,
7496 .type = ARM_CP_NO_RAW | ARM_CP_IO | ARM_CP_ALIAS,
7497 .access = PL2_RW, .accessfn = e2h_access,
7498 .readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write },
7499 { .name = "CNTP_CVAL_EL02", .state = ARM_CP_STATE_AA64,
7500 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 2, .opc2 = 2,
7501 .type = ARM_CP_IO | ARM_CP_ALIAS,
7502 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
7503 .access = PL2_RW, .accessfn = e2h_access,
7504 .writefn = gt_phys_cval_write, .raw_writefn = raw_write },
7505 { .name = "CNTV_CVAL_EL02", .state = ARM_CP_STATE_AA64,
7506 .opc0 = 3, .opc1 = 5, .crn = 14, .crm = 3, .opc2 = 2,
7507 .type = ARM_CP_IO | ARM_CP_ALIAS,
7508 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
7509 .access = PL2_RW, .accessfn = e2h_access,
7510 .writefn = gt_virt_cval_write, .raw_writefn = raw_write },
7511 #endif
7514 #ifndef CONFIG_USER_ONLY
7515 static const ARMCPRegInfo ats1e1_reginfo[] = {
7516 { .name = "AT_S1E1R", .state = ARM_CP_STATE_AA64,
7517 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 9, .opc2 = 0,
7518 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
7519 .writefn = ats_write64 },
7520 { .name = "AT_S1E1W", .state = ARM_CP_STATE_AA64,
7521 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 9, .opc2 = 1,
7522 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
7523 .writefn = ats_write64 },
7526 static const ARMCPRegInfo ats1cp_reginfo[] = {
7527 { .name = "ATS1CPRP",
7528 .cp = 15, .opc1 = 0, .crn = 7, .crm = 9, .opc2 = 0,
7529 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
7530 .writefn = ats_write },
7531 { .name = "ATS1CPWP",
7532 .cp = 15, .opc1 = 0, .crn = 7, .crm = 9, .opc2 = 1,
7533 .access = PL1_W, .type = ARM_CP_NO_RAW | ARM_CP_RAISES_EXC,
7534 .writefn = ats_write },
7536 #endif
7539 * ACTLR2 and HACTLR2 map to ACTLR_EL1[63:32] and
7540 * ACTLR_EL2[63:32]. They exist only if the ID_MMFR4.AC2 field
7541 * is non-zero, which is never for ARMv7, optionally in ARMv8
7542 * and mandatorily for ARMv8.2 and up.
7543 * ACTLR2 is banked for S and NS if EL3 is AArch32. Since QEMU's
7544 * implementation is RAZ/WI we can ignore this detail, as we
7545 * do for ACTLR.
7547 static const ARMCPRegInfo actlr2_hactlr2_reginfo[] = {
7548 { .name = "ACTLR2", .state = ARM_CP_STATE_AA32,
7549 .cp = 15, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 3,
7550 .access = PL1_RW, .accessfn = access_tacr,
7551 .type = ARM_CP_CONST, .resetvalue = 0 },
7552 { .name = "HACTLR2", .state = ARM_CP_STATE_AA32,
7553 .cp = 15, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 3,
7554 .access = PL2_RW, .type = ARM_CP_CONST,
7555 .resetvalue = 0 },
7558 void register_cp_regs_for_features(ARMCPU *cpu)
7560 /* Register all the coprocessor registers based on feature bits */
7561 CPUARMState *env = &cpu->env;
7562 if (arm_feature(env, ARM_FEATURE_M)) {
7563 /* M profile has no coprocessor registers */
7564 return;
7567 define_arm_cp_regs(cpu, cp_reginfo);
7568 if (!arm_feature(env, ARM_FEATURE_V8)) {
7569 /* Must go early as it is full of wildcards that may be
7570 * overridden by later definitions.
7572 define_arm_cp_regs(cpu, not_v8_cp_reginfo);
7575 if (arm_feature(env, ARM_FEATURE_V6)) {
7576 /* The ID registers all have impdef reset values */
7577 ARMCPRegInfo v6_idregs[] = {
7578 { .name = "ID_PFR0", .state = ARM_CP_STATE_BOTH,
7579 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
7580 .access = PL1_R, .type = ARM_CP_CONST,
7581 .accessfn = access_aa32_tid3,
7582 .resetvalue = cpu->isar.id_pfr0 },
7583 /* ID_PFR1 is not a plain ARM_CP_CONST because we don't know
7584 * the value of the GIC field until after we define these regs.
7586 { .name = "ID_PFR1", .state = ARM_CP_STATE_BOTH,
7587 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 1,
7588 .access = PL1_R, .type = ARM_CP_NO_RAW,
7589 .accessfn = access_aa32_tid3,
7590 .readfn = id_pfr1_read,
7591 .writefn = arm_cp_write_ignore },
7592 { .name = "ID_DFR0", .state = ARM_CP_STATE_BOTH,
7593 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 2,
7594 .access = PL1_R, .type = ARM_CP_CONST,
7595 .accessfn = access_aa32_tid3,
7596 .resetvalue = cpu->isar.id_dfr0 },
7597 { .name = "ID_AFR0", .state = ARM_CP_STATE_BOTH,
7598 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 3,
7599 .access = PL1_R, .type = ARM_CP_CONST,
7600 .accessfn = access_aa32_tid3,
7601 .resetvalue = cpu->id_afr0 },
7602 { .name = "ID_MMFR0", .state = ARM_CP_STATE_BOTH,
7603 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 4,
7604 .access = PL1_R, .type = ARM_CP_CONST,
7605 .accessfn = access_aa32_tid3,
7606 .resetvalue = cpu->isar.id_mmfr0 },
7607 { .name = "ID_MMFR1", .state = ARM_CP_STATE_BOTH,
7608 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 5,
7609 .access = PL1_R, .type = ARM_CP_CONST,
7610 .accessfn = access_aa32_tid3,
7611 .resetvalue = cpu->isar.id_mmfr1 },
7612 { .name = "ID_MMFR2", .state = ARM_CP_STATE_BOTH,
7613 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 6,
7614 .access = PL1_R, .type = ARM_CP_CONST,
7615 .accessfn = access_aa32_tid3,
7616 .resetvalue = cpu->isar.id_mmfr2 },
7617 { .name = "ID_MMFR3", .state = ARM_CP_STATE_BOTH,
7618 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 7,
7619 .access = PL1_R, .type = ARM_CP_CONST,
7620 .accessfn = access_aa32_tid3,
7621 .resetvalue = cpu->isar.id_mmfr3 },
7622 { .name = "ID_ISAR0", .state = ARM_CP_STATE_BOTH,
7623 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 0,
7624 .access = PL1_R, .type = ARM_CP_CONST,
7625 .accessfn = access_aa32_tid3,
7626 .resetvalue = cpu->isar.id_isar0 },
7627 { .name = "ID_ISAR1", .state = ARM_CP_STATE_BOTH,
7628 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 1,
7629 .access = PL1_R, .type = ARM_CP_CONST,
7630 .accessfn = access_aa32_tid3,
7631 .resetvalue = cpu->isar.id_isar1 },
7632 { .name = "ID_ISAR2", .state = ARM_CP_STATE_BOTH,
7633 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
7634 .access = PL1_R, .type = ARM_CP_CONST,
7635 .accessfn = access_aa32_tid3,
7636 .resetvalue = cpu->isar.id_isar2 },
7637 { .name = "ID_ISAR3", .state = ARM_CP_STATE_BOTH,
7638 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 3,
7639 .access = PL1_R, .type = ARM_CP_CONST,
7640 .accessfn = access_aa32_tid3,
7641 .resetvalue = cpu->isar.id_isar3 },
7642 { .name = "ID_ISAR4", .state = ARM_CP_STATE_BOTH,
7643 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 4,
7644 .access = PL1_R, .type = ARM_CP_CONST,
7645 .accessfn = access_aa32_tid3,
7646 .resetvalue = cpu->isar.id_isar4 },
7647 { .name = "ID_ISAR5", .state = ARM_CP_STATE_BOTH,
7648 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 5,
7649 .access = PL1_R, .type = ARM_CP_CONST,
7650 .accessfn = access_aa32_tid3,
7651 .resetvalue = cpu->isar.id_isar5 },
7652 { .name = "ID_MMFR4", .state = ARM_CP_STATE_BOTH,
7653 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 6,
7654 .access = PL1_R, .type = ARM_CP_CONST,
7655 .accessfn = access_aa32_tid3,
7656 .resetvalue = cpu->isar.id_mmfr4 },
7657 { .name = "ID_ISAR6", .state = ARM_CP_STATE_BOTH,
7658 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 7,
7659 .access = PL1_R, .type = ARM_CP_CONST,
7660 .accessfn = access_aa32_tid3,
7661 .resetvalue = cpu->isar.id_isar6 },
7663 define_arm_cp_regs(cpu, v6_idregs);
7664 define_arm_cp_regs(cpu, v6_cp_reginfo);
7665 } else {
7666 define_arm_cp_regs(cpu, not_v6_cp_reginfo);
7668 if (arm_feature(env, ARM_FEATURE_V6K)) {
7669 define_arm_cp_regs(cpu, v6k_cp_reginfo);
7671 if (arm_feature(env, ARM_FEATURE_V7MP) &&
7672 !arm_feature(env, ARM_FEATURE_PMSA)) {
7673 define_arm_cp_regs(cpu, v7mp_cp_reginfo);
7675 if (arm_feature(env, ARM_FEATURE_V7VE)) {
7676 define_arm_cp_regs(cpu, pmovsset_cp_reginfo);
7678 if (arm_feature(env, ARM_FEATURE_V7)) {
7679 ARMCPRegInfo clidr = {
7680 .name = "CLIDR", .state = ARM_CP_STATE_BOTH,
7681 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 1,
7682 .access = PL1_R, .type = ARM_CP_CONST,
7683 .accessfn = access_aa64_tid2,
7684 .resetvalue = cpu->clidr
7686 define_one_arm_cp_reg(cpu, &clidr);
7687 define_arm_cp_regs(cpu, v7_cp_reginfo);
7688 define_debug_regs(cpu);
7689 define_pmu_regs(cpu);
7690 } else {
7691 define_arm_cp_regs(cpu, not_v7_cp_reginfo);
7693 if (arm_feature(env, ARM_FEATURE_V8)) {
7694 /* AArch64 ID registers, which all have impdef reset values.
7695 * Note that within the ID register ranges the unused slots
7696 * must all RAZ, not UNDEF; future architecture versions may
7697 * define new registers here.
7699 ARMCPRegInfo v8_idregs[] = {
7701 * ID_AA64PFR0_EL1 is not a plain ARM_CP_CONST in system
7702 * emulation because we don't know the right value for the
7703 * GIC field until after we define these regs.
7705 { .name = "ID_AA64PFR0_EL1", .state = ARM_CP_STATE_AA64,
7706 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 0,
7707 .access = PL1_R,
7708 #ifdef CONFIG_USER_ONLY
7709 .type = ARM_CP_CONST,
7710 .resetvalue = cpu->isar.id_aa64pfr0
7711 #else
7712 .type = ARM_CP_NO_RAW,
7713 .accessfn = access_aa64_tid3,
7714 .readfn = id_aa64pfr0_read,
7715 .writefn = arm_cp_write_ignore
7716 #endif
7718 { .name = "ID_AA64PFR1_EL1", .state = ARM_CP_STATE_AA64,
7719 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 1,
7720 .access = PL1_R, .type = ARM_CP_CONST,
7721 .accessfn = access_aa64_tid3,
7722 .resetvalue = cpu->isar.id_aa64pfr1},
7723 { .name = "ID_AA64PFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7724 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 2,
7725 .access = PL1_R, .type = ARM_CP_CONST,
7726 .accessfn = access_aa64_tid3,
7727 .resetvalue = 0 },
7728 { .name = "ID_AA64PFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7729 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 3,
7730 .access = PL1_R, .type = ARM_CP_CONST,
7731 .accessfn = access_aa64_tid3,
7732 .resetvalue = 0 },
7733 { .name = "ID_AA64ZFR0_EL1", .state = ARM_CP_STATE_AA64,
7734 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 4,
7735 .access = PL1_R, .type = ARM_CP_CONST,
7736 .accessfn = access_aa64_tid3,
7737 .resetvalue = cpu->isar.id_aa64zfr0 },
7738 { .name = "ID_AA64PFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7739 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 5,
7740 .access = PL1_R, .type = ARM_CP_CONST,
7741 .accessfn = access_aa64_tid3,
7742 .resetvalue = 0 },
7743 { .name = "ID_AA64PFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7744 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 6,
7745 .access = PL1_R, .type = ARM_CP_CONST,
7746 .accessfn = access_aa64_tid3,
7747 .resetvalue = 0 },
7748 { .name = "ID_AA64PFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7749 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 7,
7750 .access = PL1_R, .type = ARM_CP_CONST,
7751 .accessfn = access_aa64_tid3,
7752 .resetvalue = 0 },
7753 { .name = "ID_AA64DFR0_EL1", .state = ARM_CP_STATE_AA64,
7754 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 0,
7755 .access = PL1_R, .type = ARM_CP_CONST,
7756 .accessfn = access_aa64_tid3,
7757 .resetvalue = cpu->isar.id_aa64dfr0 },
7758 { .name = "ID_AA64DFR1_EL1", .state = ARM_CP_STATE_AA64,
7759 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 1,
7760 .access = PL1_R, .type = ARM_CP_CONST,
7761 .accessfn = access_aa64_tid3,
7762 .resetvalue = cpu->isar.id_aa64dfr1 },
7763 { .name = "ID_AA64DFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7764 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 2,
7765 .access = PL1_R, .type = ARM_CP_CONST,
7766 .accessfn = access_aa64_tid3,
7767 .resetvalue = 0 },
7768 { .name = "ID_AA64DFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7769 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 3,
7770 .access = PL1_R, .type = ARM_CP_CONST,
7771 .accessfn = access_aa64_tid3,
7772 .resetvalue = 0 },
7773 { .name = "ID_AA64AFR0_EL1", .state = ARM_CP_STATE_AA64,
7774 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 4,
7775 .access = PL1_R, .type = ARM_CP_CONST,
7776 .accessfn = access_aa64_tid3,
7777 .resetvalue = cpu->id_aa64afr0 },
7778 { .name = "ID_AA64AFR1_EL1", .state = ARM_CP_STATE_AA64,
7779 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 5,
7780 .access = PL1_R, .type = ARM_CP_CONST,
7781 .accessfn = access_aa64_tid3,
7782 .resetvalue = cpu->id_aa64afr1 },
7783 { .name = "ID_AA64AFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7784 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 6,
7785 .access = PL1_R, .type = ARM_CP_CONST,
7786 .accessfn = access_aa64_tid3,
7787 .resetvalue = 0 },
7788 { .name = "ID_AA64AFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7789 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 7,
7790 .access = PL1_R, .type = ARM_CP_CONST,
7791 .accessfn = access_aa64_tid3,
7792 .resetvalue = 0 },
7793 { .name = "ID_AA64ISAR0_EL1", .state = ARM_CP_STATE_AA64,
7794 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 0,
7795 .access = PL1_R, .type = ARM_CP_CONST,
7796 .accessfn = access_aa64_tid3,
7797 .resetvalue = cpu->isar.id_aa64isar0 },
7798 { .name = "ID_AA64ISAR1_EL1", .state = ARM_CP_STATE_AA64,
7799 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 1,
7800 .access = PL1_R, .type = ARM_CP_CONST,
7801 .accessfn = access_aa64_tid3,
7802 .resetvalue = cpu->isar.id_aa64isar1 },
7803 { .name = "ID_AA64ISAR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7804 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 2,
7805 .access = PL1_R, .type = ARM_CP_CONST,
7806 .accessfn = access_aa64_tid3,
7807 .resetvalue = 0 },
7808 { .name = "ID_AA64ISAR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7809 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 3,
7810 .access = PL1_R, .type = ARM_CP_CONST,
7811 .accessfn = access_aa64_tid3,
7812 .resetvalue = 0 },
7813 { .name = "ID_AA64ISAR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7814 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 4,
7815 .access = PL1_R, .type = ARM_CP_CONST,
7816 .accessfn = access_aa64_tid3,
7817 .resetvalue = 0 },
7818 { .name = "ID_AA64ISAR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7819 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 5,
7820 .access = PL1_R, .type = ARM_CP_CONST,
7821 .accessfn = access_aa64_tid3,
7822 .resetvalue = 0 },
7823 { .name = "ID_AA64ISAR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7824 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 6,
7825 .access = PL1_R, .type = ARM_CP_CONST,
7826 .accessfn = access_aa64_tid3,
7827 .resetvalue = 0 },
7828 { .name = "ID_AA64ISAR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7829 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 7,
7830 .access = PL1_R, .type = ARM_CP_CONST,
7831 .accessfn = access_aa64_tid3,
7832 .resetvalue = 0 },
7833 { .name = "ID_AA64MMFR0_EL1", .state = ARM_CP_STATE_AA64,
7834 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
7835 .access = PL1_R, .type = ARM_CP_CONST,
7836 .accessfn = access_aa64_tid3,
7837 .resetvalue = cpu->isar.id_aa64mmfr0 },
7838 { .name = "ID_AA64MMFR1_EL1", .state = ARM_CP_STATE_AA64,
7839 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 1,
7840 .access = PL1_R, .type = ARM_CP_CONST,
7841 .accessfn = access_aa64_tid3,
7842 .resetvalue = cpu->isar.id_aa64mmfr1 },
7843 { .name = "ID_AA64MMFR2_EL1", .state = ARM_CP_STATE_AA64,
7844 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 2,
7845 .access = PL1_R, .type = ARM_CP_CONST,
7846 .accessfn = access_aa64_tid3,
7847 .resetvalue = cpu->isar.id_aa64mmfr2 },
7848 { .name = "ID_AA64MMFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7849 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 3,
7850 .access = PL1_R, .type = ARM_CP_CONST,
7851 .accessfn = access_aa64_tid3,
7852 .resetvalue = 0 },
7853 { .name = "ID_AA64MMFR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7854 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 4,
7855 .access = PL1_R, .type = ARM_CP_CONST,
7856 .accessfn = access_aa64_tid3,
7857 .resetvalue = 0 },
7858 { .name = "ID_AA64MMFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7859 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 5,
7860 .access = PL1_R, .type = ARM_CP_CONST,
7861 .accessfn = access_aa64_tid3,
7862 .resetvalue = 0 },
7863 { .name = "ID_AA64MMFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7864 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 6,
7865 .access = PL1_R, .type = ARM_CP_CONST,
7866 .accessfn = access_aa64_tid3,
7867 .resetvalue = 0 },
7868 { .name = "ID_AA64MMFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7869 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 7,
7870 .access = PL1_R, .type = ARM_CP_CONST,
7871 .accessfn = access_aa64_tid3,
7872 .resetvalue = 0 },
7873 { .name = "MVFR0_EL1", .state = ARM_CP_STATE_AA64,
7874 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 0,
7875 .access = PL1_R, .type = ARM_CP_CONST,
7876 .accessfn = access_aa64_tid3,
7877 .resetvalue = cpu->isar.mvfr0 },
7878 { .name = "MVFR1_EL1", .state = ARM_CP_STATE_AA64,
7879 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 1,
7880 .access = PL1_R, .type = ARM_CP_CONST,
7881 .accessfn = access_aa64_tid3,
7882 .resetvalue = cpu->isar.mvfr1 },
7883 { .name = "MVFR2_EL1", .state = ARM_CP_STATE_AA64,
7884 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 2,
7885 .access = PL1_R, .type = ARM_CP_CONST,
7886 .accessfn = access_aa64_tid3,
7887 .resetvalue = cpu->isar.mvfr2 },
7888 { .name = "MVFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7889 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 3,
7890 .access = PL1_R, .type = ARM_CP_CONST,
7891 .accessfn = access_aa64_tid3,
7892 .resetvalue = 0 },
7893 { .name = "ID_PFR2", .state = ARM_CP_STATE_BOTH,
7894 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 4,
7895 .access = PL1_R, .type = ARM_CP_CONST,
7896 .accessfn = access_aa64_tid3,
7897 .resetvalue = cpu->isar.id_pfr2 },
7898 { .name = "MVFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7899 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 5,
7900 .access = PL1_R, .type = ARM_CP_CONST,
7901 .accessfn = access_aa64_tid3,
7902 .resetvalue = 0 },
7903 { .name = "MVFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7904 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 6,
7905 .access = PL1_R, .type = ARM_CP_CONST,
7906 .accessfn = access_aa64_tid3,
7907 .resetvalue = 0 },
7908 { .name = "MVFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
7909 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 7,
7910 .access = PL1_R, .type = ARM_CP_CONST,
7911 .accessfn = access_aa64_tid3,
7912 .resetvalue = 0 },
7913 { .name = "PMCEID0", .state = ARM_CP_STATE_AA32,
7914 .cp = 15, .opc1 = 0, .crn = 9, .crm = 12, .opc2 = 6,
7915 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
7916 .resetvalue = extract64(cpu->pmceid0, 0, 32) },
7917 { .name = "PMCEID0_EL0", .state = ARM_CP_STATE_AA64,
7918 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 6,
7919 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
7920 .resetvalue = cpu->pmceid0 },
7921 { .name = "PMCEID1", .state = ARM_CP_STATE_AA32,
7922 .cp = 15, .opc1 = 0, .crn = 9, .crm = 12, .opc2 = 7,
7923 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
7924 .resetvalue = extract64(cpu->pmceid1, 0, 32) },
7925 { .name = "PMCEID1_EL0", .state = ARM_CP_STATE_AA64,
7926 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 7,
7927 .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
7928 .resetvalue = cpu->pmceid1 },
7930 #ifdef CONFIG_USER_ONLY
7931 static const ARMCPRegUserSpaceInfo v8_user_idregs[] = {
7932 { .name = "ID_AA64PFR0_EL1",
7933 .exported_bits = 0x000f000f00ff0000,
7934 .fixed_bits = 0x0000000000000011 },
7935 { .name = "ID_AA64PFR1_EL1",
7936 .exported_bits = 0x00000000000000f0 },
7937 { .name = "ID_AA64PFR*_EL1_RESERVED",
7938 .is_glob = true },
7939 { .name = "ID_AA64ZFR0_EL1" },
7940 { .name = "ID_AA64MMFR0_EL1",
7941 .fixed_bits = 0x00000000ff000000 },
7942 { .name = "ID_AA64MMFR1_EL1" },
7943 { .name = "ID_AA64MMFR*_EL1_RESERVED",
7944 .is_glob = true },
7945 { .name = "ID_AA64DFR0_EL1",
7946 .fixed_bits = 0x0000000000000006 },
7947 { .name = "ID_AA64DFR1_EL1" },
7948 { .name = "ID_AA64DFR*_EL1_RESERVED",
7949 .is_glob = true },
7950 { .name = "ID_AA64AFR*",
7951 .is_glob = true },
7952 { .name = "ID_AA64ISAR0_EL1",
7953 .exported_bits = 0x00fffffff0fffff0 },
7954 { .name = "ID_AA64ISAR1_EL1",
7955 .exported_bits = 0x000000f0ffffffff },
7956 { .name = "ID_AA64ISAR*_EL1_RESERVED",
7957 .is_glob = true },
7959 modify_arm_cp_regs(v8_idregs, v8_user_idregs);
7960 #endif
7961 /* RVBAR_EL1 is only implemented if EL1 is the highest EL */
7962 if (!arm_feature(env, ARM_FEATURE_EL3) &&
7963 !arm_feature(env, ARM_FEATURE_EL2)) {
7964 ARMCPRegInfo rvbar = {
7965 .name = "RVBAR_EL1", .state = ARM_CP_STATE_AA64,
7966 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
7967 .access = PL1_R,
7968 .fieldoffset = offsetof(CPUARMState, cp15.rvbar),
7970 define_one_arm_cp_reg(cpu, &rvbar);
7972 define_arm_cp_regs(cpu, v8_idregs);
7973 define_arm_cp_regs(cpu, v8_cp_reginfo);
7977 * Register the base EL2 cpregs.
7978 * Pre v8, these registers are implemented only as part of the
7979 * Virtualization Extensions (EL2 present). Beginning with v8,
7980 * if EL2 is missing but EL3 is enabled, mostly these become
7981 * RES0 from EL3, with some specific exceptions.
7983 if (arm_feature(env, ARM_FEATURE_EL2)
7984 || (arm_feature(env, ARM_FEATURE_EL3)
7985 && arm_feature(env, ARM_FEATURE_V8))) {
7986 uint64_t vmpidr_def = mpidr_read_val(env);
7987 ARMCPRegInfo vpidr_regs[] = {
7988 { .name = "VPIDR", .state = ARM_CP_STATE_AA32,
7989 .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
7990 .access = PL2_RW, .accessfn = access_el3_aa32ns,
7991 .resetvalue = cpu->midr,
7992 .type = ARM_CP_ALIAS | ARM_CP_EL3_NO_EL2_C_NZ,
7993 .fieldoffset = offsetoflow32(CPUARMState, cp15.vpidr_el2) },
7994 { .name = "VPIDR_EL2", .state = ARM_CP_STATE_AA64,
7995 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
7996 .access = PL2_RW, .resetvalue = cpu->midr,
7997 .type = ARM_CP_EL3_NO_EL2_C_NZ,
7998 .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
7999 { .name = "VMPIDR", .state = ARM_CP_STATE_AA32,
8000 .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
8001 .access = PL2_RW, .accessfn = access_el3_aa32ns,
8002 .resetvalue = vmpidr_def,
8003 .type = ARM_CP_ALIAS | ARM_CP_EL3_NO_EL2_C_NZ,
8004 .fieldoffset = offsetoflow32(CPUARMState, cp15.vmpidr_el2) },
8005 { .name = "VMPIDR_EL2", .state = ARM_CP_STATE_AA64,
8006 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
8007 .access = PL2_RW, .resetvalue = vmpidr_def,
8008 .type = ARM_CP_EL3_NO_EL2_C_NZ,
8009 .fieldoffset = offsetof(CPUARMState, cp15.vmpidr_el2) },
8012 * The only field of MDCR_EL2 that has a defined architectural reset
8013 * value is MDCR_EL2.HPMN which should reset to the value of PMCR_EL0.N.
8015 ARMCPRegInfo mdcr_el2 = {
8016 .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH,
8017 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1,
8018 .access = PL2_RW, .resetvalue = pmu_num_counters(env),
8019 .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el2),
8021 define_one_arm_cp_reg(cpu, &mdcr_el2);
8022 define_arm_cp_regs(cpu, vpidr_regs);
8023 define_arm_cp_regs(cpu, el2_cp_reginfo);
8024 if (arm_feature(env, ARM_FEATURE_V8)) {
8025 define_arm_cp_regs(cpu, el2_v8_cp_reginfo);
8027 if (cpu_isar_feature(aa64_sel2, cpu)) {
8028 define_arm_cp_regs(cpu, el2_sec_cp_reginfo);
8030 /* RVBAR_EL2 is only implemented if EL2 is the highest EL */
8031 if (!arm_feature(env, ARM_FEATURE_EL3)) {
8032 ARMCPRegInfo rvbar = {
8033 .name = "RVBAR_EL2", .state = ARM_CP_STATE_AA64,
8034 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 1,
8035 .access = PL2_R,
8036 .fieldoffset = offsetof(CPUARMState, cp15.rvbar),
8038 define_one_arm_cp_reg(cpu, &rvbar);
8042 /* Register the base EL3 cpregs. */
8043 if (arm_feature(env, ARM_FEATURE_EL3)) {
8044 define_arm_cp_regs(cpu, el3_cp_reginfo);
8045 ARMCPRegInfo el3_regs[] = {
8046 { .name = "RVBAR_EL3", .state = ARM_CP_STATE_AA64,
8047 .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 1,
8048 .access = PL3_R,
8049 .fieldoffset = offsetof(CPUARMState, cp15.rvbar),
8051 { .name = "SCTLR_EL3", .state = ARM_CP_STATE_AA64,
8052 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 0,
8053 .access = PL3_RW,
8054 .raw_writefn = raw_write, .writefn = sctlr_write,
8055 .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[3]),
8056 .resetvalue = cpu->reset_sctlr },
8059 define_arm_cp_regs(cpu, el3_regs);
8061 /* The behaviour of NSACR is sufficiently various that we don't
8062 * try to describe it in a single reginfo:
8063 * if EL3 is 64 bit, then trap to EL3 from S EL1,
8064 * reads as constant 0xc00 from NS EL1 and NS EL2
8065 * if EL3 is 32 bit, then RW at EL3, RO at NS EL1 and NS EL2
8066 * if v7 without EL3, register doesn't exist
8067 * if v8 without EL3, reads as constant 0xc00 from NS EL1 and NS EL2
8069 if (arm_feature(env, ARM_FEATURE_EL3)) {
8070 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
8071 static const ARMCPRegInfo nsacr = {
8072 .name = "NSACR", .type = ARM_CP_CONST,
8073 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
8074 .access = PL1_RW, .accessfn = nsacr_access,
8075 .resetvalue = 0xc00
8077 define_one_arm_cp_reg(cpu, &nsacr);
8078 } else {
8079 static const ARMCPRegInfo nsacr = {
8080 .name = "NSACR",
8081 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
8082 .access = PL3_RW | PL1_R,
8083 .resetvalue = 0,
8084 .fieldoffset = offsetof(CPUARMState, cp15.nsacr)
8086 define_one_arm_cp_reg(cpu, &nsacr);
8088 } else {
8089 if (arm_feature(env, ARM_FEATURE_V8)) {
8090 static const ARMCPRegInfo nsacr = {
8091 .name = "NSACR", .type = ARM_CP_CONST,
8092 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
8093 .access = PL1_R,
8094 .resetvalue = 0xc00
8096 define_one_arm_cp_reg(cpu, &nsacr);
8100 if (arm_feature(env, ARM_FEATURE_PMSA)) {
8101 if (arm_feature(env, ARM_FEATURE_V6)) {
8102 /* PMSAv6 not implemented */
8103 assert(arm_feature(env, ARM_FEATURE_V7));
8104 define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
8105 define_arm_cp_regs(cpu, pmsav7_cp_reginfo);
8106 } else {
8107 define_arm_cp_regs(cpu, pmsav5_cp_reginfo);
8109 } else {
8110 define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
8111 define_arm_cp_regs(cpu, vmsa_cp_reginfo);
8112 /* TTCBR2 is introduced with ARMv8.2-AA32HPD. */
8113 if (cpu_isar_feature(aa32_hpd, cpu)) {
8114 define_one_arm_cp_reg(cpu, &ttbcr2_reginfo);
8117 if (arm_feature(env, ARM_FEATURE_THUMB2EE)) {
8118 define_arm_cp_regs(cpu, t2ee_cp_reginfo);
8120 if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) {
8121 define_arm_cp_regs(cpu, generic_timer_cp_reginfo);
8123 if (arm_feature(env, ARM_FEATURE_VAPA)) {
8124 define_arm_cp_regs(cpu, vapa_cp_reginfo);
8126 if (arm_feature(env, ARM_FEATURE_CACHE_TEST_CLEAN)) {
8127 define_arm_cp_regs(cpu, cache_test_clean_cp_reginfo);
8129 if (arm_feature(env, ARM_FEATURE_CACHE_DIRTY_REG)) {
8130 define_arm_cp_regs(cpu, cache_dirty_status_cp_reginfo);
8132 if (arm_feature(env, ARM_FEATURE_CACHE_BLOCK_OPS)) {
8133 define_arm_cp_regs(cpu, cache_block_ops_cp_reginfo);
8135 if (arm_feature(env, ARM_FEATURE_OMAPCP)) {
8136 define_arm_cp_regs(cpu, omap_cp_reginfo);
8138 if (arm_feature(env, ARM_FEATURE_STRONGARM)) {
8139 define_arm_cp_regs(cpu, strongarm_cp_reginfo);
8141 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
8142 define_arm_cp_regs(cpu, xscale_cp_reginfo);
8144 if (arm_feature(env, ARM_FEATURE_DUMMY_C15_REGS)) {
8145 define_arm_cp_regs(cpu, dummy_c15_cp_reginfo);
8147 if (arm_feature(env, ARM_FEATURE_LPAE)) {
8148 define_arm_cp_regs(cpu, lpae_cp_reginfo);
8150 if (cpu_isar_feature(aa32_jazelle, cpu)) {
8151 define_arm_cp_regs(cpu, jazelle_regs);
8153 /* Slightly awkwardly, the OMAP and StrongARM cores need all of
8154 * cp15 crn=0 to be writes-ignored, whereas for other cores they should
8155 * be read-only (ie write causes UNDEF exception).
8158 ARMCPRegInfo id_pre_v8_midr_cp_reginfo[] = {
8159 /* Pre-v8 MIDR space.
8160 * Note that the MIDR isn't a simple constant register because
8161 * of the TI925 behaviour where writes to another register can
8162 * cause the MIDR value to change.
8164 * Unimplemented registers in the c15 0 0 0 space default to
8165 * MIDR. Define MIDR first as this entire space, then CTR, TCMTR
8166 * and friends override accordingly.
8168 { .name = "MIDR",
8169 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = CP_ANY,
8170 .access = PL1_R, .resetvalue = cpu->midr,
8171 .writefn = arm_cp_write_ignore, .raw_writefn = raw_write,
8172 .readfn = midr_read,
8173 .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
8174 .type = ARM_CP_OVERRIDE },
8175 /* crn = 0 op1 = 0 crm = 3..7 : currently unassigned; we RAZ. */
8176 { .name = "DUMMY",
8177 .cp = 15, .crn = 0, .crm = 3, .opc1 = 0, .opc2 = CP_ANY,
8178 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
8179 { .name = "DUMMY",
8180 .cp = 15, .crn = 0, .crm = 4, .opc1 = 0, .opc2 = CP_ANY,
8181 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
8182 { .name = "DUMMY",
8183 .cp = 15, .crn = 0, .crm = 5, .opc1 = 0, .opc2 = CP_ANY,
8184 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
8185 { .name = "DUMMY",
8186 .cp = 15, .crn = 0, .crm = 6, .opc1 = 0, .opc2 = CP_ANY,
8187 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
8188 { .name = "DUMMY",
8189 .cp = 15, .crn = 0, .crm = 7, .opc1 = 0, .opc2 = CP_ANY,
8190 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
8192 ARMCPRegInfo id_v8_midr_cp_reginfo[] = {
8193 { .name = "MIDR_EL1", .state = ARM_CP_STATE_BOTH,
8194 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 0,
8195 .access = PL1_R, .type = ARM_CP_NO_RAW, .resetvalue = cpu->midr,
8196 .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
8197 .readfn = midr_read },
8198 /* crn = 0 op1 = 0 crm = 0 op2 = 4,7 : AArch32 aliases of MIDR */
8199 { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
8200 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
8201 .access = PL1_R, .resetvalue = cpu->midr },
8202 { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
8203 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 7,
8204 .access = PL1_R, .resetvalue = cpu->midr },
8205 { .name = "REVIDR_EL1", .state = ARM_CP_STATE_BOTH,
8206 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 6,
8207 .access = PL1_R,
8208 .accessfn = access_aa64_tid1,
8209 .type = ARM_CP_CONST, .resetvalue = cpu->revidr },
8211 ARMCPRegInfo id_cp_reginfo[] = {
8212 /* These are common to v8 and pre-v8 */
8213 { .name = "CTR",
8214 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 1,
8215 .access = PL1_R, .accessfn = ctr_el0_access,
8216 .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
8217 { .name = "CTR_EL0", .state = ARM_CP_STATE_AA64,
8218 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 0, .crm = 0,
8219 .access = PL0_R, .accessfn = ctr_el0_access,
8220 .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
8221 /* TCMTR and TLBTR exist in v8 but have no 64-bit versions */
8222 { .name = "TCMTR",
8223 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 2,
8224 .access = PL1_R,
8225 .accessfn = access_aa32_tid1,
8226 .type = ARM_CP_CONST, .resetvalue = 0 },
8228 /* TLBTR is specific to VMSA */
8229 ARMCPRegInfo id_tlbtr_reginfo = {
8230 .name = "TLBTR",
8231 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 3,
8232 .access = PL1_R,
8233 .accessfn = access_aa32_tid1,
8234 .type = ARM_CP_CONST, .resetvalue = 0,
8236 /* MPUIR is specific to PMSA V6+ */
8237 ARMCPRegInfo id_mpuir_reginfo = {
8238 .name = "MPUIR",
8239 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
8240 .access = PL1_R, .type = ARM_CP_CONST,
8241 .resetvalue = cpu->pmsav7_dregion << 8
8243 static const ARMCPRegInfo crn0_wi_reginfo = {
8244 .name = "CRN0_WI", .cp = 15, .crn = 0, .crm = CP_ANY,
8245 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_W,
8246 .type = ARM_CP_NOP | ARM_CP_OVERRIDE
8248 #ifdef CONFIG_USER_ONLY
8249 static const ARMCPRegUserSpaceInfo id_v8_user_midr_cp_reginfo[] = {
8250 { .name = "MIDR_EL1",
8251 .exported_bits = 0x00000000ffffffff },
8252 { .name = "REVIDR_EL1" },
8254 modify_arm_cp_regs(id_v8_midr_cp_reginfo, id_v8_user_midr_cp_reginfo);
8255 #endif
8256 if (arm_feature(env, ARM_FEATURE_OMAPCP) ||
8257 arm_feature(env, ARM_FEATURE_STRONGARM)) {
8258 size_t i;
8259 /* Register the blanket "writes ignored" value first to cover the
8260 * whole space. Then update the specific ID registers to allow write
8261 * access, so that they ignore writes rather than causing them to
8262 * UNDEF.
8264 define_one_arm_cp_reg(cpu, &crn0_wi_reginfo);
8265 for (i = 0; i < ARRAY_SIZE(id_pre_v8_midr_cp_reginfo); ++i) {
8266 id_pre_v8_midr_cp_reginfo[i].access = PL1_RW;
8268 for (i = 0; i < ARRAY_SIZE(id_cp_reginfo); ++i) {
8269 id_cp_reginfo[i].access = PL1_RW;
8271 id_mpuir_reginfo.access = PL1_RW;
8272 id_tlbtr_reginfo.access = PL1_RW;
8274 if (arm_feature(env, ARM_FEATURE_V8)) {
8275 define_arm_cp_regs(cpu, id_v8_midr_cp_reginfo);
8276 } else {
8277 define_arm_cp_regs(cpu, id_pre_v8_midr_cp_reginfo);
8279 define_arm_cp_regs(cpu, id_cp_reginfo);
8280 if (!arm_feature(env, ARM_FEATURE_PMSA)) {
8281 define_one_arm_cp_reg(cpu, &id_tlbtr_reginfo);
8282 } else if (arm_feature(env, ARM_FEATURE_V7)) {
8283 define_one_arm_cp_reg(cpu, &id_mpuir_reginfo);
8287 if (arm_feature(env, ARM_FEATURE_MPIDR)) {
8288 ARMCPRegInfo mpidr_cp_reginfo[] = {
8289 { .name = "MPIDR_EL1", .state = ARM_CP_STATE_BOTH,
8290 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 5,
8291 .access = PL1_R, .readfn = mpidr_read, .type = ARM_CP_NO_RAW },
8293 #ifdef CONFIG_USER_ONLY
8294 static const ARMCPRegUserSpaceInfo mpidr_user_cp_reginfo[] = {
8295 { .name = "MPIDR_EL1",
8296 .fixed_bits = 0x0000000080000000 },
8298 modify_arm_cp_regs(mpidr_cp_reginfo, mpidr_user_cp_reginfo);
8299 #endif
8300 define_arm_cp_regs(cpu, mpidr_cp_reginfo);
8303 if (arm_feature(env, ARM_FEATURE_AUXCR)) {
8304 ARMCPRegInfo auxcr_reginfo[] = {
8305 { .name = "ACTLR_EL1", .state = ARM_CP_STATE_BOTH,
8306 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 1,
8307 .access = PL1_RW, .accessfn = access_tacr,
8308 .type = ARM_CP_CONST, .resetvalue = cpu->reset_auxcr },
8309 { .name = "ACTLR_EL2", .state = ARM_CP_STATE_BOTH,
8310 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 1,
8311 .access = PL2_RW, .type = ARM_CP_CONST,
8312 .resetvalue = 0 },
8313 { .name = "ACTLR_EL3", .state = ARM_CP_STATE_AA64,
8314 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 1,
8315 .access = PL3_RW, .type = ARM_CP_CONST,
8316 .resetvalue = 0 },
8318 define_arm_cp_regs(cpu, auxcr_reginfo);
8319 if (cpu_isar_feature(aa32_ac2, cpu)) {
8320 define_arm_cp_regs(cpu, actlr2_hactlr2_reginfo);
8324 if (arm_feature(env, ARM_FEATURE_CBAR)) {
8326 * CBAR is IMPDEF, but common on Arm Cortex-A implementations.
8327 * There are two flavours:
8328 * (1) older 32-bit only cores have a simple 32-bit CBAR
8329 * (2) 64-bit cores have a 64-bit CBAR visible to AArch64, plus a
8330 * 32-bit register visible to AArch32 at a different encoding
8331 * to the "flavour 1" register and with the bits rearranged to
8332 * be able to squash a 64-bit address into the 32-bit view.
8333 * We distinguish the two via the ARM_FEATURE_AARCH64 flag, but
8334 * in future if we support AArch32-only configs of some of the
8335 * AArch64 cores we might need to add a specific feature flag
8336 * to indicate cores with "flavour 2" CBAR.
8338 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
8339 /* 32 bit view is [31:18] 0...0 [43:32]. */
8340 uint32_t cbar32 = (extract64(cpu->reset_cbar, 18, 14) << 18)
8341 | extract64(cpu->reset_cbar, 32, 12);
8342 ARMCPRegInfo cbar_reginfo[] = {
8343 { .name = "CBAR",
8344 .type = ARM_CP_CONST,
8345 .cp = 15, .crn = 15, .crm = 3, .opc1 = 1, .opc2 = 0,
8346 .access = PL1_R, .resetvalue = cbar32 },
8347 { .name = "CBAR_EL1", .state = ARM_CP_STATE_AA64,
8348 .type = ARM_CP_CONST,
8349 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 3, .opc2 = 0,
8350 .access = PL1_R, .resetvalue = cpu->reset_cbar },
8352 /* We don't implement a r/w 64 bit CBAR currently */
8353 assert(arm_feature(env, ARM_FEATURE_CBAR_RO));
8354 define_arm_cp_regs(cpu, cbar_reginfo);
8355 } else {
8356 ARMCPRegInfo cbar = {
8357 .name = "CBAR",
8358 .cp = 15, .crn = 15, .crm = 0, .opc1 = 4, .opc2 = 0,
8359 .access = PL1_R|PL3_W, .resetvalue = cpu->reset_cbar,
8360 .fieldoffset = offsetof(CPUARMState,
8361 cp15.c15_config_base_address)
8363 if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
8364 cbar.access = PL1_R;
8365 cbar.fieldoffset = 0;
8366 cbar.type = ARM_CP_CONST;
8368 define_one_arm_cp_reg(cpu, &cbar);
8372 if (arm_feature(env, ARM_FEATURE_VBAR)) {
8373 static const ARMCPRegInfo vbar_cp_reginfo[] = {
8374 { .name = "VBAR", .state = ARM_CP_STATE_BOTH,
8375 .opc0 = 3, .crn = 12, .crm = 0, .opc1 = 0, .opc2 = 0,
8376 .access = PL1_RW, .writefn = vbar_write,
8377 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.vbar_s),
8378 offsetof(CPUARMState, cp15.vbar_ns) },
8379 .resetvalue = 0 },
8381 define_arm_cp_regs(cpu, vbar_cp_reginfo);
8384 /* Generic registers whose values depend on the implementation */
8386 ARMCPRegInfo sctlr = {
8387 .name = "SCTLR", .state = ARM_CP_STATE_BOTH,
8388 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
8389 .access = PL1_RW, .accessfn = access_tvm_trvm,
8390 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.sctlr_s),
8391 offsetof(CPUARMState, cp15.sctlr_ns) },
8392 .writefn = sctlr_write, .resetvalue = cpu->reset_sctlr,
8393 .raw_writefn = raw_write,
8395 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
8396 /* Normally we would always end the TB on an SCTLR write, but Linux
8397 * arch/arm/mach-pxa/sleep.S expects two instructions following
8398 * an MMU enable to execute from cache. Imitate this behaviour.
8400 sctlr.type |= ARM_CP_SUPPRESS_TB_END;
8402 define_one_arm_cp_reg(cpu, &sctlr);
8405 if (cpu_isar_feature(aa64_lor, cpu)) {
8406 define_arm_cp_regs(cpu, lor_reginfo);
8408 if (cpu_isar_feature(aa64_pan, cpu)) {
8409 define_one_arm_cp_reg(cpu, &pan_reginfo);
8411 #ifndef CONFIG_USER_ONLY
8412 if (cpu_isar_feature(aa64_ats1e1, cpu)) {
8413 define_arm_cp_regs(cpu, ats1e1_reginfo);
8415 if (cpu_isar_feature(aa32_ats1e1, cpu)) {
8416 define_arm_cp_regs(cpu, ats1cp_reginfo);
8418 #endif
8419 if (cpu_isar_feature(aa64_uao, cpu)) {
8420 define_one_arm_cp_reg(cpu, &uao_reginfo);
8423 if (cpu_isar_feature(aa64_dit, cpu)) {
8424 define_one_arm_cp_reg(cpu, &dit_reginfo);
8426 if (cpu_isar_feature(aa64_ssbs, cpu)) {
8427 define_one_arm_cp_reg(cpu, &ssbs_reginfo);
8429 if (cpu_isar_feature(any_ras, cpu)) {
8430 define_arm_cp_regs(cpu, minimal_ras_reginfo);
8433 if (cpu_isar_feature(aa64_vh, cpu) ||
8434 cpu_isar_feature(aa64_debugv8p2, cpu)) {
8435 define_one_arm_cp_reg(cpu, &contextidr_el2);
8437 if (arm_feature(env, ARM_FEATURE_EL2) && cpu_isar_feature(aa64_vh, cpu)) {
8438 define_arm_cp_regs(cpu, vhe_reginfo);
8441 if (cpu_isar_feature(aa64_sve, cpu)) {
8442 define_arm_cp_regs(cpu, zcr_reginfo);
8445 if (cpu_isar_feature(aa64_hcx, cpu)) {
8446 define_one_arm_cp_reg(cpu, &hcrx_el2_reginfo);
8449 #ifdef TARGET_AARCH64
8450 if (cpu_isar_feature(aa64_pauth, cpu)) {
8451 define_arm_cp_regs(cpu, pauth_reginfo);
8453 if (cpu_isar_feature(aa64_rndr, cpu)) {
8454 define_arm_cp_regs(cpu, rndr_reginfo);
8456 if (cpu_isar_feature(aa64_tlbirange, cpu)) {
8457 define_arm_cp_regs(cpu, tlbirange_reginfo);
8459 if (cpu_isar_feature(aa64_tlbios, cpu)) {
8460 define_arm_cp_regs(cpu, tlbios_reginfo);
8462 #ifndef CONFIG_USER_ONLY
8463 /* Data Cache clean instructions up to PoP */
8464 if (cpu_isar_feature(aa64_dcpop, cpu)) {
8465 define_one_arm_cp_reg(cpu, dcpop_reg);
8467 if (cpu_isar_feature(aa64_dcpodp, cpu)) {
8468 define_one_arm_cp_reg(cpu, dcpodp_reg);
8471 #endif /*CONFIG_USER_ONLY*/
8474 * If full MTE is enabled, add all of the system registers.
8475 * If only "instructions available at EL0" are enabled,
8476 * then define only a RAZ/WI version of PSTATE.TCO.
8478 if (cpu_isar_feature(aa64_mte, cpu)) {
8479 define_arm_cp_regs(cpu, mte_reginfo);
8480 define_arm_cp_regs(cpu, mte_el0_cacheop_reginfo);
8481 } else if (cpu_isar_feature(aa64_mte_insn_reg, cpu)) {
8482 define_arm_cp_regs(cpu, mte_tco_ro_reginfo);
8483 define_arm_cp_regs(cpu, mte_el0_cacheop_reginfo);
8486 if (cpu_isar_feature(aa64_scxtnum, cpu)) {
8487 define_arm_cp_regs(cpu, scxtnum_reginfo);
8489 #endif
8491 if (cpu_isar_feature(any_predinv, cpu)) {
8492 define_arm_cp_regs(cpu, predinv_reginfo);
8495 if (cpu_isar_feature(any_ccidx, cpu)) {
8496 define_arm_cp_regs(cpu, ccsidr2_reginfo);
8499 #ifndef CONFIG_USER_ONLY
8501 * Register redirections and aliases must be done last,
8502 * after the registers from the other extensions have been defined.
8504 if (arm_feature(env, ARM_FEATURE_EL2) && cpu_isar_feature(aa64_vh, cpu)) {
8505 define_arm_vh_e2h_redirects_aliases(cpu);
8507 #endif
8510 /* Sort alphabetically by type name, except for "any". */
8511 static gint arm_cpu_list_compare(gconstpointer a, gconstpointer b)
8513 ObjectClass *class_a = (ObjectClass *)a;
8514 ObjectClass *class_b = (ObjectClass *)b;
8515 const char *name_a, *name_b;
8517 name_a = object_class_get_name(class_a);
8518 name_b = object_class_get_name(class_b);
8519 if (strcmp(name_a, "any-" TYPE_ARM_CPU) == 0) {
8520 return 1;
8521 } else if (strcmp(name_b, "any-" TYPE_ARM_CPU) == 0) {
8522 return -1;
8523 } else {
8524 return strcmp(name_a, name_b);
8528 static void arm_cpu_list_entry(gpointer data, gpointer user_data)
8530 ObjectClass *oc = data;
8531 const char *typename;
8532 char *name;
8534 typename = object_class_get_name(oc);
8535 name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_ARM_CPU));
8536 qemu_printf(" %s\n", name);
8537 g_free(name);
8540 void arm_cpu_list(void)
8542 GSList *list;
8544 list = object_class_get_list(TYPE_ARM_CPU, false);
8545 list = g_slist_sort(list, arm_cpu_list_compare);
8546 qemu_printf("Available CPUs:\n");
8547 g_slist_foreach(list, arm_cpu_list_entry, NULL);
8548 g_slist_free(list);
8551 static void arm_cpu_add_definition(gpointer data, gpointer user_data)
8553 ObjectClass *oc = data;
8554 CpuDefinitionInfoList **cpu_list = user_data;
8555 CpuDefinitionInfo *info;
8556 const char *typename;
8558 typename = object_class_get_name(oc);
8559 info = g_malloc0(sizeof(*info));
8560 info->name = g_strndup(typename,
8561 strlen(typename) - strlen("-" TYPE_ARM_CPU));
8562 info->q_typename = g_strdup(typename);
8564 QAPI_LIST_PREPEND(*cpu_list, info);
8567 CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
8569 CpuDefinitionInfoList *cpu_list = NULL;
8570 GSList *list;
8572 list = object_class_get_list(TYPE_ARM_CPU, false);
8573 g_slist_foreach(list, arm_cpu_add_definition, &cpu_list);
8574 g_slist_free(list);
8576 return cpu_list;
8580 * Private utility function for define_one_arm_cp_reg_with_opaque():
8581 * add a single reginfo struct to the hash table.
8583 static void add_cpreg_to_hashtable(ARMCPU *cpu, const ARMCPRegInfo *r,
8584 void *opaque, CPState state,
8585 CPSecureState secstate,
8586 int crm, int opc1, int opc2,
8587 const char *name)
8589 CPUARMState *env = &cpu->env;
8590 uint32_t key;
8591 ARMCPRegInfo *r2;
8592 bool is64 = r->type & ARM_CP_64BIT;
8593 bool ns = secstate & ARM_CP_SECSTATE_NS;
8594 int cp = r->cp;
8595 size_t name_len;
8596 bool make_const;
8598 switch (state) {
8599 case ARM_CP_STATE_AA32:
8600 /* We assume it is a cp15 register if the .cp field is left unset. */
8601 if (cp == 0 && r->state == ARM_CP_STATE_BOTH) {
8602 cp = 15;
8604 key = ENCODE_CP_REG(cp, is64, ns, r->crn, crm, opc1, opc2);
8605 break;
8606 case ARM_CP_STATE_AA64:
8608 * To allow abbreviation of ARMCPRegInfo definitions, we treat
8609 * cp == 0 as equivalent to the value for "standard guest-visible
8610 * sysreg". STATE_BOTH definitions are also always "standard sysreg"
8611 * in their AArch64 view (the .cp value may be non-zero for the
8612 * benefit of the AArch32 view).
8614 if (cp == 0 || r->state == ARM_CP_STATE_BOTH) {
8615 cp = CP_REG_ARM64_SYSREG_CP;
8617 key = ENCODE_AA64_CP_REG(cp, r->crn, crm, r->opc0, opc1, opc2);
8618 break;
8619 default:
8620 g_assert_not_reached();
8623 /* Overriding of an existing definition must be explicitly requested. */
8624 if (!(r->type & ARM_CP_OVERRIDE)) {
8625 const ARMCPRegInfo *oldreg = get_arm_cp_reginfo(cpu->cp_regs, key);
8626 if (oldreg) {
8627 assert(oldreg->type & ARM_CP_OVERRIDE);
8632 * Eliminate registers that are not present because the EL is missing.
8633 * Doing this here makes it easier to put all registers for a given
8634 * feature into the same ARMCPRegInfo array and define them all at once.
8636 make_const = false;
8637 if (arm_feature(env, ARM_FEATURE_EL3)) {
8639 * An EL2 register without EL2 but with EL3 is (usually) RES0.
8640 * See rule RJFFP in section D1.1.3 of DDI0487H.a.
8642 int min_el = ctz32(r->access) / 2;
8643 if (min_el == 2 && !arm_feature(env, ARM_FEATURE_EL2)) {
8644 if (r->type & ARM_CP_EL3_NO_EL2_UNDEF) {
8645 return;
8647 make_const = !(r->type & ARM_CP_EL3_NO_EL2_KEEP);
8649 } else {
8650 CPAccessRights max_el = (arm_feature(env, ARM_FEATURE_EL2)
8651 ? PL2_RW : PL1_RW);
8652 if ((r->access & max_el) == 0) {
8653 return;
8657 /* Combine cpreg and name into one allocation. */
8658 name_len = strlen(name) + 1;
8659 r2 = g_malloc(sizeof(*r2) + name_len);
8660 *r2 = *r;
8661 r2->name = memcpy(r2 + 1, name, name_len);
8664 * Update fields to match the instantiation, overwiting wildcards
8665 * such as CP_ANY, ARM_CP_STATE_BOTH, or ARM_CP_SECSTATE_BOTH.
8667 r2->cp = cp;
8668 r2->crm = crm;
8669 r2->opc1 = opc1;
8670 r2->opc2 = opc2;
8671 r2->state = state;
8672 r2->secure = secstate;
8673 if (opaque) {
8674 r2->opaque = opaque;
8677 if (make_const) {
8678 /* This should not have been a very special register to begin. */
8679 int old_special = r2->type & ARM_CP_SPECIAL_MASK;
8680 assert(old_special == 0 || old_special == ARM_CP_NOP);
8682 * Set the special function to CONST, retaining the other flags.
8683 * This is important for e.g. ARM_CP_SVE so that we still
8684 * take the SVE trap if CPTR_EL3.EZ == 0.
8686 r2->type = (r2->type & ~ARM_CP_SPECIAL_MASK) | ARM_CP_CONST;
8688 * Usually, these registers become RES0, but there are a few
8689 * special cases like VPIDR_EL2 which have a constant non-zero
8690 * value with writes ignored.
8692 if (!(r->type & ARM_CP_EL3_NO_EL2_C_NZ)) {
8693 r2->resetvalue = 0;
8696 * ARM_CP_CONST has precedence, so removing the callbacks and
8697 * offsets are not strictly necessary, but it is potentially
8698 * less confusing to debug later.
8700 r2->readfn = NULL;
8701 r2->writefn = NULL;
8702 r2->raw_readfn = NULL;
8703 r2->raw_writefn = NULL;
8704 r2->resetfn = NULL;
8705 r2->fieldoffset = 0;
8706 r2->bank_fieldoffsets[0] = 0;
8707 r2->bank_fieldoffsets[1] = 0;
8708 } else {
8709 bool isbanked = r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1];
8711 if (isbanked) {
8713 * Register is banked (using both entries in array).
8714 * Overwriting fieldoffset as the array is only used to define
8715 * banked registers but later only fieldoffset is used.
8717 r2->fieldoffset = r->bank_fieldoffsets[ns];
8719 if (state == ARM_CP_STATE_AA32) {
8720 if (isbanked) {
8722 * If the register is banked then we don't need to migrate or
8723 * reset the 32-bit instance in certain cases:
8725 * 1) If the register has both 32-bit and 64-bit instances
8726 * then we can count on the 64-bit instance taking care
8727 * of the non-secure bank.
8728 * 2) If ARMv8 is enabled then we can count on a 64-bit
8729 * version taking care of the secure bank. This requires
8730 * that separate 32 and 64-bit definitions are provided.
8732 if ((r->state == ARM_CP_STATE_BOTH && ns) ||
8733 (arm_feature(env, ARM_FEATURE_V8) && !ns)) {
8734 r2->type |= ARM_CP_ALIAS;
8736 } else if ((secstate != r->secure) && !ns) {
8738 * The register is not banked so we only want to allow
8739 * migration of the non-secure instance.
8741 r2->type |= ARM_CP_ALIAS;
8744 if (HOST_BIG_ENDIAN &&
8745 r->state == ARM_CP_STATE_BOTH && r2->fieldoffset) {
8746 r2->fieldoffset += sizeof(uint32_t);
8752 * By convention, for wildcarded registers only the first
8753 * entry is used for migration; the others are marked as
8754 * ALIAS so we don't try to transfer the register
8755 * multiple times. Special registers (ie NOP/WFI) are
8756 * never migratable and not even raw-accessible.
8758 if (r2->type & ARM_CP_SPECIAL_MASK) {
8759 r2->type |= ARM_CP_NO_RAW;
8761 if (((r->crm == CP_ANY) && crm != 0) ||
8762 ((r->opc1 == CP_ANY) && opc1 != 0) ||
8763 ((r->opc2 == CP_ANY) && opc2 != 0)) {
8764 r2->type |= ARM_CP_ALIAS | ARM_CP_NO_GDB;
8768 * Check that raw accesses are either forbidden or handled. Note that
8769 * we can't assert this earlier because the setup of fieldoffset for
8770 * banked registers has to be done first.
8772 if (!(r2->type & ARM_CP_NO_RAW)) {
8773 assert(!raw_accessors_invalid(r2));
8776 g_hash_table_insert(cpu->cp_regs, (gpointer)(uintptr_t)key, r2);
8780 void define_one_arm_cp_reg_with_opaque(ARMCPU *cpu,
8781 const ARMCPRegInfo *r, void *opaque)
8783 /* Define implementations of coprocessor registers.
8784 * We store these in a hashtable because typically
8785 * there are less than 150 registers in a space which
8786 * is 16*16*16*8*8 = 262144 in size.
8787 * Wildcarding is supported for the crm, opc1 and opc2 fields.
8788 * If a register is defined twice then the second definition is
8789 * used, so this can be used to define some generic registers and
8790 * then override them with implementation specific variations.
8791 * At least one of the original and the second definition should
8792 * include ARM_CP_OVERRIDE in its type bits -- this is just a guard
8793 * against accidental use.
8795 * The state field defines whether the register is to be
8796 * visible in the AArch32 or AArch64 execution state. If the
8797 * state is set to ARM_CP_STATE_BOTH then we synthesise a
8798 * reginfo structure for the AArch32 view, which sees the lower
8799 * 32 bits of the 64 bit register.
8801 * Only registers visible in AArch64 may set r->opc0; opc0 cannot
8802 * be wildcarded. AArch64 registers are always considered to be 64
8803 * bits; the ARM_CP_64BIT* flag applies only to the AArch32 view of
8804 * the register, if any.
8806 int crm, opc1, opc2;
8807 int crmmin = (r->crm == CP_ANY) ? 0 : r->crm;
8808 int crmmax = (r->crm == CP_ANY) ? 15 : r->crm;
8809 int opc1min = (r->opc1 == CP_ANY) ? 0 : r->opc1;
8810 int opc1max = (r->opc1 == CP_ANY) ? 7 : r->opc1;
8811 int opc2min = (r->opc2 == CP_ANY) ? 0 : r->opc2;
8812 int opc2max = (r->opc2 == CP_ANY) ? 7 : r->opc2;
8813 CPState state;
8815 /* 64 bit registers have only CRm and Opc1 fields */
8816 assert(!((r->type & ARM_CP_64BIT) && (r->opc2 || r->crn)));
8817 /* op0 only exists in the AArch64 encodings */
8818 assert((r->state != ARM_CP_STATE_AA32) || (r->opc0 == 0));
8819 /* AArch64 regs are all 64 bit so ARM_CP_64BIT is meaningless */
8820 assert((r->state != ARM_CP_STATE_AA64) || !(r->type & ARM_CP_64BIT));
8822 * This API is only for Arm's system coprocessors (14 and 15) or
8823 * (M-profile or v7A-and-earlier only) for implementation defined
8824 * coprocessors in the range 0..7. Our decode assumes this, since
8825 * 8..13 can be used for other insns including VFP and Neon. See
8826 * valid_cp() in translate.c. Assert here that we haven't tried
8827 * to use an invalid coprocessor number.
8829 switch (r->state) {
8830 case ARM_CP_STATE_BOTH:
8831 /* 0 has a special meaning, but otherwise the same rules as AA32. */
8832 if (r->cp == 0) {
8833 break;
8835 /* fall through */
8836 case ARM_CP_STATE_AA32:
8837 if (arm_feature(&cpu->env, ARM_FEATURE_V8) &&
8838 !arm_feature(&cpu->env, ARM_FEATURE_M)) {
8839 assert(r->cp >= 14 && r->cp <= 15);
8840 } else {
8841 assert(r->cp < 8 || (r->cp >= 14 && r->cp <= 15));
8843 break;
8844 case ARM_CP_STATE_AA64:
8845 assert(r->cp == 0 || r->cp == CP_REG_ARM64_SYSREG_CP);
8846 break;
8847 default:
8848 g_assert_not_reached();
8850 /* The AArch64 pseudocode CheckSystemAccess() specifies that op1
8851 * encodes a minimum access level for the register. We roll this
8852 * runtime check into our general permission check code, so check
8853 * here that the reginfo's specified permissions are strict enough
8854 * to encompass the generic architectural permission check.
8856 if (r->state != ARM_CP_STATE_AA32) {
8857 CPAccessRights mask;
8858 switch (r->opc1) {
8859 case 0:
8860 /* min_EL EL1, but some accessible to EL0 via kernel ABI */
8861 mask = PL0U_R | PL1_RW;
8862 break;
8863 case 1: case 2:
8864 /* min_EL EL1 */
8865 mask = PL1_RW;
8866 break;
8867 case 3:
8868 /* min_EL EL0 */
8869 mask = PL0_RW;
8870 break;
8871 case 4:
8872 case 5:
8873 /* min_EL EL2 */
8874 mask = PL2_RW;
8875 break;
8876 case 6:
8877 /* min_EL EL3 */
8878 mask = PL3_RW;
8879 break;
8880 case 7:
8881 /* min_EL EL1, secure mode only (we don't check the latter) */
8882 mask = PL1_RW;
8883 break;
8884 default:
8885 /* broken reginfo with out-of-range opc1 */
8886 g_assert_not_reached();
8888 /* assert our permissions are not too lax (stricter is fine) */
8889 assert((r->access & ~mask) == 0);
8892 /* Check that the register definition has enough info to handle
8893 * reads and writes if they are permitted.
8895 if (!(r->type & (ARM_CP_SPECIAL_MASK | ARM_CP_CONST))) {
8896 if (r->access & PL3_R) {
8897 assert((r->fieldoffset ||
8898 (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
8899 r->readfn);
8901 if (r->access & PL3_W) {
8902 assert((r->fieldoffset ||
8903 (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
8904 r->writefn);
8908 for (crm = crmmin; crm <= crmmax; crm++) {
8909 for (opc1 = opc1min; opc1 <= opc1max; opc1++) {
8910 for (opc2 = opc2min; opc2 <= opc2max; opc2++) {
8911 for (state = ARM_CP_STATE_AA32;
8912 state <= ARM_CP_STATE_AA64; state++) {
8913 if (r->state != state && r->state != ARM_CP_STATE_BOTH) {
8914 continue;
8916 if (state == ARM_CP_STATE_AA32) {
8917 /* Under AArch32 CP registers can be common
8918 * (same for secure and non-secure world) or banked.
8920 char *name;
8922 switch (r->secure) {
8923 case ARM_CP_SECSTATE_S:
8924 case ARM_CP_SECSTATE_NS:
8925 add_cpreg_to_hashtable(cpu, r, opaque, state,
8926 r->secure, crm, opc1, opc2,
8927 r->name);
8928 break;
8929 case ARM_CP_SECSTATE_BOTH:
8930 name = g_strdup_printf("%s_S", r->name);
8931 add_cpreg_to_hashtable(cpu, r, opaque, state,
8932 ARM_CP_SECSTATE_S,
8933 crm, opc1, opc2, name);
8934 g_free(name);
8935 add_cpreg_to_hashtable(cpu, r, opaque, state,
8936 ARM_CP_SECSTATE_NS,
8937 crm, opc1, opc2, r->name);
8938 break;
8939 default:
8940 g_assert_not_reached();
8942 } else {
8943 /* AArch64 registers get mapped to non-secure instance
8944 * of AArch32 */
8945 add_cpreg_to_hashtable(cpu, r, opaque, state,
8946 ARM_CP_SECSTATE_NS,
8947 crm, opc1, opc2, r->name);
8955 /* Define a whole list of registers */
8956 void define_arm_cp_regs_with_opaque_len(ARMCPU *cpu, const ARMCPRegInfo *regs,
8957 void *opaque, size_t len)
8959 size_t i;
8960 for (i = 0; i < len; ++i) {
8961 define_one_arm_cp_reg_with_opaque(cpu, regs + i, opaque);
8966 * Modify ARMCPRegInfo for access from userspace.
8968 * This is a data driven modification directed by
8969 * ARMCPRegUserSpaceInfo. All registers become ARM_CP_CONST as
8970 * user-space cannot alter any values and dynamic values pertaining to
8971 * execution state are hidden from user space view anyway.
8973 void modify_arm_cp_regs_with_len(ARMCPRegInfo *regs, size_t regs_len,
8974 const ARMCPRegUserSpaceInfo *mods,
8975 size_t mods_len)
8977 for (size_t mi = 0; mi < mods_len; ++mi) {
8978 const ARMCPRegUserSpaceInfo *m = mods + mi;
8979 GPatternSpec *pat = NULL;
8981 if (m->is_glob) {
8982 pat = g_pattern_spec_new(m->name);
8984 for (size_t ri = 0; ri < regs_len; ++ri) {
8985 ARMCPRegInfo *r = regs + ri;
8987 if (pat && g_pattern_match_string(pat, r->name)) {
8988 r->type = ARM_CP_CONST;
8989 r->access = PL0U_R;
8990 r->resetvalue = 0;
8991 /* continue */
8992 } else if (strcmp(r->name, m->name) == 0) {
8993 r->type = ARM_CP_CONST;
8994 r->access = PL0U_R;
8995 r->resetvalue &= m->exported_bits;
8996 r->resetvalue |= m->fixed_bits;
8997 break;
9000 if (pat) {
9001 g_pattern_spec_free(pat);
9006 const ARMCPRegInfo *get_arm_cp_reginfo(GHashTable *cpregs, uint32_t encoded_cp)
9008 return g_hash_table_lookup(cpregs, (gpointer)(uintptr_t)encoded_cp);
9011 void arm_cp_write_ignore(CPUARMState *env, const ARMCPRegInfo *ri,
9012 uint64_t value)
9014 /* Helper coprocessor write function for write-ignore registers */
9017 uint64_t arm_cp_read_zero(CPUARMState *env, const ARMCPRegInfo *ri)
9019 /* Helper coprocessor write function for read-as-zero registers */
9020 return 0;
9023 void arm_cp_reset_ignore(CPUARMState *env, const ARMCPRegInfo *opaque)
9025 /* Helper coprocessor reset function for do-nothing-on-reset registers */
9028 static int bad_mode_switch(CPUARMState *env, int mode, CPSRWriteType write_type)
9030 /* Return true if it is not valid for us to switch to
9031 * this CPU mode (ie all the UNPREDICTABLE cases in
9032 * the ARM ARM CPSRWriteByInstr pseudocode).
9035 /* Changes to or from Hyp via MSR and CPS are illegal. */
9036 if (write_type == CPSRWriteByInstr &&
9037 ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_HYP ||
9038 mode == ARM_CPU_MODE_HYP)) {
9039 return 1;
9042 switch (mode) {
9043 case ARM_CPU_MODE_USR:
9044 return 0;
9045 case ARM_CPU_MODE_SYS:
9046 case ARM_CPU_MODE_SVC:
9047 case ARM_CPU_MODE_ABT:
9048 case ARM_CPU_MODE_UND:
9049 case ARM_CPU_MODE_IRQ:
9050 case ARM_CPU_MODE_FIQ:
9051 /* Note that we don't implement the IMPDEF NSACR.RFR which in v7
9052 * allows FIQ mode to be Secure-only. (In v8 this doesn't exist.)
9054 /* If HCR.TGE is set then changes from Monitor to NS PL1 via MSR
9055 * and CPS are treated as illegal mode changes.
9057 if (write_type == CPSRWriteByInstr &&
9058 (env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON &&
9059 (arm_hcr_el2_eff(env) & HCR_TGE)) {
9060 return 1;
9062 return 0;
9063 case ARM_CPU_MODE_HYP:
9064 return !arm_is_el2_enabled(env) || arm_current_el(env) < 2;
9065 case ARM_CPU_MODE_MON:
9066 return arm_current_el(env) < 3;
9067 default:
9068 return 1;
9072 uint32_t cpsr_read(CPUARMState *env)
9074 int ZF;
9075 ZF = (env->ZF == 0);
9076 return env->uncached_cpsr | (env->NF & 0x80000000) | (ZF << 30) |
9077 (env->CF << 29) | ((env->VF & 0x80000000) >> 3) | (env->QF << 27)
9078 | (env->thumb << 5) | ((env->condexec_bits & 3) << 25)
9079 | ((env->condexec_bits & 0xfc) << 8)
9080 | (env->GE << 16) | (env->daif & CPSR_AIF);
9083 void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask,
9084 CPSRWriteType write_type)
9086 uint32_t changed_daif;
9087 bool rebuild_hflags = (write_type != CPSRWriteRaw) &&
9088 (mask & (CPSR_M | CPSR_E | CPSR_IL));
9090 if (mask & CPSR_NZCV) {
9091 env->ZF = (~val) & CPSR_Z;
9092 env->NF = val;
9093 env->CF = (val >> 29) & 1;
9094 env->VF = (val << 3) & 0x80000000;
9096 if (mask & CPSR_Q)
9097 env->QF = ((val & CPSR_Q) != 0);
9098 if (mask & CPSR_T)
9099 env->thumb = ((val & CPSR_T) != 0);
9100 if (mask & CPSR_IT_0_1) {
9101 env->condexec_bits &= ~3;
9102 env->condexec_bits |= (val >> 25) & 3;
9104 if (mask & CPSR_IT_2_7) {
9105 env->condexec_bits &= 3;
9106 env->condexec_bits |= (val >> 8) & 0xfc;
9108 if (mask & CPSR_GE) {
9109 env->GE = (val >> 16) & 0xf;
9112 /* In a V7 implementation that includes the security extensions but does
9113 * not include Virtualization Extensions the SCR.FW and SCR.AW bits control
9114 * whether non-secure software is allowed to change the CPSR_F and CPSR_A
9115 * bits respectively.
9117 * In a V8 implementation, it is permitted for privileged software to
9118 * change the CPSR A/F bits regardless of the SCR.AW/FW bits.
9120 if (write_type != CPSRWriteRaw && !arm_feature(env, ARM_FEATURE_V8) &&
9121 arm_feature(env, ARM_FEATURE_EL3) &&
9122 !arm_feature(env, ARM_FEATURE_EL2) &&
9123 !arm_is_secure(env)) {
9125 changed_daif = (env->daif ^ val) & mask;
9127 if (changed_daif & CPSR_A) {
9128 /* Check to see if we are allowed to change the masking of async
9129 * abort exceptions from a non-secure state.
9131 if (!(env->cp15.scr_el3 & SCR_AW)) {
9132 qemu_log_mask(LOG_GUEST_ERROR,
9133 "Ignoring attempt to switch CPSR_A flag from "
9134 "non-secure world with SCR.AW bit clear\n");
9135 mask &= ~CPSR_A;
9139 if (changed_daif & CPSR_F) {
9140 /* Check to see if we are allowed to change the masking of FIQ
9141 * exceptions from a non-secure state.
9143 if (!(env->cp15.scr_el3 & SCR_FW)) {
9144 qemu_log_mask(LOG_GUEST_ERROR,
9145 "Ignoring attempt to switch CPSR_F flag from "
9146 "non-secure world with SCR.FW bit clear\n");
9147 mask &= ~CPSR_F;
9150 /* Check whether non-maskable FIQ (NMFI) support is enabled.
9151 * If this bit is set software is not allowed to mask
9152 * FIQs, but is allowed to set CPSR_F to 0.
9154 if ((A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_NMFI) &&
9155 (val & CPSR_F)) {
9156 qemu_log_mask(LOG_GUEST_ERROR,
9157 "Ignoring attempt to enable CPSR_F flag "
9158 "(non-maskable FIQ [NMFI] support enabled)\n");
9159 mask &= ~CPSR_F;
9164 env->daif &= ~(CPSR_AIF & mask);
9165 env->daif |= val & CPSR_AIF & mask;
9167 if (write_type != CPSRWriteRaw &&
9168 ((env->uncached_cpsr ^ val) & mask & CPSR_M)) {
9169 if ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_USR) {
9170 /* Note that we can only get here in USR mode if this is a
9171 * gdb stub write; for this case we follow the architectural
9172 * behaviour for guest writes in USR mode of ignoring an attempt
9173 * to switch mode. (Those are caught by translate.c for writes
9174 * triggered by guest instructions.)
9176 mask &= ~CPSR_M;
9177 } else if (bad_mode_switch(env, val & CPSR_M, write_type)) {
9178 /* Attempt to switch to an invalid mode: this is UNPREDICTABLE in
9179 * v7, and has defined behaviour in v8:
9180 * + leave CPSR.M untouched
9181 * + allow changes to the other CPSR fields
9182 * + set PSTATE.IL
9183 * For user changes via the GDB stub, we don't set PSTATE.IL,
9184 * as this would be unnecessarily harsh for a user error.
9186 mask &= ~CPSR_M;
9187 if (write_type != CPSRWriteByGDBStub &&
9188 arm_feature(env, ARM_FEATURE_V8)) {
9189 mask |= CPSR_IL;
9190 val |= CPSR_IL;
9192 qemu_log_mask(LOG_GUEST_ERROR,
9193 "Illegal AArch32 mode switch attempt from %s to %s\n",
9194 aarch32_mode_name(env->uncached_cpsr),
9195 aarch32_mode_name(val));
9196 } else {
9197 qemu_log_mask(CPU_LOG_INT, "%s %s to %s PC 0x%" PRIx32 "\n",
9198 write_type == CPSRWriteExceptionReturn ?
9199 "Exception return from AArch32" :
9200 "AArch32 mode switch from",
9201 aarch32_mode_name(env->uncached_cpsr),
9202 aarch32_mode_name(val), env->regs[15]);
9203 switch_mode(env, val & CPSR_M);
9206 mask &= ~CACHED_CPSR_BITS;
9207 env->uncached_cpsr = (env->uncached_cpsr & ~mask) | (val & mask);
9208 if (rebuild_hflags) {
9209 arm_rebuild_hflags(env);
9213 /* Sign/zero extend */
9214 uint32_t HELPER(sxtb16)(uint32_t x)
9216 uint32_t res;
9217 res = (uint16_t)(int8_t)x;
9218 res |= (uint32_t)(int8_t)(x >> 16) << 16;
9219 return res;
9222 static void handle_possible_div0_trap(CPUARMState *env, uintptr_t ra)
9225 * Take a division-by-zero exception if necessary; otherwise return
9226 * to get the usual non-trapping division behaviour (result of 0)
9228 if (arm_feature(env, ARM_FEATURE_M)
9229 && (env->v7m.ccr[env->v7m.secure] & R_V7M_CCR_DIV_0_TRP_MASK)) {
9230 raise_exception_ra(env, EXCP_DIVBYZERO, 0, 1, ra);
9234 uint32_t HELPER(uxtb16)(uint32_t x)
9236 uint32_t res;
9237 res = (uint16_t)(uint8_t)x;
9238 res |= (uint32_t)(uint8_t)(x >> 16) << 16;
9239 return res;
9242 int32_t HELPER(sdiv)(CPUARMState *env, int32_t num, int32_t den)
9244 if (den == 0) {
9245 handle_possible_div0_trap(env, GETPC());
9246 return 0;
9248 if (num == INT_MIN && den == -1) {
9249 return INT_MIN;
9251 return num / den;
9254 uint32_t HELPER(udiv)(CPUARMState *env, uint32_t num, uint32_t den)
9256 if (den == 0) {
9257 handle_possible_div0_trap(env, GETPC());
9258 return 0;
9260 return num / den;
9263 uint32_t HELPER(rbit)(uint32_t x)
9265 return revbit32(x);
9268 #ifdef CONFIG_USER_ONLY
9270 static void switch_mode(CPUARMState *env, int mode)
9272 ARMCPU *cpu = env_archcpu(env);
9274 if (mode != ARM_CPU_MODE_USR) {
9275 cpu_abort(CPU(cpu), "Tried to switch out of user mode\n");
9279 uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
9280 uint32_t cur_el, bool secure)
9282 return 1;
9285 void aarch64_sync_64_to_32(CPUARMState *env)
9287 g_assert_not_reached();
9290 #else
9292 static void switch_mode(CPUARMState *env, int mode)
9294 int old_mode;
9295 int i;
9297 old_mode = env->uncached_cpsr & CPSR_M;
9298 if (mode == old_mode)
9299 return;
9301 if (old_mode == ARM_CPU_MODE_FIQ) {
9302 memcpy (env->fiq_regs, env->regs + 8, 5 * sizeof(uint32_t));
9303 memcpy (env->regs + 8, env->usr_regs, 5 * sizeof(uint32_t));
9304 } else if (mode == ARM_CPU_MODE_FIQ) {
9305 memcpy (env->usr_regs, env->regs + 8, 5 * sizeof(uint32_t));
9306 memcpy (env->regs + 8, env->fiq_regs, 5 * sizeof(uint32_t));
9309 i = bank_number(old_mode);
9310 env->banked_r13[i] = env->regs[13];
9311 env->banked_spsr[i] = env->spsr;
9313 i = bank_number(mode);
9314 env->regs[13] = env->banked_r13[i];
9315 env->spsr = env->banked_spsr[i];
9317 env->banked_r14[r14_bank_number(old_mode)] = env->regs[14];
9318 env->regs[14] = env->banked_r14[r14_bank_number(mode)];
9321 /* Physical Interrupt Target EL Lookup Table
9323 * [ From ARM ARM section G1.13.4 (Table G1-15) ]
9325 * The below multi-dimensional table is used for looking up the target
9326 * exception level given numerous condition criteria. Specifically, the
9327 * target EL is based on SCR and HCR routing controls as well as the
9328 * currently executing EL and secure state.
9330 * Dimensions:
9331 * target_el_table[2][2][2][2][2][4]
9332 * | | | | | +--- Current EL
9333 * | | | | +------ Non-secure(0)/Secure(1)
9334 * | | | +--------- HCR mask override
9335 * | | +------------ SCR exec state control
9336 * | +--------------- SCR mask override
9337 * +------------------ 32-bit(0)/64-bit(1) EL3
9339 * The table values are as such:
9340 * 0-3 = EL0-EL3
9341 * -1 = Cannot occur
9343 * The ARM ARM target EL table includes entries indicating that an "exception
9344 * is not taken". The two cases where this is applicable are:
9345 * 1) An exception is taken from EL3 but the SCR does not have the exception
9346 * routed to EL3.
9347 * 2) An exception is taken from EL2 but the HCR does not have the exception
9348 * routed to EL2.
9349 * In these two cases, the below table contain a target of EL1. This value is
9350 * returned as it is expected that the consumer of the table data will check
9351 * for "target EL >= current EL" to ensure the exception is not taken.
9353 * SCR HCR
9354 * 64 EA AMO From
9355 * BIT IRQ IMO Non-secure Secure
9356 * EL3 FIQ RW FMO EL0 EL1 EL2 EL3 EL0 EL1 EL2 EL3
9358 static const int8_t target_el_table[2][2][2][2][2][4] = {
9359 {{{{/* 0 0 0 0 */{ 1, 1, 2, -1 },{ 3, -1, -1, 3 },},
9360 {/* 0 0 0 1 */{ 2, 2, 2, -1 },{ 3, -1, -1, 3 },},},
9361 {{/* 0 0 1 0 */{ 1, 1, 2, -1 },{ 3, -1, -1, 3 },},
9362 {/* 0 0 1 1 */{ 2, 2, 2, -1 },{ 3, -1, -1, 3 },},},},
9363 {{{/* 0 1 0 0 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},
9364 {/* 0 1 0 1 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},},
9365 {{/* 0 1 1 0 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},
9366 {/* 0 1 1 1 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},},},},
9367 {{{{/* 1 0 0 0 */{ 1, 1, 2, -1 },{ 1, 1, -1, 1 },},
9368 {/* 1 0 0 1 */{ 2, 2, 2, -1 },{ 2, 2, -1, 1 },},},
9369 {{/* 1 0 1 0 */{ 1, 1, 1, -1 },{ 1, 1, 1, 1 },},
9370 {/* 1 0 1 1 */{ 2, 2, 2, -1 },{ 2, 2, 2, 1 },},},},
9371 {{{/* 1 1 0 0 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},
9372 {/* 1 1 0 1 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},},
9373 {{/* 1 1 1 0 */{ 3, 3, 3, -1 },{ 3, 3, 3, 3 },},
9374 {/* 1 1 1 1 */{ 3, 3, 3, -1 },{ 3, 3, 3, 3 },},},},},
9378 * Determine the target EL for physical exceptions
9380 uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
9381 uint32_t cur_el, bool secure)
9383 CPUARMState *env = cs->env_ptr;
9384 bool rw;
9385 bool scr;
9386 bool hcr;
9387 int target_el;
9388 /* Is the highest EL AArch64? */
9389 bool is64 = arm_feature(env, ARM_FEATURE_AARCH64);
9390 uint64_t hcr_el2;
9392 if (arm_feature(env, ARM_FEATURE_EL3)) {
9393 rw = ((env->cp15.scr_el3 & SCR_RW) == SCR_RW);
9394 } else {
9395 /* Either EL2 is the highest EL (and so the EL2 register width
9396 * is given by is64); or there is no EL2 or EL3, in which case
9397 * the value of 'rw' does not affect the table lookup anyway.
9399 rw = is64;
9402 hcr_el2 = arm_hcr_el2_eff(env);
9403 switch (excp_idx) {
9404 case EXCP_IRQ:
9405 scr = ((env->cp15.scr_el3 & SCR_IRQ) == SCR_IRQ);
9406 hcr = hcr_el2 & HCR_IMO;
9407 break;
9408 case EXCP_FIQ:
9409 scr = ((env->cp15.scr_el3 & SCR_FIQ) == SCR_FIQ);
9410 hcr = hcr_el2 & HCR_FMO;
9411 break;
9412 default:
9413 scr = ((env->cp15.scr_el3 & SCR_EA) == SCR_EA);
9414 hcr = hcr_el2 & HCR_AMO;
9415 break;
9419 * For these purposes, TGE and AMO/IMO/FMO both force the
9420 * interrupt to EL2. Fold TGE into the bit extracted above.
9422 hcr |= (hcr_el2 & HCR_TGE) != 0;
9424 /* Perform a table-lookup for the target EL given the current state */
9425 target_el = target_el_table[is64][scr][rw][hcr][secure][cur_el];
9427 assert(target_el > 0);
9429 return target_el;
9432 void arm_log_exception(CPUState *cs)
9434 int idx = cs->exception_index;
9436 if (qemu_loglevel_mask(CPU_LOG_INT)) {
9437 const char *exc = NULL;
9438 static const char * const excnames[] = {
9439 [EXCP_UDEF] = "Undefined Instruction",
9440 [EXCP_SWI] = "SVC",
9441 [EXCP_PREFETCH_ABORT] = "Prefetch Abort",
9442 [EXCP_DATA_ABORT] = "Data Abort",
9443 [EXCP_IRQ] = "IRQ",
9444 [EXCP_FIQ] = "FIQ",
9445 [EXCP_BKPT] = "Breakpoint",
9446 [EXCP_EXCEPTION_EXIT] = "QEMU v7M exception exit",
9447 [EXCP_KERNEL_TRAP] = "QEMU intercept of kernel commpage",
9448 [EXCP_HVC] = "Hypervisor Call",
9449 [EXCP_HYP_TRAP] = "Hypervisor Trap",
9450 [EXCP_SMC] = "Secure Monitor Call",
9451 [EXCP_VIRQ] = "Virtual IRQ",
9452 [EXCP_VFIQ] = "Virtual FIQ",
9453 [EXCP_SEMIHOST] = "Semihosting call",
9454 [EXCP_NOCP] = "v7M NOCP UsageFault",
9455 [EXCP_INVSTATE] = "v7M INVSTATE UsageFault",
9456 [EXCP_STKOF] = "v8M STKOF UsageFault",
9457 [EXCP_LAZYFP] = "v7M exception during lazy FP stacking",
9458 [EXCP_LSERR] = "v8M LSERR UsageFault",
9459 [EXCP_UNALIGNED] = "v7M UNALIGNED UsageFault",
9460 [EXCP_DIVBYZERO] = "v7M DIVBYZERO UsageFault",
9461 [EXCP_VSERR] = "Virtual SERR",
9464 if (idx >= 0 && idx < ARRAY_SIZE(excnames)) {
9465 exc = excnames[idx];
9467 if (!exc) {
9468 exc = "unknown";
9470 qemu_log_mask(CPU_LOG_INT, "Taking exception %d [%s] on CPU %d\n",
9471 idx, exc, cs->cpu_index);
9476 * Function used to synchronize QEMU's AArch64 register set with AArch32
9477 * register set. This is necessary when switching between AArch32 and AArch64
9478 * execution state.
9480 void aarch64_sync_32_to_64(CPUARMState *env)
9482 int i;
9483 uint32_t mode = env->uncached_cpsr & CPSR_M;
9485 /* We can blanket copy R[0:7] to X[0:7] */
9486 for (i = 0; i < 8; i++) {
9487 env->xregs[i] = env->regs[i];
9491 * Unless we are in FIQ mode, x8-x12 come from the user registers r8-r12.
9492 * Otherwise, they come from the banked user regs.
9494 if (mode == ARM_CPU_MODE_FIQ) {
9495 for (i = 8; i < 13; i++) {
9496 env->xregs[i] = env->usr_regs[i - 8];
9498 } else {
9499 for (i = 8; i < 13; i++) {
9500 env->xregs[i] = env->regs[i];
9505 * Registers x13-x23 are the various mode SP and FP registers. Registers
9506 * r13 and r14 are only copied if we are in that mode, otherwise we copy
9507 * from the mode banked register.
9509 if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
9510 env->xregs[13] = env->regs[13];
9511 env->xregs[14] = env->regs[14];
9512 } else {
9513 env->xregs[13] = env->banked_r13[bank_number(ARM_CPU_MODE_USR)];
9514 /* HYP is an exception in that it is copied from r14 */
9515 if (mode == ARM_CPU_MODE_HYP) {
9516 env->xregs[14] = env->regs[14];
9517 } else {
9518 env->xregs[14] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_USR)];
9522 if (mode == ARM_CPU_MODE_HYP) {
9523 env->xregs[15] = env->regs[13];
9524 } else {
9525 env->xregs[15] = env->banked_r13[bank_number(ARM_CPU_MODE_HYP)];
9528 if (mode == ARM_CPU_MODE_IRQ) {
9529 env->xregs[16] = env->regs[14];
9530 env->xregs[17] = env->regs[13];
9531 } else {
9532 env->xregs[16] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_IRQ)];
9533 env->xregs[17] = env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)];
9536 if (mode == ARM_CPU_MODE_SVC) {
9537 env->xregs[18] = env->regs[14];
9538 env->xregs[19] = env->regs[13];
9539 } else {
9540 env->xregs[18] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_SVC)];
9541 env->xregs[19] = env->banked_r13[bank_number(ARM_CPU_MODE_SVC)];
9544 if (mode == ARM_CPU_MODE_ABT) {
9545 env->xregs[20] = env->regs[14];
9546 env->xregs[21] = env->regs[13];
9547 } else {
9548 env->xregs[20] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_ABT)];
9549 env->xregs[21] = env->banked_r13[bank_number(ARM_CPU_MODE_ABT)];
9552 if (mode == ARM_CPU_MODE_UND) {
9553 env->xregs[22] = env->regs[14];
9554 env->xregs[23] = env->regs[13];
9555 } else {
9556 env->xregs[22] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_UND)];
9557 env->xregs[23] = env->banked_r13[bank_number(ARM_CPU_MODE_UND)];
9561 * Registers x24-x30 are mapped to r8-r14 in FIQ mode. If we are in FIQ
9562 * mode, then we can copy from r8-r14. Otherwise, we copy from the
9563 * FIQ bank for r8-r14.
9565 if (mode == ARM_CPU_MODE_FIQ) {
9566 for (i = 24; i < 31; i++) {
9567 env->xregs[i] = env->regs[i - 16]; /* X[24:30] <- R[8:14] */
9569 } else {
9570 for (i = 24; i < 29; i++) {
9571 env->xregs[i] = env->fiq_regs[i - 24];
9573 env->xregs[29] = env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)];
9574 env->xregs[30] = env->banked_r14[r14_bank_number(ARM_CPU_MODE_FIQ)];
9577 env->pc = env->regs[15];
9581 * Function used to synchronize QEMU's AArch32 register set with AArch64
9582 * register set. This is necessary when switching between AArch32 and AArch64
9583 * execution state.
9585 void aarch64_sync_64_to_32(CPUARMState *env)
9587 int i;
9588 uint32_t mode = env->uncached_cpsr & CPSR_M;
9590 /* We can blanket copy X[0:7] to R[0:7] */
9591 for (i = 0; i < 8; i++) {
9592 env->regs[i] = env->xregs[i];
9596 * Unless we are in FIQ mode, r8-r12 come from the user registers x8-x12.
9597 * Otherwise, we copy x8-x12 into the banked user regs.
9599 if (mode == ARM_CPU_MODE_FIQ) {
9600 for (i = 8; i < 13; i++) {
9601 env->usr_regs[i - 8] = env->xregs[i];
9603 } else {
9604 for (i = 8; i < 13; i++) {
9605 env->regs[i] = env->xregs[i];
9610 * Registers r13 & r14 depend on the current mode.
9611 * If we are in a given mode, we copy the corresponding x registers to r13
9612 * and r14. Otherwise, we copy the x register to the banked r13 and r14
9613 * for the mode.
9615 if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
9616 env->regs[13] = env->xregs[13];
9617 env->regs[14] = env->xregs[14];
9618 } else {
9619 env->banked_r13[bank_number(ARM_CPU_MODE_USR)] = env->xregs[13];
9622 * HYP is an exception in that it does not have its own banked r14 but
9623 * shares the USR r14
9625 if (mode == ARM_CPU_MODE_HYP) {
9626 env->regs[14] = env->xregs[14];
9627 } else {
9628 env->banked_r14[r14_bank_number(ARM_CPU_MODE_USR)] = env->xregs[14];
9632 if (mode == ARM_CPU_MODE_HYP) {
9633 env->regs[13] = env->xregs[15];
9634 } else {
9635 env->banked_r13[bank_number(ARM_CPU_MODE_HYP)] = env->xregs[15];
9638 if (mode == ARM_CPU_MODE_IRQ) {
9639 env->regs[14] = env->xregs[16];
9640 env->regs[13] = env->xregs[17];
9641 } else {
9642 env->banked_r14[r14_bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[16];
9643 env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[17];
9646 if (mode == ARM_CPU_MODE_SVC) {
9647 env->regs[14] = env->xregs[18];
9648 env->regs[13] = env->xregs[19];
9649 } else {
9650 env->banked_r14[r14_bank_number(ARM_CPU_MODE_SVC)] = env->xregs[18];
9651 env->banked_r13[bank_number(ARM_CPU_MODE_SVC)] = env->xregs[19];
9654 if (mode == ARM_CPU_MODE_ABT) {
9655 env->regs[14] = env->xregs[20];
9656 env->regs[13] = env->xregs[21];
9657 } else {
9658 env->banked_r14[r14_bank_number(ARM_CPU_MODE_ABT)] = env->xregs[20];
9659 env->banked_r13[bank_number(ARM_CPU_MODE_ABT)] = env->xregs[21];
9662 if (mode == ARM_CPU_MODE_UND) {
9663 env->regs[14] = env->xregs[22];
9664 env->regs[13] = env->xregs[23];
9665 } else {
9666 env->banked_r14[r14_bank_number(ARM_CPU_MODE_UND)] = env->xregs[22];
9667 env->banked_r13[bank_number(ARM_CPU_MODE_UND)] = env->xregs[23];
9670 /* Registers x24-x30 are mapped to r8-r14 in FIQ mode. If we are in FIQ
9671 * mode, then we can copy to r8-r14. Otherwise, we copy to the
9672 * FIQ bank for r8-r14.
9674 if (mode == ARM_CPU_MODE_FIQ) {
9675 for (i = 24; i < 31; i++) {
9676 env->regs[i - 16] = env->xregs[i]; /* X[24:30] -> R[8:14] */
9678 } else {
9679 for (i = 24; i < 29; i++) {
9680 env->fiq_regs[i - 24] = env->xregs[i];
9682 env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[29];
9683 env->banked_r14[r14_bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[30];
9686 env->regs[15] = env->pc;
9689 static void take_aarch32_exception(CPUARMState *env, int new_mode,
9690 uint32_t mask, uint32_t offset,
9691 uint32_t newpc)
9693 int new_el;
9695 /* Change the CPU state so as to actually take the exception. */
9696 switch_mode(env, new_mode);
9699 * For exceptions taken to AArch32 we must clear the SS bit in both
9700 * PSTATE and in the old-state value we save to SPSR_<mode>, so zero it now.
9702 env->pstate &= ~PSTATE_SS;
9703 env->spsr = cpsr_read(env);
9704 /* Clear IT bits. */
9705 env->condexec_bits = 0;
9706 /* Switch to the new mode, and to the correct instruction set. */
9707 env->uncached_cpsr = (env->uncached_cpsr & ~CPSR_M) | new_mode;
9709 /* This must be after mode switching. */
9710 new_el = arm_current_el(env);
9712 /* Set new mode endianness */
9713 env->uncached_cpsr &= ~CPSR_E;
9714 if (env->cp15.sctlr_el[new_el] & SCTLR_EE) {
9715 env->uncached_cpsr |= CPSR_E;
9717 /* J and IL must always be cleared for exception entry */
9718 env->uncached_cpsr &= ~(CPSR_IL | CPSR_J);
9719 env->daif |= mask;
9721 if (cpu_isar_feature(aa32_ssbs, env_archcpu(env))) {
9722 if (env->cp15.sctlr_el[new_el] & SCTLR_DSSBS_32) {
9723 env->uncached_cpsr |= CPSR_SSBS;
9724 } else {
9725 env->uncached_cpsr &= ~CPSR_SSBS;
9729 if (new_mode == ARM_CPU_MODE_HYP) {
9730 env->thumb = (env->cp15.sctlr_el[2] & SCTLR_TE) != 0;
9731 env->elr_el[2] = env->regs[15];
9732 } else {
9733 /* CPSR.PAN is normally preserved preserved unless... */
9734 if (cpu_isar_feature(aa32_pan, env_archcpu(env))) {
9735 switch (new_el) {
9736 case 3:
9737 if (!arm_is_secure_below_el3(env)) {
9738 /* ... the target is EL3, from non-secure state. */
9739 env->uncached_cpsr &= ~CPSR_PAN;
9740 break;
9742 /* ... the target is EL3, from secure state ... */
9743 /* fall through */
9744 case 1:
9745 /* ... the target is EL1 and SCTLR.SPAN is 0. */
9746 if (!(env->cp15.sctlr_el[new_el] & SCTLR_SPAN)) {
9747 env->uncached_cpsr |= CPSR_PAN;
9749 break;
9753 * this is a lie, as there was no c1_sys on V4T/V5, but who cares
9754 * and we should just guard the thumb mode on V4
9756 if (arm_feature(env, ARM_FEATURE_V4T)) {
9757 env->thumb =
9758 (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_TE) != 0;
9760 env->regs[14] = env->regs[15] + offset;
9762 env->regs[15] = newpc;
9763 arm_rebuild_hflags(env);
9766 static void arm_cpu_do_interrupt_aarch32_hyp(CPUState *cs)
9769 * Handle exception entry to Hyp mode; this is sufficiently
9770 * different to entry to other AArch32 modes that we handle it
9771 * separately here.
9773 * The vector table entry used is always the 0x14 Hyp mode entry point,
9774 * unless this is an UNDEF/SVC/HVC/abort taken from Hyp to Hyp.
9775 * The offset applied to the preferred return address is always zero
9776 * (see DDI0487C.a section G1.12.3).
9777 * PSTATE A/I/F masks are set based only on the SCR.EA/IRQ/FIQ values.
9779 uint32_t addr, mask;
9780 ARMCPU *cpu = ARM_CPU(cs);
9781 CPUARMState *env = &cpu->env;
9783 switch (cs->exception_index) {
9784 case EXCP_UDEF:
9785 addr = 0x04;
9786 break;
9787 case EXCP_SWI:
9788 addr = 0x08;
9789 break;
9790 case EXCP_BKPT:
9791 /* Fall through to prefetch abort. */
9792 case EXCP_PREFETCH_ABORT:
9793 env->cp15.ifar_s = env->exception.vaddress;
9794 qemu_log_mask(CPU_LOG_INT, "...with HIFAR 0x%x\n",
9795 (uint32_t)env->exception.vaddress);
9796 addr = 0x0c;
9797 break;
9798 case EXCP_DATA_ABORT:
9799 env->cp15.dfar_s = env->exception.vaddress;
9800 qemu_log_mask(CPU_LOG_INT, "...with HDFAR 0x%x\n",
9801 (uint32_t)env->exception.vaddress);
9802 addr = 0x10;
9803 break;
9804 case EXCP_IRQ:
9805 addr = 0x18;
9806 break;
9807 case EXCP_FIQ:
9808 addr = 0x1c;
9809 break;
9810 case EXCP_HVC:
9811 addr = 0x08;
9812 break;
9813 case EXCP_HYP_TRAP:
9814 addr = 0x14;
9815 break;
9816 default:
9817 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
9820 if (cs->exception_index != EXCP_IRQ && cs->exception_index != EXCP_FIQ) {
9821 if (!arm_feature(env, ARM_FEATURE_V8)) {
9823 * QEMU syndrome values are v8-style. v7 has the IL bit
9824 * UNK/SBZP for "field not valid" cases, where v8 uses RES1.
9825 * If this is a v7 CPU, squash the IL bit in those cases.
9827 if (cs->exception_index == EXCP_PREFETCH_ABORT ||
9828 (cs->exception_index == EXCP_DATA_ABORT &&
9829 !(env->exception.syndrome & ARM_EL_ISV)) ||
9830 syn_get_ec(env->exception.syndrome) == EC_UNCATEGORIZED) {
9831 env->exception.syndrome &= ~ARM_EL_IL;
9834 env->cp15.esr_el[2] = env->exception.syndrome;
9837 if (arm_current_el(env) != 2 && addr < 0x14) {
9838 addr = 0x14;
9841 mask = 0;
9842 if (!(env->cp15.scr_el3 & SCR_EA)) {
9843 mask |= CPSR_A;
9845 if (!(env->cp15.scr_el3 & SCR_IRQ)) {
9846 mask |= CPSR_I;
9848 if (!(env->cp15.scr_el3 & SCR_FIQ)) {
9849 mask |= CPSR_F;
9852 addr += env->cp15.hvbar;
9854 take_aarch32_exception(env, ARM_CPU_MODE_HYP, mask, 0, addr);
9857 static void arm_cpu_do_interrupt_aarch32(CPUState *cs)
9859 ARMCPU *cpu = ARM_CPU(cs);
9860 CPUARMState *env = &cpu->env;
9861 uint32_t addr;
9862 uint32_t mask;
9863 int new_mode;
9864 uint32_t offset;
9865 uint32_t moe;
9867 /* If this is a debug exception we must update the DBGDSCR.MOE bits */
9868 switch (syn_get_ec(env->exception.syndrome)) {
9869 case EC_BREAKPOINT:
9870 case EC_BREAKPOINT_SAME_EL:
9871 moe = 1;
9872 break;
9873 case EC_WATCHPOINT:
9874 case EC_WATCHPOINT_SAME_EL:
9875 moe = 10;
9876 break;
9877 case EC_AA32_BKPT:
9878 moe = 3;
9879 break;
9880 case EC_VECTORCATCH:
9881 moe = 5;
9882 break;
9883 default:
9884 moe = 0;
9885 break;
9888 if (moe) {
9889 env->cp15.mdscr_el1 = deposit64(env->cp15.mdscr_el1, 2, 4, moe);
9892 if (env->exception.target_el == 2) {
9893 arm_cpu_do_interrupt_aarch32_hyp(cs);
9894 return;
9897 switch (cs->exception_index) {
9898 case EXCP_UDEF:
9899 new_mode = ARM_CPU_MODE_UND;
9900 addr = 0x04;
9901 mask = CPSR_I;
9902 if (env->thumb)
9903 offset = 2;
9904 else
9905 offset = 4;
9906 break;
9907 case EXCP_SWI:
9908 new_mode = ARM_CPU_MODE_SVC;
9909 addr = 0x08;
9910 mask = CPSR_I;
9911 /* The PC already points to the next instruction. */
9912 offset = 0;
9913 break;
9914 case EXCP_BKPT:
9915 /* Fall through to prefetch abort. */
9916 case EXCP_PREFETCH_ABORT:
9917 A32_BANKED_CURRENT_REG_SET(env, ifsr, env->exception.fsr);
9918 A32_BANKED_CURRENT_REG_SET(env, ifar, env->exception.vaddress);
9919 qemu_log_mask(CPU_LOG_INT, "...with IFSR 0x%x IFAR 0x%x\n",
9920 env->exception.fsr, (uint32_t)env->exception.vaddress);
9921 new_mode = ARM_CPU_MODE_ABT;
9922 addr = 0x0c;
9923 mask = CPSR_A | CPSR_I;
9924 offset = 4;
9925 break;
9926 case EXCP_DATA_ABORT:
9927 A32_BANKED_CURRENT_REG_SET(env, dfsr, env->exception.fsr);
9928 A32_BANKED_CURRENT_REG_SET(env, dfar, env->exception.vaddress);
9929 qemu_log_mask(CPU_LOG_INT, "...with DFSR 0x%x DFAR 0x%x\n",
9930 env->exception.fsr,
9931 (uint32_t)env->exception.vaddress);
9932 new_mode = ARM_CPU_MODE_ABT;
9933 addr = 0x10;
9934 mask = CPSR_A | CPSR_I;
9935 offset = 8;
9936 break;
9937 case EXCP_IRQ:
9938 new_mode = ARM_CPU_MODE_IRQ;
9939 addr = 0x18;
9940 /* Disable IRQ and imprecise data aborts. */
9941 mask = CPSR_A | CPSR_I;
9942 offset = 4;
9943 if (env->cp15.scr_el3 & SCR_IRQ) {
9944 /* IRQ routed to monitor mode */
9945 new_mode = ARM_CPU_MODE_MON;
9946 mask |= CPSR_F;
9948 break;
9949 case EXCP_FIQ:
9950 new_mode = ARM_CPU_MODE_FIQ;
9951 addr = 0x1c;
9952 /* Disable FIQ, IRQ and imprecise data aborts. */
9953 mask = CPSR_A | CPSR_I | CPSR_F;
9954 if (env->cp15.scr_el3 & SCR_FIQ) {
9955 /* FIQ routed to monitor mode */
9956 new_mode = ARM_CPU_MODE_MON;
9958 offset = 4;
9959 break;
9960 case EXCP_VIRQ:
9961 new_mode = ARM_CPU_MODE_IRQ;
9962 addr = 0x18;
9963 /* Disable IRQ and imprecise data aborts. */
9964 mask = CPSR_A | CPSR_I;
9965 offset = 4;
9966 break;
9967 case EXCP_VFIQ:
9968 new_mode = ARM_CPU_MODE_FIQ;
9969 addr = 0x1c;
9970 /* Disable FIQ, IRQ and imprecise data aborts. */
9971 mask = CPSR_A | CPSR_I | CPSR_F;
9972 offset = 4;
9973 break;
9974 case EXCP_VSERR:
9977 * Note that this is reported as a data abort, but the DFAR
9978 * has an UNKNOWN value. Construct the SError syndrome from
9979 * AET and ExT fields.
9981 ARMMMUFaultInfo fi = { .type = ARMFault_AsyncExternal, };
9983 if (extended_addresses_enabled(env)) {
9984 env->exception.fsr = arm_fi_to_lfsc(&fi);
9985 } else {
9986 env->exception.fsr = arm_fi_to_sfsc(&fi);
9988 env->exception.fsr |= env->cp15.vsesr_el2 & 0xd000;
9989 A32_BANKED_CURRENT_REG_SET(env, dfsr, env->exception.fsr);
9990 qemu_log_mask(CPU_LOG_INT, "...with IFSR 0x%x\n",
9991 env->exception.fsr);
9993 new_mode = ARM_CPU_MODE_ABT;
9994 addr = 0x10;
9995 mask = CPSR_A | CPSR_I;
9996 offset = 8;
9998 break;
9999 case EXCP_SMC:
10000 new_mode = ARM_CPU_MODE_MON;
10001 addr = 0x08;
10002 mask = CPSR_A | CPSR_I | CPSR_F;
10003 offset = 0;
10004 break;
10005 default:
10006 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
10007 return; /* Never happens. Keep compiler happy. */
10010 if (new_mode == ARM_CPU_MODE_MON) {
10011 addr += env->cp15.mvbar;
10012 } else if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
10013 /* High vectors. When enabled, base address cannot be remapped. */
10014 addr += 0xffff0000;
10015 } else {
10016 /* ARM v7 architectures provide a vector base address register to remap
10017 * the interrupt vector table.
10018 * This register is only followed in non-monitor mode, and is banked.
10019 * Note: only bits 31:5 are valid.
10021 addr += A32_BANKED_CURRENT_REG_GET(env, vbar);
10024 if ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON) {
10025 env->cp15.scr_el3 &= ~SCR_NS;
10028 take_aarch32_exception(env, new_mode, mask, offset, addr);
10031 static int aarch64_regnum(CPUARMState *env, int aarch32_reg)
10034 * Return the register number of the AArch64 view of the AArch32
10035 * register @aarch32_reg. The CPUARMState CPSR is assumed to still
10036 * be that of the AArch32 mode the exception came from.
10038 int mode = env->uncached_cpsr & CPSR_M;
10040 switch (aarch32_reg) {
10041 case 0 ... 7:
10042 return aarch32_reg;
10043 case 8 ... 12:
10044 return mode == ARM_CPU_MODE_FIQ ? aarch32_reg + 16 : aarch32_reg;
10045 case 13:
10046 switch (mode) {
10047 case ARM_CPU_MODE_USR:
10048 case ARM_CPU_MODE_SYS:
10049 return 13;
10050 case ARM_CPU_MODE_HYP:
10051 return 15;
10052 case ARM_CPU_MODE_IRQ:
10053 return 17;
10054 case ARM_CPU_MODE_SVC:
10055 return 19;
10056 case ARM_CPU_MODE_ABT:
10057 return 21;
10058 case ARM_CPU_MODE_UND:
10059 return 23;
10060 case ARM_CPU_MODE_FIQ:
10061 return 29;
10062 default:
10063 g_assert_not_reached();
10065 case 14:
10066 switch (mode) {
10067 case ARM_CPU_MODE_USR:
10068 case ARM_CPU_MODE_SYS:
10069 case ARM_CPU_MODE_HYP:
10070 return 14;
10071 case ARM_CPU_MODE_IRQ:
10072 return 16;
10073 case ARM_CPU_MODE_SVC:
10074 return 18;
10075 case ARM_CPU_MODE_ABT:
10076 return 20;
10077 case ARM_CPU_MODE_UND:
10078 return 22;
10079 case ARM_CPU_MODE_FIQ:
10080 return 30;
10081 default:
10082 g_assert_not_reached();
10084 case 15:
10085 return 31;
10086 default:
10087 g_assert_not_reached();
10091 static uint32_t cpsr_read_for_spsr_elx(CPUARMState *env)
10093 uint32_t ret = cpsr_read(env);
10095 /* Move DIT to the correct location for SPSR_ELx */
10096 if (ret & CPSR_DIT) {
10097 ret &= ~CPSR_DIT;
10098 ret |= PSTATE_DIT;
10100 /* Merge PSTATE.SS into SPSR_ELx */
10101 ret |= env->pstate & PSTATE_SS;
10103 return ret;
10106 static bool syndrome_is_sync_extabt(uint32_t syndrome)
10108 /* Return true if this syndrome value is a synchronous external abort */
10109 switch (syn_get_ec(syndrome)) {
10110 case EC_INSNABORT:
10111 case EC_INSNABORT_SAME_EL:
10112 case EC_DATAABORT:
10113 case EC_DATAABORT_SAME_EL:
10114 /* Look at fault status code for all the synchronous ext abort cases */
10115 switch (syndrome & 0x3f) {
10116 case 0x10:
10117 case 0x13:
10118 case 0x14:
10119 case 0x15:
10120 case 0x16:
10121 case 0x17:
10122 return true;
10123 default:
10124 return false;
10126 default:
10127 return false;
10131 /* Handle exception entry to a target EL which is using AArch64 */
10132 static void arm_cpu_do_interrupt_aarch64(CPUState *cs)
10134 ARMCPU *cpu = ARM_CPU(cs);
10135 CPUARMState *env = &cpu->env;
10136 unsigned int new_el = env->exception.target_el;
10137 target_ulong addr = env->cp15.vbar_el[new_el];
10138 unsigned int new_mode = aarch64_pstate_mode(new_el, true);
10139 unsigned int old_mode;
10140 unsigned int cur_el = arm_current_el(env);
10141 int rt;
10144 * Note that new_el can never be 0. If cur_el is 0, then
10145 * el0_a64 is is_a64(), else el0_a64 is ignored.
10147 aarch64_sve_change_el(env, cur_el, new_el, is_a64(env));
10149 if (cur_el < new_el) {
10150 /* Entry vector offset depends on whether the implemented EL
10151 * immediately lower than the target level is using AArch32 or AArch64
10153 bool is_aa64;
10154 uint64_t hcr;
10156 switch (new_el) {
10157 case 3:
10158 is_aa64 = (env->cp15.scr_el3 & SCR_RW) != 0;
10159 break;
10160 case 2:
10161 hcr = arm_hcr_el2_eff(env);
10162 if ((hcr & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE)) {
10163 is_aa64 = (hcr & HCR_RW) != 0;
10164 break;
10166 /* fall through */
10167 case 1:
10168 is_aa64 = is_a64(env);
10169 break;
10170 default:
10171 g_assert_not_reached();
10174 if (is_aa64) {
10175 addr += 0x400;
10176 } else {
10177 addr += 0x600;
10179 } else if (pstate_read(env) & PSTATE_SP) {
10180 addr += 0x200;
10183 switch (cs->exception_index) {
10184 case EXCP_PREFETCH_ABORT:
10185 case EXCP_DATA_ABORT:
10187 * FEAT_DoubleFault allows synchronous external aborts taken to EL3
10188 * to be taken to the SError vector entrypoint.
10190 if (new_el == 3 && (env->cp15.scr_el3 & SCR_EASE) &&
10191 syndrome_is_sync_extabt(env->exception.syndrome)) {
10192 addr += 0x180;
10194 env->cp15.far_el[new_el] = env->exception.vaddress;
10195 qemu_log_mask(CPU_LOG_INT, "...with FAR 0x%" PRIx64 "\n",
10196 env->cp15.far_el[new_el]);
10197 /* fall through */
10198 case EXCP_BKPT:
10199 case EXCP_UDEF:
10200 case EXCP_SWI:
10201 case EXCP_HVC:
10202 case EXCP_HYP_TRAP:
10203 case EXCP_SMC:
10204 switch (syn_get_ec(env->exception.syndrome)) {
10205 case EC_ADVSIMDFPACCESSTRAP:
10207 * QEMU internal FP/SIMD syndromes from AArch32 include the
10208 * TA and coproc fields which are only exposed if the exception
10209 * is taken to AArch32 Hyp mode. Mask them out to get a valid
10210 * AArch64 format syndrome.
10212 env->exception.syndrome &= ~MAKE_64BIT_MASK(0, 20);
10213 break;
10214 case EC_CP14RTTRAP:
10215 case EC_CP15RTTRAP:
10216 case EC_CP14DTTRAP:
10218 * For a trap on AArch32 MRC/MCR/LDC/STC the Rt field is currently
10219 * the raw register field from the insn; when taking this to
10220 * AArch64 we must convert it to the AArch64 view of the register
10221 * number. Notice that we read a 4-bit AArch32 register number and
10222 * write back a 5-bit AArch64 one.
10224 rt = extract32(env->exception.syndrome, 5, 4);
10225 rt = aarch64_regnum(env, rt);
10226 env->exception.syndrome = deposit32(env->exception.syndrome,
10227 5, 5, rt);
10228 break;
10229 case EC_CP15RRTTRAP:
10230 case EC_CP14RRTTRAP:
10231 /* Similarly for MRRC/MCRR traps for Rt and Rt2 fields */
10232 rt = extract32(env->exception.syndrome, 5, 4);
10233 rt = aarch64_regnum(env, rt);
10234 env->exception.syndrome = deposit32(env->exception.syndrome,
10235 5, 5, rt);
10236 rt = extract32(env->exception.syndrome, 10, 4);
10237 rt = aarch64_regnum(env, rt);
10238 env->exception.syndrome = deposit32(env->exception.syndrome,
10239 10, 5, rt);
10240 break;
10242 env->cp15.esr_el[new_el] = env->exception.syndrome;
10243 break;
10244 case EXCP_IRQ:
10245 case EXCP_VIRQ:
10246 addr += 0x80;
10247 break;
10248 case EXCP_FIQ:
10249 case EXCP_VFIQ:
10250 addr += 0x100;
10251 break;
10252 case EXCP_VSERR:
10253 addr += 0x180;
10254 /* Construct the SError syndrome from IDS and ISS fields. */
10255 env->exception.syndrome = syn_serror(env->cp15.vsesr_el2 & 0x1ffffff);
10256 env->cp15.esr_el[new_el] = env->exception.syndrome;
10257 break;
10258 default:
10259 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
10262 if (is_a64(env)) {
10263 old_mode = pstate_read(env);
10264 aarch64_save_sp(env, arm_current_el(env));
10265 env->elr_el[new_el] = env->pc;
10266 } else {
10267 old_mode = cpsr_read_for_spsr_elx(env);
10268 env->elr_el[new_el] = env->regs[15];
10270 aarch64_sync_32_to_64(env);
10272 env->condexec_bits = 0;
10274 env->banked_spsr[aarch64_banked_spsr_index(new_el)] = old_mode;
10276 qemu_log_mask(CPU_LOG_INT, "...with ELR 0x%" PRIx64 "\n",
10277 env->elr_el[new_el]);
10279 if (cpu_isar_feature(aa64_pan, cpu)) {
10280 /* The value of PSTATE.PAN is normally preserved, except when ... */
10281 new_mode |= old_mode & PSTATE_PAN;
10282 switch (new_el) {
10283 case 2:
10284 /* ... the target is EL2 with HCR_EL2.{E2H,TGE} == '11' ... */
10285 if ((arm_hcr_el2_eff(env) & (HCR_E2H | HCR_TGE))
10286 != (HCR_E2H | HCR_TGE)) {
10287 break;
10289 /* fall through */
10290 case 1:
10291 /* ... the target is EL1 ... */
10292 /* ... and SCTLR_ELx.SPAN == 0, then set to 1. */
10293 if ((env->cp15.sctlr_el[new_el] & SCTLR_SPAN) == 0) {
10294 new_mode |= PSTATE_PAN;
10296 break;
10299 if (cpu_isar_feature(aa64_mte, cpu)) {
10300 new_mode |= PSTATE_TCO;
10303 if (cpu_isar_feature(aa64_ssbs, cpu)) {
10304 if (env->cp15.sctlr_el[new_el] & SCTLR_DSSBS_64) {
10305 new_mode |= PSTATE_SSBS;
10306 } else {
10307 new_mode &= ~PSTATE_SSBS;
10311 pstate_write(env, PSTATE_DAIF | new_mode);
10312 env->aarch64 = true;
10313 aarch64_restore_sp(env, new_el);
10314 helper_rebuild_hflags_a64(env, new_el);
10316 env->pc = addr;
10318 qemu_log_mask(CPU_LOG_INT, "...to EL%d PC 0x%" PRIx64 " PSTATE 0x%x\n",
10319 new_el, env->pc, pstate_read(env));
10323 * Do semihosting call and set the appropriate return value. All the
10324 * permission and validity checks have been done at translate time.
10326 * We only see semihosting exceptions in TCG only as they are not
10327 * trapped to the hypervisor in KVM.
10329 #ifdef CONFIG_TCG
10330 static void handle_semihosting(CPUState *cs)
10332 ARMCPU *cpu = ARM_CPU(cs);
10333 CPUARMState *env = &cpu->env;
10335 if (is_a64(env)) {
10336 qemu_log_mask(CPU_LOG_INT,
10337 "...handling as semihosting call 0x%" PRIx64 "\n",
10338 env->xregs[0]);
10339 env->xregs[0] = do_common_semihosting(cs);
10340 env->pc += 4;
10341 } else {
10342 qemu_log_mask(CPU_LOG_INT,
10343 "...handling as semihosting call 0x%x\n",
10344 env->regs[0]);
10345 env->regs[0] = do_common_semihosting(cs);
10346 env->regs[15] += env->thumb ? 2 : 4;
10349 #endif
10351 /* Handle a CPU exception for A and R profile CPUs.
10352 * Do any appropriate logging, handle PSCI calls, and then hand off
10353 * to the AArch64-entry or AArch32-entry function depending on the
10354 * target exception level's register width.
10356 * Note: this is used for both TCG (as the do_interrupt tcg op),
10357 * and KVM to re-inject guest debug exceptions, and to
10358 * inject a Synchronous-External-Abort.
10360 void arm_cpu_do_interrupt(CPUState *cs)
10362 ARMCPU *cpu = ARM_CPU(cs);
10363 CPUARMState *env = &cpu->env;
10364 unsigned int new_el = env->exception.target_el;
10366 assert(!arm_feature(env, ARM_FEATURE_M));
10368 arm_log_exception(cs);
10369 qemu_log_mask(CPU_LOG_INT, "...from EL%d to EL%d\n", arm_current_el(env),
10370 new_el);
10371 if (qemu_loglevel_mask(CPU_LOG_INT)
10372 && !excp_is_internal(cs->exception_index)) {
10373 qemu_log_mask(CPU_LOG_INT, "...with ESR 0x%x/0x%" PRIx32 "\n",
10374 syn_get_ec(env->exception.syndrome),
10375 env->exception.syndrome);
10378 if (arm_is_psci_call(cpu, cs->exception_index)) {
10379 arm_handle_psci_call(cpu);
10380 qemu_log_mask(CPU_LOG_INT, "...handled as PSCI call\n");
10381 return;
10385 * Semihosting semantics depend on the register width of the code
10386 * that caused the exception, not the target exception level, so
10387 * must be handled here.
10389 #ifdef CONFIG_TCG
10390 if (cs->exception_index == EXCP_SEMIHOST) {
10391 handle_semihosting(cs);
10392 return;
10394 #endif
10396 /* Hooks may change global state so BQL should be held, also the
10397 * BQL needs to be held for any modification of
10398 * cs->interrupt_request.
10400 g_assert(qemu_mutex_iothread_locked());
10402 arm_call_pre_el_change_hook(cpu);
10404 assert(!excp_is_internal(cs->exception_index));
10405 if (arm_el_is_aa64(env, new_el)) {
10406 arm_cpu_do_interrupt_aarch64(cs);
10407 } else {
10408 arm_cpu_do_interrupt_aarch32(cs);
10411 arm_call_el_change_hook(cpu);
10413 if (!kvm_enabled()) {
10414 cs->interrupt_request |= CPU_INTERRUPT_EXITTB;
10417 #endif /* !CONFIG_USER_ONLY */
10419 uint64_t arm_sctlr(CPUARMState *env, int el)
10421 /* Only EL0 needs to be adjusted for EL1&0 or EL2&0. */
10422 if (el == 0) {
10423 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, 0);
10424 el = (mmu_idx == ARMMMUIdx_E20_0 || mmu_idx == ARMMMUIdx_SE20_0)
10425 ? 2 : 1;
10427 return env->cp15.sctlr_el[el];
10430 int aa64_va_parameter_tbi(uint64_t tcr, ARMMMUIdx mmu_idx)
10432 if (regime_has_2_ranges(mmu_idx)) {
10433 return extract64(tcr, 37, 2);
10434 } else if (mmu_idx == ARMMMUIdx_Stage2 || mmu_idx == ARMMMUIdx_Stage2_S) {
10435 return 0; /* VTCR_EL2 */
10436 } else {
10437 /* Replicate the single TBI bit so we always have 2 bits. */
10438 return extract32(tcr, 20, 1) * 3;
10442 int aa64_va_parameter_tbid(uint64_t tcr, ARMMMUIdx mmu_idx)
10444 if (regime_has_2_ranges(mmu_idx)) {
10445 return extract64(tcr, 51, 2);
10446 } else if (mmu_idx == ARMMMUIdx_Stage2 || mmu_idx == ARMMMUIdx_Stage2_S) {
10447 return 0; /* VTCR_EL2 */
10448 } else {
10449 /* Replicate the single TBID bit so we always have 2 bits. */
10450 return extract32(tcr, 29, 1) * 3;
10454 static int aa64_va_parameter_tcma(uint64_t tcr, ARMMMUIdx mmu_idx)
10456 if (regime_has_2_ranges(mmu_idx)) {
10457 return extract64(tcr, 57, 2);
10458 } else {
10459 /* Replicate the single TCMA bit so we always have 2 bits. */
10460 return extract32(tcr, 30, 1) * 3;
10464 ARMVAParameters aa64_va_parameters(CPUARMState *env, uint64_t va,
10465 ARMMMUIdx mmu_idx, bool data)
10467 uint64_t tcr = regime_tcr(env, mmu_idx)->raw_tcr;
10468 bool epd, hpd, using16k, using64k, tsz_oob, ds;
10469 int select, tsz, tbi, max_tsz, min_tsz, ps, sh;
10470 ARMCPU *cpu = env_archcpu(env);
10472 if (!regime_has_2_ranges(mmu_idx)) {
10473 select = 0;
10474 tsz = extract32(tcr, 0, 6);
10475 using64k = extract32(tcr, 14, 1);
10476 using16k = extract32(tcr, 15, 1);
10477 if (mmu_idx == ARMMMUIdx_Stage2 || mmu_idx == ARMMMUIdx_Stage2_S) {
10478 /* VTCR_EL2 */
10479 hpd = false;
10480 } else {
10481 hpd = extract32(tcr, 24, 1);
10483 epd = false;
10484 sh = extract32(tcr, 12, 2);
10485 ps = extract32(tcr, 16, 3);
10486 ds = extract64(tcr, 32, 1);
10487 } else {
10489 * Bit 55 is always between the two regions, and is canonical for
10490 * determining if address tagging is enabled.
10492 select = extract64(va, 55, 1);
10493 if (!select) {
10494 tsz = extract32(tcr, 0, 6);
10495 epd = extract32(tcr, 7, 1);
10496 sh = extract32(tcr, 12, 2);
10497 using64k = extract32(tcr, 14, 1);
10498 using16k = extract32(tcr, 15, 1);
10499 hpd = extract64(tcr, 41, 1);
10500 } else {
10501 int tg = extract32(tcr, 30, 2);
10502 using16k = tg == 1;
10503 using64k = tg == 3;
10504 tsz = extract32(tcr, 16, 6);
10505 epd = extract32(tcr, 23, 1);
10506 sh = extract32(tcr, 28, 2);
10507 hpd = extract64(tcr, 42, 1);
10509 ps = extract64(tcr, 32, 3);
10510 ds = extract64(tcr, 59, 1);
10513 if (cpu_isar_feature(aa64_st, cpu)) {
10514 max_tsz = 48 - using64k;
10515 } else {
10516 max_tsz = 39;
10520 * DS is RES0 unless FEAT_LPA2 is supported for the given page size;
10521 * adjust the effective value of DS, as documented.
10523 min_tsz = 16;
10524 if (using64k) {
10525 if (cpu_isar_feature(aa64_lva, cpu)) {
10526 min_tsz = 12;
10528 ds = false;
10529 } else if (ds) {
10530 switch (mmu_idx) {
10531 case ARMMMUIdx_Stage2:
10532 case ARMMMUIdx_Stage2_S:
10533 if (using16k) {
10534 ds = cpu_isar_feature(aa64_tgran16_2_lpa2, cpu);
10535 } else {
10536 ds = cpu_isar_feature(aa64_tgran4_2_lpa2, cpu);
10538 break;
10539 default:
10540 if (using16k) {
10541 ds = cpu_isar_feature(aa64_tgran16_lpa2, cpu);
10542 } else {
10543 ds = cpu_isar_feature(aa64_tgran4_lpa2, cpu);
10545 break;
10547 if (ds) {
10548 min_tsz = 12;
10552 if (tsz > max_tsz) {
10553 tsz = max_tsz;
10554 tsz_oob = true;
10555 } else if (tsz < min_tsz) {
10556 tsz = min_tsz;
10557 tsz_oob = true;
10558 } else {
10559 tsz_oob = false;
10562 /* Present TBI as a composite with TBID. */
10563 tbi = aa64_va_parameter_tbi(tcr, mmu_idx);
10564 if (!data) {
10565 tbi &= ~aa64_va_parameter_tbid(tcr, mmu_idx);
10567 tbi = (tbi >> select) & 1;
10569 return (ARMVAParameters) {
10570 .tsz = tsz,
10571 .ps = ps,
10572 .sh = sh,
10573 .select = select,
10574 .tbi = tbi,
10575 .epd = epd,
10576 .hpd = hpd,
10577 .using16k = using16k,
10578 .using64k = using64k,
10579 .tsz_oob = tsz_oob,
10580 .ds = ds,
10584 /* Note that signed overflow is undefined in C. The following routines are
10585 careful to use unsigned types where modulo arithmetic is required.
10586 Failure to do so _will_ break on newer gcc. */
10588 /* Signed saturating arithmetic. */
10590 /* Perform 16-bit signed saturating addition. */
10591 static inline uint16_t add16_sat(uint16_t a, uint16_t b)
10593 uint16_t res;
10595 res = a + b;
10596 if (((res ^ a) & 0x8000) && !((a ^ b) & 0x8000)) {
10597 if (a & 0x8000)
10598 res = 0x8000;
10599 else
10600 res = 0x7fff;
10602 return res;
10605 /* Perform 8-bit signed saturating addition. */
10606 static inline uint8_t add8_sat(uint8_t a, uint8_t b)
10608 uint8_t res;
10610 res = a + b;
10611 if (((res ^ a) & 0x80) && !((a ^ b) & 0x80)) {
10612 if (a & 0x80)
10613 res = 0x80;
10614 else
10615 res = 0x7f;
10617 return res;
10620 /* Perform 16-bit signed saturating subtraction. */
10621 static inline uint16_t sub16_sat(uint16_t a, uint16_t b)
10623 uint16_t res;
10625 res = a - b;
10626 if (((res ^ a) & 0x8000) && ((a ^ b) & 0x8000)) {
10627 if (a & 0x8000)
10628 res = 0x8000;
10629 else
10630 res = 0x7fff;
10632 return res;
10635 /* Perform 8-bit signed saturating subtraction. */
10636 static inline uint8_t sub8_sat(uint8_t a, uint8_t b)
10638 uint8_t res;
10640 res = a - b;
10641 if (((res ^ a) & 0x80) && ((a ^ b) & 0x80)) {
10642 if (a & 0x80)
10643 res = 0x80;
10644 else
10645 res = 0x7f;
10647 return res;
10650 #define ADD16(a, b, n) RESULT(add16_sat(a, b), n, 16);
10651 #define SUB16(a, b, n) RESULT(sub16_sat(a, b), n, 16);
10652 #define ADD8(a, b, n) RESULT(add8_sat(a, b), n, 8);
10653 #define SUB8(a, b, n) RESULT(sub8_sat(a, b), n, 8);
10654 #define PFX q
10656 #include "op_addsub.h"
10658 /* Unsigned saturating arithmetic. */
10659 static inline uint16_t add16_usat(uint16_t a, uint16_t b)
10661 uint16_t res;
10662 res = a + b;
10663 if (res < a)
10664 res = 0xffff;
10665 return res;
10668 static inline uint16_t sub16_usat(uint16_t a, uint16_t b)
10670 if (a > b)
10671 return a - b;
10672 else
10673 return 0;
10676 static inline uint8_t add8_usat(uint8_t a, uint8_t b)
10678 uint8_t res;
10679 res = a + b;
10680 if (res < a)
10681 res = 0xff;
10682 return res;
10685 static inline uint8_t sub8_usat(uint8_t a, uint8_t b)
10687 if (a > b)
10688 return a - b;
10689 else
10690 return 0;
10693 #define ADD16(a, b, n) RESULT(add16_usat(a, b), n, 16);
10694 #define SUB16(a, b, n) RESULT(sub16_usat(a, b), n, 16);
10695 #define ADD8(a, b, n) RESULT(add8_usat(a, b), n, 8);
10696 #define SUB8(a, b, n) RESULT(sub8_usat(a, b), n, 8);
10697 #define PFX uq
10699 #include "op_addsub.h"
10701 /* Signed modulo arithmetic. */
10702 #define SARITH16(a, b, n, op) do { \
10703 int32_t sum; \
10704 sum = (int32_t)(int16_t)(a) op (int32_t)(int16_t)(b); \
10705 RESULT(sum, n, 16); \
10706 if (sum >= 0) \
10707 ge |= 3 << (n * 2); \
10708 } while(0)
10710 #define SARITH8(a, b, n, op) do { \
10711 int32_t sum; \
10712 sum = (int32_t)(int8_t)(a) op (int32_t)(int8_t)(b); \
10713 RESULT(sum, n, 8); \
10714 if (sum >= 0) \
10715 ge |= 1 << n; \
10716 } while(0)
10719 #define ADD16(a, b, n) SARITH16(a, b, n, +)
10720 #define SUB16(a, b, n) SARITH16(a, b, n, -)
10721 #define ADD8(a, b, n) SARITH8(a, b, n, +)
10722 #define SUB8(a, b, n) SARITH8(a, b, n, -)
10723 #define PFX s
10724 #define ARITH_GE
10726 #include "op_addsub.h"
10728 /* Unsigned modulo arithmetic. */
10729 #define ADD16(a, b, n) do { \
10730 uint32_t sum; \
10731 sum = (uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b); \
10732 RESULT(sum, n, 16); \
10733 if ((sum >> 16) == 1) \
10734 ge |= 3 << (n * 2); \
10735 } while(0)
10737 #define ADD8(a, b, n) do { \
10738 uint32_t sum; \
10739 sum = (uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b); \
10740 RESULT(sum, n, 8); \
10741 if ((sum >> 8) == 1) \
10742 ge |= 1 << n; \
10743 } while(0)
10745 #define SUB16(a, b, n) do { \
10746 uint32_t sum; \
10747 sum = (uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b); \
10748 RESULT(sum, n, 16); \
10749 if ((sum >> 16) == 0) \
10750 ge |= 3 << (n * 2); \
10751 } while(0)
10753 #define SUB8(a, b, n) do { \
10754 uint32_t sum; \
10755 sum = (uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b); \
10756 RESULT(sum, n, 8); \
10757 if ((sum >> 8) == 0) \
10758 ge |= 1 << n; \
10759 } while(0)
10761 #define PFX u
10762 #define ARITH_GE
10764 #include "op_addsub.h"
10766 /* Halved signed arithmetic. */
10767 #define ADD16(a, b, n) \
10768 RESULT(((int32_t)(int16_t)(a) + (int32_t)(int16_t)(b)) >> 1, n, 16)
10769 #define SUB16(a, b, n) \
10770 RESULT(((int32_t)(int16_t)(a) - (int32_t)(int16_t)(b)) >> 1, n, 16)
10771 #define ADD8(a, b, n) \
10772 RESULT(((int32_t)(int8_t)(a) + (int32_t)(int8_t)(b)) >> 1, n, 8)
10773 #define SUB8(a, b, n) \
10774 RESULT(((int32_t)(int8_t)(a) - (int32_t)(int8_t)(b)) >> 1, n, 8)
10775 #define PFX sh
10777 #include "op_addsub.h"
10779 /* Halved unsigned arithmetic. */
10780 #define ADD16(a, b, n) \
10781 RESULT(((uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b)) >> 1, n, 16)
10782 #define SUB16(a, b, n) \
10783 RESULT(((uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b)) >> 1, n, 16)
10784 #define ADD8(a, b, n) \
10785 RESULT(((uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b)) >> 1, n, 8)
10786 #define SUB8(a, b, n) \
10787 RESULT(((uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b)) >> 1, n, 8)
10788 #define PFX uh
10790 #include "op_addsub.h"
10792 static inline uint8_t do_usad(uint8_t a, uint8_t b)
10794 if (a > b)
10795 return a - b;
10796 else
10797 return b - a;
10800 /* Unsigned sum of absolute byte differences. */
10801 uint32_t HELPER(usad8)(uint32_t a, uint32_t b)
10803 uint32_t sum;
10804 sum = do_usad(a, b);
10805 sum += do_usad(a >> 8, b >> 8);
10806 sum += do_usad(a >> 16, b >> 16);
10807 sum += do_usad(a >> 24, b >> 24);
10808 return sum;
10811 /* For ARMv6 SEL instruction. */
10812 uint32_t HELPER(sel_flags)(uint32_t flags, uint32_t a, uint32_t b)
10814 uint32_t mask;
10816 mask = 0;
10817 if (flags & 1)
10818 mask |= 0xff;
10819 if (flags & 2)
10820 mask |= 0xff00;
10821 if (flags & 4)
10822 mask |= 0xff0000;
10823 if (flags & 8)
10824 mask |= 0xff000000;
10825 return (a & mask) | (b & ~mask);
10828 /* CRC helpers.
10829 * The upper bytes of val (above the number specified by 'bytes') must have
10830 * been zeroed out by the caller.
10832 uint32_t HELPER(crc32)(uint32_t acc, uint32_t val, uint32_t bytes)
10834 uint8_t buf[4];
10836 stl_le_p(buf, val);
10838 /* zlib crc32 converts the accumulator and output to one's complement. */
10839 return crc32(acc ^ 0xffffffff, buf, bytes) ^ 0xffffffff;
10842 uint32_t HELPER(crc32c)(uint32_t acc, uint32_t val, uint32_t bytes)
10844 uint8_t buf[4];
10846 stl_le_p(buf, val);
10848 /* Linux crc32c converts the output to one's complement. */
10849 return crc32c(acc, buf, bytes) ^ 0xffffffff;
10852 /* Return the exception level to which FP-disabled exceptions should
10853 * be taken, or 0 if FP is enabled.
10855 int fp_exception_el(CPUARMState *env, int cur_el)
10857 #ifndef CONFIG_USER_ONLY
10858 uint64_t hcr_el2;
10860 /* CPACR and the CPTR registers don't exist before v6, so FP is
10861 * always accessible
10863 if (!arm_feature(env, ARM_FEATURE_V6)) {
10864 return 0;
10867 if (arm_feature(env, ARM_FEATURE_M)) {
10868 /* CPACR can cause a NOCP UsageFault taken to current security state */
10869 if (!v7m_cpacr_pass(env, env->v7m.secure, cur_el != 0)) {
10870 return 1;
10873 if (arm_feature(env, ARM_FEATURE_M_SECURITY) && !env->v7m.secure) {
10874 if (!extract32(env->v7m.nsacr, 10, 1)) {
10875 /* FP insns cause a NOCP UsageFault taken to Secure */
10876 return 3;
10880 return 0;
10883 hcr_el2 = arm_hcr_el2_eff(env);
10885 /* The CPACR controls traps to EL1, or PL1 if we're 32 bit:
10886 * 0, 2 : trap EL0 and EL1/PL1 accesses
10887 * 1 : trap only EL0 accesses
10888 * 3 : trap no accesses
10889 * This register is ignored if E2H+TGE are both set.
10891 if ((hcr_el2 & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE)) {
10892 int fpen = FIELD_EX64(env->cp15.cpacr_el1, CPACR_EL1, FPEN);
10894 switch (fpen) {
10895 case 0:
10896 case 2:
10897 if (cur_el == 0 || cur_el == 1) {
10898 /* Trap to PL1, which might be EL1 or EL3 */
10899 if (arm_is_secure(env) && !arm_el_is_aa64(env, 3)) {
10900 return 3;
10902 return 1;
10904 if (cur_el == 3 && !is_a64(env)) {
10905 /* Secure PL1 running at EL3 */
10906 return 3;
10908 break;
10909 case 1:
10910 if (cur_el == 0) {
10911 return 1;
10913 break;
10914 case 3:
10915 break;
10920 * The NSACR allows A-profile AArch32 EL3 and M-profile secure mode
10921 * to control non-secure access to the FPU. It doesn't have any
10922 * effect if EL3 is AArch64 or if EL3 doesn't exist at all.
10924 if ((arm_feature(env, ARM_FEATURE_EL3) && !arm_el_is_aa64(env, 3) &&
10925 cur_el <= 2 && !arm_is_secure_below_el3(env))) {
10926 if (!extract32(env->cp15.nsacr, 10, 1)) {
10927 /* FP insns act as UNDEF */
10928 return cur_el == 2 ? 2 : 1;
10933 * CPTR_EL2 is present in v7VE or v8, and changes format
10934 * with HCR_EL2.E2H (regardless of TGE).
10936 if (cur_el <= 2) {
10937 if (hcr_el2 & HCR_E2H) {
10938 switch (FIELD_EX64(env->cp15.cptr_el[2], CPTR_EL2, FPEN)) {
10939 case 1:
10940 if (cur_el != 0 || !(hcr_el2 & HCR_TGE)) {
10941 break;
10943 /* fall through */
10944 case 0:
10945 case 2:
10946 return 2;
10948 } else if (arm_is_el2_enabled(env)) {
10949 if (FIELD_EX64(env->cp15.cptr_el[2], CPTR_EL2, TFP)) {
10950 return 2;
10955 /* CPTR_EL3 : present in v8 */
10956 if (FIELD_EX64(env->cp15.cptr_el[3], CPTR_EL3, TFP)) {
10957 /* Trap all FP ops to EL3 */
10958 return 3;
10960 #endif
10961 return 0;
10964 /* Return the exception level we're running at if this is our mmu_idx */
10965 int arm_mmu_idx_to_el(ARMMMUIdx mmu_idx)
10967 if (mmu_idx & ARM_MMU_IDX_M) {
10968 return mmu_idx & ARM_MMU_IDX_M_PRIV;
10971 switch (mmu_idx) {
10972 case ARMMMUIdx_E10_0:
10973 case ARMMMUIdx_E20_0:
10974 case ARMMMUIdx_SE10_0:
10975 case ARMMMUIdx_SE20_0:
10976 return 0;
10977 case ARMMMUIdx_E10_1:
10978 case ARMMMUIdx_E10_1_PAN:
10979 case ARMMMUIdx_SE10_1:
10980 case ARMMMUIdx_SE10_1_PAN:
10981 return 1;
10982 case ARMMMUIdx_E2:
10983 case ARMMMUIdx_E20_2:
10984 case ARMMMUIdx_E20_2_PAN:
10985 case ARMMMUIdx_SE2:
10986 case ARMMMUIdx_SE20_2:
10987 case ARMMMUIdx_SE20_2_PAN:
10988 return 2;
10989 case ARMMMUIdx_SE3:
10990 return 3;
10991 default:
10992 g_assert_not_reached();
10996 #ifndef CONFIG_TCG
10997 ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate)
10999 g_assert_not_reached();
11001 #endif
11003 ARMMMUIdx arm_mmu_idx_el(CPUARMState *env, int el)
11005 ARMMMUIdx idx;
11006 uint64_t hcr;
11008 if (arm_feature(env, ARM_FEATURE_M)) {
11009 return arm_v7m_mmu_idx_for_secstate(env, env->v7m.secure);
11012 /* See ARM pseudo-function ELIsInHost. */
11013 switch (el) {
11014 case 0:
11015 hcr = arm_hcr_el2_eff(env);
11016 if ((hcr & (HCR_E2H | HCR_TGE)) == (HCR_E2H | HCR_TGE)) {
11017 idx = ARMMMUIdx_E20_0;
11018 } else {
11019 idx = ARMMMUIdx_E10_0;
11021 break;
11022 case 1:
11023 if (env->pstate & PSTATE_PAN) {
11024 idx = ARMMMUIdx_E10_1_PAN;
11025 } else {
11026 idx = ARMMMUIdx_E10_1;
11028 break;
11029 case 2:
11030 /* Note that TGE does not apply at EL2. */
11031 if (arm_hcr_el2_eff(env) & HCR_E2H) {
11032 if (env->pstate & PSTATE_PAN) {
11033 idx = ARMMMUIdx_E20_2_PAN;
11034 } else {
11035 idx = ARMMMUIdx_E20_2;
11037 } else {
11038 idx = ARMMMUIdx_E2;
11040 break;
11041 case 3:
11042 return ARMMMUIdx_SE3;
11043 default:
11044 g_assert_not_reached();
11047 if (arm_is_secure_below_el3(env)) {
11048 idx &= ~ARM_MMU_IDX_A_NS;
11051 return idx;
11054 ARMMMUIdx arm_mmu_idx(CPUARMState *env)
11056 return arm_mmu_idx_el(env, arm_current_el(env));
11059 static CPUARMTBFlags rebuild_hflags_common(CPUARMState *env, int fp_el,
11060 ARMMMUIdx mmu_idx,
11061 CPUARMTBFlags flags)
11063 DP_TBFLAG_ANY(flags, FPEXC_EL, fp_el);
11064 DP_TBFLAG_ANY(flags, MMUIDX, arm_to_core_mmu_idx(mmu_idx));
11066 if (arm_singlestep_active(env)) {
11067 DP_TBFLAG_ANY(flags, SS_ACTIVE, 1);
11069 return flags;
11072 static CPUARMTBFlags rebuild_hflags_common_32(CPUARMState *env, int fp_el,
11073 ARMMMUIdx mmu_idx,
11074 CPUARMTBFlags flags)
11076 bool sctlr_b = arm_sctlr_b(env);
11078 if (sctlr_b) {
11079 DP_TBFLAG_A32(flags, SCTLR__B, 1);
11081 if (arm_cpu_data_is_big_endian_a32(env, sctlr_b)) {
11082 DP_TBFLAG_ANY(flags, BE_DATA, 1);
11084 DP_TBFLAG_A32(flags, NS, !access_secure_reg(env));
11086 return rebuild_hflags_common(env, fp_el, mmu_idx, flags);
11089 static CPUARMTBFlags rebuild_hflags_m32(CPUARMState *env, int fp_el,
11090 ARMMMUIdx mmu_idx)
11092 CPUARMTBFlags flags = {};
11093 uint32_t ccr = env->v7m.ccr[env->v7m.secure];
11095 /* Without HaveMainExt, CCR.UNALIGN_TRP is RES1. */
11096 if (ccr & R_V7M_CCR_UNALIGN_TRP_MASK) {
11097 DP_TBFLAG_ANY(flags, ALIGN_MEM, 1);
11100 if (arm_v7m_is_handler_mode(env)) {
11101 DP_TBFLAG_M32(flags, HANDLER, 1);
11105 * v8M always applies stack limit checks unless CCR.STKOFHFNMIGN
11106 * is suppressing them because the requested execution priority
11107 * is less than 0.
11109 if (arm_feature(env, ARM_FEATURE_V8) &&
11110 !((mmu_idx & ARM_MMU_IDX_M_NEGPRI) &&
11111 (ccr & R_V7M_CCR_STKOFHFNMIGN_MASK))) {
11112 DP_TBFLAG_M32(flags, STACKCHECK, 1);
11115 return rebuild_hflags_common_32(env, fp_el, mmu_idx, flags);
11118 static CPUARMTBFlags rebuild_hflags_aprofile(CPUARMState *env)
11120 CPUARMTBFlags flags = {};
11122 DP_TBFLAG_ANY(flags, DEBUG_TARGET_EL, arm_debug_target_el(env));
11123 return flags;
11126 static CPUARMTBFlags rebuild_hflags_a32(CPUARMState *env, int fp_el,
11127 ARMMMUIdx mmu_idx)
11129 CPUARMTBFlags flags = rebuild_hflags_aprofile(env);
11130 int el = arm_current_el(env);
11132 if (arm_sctlr(env, el) & SCTLR_A) {
11133 DP_TBFLAG_ANY(flags, ALIGN_MEM, 1);
11136 if (arm_el_is_aa64(env, 1)) {
11137 DP_TBFLAG_A32(flags, VFPEN, 1);
11140 if (el < 2 && env->cp15.hstr_el2 &&
11141 (arm_hcr_el2_eff(env) & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE)) {
11142 DP_TBFLAG_A32(flags, HSTR_ACTIVE, 1);
11145 if (env->uncached_cpsr & CPSR_IL) {
11146 DP_TBFLAG_ANY(flags, PSTATE__IL, 1);
11149 return rebuild_hflags_common_32(env, fp_el, mmu_idx, flags);
11152 static CPUARMTBFlags rebuild_hflags_a64(CPUARMState *env, int el, int fp_el,
11153 ARMMMUIdx mmu_idx)
11155 CPUARMTBFlags flags = rebuild_hflags_aprofile(env);
11156 ARMMMUIdx stage1 = stage_1_mmu_idx(mmu_idx);
11157 uint64_t tcr = regime_tcr(env, mmu_idx)->raw_tcr;
11158 uint64_t sctlr;
11159 int tbii, tbid;
11161 DP_TBFLAG_ANY(flags, AARCH64_STATE, 1);
11163 /* Get control bits for tagged addresses. */
11164 tbid = aa64_va_parameter_tbi(tcr, mmu_idx);
11165 tbii = tbid & ~aa64_va_parameter_tbid(tcr, mmu_idx);
11167 DP_TBFLAG_A64(flags, TBII, tbii);
11168 DP_TBFLAG_A64(flags, TBID, tbid);
11170 if (cpu_isar_feature(aa64_sve, env_archcpu(env))) {
11171 int sve_el = sve_exception_el(env, el);
11174 * If either FP or SVE are disabled, translator does not need len.
11175 * If SVE EL > FP EL, FP exception has precedence, and translator
11176 * does not need SVE EL. Save potential re-translations by forcing
11177 * the unneeded data to zero.
11179 if (fp_el != 0) {
11180 if (sve_el > fp_el) {
11181 sve_el = 0;
11183 } else if (sve_el == 0) {
11184 DP_TBFLAG_A64(flags, VL, sve_zcr_len_for_el(env, el));
11186 DP_TBFLAG_A64(flags, SVEEXC_EL, sve_el);
11189 sctlr = regime_sctlr(env, stage1);
11191 if (sctlr & SCTLR_A) {
11192 DP_TBFLAG_ANY(flags, ALIGN_MEM, 1);
11195 if (arm_cpu_data_is_big_endian_a64(el, sctlr)) {
11196 DP_TBFLAG_ANY(flags, BE_DATA, 1);
11199 if (cpu_isar_feature(aa64_pauth, env_archcpu(env))) {
11201 * In order to save space in flags, we record only whether
11202 * pauth is "inactive", meaning all insns are implemented as
11203 * a nop, or "active" when some action must be performed.
11204 * The decision of which action to take is left to a helper.
11206 if (sctlr & (SCTLR_EnIA | SCTLR_EnIB | SCTLR_EnDA | SCTLR_EnDB)) {
11207 DP_TBFLAG_A64(flags, PAUTH_ACTIVE, 1);
11211 if (cpu_isar_feature(aa64_bti, env_archcpu(env))) {
11212 /* Note that SCTLR_EL[23].BT == SCTLR_BT1. */
11213 if (sctlr & (el == 0 ? SCTLR_BT0 : SCTLR_BT1)) {
11214 DP_TBFLAG_A64(flags, BT, 1);
11218 /* Compute the condition for using AccType_UNPRIV for LDTR et al. */
11219 if (!(env->pstate & PSTATE_UAO)) {
11220 switch (mmu_idx) {
11221 case ARMMMUIdx_E10_1:
11222 case ARMMMUIdx_E10_1_PAN:
11223 case ARMMMUIdx_SE10_1:
11224 case ARMMMUIdx_SE10_1_PAN:
11225 /* TODO: ARMv8.3-NV */
11226 DP_TBFLAG_A64(flags, UNPRIV, 1);
11227 break;
11228 case ARMMMUIdx_E20_2:
11229 case ARMMMUIdx_E20_2_PAN:
11230 case ARMMMUIdx_SE20_2:
11231 case ARMMMUIdx_SE20_2_PAN:
11233 * Note that EL20_2 is gated by HCR_EL2.E2H == 1, but EL20_0 is
11234 * gated by HCR_EL2.<E2H,TGE> == '11', and so is LDTR.
11236 if (env->cp15.hcr_el2 & HCR_TGE) {
11237 DP_TBFLAG_A64(flags, UNPRIV, 1);
11239 break;
11240 default:
11241 break;
11245 if (env->pstate & PSTATE_IL) {
11246 DP_TBFLAG_ANY(flags, PSTATE__IL, 1);
11249 if (cpu_isar_feature(aa64_mte, env_archcpu(env))) {
11251 * Set MTE_ACTIVE if any access may be Checked, and leave clear
11252 * if all accesses must be Unchecked:
11253 * 1) If no TBI, then there are no tags in the address to check,
11254 * 2) If Tag Check Override, then all accesses are Unchecked,
11255 * 3) If Tag Check Fail == 0, then Checked access have no effect,
11256 * 4) If no Allocation Tag Access, then all accesses are Unchecked.
11258 if (allocation_tag_access_enabled(env, el, sctlr)) {
11259 DP_TBFLAG_A64(flags, ATA, 1);
11260 if (tbid
11261 && !(env->pstate & PSTATE_TCO)
11262 && (sctlr & (el == 0 ? SCTLR_TCF0 : SCTLR_TCF))) {
11263 DP_TBFLAG_A64(flags, MTE_ACTIVE, 1);
11266 /* And again for unprivileged accesses, if required. */
11267 if (EX_TBFLAG_A64(flags, UNPRIV)
11268 && tbid
11269 && !(env->pstate & PSTATE_TCO)
11270 && (sctlr & SCTLR_TCF0)
11271 && allocation_tag_access_enabled(env, 0, sctlr)) {
11272 DP_TBFLAG_A64(flags, MTE0_ACTIVE, 1);
11274 /* Cache TCMA as well as TBI. */
11275 DP_TBFLAG_A64(flags, TCMA, aa64_va_parameter_tcma(tcr, mmu_idx));
11278 return rebuild_hflags_common(env, fp_el, mmu_idx, flags);
11281 static CPUARMTBFlags rebuild_hflags_internal(CPUARMState *env)
11283 int el = arm_current_el(env);
11284 int fp_el = fp_exception_el(env, el);
11285 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11287 if (is_a64(env)) {
11288 return rebuild_hflags_a64(env, el, fp_el, mmu_idx);
11289 } else if (arm_feature(env, ARM_FEATURE_M)) {
11290 return rebuild_hflags_m32(env, fp_el, mmu_idx);
11291 } else {
11292 return rebuild_hflags_a32(env, fp_el, mmu_idx);
11296 void arm_rebuild_hflags(CPUARMState *env)
11298 env->hflags = rebuild_hflags_internal(env);
11302 * If we have triggered a EL state change we can't rely on the
11303 * translator having passed it to us, we need to recompute.
11305 void HELPER(rebuild_hflags_m32_newel)(CPUARMState *env)
11307 int el = arm_current_el(env);
11308 int fp_el = fp_exception_el(env, el);
11309 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11311 env->hflags = rebuild_hflags_m32(env, fp_el, mmu_idx);
11314 void HELPER(rebuild_hflags_m32)(CPUARMState *env, int el)
11316 int fp_el = fp_exception_el(env, el);
11317 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11319 env->hflags = rebuild_hflags_m32(env, fp_el, mmu_idx);
11323 * If we have triggered a EL state change we can't rely on the
11324 * translator having passed it to us, we need to recompute.
11326 void HELPER(rebuild_hflags_a32_newel)(CPUARMState *env)
11328 int el = arm_current_el(env);
11329 int fp_el = fp_exception_el(env, el);
11330 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11331 env->hflags = rebuild_hflags_a32(env, fp_el, mmu_idx);
11334 void HELPER(rebuild_hflags_a32)(CPUARMState *env, int el)
11336 int fp_el = fp_exception_el(env, el);
11337 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11339 env->hflags = rebuild_hflags_a32(env, fp_el, mmu_idx);
11342 void HELPER(rebuild_hflags_a64)(CPUARMState *env, int el)
11344 int fp_el = fp_exception_el(env, el);
11345 ARMMMUIdx mmu_idx = arm_mmu_idx_el(env, el);
11347 env->hflags = rebuild_hflags_a64(env, el, fp_el, mmu_idx);
11350 static inline void assert_hflags_rebuild_correctly(CPUARMState *env)
11352 #ifdef CONFIG_DEBUG_TCG
11353 CPUARMTBFlags c = env->hflags;
11354 CPUARMTBFlags r = rebuild_hflags_internal(env);
11356 if (unlikely(c.flags != r.flags || c.flags2 != r.flags2)) {
11357 fprintf(stderr, "TCG hflags mismatch "
11358 "(current:(0x%08x,0x" TARGET_FMT_lx ")"
11359 " rebuilt:(0x%08x,0x" TARGET_FMT_lx ")\n",
11360 c.flags, c.flags2, r.flags, r.flags2);
11361 abort();
11363 #endif
11366 static bool mve_no_pred(CPUARMState *env)
11369 * Return true if there is definitely no predication of MVE
11370 * instructions by VPR or LTPSIZE. (Returning false even if there
11371 * isn't any predication is OK; generated code will just be
11372 * a little worse.)
11373 * If the CPU does not implement MVE then this TB flag is always 0.
11375 * NOTE: if you change this logic, the "recalculate s->mve_no_pred"
11376 * logic in gen_update_fp_context() needs to be updated to match.
11378 * We do not include the effect of the ECI bits here -- they are
11379 * tracked in other TB flags. This simplifies the logic for
11380 * "when did we emit code that changes the MVE_NO_PRED TB flag
11381 * and thus need to end the TB?".
11383 if (cpu_isar_feature(aa32_mve, env_archcpu(env))) {
11384 return false;
11386 if (env->v7m.vpr) {
11387 return false;
11389 if (env->v7m.ltpsize < 4) {
11390 return false;
11392 return true;
11395 void cpu_get_tb_cpu_state(CPUARMState *env, target_ulong *pc,
11396 target_ulong *cs_base, uint32_t *pflags)
11398 CPUARMTBFlags flags;
11400 assert_hflags_rebuild_correctly(env);
11401 flags = env->hflags;
11403 if (EX_TBFLAG_ANY(flags, AARCH64_STATE)) {
11404 *pc = env->pc;
11405 if (cpu_isar_feature(aa64_bti, env_archcpu(env))) {
11406 DP_TBFLAG_A64(flags, BTYPE, env->btype);
11408 } else {
11409 *pc = env->regs[15];
11411 if (arm_feature(env, ARM_FEATURE_M)) {
11412 if (arm_feature(env, ARM_FEATURE_M_SECURITY) &&
11413 FIELD_EX32(env->v7m.fpccr[M_REG_S], V7M_FPCCR, S)
11414 != env->v7m.secure) {
11415 DP_TBFLAG_M32(flags, FPCCR_S_WRONG, 1);
11418 if ((env->v7m.fpccr[env->v7m.secure] & R_V7M_FPCCR_ASPEN_MASK) &&
11419 (!(env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK) ||
11420 (env->v7m.secure &&
11421 !(env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK)))) {
11423 * ASPEN is set, but FPCA/SFPA indicate that there is no
11424 * active FP context; we must create a new FP context before
11425 * executing any FP insn.
11427 DP_TBFLAG_M32(flags, NEW_FP_CTXT_NEEDED, 1);
11430 bool is_secure = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_S_MASK;
11431 if (env->v7m.fpccr[is_secure] & R_V7M_FPCCR_LSPACT_MASK) {
11432 DP_TBFLAG_M32(flags, LSPACT, 1);
11435 if (mve_no_pred(env)) {
11436 DP_TBFLAG_M32(flags, MVE_NO_PRED, 1);
11438 } else {
11440 * Note that XSCALE_CPAR shares bits with VECSTRIDE.
11441 * Note that VECLEN+VECSTRIDE are RES0 for M-profile.
11443 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
11444 DP_TBFLAG_A32(flags, XSCALE_CPAR, env->cp15.c15_cpar);
11445 } else {
11446 DP_TBFLAG_A32(flags, VECLEN, env->vfp.vec_len);
11447 DP_TBFLAG_A32(flags, VECSTRIDE, env->vfp.vec_stride);
11449 if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)) {
11450 DP_TBFLAG_A32(flags, VFPEN, 1);
11454 DP_TBFLAG_AM32(flags, THUMB, env->thumb);
11455 DP_TBFLAG_AM32(flags, CONDEXEC, env->condexec_bits);
11459 * The SS_ACTIVE and PSTATE_SS bits correspond to the state machine
11460 * states defined in the ARM ARM for software singlestep:
11461 * SS_ACTIVE PSTATE.SS State
11462 * 0 x Inactive (the TB flag for SS is always 0)
11463 * 1 0 Active-pending
11464 * 1 1 Active-not-pending
11465 * SS_ACTIVE is set in hflags; PSTATE__SS is computed every TB.
11467 if (EX_TBFLAG_ANY(flags, SS_ACTIVE) && (env->pstate & PSTATE_SS)) {
11468 DP_TBFLAG_ANY(flags, PSTATE__SS, 1);
11471 *pflags = flags.flags;
11472 *cs_base = flags.flags2;
11475 #ifdef TARGET_AARCH64
11477 * The manual says that when SVE is enabled and VQ is widened the
11478 * implementation is allowed to zero the previously inaccessible
11479 * portion of the registers. The corollary to that is that when
11480 * SVE is enabled and VQ is narrowed we are also allowed to zero
11481 * the now inaccessible portion of the registers.
11483 * The intent of this is that no predicate bit beyond VQ is ever set.
11484 * Which means that some operations on predicate registers themselves
11485 * may operate on full uint64_t or even unrolled across the maximum
11486 * uint64_t[4]. Performing 4 bits of host arithmetic unconditionally
11487 * may well be cheaper than conditionals to restrict the operation
11488 * to the relevant portion of a uint16_t[16].
11490 void aarch64_sve_narrow_vq(CPUARMState *env, unsigned vq)
11492 int i, j;
11493 uint64_t pmask;
11495 assert(vq >= 1 && vq <= ARM_MAX_VQ);
11496 assert(vq <= env_archcpu(env)->sve_max_vq);
11498 /* Zap the high bits of the zregs. */
11499 for (i = 0; i < 32; i++) {
11500 memset(&env->vfp.zregs[i].d[2 * vq], 0, 16 * (ARM_MAX_VQ - vq));
11503 /* Zap the high bits of the pregs and ffr. */
11504 pmask = 0;
11505 if (vq & 3) {
11506 pmask = ~(-1ULL << (16 * (vq & 3)));
11508 for (j = vq / 4; j < ARM_MAX_VQ / 4; j++) {
11509 for (i = 0; i < 17; ++i) {
11510 env->vfp.pregs[i].p[j] &= pmask;
11512 pmask = 0;
11517 * Notice a change in SVE vector size when changing EL.
11519 void aarch64_sve_change_el(CPUARMState *env, int old_el,
11520 int new_el, bool el0_a64)
11522 ARMCPU *cpu = env_archcpu(env);
11523 int old_len, new_len;
11524 bool old_a64, new_a64;
11526 /* Nothing to do if no SVE. */
11527 if (!cpu_isar_feature(aa64_sve, cpu)) {
11528 return;
11531 /* Nothing to do if FP is disabled in either EL. */
11532 if (fp_exception_el(env, old_el) || fp_exception_el(env, new_el)) {
11533 return;
11537 * DDI0584A.d sec 3.2: "If SVE instructions are disabled or trapped
11538 * at ELx, or not available because the EL is in AArch32 state, then
11539 * for all purposes other than a direct read, the ZCR_ELx.LEN field
11540 * has an effective value of 0".
11542 * Consider EL2 (aa64, vq=4) -> EL0 (aa32) -> EL1 (aa64, vq=0).
11543 * If we ignore aa32 state, we would fail to see the vq4->vq0 transition
11544 * from EL2->EL1. Thus we go ahead and narrow when entering aa32 so that
11545 * we already have the correct register contents when encountering the
11546 * vq0->vq0 transition between EL0->EL1.
11548 old_a64 = old_el ? arm_el_is_aa64(env, old_el) : el0_a64;
11549 old_len = (old_a64 && !sve_exception_el(env, old_el)
11550 ? sve_zcr_len_for_el(env, old_el) : 0);
11551 new_a64 = new_el ? arm_el_is_aa64(env, new_el) : el0_a64;
11552 new_len = (new_a64 && !sve_exception_el(env, new_el)
11553 ? sve_zcr_len_for_el(env, new_el) : 0);
11555 /* When changing vector length, clear inaccessible state. */
11556 if (new_len < old_len) {
11557 aarch64_sve_narrow_vq(env, new_len + 1);
11560 #endif