]> Git Repo - qemu.git/blob - target/arm/helper.c
5e721a65272275e4ad056f87873c84ede3860727
[qemu.git] / target / arm / helper.c
1 #include "qemu/osdep.h"
2 #include "target/arm/idau.h"
3 #include "trace.h"
4 #include "cpu.h"
5 #include "internals.h"
6 #include "exec/gdbstub.h"
7 #include "exec/helper-proto.h"
8 #include "qemu/host-utils.h"
9 #include "sysemu/arch_init.h"
10 #include "sysemu/sysemu.h"
11 #include "qemu/bitops.h"
12 #include "qemu/crc32c.h"
13 #include "exec/exec-all.h"
14 #include "exec/cpu_ldst.h"
15 #include "arm_ldst.h"
16 #include <zlib.h> /* For crc32 */
17 #include "exec/semihost.h"
18 #include "sysemu/kvm.h"
19 #include "fpu/softfloat.h"
20 #include "qemu/range.h"
21
22 #define ARM_CPU_FREQ 1000000000 /* FIXME: 1 GHz, should be configurable */
23
24 #ifndef CONFIG_USER_ONLY
25 /* Cacheability and shareability attributes for a memory access */
26 typedef struct ARMCacheAttrs {
27     unsigned int attrs:8; /* as in the MAIR register encoding */
28     unsigned int shareability:2; /* as in the SH field of the VMSAv8-64 PTEs */
29 } ARMCacheAttrs;
30
31 static bool get_phys_addr(CPUARMState *env, target_ulong address,
32                           MMUAccessType access_type, ARMMMUIdx mmu_idx,
33                           hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
34                           target_ulong *page_size,
35                           ARMMMUFaultInfo *fi, ARMCacheAttrs *cacheattrs);
36
37 static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
38                                MMUAccessType access_type, ARMMMUIdx mmu_idx,
39                                hwaddr *phys_ptr, MemTxAttrs *txattrs, int *prot,
40                                target_ulong *page_size_ptr,
41                                ARMMMUFaultInfo *fi, ARMCacheAttrs *cacheattrs);
42
43 /* Security attributes for an address, as returned by v8m_security_lookup. */
44 typedef struct V8M_SAttributes {
45     bool subpage; /* true if these attrs don't cover the whole TARGET_PAGE */
46     bool ns;
47     bool nsc;
48     uint8_t sregion;
49     bool srvalid;
50     uint8_t iregion;
51     bool irvalid;
52 } V8M_SAttributes;
53
54 static void v8m_security_lookup(CPUARMState *env, uint32_t address,
55                                 MMUAccessType access_type, ARMMMUIdx mmu_idx,
56                                 V8M_SAttributes *sattrs);
57 #endif
58
59 static int vfp_gdb_get_reg(CPUARMState *env, uint8_t *buf, int reg)
60 {
61     int nregs;
62
63     /* VFP data registers are always little-endian.  */
64     nregs = arm_feature(env, ARM_FEATURE_VFP3) ? 32 : 16;
65     if (reg < nregs) {
66         stq_le_p(buf, *aa32_vfp_dreg(env, reg));
67         return 8;
68     }
69     if (arm_feature(env, ARM_FEATURE_NEON)) {
70         /* Aliases for Q regs.  */
71         nregs += 16;
72         if (reg < nregs) {
73             uint64_t *q = aa32_vfp_qreg(env, reg - 32);
74             stq_le_p(buf, q[0]);
75             stq_le_p(buf + 8, q[1]);
76             return 16;
77         }
78     }
79     switch (reg - nregs) {
80     case 0: stl_p(buf, env->vfp.xregs[ARM_VFP_FPSID]); return 4;
81     case 1: stl_p(buf, env->vfp.xregs[ARM_VFP_FPSCR]); return 4;
82     case 2: stl_p(buf, env->vfp.xregs[ARM_VFP_FPEXC]); return 4;
83     }
84     return 0;
85 }
86
87 static int vfp_gdb_set_reg(CPUARMState *env, uint8_t *buf, int reg)
88 {
89     int nregs;
90
91     nregs = arm_feature(env, ARM_FEATURE_VFP3) ? 32 : 16;
92     if (reg < nregs) {
93         *aa32_vfp_dreg(env, reg) = ldq_le_p(buf);
94         return 8;
95     }
96     if (arm_feature(env, ARM_FEATURE_NEON)) {
97         nregs += 16;
98         if (reg < nregs) {
99             uint64_t *q = aa32_vfp_qreg(env, reg - 32);
100             q[0] = ldq_le_p(buf);
101             q[1] = ldq_le_p(buf + 8);
102             return 16;
103         }
104     }
105     switch (reg - nregs) {
106     case 0: env->vfp.xregs[ARM_VFP_FPSID] = ldl_p(buf); return 4;
107     case 1: env->vfp.xregs[ARM_VFP_FPSCR] = ldl_p(buf); return 4;
108     case 2: env->vfp.xregs[ARM_VFP_FPEXC] = ldl_p(buf) & (1 << 30); return 4;
109     }
110     return 0;
111 }
112
113 static int aarch64_fpu_gdb_get_reg(CPUARMState *env, uint8_t *buf, int reg)
114 {
115     switch (reg) {
116     case 0 ... 31:
117         /* 128 bit FP register */
118         {
119             uint64_t *q = aa64_vfp_qreg(env, reg);
120             stq_le_p(buf, q[0]);
121             stq_le_p(buf + 8, q[1]);
122             return 16;
123         }
124     case 32:
125         /* FPSR */
126         stl_p(buf, vfp_get_fpsr(env));
127         return 4;
128     case 33:
129         /* FPCR */
130         stl_p(buf, vfp_get_fpcr(env));
131         return 4;
132     default:
133         return 0;
134     }
135 }
136
137 static int aarch64_fpu_gdb_set_reg(CPUARMState *env, uint8_t *buf, int reg)
138 {
139     switch (reg) {
140     case 0 ... 31:
141         /* 128 bit FP register */
142         {
143             uint64_t *q = aa64_vfp_qreg(env, reg);
144             q[0] = ldq_le_p(buf);
145             q[1] = ldq_le_p(buf + 8);
146             return 16;
147         }
148     case 32:
149         /* FPSR */
150         vfp_set_fpsr(env, ldl_p(buf));
151         return 4;
152     case 33:
153         /* FPCR */
154         vfp_set_fpcr(env, ldl_p(buf));
155         return 4;
156     default:
157         return 0;
158     }
159 }
160
161 static uint64_t raw_read(CPUARMState *env, const ARMCPRegInfo *ri)
162 {
163     assert(ri->fieldoffset);
164     if (cpreg_field_is_64bit(ri)) {
165         return CPREG_FIELD64(env, ri);
166     } else {
167         return CPREG_FIELD32(env, ri);
168     }
169 }
170
171 static void raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
172                       uint64_t value)
173 {
174     assert(ri->fieldoffset);
175     if (cpreg_field_is_64bit(ri)) {
176         CPREG_FIELD64(env, ri) = value;
177     } else {
178         CPREG_FIELD32(env, ri) = value;
179     }
180 }
181
182 static void *raw_ptr(CPUARMState *env, const ARMCPRegInfo *ri)
183 {
184     return (char *)env + ri->fieldoffset;
185 }
186
187 uint64_t read_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri)
188 {
189     /* Raw read of a coprocessor register (as needed for migration, etc). */
190     if (ri->type & ARM_CP_CONST) {
191         return ri->resetvalue;
192     } else if (ri->raw_readfn) {
193         return ri->raw_readfn(env, ri);
194     } else if (ri->readfn) {
195         return ri->readfn(env, ri);
196     } else {
197         return raw_read(env, ri);
198     }
199 }
200
201 static void write_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri,
202                              uint64_t v)
203 {
204     /* Raw write of a coprocessor register (as needed for migration, etc).
205      * Note that constant registers are treated as write-ignored; the
206      * caller should check for success by whether a readback gives the
207      * value written.
208      */
209     if (ri->type & ARM_CP_CONST) {
210         return;
211     } else if (ri->raw_writefn) {
212         ri->raw_writefn(env, ri, v);
213     } else if (ri->writefn) {
214         ri->writefn(env, ri, v);
215     } else {
216         raw_write(env, ri, v);
217     }
218 }
219
220 static int arm_gdb_get_sysreg(CPUARMState *env, uint8_t *buf, int reg)
221 {
222     ARMCPU *cpu = arm_env_get_cpu(env);
223     const ARMCPRegInfo *ri;
224     uint32_t key;
225
226     key = cpu->dyn_xml.cpregs_keys[reg];
227     ri = get_arm_cp_reginfo(cpu->cp_regs, key);
228     if (ri) {
229         if (cpreg_field_is_64bit(ri)) {
230             return gdb_get_reg64(buf, (uint64_t)read_raw_cp_reg(env, ri));
231         } else {
232             return gdb_get_reg32(buf, (uint32_t)read_raw_cp_reg(env, ri));
233         }
234     }
235     return 0;
236 }
237
238 static int arm_gdb_set_sysreg(CPUARMState *env, uint8_t *buf, int reg)
239 {
240     return 0;
241 }
242
243 static bool raw_accessors_invalid(const ARMCPRegInfo *ri)
244 {
245    /* Return true if the regdef would cause an assertion if you called
246     * read_raw_cp_reg() or write_raw_cp_reg() on it (ie if it is a
247     * program bug for it not to have the NO_RAW flag).
248     * NB that returning false here doesn't necessarily mean that calling
249     * read/write_raw_cp_reg() is safe, because we can't distinguish "has
250     * read/write access functions which are safe for raw use" from "has
251     * read/write access functions which have side effects but has forgotten
252     * to provide raw access functions".
253     * The tests here line up with the conditions in read/write_raw_cp_reg()
254     * and assertions in raw_read()/raw_write().
255     */
256     if ((ri->type & ARM_CP_CONST) ||
257         ri->fieldoffset ||
258         ((ri->raw_writefn || ri->writefn) && (ri->raw_readfn || ri->readfn))) {
259         return false;
260     }
261     return true;
262 }
263
264 bool write_cpustate_to_list(ARMCPU *cpu)
265 {
266     /* Write the coprocessor state from cpu->env to the (index,value) list. */
267     int i;
268     bool ok = true;
269
270     for (i = 0; i < cpu->cpreg_array_len; i++) {
271         uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
272         const ARMCPRegInfo *ri;
273
274         ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
275         if (!ri) {
276             ok = false;
277             continue;
278         }
279         if (ri->type & ARM_CP_NO_RAW) {
280             continue;
281         }
282         cpu->cpreg_values[i] = read_raw_cp_reg(&cpu->env, ri);
283     }
284     return ok;
285 }
286
287 bool write_list_to_cpustate(ARMCPU *cpu)
288 {
289     int i;
290     bool ok = true;
291
292     for (i = 0; i < cpu->cpreg_array_len; i++) {
293         uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
294         uint64_t v = cpu->cpreg_values[i];
295         const ARMCPRegInfo *ri;
296
297         ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
298         if (!ri) {
299             ok = false;
300             continue;
301         }
302         if (ri->type & ARM_CP_NO_RAW) {
303             continue;
304         }
305         /* Write value and confirm it reads back as written
306          * (to catch read-only registers and partially read-only
307          * registers where the incoming migration value doesn't match)
308          */
309         write_raw_cp_reg(&cpu->env, ri, v);
310         if (read_raw_cp_reg(&cpu->env, ri) != v) {
311             ok = false;
312         }
313     }
314     return ok;
315 }
316
317 static void add_cpreg_to_list(gpointer key, gpointer opaque)
318 {
319     ARMCPU *cpu = opaque;
320     uint64_t regidx;
321     const ARMCPRegInfo *ri;
322
323     regidx = *(uint32_t *)key;
324     ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
325
326     if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
327         cpu->cpreg_indexes[cpu->cpreg_array_len] = cpreg_to_kvm_id(regidx);
328         /* The value array need not be initialized at this point */
329         cpu->cpreg_array_len++;
330     }
331 }
332
333 static void count_cpreg(gpointer key, gpointer opaque)
334 {
335     ARMCPU *cpu = opaque;
336     uint64_t regidx;
337     const ARMCPRegInfo *ri;
338
339     regidx = *(uint32_t *)key;
340     ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
341
342     if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
343         cpu->cpreg_array_len++;
344     }
345 }
346
347 static gint cpreg_key_compare(gconstpointer a, gconstpointer b)
348 {
349     uint64_t aidx = cpreg_to_kvm_id(*(uint32_t *)a);
350     uint64_t bidx = cpreg_to_kvm_id(*(uint32_t *)b);
351
352     if (aidx > bidx) {
353         return 1;
354     }
355     if (aidx < bidx) {
356         return -1;
357     }
358     return 0;
359 }
360
361 void init_cpreg_list(ARMCPU *cpu)
362 {
363     /* Initialise the cpreg_tuples[] array based on the cp_regs hash.
364      * Note that we require cpreg_tuples[] to be sorted by key ID.
365      */
366     GList *keys;
367     int arraylen;
368
369     keys = g_hash_table_get_keys(cpu->cp_regs);
370     keys = g_list_sort(keys, cpreg_key_compare);
371
372     cpu->cpreg_array_len = 0;
373
374     g_list_foreach(keys, count_cpreg, cpu);
375
376     arraylen = cpu->cpreg_array_len;
377     cpu->cpreg_indexes = g_new(uint64_t, arraylen);
378     cpu->cpreg_values = g_new(uint64_t, arraylen);
379     cpu->cpreg_vmstate_indexes = g_new(uint64_t, arraylen);
380     cpu->cpreg_vmstate_values = g_new(uint64_t, arraylen);
381     cpu->cpreg_vmstate_array_len = cpu->cpreg_array_len;
382     cpu->cpreg_array_len = 0;
383
384     g_list_foreach(keys, add_cpreg_to_list, cpu);
385
386     assert(cpu->cpreg_array_len == arraylen);
387
388     g_list_free(keys);
389 }
390
391 /*
392  * Some registers are not accessible if EL3.NS=0 and EL3 is using AArch32 but
393  * they are accessible when EL3 is using AArch64 regardless of EL3.NS.
394  *
395  * access_el3_aa32ns: Used to check AArch32 register views.
396  * access_el3_aa32ns_aa64any: Used to check both AArch32/64 register views.
397  */
398 static CPAccessResult access_el3_aa32ns(CPUARMState *env,
399                                         const ARMCPRegInfo *ri,
400                                         bool isread)
401 {
402     bool secure = arm_is_secure_below_el3(env);
403
404     assert(!arm_el_is_aa64(env, 3));
405     if (secure) {
406         return CP_ACCESS_TRAP_UNCATEGORIZED;
407     }
408     return CP_ACCESS_OK;
409 }
410
411 static CPAccessResult access_el3_aa32ns_aa64any(CPUARMState *env,
412                                                 const ARMCPRegInfo *ri,
413                                                 bool isread)
414 {
415     if (!arm_el_is_aa64(env, 3)) {
416         return access_el3_aa32ns(env, ri, isread);
417     }
418     return CP_ACCESS_OK;
419 }
420
421 /* Some secure-only AArch32 registers trap to EL3 if used from
422  * Secure EL1 (but are just ordinary UNDEF in other non-EL3 contexts).
423  * Note that an access from Secure EL1 can only happen if EL3 is AArch64.
424  * We assume that the .access field is set to PL1_RW.
425  */
426 static CPAccessResult access_trap_aa32s_el1(CPUARMState *env,
427                                             const ARMCPRegInfo *ri,
428                                             bool isread)
429 {
430     if (arm_current_el(env) == 3) {
431         return CP_ACCESS_OK;
432     }
433     if (arm_is_secure_below_el3(env)) {
434         return CP_ACCESS_TRAP_EL3;
435     }
436     /* This will be EL1 NS and EL2 NS, which just UNDEF */
437     return CP_ACCESS_TRAP_UNCATEGORIZED;
438 }
439
440 /* Check for traps to "powerdown debug" registers, which are controlled
441  * by MDCR.TDOSA
442  */
443 static CPAccessResult access_tdosa(CPUARMState *env, const ARMCPRegInfo *ri,
444                                    bool isread)
445 {
446     int el = arm_current_el(env);
447     bool mdcr_el2_tdosa = (env->cp15.mdcr_el2 & MDCR_TDOSA) ||
448         (env->cp15.mdcr_el2 & MDCR_TDE) ||
449         (env->cp15.hcr_el2 & HCR_TGE);
450
451     if (el < 2 && mdcr_el2_tdosa && !arm_is_secure_below_el3(env)) {
452         return CP_ACCESS_TRAP_EL2;
453     }
454     if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDOSA)) {
455         return CP_ACCESS_TRAP_EL3;
456     }
457     return CP_ACCESS_OK;
458 }
459
460 /* Check for traps to "debug ROM" registers, which are controlled
461  * by MDCR_EL2.TDRA for EL2 but by the more general MDCR_EL3.TDA for EL3.
462  */
463 static CPAccessResult access_tdra(CPUARMState *env, const ARMCPRegInfo *ri,
464                                   bool isread)
465 {
466     int el = arm_current_el(env);
467     bool mdcr_el2_tdra = (env->cp15.mdcr_el2 & MDCR_TDRA) ||
468         (env->cp15.mdcr_el2 & MDCR_TDE) ||
469         (env->cp15.hcr_el2 & HCR_TGE);
470
471     if (el < 2 && mdcr_el2_tdra && !arm_is_secure_below_el3(env)) {
472         return CP_ACCESS_TRAP_EL2;
473     }
474     if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDA)) {
475         return CP_ACCESS_TRAP_EL3;
476     }
477     return CP_ACCESS_OK;
478 }
479
480 /* Check for traps to general debug registers, which are controlled
481  * by MDCR_EL2.TDA for EL2 and MDCR_EL3.TDA for EL3.
482  */
483 static CPAccessResult access_tda(CPUARMState *env, const ARMCPRegInfo *ri,
484                                   bool isread)
485 {
486     int el = arm_current_el(env);
487     bool mdcr_el2_tda = (env->cp15.mdcr_el2 & MDCR_TDA) ||
488         (env->cp15.mdcr_el2 & MDCR_TDE) ||
489         (env->cp15.hcr_el2 & HCR_TGE);
490
491     if (el < 2 && mdcr_el2_tda && !arm_is_secure_below_el3(env)) {
492         return CP_ACCESS_TRAP_EL2;
493     }
494     if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TDA)) {
495         return CP_ACCESS_TRAP_EL3;
496     }
497     return CP_ACCESS_OK;
498 }
499
500 /* Check for traps to performance monitor registers, which are controlled
501  * by MDCR_EL2.TPM for EL2 and MDCR_EL3.TPM for EL3.
502  */
503 static CPAccessResult access_tpm(CPUARMState *env, const ARMCPRegInfo *ri,
504                                  bool isread)
505 {
506     int el = arm_current_el(env);
507
508     if (el < 2 && (env->cp15.mdcr_el2 & MDCR_TPM)
509         && !arm_is_secure_below_el3(env)) {
510         return CP_ACCESS_TRAP_EL2;
511     }
512     if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TPM)) {
513         return CP_ACCESS_TRAP_EL3;
514     }
515     return CP_ACCESS_OK;
516 }
517
518 static void dacr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
519 {
520     ARMCPU *cpu = arm_env_get_cpu(env);
521
522     raw_write(env, ri, value);
523     tlb_flush(CPU(cpu)); /* Flush TLB as domain not tracked in TLB */
524 }
525
526 static void fcse_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
527 {
528     ARMCPU *cpu = arm_env_get_cpu(env);
529
530     if (raw_read(env, ri) != value) {
531         /* Unlike real hardware the qemu TLB uses virtual addresses,
532          * not modified virtual addresses, so this causes a TLB flush.
533          */
534         tlb_flush(CPU(cpu));
535         raw_write(env, ri, value);
536     }
537 }
538
539 static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
540                              uint64_t value)
541 {
542     ARMCPU *cpu = arm_env_get_cpu(env);
543
544     if (raw_read(env, ri) != value && !arm_feature(env, ARM_FEATURE_PMSA)
545         && !extended_addresses_enabled(env)) {
546         /* For VMSA (when not using the LPAE long descriptor page table
547          * format) this register includes the ASID, so do a TLB flush.
548          * For PMSA it is purely a process ID and no action is needed.
549          */
550         tlb_flush(CPU(cpu));
551     }
552     raw_write(env, ri, value);
553 }
554
555 static void tlbiall_write(CPUARMState *env, const ARMCPRegInfo *ri,
556                           uint64_t value)
557 {
558     /* Invalidate all (TLBIALL) */
559     ARMCPU *cpu = arm_env_get_cpu(env);
560
561     tlb_flush(CPU(cpu));
562 }
563
564 static void tlbimva_write(CPUARMState *env, const ARMCPRegInfo *ri,
565                           uint64_t value)
566 {
567     /* Invalidate single TLB entry by MVA and ASID (TLBIMVA) */
568     ARMCPU *cpu = arm_env_get_cpu(env);
569
570     tlb_flush_page(CPU(cpu), value & TARGET_PAGE_MASK);
571 }
572
573 static void tlbiasid_write(CPUARMState *env, const ARMCPRegInfo *ri,
574                            uint64_t value)
575 {
576     /* Invalidate by ASID (TLBIASID) */
577     ARMCPU *cpu = arm_env_get_cpu(env);
578
579     tlb_flush(CPU(cpu));
580 }
581
582 static void tlbimvaa_write(CPUARMState *env, const ARMCPRegInfo *ri,
583                            uint64_t value)
584 {
585     /* Invalidate single entry by MVA, all ASIDs (TLBIMVAA) */
586     ARMCPU *cpu = arm_env_get_cpu(env);
587
588     tlb_flush_page(CPU(cpu), value & TARGET_PAGE_MASK);
589 }
590
591 /* IS variants of TLB operations must affect all cores */
592 static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
593                              uint64_t value)
594 {
595     CPUState *cs = ENV_GET_CPU(env);
596
597     tlb_flush_all_cpus_synced(cs);
598 }
599
600 static void tlbiasid_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
601                              uint64_t value)
602 {
603     CPUState *cs = ENV_GET_CPU(env);
604
605     tlb_flush_all_cpus_synced(cs);
606 }
607
608 static void tlbimva_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
609                              uint64_t value)
610 {
611     CPUState *cs = ENV_GET_CPU(env);
612
613     tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
614 }
615
616 static void tlbimvaa_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
617                              uint64_t value)
618 {
619     CPUState *cs = ENV_GET_CPU(env);
620
621     tlb_flush_page_all_cpus_synced(cs, value & TARGET_PAGE_MASK);
622 }
623
624 static void tlbiall_nsnh_write(CPUARMState *env, const ARMCPRegInfo *ri,
625                                uint64_t value)
626 {
627     CPUState *cs = ENV_GET_CPU(env);
628
629     tlb_flush_by_mmuidx(cs,
630                         ARMMMUIdxBit_S12NSE1 |
631                         ARMMMUIdxBit_S12NSE0 |
632                         ARMMMUIdxBit_S2NS);
633 }
634
635 static void tlbiall_nsnh_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
636                                   uint64_t value)
637 {
638     CPUState *cs = ENV_GET_CPU(env);
639
640     tlb_flush_by_mmuidx_all_cpus_synced(cs,
641                                         ARMMMUIdxBit_S12NSE1 |
642                                         ARMMMUIdxBit_S12NSE0 |
643                                         ARMMMUIdxBit_S2NS);
644 }
645
646 static void tlbiipas2_write(CPUARMState *env, const ARMCPRegInfo *ri,
647                             uint64_t value)
648 {
649     /* Invalidate by IPA. This has to invalidate any structures that
650      * contain only stage 2 translation information, but does not need
651      * to apply to structures that contain combined stage 1 and stage 2
652      * translation information.
653      * This must NOP if EL2 isn't implemented or SCR_EL3.NS is zero.
654      */
655     CPUState *cs = ENV_GET_CPU(env);
656     uint64_t pageaddr;
657
658     if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
659         return;
660     }
661
662     pageaddr = sextract64(value << 12, 0, 40);
663
664     tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S2NS);
665 }
666
667 static void tlbiipas2_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
668                                uint64_t value)
669 {
670     CPUState *cs = ENV_GET_CPU(env);
671     uint64_t pageaddr;
672
673     if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
674         return;
675     }
676
677     pageaddr = sextract64(value << 12, 0, 40);
678
679     tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
680                                              ARMMMUIdxBit_S2NS);
681 }
682
683 static void tlbiall_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
684                               uint64_t value)
685 {
686     CPUState *cs = ENV_GET_CPU(env);
687
688     tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_S1E2);
689 }
690
691 static void tlbiall_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
692                                  uint64_t value)
693 {
694     CPUState *cs = ENV_GET_CPU(env);
695
696     tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E2);
697 }
698
699 static void tlbimva_hyp_write(CPUARMState *env, const ARMCPRegInfo *ri,
700                               uint64_t value)
701 {
702     CPUState *cs = ENV_GET_CPU(env);
703     uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
704
705     tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S1E2);
706 }
707
708 static void tlbimva_hyp_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
709                                  uint64_t value)
710 {
711     CPUState *cs = ENV_GET_CPU(env);
712     uint64_t pageaddr = value & ~MAKE_64BIT_MASK(0, 12);
713
714     tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
715                                              ARMMMUIdxBit_S1E2);
716 }
717
718 static const ARMCPRegInfo cp_reginfo[] = {
719     /* Define the secure and non-secure FCSE identifier CP registers
720      * separately because there is no secure bank in V8 (no _EL3).  This allows
721      * the secure register to be properly reset and migrated. There is also no
722      * v8 EL1 version of the register so the non-secure instance stands alone.
723      */
724     { .name = "FCSEIDR",
725       .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
726       .access = PL1_RW, .secure = ARM_CP_SECSTATE_NS,
727       .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_ns),
728       .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
729     { .name = "FCSEIDR_S",
730       .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
731       .access = PL1_RW, .secure = ARM_CP_SECSTATE_S,
732       .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_s),
733       .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
734     /* Define the secure and non-secure context identifier CP registers
735      * separately because there is no secure bank in V8 (no _EL3).  This allows
736      * the secure register to be properly reset and migrated.  In the
737      * non-secure case, the 32-bit register will have reset and migration
738      * disabled during registration as it is handled by the 64-bit instance.
739      */
740     { .name = "CONTEXTIDR_EL1", .state = ARM_CP_STATE_BOTH,
741       .opc0 = 3, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
742       .access = PL1_RW, .secure = ARM_CP_SECSTATE_NS,
743       .fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[1]),
744       .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
745     { .name = "CONTEXTIDR_S", .state = ARM_CP_STATE_AA32,
746       .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
747       .access = PL1_RW, .secure = ARM_CP_SECSTATE_S,
748       .fieldoffset = offsetof(CPUARMState, cp15.contextidr_s),
749       .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
750     REGINFO_SENTINEL
751 };
752
753 static const ARMCPRegInfo not_v8_cp_reginfo[] = {
754     /* NB: Some of these registers exist in v8 but with more precise
755      * definitions that don't use CP_ANY wildcards (mostly in v8_cp_reginfo[]).
756      */
757     /* MMU Domain access control / MPU write buffer control */
758     { .name = "DACR",
759       .cp = 15, .opc1 = CP_ANY, .crn = 3, .crm = CP_ANY, .opc2 = CP_ANY,
760       .access = PL1_RW, .resetvalue = 0,
761       .writefn = dacr_write, .raw_writefn = raw_write,
762       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
763                              offsetoflow32(CPUARMState, cp15.dacr_ns) } },
764     /* ARMv7 allocates a range of implementation defined TLB LOCKDOWN regs.
765      * For v6 and v5, these mappings are overly broad.
766      */
767     { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 0,
768       .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
769     { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 1,
770       .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
771     { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 4,
772       .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
773     { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 8,
774       .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
775     /* Cache maintenance ops; some of this space may be overridden later. */
776     { .name = "CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
777       .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
778       .type = ARM_CP_NOP | ARM_CP_OVERRIDE },
779     REGINFO_SENTINEL
780 };
781
782 static const ARMCPRegInfo not_v6_cp_reginfo[] = {
783     /* Not all pre-v6 cores implemented this WFI, so this is slightly
784      * over-broad.
785      */
786     { .name = "WFI_v5", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = 2,
787       .access = PL1_W, .type = ARM_CP_WFI },
788     REGINFO_SENTINEL
789 };
790
791 static const ARMCPRegInfo not_v7_cp_reginfo[] = {
792     /* Standard v6 WFI (also used in some pre-v6 cores); not in v7 (which
793      * is UNPREDICTABLE; we choose to NOP as most implementations do).
794      */
795     { .name = "WFI_v6", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
796       .access = PL1_W, .type = ARM_CP_WFI },
797     /* L1 cache lockdown. Not architectural in v6 and earlier but in practice
798      * implemented in 926, 946, 1026, 1136, 1176 and 11MPCore. StrongARM and
799      * OMAPCP will override this space.
800      */
801     { .name = "DLOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 0,
802       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_data),
803       .resetvalue = 0 },
804     { .name = "ILOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 1,
805       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_insn),
806       .resetvalue = 0 },
807     /* v6 doesn't have the cache ID registers but Linux reads them anyway */
808     { .name = "DUMMY", .cp = 15, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = CP_ANY,
809       .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
810       .resetvalue = 0 },
811     /* We don't implement pre-v7 debug but most CPUs had at least a DBGDIDR;
812      * implementing it as RAZ means the "debug architecture version" bits
813      * will read as a reserved value, which should cause Linux to not try
814      * to use the debug hardware.
815      */
816     { .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 0,
817       .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = 0 },
818     /* MMU TLB control. Note that the wildcarding means we cover not just
819      * the unified TLB ops but also the dside/iside/inner-shareable variants.
820      */
821     { .name = "TLBIALL", .cp = 15, .crn = 8, .crm = CP_ANY,
822       .opc1 = CP_ANY, .opc2 = 0, .access = PL1_W, .writefn = tlbiall_write,
823       .type = ARM_CP_NO_RAW },
824     { .name = "TLBIMVA", .cp = 15, .crn = 8, .crm = CP_ANY,
825       .opc1 = CP_ANY, .opc2 = 1, .access = PL1_W, .writefn = tlbimva_write,
826       .type = ARM_CP_NO_RAW },
827     { .name = "TLBIASID", .cp = 15, .crn = 8, .crm = CP_ANY,
828       .opc1 = CP_ANY, .opc2 = 2, .access = PL1_W, .writefn = tlbiasid_write,
829       .type = ARM_CP_NO_RAW },
830     { .name = "TLBIMVAA", .cp = 15, .crn = 8, .crm = CP_ANY,
831       .opc1 = CP_ANY, .opc2 = 3, .access = PL1_W, .writefn = tlbimvaa_write,
832       .type = ARM_CP_NO_RAW },
833     { .name = "PRRR", .cp = 15, .crn = 10, .crm = 2,
834       .opc1 = 0, .opc2 = 0, .access = PL1_RW, .type = ARM_CP_NOP },
835     { .name = "NMRR", .cp = 15, .crn = 10, .crm = 2,
836       .opc1 = 0, .opc2 = 1, .access = PL1_RW, .type = ARM_CP_NOP },
837     REGINFO_SENTINEL
838 };
839
840 static void cpacr_write(CPUARMState *env, const ARMCPRegInfo *ri,
841                         uint64_t value)
842 {
843     uint32_t mask = 0;
844
845     /* In ARMv8 most bits of CPACR_EL1 are RES0. */
846     if (!arm_feature(env, ARM_FEATURE_V8)) {
847         /* ARMv7 defines bits for unimplemented coprocessors as RAZ/WI.
848          * ASEDIS [31] and D32DIS [30] are both UNK/SBZP without VFP.
849          * TRCDIS [28] is RAZ/WI since we do not implement a trace macrocell.
850          */
851         if (arm_feature(env, ARM_FEATURE_VFP)) {
852             /* VFP coprocessor: cp10 & cp11 [23:20] */
853             mask |= (1 << 31) | (1 << 30) | (0xf << 20);
854
855             if (!arm_feature(env, ARM_FEATURE_NEON)) {
856                 /* ASEDIS [31] bit is RAO/WI */
857                 value |= (1 << 31);
858             }
859
860             /* VFPv3 and upwards with NEON implement 32 double precision
861              * registers (D0-D31).
862              */
863             if (!arm_feature(env, ARM_FEATURE_NEON) ||
864                     !arm_feature(env, ARM_FEATURE_VFP3)) {
865                 /* D32DIS [30] is RAO/WI if D16-31 are not implemented. */
866                 value |= (1 << 30);
867             }
868         }
869         value &= mask;
870     }
871     env->cp15.cpacr_el1 = value;
872 }
873
874 static void cpacr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
875 {
876     /* Call cpacr_write() so that we reset with the correct RAO bits set
877      * for our CPU features.
878      */
879     cpacr_write(env, ri, 0);
880 }
881
882 static CPAccessResult cpacr_access(CPUARMState *env, const ARMCPRegInfo *ri,
883                                    bool isread)
884 {
885     if (arm_feature(env, ARM_FEATURE_V8)) {
886         /* Check if CPACR accesses are to be trapped to EL2 */
887         if (arm_current_el(env) == 1 &&
888             (env->cp15.cptr_el[2] & CPTR_TCPAC) && !arm_is_secure(env)) {
889             return CP_ACCESS_TRAP_EL2;
890         /* Check if CPACR accesses are to be trapped to EL3 */
891         } else if (arm_current_el(env) < 3 &&
892                    (env->cp15.cptr_el[3] & CPTR_TCPAC)) {
893             return CP_ACCESS_TRAP_EL3;
894         }
895     }
896
897     return CP_ACCESS_OK;
898 }
899
900 static CPAccessResult cptr_access(CPUARMState *env, const ARMCPRegInfo *ri,
901                                   bool isread)
902 {
903     /* Check if CPTR accesses are set to trap to EL3 */
904     if (arm_current_el(env) == 2 && (env->cp15.cptr_el[3] & CPTR_TCPAC)) {
905         return CP_ACCESS_TRAP_EL3;
906     }
907
908     return CP_ACCESS_OK;
909 }
910
911 static const ARMCPRegInfo v6_cp_reginfo[] = {
912     /* prefetch by MVA in v6, NOP in v7 */
913     { .name = "MVA_prefetch",
914       .cp = 15, .crn = 7, .crm = 13, .opc1 = 0, .opc2 = 1,
915       .access = PL1_W, .type = ARM_CP_NOP },
916     /* We need to break the TB after ISB to execute self-modifying code
917      * correctly and also to take any pending interrupts immediately.
918      * So use arm_cp_write_ignore() function instead of ARM_CP_NOP flag.
919      */
920     { .name = "ISB", .cp = 15, .crn = 7, .crm = 5, .opc1 = 0, .opc2 = 4,
921       .access = PL0_W, .type = ARM_CP_NO_RAW, .writefn = arm_cp_write_ignore },
922     { .name = "DSB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 4,
923       .access = PL0_W, .type = ARM_CP_NOP },
924     { .name = "DMB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 5,
925       .access = PL0_W, .type = ARM_CP_NOP },
926     { .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 2,
927       .access = PL1_RW,
928       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ifar_s),
929                              offsetof(CPUARMState, cp15.ifar_ns) },
930       .resetvalue = 0, },
931     /* Watchpoint Fault Address Register : should actually only be present
932      * for 1136, 1176, 11MPCore.
933      */
934     { .name = "WFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1,
935       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0, },
936     { .name = "CPACR", .state = ARM_CP_STATE_BOTH, .opc0 = 3,
937       .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 2, .accessfn = cpacr_access,
938       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.cpacr_el1),
939       .resetfn = cpacr_reset, .writefn = cpacr_write },
940     REGINFO_SENTINEL
941 };
942
943 /* Definitions for the PMU registers */
944 #define PMCRN_MASK  0xf800
945 #define PMCRN_SHIFT 11
946 #define PMCRD   0x8
947 #define PMCRC   0x4
948 #define PMCRE   0x1
949
950 static inline uint32_t pmu_num_counters(CPUARMState *env)
951 {
952   return (env->cp15.c9_pmcr & PMCRN_MASK) >> PMCRN_SHIFT;
953 }
954
955 /* Bits allowed to be set/cleared for PMCNTEN* and PMINTEN* */
956 static inline uint64_t pmu_counter_mask(CPUARMState *env)
957 {
958   return (1 << 31) | ((1 << pmu_num_counters(env)) - 1);
959 }
960
961 static CPAccessResult pmreg_access(CPUARMState *env, const ARMCPRegInfo *ri,
962                                    bool isread)
963 {
964     /* Performance monitor registers user accessibility is controlled
965      * by PMUSERENR. MDCR_EL2.TPM and MDCR_EL3.TPM allow configurable
966      * trapping to EL2 or EL3 for other accesses.
967      */
968     int el = arm_current_el(env);
969
970     if (el == 0 && !(env->cp15.c9_pmuserenr & 1)) {
971         return CP_ACCESS_TRAP;
972     }
973     if (el < 2 && (env->cp15.mdcr_el2 & MDCR_TPM)
974         && !arm_is_secure_below_el3(env)) {
975         return CP_ACCESS_TRAP_EL2;
976     }
977     if (el < 3 && (env->cp15.mdcr_el3 & MDCR_TPM)) {
978         return CP_ACCESS_TRAP_EL3;
979     }
980
981     return CP_ACCESS_OK;
982 }
983
984 static CPAccessResult pmreg_access_xevcntr(CPUARMState *env,
985                                            const ARMCPRegInfo *ri,
986                                            bool isread)
987 {
988     /* ER: event counter read trap control */
989     if (arm_feature(env, ARM_FEATURE_V8)
990         && arm_current_el(env) == 0
991         && (env->cp15.c9_pmuserenr & (1 << 3)) != 0
992         && isread) {
993         return CP_ACCESS_OK;
994     }
995
996     return pmreg_access(env, ri, isread);
997 }
998
999 static CPAccessResult pmreg_access_swinc(CPUARMState *env,
1000                                          const ARMCPRegInfo *ri,
1001                                          bool isread)
1002 {
1003     /* SW: software increment write trap control */
1004     if (arm_feature(env, ARM_FEATURE_V8)
1005         && arm_current_el(env) == 0
1006         && (env->cp15.c9_pmuserenr & (1 << 1)) != 0
1007         && !isread) {
1008         return CP_ACCESS_OK;
1009     }
1010
1011     return pmreg_access(env, ri, isread);
1012 }
1013
1014 #ifndef CONFIG_USER_ONLY
1015
1016 static CPAccessResult pmreg_access_selr(CPUARMState *env,
1017                                         const ARMCPRegInfo *ri,
1018                                         bool isread)
1019 {
1020     /* ER: event counter read trap control */
1021     if (arm_feature(env, ARM_FEATURE_V8)
1022         && arm_current_el(env) == 0
1023         && (env->cp15.c9_pmuserenr & (1 << 3)) != 0) {
1024         return CP_ACCESS_OK;
1025     }
1026
1027     return pmreg_access(env, ri, isread);
1028 }
1029
1030 static CPAccessResult pmreg_access_ccntr(CPUARMState *env,
1031                                          const ARMCPRegInfo *ri,
1032                                          bool isread)
1033 {
1034     /* CR: cycle counter read trap control */
1035     if (arm_feature(env, ARM_FEATURE_V8)
1036         && arm_current_el(env) == 0
1037         && (env->cp15.c9_pmuserenr & (1 << 2)) != 0
1038         && isread) {
1039         return CP_ACCESS_OK;
1040     }
1041
1042     return pmreg_access(env, ri, isread);
1043 }
1044
1045 static inline bool arm_ccnt_enabled(CPUARMState *env)
1046 {
1047     /* This does not support checking PMCCFILTR_EL0 register */
1048
1049     if (!(env->cp15.c9_pmcr & PMCRE) || !(env->cp15.c9_pmcnten & (1 << 31))) {
1050         return false;
1051     }
1052
1053     return true;
1054 }
1055
1056 void pmccntr_sync(CPUARMState *env)
1057 {
1058     uint64_t temp_ticks;
1059
1060     temp_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
1061                           ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
1062
1063     if (env->cp15.c9_pmcr & PMCRD) {
1064         /* Increment once every 64 processor clock cycles */
1065         temp_ticks /= 64;
1066     }
1067
1068     if (arm_ccnt_enabled(env)) {
1069         env->cp15.c15_ccnt = temp_ticks - env->cp15.c15_ccnt;
1070     }
1071 }
1072
1073 static void pmcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1074                        uint64_t value)
1075 {
1076     pmccntr_sync(env);
1077
1078     if (value & PMCRC) {
1079         /* The counter has been reset */
1080         env->cp15.c15_ccnt = 0;
1081     }
1082
1083     /* only the DP, X, D and E bits are writable */
1084     env->cp15.c9_pmcr &= ~0x39;
1085     env->cp15.c9_pmcr |= (value & 0x39);
1086
1087     pmccntr_sync(env);
1088 }
1089
1090 static uint64_t pmccntr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1091 {
1092     uint64_t total_ticks;
1093
1094     if (!arm_ccnt_enabled(env)) {
1095         /* Counter is disabled, do not change value */
1096         return env->cp15.c15_ccnt;
1097     }
1098
1099     total_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
1100                            ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
1101
1102     if (env->cp15.c9_pmcr & PMCRD) {
1103         /* Increment once every 64 processor clock cycles */
1104         total_ticks /= 64;
1105     }
1106     return total_ticks - env->cp15.c15_ccnt;
1107 }
1108
1109 static void pmselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1110                          uint64_t value)
1111 {
1112     /* The value of PMSELR.SEL affects the behavior of PMXEVTYPER and
1113      * PMXEVCNTR. We allow [0..31] to be written to PMSELR here; in the
1114      * meanwhile, we check PMSELR.SEL when PMXEVTYPER and PMXEVCNTR are
1115      * accessed.
1116      */
1117     env->cp15.c9_pmselr = value & 0x1f;
1118 }
1119
1120 static void pmccntr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1121                         uint64_t value)
1122 {
1123     uint64_t total_ticks;
1124
1125     if (!arm_ccnt_enabled(env)) {
1126         /* Counter is disabled, set the absolute value */
1127         env->cp15.c15_ccnt = value;
1128         return;
1129     }
1130
1131     total_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
1132                            ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
1133
1134     if (env->cp15.c9_pmcr & PMCRD) {
1135         /* Increment once every 64 processor clock cycles */
1136         total_ticks /= 64;
1137     }
1138     env->cp15.c15_ccnt = total_ticks - value;
1139 }
1140
1141 static void pmccntr_write32(CPUARMState *env, const ARMCPRegInfo *ri,
1142                             uint64_t value)
1143 {
1144     uint64_t cur_val = pmccntr_read(env, NULL);
1145
1146     pmccntr_write(env, ri, deposit64(cur_val, 0, 32, value));
1147 }
1148
1149 #else /* CONFIG_USER_ONLY */
1150
1151 void pmccntr_sync(CPUARMState *env)
1152 {
1153 }
1154
1155 #endif
1156
1157 static void pmccfiltr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1158                             uint64_t value)
1159 {
1160     pmccntr_sync(env);
1161     env->cp15.pmccfiltr_el0 = value & 0xfc000000;
1162     pmccntr_sync(env);
1163 }
1164
1165 static void pmcntenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
1166                             uint64_t value)
1167 {
1168     value &= pmu_counter_mask(env);
1169     env->cp15.c9_pmcnten |= value;
1170 }
1171
1172 static void pmcntenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1173                              uint64_t value)
1174 {
1175     value &= pmu_counter_mask(env);
1176     env->cp15.c9_pmcnten &= ~value;
1177 }
1178
1179 static void pmovsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1180                          uint64_t value)
1181 {
1182     env->cp15.c9_pmovsr &= ~value;
1183 }
1184
1185 static void pmxevtyper_write(CPUARMState *env, const ARMCPRegInfo *ri,
1186                              uint64_t value)
1187 {
1188     /* Attempts to access PMXEVTYPER are CONSTRAINED UNPREDICTABLE when
1189      * PMSELR value is equal to or greater than the number of implemented
1190      * counters, but not equal to 0x1f. We opt to behave as a RAZ/WI.
1191      */
1192     if (env->cp15.c9_pmselr == 0x1f) {
1193         pmccfiltr_write(env, ri, value);
1194     }
1195 }
1196
1197 static uint64_t pmxevtyper_read(CPUARMState *env, const ARMCPRegInfo *ri)
1198 {
1199     /* We opt to behave as a RAZ/WI when attempts to access PMXEVTYPER
1200      * are CONSTRAINED UNPREDICTABLE. See comments in pmxevtyper_write().
1201      */
1202     if (env->cp15.c9_pmselr == 0x1f) {
1203         return env->cp15.pmccfiltr_el0;
1204     } else {
1205         return 0;
1206     }
1207 }
1208
1209 static void pmuserenr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1210                             uint64_t value)
1211 {
1212     if (arm_feature(env, ARM_FEATURE_V8)) {
1213         env->cp15.c9_pmuserenr = value & 0xf;
1214     } else {
1215         env->cp15.c9_pmuserenr = value & 1;
1216     }
1217 }
1218
1219 static void pmintenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
1220                              uint64_t value)
1221 {
1222     /* We have no event counters so only the C bit can be changed */
1223     value &= pmu_counter_mask(env);
1224     env->cp15.c9_pminten |= value;
1225 }
1226
1227 static void pmintenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1228                              uint64_t value)
1229 {
1230     value &= pmu_counter_mask(env);
1231     env->cp15.c9_pminten &= ~value;
1232 }
1233
1234 static void vbar_write(CPUARMState *env, const ARMCPRegInfo *ri,
1235                        uint64_t value)
1236 {
1237     /* Note that even though the AArch64 view of this register has bits
1238      * [10:0] all RES0 we can only mask the bottom 5, to comply with the
1239      * architectural requirements for bits which are RES0 only in some
1240      * contexts. (ARMv8 would permit us to do no masking at all, but ARMv7
1241      * requires the bottom five bits to be RAZ/WI because they're UNK/SBZP.)
1242      */
1243     raw_write(env, ri, value & ~0x1FULL);
1244 }
1245
1246 static void scr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
1247 {
1248     /* We only mask off bits that are RES0 both for AArch64 and AArch32.
1249      * For bits that vary between AArch32/64, code needs to check the
1250      * current execution mode before directly using the feature bit.
1251      */
1252     uint32_t valid_mask = SCR_AARCH64_MASK | SCR_AARCH32_MASK;
1253
1254     if (!arm_feature(env, ARM_FEATURE_EL2)) {
1255         valid_mask &= ~SCR_HCE;
1256
1257         /* On ARMv7, SMD (or SCD as it is called in v7) is only
1258          * supported if EL2 exists. The bit is UNK/SBZP when
1259          * EL2 is unavailable. In QEMU ARMv7, we force it to always zero
1260          * when EL2 is unavailable.
1261          * On ARMv8, this bit is always available.
1262          */
1263         if (arm_feature(env, ARM_FEATURE_V7) &&
1264             !arm_feature(env, ARM_FEATURE_V8)) {
1265             valid_mask &= ~SCR_SMD;
1266         }
1267     }
1268
1269     /* Clear all-context RES0 bits.  */
1270     value &= valid_mask;
1271     raw_write(env, ri, value);
1272 }
1273
1274 static uint64_t ccsidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1275 {
1276     ARMCPU *cpu = arm_env_get_cpu(env);
1277
1278     /* Acquire the CSSELR index from the bank corresponding to the CCSIDR
1279      * bank
1280      */
1281     uint32_t index = A32_BANKED_REG_GET(env, csselr,
1282                                         ri->secure & ARM_CP_SECSTATE_S);
1283
1284     return cpu->ccsidr[index];
1285 }
1286
1287 static void csselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1288                          uint64_t value)
1289 {
1290     raw_write(env, ri, value & 0xf);
1291 }
1292
1293 static uint64_t isr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1294 {
1295     CPUState *cs = ENV_GET_CPU(env);
1296     uint64_t ret = 0;
1297
1298     if (cs->interrupt_request & CPU_INTERRUPT_HARD) {
1299         ret |= CPSR_I;
1300     }
1301     if (cs->interrupt_request & CPU_INTERRUPT_FIQ) {
1302         ret |= CPSR_F;
1303     }
1304     /* External aborts are not possible in QEMU so A bit is always clear */
1305     return ret;
1306 }
1307
1308 static const ARMCPRegInfo v7_cp_reginfo[] = {
1309     /* the old v6 WFI, UNPREDICTABLE in v7 but we choose to NOP */
1310     { .name = "NOP", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
1311       .access = PL1_W, .type = ARM_CP_NOP },
1312     /* Performance monitors are implementation defined in v7,
1313      * but with an ARM recommended set of registers, which we
1314      * follow (although we don't actually implement any counters)
1315      *
1316      * Performance registers fall into three categories:
1317      *  (a) always UNDEF in PL0, RW in PL1 (PMINTENSET, PMINTENCLR)
1318      *  (b) RO in PL0 (ie UNDEF on write), RW in PL1 (PMUSERENR)
1319      *  (c) UNDEF in PL0 if PMUSERENR.EN==0, otherwise accessible (all others)
1320      * For the cases controlled by PMUSERENR we must set .access to PL0_RW
1321      * or PL0_RO as appropriate and then check PMUSERENR in the helper fn.
1322      */
1323     { .name = "PMCNTENSET", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 1,
1324       .access = PL0_RW, .type = ARM_CP_ALIAS,
1325       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
1326       .writefn = pmcntenset_write,
1327       .accessfn = pmreg_access,
1328       .raw_writefn = raw_write },
1329     { .name = "PMCNTENSET_EL0", .state = ARM_CP_STATE_AA64,
1330       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 1,
1331       .access = PL0_RW, .accessfn = pmreg_access,
1332       .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten), .resetvalue = 0,
1333       .writefn = pmcntenset_write, .raw_writefn = raw_write },
1334     { .name = "PMCNTENCLR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 2,
1335       .access = PL0_RW,
1336       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
1337       .accessfn = pmreg_access,
1338       .writefn = pmcntenclr_write,
1339       .type = ARM_CP_ALIAS },
1340     { .name = "PMCNTENCLR_EL0", .state = ARM_CP_STATE_AA64,
1341       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 2,
1342       .access = PL0_RW, .accessfn = pmreg_access,
1343       .type = ARM_CP_ALIAS,
1344       .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten),
1345       .writefn = pmcntenclr_write },
1346     { .name = "PMOVSR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 3,
1347       .access = PL0_RW,
1348       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmovsr),
1349       .accessfn = pmreg_access,
1350       .writefn = pmovsr_write,
1351       .raw_writefn = raw_write },
1352     { .name = "PMOVSCLR_EL0", .state = ARM_CP_STATE_AA64,
1353       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 3,
1354       .access = PL0_RW, .accessfn = pmreg_access,
1355       .type = ARM_CP_ALIAS,
1356       .fieldoffset = offsetof(CPUARMState, cp15.c9_pmovsr),
1357       .writefn = pmovsr_write,
1358       .raw_writefn = raw_write },
1359     /* Unimplemented so WI. */
1360     { .name = "PMSWINC", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 4,
1361       .access = PL0_W, .accessfn = pmreg_access_swinc, .type = ARM_CP_NOP },
1362 #ifndef CONFIG_USER_ONLY
1363     { .name = "PMSELR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 5,
1364       .access = PL0_RW, .type = ARM_CP_ALIAS,
1365       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmselr),
1366       .accessfn = pmreg_access_selr, .writefn = pmselr_write,
1367       .raw_writefn = raw_write},
1368     { .name = "PMSELR_EL0", .state = ARM_CP_STATE_AA64,
1369       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 5,
1370       .access = PL0_RW, .accessfn = pmreg_access_selr,
1371       .fieldoffset = offsetof(CPUARMState, cp15.c9_pmselr),
1372       .writefn = pmselr_write, .raw_writefn = raw_write, },
1373     { .name = "PMCCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 0,
1374       .access = PL0_RW, .resetvalue = 0, .type = ARM_CP_ALIAS | ARM_CP_IO,
1375       .readfn = pmccntr_read, .writefn = pmccntr_write32,
1376       .accessfn = pmreg_access_ccntr },
1377     { .name = "PMCCNTR_EL0", .state = ARM_CP_STATE_AA64,
1378       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 0,
1379       .access = PL0_RW, .accessfn = pmreg_access_ccntr,
1380       .type = ARM_CP_IO,
1381       .readfn = pmccntr_read, .writefn = pmccntr_write, },
1382 #endif
1383     { .name = "PMCCFILTR_EL0", .state = ARM_CP_STATE_AA64,
1384       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 15, .opc2 = 7,
1385       .writefn = pmccfiltr_write,
1386       .access = PL0_RW, .accessfn = pmreg_access,
1387       .type = ARM_CP_IO,
1388       .fieldoffset = offsetof(CPUARMState, cp15.pmccfiltr_el0),
1389       .resetvalue = 0, },
1390     { .name = "PMXEVTYPER", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 1,
1391       .access = PL0_RW, .type = ARM_CP_NO_RAW, .accessfn = pmreg_access,
1392       .writefn = pmxevtyper_write, .readfn = pmxevtyper_read },
1393     { .name = "PMXEVTYPER_EL0", .state = ARM_CP_STATE_AA64,
1394       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 1,
1395       .access = PL0_RW, .type = ARM_CP_NO_RAW, .accessfn = pmreg_access,
1396       .writefn = pmxevtyper_write, .readfn = pmxevtyper_read },
1397     /* Unimplemented, RAZ/WI. */
1398     { .name = "PMXEVCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 2,
1399       .access = PL0_RW, .type = ARM_CP_CONST, .resetvalue = 0,
1400       .accessfn = pmreg_access_xevcntr },
1401     { .name = "PMUSERENR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 0,
1402       .access = PL0_R | PL1_RW, .accessfn = access_tpm,
1403       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmuserenr),
1404       .resetvalue = 0,
1405       .writefn = pmuserenr_write, .raw_writefn = raw_write },
1406     { .name = "PMUSERENR_EL0", .state = ARM_CP_STATE_AA64,
1407       .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 14, .opc2 = 0,
1408       .access = PL0_R | PL1_RW, .accessfn = access_tpm, .type = ARM_CP_ALIAS,
1409       .fieldoffset = offsetof(CPUARMState, cp15.c9_pmuserenr),
1410       .resetvalue = 0,
1411       .writefn = pmuserenr_write, .raw_writefn = raw_write },
1412     { .name = "PMINTENSET", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 1,
1413       .access = PL1_RW, .accessfn = access_tpm,
1414       .type = ARM_CP_ALIAS | ARM_CP_IO,
1415       .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pminten),
1416       .resetvalue = 0,
1417       .writefn = pmintenset_write, .raw_writefn = raw_write },
1418     { .name = "PMINTENSET_EL1", .state = ARM_CP_STATE_AA64,
1419       .opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 1,
1420       .access = PL1_RW, .accessfn = access_tpm,
1421       .type = ARM_CP_IO,
1422       .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
1423       .writefn = pmintenset_write, .raw_writefn = raw_write,
1424       .resetvalue = 0x0 },
1425     { .name = "PMINTENCLR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 2,
1426       .access = PL1_RW, .accessfn = access_tpm, .type = ARM_CP_ALIAS,
1427       .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
1428       .writefn = pmintenclr_write, },
1429     { .name = "PMINTENCLR_EL1", .state = ARM_CP_STATE_AA64,
1430       .opc0 = 3, .opc1 = 0, .crn = 9, .crm = 14, .opc2 = 2,
1431       .access = PL1_RW, .accessfn = access_tpm, .type = ARM_CP_ALIAS,
1432       .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
1433       .writefn = pmintenclr_write },
1434     { .name = "CCSIDR", .state = ARM_CP_STATE_BOTH,
1435       .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 0,
1436       .access = PL1_R, .readfn = ccsidr_read, .type = ARM_CP_NO_RAW },
1437     { .name = "CSSELR", .state = ARM_CP_STATE_BOTH,
1438       .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 2, .opc2 = 0,
1439       .access = PL1_RW, .writefn = csselr_write, .resetvalue = 0,
1440       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.csselr_s),
1441                              offsetof(CPUARMState, cp15.csselr_ns) } },
1442     /* Auxiliary ID register: this actually has an IMPDEF value but for now
1443      * just RAZ for all cores:
1444      */
1445     { .name = "AIDR", .state = ARM_CP_STATE_BOTH,
1446       .opc0 = 3, .opc1 = 1, .crn = 0, .crm = 0, .opc2 = 7,
1447       .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
1448     /* Auxiliary fault status registers: these also are IMPDEF, and we
1449      * choose to RAZ/WI for all cores.
1450      */
1451     { .name = "AFSR0_EL1", .state = ARM_CP_STATE_BOTH,
1452       .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 0,
1453       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1454     { .name = "AFSR1_EL1", .state = ARM_CP_STATE_BOTH,
1455       .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 1,
1456       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1457     /* MAIR can just read-as-written because we don't implement caches
1458      * and so don't need to care about memory attributes.
1459      */
1460     { .name = "MAIR_EL1", .state = ARM_CP_STATE_AA64,
1461       .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0,
1462       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[1]),
1463       .resetvalue = 0 },
1464     { .name = "MAIR_EL3", .state = ARM_CP_STATE_AA64,
1465       .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 2, .opc2 = 0,
1466       .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[3]),
1467       .resetvalue = 0 },
1468     /* For non-long-descriptor page tables these are PRRR and NMRR;
1469      * regardless they still act as reads-as-written for QEMU.
1470      */
1471      /* MAIR0/1 are defined separately from their 64-bit counterpart which
1472       * allows them to assign the correct fieldoffset based on the endianness
1473       * handled in the field definitions.
1474       */
1475     { .name = "MAIR0", .state = ARM_CP_STATE_AA32,
1476       .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0, .access = PL1_RW,
1477       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair0_s),
1478                              offsetof(CPUARMState, cp15.mair0_ns) },
1479       .resetfn = arm_cp_reset_ignore },
1480     { .name = "MAIR1", .state = ARM_CP_STATE_AA32,
1481       .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 1, .access = PL1_RW,
1482       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair1_s),
1483                              offsetof(CPUARMState, cp15.mair1_ns) },
1484       .resetfn = arm_cp_reset_ignore },
1485     { .name = "ISR_EL1", .state = ARM_CP_STATE_BOTH,
1486       .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 1, .opc2 = 0,
1487       .type = ARM_CP_NO_RAW, .access = PL1_R, .readfn = isr_read },
1488     /* 32 bit ITLB invalidates */
1489     { .name = "ITLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 0,
1490       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
1491     { .name = "ITLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 1,
1492       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
1493     { .name = "ITLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 2,
1494       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
1495     /* 32 bit DTLB invalidates */
1496     { .name = "DTLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 0,
1497       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
1498     { .name = "DTLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 1,
1499       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
1500     { .name = "DTLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 2,
1501       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
1502     /* 32 bit TLB invalidates */
1503     { .name = "TLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
1504       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
1505     { .name = "TLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
1506       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
1507     { .name = "TLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
1508       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
1509     { .name = "TLBIMVAA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
1510       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimvaa_write },
1511     REGINFO_SENTINEL
1512 };
1513
1514 static const ARMCPRegInfo v7mp_cp_reginfo[] = {
1515     /* 32 bit TLB invalidates, Inner Shareable */
1516     { .name = "TLBIALLIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
1517       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_is_write },
1518     { .name = "TLBIMVAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
1519       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_is_write },
1520     { .name = "TLBIASIDIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
1521       .type = ARM_CP_NO_RAW, .access = PL1_W,
1522       .writefn = tlbiasid_is_write },
1523     { .name = "TLBIMVAAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
1524       .type = ARM_CP_NO_RAW, .access = PL1_W,
1525       .writefn = tlbimvaa_is_write },
1526     REGINFO_SENTINEL
1527 };
1528
1529 static void teecr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1530                         uint64_t value)
1531 {
1532     value &= 1;
1533     env->teecr = value;
1534 }
1535
1536 static CPAccessResult teehbr_access(CPUARMState *env, const ARMCPRegInfo *ri,
1537                                     bool isread)
1538 {
1539     if (arm_current_el(env) == 0 && (env->teecr & 1)) {
1540         return CP_ACCESS_TRAP;
1541     }
1542     return CP_ACCESS_OK;
1543 }
1544
1545 static const ARMCPRegInfo t2ee_cp_reginfo[] = {
1546     { .name = "TEECR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 6, .opc2 = 0,
1547       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, teecr),
1548       .resetvalue = 0,
1549       .writefn = teecr_write },
1550     { .name = "TEEHBR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 6, .opc2 = 0,
1551       .access = PL0_RW, .fieldoffset = offsetof(CPUARMState, teehbr),
1552       .accessfn = teehbr_access, .resetvalue = 0 },
1553     REGINFO_SENTINEL
1554 };
1555
1556 static const ARMCPRegInfo v6k_cp_reginfo[] = {
1557     { .name = "TPIDR_EL0", .state = ARM_CP_STATE_AA64,
1558       .opc0 = 3, .opc1 = 3, .opc2 = 2, .crn = 13, .crm = 0,
1559       .access = PL0_RW,
1560       .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[0]), .resetvalue = 0 },
1561     { .name = "TPIDRURW", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 2,
1562       .access = PL0_RW,
1563       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrurw_s),
1564                              offsetoflow32(CPUARMState, cp15.tpidrurw_ns) },
1565       .resetfn = arm_cp_reset_ignore },
1566     { .name = "TPIDRRO_EL0", .state = ARM_CP_STATE_AA64,
1567       .opc0 = 3, .opc1 = 3, .opc2 = 3, .crn = 13, .crm = 0,
1568       .access = PL0_R|PL1_W,
1569       .fieldoffset = offsetof(CPUARMState, cp15.tpidrro_el[0]),
1570       .resetvalue = 0},
1571     { .name = "TPIDRURO", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 3,
1572       .access = PL0_R|PL1_W,
1573       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidruro_s),
1574                              offsetoflow32(CPUARMState, cp15.tpidruro_ns) },
1575       .resetfn = arm_cp_reset_ignore },
1576     { .name = "TPIDR_EL1", .state = ARM_CP_STATE_AA64,
1577       .opc0 = 3, .opc1 = 0, .opc2 = 4, .crn = 13, .crm = 0,
1578       .access = PL1_RW,
1579       .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[1]), .resetvalue = 0 },
1580     { .name = "TPIDRPRW", .opc1 = 0, .cp = 15, .crn = 13, .crm = 0, .opc2 = 4,
1581       .access = PL1_RW,
1582       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrprw_s),
1583                              offsetoflow32(CPUARMState, cp15.tpidrprw_ns) },
1584       .resetvalue = 0 },
1585     REGINFO_SENTINEL
1586 };
1587
1588 #ifndef CONFIG_USER_ONLY
1589
1590 static CPAccessResult gt_cntfrq_access(CPUARMState *env, const ARMCPRegInfo *ri,
1591                                        bool isread)
1592 {
1593     /* CNTFRQ: not visible from PL0 if both PL0PCTEN and PL0VCTEN are zero.
1594      * Writable only at the highest implemented exception level.
1595      */
1596     int el = arm_current_el(env);
1597
1598     switch (el) {
1599     case 0:
1600         if (!extract32(env->cp15.c14_cntkctl, 0, 2)) {
1601             return CP_ACCESS_TRAP;
1602         }
1603         break;
1604     case 1:
1605         if (!isread && ri->state == ARM_CP_STATE_AA32 &&
1606             arm_is_secure_below_el3(env)) {
1607             /* Accesses from 32-bit Secure EL1 UNDEF (*not* trap to EL3!) */
1608             return CP_ACCESS_TRAP_UNCATEGORIZED;
1609         }
1610         break;
1611     case 2:
1612     case 3:
1613         break;
1614     }
1615
1616     if (!isread && el < arm_highest_el(env)) {
1617         return CP_ACCESS_TRAP_UNCATEGORIZED;
1618     }
1619
1620     return CP_ACCESS_OK;
1621 }
1622
1623 static CPAccessResult gt_counter_access(CPUARMState *env, int timeridx,
1624                                         bool isread)
1625 {
1626     unsigned int cur_el = arm_current_el(env);
1627     bool secure = arm_is_secure(env);
1628
1629     /* CNT[PV]CT: not visible from PL0 if ELO[PV]CTEN is zero */
1630     if (cur_el == 0 &&
1631         !extract32(env->cp15.c14_cntkctl, timeridx, 1)) {
1632         return CP_ACCESS_TRAP;
1633     }
1634
1635     if (arm_feature(env, ARM_FEATURE_EL2) &&
1636         timeridx == GTIMER_PHYS && !secure && cur_el < 2 &&
1637         !extract32(env->cp15.cnthctl_el2, 0, 1)) {
1638         return CP_ACCESS_TRAP_EL2;
1639     }
1640     return CP_ACCESS_OK;
1641 }
1642
1643 static CPAccessResult gt_timer_access(CPUARMState *env, int timeridx,
1644                                       bool isread)
1645 {
1646     unsigned int cur_el = arm_current_el(env);
1647     bool secure = arm_is_secure(env);
1648
1649     /* CNT[PV]_CVAL, CNT[PV]_CTL, CNT[PV]_TVAL: not visible from PL0 if
1650      * EL0[PV]TEN is zero.
1651      */
1652     if (cur_el == 0 &&
1653         !extract32(env->cp15.c14_cntkctl, 9 - timeridx, 1)) {
1654         return CP_ACCESS_TRAP;
1655     }
1656
1657     if (arm_feature(env, ARM_FEATURE_EL2) &&
1658         timeridx == GTIMER_PHYS && !secure && cur_el < 2 &&
1659         !extract32(env->cp15.cnthctl_el2, 1, 1)) {
1660         return CP_ACCESS_TRAP_EL2;
1661     }
1662     return CP_ACCESS_OK;
1663 }
1664
1665 static CPAccessResult gt_pct_access(CPUARMState *env,
1666                                     const ARMCPRegInfo *ri,
1667                                     bool isread)
1668 {
1669     return gt_counter_access(env, GTIMER_PHYS, isread);
1670 }
1671
1672 static CPAccessResult gt_vct_access(CPUARMState *env,
1673                                     const ARMCPRegInfo *ri,
1674                                     bool isread)
1675 {
1676     return gt_counter_access(env, GTIMER_VIRT, isread);
1677 }
1678
1679 static CPAccessResult gt_ptimer_access(CPUARMState *env, const ARMCPRegInfo *ri,
1680                                        bool isread)
1681 {
1682     return gt_timer_access(env, GTIMER_PHYS, isread);
1683 }
1684
1685 static CPAccessResult gt_vtimer_access(CPUARMState *env, const ARMCPRegInfo *ri,
1686                                        bool isread)
1687 {
1688     return gt_timer_access(env, GTIMER_VIRT, isread);
1689 }
1690
1691 static CPAccessResult gt_stimer_access(CPUARMState *env,
1692                                        const ARMCPRegInfo *ri,
1693                                        bool isread)
1694 {
1695     /* The AArch64 register view of the secure physical timer is
1696      * always accessible from EL3, and configurably accessible from
1697      * Secure EL1.
1698      */
1699     switch (arm_current_el(env)) {
1700     case 1:
1701         if (!arm_is_secure(env)) {
1702             return CP_ACCESS_TRAP;
1703         }
1704         if (!(env->cp15.scr_el3 & SCR_ST)) {
1705             return CP_ACCESS_TRAP_EL3;
1706         }
1707         return CP_ACCESS_OK;
1708     case 0:
1709     case 2:
1710         return CP_ACCESS_TRAP;
1711     case 3:
1712         return CP_ACCESS_OK;
1713     default:
1714         g_assert_not_reached();
1715     }
1716 }
1717
1718 static uint64_t gt_get_countervalue(CPUARMState *env)
1719 {
1720     return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) / GTIMER_SCALE;
1721 }
1722
1723 static void gt_recalc_timer(ARMCPU *cpu, int timeridx)
1724 {
1725     ARMGenericTimer *gt = &cpu->env.cp15.c14_timer[timeridx];
1726
1727     if (gt->ctl & 1) {
1728         /* Timer enabled: calculate and set current ISTATUS, irq, and
1729          * reset timer to when ISTATUS next has to change
1730          */
1731         uint64_t offset = timeridx == GTIMER_VIRT ?
1732                                       cpu->env.cp15.cntvoff_el2 : 0;
1733         uint64_t count = gt_get_countervalue(&cpu->env);
1734         /* Note that this must be unsigned 64 bit arithmetic: */
1735         int istatus = count - offset >= gt->cval;
1736         uint64_t nexttick;
1737         int irqstate;
1738
1739         gt->ctl = deposit32(gt->ctl, 2, 1, istatus);
1740
1741         irqstate = (istatus && !(gt->ctl & 2));
1742         qemu_set_irq(cpu->gt_timer_outputs[timeridx], irqstate);
1743
1744         if (istatus) {
1745             /* Next transition is when count rolls back over to zero */
1746             nexttick = UINT64_MAX;
1747         } else {
1748             /* Next transition is when we hit cval */
1749             nexttick = gt->cval + offset;
1750         }
1751         /* Note that the desired next expiry time might be beyond the
1752          * signed-64-bit range of a QEMUTimer -- in this case we just
1753          * set the timer for as far in the future as possible. When the
1754          * timer expires we will reset the timer for any remaining period.
1755          */
1756         if (nexttick > INT64_MAX / GTIMER_SCALE) {
1757             nexttick = INT64_MAX / GTIMER_SCALE;
1758         }
1759         timer_mod(cpu->gt_timer[timeridx], nexttick);
1760         trace_arm_gt_recalc(timeridx, irqstate, nexttick);
1761     } else {
1762         /* Timer disabled: ISTATUS and timer output always clear */
1763         gt->ctl &= ~4;
1764         qemu_set_irq(cpu->gt_timer_outputs[timeridx], 0);
1765         timer_del(cpu->gt_timer[timeridx]);
1766         trace_arm_gt_recalc_disabled(timeridx);
1767     }
1768 }
1769
1770 static void gt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri,
1771                            int timeridx)
1772 {
1773     ARMCPU *cpu = arm_env_get_cpu(env);
1774
1775     timer_del(cpu->gt_timer[timeridx]);
1776 }
1777
1778 static uint64_t gt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
1779 {
1780     return gt_get_countervalue(env);
1781 }
1782
1783 static uint64_t gt_virt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
1784 {
1785     return gt_get_countervalue(env) - env->cp15.cntvoff_el2;
1786 }
1787
1788 static void gt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1789                           int timeridx,
1790                           uint64_t value)
1791 {
1792     trace_arm_gt_cval_write(timeridx, value);
1793     env->cp15.c14_timer[timeridx].cval = value;
1794     gt_recalc_timer(arm_env_get_cpu(env), timeridx);
1795 }
1796
1797 static uint64_t gt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri,
1798                              int timeridx)
1799 {
1800     uint64_t offset = timeridx == GTIMER_VIRT ? env->cp15.cntvoff_el2 : 0;
1801
1802     return (uint32_t)(env->cp15.c14_timer[timeridx].cval -
1803                       (gt_get_countervalue(env) - offset));
1804 }
1805
1806 static void gt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1807                           int timeridx,
1808                           uint64_t value)
1809 {
1810     uint64_t offset = timeridx == GTIMER_VIRT ? env->cp15.cntvoff_el2 : 0;
1811
1812     trace_arm_gt_tval_write(timeridx, value);
1813     env->cp15.c14_timer[timeridx].cval = gt_get_countervalue(env) - offset +
1814                                          sextract64(value, 0, 32);
1815     gt_recalc_timer(arm_env_get_cpu(env), timeridx);
1816 }
1817
1818 static void gt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1819                          int timeridx,
1820                          uint64_t value)
1821 {
1822     ARMCPU *cpu = arm_env_get_cpu(env);
1823     uint32_t oldval = env->cp15.c14_timer[timeridx].ctl;
1824
1825     trace_arm_gt_ctl_write(timeridx, value);
1826     env->cp15.c14_timer[timeridx].ctl = deposit64(oldval, 0, 2, value);
1827     if ((oldval ^ value) & 1) {
1828         /* Enable toggled */
1829         gt_recalc_timer(cpu, timeridx);
1830     } else if ((oldval ^ value) & 2) {
1831         /* IMASK toggled: don't need to recalculate,
1832          * just set the interrupt line based on ISTATUS
1833          */
1834         int irqstate = (oldval & 4) && !(value & 2);
1835
1836         trace_arm_gt_imask_toggle(timeridx, irqstate);
1837         qemu_set_irq(cpu->gt_timer_outputs[timeridx], irqstate);
1838     }
1839 }
1840
1841 static void gt_phys_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1842 {
1843     gt_timer_reset(env, ri, GTIMER_PHYS);
1844 }
1845
1846 static void gt_phys_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1847                                uint64_t value)
1848 {
1849     gt_cval_write(env, ri, GTIMER_PHYS, value);
1850 }
1851
1852 static uint64_t gt_phys_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1853 {
1854     return gt_tval_read(env, ri, GTIMER_PHYS);
1855 }
1856
1857 static void gt_phys_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1858                                uint64_t value)
1859 {
1860     gt_tval_write(env, ri, GTIMER_PHYS, value);
1861 }
1862
1863 static void gt_phys_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1864                               uint64_t value)
1865 {
1866     gt_ctl_write(env, ri, GTIMER_PHYS, value);
1867 }
1868
1869 static void gt_virt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1870 {
1871     gt_timer_reset(env, ri, GTIMER_VIRT);
1872 }
1873
1874 static void gt_virt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1875                                uint64_t value)
1876 {
1877     gt_cval_write(env, ri, GTIMER_VIRT, value);
1878 }
1879
1880 static uint64_t gt_virt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1881 {
1882     return gt_tval_read(env, ri, GTIMER_VIRT);
1883 }
1884
1885 static void gt_virt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1886                                uint64_t value)
1887 {
1888     gt_tval_write(env, ri, GTIMER_VIRT, value);
1889 }
1890
1891 static void gt_virt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1892                               uint64_t value)
1893 {
1894     gt_ctl_write(env, ri, GTIMER_VIRT, value);
1895 }
1896
1897 static void gt_cntvoff_write(CPUARMState *env, const ARMCPRegInfo *ri,
1898                               uint64_t value)
1899 {
1900     ARMCPU *cpu = arm_env_get_cpu(env);
1901
1902     trace_arm_gt_cntvoff_write(value);
1903     raw_write(env, ri, value);
1904     gt_recalc_timer(cpu, GTIMER_VIRT);
1905 }
1906
1907 static void gt_hyp_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1908 {
1909     gt_timer_reset(env, ri, GTIMER_HYP);
1910 }
1911
1912 static void gt_hyp_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1913                               uint64_t value)
1914 {
1915     gt_cval_write(env, ri, GTIMER_HYP, value);
1916 }
1917
1918 static uint64_t gt_hyp_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1919 {
1920     return gt_tval_read(env, ri, GTIMER_HYP);
1921 }
1922
1923 static void gt_hyp_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1924                               uint64_t value)
1925 {
1926     gt_tval_write(env, ri, GTIMER_HYP, value);
1927 }
1928
1929 static void gt_hyp_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1930                               uint64_t value)
1931 {
1932     gt_ctl_write(env, ri, GTIMER_HYP, value);
1933 }
1934
1935 static void gt_sec_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1936 {
1937     gt_timer_reset(env, ri, GTIMER_SEC);
1938 }
1939
1940 static void gt_sec_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1941                               uint64_t value)
1942 {
1943     gt_cval_write(env, ri, GTIMER_SEC, value);
1944 }
1945
1946 static uint64_t gt_sec_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1947 {
1948     return gt_tval_read(env, ri, GTIMER_SEC);
1949 }
1950
1951 static void gt_sec_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1952                               uint64_t value)
1953 {
1954     gt_tval_write(env, ri, GTIMER_SEC, value);
1955 }
1956
1957 static void gt_sec_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1958                               uint64_t value)
1959 {
1960     gt_ctl_write(env, ri, GTIMER_SEC, value);
1961 }
1962
1963 void arm_gt_ptimer_cb(void *opaque)
1964 {
1965     ARMCPU *cpu = opaque;
1966
1967     gt_recalc_timer(cpu, GTIMER_PHYS);
1968 }
1969
1970 void arm_gt_vtimer_cb(void *opaque)
1971 {
1972     ARMCPU *cpu = opaque;
1973
1974     gt_recalc_timer(cpu, GTIMER_VIRT);
1975 }
1976
1977 void arm_gt_htimer_cb(void *opaque)
1978 {
1979     ARMCPU *cpu = opaque;
1980
1981     gt_recalc_timer(cpu, GTIMER_HYP);
1982 }
1983
1984 void arm_gt_stimer_cb(void *opaque)
1985 {
1986     ARMCPU *cpu = opaque;
1987
1988     gt_recalc_timer(cpu, GTIMER_SEC);
1989 }
1990
1991 static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
1992     /* Note that CNTFRQ is purely reads-as-written for the benefit
1993      * of software; writing it doesn't actually change the timer frequency.
1994      * Our reset value matches the fixed frequency we implement the timer at.
1995      */
1996     { .name = "CNTFRQ", .cp = 15, .crn = 14, .crm = 0, .opc1 = 0, .opc2 = 0,
1997       .type = ARM_CP_ALIAS,
1998       .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
1999       .fieldoffset = offsetoflow32(CPUARMState, cp15.c14_cntfrq),
2000     },
2001     { .name = "CNTFRQ_EL0", .state = ARM_CP_STATE_AA64,
2002       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 0,
2003       .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
2004       .fieldoffset = offsetof(CPUARMState, cp15.c14_cntfrq),
2005       .resetvalue = (1000 * 1000 * 1000) / GTIMER_SCALE,
2006     },
2007     /* overall control: mostly access permissions */
2008     { .name = "CNTKCTL", .state = ARM_CP_STATE_BOTH,
2009       .opc0 = 3, .opc1 = 0, .crn = 14, .crm = 1, .opc2 = 0,
2010       .access = PL1_RW,
2011       .fieldoffset = offsetof(CPUARMState, cp15.c14_cntkctl),
2012       .resetvalue = 0,
2013     },
2014     /* per-timer control */
2015     { .name = "CNTP_CTL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
2016       .secure = ARM_CP_SECSTATE_NS,
2017       .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
2018       .accessfn = gt_ptimer_access,
2019       .fieldoffset = offsetoflow32(CPUARMState,
2020                                    cp15.c14_timer[GTIMER_PHYS].ctl),
2021       .writefn = gt_phys_ctl_write, .raw_writefn = raw_write,
2022     },
2023     { .name = "CNTP_CTL_S",
2024       .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
2025       .secure = ARM_CP_SECSTATE_S,
2026       .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
2027       .accessfn = gt_ptimer_access,
2028       .fieldoffset = offsetoflow32(CPUARMState,
2029                                    cp15.c14_timer[GTIMER_SEC].ctl),
2030       .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
2031     },
2032     { .name = "CNTP_CTL_EL0", .state = ARM_CP_STATE_AA64,
2033       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 1,
2034       .type = ARM_CP_IO, .access = PL1_RW | PL0_R,
2035       .accessfn = gt_ptimer_access,
2036       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].ctl),
2037       .resetvalue = 0,
2038       .writefn = gt_phys_ctl_write, .raw_writefn = raw_write,
2039     },
2040     { .name = "CNTV_CTL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 1,
2041       .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
2042       .accessfn = gt_vtimer_access,
2043       .fieldoffset = offsetoflow32(CPUARMState,
2044                                    cp15.c14_timer[GTIMER_VIRT].ctl),
2045       .writefn = gt_virt_ctl_write, .raw_writefn = raw_write,
2046     },
2047     { .name = "CNTV_CTL_EL0", .state = ARM_CP_STATE_AA64,
2048       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 1,
2049       .type = ARM_CP_IO, .access = PL1_RW | PL0_R,
2050       .accessfn = gt_vtimer_access,
2051       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].ctl),
2052       .resetvalue = 0,
2053       .writefn = gt_virt_ctl_write, .raw_writefn = raw_write,
2054     },
2055     /* TimerValue views: a 32 bit downcounting view of the underlying state */
2056     { .name = "CNTP_TVAL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
2057       .secure = ARM_CP_SECSTATE_NS,
2058       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
2059       .accessfn = gt_ptimer_access,
2060       .readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
2061     },
2062     { .name = "CNTP_TVAL_S",
2063       .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
2064       .secure = ARM_CP_SECSTATE_S,
2065       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
2066       .accessfn = gt_ptimer_access,
2067       .readfn = gt_sec_tval_read, .writefn = gt_sec_tval_write,
2068     },
2069     { .name = "CNTP_TVAL_EL0", .state = ARM_CP_STATE_AA64,
2070       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 0,
2071       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
2072       .accessfn = gt_ptimer_access, .resetfn = gt_phys_timer_reset,
2073       .readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
2074     },
2075     { .name = "CNTV_TVAL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 0,
2076       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
2077       .accessfn = gt_vtimer_access,
2078       .readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
2079     },
2080     { .name = "CNTV_TVAL_EL0", .state = ARM_CP_STATE_AA64,
2081       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 0,
2082       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
2083       .accessfn = gt_vtimer_access, .resetfn = gt_virt_timer_reset,
2084       .readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
2085     },
2086     /* The counter itself */
2087     { .name = "CNTPCT", .cp = 15, .crm = 14, .opc1 = 0,
2088       .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
2089       .accessfn = gt_pct_access,
2090       .readfn = gt_cnt_read, .resetfn = arm_cp_reset_ignore,
2091     },
2092     { .name = "CNTPCT_EL0", .state = ARM_CP_STATE_AA64,
2093       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 1,
2094       .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
2095       .accessfn = gt_pct_access, .readfn = gt_cnt_read,
2096     },
2097     { .name = "CNTVCT", .cp = 15, .crm = 14, .opc1 = 1,
2098       .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
2099       .accessfn = gt_vct_access,
2100       .readfn = gt_virt_cnt_read, .resetfn = arm_cp_reset_ignore,
2101     },
2102     { .name = "CNTVCT_EL0", .state = ARM_CP_STATE_AA64,
2103       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 2,
2104       .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
2105       .accessfn = gt_vct_access, .readfn = gt_virt_cnt_read,
2106     },
2107     /* Comparison value, indicating when the timer goes off */
2108     { .name = "CNTP_CVAL", .cp = 15, .crm = 14, .opc1 = 2,
2109       .secure = ARM_CP_SECSTATE_NS,
2110       .access = PL1_RW | PL0_R,
2111       .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
2112       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
2113       .accessfn = gt_ptimer_access,
2114       .writefn = gt_phys_cval_write, .raw_writefn = raw_write,
2115     },
2116     { .name = "CNTP_CVAL_S", .cp = 15, .crm = 14, .opc1 = 2,
2117       .secure = ARM_CP_SECSTATE_S,
2118       .access = PL1_RW | PL0_R,
2119       .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
2120       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
2121       .accessfn = gt_ptimer_access,
2122       .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
2123     },
2124     { .name = "CNTP_CVAL_EL0", .state = ARM_CP_STATE_AA64,
2125       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 2,
2126       .access = PL1_RW | PL0_R,
2127       .type = ARM_CP_IO,
2128       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
2129       .resetvalue = 0, .accessfn = gt_ptimer_access,
2130       .writefn = gt_phys_cval_write, .raw_writefn = raw_write,
2131     },
2132     { .name = "CNTV_CVAL", .cp = 15, .crm = 14, .opc1 = 3,
2133       .access = PL1_RW | PL0_R,
2134       .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
2135       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
2136       .accessfn = gt_vtimer_access,
2137       .writefn = gt_virt_cval_write, .raw_writefn = raw_write,
2138     },
2139     { .name = "CNTV_CVAL_EL0", .state = ARM_CP_STATE_AA64,
2140       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 2,
2141       .access = PL1_RW | PL0_R,
2142       .type = ARM_CP_IO,
2143       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
2144       .resetvalue = 0, .accessfn = gt_vtimer_access,
2145       .writefn = gt_virt_cval_write, .raw_writefn = raw_write,
2146     },
2147     /* Secure timer -- this is actually restricted to only EL3
2148      * and configurably Secure-EL1 via the accessfn.
2149      */
2150     { .name = "CNTPS_TVAL_EL1", .state = ARM_CP_STATE_AA64,
2151       .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 0,
2152       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW,
2153       .accessfn = gt_stimer_access,
2154       .readfn = gt_sec_tval_read,
2155       .writefn = gt_sec_tval_write,
2156       .resetfn = gt_sec_timer_reset,
2157     },
2158     { .name = "CNTPS_CTL_EL1", .state = ARM_CP_STATE_AA64,
2159       .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 1,
2160       .type = ARM_CP_IO, .access = PL1_RW,
2161       .accessfn = gt_stimer_access,
2162       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].ctl),
2163       .resetvalue = 0,
2164       .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
2165     },
2166     { .name = "CNTPS_CVAL_EL1", .state = ARM_CP_STATE_AA64,
2167       .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 2,
2168       .type = ARM_CP_IO, .access = PL1_RW,
2169       .accessfn = gt_stimer_access,
2170       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
2171       .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
2172     },
2173     REGINFO_SENTINEL
2174 };
2175
2176 #else
2177
2178 /* In user-mode most of the generic timer registers are inaccessible
2179  * however modern kernels (4.12+) allow access to cntvct_el0
2180  */
2181
2182 static uint64_t gt_virt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
2183 {
2184     /* Currently we have no support for QEMUTimer in linux-user so we
2185      * can't call gt_get_countervalue(env), instead we directly
2186      * call the lower level functions.
2187      */
2188     return cpu_get_clock() / GTIMER_SCALE;
2189 }
2190
2191 static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
2192     { .name = "CNTFRQ_EL0", .state = ARM_CP_STATE_AA64,
2193       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 0,
2194       .type = ARM_CP_CONST, .access = PL0_R /* no PL1_RW in linux-user */,
2195       .fieldoffset = offsetof(CPUARMState, cp15.c14_cntfrq),
2196       .resetvalue = NANOSECONDS_PER_SECOND / GTIMER_SCALE,
2197     },
2198     { .name = "CNTVCT_EL0", .state = ARM_CP_STATE_AA64,
2199       .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 2,
2200       .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
2201       .readfn = gt_virt_cnt_read,
2202     },
2203     REGINFO_SENTINEL
2204 };
2205
2206 #endif
2207
2208 static void par_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
2209 {
2210     if (arm_feature(env, ARM_FEATURE_LPAE)) {
2211         raw_write(env, ri, value);
2212     } else if (arm_feature(env, ARM_FEATURE_V7)) {
2213         raw_write(env, ri, value & 0xfffff6ff);
2214     } else {
2215         raw_write(env, ri, value & 0xfffff1ff);
2216     }
2217 }
2218
2219 #ifndef CONFIG_USER_ONLY
2220 /* get_phys_addr() isn't present for user-mode-only targets */
2221
2222 static CPAccessResult ats_access(CPUARMState *env, const ARMCPRegInfo *ri,
2223                                  bool isread)
2224 {
2225     if (ri->opc2 & 4) {
2226         /* The ATS12NSO* operations must trap to EL3 if executed in
2227          * Secure EL1 (which can only happen if EL3 is AArch64).
2228          * They are simply UNDEF if executed from NS EL1.
2229          * They function normally from EL2 or EL3.
2230          */
2231         if (arm_current_el(env) == 1) {
2232             if (arm_is_secure_below_el3(env)) {
2233                 return CP_ACCESS_TRAP_UNCATEGORIZED_EL3;
2234             }
2235             return CP_ACCESS_TRAP_UNCATEGORIZED;
2236         }
2237     }
2238     return CP_ACCESS_OK;
2239 }
2240
2241 static uint64_t do_ats_write(CPUARMState *env, uint64_t value,
2242                              MMUAccessType access_type, ARMMMUIdx mmu_idx)
2243 {
2244     hwaddr phys_addr;
2245     target_ulong page_size;
2246     int prot;
2247     bool ret;
2248     uint64_t par64;
2249     bool format64 = false;
2250     MemTxAttrs attrs = {};
2251     ARMMMUFaultInfo fi = {};
2252     ARMCacheAttrs cacheattrs = {};
2253
2254     ret = get_phys_addr(env, value, access_type, mmu_idx, &phys_addr, &attrs,
2255                         &prot, &page_size, &fi, &cacheattrs);
2256
2257     if (is_a64(env)) {
2258         format64 = true;
2259     } else if (arm_feature(env, ARM_FEATURE_LPAE)) {
2260         /*
2261          * ATS1Cxx:
2262          * * TTBCR.EAE determines whether the result is returned using the
2263          *   32-bit or the 64-bit PAR format
2264          * * Instructions executed in Hyp mode always use the 64bit format
2265          *
2266          * ATS1S2NSOxx uses the 64bit format if any of the following is true:
2267          * * The Non-secure TTBCR.EAE bit is set to 1
2268          * * The implementation includes EL2, and the value of HCR.VM is 1
2269          *
2270          * ATS1Hx always uses the 64bit format (not supported yet).
2271          */
2272         format64 = arm_s1_regime_using_lpae_format(env, mmu_idx);
2273
2274         if (arm_feature(env, ARM_FEATURE_EL2)) {
2275             if (mmu_idx == ARMMMUIdx_S12NSE0 || mmu_idx == ARMMMUIdx_S12NSE1) {
2276                 format64 |= env->cp15.hcr_el2 & HCR_VM;
2277             } else {
2278                 format64 |= arm_current_el(env) == 2;
2279             }
2280         }
2281     }
2282
2283     if (format64) {
2284         /* Create a 64-bit PAR */
2285         par64 = (1 << 11); /* LPAE bit always set */
2286         if (!ret) {
2287             par64 |= phys_addr & ~0xfffULL;
2288             if (!attrs.secure) {
2289                 par64 |= (1 << 9); /* NS */
2290             }
2291             par64 |= (uint64_t)cacheattrs.attrs << 56; /* ATTR */
2292             par64 |= cacheattrs.shareability << 7; /* SH */
2293         } else {
2294             uint32_t fsr = arm_fi_to_lfsc(&fi);
2295
2296             par64 |= 1; /* F */
2297             par64 |= (fsr & 0x3f) << 1; /* FS */
2298             /* Note that S2WLK and FSTAGE are always zero, because we don't
2299              * implement virtualization and therefore there can't be a stage 2
2300              * fault.
2301              */
2302         }
2303     } else {
2304         /* fsr is a DFSR/IFSR value for the short descriptor
2305          * translation table format (with WnR always clear).
2306          * Convert it to a 32-bit PAR.
2307          */
2308         if (!ret) {
2309             /* We do not set any attribute bits in the PAR */
2310             if (page_size == (1 << 24)
2311                 && arm_feature(env, ARM_FEATURE_V7)) {
2312                 par64 = (phys_addr & 0xff000000) | (1 << 1);
2313             } else {
2314                 par64 = phys_addr & 0xfffff000;
2315             }
2316             if (!attrs.secure) {
2317                 par64 |= (1 << 9); /* NS */
2318             }
2319         } else {
2320             uint32_t fsr = arm_fi_to_sfsc(&fi);
2321
2322             par64 = ((fsr & (1 << 10)) >> 5) | ((fsr & (1 << 12)) >> 6) |
2323                     ((fsr & 0xf) << 1) | 1;
2324         }
2325     }
2326     return par64;
2327 }
2328
2329 static void ats_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
2330 {
2331     MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
2332     uint64_t par64;
2333     ARMMMUIdx mmu_idx;
2334     int el = arm_current_el(env);
2335     bool secure = arm_is_secure_below_el3(env);
2336
2337     switch (ri->opc2 & 6) {
2338     case 0:
2339         /* stage 1 current state PL1: ATS1CPR, ATS1CPW */
2340         switch (el) {
2341         case 3:
2342             mmu_idx = ARMMMUIdx_S1E3;
2343             break;
2344         case 2:
2345             mmu_idx = ARMMMUIdx_S1NSE1;
2346             break;
2347         case 1:
2348             mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S1NSE1;
2349             break;
2350         default:
2351             g_assert_not_reached();
2352         }
2353         break;
2354     case 2:
2355         /* stage 1 current state PL0: ATS1CUR, ATS1CUW */
2356         switch (el) {
2357         case 3:
2358             mmu_idx = ARMMMUIdx_S1SE0;
2359             break;
2360         case 2:
2361             mmu_idx = ARMMMUIdx_S1NSE0;
2362             break;
2363         case 1:
2364             mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S1NSE0;
2365             break;
2366         default:
2367             g_assert_not_reached();
2368         }
2369         break;
2370     case 4:
2371         /* stage 1+2 NonSecure PL1: ATS12NSOPR, ATS12NSOPW */
2372         mmu_idx = ARMMMUIdx_S12NSE1;
2373         break;
2374     case 6:
2375         /* stage 1+2 NonSecure PL0: ATS12NSOUR, ATS12NSOUW */
2376         mmu_idx = ARMMMUIdx_S12NSE0;
2377         break;
2378     default:
2379         g_assert_not_reached();
2380     }
2381
2382     par64 = do_ats_write(env, value, access_type, mmu_idx);
2383
2384     A32_BANKED_CURRENT_REG_SET(env, par, par64);
2385 }
2386
2387 static void ats1h_write(CPUARMState *env, const ARMCPRegInfo *ri,
2388                         uint64_t value)
2389 {
2390     MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
2391     uint64_t par64;
2392
2393     par64 = do_ats_write(env, value, access_type, ARMMMUIdx_S2NS);
2394
2395     A32_BANKED_CURRENT_REG_SET(env, par, par64);
2396 }
2397
2398 static CPAccessResult at_s1e2_access(CPUARMState *env, const ARMCPRegInfo *ri,
2399                                      bool isread)
2400 {
2401     if (arm_current_el(env) == 3 && !(env->cp15.scr_el3 & SCR_NS)) {
2402         return CP_ACCESS_TRAP;
2403     }
2404     return CP_ACCESS_OK;
2405 }
2406
2407 static void ats_write64(CPUARMState *env, const ARMCPRegInfo *ri,
2408                         uint64_t value)
2409 {
2410     MMUAccessType access_type = ri->opc2 & 1 ? MMU_DATA_STORE : MMU_DATA_LOAD;
2411     ARMMMUIdx mmu_idx;
2412     int secure = arm_is_secure_below_el3(env);
2413
2414     switch (ri->opc2 & 6) {
2415     case 0:
2416         switch (ri->opc1) {
2417         case 0: /* AT S1E1R, AT S1E1W */
2418             mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S1NSE1;
2419             break;
2420         case 4: /* AT S1E2R, AT S1E2W */
2421             mmu_idx = ARMMMUIdx_S1E2;
2422             break;
2423         case 6: /* AT S1E3R, AT S1E3W */
2424             mmu_idx = ARMMMUIdx_S1E3;
2425             break;
2426         default:
2427             g_assert_not_reached();
2428         }
2429         break;
2430     case 2: /* AT S1E0R, AT S1E0W */
2431         mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S1NSE0;
2432         break;
2433     case 4: /* AT S12E1R, AT S12E1W */
2434         mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S12NSE1;
2435         break;
2436     case 6: /* AT S12E0R, AT S12E0W */
2437         mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S12NSE0;
2438         break;
2439     default:
2440         g_assert_not_reached();
2441     }
2442
2443     env->cp15.par_el[1] = do_ats_write(env, value, access_type, mmu_idx);
2444 }
2445 #endif
2446
2447 static const ARMCPRegInfo vapa_cp_reginfo[] = {
2448     { .name = "PAR", .cp = 15, .crn = 7, .crm = 4, .opc1 = 0, .opc2 = 0,
2449       .access = PL1_RW, .resetvalue = 0,
2450       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.par_s),
2451                              offsetoflow32(CPUARMState, cp15.par_ns) },
2452       .writefn = par_write },
2453 #ifndef CONFIG_USER_ONLY
2454     /* This underdecoding is safe because the reginfo is NO_RAW. */
2455     { .name = "ATS", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = CP_ANY,
2456       .access = PL1_W, .accessfn = ats_access,
2457       .writefn = ats_write, .type = ARM_CP_NO_RAW },
2458 #endif
2459     REGINFO_SENTINEL
2460 };
2461
2462 /* Return basic MPU access permission bits.  */
2463 static uint32_t simple_mpu_ap_bits(uint32_t val)
2464 {
2465     uint32_t ret;
2466     uint32_t mask;
2467     int i;
2468     ret = 0;
2469     mask = 3;
2470     for (i = 0; i < 16; i += 2) {
2471         ret |= (val >> i) & mask;
2472         mask <<= 2;
2473     }
2474     return ret;
2475 }
2476
2477 /* Pad basic MPU access permission bits to extended format.  */
2478 static uint32_t extended_mpu_ap_bits(uint32_t val)
2479 {
2480     uint32_t ret;
2481     uint32_t mask;
2482     int i;
2483     ret = 0;
2484     mask = 3;
2485     for (i = 0; i < 16; i += 2) {
2486         ret |= (val & mask) << i;
2487         mask <<= 2;
2488     }
2489     return ret;
2490 }
2491
2492 static void pmsav5_data_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
2493                                  uint64_t value)
2494 {
2495     env->cp15.pmsav5_data_ap = extended_mpu_ap_bits(value);
2496 }
2497
2498 static uint64_t pmsav5_data_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
2499 {
2500     return simple_mpu_ap_bits(env->cp15.pmsav5_data_ap);
2501 }
2502
2503 static void pmsav5_insn_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
2504                                  uint64_t value)
2505 {
2506     env->cp15.pmsav5_insn_ap = extended_mpu_ap_bits(value);
2507 }
2508
2509 static uint64_t pmsav5_insn_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
2510 {
2511     return simple_mpu_ap_bits(env->cp15.pmsav5_insn_ap);
2512 }
2513
2514 static uint64_t pmsav7_read(CPUARMState *env, const ARMCPRegInfo *ri)
2515 {
2516     uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
2517
2518     if (!u32p) {
2519         return 0;
2520     }
2521
2522     u32p += env->pmsav7.rnr[M_REG_NS];
2523     return *u32p;
2524 }
2525
2526 static void pmsav7_write(CPUARMState *env, const ARMCPRegInfo *ri,
2527                          uint64_t value)
2528 {
2529     ARMCPU *cpu = arm_env_get_cpu(env);
2530     uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
2531
2532     if (!u32p) {
2533         return;
2534     }
2535
2536     u32p += env->pmsav7.rnr[M_REG_NS];
2537     tlb_flush(CPU(cpu)); /* Mappings may have changed - purge! */
2538     *u32p = value;
2539 }
2540
2541 static void pmsav7_rgnr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2542                               uint64_t value)
2543 {
2544     ARMCPU *cpu = arm_env_get_cpu(env);
2545     uint32_t nrgs = cpu->pmsav7_dregion;
2546
2547     if (value >= nrgs) {
2548         qemu_log_mask(LOG_GUEST_ERROR,
2549                       "PMSAv7 RGNR write >= # supported regions, %" PRIu32
2550                       " > %" PRIu32 "\n", (uint32_t)value, nrgs);
2551         return;
2552     }
2553
2554     raw_write(env, ri, value);
2555 }
2556
2557 static const ARMCPRegInfo pmsav7_cp_reginfo[] = {
2558     /* Reset for all these registers is handled in arm_cpu_reset(),
2559      * because the PMSAv7 is also used by M-profile CPUs, which do
2560      * not register cpregs but still need the state to be reset.
2561      */
2562     { .name = "DRBAR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 0,
2563       .access = PL1_RW, .type = ARM_CP_NO_RAW,
2564       .fieldoffset = offsetof(CPUARMState, pmsav7.drbar),
2565       .readfn = pmsav7_read, .writefn = pmsav7_write,
2566       .resetfn = arm_cp_reset_ignore },
2567     { .name = "DRSR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 2,
2568       .access = PL1_RW, .type = ARM_CP_NO_RAW,
2569       .fieldoffset = offsetof(CPUARMState, pmsav7.drsr),
2570       .readfn = pmsav7_read, .writefn = pmsav7_write,
2571       .resetfn = arm_cp_reset_ignore },
2572     { .name = "DRACR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 4,
2573       .access = PL1_RW, .type = ARM_CP_NO_RAW,
2574       .fieldoffset = offsetof(CPUARMState, pmsav7.dracr),
2575       .readfn = pmsav7_read, .writefn = pmsav7_write,
2576       .resetfn = arm_cp_reset_ignore },
2577     { .name = "RGNR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 2, .opc2 = 0,
2578       .access = PL1_RW,
2579       .fieldoffset = offsetof(CPUARMState, pmsav7.rnr[M_REG_NS]),
2580       .writefn = pmsav7_rgnr_write,
2581       .resetfn = arm_cp_reset_ignore },
2582     REGINFO_SENTINEL
2583 };
2584
2585 static const ARMCPRegInfo pmsav5_cp_reginfo[] = {
2586     { .name = "DATA_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
2587       .access = PL1_RW, .type = ARM_CP_ALIAS,
2588       .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
2589       .readfn = pmsav5_data_ap_read, .writefn = pmsav5_data_ap_write, },
2590     { .name = "INSN_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
2591       .access = PL1_RW, .type = ARM_CP_ALIAS,
2592       .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
2593       .readfn = pmsav5_insn_ap_read, .writefn = pmsav5_insn_ap_write, },
2594     { .name = "DATA_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 2,
2595       .access = PL1_RW,
2596       .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
2597       .resetvalue = 0, },
2598     { .name = "INSN_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 3,
2599       .access = PL1_RW,
2600       .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
2601       .resetvalue = 0, },
2602     { .name = "DCACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
2603       .access = PL1_RW,
2604       .fieldoffset = offsetof(CPUARMState, cp15.c2_data), .resetvalue = 0, },
2605     { .name = "ICACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 1,
2606       .access = PL1_RW,
2607       .fieldoffset = offsetof(CPUARMState, cp15.c2_insn), .resetvalue = 0, },
2608     /* Protection region base and size registers */
2609     { .name = "946_PRBS0", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0,
2610       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2611       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[0]) },
2612     { .name = "946_PRBS1", .cp = 15, .crn = 6, .crm = 1, .opc1 = 0,
2613       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2614       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[1]) },
2615     { .name = "946_PRBS2", .cp = 15, .crn = 6, .crm = 2, .opc1 = 0,
2616       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2617       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[2]) },
2618     { .name = "946_PRBS3", .cp = 15, .crn = 6, .crm = 3, .opc1 = 0,
2619       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2620       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[3]) },
2621     { .name = "946_PRBS4", .cp = 15, .crn = 6, .crm = 4, .opc1 = 0,
2622       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2623       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[4]) },
2624     { .name = "946_PRBS5", .cp = 15, .crn = 6, .crm = 5, .opc1 = 0,
2625       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2626       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[5]) },
2627     { .name = "946_PRBS6", .cp = 15, .crn = 6, .crm = 6, .opc1 = 0,
2628       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2629       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[6]) },
2630     { .name = "946_PRBS7", .cp = 15, .crn = 6, .crm = 7, .opc1 = 0,
2631       .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2632       .fieldoffset = offsetof(CPUARMState, cp15.c6_region[7]) },
2633     REGINFO_SENTINEL
2634 };
2635
2636 static void vmsa_ttbcr_raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
2637                                  uint64_t value)
2638 {
2639     TCR *tcr = raw_ptr(env, ri);
2640     int maskshift = extract32(value, 0, 3);
2641
2642     if (!arm_feature(env, ARM_FEATURE_V8)) {
2643         if (arm_feature(env, ARM_FEATURE_LPAE) && (value & TTBCR_EAE)) {
2644             /* Pre ARMv8 bits [21:19], [15:14] and [6:3] are UNK/SBZP when
2645              * using Long-desciptor translation table format */
2646             value &= ~((7 << 19) | (3 << 14) | (0xf << 3));
2647         } else if (arm_feature(env, ARM_FEATURE_EL3)) {
2648             /* In an implementation that includes the Security Extensions
2649              * TTBCR has additional fields PD0 [4] and PD1 [5] for
2650              * Short-descriptor translation table format.
2651              */
2652             value &= TTBCR_PD1 | TTBCR_PD0 | TTBCR_N;
2653         } else {
2654             value &= TTBCR_N;
2655         }
2656     }
2657
2658     /* Update the masks corresponding to the TCR bank being written
2659      * Note that we always calculate mask and base_mask, but
2660      * they are only used for short-descriptor tables (ie if EAE is 0);
2661      * for long-descriptor tables the TCR fields are used differently
2662      * and the mask and base_mask values are meaningless.
2663      */
2664     tcr->raw_tcr = value;
2665     tcr->mask = ~(((uint32_t)0xffffffffu) >> maskshift);
2666     tcr->base_mask = ~((uint32_t)0x3fffu >> maskshift);
2667 }
2668
2669 static void vmsa_ttbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2670                              uint64_t value)
2671 {
2672     ARMCPU *cpu = arm_env_get_cpu(env);
2673
2674     if (arm_feature(env, ARM_FEATURE_LPAE)) {
2675         /* With LPAE the TTBCR could result in a change of ASID
2676          * via the TTBCR.A1 bit, so do a TLB flush.
2677          */
2678         tlb_flush(CPU(cpu));
2679     }
2680     vmsa_ttbcr_raw_write(env, ri, value);
2681 }
2682
2683 static void vmsa_ttbcr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2684 {
2685     TCR *tcr = raw_ptr(env, ri);
2686
2687     /* Reset both the TCR as well as the masks corresponding to the bank of
2688      * the TCR being reset.
2689      */
2690     tcr->raw_tcr = 0;
2691     tcr->mask = 0;
2692     tcr->base_mask = 0xffffc000u;
2693 }
2694
2695 static void vmsa_tcr_el1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2696                                uint64_t value)
2697 {
2698     ARMCPU *cpu = arm_env_get_cpu(env);
2699     TCR *tcr = raw_ptr(env, ri);
2700
2701     /* For AArch64 the A1 bit could result in a change of ASID, so TLB flush. */
2702     tlb_flush(CPU(cpu));
2703     tcr->raw_tcr = value;
2704 }
2705
2706 static void vmsa_ttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2707                             uint64_t value)
2708 {
2709     /* 64 bit accesses to the TTBRs can change the ASID and so we
2710      * must flush the TLB.
2711      */
2712     if (cpreg_field_is_64bit(ri)) {
2713         ARMCPU *cpu = arm_env_get_cpu(env);
2714
2715         tlb_flush(CPU(cpu));
2716     }
2717     raw_write(env, ri, value);
2718 }
2719
2720 static void vttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2721                         uint64_t value)
2722 {
2723     ARMCPU *cpu = arm_env_get_cpu(env);
2724     CPUState *cs = CPU(cpu);
2725
2726     /* Accesses to VTTBR may change the VMID so we must flush the TLB.  */
2727     if (raw_read(env, ri) != value) {
2728         tlb_flush_by_mmuidx(cs,
2729                             ARMMMUIdxBit_S12NSE1 |
2730                             ARMMMUIdxBit_S12NSE0 |
2731                             ARMMMUIdxBit_S2NS);
2732         raw_write(env, ri, value);
2733     }
2734 }
2735
2736 static const ARMCPRegInfo vmsa_pmsa_cp_reginfo[] = {
2737     { .name = "DFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
2738       .access = PL1_RW, .type = ARM_CP_ALIAS,
2739       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dfsr_s),
2740                              offsetoflow32(CPUARMState, cp15.dfsr_ns) }, },
2741     { .name = "IFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
2742       .access = PL1_RW, .resetvalue = 0,
2743       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.ifsr_s),
2744                              offsetoflow32(CPUARMState, cp15.ifsr_ns) } },
2745     { .name = "DFAR", .cp = 15, .opc1 = 0, .crn = 6, .crm = 0, .opc2 = 0,
2746       .access = PL1_RW, .resetvalue = 0,
2747       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.dfar_s),
2748                              offsetof(CPUARMState, cp15.dfar_ns) } },
2749     { .name = "FAR_EL1", .state = ARM_CP_STATE_AA64,
2750       .opc0 = 3, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 0,
2751       .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[1]),
2752       .resetvalue = 0, },
2753     REGINFO_SENTINEL
2754 };
2755
2756 static const ARMCPRegInfo vmsa_cp_reginfo[] = {
2757     { .name = "ESR_EL1", .state = ARM_CP_STATE_AA64,
2758       .opc0 = 3, .crn = 5, .crm = 2, .opc1 = 0, .opc2 = 0,
2759       .access = PL1_RW,
2760       .fieldoffset = offsetof(CPUARMState, cp15.esr_el[1]), .resetvalue = 0, },
2761     { .name = "TTBR0_EL1", .state = ARM_CP_STATE_BOTH,
2762       .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 0,
2763       .access = PL1_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
2764       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
2765                              offsetof(CPUARMState, cp15.ttbr0_ns) } },
2766     { .name = "TTBR1_EL1", .state = ARM_CP_STATE_BOTH,
2767       .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 1,
2768       .access = PL1_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
2769       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
2770                              offsetof(CPUARMState, cp15.ttbr1_ns) } },
2771     { .name = "TCR_EL1", .state = ARM_CP_STATE_AA64,
2772       .opc0 = 3, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
2773       .access = PL1_RW, .writefn = vmsa_tcr_el1_write,
2774       .resetfn = vmsa_ttbcr_reset, .raw_writefn = raw_write,
2775       .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[1]) },
2776     { .name = "TTBCR", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
2777       .access = PL1_RW, .type = ARM_CP_ALIAS, .writefn = vmsa_ttbcr_write,
2778       .raw_writefn = vmsa_ttbcr_raw_write,
2779       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tcr_el[3]),
2780                              offsetoflow32(CPUARMState, cp15.tcr_el[1])} },
2781     REGINFO_SENTINEL
2782 };
2783
2784 static void omap_ticonfig_write(CPUARMState *env, const ARMCPRegInfo *ri,
2785                                 uint64_t value)
2786 {
2787     env->cp15.c15_ticonfig = value & 0xe7;
2788     /* The OS_TYPE bit in this register changes the reported CPUID! */
2789     env->cp15.c0_cpuid = (value & (1 << 5)) ?
2790         ARM_CPUID_TI915T : ARM_CPUID_TI925T;
2791 }
2792
2793 static void omap_threadid_write(CPUARMState *env, const ARMCPRegInfo *ri,
2794                                 uint64_t value)
2795 {
2796     env->cp15.c15_threadid = value & 0xffff;
2797 }
2798
2799 static void omap_wfi_write(CPUARMState *env, const ARMCPRegInfo *ri,
2800                            uint64_t value)
2801 {
2802     /* Wait-for-interrupt (deprecated) */
2803     cpu_interrupt(CPU(arm_env_get_cpu(env)), CPU_INTERRUPT_HALT);
2804 }
2805
2806 static void omap_cachemaint_write(CPUARMState *env, const ARMCPRegInfo *ri,
2807                                   uint64_t value)
2808 {
2809     /* On OMAP there are registers indicating the max/min index of dcache lines
2810      * containing a dirty line; cache flush operations have to reset these.
2811      */
2812     env->cp15.c15_i_max = 0x000;
2813     env->cp15.c15_i_min = 0xff0;
2814 }
2815
2816 static const ARMCPRegInfo omap_cp_reginfo[] = {
2817     { .name = "DFSR", .cp = 15, .crn = 5, .crm = CP_ANY,
2818       .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_OVERRIDE,
2819       .fieldoffset = offsetoflow32(CPUARMState, cp15.esr_el[1]),
2820       .resetvalue = 0, },
2821     { .name = "", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0,
2822       .access = PL1_RW, .type = ARM_CP_NOP },
2823     { .name = "TICONFIG", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0,
2824       .access = PL1_RW,
2825       .fieldoffset = offsetof(CPUARMState, cp15.c15_ticonfig), .resetvalue = 0,
2826       .writefn = omap_ticonfig_write },
2827     { .name = "IMAX", .cp = 15, .crn = 15, .crm = 2, .opc1 = 0, .opc2 = 0,
2828       .access = PL1_RW,
2829       .fieldoffset = offsetof(CPUARMState, cp15.c15_i_max), .resetvalue = 0, },
2830     { .name = "IMIN", .cp = 15, .crn = 15, .crm = 3, .opc1 = 0, .opc2 = 0,
2831       .access = PL1_RW, .resetvalue = 0xff0,
2832       .fieldoffset = offsetof(CPUARMState, cp15.c15_i_min) },
2833     { .name = "THREADID", .cp = 15, .crn = 15, .crm = 4, .opc1 = 0, .opc2 = 0,
2834       .access = PL1_RW,
2835       .fieldoffset = offsetof(CPUARMState, cp15.c15_threadid), .resetvalue = 0,
2836       .writefn = omap_threadid_write },
2837     { .name = "TI925T_STATUS", .cp = 15, .crn = 15,
2838       .crm = 8, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
2839       .type = ARM_CP_NO_RAW,
2840       .readfn = arm_cp_read_zero, .writefn = omap_wfi_write, },
2841     /* TODO: Peripheral port remap register:
2842      * On OMAP2 mcr p15, 0, rn, c15, c2, 4 sets up the interrupt controller
2843      * base address at $rn & ~0xfff and map size of 0x200 << ($rn & 0xfff),
2844      * when MMU is off.
2845      */
2846     { .name = "OMAP_CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
2847       .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
2848       .type = ARM_CP_OVERRIDE | ARM_CP_NO_RAW,
2849       .writefn = omap_cachemaint_write },
2850     { .name = "C9", .cp = 15, .crn = 9,
2851       .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW,
2852       .type = ARM_CP_CONST | ARM_CP_OVERRIDE, .resetvalue = 0 },
2853     REGINFO_SENTINEL
2854 };
2855
2856 static void xscale_cpar_write(CPUARMState *env, const ARMCPRegInfo *ri,
2857                               uint64_t value)
2858 {
2859     env->cp15.c15_cpar = value & 0x3fff;
2860 }
2861
2862 static const ARMCPRegInfo xscale_cp_reginfo[] = {
2863     { .name = "XSCALE_CPAR",
2864       .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
2865       .fieldoffset = offsetof(CPUARMState, cp15.c15_cpar), .resetvalue = 0,
2866       .writefn = xscale_cpar_write, },
2867     { .name = "XSCALE_AUXCR",
2868       .cp = 15, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 1, .access = PL1_RW,
2869       .fieldoffset = offsetof(CPUARMState, cp15.c1_xscaleauxcr),
2870       .resetvalue = 0, },
2871     /* XScale specific cache-lockdown: since we have no cache we NOP these
2872      * and hope the guest does not really rely on cache behaviour.
2873      */
2874     { .name = "XSCALE_LOCK_ICACHE_LINE",
2875       .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 0,
2876       .access = PL1_W, .type = ARM_CP_NOP },
2877     { .name = "XSCALE_UNLOCK_ICACHE",
2878       .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 1,
2879       .access = PL1_W, .type = ARM_CP_NOP },
2880     { .name = "XSCALE_DCACHE_LOCK",
2881       .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 0,
2882       .access = PL1_RW, .type = ARM_CP_NOP },
2883     { .name = "XSCALE_UNLOCK_DCACHE",
2884       .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 1,
2885       .access = PL1_W, .type = ARM_CP_NOP },
2886     REGINFO_SENTINEL
2887 };
2888
2889 static const ARMCPRegInfo dummy_c15_cp_reginfo[] = {
2890     /* RAZ/WI the whole crn=15 space, when we don't have a more specific
2891      * implementation of this implementation-defined space.
2892      * Ideally this should eventually disappear in favour of actually
2893      * implementing the correct behaviour for all cores.
2894      */
2895     { .name = "C15_IMPDEF", .cp = 15, .crn = 15,
2896       .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
2897       .access = PL1_RW,
2898       .type = ARM_CP_CONST | ARM_CP_NO_RAW | ARM_CP_OVERRIDE,
2899       .resetvalue = 0 },
2900     REGINFO_SENTINEL
2901 };
2902
2903 static const ARMCPRegInfo cache_dirty_status_cp_reginfo[] = {
2904     /* Cache status: RAZ because we have no cache so it's always clean */
2905     { .name = "CDSR", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 6,
2906       .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
2907       .resetvalue = 0 },
2908     REGINFO_SENTINEL
2909 };
2910
2911 static const ARMCPRegInfo cache_block_ops_cp_reginfo[] = {
2912     /* We never have a a block transfer operation in progress */
2913     { .name = "BXSR", .cp = 15, .crn = 7, .crm = 12, .opc1 = 0, .opc2 = 4,
2914       .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
2915       .resetvalue = 0 },
2916     /* The cache ops themselves: these all NOP for QEMU */
2917     { .name = "IICR", .cp = 15, .crm = 5, .opc1 = 0,
2918       .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2919     { .name = "IDCR", .cp = 15, .crm = 6, .opc1 = 0,
2920       .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2921     { .name = "CDCR", .cp = 15, .crm = 12, .opc1 = 0,
2922       .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2923     { .name = "PIR", .cp = 15, .crm = 12, .opc1 = 1,
2924       .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2925     { .name = "PDR", .cp = 15, .crm = 12, .opc1 = 2,
2926       .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2927     { .name = "CIDCR", .cp = 15, .crm = 14, .opc1 = 0,
2928       .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2929     REGINFO_SENTINEL
2930 };
2931
2932 static const ARMCPRegInfo cache_test_clean_cp_reginfo[] = {
2933     /* The cache test-and-clean instructions always return (1 << 30)
2934      * to indicate that there are no dirty cache lines.
2935      */
2936     { .name = "TC_DCACHE", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 3,
2937       .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
2938       .resetvalue = (1 << 30) },
2939     { .name = "TCI_DCACHE", .cp = 15, .crn = 7, .crm = 14, .opc1 = 0, .opc2 = 3,
2940       .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
2941       .resetvalue = (1 << 30) },
2942     REGINFO_SENTINEL
2943 };
2944
2945 static const ARMCPRegInfo strongarm_cp_reginfo[] = {
2946     /* Ignore ReadBuffer accesses */
2947     { .name = "C9_READBUFFER", .cp = 15, .crn = 9,
2948       .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
2949       .access = PL1_RW, .resetvalue = 0,
2950       .type = ARM_CP_CONST | ARM_CP_OVERRIDE | ARM_CP_NO_RAW },
2951     REGINFO_SENTINEL
2952 };
2953
2954 static uint64_t midr_read(CPUARMState *env, const ARMCPRegInfo *ri)
2955 {
2956     ARMCPU *cpu = arm_env_get_cpu(env);
2957     unsigned int cur_el = arm_current_el(env);
2958     bool secure = arm_is_secure(env);
2959
2960     if (arm_feature(&cpu->env, ARM_FEATURE_EL2) && !secure && cur_el == 1) {
2961         return env->cp15.vpidr_el2;
2962     }
2963     return raw_read(env, ri);
2964 }
2965
2966 static uint64_t mpidr_read_val(CPUARMState *env)
2967 {
2968     ARMCPU *cpu = ARM_CPU(arm_env_get_cpu(env));
2969     uint64_t mpidr = cpu->mp_affinity;
2970
2971     if (arm_feature(env, ARM_FEATURE_V7MP)) {
2972         mpidr |= (1U << 31);
2973         /* Cores which are uniprocessor (non-coherent)
2974          * but still implement the MP extensions set
2975          * bit 30. (For instance, Cortex-R5).
2976          */
2977         if (cpu->mp_is_up) {
2978             mpidr |= (1u << 30);
2979         }
2980     }
2981     return mpidr;
2982 }
2983
2984 static uint64_t mpidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
2985 {
2986     unsigned int cur_el = arm_current_el(env);
2987     bool secure = arm_is_secure(env);
2988
2989     if (arm_feature(env, ARM_FEATURE_EL2) && !secure && cur_el == 1) {
2990         return env->cp15.vmpidr_el2;
2991     }
2992     return mpidr_read_val(env);
2993 }
2994
2995 static const ARMCPRegInfo mpidr_cp_reginfo[] = {
2996     { .name = "MPIDR", .state = ARM_CP_STATE_BOTH,
2997       .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 5,
2998       .access = PL1_R, .readfn = mpidr_read, .type = ARM_CP_NO_RAW },
2999     REGINFO_SENTINEL
3000 };
3001
3002 static const ARMCPRegInfo lpae_cp_reginfo[] = {
3003     /* NOP AMAIR0/1 */
3004     { .name = "AMAIR0", .state = ARM_CP_STATE_BOTH,
3005       .opc0 = 3, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 0,
3006       .access = PL1_RW, .type = ARM_CP_CONST,
3007       .resetvalue = 0 },
3008     /* AMAIR1 is mapped to AMAIR_EL1[63:32] */
3009     { .name = "AMAIR1", .cp = 15, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 1,
3010       .access = PL1_RW, .type = ARM_CP_CONST,
3011       .resetvalue = 0 },
3012     { .name = "PAR", .cp = 15, .crm = 7, .opc1 = 0,
3013       .access = PL1_RW, .type = ARM_CP_64BIT, .resetvalue = 0,
3014       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.par_s),
3015                              offsetof(CPUARMState, cp15.par_ns)} },
3016     { .name = "TTBR0", .cp = 15, .crm = 2, .opc1 = 0,
3017       .access = PL1_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
3018       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
3019                              offsetof(CPUARMState, cp15.ttbr0_ns) },
3020       .writefn = vmsa_ttbr_write, },
3021     { .name = "TTBR1", .cp = 15, .crm = 2, .opc1 = 1,
3022       .access = PL1_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
3023       .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
3024                              offsetof(CPUARMState, cp15.ttbr1_ns) },
3025       .writefn = vmsa_ttbr_write, },
3026     REGINFO_SENTINEL
3027 };
3028
3029 static uint64_t aa64_fpcr_read(CPUARMState *env, const ARMCPRegInfo *ri)
3030 {
3031     return vfp_get_fpcr(env);
3032 }
3033
3034 static void aa64_fpcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3035                             uint64_t value)
3036 {
3037     vfp_set_fpcr(env, value);
3038 }
3039
3040 static uint64_t aa64_fpsr_read(CPUARMState *env, const ARMCPRegInfo *ri)
3041 {
3042     return vfp_get_fpsr(env);
3043 }
3044
3045 static void aa64_fpsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3046                             uint64_t value)
3047 {
3048     vfp_set_fpsr(env, value);
3049 }
3050
3051 static CPAccessResult aa64_daif_access(CPUARMState *env, const ARMCPRegInfo *ri,
3052                                        bool isread)
3053 {
3054     if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UMA)) {
3055         return CP_ACCESS_TRAP;
3056     }
3057     return CP_ACCESS_OK;
3058 }
3059
3060 static void aa64_daif_write(CPUARMState *env, const ARMCPRegInfo *ri,
3061                             uint64_t value)
3062 {
3063     env->daif = value & PSTATE_DAIF;
3064 }
3065
3066 static CPAccessResult aa64_cacheop_access(CPUARMState *env,
3067                                           const ARMCPRegInfo *ri,
3068                                           bool isread)
3069 {
3070     /* Cache invalidate/clean: NOP, but EL0 must UNDEF unless
3071      * SCTLR_EL1.UCI is set.
3072      */
3073     if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UCI)) {
3074         return CP_ACCESS_TRAP;
3075     }
3076     return CP_ACCESS_OK;
3077 }
3078
3079 /* See: D4.7.2 TLB maintenance requirements and the TLB maintenance instructions
3080  * Page D4-1736 (DDI0487A.b)
3081  */
3082
3083 static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
3084                                     uint64_t value)
3085 {
3086     CPUState *cs = ENV_GET_CPU(env);
3087
3088     if (arm_is_secure_below_el3(env)) {
3089         tlb_flush_by_mmuidx(cs,
3090                             ARMMMUIdxBit_S1SE1 |
3091                             ARMMMUIdxBit_S1SE0);
3092     } else {
3093         tlb_flush_by_mmuidx(cs,
3094                             ARMMMUIdxBit_S12NSE1 |
3095                             ARMMMUIdxBit_S12NSE0);
3096     }
3097 }
3098
3099 static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3100                                       uint64_t value)
3101 {
3102     CPUState *cs = ENV_GET_CPU(env);
3103     bool sec = arm_is_secure_below_el3(env);
3104
3105     if (sec) {
3106         tlb_flush_by_mmuidx_all_cpus_synced(cs,
3107                                             ARMMMUIdxBit_S1SE1 |
3108                                             ARMMMUIdxBit_S1SE0);
3109     } else {
3110         tlb_flush_by_mmuidx_all_cpus_synced(cs,
3111                                             ARMMMUIdxBit_S12NSE1 |
3112                                             ARMMMUIdxBit_S12NSE0);
3113     }
3114 }
3115
3116 static void tlbi_aa64_alle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
3117                                   uint64_t value)
3118 {
3119     /* Note that the 'ALL' scope must invalidate both stage 1 and
3120      * stage 2 translations, whereas most other scopes only invalidate
3121      * stage 1 translations.
3122      */
3123     ARMCPU *cpu = arm_env_get_cpu(env);
3124     CPUState *cs = CPU(cpu);
3125
3126     if (arm_is_secure_below_el3(env)) {
3127         tlb_flush_by_mmuidx(cs,
3128                             ARMMMUIdxBit_S1SE1 |
3129                             ARMMMUIdxBit_S1SE0);
3130     } else {
3131         if (arm_feature(env, ARM_FEATURE_EL2)) {
3132             tlb_flush_by_mmuidx(cs,
3133                                 ARMMMUIdxBit_S12NSE1 |
3134                                 ARMMMUIdxBit_S12NSE0 |
3135                                 ARMMMUIdxBit_S2NS);
3136         } else {
3137             tlb_flush_by_mmuidx(cs,
3138                                 ARMMMUIdxBit_S12NSE1 |
3139                                 ARMMMUIdxBit_S12NSE0);
3140         }
3141     }
3142 }
3143
3144 static void tlbi_aa64_alle2_write(CPUARMState *env, const ARMCPRegInfo *ri,
3145                                   uint64_t value)
3146 {
3147     ARMCPU *cpu = arm_env_get_cpu(env);
3148     CPUState *cs = CPU(cpu);
3149
3150     tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_S1E2);
3151 }
3152
3153 static void tlbi_aa64_alle3_write(CPUARMState *env, const ARMCPRegInfo *ri,
3154                                   uint64_t value)
3155 {
3156     ARMCPU *cpu = arm_env_get_cpu(env);
3157     CPUState *cs = CPU(cpu);
3158
3159     tlb_flush_by_mmuidx(cs, ARMMMUIdxBit_S1E3);
3160 }
3161
3162 static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3163                                     uint64_t value)
3164 {
3165     /* Note that the 'ALL' scope must invalidate both stage 1 and
3166      * stage 2 translations, whereas most other scopes only invalidate
3167      * stage 1 translations.
3168      */
3169     CPUState *cs = ENV_GET_CPU(env);
3170     bool sec = arm_is_secure_below_el3(env);
3171     bool has_el2 = arm_feature(env, ARM_FEATURE_EL2);
3172
3173     if (sec) {
3174         tlb_flush_by_mmuidx_all_cpus_synced(cs,
3175                                             ARMMMUIdxBit_S1SE1 |
3176                                             ARMMMUIdxBit_S1SE0);
3177     } else if (has_el2) {
3178         tlb_flush_by_mmuidx_all_cpus_synced(cs,
3179                                             ARMMMUIdxBit_S12NSE1 |
3180                                             ARMMMUIdxBit_S12NSE0 |
3181                                             ARMMMUIdxBit_S2NS);
3182     } else {
3183           tlb_flush_by_mmuidx_all_cpus_synced(cs,
3184                                               ARMMMUIdxBit_S12NSE1 |
3185                                               ARMMMUIdxBit_S12NSE0);
3186     }
3187 }
3188
3189 static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3190                                     uint64_t value)
3191 {
3192     CPUState *cs = ENV_GET_CPU(env);
3193
3194     tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E2);
3195 }
3196
3197 static void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3198                                     uint64_t value)
3199 {
3200     CPUState *cs = ENV_GET_CPU(env);
3201
3202     tlb_flush_by_mmuidx_all_cpus_synced(cs, ARMMMUIdxBit_S1E3);
3203 }
3204
3205 static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
3206                                  uint64_t value)
3207 {
3208     /* Invalidate by VA, EL1&0 (AArch64 version).
3209      * Currently handles all of VAE1, VAAE1, VAALE1 and VALE1,
3210      * since we don't support flush-for-specific-ASID-only or
3211      * flush-last-level-only.
3212      */
3213     ARMCPU *cpu = arm_env_get_cpu(env);
3214     CPUState *cs = CPU(cpu);
3215     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3216
3217     if (arm_is_secure_below_el3(env)) {
3218         tlb_flush_page_by_mmuidx(cs, pageaddr,
3219                                  ARMMMUIdxBit_S1SE1 |
3220                                  ARMMMUIdxBit_S1SE0);
3221     } else {
3222         tlb_flush_page_by_mmuidx(cs, pageaddr,
3223                                  ARMMMUIdxBit_S12NSE1 |
3224                                  ARMMMUIdxBit_S12NSE0);
3225     }
3226 }
3227
3228 static void tlbi_aa64_vae2_write(CPUARMState *env, const ARMCPRegInfo *ri,
3229                                  uint64_t value)
3230 {
3231     /* Invalidate by VA, EL2
3232      * Currently handles both VAE2 and VALE2, since we don't support
3233      * flush-last-level-only.
3234      */
3235     ARMCPU *cpu = arm_env_get_cpu(env);
3236     CPUState *cs = CPU(cpu);
3237     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3238
3239     tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S1E2);
3240 }
3241
3242 static void tlbi_aa64_vae3_write(CPUARMState *env, const ARMCPRegInfo *ri,
3243                                  uint64_t value)
3244 {
3245     /* Invalidate by VA, EL3
3246      * Currently handles both VAE3 and VALE3, since we don't support
3247      * flush-last-level-only.
3248      */
3249     ARMCPU *cpu = arm_env_get_cpu(env);
3250     CPUState *cs = CPU(cpu);
3251     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3252
3253     tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S1E3);
3254 }
3255
3256 static void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3257                                    uint64_t value)
3258 {
3259     ARMCPU *cpu = arm_env_get_cpu(env);
3260     CPUState *cs = CPU(cpu);
3261     bool sec = arm_is_secure_below_el3(env);
3262     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3263
3264     if (sec) {
3265         tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
3266                                                  ARMMMUIdxBit_S1SE1 |
3267                                                  ARMMMUIdxBit_S1SE0);
3268     } else {
3269         tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
3270                                                  ARMMMUIdxBit_S12NSE1 |
3271                                                  ARMMMUIdxBit_S12NSE0);
3272     }
3273 }
3274
3275 static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3276                                    uint64_t value)
3277 {
3278     CPUState *cs = ENV_GET_CPU(env);
3279     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3280
3281     tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
3282                                              ARMMMUIdxBit_S1E2);
3283 }
3284
3285 static void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3286                                    uint64_t value)
3287 {
3288     CPUState *cs = ENV_GET_CPU(env);
3289     uint64_t pageaddr = sextract64(value << 12, 0, 56);
3290
3291     tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
3292                                              ARMMMUIdxBit_S1E3);
3293 }
3294
3295 static void tlbi_aa64_ipas2e1_write(CPUARMState *env, const ARMCPRegInfo *ri,
3296                                     uint64_t value)
3297 {
3298     /* Invalidate by IPA. This has to invalidate any structures that
3299      * contain only stage 2 translation information, but does not need
3300      * to apply to structures that contain combined stage 1 and stage 2
3301      * translation information.
3302      * This must NOP if EL2 isn't implemented or SCR_EL3.NS is zero.
3303      */
3304     ARMCPU *cpu = arm_env_get_cpu(env);
3305     CPUState *cs = CPU(cpu);
3306     uint64_t pageaddr;
3307
3308     if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
3309         return;
3310     }
3311
3312     pageaddr = sextract64(value << 12, 0, 48);
3313
3314     tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdxBit_S2NS);
3315 }
3316
3317 static void tlbi_aa64_ipas2e1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
3318                                       uint64_t value)
3319 {
3320     CPUState *cs = ENV_GET_CPU(env);
3321     uint64_t pageaddr;
3322
3323     if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
3324         return;
3325     }
3326
3327     pageaddr = sextract64(value << 12, 0, 48);
3328
3329     tlb_flush_page_by_mmuidx_all_cpus_synced(cs, pageaddr,
3330                                              ARMMMUIdxBit_S2NS);
3331 }
3332
3333 static CPAccessResult aa64_zva_access(CPUARMState *env, const ARMCPRegInfo *ri,
3334                                       bool isread)
3335 {
3336     /* We don't implement EL2, so the only control on DC ZVA is the
3337      * bit in the SCTLR which can prohibit access for EL0.
3338      */
3339     if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_DZE)) {
3340         return CP_ACCESS_TRAP;
3341     }
3342     return CP_ACCESS_OK;
3343 }
3344
3345 static uint64_t aa64_dczid_read(CPUARMState *env, const ARMCPRegInfo *ri)
3346 {
3347     ARMCPU *cpu = arm_env_get_cpu(env);
3348     int dzp_bit = 1 << 4;
3349
3350     /* DZP indicates whether DC ZVA access is allowed */
3351     if (aa64_zva_access(env, NULL, false) == CP_ACCESS_OK) {
3352         dzp_bit = 0;
3353     }
3354     return cpu->dcz_blocksize | dzp_bit;
3355 }
3356
3357 static CPAccessResult sp_el0_access(CPUARMState *env, const ARMCPRegInfo *ri,
3358                                     bool isread)
3359 {
3360     if (!(env->pstate & PSTATE_SP)) {
3361         /* Access to SP_EL0 is undefined if it's being used as
3362          * the stack pointer.
3363          */
3364         return CP_ACCESS_TRAP_UNCATEGORIZED;
3365     }
3366     return CP_ACCESS_OK;
3367 }
3368
3369 static uint64_t spsel_read(CPUARMState *env, const ARMCPRegInfo *ri)
3370 {
3371     return env->pstate & PSTATE_SP;
3372 }
3373
3374 static void spsel_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t val)
3375 {
3376     update_spsel(env, val);
3377 }
3378
3379 static void sctlr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3380                         uint64_t value)
3381 {
3382     ARMCPU *cpu = arm_env_get_cpu(env);
3383
3384     if (raw_read(env, ri) == value) {
3385         /* Skip the TLB flush if nothing actually changed; Linux likes
3386          * to do a lot of pointless SCTLR writes.
3387          */
3388         return;
3389     }
3390
3391     if (arm_feature(env, ARM_FEATURE_PMSA) && !cpu->has_mpu) {
3392         /* M bit is RAZ/WI for PMSA with no MPU implemented */
3393         value &= ~SCTLR_M;
3394     }
3395
3396     raw_write(env, ri, value);
3397     /* ??? Lots of these bits are not implemented.  */
3398     /* This may enable/disable the MMU, so do a TLB flush.  */
3399     tlb_flush(CPU(cpu));
3400 }
3401
3402 static CPAccessResult fpexc32_access(CPUARMState *env, const ARMCPRegInfo *ri,
3403                                      bool isread)
3404 {
3405     if ((env->cp15.cptr_el[2] & CPTR_TFP) && arm_current_el(env) == 2) {
3406         return CP_ACCESS_TRAP_FP_EL2;
3407     }
3408     if (env->cp15.cptr_el[3] & CPTR_TFP) {
3409         return CP_ACCESS_TRAP_FP_EL3;
3410     }
3411     return CP_ACCESS_OK;
3412 }
3413
3414 static void sdcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3415                        uint64_t value)
3416 {
3417     env->cp15.mdcr_el3 = value & SDCR_VALID_MASK;
3418 }
3419
3420 static const ARMCPRegInfo v8_cp_reginfo[] = {
3421     /* Minimal set of EL0-visible registers. This will need to be expanded
3422      * significantly for system emulation of AArch64 CPUs.
3423      */
3424     { .name = "NZCV", .state = ARM_CP_STATE_AA64,
3425       .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 2,
3426       .access = PL0_RW, .type = ARM_CP_NZCV },
3427     { .name = "DAIF", .state = ARM_CP_STATE_AA64,
3428       .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 2,
3429       .type = ARM_CP_NO_RAW,
3430       .access = PL0_RW, .accessfn = aa64_daif_access,
3431       .fieldoffset = offsetof(CPUARMState, daif),
3432       .writefn = aa64_daif_write, .resetfn = arm_cp_reset_ignore },
3433     { .name = "FPCR", .state = ARM_CP_STATE_AA64,
3434       .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 4,
3435       .access = PL0_RW, .type = ARM_CP_FPU | ARM_CP_SUPPRESS_TB_END,
3436       .readfn = aa64_fpcr_read, .writefn = aa64_fpcr_write },
3437     { .name = "FPSR", .state = ARM_CP_STATE_AA64,
3438       .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 4,
3439       .access = PL0_RW, .type = ARM_CP_FPU | ARM_CP_SUPPRESS_TB_END,
3440       .readfn = aa64_fpsr_read, .writefn = aa64_fpsr_write },
3441     { .name = "DCZID_EL0", .state = ARM_CP_STATE_AA64,
3442       .opc0 = 3, .opc1 = 3, .opc2 = 7, .crn = 0, .crm = 0,
3443       .access = PL0_R, .type = ARM_CP_NO_RAW,
3444       .readfn = aa64_dczid_read },
3445     { .name = "DC_ZVA", .state = ARM_CP_STATE_AA64,
3446       .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 4, .opc2 = 1,
3447       .access = PL0_W, .type = ARM_CP_DC_ZVA,
3448 #ifndef CONFIG_USER_ONLY
3449       /* Avoid overhead of an access check that always passes in user-mode */
3450       .accessfn = aa64_zva_access,
3451 #endif
3452     },
3453     { .name = "CURRENTEL", .state = ARM_CP_STATE_AA64,
3454       .opc0 = 3, .opc1 = 0, .opc2 = 2, .crn = 4, .crm = 2,
3455       .access = PL1_R, .type = ARM_CP_CURRENTEL },
3456     /* Cache ops: all NOPs since we don't emulate caches */
3457     { .name = "IC_IALLUIS", .state = ARM_CP_STATE_AA64,
3458       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
3459       .access = PL1_W, .type = ARM_CP_NOP },
3460     { .name = "IC_IALLU", .state = ARM_CP_STATE_AA64,
3461       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
3462       .access = PL1_W, .type = ARM_CP_NOP },
3463     { .name = "IC_IVAU", .state = ARM_CP_STATE_AA64,
3464       .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 5, .opc2 = 1,
3465       .access = PL0_W, .type = ARM_CP_NOP,
3466       .accessfn = aa64_cacheop_access },
3467     { .name = "DC_IVAC", .state = ARM_CP_STATE_AA64,
3468       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
3469       .access = PL1_W, .type = ARM_CP_NOP },
3470     { .name = "DC_ISW", .state = ARM_CP_STATE_AA64,
3471       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
3472       .access = PL1_W, .type = ARM_CP_NOP },
3473     { .name = "DC_CVAC", .state = ARM_CP_STATE_AA64,
3474       .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 10, .opc2 = 1,
3475       .access = PL0_W, .type = ARM_CP_NOP,
3476       .accessfn = aa64_cacheop_access },
3477     { .name = "DC_CSW", .state = ARM_CP_STATE_AA64,
3478       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
3479       .access = PL1_W, .type = ARM_CP_NOP },
3480     { .name = "DC_CVAU", .state = ARM_CP_STATE_AA64,
3481       .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 11, .opc2 = 1,
3482       .access = PL0_W, .type = ARM_CP_NOP,
3483       .accessfn = aa64_cacheop_access },
3484     { .name = "DC_CIVAC", .state = ARM_CP_STATE_AA64,
3485       .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 14, .opc2 = 1,
3486       .access = PL0_W, .type = ARM_CP_NOP,
3487       .accessfn = aa64_cacheop_access },
3488     { .name = "DC_CISW", .state = ARM_CP_STATE_AA64,
3489       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
3490       .access = PL1_W, .type = ARM_CP_NOP },
3491     /* TLBI operations */
3492     { .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64,
3493       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
3494       .access = PL1_W, .type = ARM_CP_NO_RAW,
3495       .writefn = tlbi_aa64_vmalle1is_write },
3496     { .name = "TLBI_VAE1IS", .state = ARM_CP_STATE_AA64,
3497       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
3498       .access = PL1_W, .type = ARM_CP_NO_RAW,
3499       .writefn = tlbi_aa64_vae1is_write },
3500     { .name = "TLBI_ASIDE1IS", .state = ARM_CP_STATE_AA64,
3501       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
3502       .access = PL1_W, .type = ARM_CP_NO_RAW,
3503       .writefn = tlbi_aa64_vmalle1is_write },
3504     { .name = "TLBI_VAAE1IS", .state = ARM_CP_STATE_AA64,
3505       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
3506       .access = PL1_W, .type = ARM_CP_NO_RAW,
3507       .writefn = tlbi_aa64_vae1is_write },
3508     { .name = "TLBI_VALE1IS", .state = ARM_CP_STATE_AA64,
3509       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
3510       .access = PL1_W, .type = ARM_CP_NO_RAW,
3511       .writefn = tlbi_aa64_vae1is_write },
3512     { .name = "TLBI_VAALE1IS", .state = ARM_CP_STATE_AA64,
3513       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
3514       .access = PL1_W, .type = ARM_CP_NO_RAW,
3515       .writefn = tlbi_aa64_vae1is_write },
3516     { .name = "TLBI_VMALLE1", .state = ARM_CP_STATE_AA64,
3517       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
3518       .access = PL1_W, .type = ARM_CP_NO_RAW,
3519       .writefn = tlbi_aa64_vmalle1_write },
3520     { .name = "TLBI_VAE1", .state = ARM_CP_STATE_AA64,
3521       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
3522       .access = PL1_W, .type = ARM_CP_NO_RAW,
3523       .writefn = tlbi_aa64_vae1_write },
3524     { .name = "TLBI_ASIDE1", .state = ARM_CP_STATE_AA64,
3525       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
3526       .access = PL1_W, .type = ARM_CP_NO_RAW,
3527       .writefn = tlbi_aa64_vmalle1_write },
3528     { .name = "TLBI_VAAE1", .state = ARM_CP_STATE_AA64,
3529       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
3530       .access = PL1_W, .type = ARM_CP_NO_RAW,
3531       .writefn = tlbi_aa64_vae1_write },
3532     { .name = "TLBI_VALE1", .state = ARM_CP_STATE_AA64,
3533       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
3534       .access = PL1_W, .type = ARM_CP_NO_RAW,
3535       .writefn = tlbi_aa64_vae1_write },
3536     { .name = "TLBI_VAALE1", .state = ARM_CP_STATE_AA64,
3537       .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
3538       .access = PL1_W, .type = ARM_CP_NO_RAW,
3539       .writefn = tlbi_aa64_vae1_write },
3540     { .name = "TLBI_IPAS2E1IS", .state = ARM_CP_STATE_AA64,
3541       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
3542       .access = PL2_W, .type = ARM_CP_NO_RAW,
3543       .writefn = tlbi_aa64_ipas2e1is_write },
3544     { .name = "TLBI_IPAS2LE1IS", .state = ARM_CP_STATE_AA64,
3545       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 5,
3546       .access = PL2_W, .type = ARM_CP_NO_RAW,
3547       .writefn = tlbi_aa64_ipas2e1is_write },
3548     { .name = "TLBI_ALLE1IS", .state = ARM_CP_STATE_AA64,
3549       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
3550       .access = PL2_W, .type = ARM_CP_NO_RAW,
3551       .writefn = tlbi_aa64_alle1is_write },
3552     { .name = "TLBI_VMALLS12E1IS", .state = ARM_CP_STATE_AA64,
3553       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 6,
3554       .access = PL2_W, .type = ARM_CP_NO_RAW,
3555       .writefn = tlbi_aa64_alle1is_write },
3556     { .name = "TLBI_IPAS2E1", .state = ARM_CP_STATE_AA64,
3557       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 1,
3558       .access = PL2_W, .type = ARM_CP_NO_RAW,
3559       .writefn = tlbi_aa64_ipas2e1_write },
3560     { .name = "TLBI_IPAS2LE1", .state = ARM_CP_STATE_AA64,
3561       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 5,
3562       .access = PL2_W, .type = ARM_CP_NO_RAW,
3563       .writefn = tlbi_aa64_ipas2e1_write },
3564     { .name = "TLBI_ALLE1", .state = ARM_CP_STATE_AA64,
3565       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 4,
3566       .access = PL2_W, .type = ARM_CP_NO_RAW,
3567       .writefn = tlbi_aa64_alle1_write },
3568     { .name = "TLBI_VMALLS12E1", .state = ARM_CP_STATE_AA64,
3569       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 6,
3570       .access = PL2_W, .type = ARM_CP_NO_RAW,
3571       .writefn = tlbi_aa64_alle1is_write },
3572 #ifndef CONFIG_USER_ONLY
3573     /* 64 bit address translation operations */
3574     { .name = "AT_S1E1R", .state = ARM_CP_STATE_AA64,
3575       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 0,
3576       .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3577     { .name = "AT_S1E1W", .state = ARM_CP_STATE_AA64,
3578       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 1,
3579       .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3580     { .name = "AT_S1E0R", .state = ARM_CP_STATE_AA64,
3581       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 2,
3582       .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3583     { .name = "AT_S1E0W", .state = ARM_CP_STATE_AA64,
3584       .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 3,
3585       .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3586     { .name = "AT_S12E1R", .state = ARM_CP_STATE_AA64,
3587       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 4,
3588       .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3589     { .name = "AT_S12E1W", .state = ARM_CP_STATE_AA64,
3590       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 5,
3591       .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3592     { .name = "AT_S12E0R", .state = ARM_CP_STATE_AA64,
3593       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 6,
3594       .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3595     { .name = "AT_S12E0W", .state = ARM_CP_STATE_AA64,
3596       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 7,
3597       .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3598     /* AT S1E2* are elsewhere as they UNDEF from EL3 if EL2 is not present */
3599     { .name = "AT_S1E3R", .state = ARM_CP_STATE_AA64,
3600       .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 0,
3601       .access = PL3_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3602     { .name = "AT_S1E3W", .state = ARM_CP_STATE_AA64,
3603       .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 1,
3604       .access = PL3_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3605     { .name = "PAR_EL1", .state = ARM_CP_STATE_AA64,
3606       .type = ARM_CP_ALIAS,
3607       .opc0 = 3, .opc1 = 0, .crn = 7, .crm = 4, .opc2 = 0,
3608       .access = PL1_RW, .resetvalue = 0,
3609       .fieldoffset = offsetof(CPUARMState, cp15.par_el[1]),
3610       .writefn = par_write },
3611 #endif
3612     /* TLB invalidate last level of translation table walk */
3613     { .name = "TLBIMVALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
3614       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_is_write },
3615     { .name = "TLBIMVAALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
3616       .type = ARM_CP_NO_RAW, .access = PL1_W,
3617       .writefn = tlbimvaa_is_write },
3618     { .name = "TLBIMVAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
3619       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
3620     { .name = "TLBIMVAAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
3621       .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimvaa_write },
3622     { .name = "TLBIMVALH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 5,
3623       .type = ARM_CP_NO_RAW, .access = PL2_W,
3624       .writefn = tlbimva_hyp_write },
3625     { .name = "TLBIMVALHIS",
3626       .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 5,
3627       .type = ARM_CP_NO_RAW, .access = PL2_W,
3628       .writefn = tlbimva_hyp_is_write },
3629     { .name = "TLBIIPAS2",
3630       .cp = 15, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 1,
3631       .type = ARM_CP_NO_RAW, .access = PL2_W,
3632       .writefn = tlbiipas2_write },
3633     { .name = "TLBIIPAS2IS",
3634       .cp = 15, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
3635       .type = ARM_CP_NO_RAW, .access = PL2_W,
3636       .writefn = tlbiipas2_is_write },
3637     { .name = "TLBIIPAS2L",
3638       .cp = 15, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 5,
3639       .type = ARM_CP_NO_RAW, .access = PL2_W,
3640       .writefn = tlbiipas2_write },
3641     { .name = "TLBIIPAS2LIS",
3642       .cp = 15, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 5,
3643       .type = ARM_CP_NO_RAW, .access = PL2_W,
3644       .writefn = tlbiipas2_is_write },
3645     /* 32 bit cache operations */
3646     { .name = "ICIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
3647       .type = ARM_CP_NOP, .access = PL1_W },
3648     { .name = "BPIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 6,
3649       .type = ARM_CP_NOP, .access = PL1_W },
3650     { .name = "ICIALLU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
3651       .type = ARM_CP_NOP, .access = PL1_W },
3652     { .name = "ICIMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 1,
3653       .type = ARM_CP_NOP, .access = PL1_W },
3654     { .name = "BPIALL", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 6,
3655       .type = ARM_CP_NOP, .access = PL1_W },
3656     { .name = "BPIMVA", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 7,
3657       .type = ARM_CP_NOP, .access = PL1_W },
3658     { .name = "DCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
3659       .type = ARM_CP_NOP, .access = PL1_W },
3660     { .name = "DCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
3661       .type = ARM_CP_NOP, .access = PL1_W },
3662     { .name = "DCCMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 1,
3663       .type = ARM_CP_NOP, .access = PL1_W },
3664     { .name = "DCCSW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
3665       .type = ARM_CP_NOP, .access = PL1_W },
3666     { .name = "DCCMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 11, .opc2 = 1,
3667       .type = ARM_CP_NOP, .access = PL1_W },
3668     { .name = "DCCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 1,
3669       .type = ARM_CP_NOP, .access = PL1_W },
3670     { .name = "DCCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
3671       .type = ARM_CP_NOP, .access = PL1_W },
3672     /* MMU Domain access control / MPU write buffer control */
3673     { .name = "DACR", .cp = 15, .opc1 = 0, .crn = 3, .crm = 0, .opc2 = 0,
3674       .access = PL1_RW, .resetvalue = 0,
3675       .writefn = dacr_write, .raw_writefn = raw_write,
3676       .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
3677                              offsetoflow32(CPUARMState, cp15.dacr_ns) } },
3678     { .name = "ELR_EL1", .state = ARM_CP_STATE_AA64,
3679       .type = ARM_CP_ALIAS,
3680       .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 1,
3681       .access = PL1_RW,
3682       .fieldoffset = offsetof(CPUARMState, elr_el[1]) },
3683     { .name = "SPSR_EL1", .state = ARM_CP_STATE_AA64,
3684       .type = ARM_CP_ALIAS,
3685       .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 0,
3686       .access = PL1_RW,
3687       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_SVC]) },
3688     /* We rely on the access checks not allowing the guest to write to the
3689      * state field when SPSel indicates that it's being used as the stack
3690      * pointer.
3691      */
3692     { .name = "SP_EL0", .state = ARM_CP_STATE_AA64,
3693       .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 1, .opc2 = 0,
3694       .access = PL1_RW, .accessfn = sp_el0_access,
3695       .type = ARM_CP_ALIAS,
3696       .fieldoffset = offsetof(CPUARMState, sp_el[0]) },
3697     { .name = "SP_EL1", .state = ARM_CP_STATE_AA64,
3698       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0,
3699       .access = PL2_RW, .type = ARM_CP_ALIAS,
3700       .fieldoffset = offsetof(CPUARMState, sp_el[1]) },
3701     { .name = "SPSel", .state = ARM_CP_STATE_AA64,
3702       .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0,
3703       .type = ARM_CP_NO_RAW,
3704       .access = PL1_RW, .readfn = spsel_read, .writefn = spsel_write },
3705     { .name = "FPEXC32_EL2", .state = ARM_CP_STATE_AA64,
3706       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 3, .opc2 = 0,
3707       .type = ARM_CP_ALIAS,
3708       .fieldoffset = offsetof(CPUARMState, vfp.xregs[ARM_VFP_FPEXC]),
3709       .access = PL2_RW, .accessfn = fpexc32_access },
3710     { .name = "DACR32_EL2", .state = ARM_CP_STATE_AA64,
3711       .opc0 = 3, .opc1 = 4, .crn = 3, .crm = 0, .opc2 = 0,
3712       .access = PL2_RW, .resetvalue = 0,
3713       .writefn = dacr_write, .raw_writefn = raw_write,
3714       .fieldoffset = offsetof(CPUARMState, cp15.dacr32_el2) },
3715     { .name = "IFSR32_EL2", .state = ARM_CP_STATE_AA64,
3716       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 0, .opc2 = 1,
3717       .access = PL2_RW, .resetvalue = 0,
3718       .fieldoffset = offsetof(CPUARMState, cp15.ifsr32_el2) },
3719     { .name = "SPSR_IRQ", .state = ARM_CP_STATE_AA64,
3720       .type = ARM_CP_ALIAS,
3721       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 0,
3722       .access = PL2_RW,
3723       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_IRQ]) },
3724     { .name = "SPSR_ABT", .state = ARM_CP_STATE_AA64,
3725       .type = ARM_CP_ALIAS,
3726       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 1,
3727       .access = PL2_RW,
3728       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_ABT]) },
3729     { .name = "SPSR_UND", .state = ARM_CP_STATE_AA64,
3730       .type = ARM_CP_ALIAS,
3731       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 2,
3732       .access = PL2_RW,
3733       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_UND]) },
3734     { .name = "SPSR_FIQ", .state = ARM_CP_STATE_AA64,
3735       .type = ARM_CP_ALIAS,
3736       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 3,
3737       .access = PL2_RW,
3738       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_FIQ]) },
3739     { .name = "MDCR_EL3", .state = ARM_CP_STATE_AA64,
3740       .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 3, .opc2 = 1,
3741       .resetvalue = 0,
3742       .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el3) },
3743     { .name = "SDCR", .type = ARM_CP_ALIAS,
3744       .cp = 15, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 1,
3745       .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
3746       .writefn = sdcr_write,
3747       .fieldoffset = offsetoflow32(CPUARMState, cp15.mdcr_el3) },
3748     REGINFO_SENTINEL
3749 };
3750
3751 /* Used to describe the behaviour of EL2 regs when EL2 does not exist.  */
3752 static const ARMCPRegInfo el3_no_el2_cp_reginfo[] = {
3753     { .name = "VBAR_EL2", .state = ARM_CP_STATE_BOTH,
3754       .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
3755       .access = PL2_RW,
3756       .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore },
3757     { .name = "HCR_EL2", .state = ARM_CP_STATE_BOTH,
3758       .type = ARM_CP_NO_RAW,
3759       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
3760       .access = PL2_RW,
3761       .type = ARM_CP_CONST, .resetvalue = 0 },
3762     { .name = "ESR_EL2", .state = ARM_CP_STATE_BOTH,
3763       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 2, .opc2 = 0,
3764       .access = PL2_RW,
3765       .type = ARM_CP_CONST, .resetvalue = 0 },
3766     { .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
3767       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
3768       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3769     { .name = "MAIR_EL2", .state = ARM_CP_STATE_BOTH,
3770       .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 0,
3771       .access = PL2_RW, .type = ARM_CP_CONST,
3772       .resetvalue = 0 },
3773     { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3774       .cp = 15, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 1,
3775       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3776     { .name = "AMAIR_EL2", .state = ARM_CP_STATE_BOTH,
3777       .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 0,
3778       .access = PL2_RW, .type = ARM_CP_CONST,
3779       .resetvalue = 0 },
3780     { .name = "HAMAIR1", .state = ARM_CP_STATE_AA32,
3781       .cp = 15, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 1,
3782       .access = PL2_RW, .type = ARM_CP_CONST,
3783       .resetvalue = 0 },
3784     { .name = "AFSR0_EL2", .state = ARM_CP_STATE_BOTH,
3785       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 0,
3786       .access = PL2_RW, .type = ARM_CP_CONST,
3787       .resetvalue = 0 },
3788     { .name = "AFSR1_EL2", .state = ARM_CP_STATE_BOTH,
3789       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 1,
3790       .access = PL2_RW, .type = ARM_CP_CONST,
3791       .resetvalue = 0 },
3792     { .name = "TCR_EL2", .state = ARM_CP_STATE_BOTH,
3793       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 2,
3794       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3795     { .name = "VTCR_EL2", .state = ARM_CP_STATE_BOTH,
3796       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
3797       .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
3798       .type = ARM_CP_CONST, .resetvalue = 0 },
3799     { .name = "VTTBR", .state = ARM_CP_STATE_AA32,
3800       .cp = 15, .opc1 = 6, .crm = 2,
3801       .access = PL2_RW, .accessfn = access_el3_aa32ns,
3802       .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
3803     { .name = "VTTBR_EL2", .state = ARM_CP_STATE_AA64,
3804       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 0,
3805       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3806     { .name = "SCTLR_EL2", .state = ARM_CP_STATE_BOTH,
3807       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 0,
3808       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3809     { .name = "TPIDR_EL2", .state = ARM_CP_STATE_BOTH,
3810       .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 2,
3811       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3812     { .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
3813       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
3814       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3815     { .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
3816       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3817       .resetvalue = 0 },
3818     { .name = "CNTHCTL_EL2", .state = ARM_CP_STATE_BOTH,
3819       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 1, .opc2 = 0,
3820       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3821     { .name = "CNTVOFF_EL2", .state = ARM_CP_STATE_AA64,
3822       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 0, .opc2 = 3,
3823       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3824     { .name = "CNTVOFF", .cp = 15, .opc1 = 4, .crm = 14,
3825       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3826       .resetvalue = 0 },
3827     { .name = "CNTHP_CVAL_EL2", .state = ARM_CP_STATE_AA64,
3828       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 2,
3829       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3830     { .name = "CNTHP_CVAL", .cp = 15, .opc1 = 6, .crm = 14,
3831       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3832       .resetvalue = 0 },
3833     { .name = "CNTHP_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
3834       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 0,
3835       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3836     { .name = "CNTHP_CTL_EL2", .state = ARM_CP_STATE_BOTH,
3837       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 1,
3838       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3839     { .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH,
3840       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1,
3841       .access = PL2_RW, .accessfn = access_tda,
3842       .type = ARM_CP_CONST, .resetvalue = 0 },
3843     { .name = "HPFAR_EL2", .state = ARM_CP_STATE_BOTH,
3844       .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
3845       .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
3846       .type = ARM_CP_CONST, .resetvalue = 0 },
3847     { .name = "HSTR_EL2", .state = ARM_CP_STATE_BOTH,
3848       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 3,
3849       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3850     { .name = "FAR_EL2", .state = ARM_CP_STATE_BOTH,
3851       .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 0,
3852       .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3853     { .name = "HIFAR", .state = ARM_CP_STATE_AA32,
3854       .type = ARM_CP_CONST,
3855       .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 2,
3856       .access = PL2_RW, .resetvalue = 0 },
3857     REGINFO_SENTINEL
3858 };
3859
3860 /* Ditto, but for registers which exist in ARMv8 but not v7 */
3861 static const ARMCPRegInfo el3_no_el2_v8_cp_reginfo[] = {
3862     { .name = "HCR2", .state = ARM_CP_STATE_AA32,
3863       .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 4,
3864       .access = PL2_RW,
3865       .type = ARM_CP_CONST, .resetvalue = 0 },
3866     REGINFO_SENTINEL
3867 };
3868
3869 static void hcr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
3870 {
3871     ARMCPU *cpu = arm_env_get_cpu(env);
3872     uint64_t valid_mask = HCR_MASK;
3873
3874     if (arm_feature(env, ARM_FEATURE_EL3)) {
3875         valid_mask &= ~HCR_HCD;
3876     } else if (cpu->psci_conduit != QEMU_PSCI_CONDUIT_SMC) {
3877         /* Architecturally HCR.TSC is RES0 if EL3 is not implemented.
3878          * However, if we're using the SMC PSCI conduit then QEMU is
3879          * effectively acting like EL3 firmware and so the guest at
3880          * EL2 should retain the ability to prevent EL1 from being
3881          * able to make SMC calls into the ersatz firmware, so in
3882          * that case HCR.TSC should be read/write.
3883          */
3884         valid_mask &= ~HCR_TSC;
3885     }
3886
3887     /* Clear RES0 bits.  */
3888     value &= valid_mask;
3889
3890     /* These bits change the MMU setup:
3891      * HCR_VM enables stage 2 translation
3892      * HCR_PTW forbids certain page-table setups
3893      * HCR_DC Disables stage1 and enables stage2 translation
3894      */
3895     if ((env->cp15.hcr_el2 ^ value) & (HCR_VM | HCR_PTW | HCR_DC)) {
3896         tlb_flush(CPU(cpu));
3897     }
3898     env->cp15.hcr_el2 = value;
3899 }
3900
3901 static void hcr_writehigh(CPUARMState *env, const ARMCPRegInfo *ri,
3902                           uint64_t value)
3903 {
3904     /* Handle HCR2 write, i.e. write to high half of HCR_EL2 */
3905     value = deposit64(env->cp15.hcr_el2, 32, 32, value);
3906     hcr_write(env, NULL, value);
3907 }
3908
3909 static void hcr_writelow(CPUARMState *env, const ARMCPRegInfo *ri,
3910                          uint64_t value)
3911 {
3912     /* Handle HCR write, i.e. write to low half of HCR_EL2 */
3913     value = deposit64(env->cp15.hcr_el2, 0, 32, value);
3914     hcr_write(env, NULL, value);
3915 }
3916
3917 static const ARMCPRegInfo el2_cp_reginfo[] = {
3918     { .name = "HCR_EL2", .state = ARM_CP_STATE_AA64,
3919       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
3920       .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
3921       .writefn = hcr_write },
3922     { .name = "HCR", .state = ARM_CP_STATE_AA32,
3923       .type = ARM_CP_ALIAS,
3924       .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
3925       .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
3926       .writefn = hcr_writelow },
3927     { .name = "ELR_EL2", .state = ARM_CP_STATE_AA64,
3928       .type = ARM_CP_ALIAS,
3929       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 1,
3930       .access = PL2_RW,
3931       .fieldoffset = offsetof(CPUARMState, elr_el[2]) },
3932     { .name = "ESR_EL2", .state = ARM_CP_STATE_BOTH,
3933       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 2, .opc2 = 0,
3934       .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[2]) },
3935     { .name = "FAR_EL2", .state = ARM_CP_STATE_BOTH,
3936       .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 0,
3937       .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[2]) },
3938     { .name = "HIFAR", .state = ARM_CP_STATE_AA32,
3939       .type = ARM_CP_ALIAS,
3940       .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 2,
3941       .access = PL2_RW,
3942       .fieldoffset = offsetofhigh32(CPUARMState, cp15.far_el[2]) },
3943     { .name = "SPSR_EL2", .state = ARM_CP_STATE_AA64,
3944       .type = ARM_CP_ALIAS,
3945       .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 0,
3946       .access = PL2_RW,
3947       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_HYP]) },
3948     { .name = "VBAR_EL2", .state = ARM_CP_STATE_BOTH,
3949       .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
3950       .access = PL2_RW, .writefn = vbar_write,
3951       .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[2]),
3952       .resetvalue = 0 },
3953     { .name = "SP_EL2", .state = ARM_CP_STATE_AA64,
3954       .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 1, .opc2 = 0,
3955       .access = PL3_RW, .type = ARM_CP_ALIAS,
3956       .fieldoffset = offsetof(CPUARMState, sp_el[2]) },
3957     { .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
3958       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
3959       .access = PL2_RW, .accessfn = cptr_access, .resetvalue = 0,
3960       .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[2]) },
3961     { .name = "MAIR_EL2", .state = ARM_CP_STATE_BOTH,
3962       .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 0,
3963       .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[2]),
3964       .resetvalue = 0 },
3965     { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3966       .cp = 15, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 1,
3967       .access = PL2_RW, .type = ARM_CP_ALIAS,
3968       .fieldoffset = offsetofhigh32(CPUARMState, cp15.mair_el[2]) },
3969     { .name = "AMAIR_EL2", .state = ARM_CP_STATE_BOTH,
3970       .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 0,
3971       .access = PL2_RW, .type = ARM_CP_CONST,
3972       .resetvalue = 0 },
3973     /* HAMAIR1 is mapped to AMAIR_EL2[63:32] */
3974     { .name = "HAMAIR1", .state = ARM_CP_STATE_AA32,
3975       .cp = 15, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 1,
3976       .access = PL2_RW, .type = ARM_CP_CONST,
3977       .resetvalue = 0 },
3978     { .name = "AFSR0_EL2", .state = ARM_CP_STATE_BOTH,
3979       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 0,
3980       .access = PL2_RW, .type = ARM_CP_CONST,
3981       .resetvalue = 0 },
3982     { .name = "AFSR1_EL2", .state = ARM_CP_STATE_BOTH,
3983       .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 1,
3984       .access = PL2_RW, .type = ARM_CP_CONST,
3985       .resetvalue = 0 },
3986     { .name = "TCR_EL2", .state = ARM_CP_STATE_BOTH,
3987       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 2,
3988       .access = PL2_RW,
3989       /* no .writefn needed as this can't cause an ASID change;
3990        * no .raw_writefn or .resetfn needed as we never use mask/base_mask
3991        */
3992       .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[2]) },
3993     { .name = "VTCR", .state = ARM_CP_STATE_AA32,
3994       .cp = 15, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
3995       .type = ARM_CP_ALIAS,
3996       .access = PL2_RW, .accessfn = access_el3_aa32ns,
3997       .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
3998     { .name = "VTCR_EL2", .state = ARM_CP_STATE_AA64,
3999       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
4000       .access = PL2_RW,
4001       /* no .writefn needed as this can't cause an ASID change;
4002        * no .raw_writefn or .resetfn needed as we never use mask/base_mask
4003        */
4004       .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
4005     { .name = "VTTBR", .state = ARM_CP_STATE_AA32,
4006       .cp = 15, .opc1 = 6, .crm = 2,
4007       .type = ARM_CP_64BIT | ARM_CP_ALIAS,
4008       .access = PL2_RW, .accessfn = access_el3_aa32ns,
4009       .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2),
4010       .writefn = vttbr_write },
4011     { .name = "VTTBR_EL2", .state = ARM_CP_STATE_AA64,
4012       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 0,
4013       .access = PL2_RW, .writefn = vttbr_write,
4014       .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2) },
4015     { .name = "SCTLR_EL2", .state = ARM_CP_STATE_BOTH,
4016       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 0,
4017       .access = PL2_RW, .raw_writefn = raw_write, .writefn = sctlr_write,
4018       .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[2]) },
4019     { .name = "TPIDR_EL2", .state = ARM_CP_STATE_BOTH,
4020       .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 2,
4021       .access = PL2_RW, .resetvalue = 0,
4022       .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[2]) },
4023     { .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
4024       .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
4025       .access = PL2_RW, .resetvalue = 0,
4026       .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
4027     { .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
4028       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
4029       .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
4030     { .name = "TLBIALLNSNH",
4031       .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 4,
4032       .type = ARM_CP_NO_RAW, .access = PL2_W,
4033       .writefn = tlbiall_nsnh_write },
4034     { .name = "TLBIALLNSNHIS",
4035       .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
4036       .type = ARM_CP_NO_RAW, .access = PL2_W,
4037       .writefn = tlbiall_nsnh_is_write },
4038     { .name = "TLBIALLH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 0,
4039       .type = ARM_CP_NO_RAW, .access = PL2_W,
4040       .writefn = tlbiall_hyp_write },
4041     { .name = "TLBIALLHIS", .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 0,
4042       .type = ARM_CP_NO_RAW, .access = PL2_W,
4043       .writefn = tlbiall_hyp_is_write },
4044     { .name = "TLBIMVAH", .cp = 15, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 1,
4045       .type = ARM_CP_NO_RAW, .access = PL2_W,
4046       .writefn = tlbimva_hyp_write },
4047     { .name = "TLBIMVAHIS", .cp = 15, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 1,
4048       .type = ARM_CP_NO_RAW, .access = PL2_W,
4049       .writefn = tlbimva_hyp_is_write },
4050     { .name = "TLBI_ALLE2", .state = ARM_CP_STATE_AA64,
4051       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 0,
4052       .type = ARM_CP_NO_RAW, .access = PL2_W,
4053       .writefn = tlbi_aa64_alle2_write },
4054     { .name = "TLBI_VAE2", .state = ARM_CP_STATE_AA64,
4055       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 1,
4056       .type = ARM_CP_NO_RAW, .access = PL2_W,
4057       .writefn = tlbi_aa64_vae2_write },
4058     { .name = "TLBI_VALE2", .state = ARM_CP_STATE_AA64,
4059       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 5,
4060       .access = PL2_W, .type = ARM_CP_NO_RAW,
4061       .writefn = tlbi_aa64_vae2_write },
4062     { .name = "TLBI_ALLE2IS", .state = ARM_CP_STATE_AA64,
4063       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 0,
4064       .access = PL2_W, .type = ARM_CP_NO_RAW,
4065       .writefn = tlbi_aa64_alle2is_write },
4066     { .name = "TLBI_VAE2IS", .state = ARM_CP_STATE_AA64,
4067       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 1,
4068       .type = ARM_CP_NO_RAW, .access = PL2_W,
4069       .writefn = tlbi_aa64_vae2is_write },
4070     { .name = "TLBI_VALE2IS", .state = ARM_CP_STATE_AA64,
4071       .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 5,
4072       .access = PL2_W, .type = ARM_CP_NO_RAW,
4073       .writefn = tlbi_aa64_vae2is_write },
4074 #ifndef CONFIG_USER_ONLY
4075     /* Unlike the other EL2-related AT operations, these must
4076      * UNDEF from EL3 if EL2 is not implemented, which is why we
4077      * define them here rather than with the rest of the AT ops.
4078      */
4079     { .name = "AT_S1E2R", .state = ARM_CP_STATE_AA64,
4080       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
4081       .access = PL2_W, .accessfn = at_s1e2_access,
4082       .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
4083     { .name = "AT_S1E2W", .state = ARM_CP_STATE_AA64,
4084       .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
4085       .access = PL2_W, .accessfn = at_s1e2_access,
4086       .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
4087     /* The AArch32 ATS1H* operations are CONSTRAINED UNPREDICTABLE
4088      * if EL2 is not implemented; we choose to UNDEF. Behaviour at EL3
4089      * with SCR.NS == 0 outside Monitor mode is UNPREDICTABLE; we choose
4090      * to behave as if SCR.NS was 1.
4091      */
4092     { .name = "ATS1HR", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
4093       .access = PL2_W,
4094       .writefn = ats1h_write, .type = ARM_CP_NO_RAW },
4095     { .name = "ATS1HW", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
4096       .access = PL2_W,
4097       .writefn = ats1h_write, .type = ARM_CP_NO_RAW },
4098     { .name = "CNTHCTL_EL2", .state = ARM_CP_STATE_BOTH,
4099       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 1, .opc2 = 0,
4100       /* ARMv7 requires bit 0 and 1 to reset to 1. ARMv8 defines the
4101        * reset values as IMPDEF. We choose to reset to 3 to comply with
4102        * both ARMv7 and ARMv8.
4103        */
4104       .access = PL2_RW, .resetvalue = 3,
4105       .fieldoffset = offsetof(CPUARMState, cp15.cnthctl_el2) },
4106     { .name = "CNTVOFF_EL2", .state = ARM_CP_STATE_AA64,
4107       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 0, .opc2 = 3,
4108       .access = PL2_RW, .type = ARM_CP_IO, .resetvalue = 0,
4109       .writefn = gt_cntvoff_write,
4110       .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
4111     { .name = "CNTVOFF", .cp = 15, .opc1 = 4, .crm = 14,
4112       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS | ARM_CP_IO,
4113       .writefn = gt_cntvoff_write,
4114       .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
4115     { .name = "CNTHP_CVAL_EL2", .state = ARM_CP_STATE_AA64,
4116       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 2,
4117       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
4118       .type = ARM_CP_IO, .access = PL2_RW,
4119       .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
4120     { .name = "CNTHP_CVAL", .cp = 15, .opc1 = 6, .crm = 14,
4121       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
4122       .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_IO,
4123       .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
4124     { .name = "CNTHP_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
4125       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 0,
4126       .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL2_RW,
4127       .resetfn = gt_hyp_timer_reset,
4128       .readfn = gt_hyp_tval_read, .writefn = gt_hyp_tval_write },
4129     { .name = "CNTHP_CTL_EL2", .state = ARM_CP_STATE_BOTH,
4130       .type = ARM_CP_IO,
4131       .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 1,
4132       .access = PL2_RW,
4133       .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].ctl),
4134       .resetvalue = 0,
4135       .writefn = gt_hyp_ctl_write, .raw_writefn = raw_write },
4136 #endif
4137     /* The only field of MDCR_EL2 that has a defined architectural reset value
4138      * is MDCR_EL2.HPMN which should reset to the value of PMCR_EL0.N; but we
4139      * don't impelment any PMU event counters, so using zero as a reset
4140      * value for MDCR_EL2 is okay
4141      */
4142     { .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH,
4143       .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1,
4144       .access = PL2_RW, .resetvalue = 0,
4145       .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el2), },
4146     { .name = "HPFAR", .state = ARM_CP_STATE_AA32,
4147       .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
4148       .access = PL2_RW, .accessfn = access_el3_aa32ns,
4149       .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
4150     { .name = "HPFAR_EL2", .state = ARM_CP_STATE_AA64,
4151       .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
4152       .access = PL2_RW,
4153       .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
4154     { .name = "HSTR_EL2", .state = ARM_CP_STATE_BOTH,
4155       .cp = 15, .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 3,
4156       .access = PL2_RW,
4157       .fieldoffset = offsetof(CPUARMState, cp15.hstr_el2) },
4158     REGINFO_SENTINEL
4159 };
4160
4161 static const ARMCPRegInfo el2_v8_cp_reginfo[] = {
4162     { .name = "HCR2", .state = ARM_CP_STATE_AA32,
4163       .type = ARM_CP_ALIAS,
4164       .cp = 15, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 4,
4165       .access = PL2_RW,
4166       .fieldoffset = offsetofhigh32(CPUARMState, cp15.hcr_el2),
4167       .writefn = hcr_writehigh },
4168     REGINFO_SENTINEL
4169 };
4170
4171 static CPAccessResult nsacr_access(CPUARMState *env, const ARMCPRegInfo *ri,
4172                                    bool isread)
4173 {
4174     /* The NSACR is RW at EL3, and RO for NS EL1 and NS EL2.
4175      * At Secure EL1 it traps to EL3.
4176      */
4177     if (arm_current_el(env) == 3) {
4178         return CP_ACCESS_OK;
4179     }
4180     if (arm_is_secure_below_el3(env)) {
4181         return CP_ACCESS_TRAP_EL3;
4182     }
4183     /* Accesses from EL1 NS and EL2 NS are UNDEF for write but allow reads. */
4184     if (isread) {
4185         return CP_ACCESS_OK;
4186     }
4187     return CP_ACCESS_TRAP_UNCATEGORIZED;
4188 }
4189
4190 static const ARMCPRegInfo el3_cp_reginfo[] = {
4191     { .name = "SCR_EL3", .state = ARM_CP_STATE_AA64,
4192       .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 0,
4193       .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.scr_el3),
4194       .resetvalue = 0, .writefn = scr_write },
4195     { .name = "SCR",  .type = ARM_CP_ALIAS,
4196       .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 0,
4197       .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
4198       .fieldoffset = offsetoflow32(CPUARMState, cp15.scr_el3),
4199       .writefn = scr_write },
4200     { .name = "SDER32_EL3", .state = ARM_CP_STATE_AA64,
4201       .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 1,
4202       .access = PL3_RW, .resetvalue = 0,
4203       .fieldoffset = offsetof(CPUARMState, cp15.sder) },
4204     { .name = "SDER",
4205       .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 1,
4206       .access = PL3_RW, .resetvalue = 0,
4207       .fieldoffset = offsetoflow32(CPUARMState, cp15.sder) },
4208     { .name = "MVBAR", .cp = 15, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
4209       .access = PL1_RW, .accessfn = access_trap_aa32s_el1,
4210       .writefn = vbar_write, .resetvalue = 0,
4211       .fieldoffset = offsetof(CPUARMState, cp15.mvbar) },
4212     { .name = "TTBR0_EL3", .state = ARM_CP_STATE_AA64,
4213       .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 0,
4214       .access = PL3_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
4215       .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[3]) },
4216     { .name = "TCR_EL3", .state = ARM_CP_STATE_AA64,
4217       .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 2,
4218       .access = PL3_RW,
4219       /* no .writefn needed as this can't cause an ASID change;
4220        * we must provide a .raw_writefn and .resetfn because we handle
4221        * reset and migration for the AArch32 TTBCR(S), which might be
4222        * using mask and base_mask.
4223        */
4224       .resetfn = vmsa_ttbcr_reset, .raw_writefn = vmsa_ttbcr_raw_write,
4225       .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[3]) },
4226     { .name = "ELR_EL3", .state = ARM_CP_STATE_AA64,
4227       .type = ARM_CP_ALIAS,
4228       .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 1,
4229       .access = PL3_RW,
4230       .fieldoffset = offsetof(CPUARMState, elr_el[3]) },
4231     { .name = "ESR_EL3", .state = ARM_CP_STATE_AA64,
4232       .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 2, .opc2 = 0,
4233       .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[3]) },
4234     { .name = "FAR_EL3", .state = ARM_CP_STATE_AA64,
4235       .opc0 = 3, .opc1 = 6, .crn = 6, .crm = 0, .opc2 = 0,
4236       .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[3]) },
4237     { .name = "SPSR_EL3", .state = ARM_CP_STATE_AA64,
4238       .type = ARM_CP_ALIAS,
4239       .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 0,
4240       .access = PL3_RW,
4241       .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_MON]) },
4242     { .name = "VBAR_EL3", .state = ARM_CP_STATE_AA64,
4243       .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 0,
4244       .access = PL3_RW, .writefn = vbar_write,
4245       .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[3]),
4246       .resetvalue = 0 },
4247     { .name = "CPTR_EL3", .state = ARM_CP_STATE_AA64,
4248       .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 2,
4249       .access = PL3_RW, .accessfn = cptr_access, .resetvalue = 0,
4250       .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[3]) },
4251     { .name = "TPIDR_EL3", .state = ARM_CP_STATE_AA64,
4252       .opc0 = 3, .opc1 = 6, .crn = 13, .crm = 0, .opc2 = 2,
4253       .access = PL3_RW, .resetvalue = 0,
4254       .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[3]) },
4255     { .name = "AMAIR_EL3", .state = ARM_CP_STATE_AA64,
4256       .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 3, .opc2 = 0,
4257       .access = PL3_RW, .type = ARM_CP_CONST,
4258       .resetvalue = 0 },
4259     { .name = "AFSR0_EL3", .state = ARM_CP_STATE_BOTH,
4260       .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 0,
4261       .access = PL3_RW, .type = ARM_CP_CONST,
4262       .resetvalue = 0 },
4263     { .name = "AFSR1_EL3", .state = ARM_CP_STATE_BOTH,
4264       .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 1,
4265       .access = PL3_RW, .type = ARM_CP_CONST,
4266       .resetvalue = 0 },
4267     { .name = "TLBI_ALLE3IS", .state = ARM_CP_STATE_AA64,
4268       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 0,
4269       .access = PL3_W, .type = ARM_CP_NO_RAW,
4270       .writefn = tlbi_aa64_alle3is_write },
4271     { .name = "TLBI_VAE3IS", .state = ARM_CP_STATE_AA64,
4272       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 1,
4273       .access = PL3_W, .type = ARM_CP_NO_RAW,
4274       .writefn = tlbi_aa64_vae3is_write },
4275     { .name = "TLBI_VALE3IS", .state = ARM_CP_STATE_AA64,
4276       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 5,
4277       .access = PL3_W, .type = ARM_CP_NO_RAW,
4278       .writefn = tlbi_aa64_vae3is_write },
4279     { .name = "TLBI_ALLE3", .state = ARM_CP_STATE_AA64,
4280       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 0,
4281       .access = PL3_W, .type = ARM_CP_NO_RAW,
4282       .writefn = tlbi_aa64_alle3_write },
4283     { .name = "TLBI_VAE3", .state = ARM_CP_STATE_AA64,
4284       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 1,
4285       .access = PL3_W, .type = ARM_CP_NO_RAW,
4286       .writefn = tlbi_aa64_vae3_write },
4287     { .name = "TLBI_VALE3", .state = ARM_CP_STATE_AA64,
4288       .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 5,
4289       .access = PL3_W, .type = ARM_CP_NO_RAW,
4290       .writefn = tlbi_aa64_vae3_write },
4291     REGINFO_SENTINEL
4292 };
4293
4294 static CPAccessResult ctr_el0_access(CPUARMState *env, const ARMCPRegInfo *ri,
4295                                      bool isread)
4296 {
4297     /* Only accessible in EL0 if SCTLR.UCT is set (and only in AArch64,
4298      * but the AArch32 CTR has its own reginfo struct)
4299      */
4300     if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UCT)) {
4301         return CP_ACCESS_TRAP;
4302     }
4303     return CP_ACCESS_OK;
4304 }
4305
4306 static void oslar_write(CPUARMState *env, const ARMCPRegInfo *ri,
4307                         uint64_t value)
4308 {
4309     /* Writes to OSLAR_EL1 may update the OS lock status, which can be
4310      * read via a bit in OSLSR_EL1.
4311      */
4312     int oslock;
4313
4314     if (ri->state == ARM_CP_STATE_AA32) {
4315         oslock = (value == 0xC5ACCE55);
4316     } else {
4317         oslock = value & 1;
4318     }
4319
4320     env->cp15.oslsr_el1 = deposit32(env->cp15.oslsr_el1, 1, 1, oslock);
4321 }
4322
4323 static const ARMCPRegInfo debug_cp_reginfo[] = {
4324     /* DBGDRAR, DBGDSAR: always RAZ since we don't implement memory mapped
4325      * debug components. The AArch64 version of DBGDRAR is named MDRAR_EL1;
4326      * unlike DBGDRAR it is never accessible from EL0.
4327      * DBGDSAR is deprecated and must RAZ from v8 anyway, so it has no AArch64
4328      * accessor.
4329      */
4330     { .name = "DBGDRAR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 0,
4331       .access = PL0_R, .accessfn = access_tdra,
4332       .type = ARM_CP_CONST, .resetvalue = 0 },
4333     { .name = "MDRAR_EL1", .state = ARM_CP_STATE_AA64,
4334       .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
4335       .access = PL1_R, .accessfn = access_tdra,
4336       .type = ARM_CP_CONST, .resetvalue = 0 },
4337     { .name = "DBGDSAR", .cp = 14, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
4338       .access = PL0_R, .accessfn = access_tdra,
4339       .type = ARM_CP_CONST, .resetvalue = 0 },
4340     /* Monitor debug system control register; the 32-bit alias is DBGDSCRext. */
4341     { .name = "MDSCR_EL1", .state = ARM_CP_STATE_BOTH,
4342       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
4343       .access = PL1_RW, .accessfn = access_tda,
4344       .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1),
4345       .resetvalue = 0 },
4346     /* MDCCSR_EL0, aka DBGDSCRint. This is a read-only mirror of MDSCR_EL1.
4347      * We don't implement the configurable EL0 access.
4348      */
4349     { .name = "MDCCSR_EL0", .state = ARM_CP_STATE_BOTH,
4350       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
4351       .type = ARM_CP_ALIAS,
4352       .access = PL1_R, .accessfn = access_tda,
4353       .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1), },
4354     { .name = "OSLAR_EL1", .state = ARM_CP_STATE_BOTH,
4355       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 4,
4356       .access = PL1_W, .type = ARM_CP_NO_RAW,
4357       .accessfn = access_tdosa,
4358       .writefn = oslar_write },
4359     { .name = "OSLSR_EL1", .state = ARM_CP_STATE_BOTH,
4360       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 4,
4361       .access = PL1_R, .resetvalue = 10,
4362       .accessfn = access_tdosa,
4363       .fieldoffset = offsetof(CPUARMState, cp15.oslsr_el1) },
4364     /* Dummy OSDLR_EL1: 32-bit Linux will read this */
4365     { .name = "OSDLR_EL1", .state = ARM_CP_STATE_BOTH,
4366       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 4,
4367       .access = PL1_RW, .accessfn = access_tdosa,
4368       .type = ARM_CP_NOP },
4369     /* Dummy DBGVCR: Linux wants to clear this on startup, but we don't
4370      * implement vector catch debug events yet.
4371      */
4372     { .name = "DBGVCR",
4373       .cp = 14, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
4374       .access = PL1_RW, .accessfn = access_tda,
4375       .type = ARM_CP_NOP },
4376     /* Dummy DBGVCR32_EL2 (which is only for a 64-bit hypervisor
4377      * to save and restore a 32-bit guest's DBGVCR)
4378      */
4379     { .name = "DBGVCR32_EL2", .state = ARM_CP_STATE_AA64,
4380       .opc0 = 2, .opc1 = 4, .crn = 0, .crm = 7, .opc2 = 0,
4381       .access = PL2_RW, .accessfn = access_tda,
4382       .type = ARM_CP_NOP },
4383     /* Dummy MDCCINT_EL1, since we don't implement the Debug Communications
4384      * Channel but Linux may try to access this register. The 32-bit
4385      * alias is DBGDCCINT.
4386      */
4387     { .name = "MDCCINT_EL1", .state = ARM_CP_STATE_BOTH,
4388       .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 0,
4389       .access = PL1_RW, .accessfn = access_tda,
4390       .type = ARM_CP_NOP },
4391     REGINFO_SENTINEL
4392 };
4393
4394 static const ARMCPRegInfo debug_lpae_cp_reginfo[] = {
4395     /* 64 bit access versions of the (dummy) debug registers */
4396     { .name = "DBGDRAR", .cp = 14, .crm = 1, .opc1 = 0,
4397       .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
4398     { .name = "DBGDSAR", .cp = 14, .crm = 2, .opc1 = 0,
4399       .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
4400     REGINFO_SENTINEL
4401 };
4402
4403 /* Return the exception level to which SVE-disabled exceptions should
4404  * be taken, or 0 if SVE is enabled.
4405  */
4406 static int sve_exception_el(CPUARMState *env)
4407 {
4408 #ifndef CONFIG_USER_ONLY
4409     unsigned current_el = arm_current_el(env);
4410
4411     /* The CPACR.ZEN controls traps to EL1:
4412      * 0, 2 : trap EL0 and EL1 accesses
4413      * 1    : trap only EL0 accesses
4414      * 3    : trap no accesses
4415      */
4416     switch (extract32(env->cp15.cpacr_el1, 16, 2)) {
4417     default:
4418         if (current_el <= 1) {
4419             /* Trap to PL1, which might be EL1 or EL3 */
4420             if (arm_is_secure(env) && !arm_el_is_aa64(env, 3)) {
4421                 return 3;
4422             }
4423             return 1;
4424         }
4425         break;
4426     case 1:
4427         if (current_el == 0) {
4428             return 1;
4429         }
4430         break;
4431     case 3:
4432         break;
4433     }
4434
4435     /* Similarly for CPACR.FPEN, after having checked ZEN.  */
4436     switch (extract32(env->cp15.cpacr_el1, 20, 2)) {
4437     default:
4438         if (current_el <= 1) {
4439             if (arm_is_secure(env) && !arm_el_is_aa64(env, 3)) {
4440                 return 3;
4441             }
4442             return 1;
4443         }
4444         break;
4445     case 1:
4446         if (current_el == 0) {
4447             return 1;
4448         }
4449         break;
4450     case 3:
4451         break;
4452     }
4453
4454     /* CPTR_EL2.  Check both TZ and TFP.  */
4455     if (current_el <= 2
4456         && (env->cp15.cptr_el[2] & (CPTR_TFP | CPTR_TZ))
4457         && !arm_is_secure_below_el3(env)) {
4458         return 2;
4459     }
4460
4461     /* CPTR_EL3.  Check both EZ and TFP.  */
4462     if (!(env->cp15.cptr_el[3] & CPTR_EZ)
4463         || (env->cp15.cptr_el[3] & CPTR_TFP)) {
4464         return 3;
4465     }
4466 #endif
4467     return 0;
4468 }
4469
4470 static void zcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4471                       uint64_t value)
4472 {
4473     /* Bits other than [3:0] are RAZ/WI.  */
4474     raw_write(env, ri, value & 0xf);
4475 }
4476
4477 static const ARMCPRegInfo zcr_el1_reginfo = {
4478     .name = "ZCR_EL1", .state = ARM_CP_STATE_AA64,
4479     .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 2, .opc2 = 0,
4480     .access = PL1_RW, .type = ARM_CP_SVE,
4481     .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[1]),
4482     .writefn = zcr_write, .raw_writefn = raw_write
4483 };
4484
4485 static const ARMCPRegInfo zcr_el2_reginfo = {
4486     .name = "ZCR_EL2", .state = ARM_CP_STATE_AA64,
4487     .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 2, .opc2 = 0,
4488     .access = PL2_RW, .type = ARM_CP_SVE,
4489     .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[2]),
4490     .writefn = zcr_write, .raw_writefn = raw_write
4491 };
4492
4493 static const ARMCPRegInfo zcr_no_el2_reginfo = {
4494     .name = "ZCR_EL2", .state = ARM_CP_STATE_AA64,
4495     .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 2, .opc2 = 0,
4496     .access = PL2_RW, .type = ARM_CP_SVE,
4497     .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore
4498 };
4499
4500 static const ARMCPRegInfo zcr_el3_reginfo = {
4501     .name = "ZCR_EL3", .state = ARM_CP_STATE_AA64,
4502     .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 2, .opc2 = 0,
4503     .access = PL3_RW, .type = ARM_CP_SVE,
4504     .fieldoffset = offsetof(CPUARMState, vfp.zcr_el[3]),
4505     .writefn = zcr_write, .raw_writefn = raw_write
4506 };
4507
4508 void hw_watchpoint_update(ARMCPU *cpu, int n)
4509 {
4510     CPUARMState *env = &cpu->env;
4511     vaddr len = 0;
4512     vaddr wvr = env->cp15.dbgwvr[n];
4513     uint64_t wcr = env->cp15.dbgwcr[n];
4514     int mask;
4515     int flags = BP_CPU | BP_STOP_BEFORE_ACCESS;
4516
4517     if (env->cpu_watchpoint[n]) {
4518         cpu_watchpoint_remove_by_ref(CPU(cpu), env->cpu_watchpoint[n]);
4519         env->cpu_watchpoint[n] = NULL;
4520     }
4521
4522     if (!extract64(wcr, 0, 1)) {
4523         /* E bit clear : watchpoint disabled */
4524         return;
4525     }
4526
4527     switch (extract64(wcr, 3, 2)) {
4528     case 0:
4529         /* LSC 00 is reserved and must behave as if the wp is disabled */
4530         return;
4531     case 1:
4532         flags |= BP_MEM_READ;
4533         break;
4534     case 2:
4535         flags |= BP_MEM_WRITE;
4536         break;
4537     case 3:
4538         flags |= BP_MEM_ACCESS;
4539         break;
4540     }
4541
4542     /* Attempts to use both MASK and BAS fields simultaneously are
4543      * CONSTRAINED UNPREDICTABLE; we opt to ignore BAS in this case,
4544      * thus generating a watchpoint for every byte in the masked region.
4545      */
4546     mask = extract64(wcr, 24, 4);
4547     if (mask == 1 || mask == 2) {
4548         /* Reserved values of MASK; we must act as if the mask value was
4549          * some non-reserved value, or as if the watchpoint were disabled.
4550          * We choose the latter.
4551          */
4552         return;
4553     } else if (mask) {
4554         /* Watchpoint covers an aligned area up to 2GB in size */
4555         len = 1ULL << mask;
4556         /* If masked bits in WVR are not zero it's CONSTRAINED UNPREDICTABLE
4557          * whether the watchpoint fires when the unmasked bits match; we opt
4558          * to generate the exceptions.
4559          */
4560         wvr &= ~(len - 1);
4561     } else {
4562         /* Watchpoint covers bytes defined by the byte address select bits */
4563         int bas = extract64(wcr, 5, 8);
4564         int basstart;
4565
4566         if (bas == 0) {
4567             /* This must act as if the watchpoint is disabled */
4568             return;
4569         }
4570
4571         if (extract64(wvr, 2, 1)) {
4572             /* Deprecated case of an only 4-aligned address. BAS[7:4] are
4573              * ignored, and BAS[3:0] define which bytes to watch.
4574              */
4575             bas &= 0xf;
4576         }
4577         /* The BAS bits are supposed to be programmed to indicate a contiguous
4578          * range of bytes. Otherwise it is CONSTRAINED UNPREDICTABLE whether
4579          * we fire for each byte in the word/doubleword addressed by the WVR.
4580          * We choose to ignore any non-zero bits after the first range of 1s.
4581          */
4582         basstart = ctz32(bas);
4583         len = cto32(bas >> basstart);
4584         wvr += basstart;
4585     }
4586
4587     cpu_watchpoint_insert(CPU(cpu), wvr, len, flags,
4588                           &env->cpu_watchpoint[n]);
4589 }
4590
4591 void hw_watchpoint_update_all(ARMCPU *cpu)
4592 {
4593     int i;
4594     CPUARMState *env = &cpu->env;
4595
4596     /* Completely clear out existing QEMU watchpoints and our array, to
4597      * avoid possible stale entries following migration load.
4598      */
4599     cpu_watchpoint_remove_all(CPU(cpu), BP_CPU);
4600     memset(env->cpu_watchpoint, 0, sizeof(env->cpu_watchpoint));
4601
4602     for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_watchpoint); i++) {
4603         hw_watchpoint_update(cpu, i);
4604     }
4605 }
4606
4607 static void dbgwvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4608                          uint64_t value)
4609 {
4610     ARMCPU *cpu = arm_env_get_cpu(env);
4611     int i = ri->crm;
4612
4613     /* Bits [63:49] are hardwired to the value of bit [48]; that is, the
4614      * register reads and behaves as if values written are sign extended.
4615      * Bits [1:0] are RES0.
4616      */
4617     value = sextract64(value, 0, 49) & ~3ULL;
4618
4619     raw_write(env, ri, value);
4620     hw_watchpoint_update(cpu, i);
4621 }
4622
4623 static void dbgwcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4624                          uint64_t value)
4625 {
4626     ARMCPU *cpu = arm_env_get_cpu(env);
4627     int i = ri->crm;
4628
4629     raw_write(env, ri, value);
4630     hw_watchpoint_update(cpu, i);
4631 }
4632
4633 void hw_breakpoint_update(ARMCPU *cpu, int n)
4634 {
4635     CPUARMState *env = &cpu->env;
4636     uint64_t bvr = env->cp15.dbgbvr[n];
4637     uint64_t bcr = env->cp15.dbgbcr[n];
4638     vaddr addr;
4639     int bt;
4640     int flags = BP_CPU;
4641
4642     if (env->cpu_breakpoint[n]) {
4643         cpu_breakpoint_remove_by_ref(CPU(cpu), env->cpu_breakpoint[n]);
4644         env->cpu_breakpoint[n] = NULL;
4645     }
4646
4647     if (!extract64(bcr, 0, 1)) {
4648         /* E bit clear : watchpoint disabled */
4649         return;
4650     }
4651
4652     bt = extract64(bcr, 20, 4);
4653
4654     switch (bt) {
4655     case 4: /* unlinked address mismatch (reserved if AArch64) */
4656     case 5: /* linked address mismatch (reserved if AArch64) */
4657         qemu_log_mask(LOG_UNIMP,
4658                       "arm: address mismatch breakpoint types not implemented\n");
4659         return;
4660     case 0: /* unlinked address match */
4661     case 1: /* linked address match */
4662     {
4663         /* Bits [63:49] are hardwired to the value of bit [48]; that is,
4664          * we behave as if the register was sign extended. Bits [1:0] are
4665          * RES0. The BAS field is used to allow setting breakpoints on 16
4666          * bit wide instructions; it is CONSTRAINED UNPREDICTABLE whether
4667          * a bp will fire if the addresses covered by the bp and the addresses
4668          * covered by the insn overlap but the insn doesn't start at the
4669          * start of the bp address range. We choose to require the insn and
4670          * the bp to have the same address. The constraints on writing to
4671          * BAS enforced in dbgbcr_write mean we have only four cases:
4672          *  0b0000  => no breakpoint
4673          *  0b0011  => breakpoint on addr
4674          *  0b1100  => breakpoint on addr + 2
4675          *  0b1111  => breakpoint on addr
4676          * See also figure D2-3 in the v8 ARM ARM (DDI0487A.c).
4677          */
4678         int bas = extract64(bcr, 5, 4);
4679         addr = sextract64(bvr, 0, 49) & ~3ULL;
4680         if (bas == 0) {
4681             return;
4682         }
4683         if (bas == 0xc) {
4684             addr += 2;
4685         }
4686         break;
4687     }
4688     case 2: /* unlinked context ID match */
4689     case 8: /* unlinked VMID match (reserved if no EL2) */
4690     case 10: /* unlinked context ID and VMID match (reserved if no EL2) */
4691         qemu_log_mask(LOG_UNIMP,
4692                       "arm: unlinked context breakpoint types not implemented\n");
4693         return;
4694     case 9: /* linked VMID match (reserved if no EL2) */
4695     case 11: /* linked context ID and VMID match (reserved if no EL2) */
4696     case 3: /* linked context ID match */
4697     default:
4698         /* We must generate no events for Linked context matches (unless
4699          * they are linked to by some other bp/wp, which is handled in
4700          * updates for the linking bp/wp). We choose to also generate no events
4701          * for reserved values.
4702          */
4703         return;
4704     }
4705
4706     cpu_breakpoint_insert(CPU(cpu), addr, flags, &env->cpu_breakpoint[n]);
4707 }
4708
4709 void hw_breakpoint_update_all(ARMCPU *cpu)
4710 {
4711     int i;
4712     CPUARMState *env = &cpu->env;
4713
4714     /* Completely clear out existing QEMU breakpoints and our array, to
4715      * avoid possible stale entries following migration load.
4716      */
4717     cpu_breakpoint_remove_all(CPU(cpu), BP_CPU);
4718     memset(env->cpu_breakpoint, 0, sizeof(env->cpu_breakpoint));
4719
4720     for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_breakpoint); i++) {
4721         hw_breakpoint_update(cpu, i);
4722     }
4723 }
4724
4725 static void dbgbvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4726                          uint64_t value)
4727 {
4728     ARMCPU *cpu = arm_env_get_cpu(env);
4729     int i = ri->crm;
4730
4731     raw_write(env, ri, value);
4732     hw_breakpoint_update(cpu, i);
4733 }
4734
4735 static void dbgbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
4736                          uint64_t value)
4737 {
4738     ARMCPU *cpu = arm_env_get_cpu(env);
4739     int i = ri->crm;
4740
4741     /* BAS[3] is a read-only copy of BAS[2], and BAS[1] a read-only
4742      * copy of BAS[0].
4743      */
4744     value = deposit64(value, 6, 1, extract64(value, 5, 1));
4745     value = deposit64(value, 8, 1, extract64(value, 7, 1));
4746
4747     raw_write(env, ri, value);
4748     hw_breakpoint_update(cpu, i);
4749 }
4750
4751 static void define_debug_regs(ARMCPU *cpu)
4752 {
4753     /* Define v7 and v8 architectural debug registers.
4754      * These are just dummy implementations for now.
4755      */
4756     int i;
4757     int wrps, brps, ctx_cmps;
4758     ARMCPRegInfo dbgdidr = {
4759         .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 0,
4760         .access = PL0_R, .accessfn = access_tda,
4761         .type = ARM_CP_CONST, .resetvalue = cpu->dbgdidr,
4762     };
4763
4764     /* Note that all these register fields hold "number of Xs minus 1". */
4765     brps = extract32(cpu->dbgdidr, 24, 4);
4766     wrps = extract32(cpu->dbgdidr, 28, 4);
4767     ctx_cmps = extract32(cpu->dbgdidr, 20, 4);
4768
4769     assert(ctx_cmps <= brps);
4770
4771     /* The DBGDIDR and ID_AA64DFR0_EL1 define various properties
4772      * of the debug registers such as number of breakpoints;
4773      * check that if they both exist then they agree.
4774      */
4775     if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
4776         assert(extract32(cpu->id_aa64dfr0, 12, 4) == brps);
4777         assert(extract32(cpu->id_aa64dfr0, 20, 4) == wrps);
4778         assert(extract32(cpu->id_aa64dfr0, 28, 4) == ctx_cmps);
4779     }
4780
4781     define_one_arm_cp_reg(cpu, &dbgdidr);
4782     define_arm_cp_regs(cpu, debug_cp_reginfo);
4783
4784     if (arm_feature(&cpu->env, ARM_FEATURE_LPAE)) {
4785         define_arm_cp_regs(cpu, debug_lpae_cp_reginfo);
4786     }
4787
4788     for (i = 0; i < brps + 1; i++) {
4789         ARMCPRegInfo dbgregs[] = {
4790             { .name = "DBGBVR", .state = ARM_CP_STATE_BOTH,
4791               .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 4,
4792               .access = PL1_RW, .accessfn = access_tda,
4793               .fieldoffset = offsetof(CPUARMState, cp15.dbgbvr[i]),
4794               .writefn = dbgbvr_write, .raw_writefn = raw_write
4795             },
4796             { .name = "DBGBCR", .state = ARM_CP_STATE_BOTH,
4797               .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 5,
4798               .access = PL1_RW, .accessfn = access_tda,
4799               .fieldoffset = offsetof(CPUARMState, cp15.dbgbcr[i]),
4800               .writefn = dbgbcr_write, .raw_writefn = raw_write
4801             },
4802             REGINFO_SENTINEL
4803         };
4804         define_arm_cp_regs(cpu, dbgregs);
4805     }
4806
4807     for (i = 0; i < wrps + 1; i++) {
4808         ARMCPRegInfo dbgregs[] = {
4809             { .name = "DBGWVR", .state = ARM_CP_STATE_BOTH,
4810               .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 6,
4811               .access = PL1_RW, .accessfn = access_tda,
4812               .fieldoffset = offsetof(CPUARMState, cp15.dbgwvr[i]),
4813               .writefn = dbgwvr_write, .raw_writefn = raw_write
4814             },
4815             { .name = "DBGWCR", .state = ARM_CP_STATE_BOTH,
4816               .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 7,
4817               .access = PL1_RW, .accessfn = access_tda,
4818               .fieldoffset = offsetof(CPUARMState, cp15.dbgwcr[i]),
4819               .writefn = dbgwcr_write, .raw_writefn = raw_write
4820             },
4821             REGINFO_SENTINEL
4822         };
4823         define_arm_cp_regs(cpu, dbgregs);
4824     }
4825 }
4826
4827 /* We don't know until after realize whether there's a GICv3
4828  * attached, and that is what registers the gicv3 sysregs.
4829  * So we have to fill in the GIC fields in ID_PFR/ID_PFR1_EL1/ID_AA64PFR0_EL1
4830  * at runtime.
4831  */
4832 static uint64_t id_pfr1_read(CPUARMState *env, const ARMCPRegInfo *ri)
4833 {
4834     ARMCPU *cpu = arm_env_get_cpu(env);
4835     uint64_t pfr1 = cpu->id_pfr1;
4836
4837     if (env->gicv3state) {
4838         pfr1 |= 1 << 28;
4839     }
4840     return pfr1;
4841 }
4842
4843 static uint64_t id_aa64pfr0_read(CPUARMState *env, const ARMCPRegInfo *ri)
4844 {
4845     ARMCPU *cpu = arm_env_get_cpu(env);
4846     uint64_t pfr0 = cpu->id_aa64pfr0;
4847
4848     if (env->gicv3state) {
4849         pfr0 |= 1 << 24;
4850     }
4851     return pfr0;
4852 }
4853
4854 void register_cp_regs_for_features(ARMCPU *cpu)
4855 {
4856     /* Register all the coprocessor registers based on feature bits */
4857     CPUARMState *env = &cpu->env;
4858     if (arm_feature(env, ARM_FEATURE_M)) {
4859         /* M profile has no coprocessor registers */
4860         return;
4861     }
4862
4863     define_arm_cp_regs(cpu, cp_reginfo);
4864     if (!arm_feature(env, ARM_FEATURE_V8)) {
4865         /* Must go early as it is full of wildcards that may be
4866          * overridden by later definitions.
4867          */
4868         define_arm_cp_regs(cpu, not_v8_cp_reginfo);
4869     }
4870
4871     if (arm_feature(env, ARM_FEATURE_V6)) {
4872         /* The ID registers all have impdef reset values */
4873         ARMCPRegInfo v6_idregs[] = {
4874             { .name = "ID_PFR0", .state = ARM_CP_STATE_BOTH,
4875               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
4876               .access = PL1_R, .type = ARM_CP_CONST,
4877               .resetvalue = cpu->id_pfr0 },
4878             /* ID_PFR1 is not a plain ARM_CP_CONST because we don't know
4879              * the value of the GIC field until after we define these regs.
4880              */
4881             { .name = "ID_PFR1", .state = ARM_CP_STATE_BOTH,
4882               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 1,
4883               .access = PL1_R, .type = ARM_CP_NO_RAW,
4884               .readfn = id_pfr1_read,
4885               .writefn = arm_cp_write_ignore },
4886             { .name = "ID_DFR0", .state = ARM_CP_STATE_BOTH,
4887               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 2,
4888               .access = PL1_R, .type = ARM_CP_CONST,
4889               .resetvalue = cpu->id_dfr0 },
4890             { .name = "ID_AFR0", .state = ARM_CP_STATE_BOTH,
4891               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 3,
4892               .access = PL1_R, .type = ARM_CP_CONST,
4893               .resetvalue = cpu->id_afr0 },
4894             { .name = "ID_MMFR0", .state = ARM_CP_STATE_BOTH,
4895               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 4,
4896               .access = PL1_R, .type = ARM_CP_CONST,
4897               .resetvalue = cpu->id_mmfr0 },
4898             { .name = "ID_MMFR1", .state = ARM_CP_STATE_BOTH,
4899               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 5,
4900               .access = PL1_R, .type = ARM_CP_CONST,
4901               .resetvalue = cpu->id_mmfr1 },
4902             { .name = "ID_MMFR2", .state = ARM_CP_STATE_BOTH,
4903               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 6,
4904               .access = PL1_R, .type = ARM_CP_CONST,
4905               .resetvalue = cpu->id_mmfr2 },
4906             { .name = "ID_MMFR3", .state = ARM_CP_STATE_BOTH,
4907               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 7,
4908               .access = PL1_R, .type = ARM_CP_CONST,
4909               .resetvalue = cpu->id_mmfr3 },
4910             { .name = "ID_ISAR0", .state = ARM_CP_STATE_BOTH,
4911               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 0,
4912               .access = PL1_R, .type = ARM_CP_CONST,
4913               .resetvalue = cpu->id_isar0 },
4914             { .name = "ID_ISAR1", .state = ARM_CP_STATE_BOTH,
4915               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 1,
4916               .access = PL1_R, .type = ARM_CP_CONST,
4917               .resetvalue = cpu->id_isar1 },
4918             { .name = "ID_ISAR2", .state = ARM_CP_STATE_BOTH,
4919               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
4920               .access = PL1_R, .type = ARM_CP_CONST,
4921               .resetvalue = cpu->id_isar2 },
4922             { .name = "ID_ISAR3", .state = ARM_CP_STATE_BOTH,
4923               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 3,
4924               .access = PL1_R, .type = ARM_CP_CONST,
4925               .resetvalue = cpu->id_isar3 },
4926             { .name = "ID_ISAR4", .state = ARM_CP_STATE_BOTH,
4927               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 4,
4928               .access = PL1_R, .type = ARM_CP_CONST,
4929               .resetvalue = cpu->id_isar4 },
4930             { .name = "ID_ISAR5", .state = ARM_CP_STATE_BOTH,
4931               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 5,
4932               .access = PL1_R, .type = ARM_CP_CONST,
4933               .resetvalue = cpu->id_isar5 },
4934             { .name = "ID_MMFR4", .state = ARM_CP_STATE_BOTH,
4935               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 6,
4936               .access = PL1_R, .type = ARM_CP_CONST,
4937               .resetvalue = cpu->id_mmfr4 },
4938             { .name = "ID_ISAR6", .state = ARM_CP_STATE_BOTH,
4939               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 7,
4940               .access = PL1_R, .type = ARM_CP_CONST,
4941               .resetvalue = cpu->id_isar6 },
4942             REGINFO_SENTINEL
4943         };
4944         define_arm_cp_regs(cpu, v6_idregs);
4945         define_arm_cp_regs(cpu, v6_cp_reginfo);
4946     } else {
4947         define_arm_cp_regs(cpu, not_v6_cp_reginfo);
4948     }
4949     if (arm_feature(env, ARM_FEATURE_V6K)) {
4950         define_arm_cp_regs(cpu, v6k_cp_reginfo);
4951     }
4952     if (arm_feature(env, ARM_FEATURE_V7MP) &&
4953         !arm_feature(env, ARM_FEATURE_PMSA)) {
4954         define_arm_cp_regs(cpu, v7mp_cp_reginfo);
4955     }
4956     if (arm_feature(env, ARM_FEATURE_V7)) {
4957         /* v7 performance monitor control register: same implementor
4958          * field as main ID register, and we implement only the cycle
4959          * count register.
4960          */
4961 #ifndef CONFIG_USER_ONLY
4962         ARMCPRegInfo pmcr = {
4963             .name = "PMCR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 0,
4964             .access = PL0_RW,
4965             .type = ARM_CP_IO | ARM_CP_ALIAS,
4966             .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcr),
4967             .accessfn = pmreg_access, .writefn = pmcr_write,
4968             .raw_writefn = raw_write,
4969         };
4970         ARMCPRegInfo pmcr64 = {
4971             .name = "PMCR_EL0", .state = ARM_CP_STATE_AA64,
4972             .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 0,
4973             .access = PL0_RW, .accessfn = pmreg_access,
4974             .type = ARM_CP_IO,
4975             .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcr),
4976             .resetvalue = cpu->midr & 0xff000000,
4977             .writefn = pmcr_write, .raw_writefn = raw_write,
4978         };
4979         define_one_arm_cp_reg(cpu, &pmcr);
4980         define_one_arm_cp_reg(cpu, &pmcr64);
4981 #endif
4982         ARMCPRegInfo clidr = {
4983             .name = "CLIDR", .state = ARM_CP_STATE_BOTH,
4984             .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 1,
4985             .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->clidr
4986         };
4987         define_one_arm_cp_reg(cpu, &clidr);
4988         define_arm_cp_regs(cpu, v7_cp_reginfo);
4989         define_debug_regs(cpu);
4990     } else {
4991         define_arm_cp_regs(cpu, not_v7_cp_reginfo);
4992     }
4993     if (arm_feature(env, ARM_FEATURE_V8)) {
4994         /* AArch64 ID registers, which all have impdef reset values.
4995          * Note that within the ID register ranges the unused slots
4996          * must all RAZ, not UNDEF; future architecture versions may
4997          * define new registers here.
4998          */
4999         ARMCPRegInfo v8_idregs[] = {
5000             /* ID_AA64PFR0_EL1 is not a plain ARM_CP_CONST because we don't
5001              * know the right value for the GIC field until after we
5002              * define these regs.
5003              */
5004             { .name = "ID_AA64PFR0_EL1", .state = ARM_CP_STATE_AA64,
5005               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 0,
5006               .access = PL1_R, .type = ARM_CP_NO_RAW,
5007               .readfn = id_aa64pfr0_read,
5008               .writefn = arm_cp_write_ignore },
5009             { .name = "ID_AA64PFR1_EL1", .state = ARM_CP_STATE_AA64,
5010               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 1,
5011               .access = PL1_R, .type = ARM_CP_CONST,
5012               .resetvalue = cpu->id_aa64pfr1},
5013             { .name = "ID_AA64PFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5014               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 2,
5015               .access = PL1_R, .type = ARM_CP_CONST,
5016               .resetvalue = 0 },
5017             { .name = "ID_AA64PFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5018               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 3,
5019               .access = PL1_R, .type = ARM_CP_CONST,
5020               .resetvalue = 0 },
5021             { .name = "ID_AA64PFR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5022               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 4,
5023               .access = PL1_R, .type = ARM_CP_CONST,
5024               .resetvalue = 0 },
5025             { .name = "ID_AA64PFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5026               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 5,
5027               .access = PL1_R, .type = ARM_CP_CONST,
5028               .resetvalue = 0 },
5029             { .name = "ID_AA64PFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5030               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 6,
5031               .access = PL1_R, .type = ARM_CP_CONST,
5032               .resetvalue = 0 },
5033             { .name = "ID_AA64PFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5034               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 7,
5035               .access = PL1_R, .type = ARM_CP_CONST,
5036               .resetvalue = 0 },
5037             { .name = "ID_AA64DFR0_EL1", .state = ARM_CP_STATE_AA64,
5038               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 0,
5039               .access = PL1_R, .type = ARM_CP_CONST,
5040               .resetvalue = cpu->id_aa64dfr0 },
5041             { .name = "ID_AA64DFR1_EL1", .state = ARM_CP_STATE_AA64,
5042               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 1,
5043               .access = PL1_R, .type = ARM_CP_CONST,
5044               .resetvalue = cpu->id_aa64dfr1 },
5045             { .name = "ID_AA64DFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5046               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 2,
5047               .access = PL1_R, .type = ARM_CP_CONST,
5048               .resetvalue = 0 },
5049             { .name = "ID_AA64DFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5050               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 3,
5051               .access = PL1_R, .type = ARM_CP_CONST,
5052               .resetvalue = 0 },
5053             { .name = "ID_AA64AFR0_EL1", .state = ARM_CP_STATE_AA64,
5054               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 4,
5055               .access = PL1_R, .type = ARM_CP_CONST,
5056               .resetvalue = cpu->id_aa64afr0 },
5057             { .name = "ID_AA64AFR1_EL1", .state = ARM_CP_STATE_AA64,
5058               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 5,
5059               .access = PL1_R, .type = ARM_CP_CONST,
5060               .resetvalue = cpu->id_aa64afr1 },
5061             { .name = "ID_AA64AFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5062               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 6,
5063               .access = PL1_R, .type = ARM_CP_CONST,
5064               .resetvalue = 0 },
5065             { .name = "ID_AA64AFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5066               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 7,
5067               .access = PL1_R, .type = ARM_CP_CONST,
5068               .resetvalue = 0 },
5069             { .name = "ID_AA64ISAR0_EL1", .state = ARM_CP_STATE_AA64,
5070               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 0,
5071               .access = PL1_R, .type = ARM_CP_CONST,
5072               .resetvalue = cpu->id_aa64isar0 },
5073             { .name = "ID_AA64ISAR1_EL1", .state = ARM_CP_STATE_AA64,
5074               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 1,
5075               .access = PL1_R, .type = ARM_CP_CONST,
5076               .resetvalue = cpu->id_aa64isar1 },
5077             { .name = "ID_AA64ISAR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5078               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 2,
5079               .access = PL1_R, .type = ARM_CP_CONST,
5080               .resetvalue = 0 },
5081             { .name = "ID_AA64ISAR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5082               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 3,
5083               .access = PL1_R, .type = ARM_CP_CONST,
5084               .resetvalue = 0 },
5085             { .name = "ID_AA64ISAR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5086               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 4,
5087               .access = PL1_R, .type = ARM_CP_CONST,
5088               .resetvalue = 0 },
5089             { .name = "ID_AA64ISAR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5090               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 5,
5091               .access = PL1_R, .type = ARM_CP_CONST,
5092               .resetvalue = 0 },
5093             { .name = "ID_AA64ISAR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5094               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 6,
5095               .access = PL1_R, .type = ARM_CP_CONST,
5096               .resetvalue = 0 },
5097             { .name = "ID_AA64ISAR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5098               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 7,
5099               .access = PL1_R, .type = ARM_CP_CONST,
5100               .resetvalue = 0 },
5101             { .name = "ID_AA64MMFR0_EL1", .state = ARM_CP_STATE_AA64,
5102               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
5103               .access = PL1_R, .type = ARM_CP_CONST,
5104               .resetvalue = cpu->id_aa64mmfr0 },
5105             { .name = "ID_AA64MMFR1_EL1", .state = ARM_CP_STATE_AA64,
5106               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 1,
5107               .access = PL1_R, .type = ARM_CP_CONST,
5108               .resetvalue = cpu->id_aa64mmfr1 },
5109             { .name = "ID_AA64MMFR2_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5110               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 2,
5111               .access = PL1_R, .type = ARM_CP_CONST,
5112               .resetvalue = 0 },
5113             { .name = "ID_AA64MMFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5114               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 3,
5115               .access = PL1_R, .type = ARM_CP_CONST,
5116               .resetvalue = 0 },
5117             { .name = "ID_AA64MMFR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5118               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 4,
5119               .access = PL1_R, .type = ARM_CP_CONST,
5120               .resetvalue = 0 },
5121             { .name = "ID_AA64MMFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5122               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 5,
5123               .access = PL1_R, .type = ARM_CP_CONST,
5124               .resetvalue = 0 },
5125             { .name = "ID_AA64MMFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5126               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 6,
5127               .access = PL1_R, .type = ARM_CP_CONST,
5128               .resetvalue = 0 },
5129             { .name = "ID_AA64MMFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5130               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 7,
5131               .access = PL1_R, .type = ARM_CP_CONST,
5132               .resetvalue = 0 },
5133             { .name = "MVFR0_EL1", .state = ARM_CP_STATE_AA64,
5134               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 0,
5135               .access = PL1_R, .type = ARM_CP_CONST,
5136               .resetvalue = cpu->mvfr0 },
5137             { .name = "MVFR1_EL1", .state = ARM_CP_STATE_AA64,
5138               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 1,
5139               .access = PL1_R, .type = ARM_CP_CONST,
5140               .resetvalue = cpu->mvfr1 },
5141             { .name = "MVFR2_EL1", .state = ARM_CP_STATE_AA64,
5142               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 2,
5143               .access = PL1_R, .type = ARM_CP_CONST,
5144               .resetvalue = cpu->mvfr2 },
5145             { .name = "MVFR3_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5146               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 3,
5147               .access = PL1_R, .type = ARM_CP_CONST,
5148               .resetvalue = 0 },
5149             { .name = "MVFR4_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5150               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 4,
5151               .access = PL1_R, .type = ARM_CP_CONST,
5152               .resetvalue = 0 },
5153             { .name = "MVFR5_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5154               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 5,
5155               .access = PL1_R, .type = ARM_CP_CONST,
5156               .resetvalue = 0 },
5157             { .name = "MVFR6_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5158               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 6,
5159               .access = PL1_R, .type = ARM_CP_CONST,
5160               .resetvalue = 0 },
5161             { .name = "MVFR7_EL1_RESERVED", .state = ARM_CP_STATE_AA64,
5162               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 7,
5163               .access = PL1_R, .type = ARM_CP_CONST,
5164               .resetvalue = 0 },
5165             { .name = "PMCEID0", .state = ARM_CP_STATE_AA32,
5166               .cp = 15, .opc1 = 0, .crn = 9, .crm = 12, .opc2 = 6,
5167               .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
5168               .resetvalue = cpu->pmceid0 },
5169             { .name = "PMCEID0_EL0", .state = ARM_CP_STATE_AA64,
5170               .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 6,
5171               .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
5172               .resetvalue = cpu->pmceid0 },
5173             { .name = "PMCEID1", .state = ARM_CP_STATE_AA32,
5174               .cp = 15, .opc1 = 0, .crn = 9, .crm = 12, .opc2 = 7,
5175               .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
5176               .resetvalue = cpu->pmceid1 },
5177             { .name = "PMCEID1_EL0", .state = ARM_CP_STATE_AA64,
5178               .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 7,
5179               .access = PL0_R, .accessfn = pmreg_access, .type = ARM_CP_CONST,
5180               .resetvalue = cpu->pmceid1 },
5181             REGINFO_SENTINEL
5182         };
5183         /* RVBAR_EL1 is only implemented if EL1 is the highest EL */
5184         if (!arm_feature(env, ARM_FEATURE_EL3) &&
5185             !arm_feature(env, ARM_FEATURE_EL2)) {
5186             ARMCPRegInfo rvbar = {
5187                 .name = "RVBAR_EL1", .state = ARM_CP_STATE_AA64,
5188                 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
5189                 .type = ARM_CP_CONST, .access = PL1_R, .resetvalue = cpu->rvbar
5190             };
5191             define_one_arm_cp_reg(cpu, &rvbar);
5192         }
5193         define_arm_cp_regs(cpu, v8_idregs);
5194         define_arm_cp_regs(cpu, v8_cp_reginfo);
5195     }
5196     if (arm_feature(env, ARM_FEATURE_EL2)) {
5197         uint64_t vmpidr_def = mpidr_read_val(env);
5198         ARMCPRegInfo vpidr_regs[] = {
5199             { .name = "VPIDR", .state = ARM_CP_STATE_AA32,
5200               .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
5201               .access = PL2_RW, .accessfn = access_el3_aa32ns,
5202               .resetvalue = cpu->midr, .type = ARM_CP_ALIAS,
5203               .fieldoffset = offsetoflow32(CPUARMState, cp15.vpidr_el2) },
5204             { .name = "VPIDR_EL2", .state = ARM_CP_STATE_AA64,
5205               .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
5206               .access = PL2_RW, .resetvalue = cpu->midr,
5207               .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
5208             { .name = "VMPIDR", .state = ARM_CP_STATE_AA32,
5209               .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
5210               .access = PL2_RW, .accessfn = access_el3_aa32ns,
5211               .resetvalue = vmpidr_def, .type = ARM_CP_ALIAS,
5212               .fieldoffset = offsetoflow32(CPUARMState, cp15.vmpidr_el2) },
5213             { .name = "VMPIDR_EL2", .state = ARM_CP_STATE_AA64,
5214               .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
5215               .access = PL2_RW,
5216               .resetvalue = vmpidr_def,
5217               .fieldoffset = offsetof(CPUARMState, cp15.vmpidr_el2) },
5218             REGINFO_SENTINEL
5219         };
5220         define_arm_cp_regs(cpu, vpidr_regs);
5221         define_arm_cp_regs(cpu, el2_cp_reginfo);
5222         if (arm_feature(env, ARM_FEATURE_V8)) {
5223             define_arm_cp_regs(cpu, el2_v8_cp_reginfo);
5224         }
5225         /* RVBAR_EL2 is only implemented if EL2 is the highest EL */
5226         if (!arm_feature(env, ARM_FEATURE_EL3)) {
5227             ARMCPRegInfo rvbar = {
5228                 .name = "RVBAR_EL2", .state = ARM_CP_STATE_AA64,
5229                 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 1,
5230                 .type = ARM_CP_CONST, .access = PL2_R, .resetvalue = cpu->rvbar
5231             };
5232             define_one_arm_cp_reg(cpu, &rvbar);
5233         }
5234     } else {
5235         /* If EL2 is missing but higher ELs are enabled, we need to
5236          * register the no_el2 reginfos.
5237          */
5238         if (arm_feature(env, ARM_FEATURE_EL3)) {
5239             /* When EL3 exists but not EL2, VPIDR and VMPIDR take the value
5240              * of MIDR_EL1 and MPIDR_EL1.
5241              */
5242             ARMCPRegInfo vpidr_regs[] = {
5243                 { .name = "VPIDR_EL2", .state = ARM_CP_STATE_BOTH,
5244                   .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
5245                   .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
5246                   .type = ARM_CP_CONST, .resetvalue = cpu->midr,
5247                   .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
5248                 { .name = "VMPIDR_EL2", .state = ARM_CP_STATE_BOTH,
5249                   .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
5250                   .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
5251                   .type = ARM_CP_NO_RAW,
5252                   .writefn = arm_cp_write_ignore, .readfn = mpidr_read },
5253                 REGINFO_SENTINEL
5254             };
5255             define_arm_cp_regs(cpu, vpidr_regs);
5256             define_arm_cp_regs(cpu, el3_no_el2_cp_reginfo);
5257             if (arm_feature(env, ARM_FEATURE_V8)) {
5258                 define_arm_cp_regs(cpu, el3_no_el2_v8_cp_reginfo);
5259             }
5260         }
5261     }
5262     if (arm_feature(env, ARM_FEATURE_EL3)) {
5263         define_arm_cp_regs(cpu, el3_cp_reginfo);
5264         ARMCPRegInfo el3_regs[] = {
5265             { .name = "RVBAR_EL3", .state = ARM_CP_STATE_AA64,
5266               .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 1,
5267               .type = ARM_CP_CONST, .access = PL3_R, .resetvalue = cpu->rvbar },
5268             { .name = "SCTLR_EL3", .state = ARM_CP_STATE_AA64,
5269               .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 0,
5270               .access = PL3_RW,
5271               .raw_writefn = raw_write, .writefn = sctlr_write,
5272               .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[3]),
5273               .resetvalue = cpu->reset_sctlr },
5274             REGINFO_SENTINEL
5275         };
5276
5277         define_arm_cp_regs(cpu, el3_regs);
5278     }
5279     /* The behaviour of NSACR is sufficiently various that we don't
5280      * try to describe it in a single reginfo:
5281      *  if EL3 is 64 bit, then trap to EL3 from S EL1,
5282      *     reads as constant 0xc00 from NS EL1 and NS EL2
5283      *  if EL3 is 32 bit, then RW at EL3, RO at NS EL1 and NS EL2
5284      *  if v7 without EL3, register doesn't exist
5285      *  if v8 without EL3, reads as constant 0xc00 from NS EL1 and NS EL2
5286      */
5287     if (arm_feature(env, ARM_FEATURE_EL3)) {
5288         if (arm_feature(env, ARM_FEATURE_AARCH64)) {
5289             ARMCPRegInfo nsacr = {
5290                 .name = "NSACR", .type = ARM_CP_CONST,
5291                 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
5292                 .access = PL1_RW, .accessfn = nsacr_access,
5293                 .resetvalue = 0xc00
5294             };
5295             define_one_arm_cp_reg(cpu, &nsacr);
5296         } else {
5297             ARMCPRegInfo nsacr = {
5298                 .name = "NSACR",
5299                 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
5300                 .access = PL3_RW | PL1_R,
5301                 .resetvalue = 0,
5302                 .fieldoffset = offsetof(CPUARMState, cp15.nsacr)
5303             };
5304             define_one_arm_cp_reg(cpu, &nsacr);
5305         }
5306     } else {
5307         if (arm_feature(env, ARM_FEATURE_V8)) {
5308             ARMCPRegInfo nsacr = {
5309                 .name = "NSACR", .type = ARM_CP_CONST,
5310                 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
5311                 .access = PL1_R,
5312                 .resetvalue = 0xc00
5313             };
5314             define_one_arm_cp_reg(cpu, &nsacr);
5315         }
5316     }
5317
5318     if (arm_feature(env, ARM_FEATURE_PMSA)) {
5319         if (arm_feature(env, ARM_FEATURE_V6)) {
5320             /* PMSAv6 not implemented */
5321             assert(arm_feature(env, ARM_FEATURE_V7));
5322             define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
5323             define_arm_cp_regs(cpu, pmsav7_cp_reginfo);
5324         } else {
5325             define_arm_cp_regs(cpu, pmsav5_cp_reginfo);
5326         }
5327     } else {
5328         define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
5329         define_arm_cp_regs(cpu, vmsa_cp_reginfo);
5330     }
5331     if (arm_feature(env, ARM_FEATURE_THUMB2EE)) {
5332         define_arm_cp_regs(cpu, t2ee_cp_reginfo);
5333     }
5334     if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) {
5335         define_arm_cp_regs(cpu, generic_timer_cp_reginfo);
5336     }
5337     if (arm_feature(env, ARM_FEATURE_VAPA)) {
5338         define_arm_cp_regs(cpu, vapa_cp_reginfo);
5339     }
5340     if (arm_feature(env, ARM_FEATURE_CACHE_TEST_CLEAN)) {
5341         define_arm_cp_regs(cpu, cache_test_clean_cp_reginfo);
5342     }
5343     if (arm_feature(env, ARM_FEATURE_CACHE_DIRTY_REG)) {
5344         define_arm_cp_regs(cpu, cache_dirty_status_cp_reginfo);
5345     }
5346     if (arm_feature(env, ARM_FEATURE_CACHE_BLOCK_OPS)) {
5347         define_arm_cp_regs(cpu, cache_block_ops_cp_reginfo);
5348     }
5349     if (arm_feature(env, ARM_FEATURE_OMAPCP)) {
5350         define_arm_cp_regs(cpu, omap_cp_reginfo);
5351     }
5352     if (arm_feature(env, ARM_FEATURE_STRONGARM)) {
5353         define_arm_cp_regs(cpu, strongarm_cp_reginfo);
5354     }
5355     if (arm_feature(env, ARM_FEATURE_XSCALE)) {
5356         define_arm_cp_regs(cpu, xscale_cp_reginfo);
5357     }
5358     if (arm_feature(env, ARM_FEATURE_DUMMY_C15_REGS)) {
5359         define_arm_cp_regs(cpu, dummy_c15_cp_reginfo);
5360     }
5361     if (arm_feature(env, ARM_FEATURE_LPAE)) {
5362         define_arm_cp_regs(cpu, lpae_cp_reginfo);
5363     }
5364     /* Slightly awkwardly, the OMAP and StrongARM cores need all of
5365      * cp15 crn=0 to be writes-ignored, whereas for other cores they should
5366      * be read-only (ie write causes UNDEF exception).
5367      */
5368     {
5369         ARMCPRegInfo id_pre_v8_midr_cp_reginfo[] = {
5370             /* Pre-v8 MIDR space.
5371              * Note that the MIDR isn't a simple constant register because
5372              * of the TI925 behaviour where writes to another register can
5373              * cause the MIDR value to change.
5374              *
5375              * Unimplemented registers in the c15 0 0 0 space default to
5376              * MIDR. Define MIDR first as this entire space, then CTR, TCMTR
5377              * and friends override accordingly.
5378              */
5379             { .name = "MIDR",
5380               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = CP_ANY,
5381               .access = PL1_R, .resetvalue = cpu->midr,
5382               .writefn = arm_cp_write_ignore, .raw_writefn = raw_write,
5383               .readfn = midr_read,
5384               .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
5385               .type = ARM_CP_OVERRIDE },
5386             /* crn = 0 op1 = 0 crm = 3..7 : currently unassigned; we RAZ. */
5387             { .name = "DUMMY",
5388               .cp = 15, .crn = 0, .crm = 3, .opc1 = 0, .opc2 = CP_ANY,
5389               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5390             { .name = "DUMMY",
5391               .cp = 15, .crn = 0, .crm = 4, .opc1 = 0, .opc2 = CP_ANY,
5392               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5393             { .name = "DUMMY",
5394               .cp = 15, .crn = 0, .crm = 5, .opc1 = 0, .opc2 = CP_ANY,
5395               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5396             { .name = "DUMMY",
5397               .cp = 15, .crn = 0, .crm = 6, .opc1 = 0, .opc2 = CP_ANY,
5398               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5399             { .name = "DUMMY",
5400               .cp = 15, .crn = 0, .crm = 7, .opc1 = 0, .opc2 = CP_ANY,
5401               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5402             REGINFO_SENTINEL
5403         };
5404         ARMCPRegInfo id_v8_midr_cp_reginfo[] = {
5405             { .name = "MIDR_EL1", .state = ARM_CP_STATE_BOTH,
5406               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 0,
5407               .access = PL1_R, .type = ARM_CP_NO_RAW, .resetvalue = cpu->midr,
5408               .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
5409               .readfn = midr_read },
5410             /* crn = 0 op1 = 0 crm = 0 op2 = 4,7 : AArch32 aliases of MIDR */
5411             { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
5412               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
5413               .access = PL1_R, .resetvalue = cpu->midr },
5414             { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
5415               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 7,
5416               .access = PL1_R, .resetvalue = cpu->midr },
5417             { .name = "REVIDR_EL1", .state = ARM_CP_STATE_BOTH,
5418               .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 6,
5419               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->revidr },
5420             REGINFO_SENTINEL
5421         };
5422         ARMCPRegInfo id_cp_reginfo[] = {
5423             /* These are common to v8 and pre-v8 */
5424             { .name = "CTR",
5425               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 1,
5426               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
5427             { .name = "CTR_EL0", .state = ARM_CP_STATE_AA64,
5428               .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 0, .crm = 0,
5429               .access = PL0_R, .accessfn = ctr_el0_access,
5430               .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
5431             /* TCMTR and TLBTR exist in v8 but have no 64-bit versions */
5432             { .name = "TCMTR",
5433               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 2,
5434               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
5435             REGINFO_SENTINEL
5436         };
5437         /* TLBTR is specific to VMSA */
5438         ARMCPRegInfo id_tlbtr_reginfo = {
5439               .name = "TLBTR",
5440               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 3,
5441               .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0,
5442         };
5443         /* MPUIR is specific to PMSA V6+ */
5444         ARMCPRegInfo id_mpuir_reginfo = {
5445               .name = "MPUIR",
5446               .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
5447               .access = PL1_R, .type = ARM_CP_CONST,
5448               .resetvalue = cpu->pmsav7_dregion << 8
5449         };
5450         ARMCPRegInfo crn0_wi_reginfo = {
5451             .name = "CRN0_WI", .cp = 15, .crn = 0, .crm = CP_ANY,
5452             .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_W,
5453             .type = ARM_CP_NOP | ARM_CP_OVERRIDE
5454         };
5455         if (arm_feature(env, ARM_FEATURE_OMAPCP) ||
5456             arm_feature(env, ARM_FEATURE_STRONGARM)) {
5457             ARMCPRegInfo *r;
5458             /* Register the blanket "writes ignored" value first to cover the
5459              * whole space. Then update the specific ID registers to allow write
5460              * access, so that they ignore writes rather than causing them to
5461              * UNDEF.
5462              */
5463             define_one_arm_cp_reg(cpu, &crn0_wi_reginfo);
5464             for (r = id_pre_v8_midr_cp_reginfo;
5465                  r->type != ARM_CP_SENTINEL; r++) {
5466                 r->access = PL1_RW;
5467             }
5468             for (r = id_cp_reginfo; r->type != ARM_CP_SENTINEL; r++) {
5469                 r->access = PL1_RW;
5470             }
5471             id_mpuir_reginfo.access = PL1_RW;
5472             id_tlbtr_reginfo.access = PL1_RW;
5473         }
5474         if (arm_feature(env, ARM_FEATURE_V8)) {
5475             define_arm_cp_regs(cpu, id_v8_midr_cp_reginfo);
5476         } else {
5477             define_arm_cp_regs(cpu, id_pre_v8_midr_cp_reginfo);
5478         }
5479         define_arm_cp_regs(cpu, id_cp_reginfo);
5480         if (!arm_feature(env, ARM_FEATURE_PMSA)) {
5481             define_one_arm_cp_reg(cpu, &id_tlbtr_reginfo);
5482         } else if (arm_feature(env, ARM_FEATURE_V7)) {
5483             define_one_arm_cp_reg(cpu, &id_mpuir_reginfo);
5484         }
5485     }
5486
5487     if (arm_feature(env, ARM_FEATURE_MPIDR)) {
5488         define_arm_cp_regs(cpu, mpidr_cp_reginfo);
5489     }
5490
5491     if (arm_feature(env, ARM_FEATURE_AUXCR)) {
5492         ARMCPRegInfo auxcr_reginfo[] = {
5493             { .name = "ACTLR_EL1", .state = ARM_CP_STATE_BOTH,
5494               .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 1,
5495               .access = PL1_RW, .type = ARM_CP_CONST,
5496               .resetvalue = cpu->reset_auxcr },
5497             { .name = "ACTLR_EL2", .state = ARM_CP_STATE_BOTH,
5498               .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 1,
5499               .access = PL2_RW, .type = ARM_CP_CONST,
5500               .resetvalue = 0 },
5501             { .name = "ACTLR_EL3", .state = ARM_CP_STATE_AA64,
5502               .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 1,
5503               .access = PL3_RW, .type = ARM_CP_CONST,
5504               .resetvalue = 0 },
5505             REGINFO_SENTINEL
5506         };
5507         define_arm_cp_regs(cpu, auxcr_reginfo);
5508         if (arm_feature(env, ARM_FEATURE_V8)) {
5509             /* HACTLR2 maps to ACTLR_EL2[63:32] and is not in ARMv7 */
5510             ARMCPRegInfo hactlr2_reginfo = {
5511                 .name = "HACTLR2", .state = ARM_CP_STATE_AA32,
5512                 .cp = 15, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 3,
5513                 .access = PL2_RW, .type = ARM_CP_CONST,
5514                 .resetvalue = 0
5515             };
5516             define_one_arm_cp_reg(cpu, &hactlr2_reginfo);
5517         }
5518     }
5519
5520     if (arm_feature(env, ARM_FEATURE_CBAR)) {
5521         if (arm_feature(env, ARM_FEATURE_AARCH64)) {
5522             /* 32 bit view is [31:18] 0...0 [43:32]. */
5523             uint32_t cbar32 = (extract64(cpu->reset_cbar, 18, 14) << 18)
5524                 | extract64(cpu->reset_cbar, 32, 12);
5525             ARMCPRegInfo cbar_reginfo[] = {
5526                 { .name = "CBAR",
5527                   .type = ARM_CP_CONST,
5528                   .cp = 15, .crn = 15, .crm = 0, .opc1 = 4, .opc2 = 0,
5529                   .access = PL1_R, .resetvalue = cpu->reset_cbar },
5530                 { .name = "CBAR_EL1", .state = ARM_CP_STATE_AA64,
5531                   .type = ARM_CP_CONST,
5532                   .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 3, .opc2 = 0,
5533                   .access = PL1_R, .resetvalue = cbar32 },
5534                 REGINFO_SENTINEL
5535             };
5536             /* We don't implement a r/w 64 bit CBAR currently */
5537             assert(arm_feature(env, ARM_FEATURE_CBAR_RO));
5538             define_arm_cp_regs(cpu, cbar_reginfo);
5539         } else {
5540             ARMCPRegInfo cbar = {
5541                 .name = "CBAR",
5542                 .cp = 15, .crn = 15, .crm = 0, .opc1 = 4, .opc2 = 0,
5543                 .access = PL1_R|PL3_W, .resetvalue = cpu->reset_cbar,
5544                 .fieldoffset = offsetof(CPUARMState,
5545                                         cp15.c15_config_base_address)
5546             };
5547             if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
5548                 cbar.access = PL1_R;
5549                 cbar.fieldoffset = 0;
5550                 cbar.type = ARM_CP_CONST;
5551             }
5552             define_one_arm_cp_reg(cpu, &cbar);
5553         }
5554     }
5555
5556     if (arm_feature(env, ARM_FEATURE_VBAR)) {
5557         ARMCPRegInfo vbar_cp_reginfo[] = {
5558             { .name = "VBAR", .state = ARM_CP_STATE_BOTH,
5559               .opc0 = 3, .crn = 12, .crm = 0, .opc1 = 0, .opc2 = 0,
5560               .access = PL1_RW, .writefn = vbar_write,
5561               .bank_fieldoffsets = { offsetof(CPUARMState, cp15.vbar_s),
5562                                      offsetof(CPUARMState, cp15.vbar_ns) },
5563               .resetvalue = 0 },
5564             REGINFO_SENTINEL
5565         };
5566         define_arm_cp_regs(cpu, vbar_cp_reginfo);
5567     }
5568
5569     /* Generic registers whose values depend on the implementation */
5570     {
5571         ARMCPRegInfo sctlr = {
5572             .name = "SCTLR", .state = ARM_CP_STATE_BOTH,
5573             .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
5574             .access = PL1_RW,
5575             .bank_fieldoffsets = { offsetof(CPUARMState, cp15.sctlr_s),
5576                                    offsetof(CPUARMState, cp15.sctlr_ns) },
5577             .writefn = sctlr_write, .resetvalue = cpu->reset_sctlr,
5578             .raw_writefn = raw_write,
5579         };
5580         if (arm_feature(env, ARM_FEATURE_XSCALE)) {
5581             /* Normally we would always end the TB on an SCTLR write, but Linux
5582              * arch/arm/mach-pxa/sleep.S expects two instructions following
5583              * an MMU enable to execute from cache.  Imitate this behaviour.
5584              */
5585             sctlr.type |= ARM_CP_SUPPRESS_TB_END;
5586         }
5587         define_one_arm_cp_reg(cpu, &sctlr);
5588     }
5589
5590     if (arm_feature(env, ARM_FEATURE_SVE)) {
5591         define_one_arm_cp_reg(cpu, &zcr_el1_reginfo);
5592         if (arm_feature(env, ARM_FEATURE_EL2)) {
5593             define_one_arm_cp_reg(cpu, &zcr_el2_reginfo);
5594         } else {
5595             define_one_arm_cp_reg(cpu, &zcr_no_el2_reginfo);
5596         }
5597         if (arm_feature(env, ARM_FEATURE_EL3)) {
5598             define_one_arm_cp_reg(cpu, &zcr_el3_reginfo);
5599         }
5600     }
5601 }
5602
5603 void arm_cpu_register_gdb_regs_for_features(ARMCPU *cpu)
5604 {
5605     CPUState *cs = CPU(cpu);
5606     CPUARMState *env = &cpu->env;
5607
5608     if (arm_feature(env, ARM_FEATURE_AARCH64)) {
5609         gdb_register_coprocessor(cs, aarch64_fpu_gdb_get_reg,
5610                                  aarch64_fpu_gdb_set_reg,
5611                                  34, "aarch64-fpu.xml", 0);
5612     } else if (arm_feature(env, ARM_FEATURE_NEON)) {
5613         gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
5614                                  51, "arm-neon.xml", 0);
5615     } else if (arm_feature(env, ARM_FEATURE_VFP3)) {
5616         gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
5617                                  35, "arm-vfp3.xml", 0);
5618     } else if (arm_feature(env, ARM_FEATURE_VFP)) {
5619         gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
5620                                  19, "arm-vfp.xml", 0);
5621     }
5622     gdb_register_coprocessor(cs, arm_gdb_get_sysreg, arm_gdb_set_sysreg,
5623                              arm_gen_dynamic_xml(cs),
5624                              "system-registers.xml", 0);
5625 }
5626
5627 /* Sort alphabetically by type name, except for "any". */
5628 static gint arm_cpu_list_compare(gconstpointer a, gconstpointer b)
5629 {
5630     ObjectClass *class_a = (ObjectClass *)a;
5631     ObjectClass *class_b = (ObjectClass *)b;
5632     const char *name_a, *name_b;
5633
5634     name_a = object_class_get_name(class_a);
5635     name_b = object_class_get_name(class_b);
5636     if (strcmp(name_a, "any-" TYPE_ARM_CPU) == 0) {
5637         return 1;
5638     } else if (strcmp(name_b, "any-" TYPE_ARM_CPU) == 0) {
5639         return -1;
5640     } else {
5641         return strcmp(name_a, name_b);
5642     }
5643 }
5644
5645 static void arm_cpu_list_entry(gpointer data, gpointer user_data)
5646 {
5647     ObjectClass *oc = data;
5648     CPUListState *s = user_data;
5649     const char *typename;
5650     char *name;
5651
5652     typename = object_class_get_name(oc);
5653     name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_ARM_CPU));
5654     (*s->cpu_fprintf)(s->file, "  %s\n",
5655                       name);
5656     g_free(name);
5657 }
5658
5659 void arm_cpu_list(FILE *f, fprintf_function cpu_fprintf)
5660 {
5661     CPUListState s = {
5662         .file = f,
5663         .cpu_fprintf = cpu_fprintf,
5664     };
5665     GSList *list;
5666
5667     list = object_class_get_list(TYPE_ARM_CPU, false);
5668     list = g_slist_sort(list, arm_cpu_list_compare);
5669     (*cpu_fprintf)(f, "Available CPUs:\n");
5670     g_slist_foreach(list, arm_cpu_list_entry, &s);
5671     g_slist_free(list);
5672 }
5673
5674 static void arm_cpu_add_definition(gpointer data, gpointer user_data)
5675 {
5676     ObjectClass *oc = data;
5677     CpuDefinitionInfoList **cpu_list = user_data;
5678     CpuDefinitionInfoList *entry;
5679     CpuDefinitionInfo *info;
5680     const char *typename;
5681
5682     typename = object_class_get_name(oc);
5683     info = g_malloc0(sizeof(*info));
5684     info->name = g_strndup(typename,
5685                            strlen(typename) - strlen("-" TYPE_ARM_CPU));
5686     info->q_typename = g_strdup(typename);
5687
5688     entry = g_malloc0(sizeof(*entry));
5689     entry->value = info;
5690     entry->next = *cpu_list;
5691     *cpu_list = entry;
5692 }
5693
5694 CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
5695 {
5696     CpuDefinitionInfoList *cpu_list = NULL;
5697     GSList *list;
5698
5699     list = object_class_get_list(TYPE_ARM_CPU, false);
5700     g_slist_foreach(list, arm_cpu_add_definition, &cpu_list);
5701     g_slist_free(list);
5702
5703     return cpu_list;
5704 }
5705
5706 static void add_cpreg_to_hashtable(ARMCPU *cpu, const ARMCPRegInfo *r,
5707                                    void *opaque, int state, int secstate,
5708                                    int crm, int opc1, int opc2,
5709                                    const char *name)
5710 {
5711     /* Private utility function for define_one_arm_cp_reg_with_opaque():
5712      * add a single reginfo struct to the hash table.
5713      */
5714     uint32_t *key = g_new(uint32_t, 1);
5715     ARMCPRegInfo *r2 = g_memdup(r, sizeof(ARMCPRegInfo));
5716     int is64 = (r->type & ARM_CP_64BIT) ? 1 : 0;
5717     int ns = (secstate & ARM_CP_SECSTATE_NS) ? 1 : 0;
5718
5719     r2->name = g_strdup(name);
5720     /* Reset the secure state to the specific incoming state.  This is
5721      * necessary as the register may have been defined with both states.
5722      */
5723     r2->secure = secstate;
5724
5725     if (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1]) {
5726         /* Register is banked (using both entries in array).
5727          * Overwriting fieldoffset as the array is only used to define
5728          * banked registers but later only fieldoffset is used.
5729          */
5730         r2->fieldoffset = r->bank_fieldoffsets[ns];
5731     }
5732
5733     if (state == ARM_CP_STATE_AA32) {
5734         if (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1]) {
5735             /* If the register is banked then we don't need to migrate or
5736              * reset the 32-bit instance in certain cases:
5737              *
5738              * 1) If the register has both 32-bit and 64-bit instances then we
5739              *    can count on the 64-bit instance taking care of the
5740              *    non-secure bank.
5741              * 2) If ARMv8 is enabled then we can count on a 64-bit version
5742              *    taking care of the secure bank.  This requires that separate
5743              *    32 and 64-bit definitions are provided.
5744              */
5745             if ((r->state == ARM_CP_STATE_BOTH && ns) ||
5746                 (arm_feature(&cpu->env, ARM_FEATURE_V8) && !ns)) {
5747                 r2->type |= ARM_CP_ALIAS;
5748             }
5749         } else if ((secstate != r->secure) && !ns) {
5750             /* The register is not banked so we only want to allow migration of
5751              * the non-secure instance.
5752              */
5753             r2->type |= ARM_CP_ALIAS;
5754         }
5755
5756         if (r->state == ARM_CP_STATE_BOTH) {
5757             /* We assume it is a cp15 register if the .cp field is left unset.
5758              */
5759             if (r2->cp == 0) {
5760                 r2->cp = 15;
5761             }
5762
5763 #ifdef HOST_WORDS_BIGENDIAN
5764             if (r2->fieldoffset) {
5765                 r2->fieldoffset += sizeof(uint32_t);
5766             }
5767 #endif
5768         }
5769     }
5770     if (state == ARM_CP_STATE_AA64) {
5771         /* To allow abbreviation of ARMCPRegInfo
5772          * definitions, we treat cp == 0 as equivalent to
5773          * the value for "standard guest-visible sysreg".
5774          * STATE_BOTH definitions are also always "standard
5775          * sysreg" in their AArch64 view (the .cp value may
5776          * be non-zero for the benefit of the AArch32 view).
5777          */
5778         if (r->cp == 0 || r->state == ARM_CP_STATE_BOTH) {
5779             r2->cp = CP_REG_ARM64_SYSREG_CP;
5780         }
5781         *key = ENCODE_AA64_CP_REG(r2->cp, r2->crn, crm,
5782                                   r2->opc0, opc1, opc2);
5783     } else {
5784         *key = ENCODE_CP_REG(r2->cp, is64, ns, r2->crn, crm, opc1, opc2);
5785     }
5786     if (opaque) {
5787         r2->opaque = opaque;
5788     }
5789     /* reginfo passed to helpers is correct for the actual access,
5790      * and is never ARM_CP_STATE_BOTH:
5791      */
5792     r2->state = state;
5793     /* Make sure reginfo passed to helpers for wildcarded regs
5794      * has the correct crm/opc1/opc2 for this reg, not CP_ANY:
5795      */
5796     r2->crm = crm;
5797     r2->opc1 = opc1;
5798     r2->opc2 = opc2;
5799     /* By convention, for wildcarded registers only the first
5800      * entry is used for migration; the others are marked as
5801      * ALIAS so we don't try to transfer the register
5802      * multiple times. Special registers (ie NOP/WFI) are
5803      * never migratable and not even raw-accessible.
5804      */
5805     if ((r->type & ARM_CP_SPECIAL)) {
5806         r2->type |= ARM_CP_NO_RAW;
5807     }
5808     if (((r->crm == CP_ANY) && crm != 0) ||
5809         ((r->opc1 == CP_ANY) && opc1 != 0) ||
5810         ((r->opc2 == CP_ANY) && opc2 != 0)) {
5811         r2->type |= ARM_CP_ALIAS | ARM_CP_NO_GDB;
5812     }
5813
5814     /* Check that raw accesses are either forbidden or handled. Note that
5815      * we can't assert this earlier because the setup of fieldoffset for
5816      * banked registers has to be done first.
5817      */
5818     if (!(r2->type & ARM_CP_NO_RAW)) {
5819         assert(!raw_accessors_invalid(r2));
5820     }
5821
5822     /* Overriding of an existing definition must be explicitly
5823      * requested.
5824      */
5825     if (!(r->type & ARM_CP_OVERRIDE)) {
5826         ARMCPRegInfo *oldreg;
5827         oldreg = g_hash_table_lookup(cpu->cp_regs, key);
5828         if (oldreg && !(oldreg->type & ARM_CP_OVERRIDE)) {
5829             fprintf(stderr, "Register redefined: cp=%d %d bit "
5830                     "crn=%d crm=%d opc1=%d opc2=%d, "
5831                     "was %s, now %s\n", r2->cp, 32 + 32 * is64,
5832                     r2->crn, r2->crm, r2->opc1, r2->opc2,
5833                     oldreg->name, r2->name);
5834             g_assert_not_reached();
5835         }
5836     }
5837     g_hash_table_insert(cpu->cp_regs, key, r2);
5838 }
5839
5840
5841 void define_one_arm_cp_reg_with_opaque(ARMCPU *cpu,
5842                                        const ARMCPRegInfo *r, void *opaque)
5843 {
5844     /* Define implementations of coprocessor registers.
5845      * We store these in a hashtable because typically
5846      * there are less than 150 registers in a space which
5847      * is 16*16*16*8*8 = 262144 in size.
5848      * Wildcarding is supported for the crm, opc1 and opc2 fields.
5849      * If a register is defined twice then the second definition is
5850      * used, so this can be used to define some generic registers and
5851      * then override them with implementation specific variations.
5852      * At least one of the original and the second definition should
5853      * include ARM_CP_OVERRIDE in its type bits -- this is just a guard
5854      * against accidental use.
5855      *
5856      * The state field defines whether the register is to be
5857      * visible in the AArch32 or AArch64 execution state. If the
5858      * state is set to ARM_CP_STATE_BOTH then we synthesise a
5859      * reginfo structure for the AArch32 view, which sees the lower
5860      * 32 bits of the 64 bit register.
5861      *
5862      * Only registers visible in AArch64 may set r->opc0; opc0 cannot
5863      * be wildcarded. AArch64 registers are always considered to be 64
5864      * bits; the ARM_CP_64BIT* flag applies only to the AArch32 view of
5865      * the register, if any.
5866      */
5867     int crm, opc1, opc2, state;
5868     int crmmin = (r->crm == CP_ANY) ? 0 : r->crm;
5869     int crmmax = (r->crm == CP_ANY) ? 15 : r->crm;
5870     int opc1min = (r->opc1 == CP_ANY) ? 0 : r->opc1;
5871     int opc1max = (r->opc1 == CP_ANY) ? 7 : r->opc1;
5872     int opc2min = (r->opc2 == CP_ANY) ? 0 : r->opc2;
5873     int opc2max = (r->opc2 == CP_ANY) ? 7 : r->opc2;
5874     /* 64 bit registers have only CRm and Opc1 fields */
5875     assert(!((r->type & ARM_CP_64BIT) && (r->opc2 || r->crn)));
5876     /* op0 only exists in the AArch64 encodings */
5877     assert((r->state != ARM_CP_STATE_AA32) || (r->opc0 == 0));
5878     /* AArch64 regs are all 64 bit so ARM_CP_64BIT is meaningless */
5879     assert((r->state != ARM_CP_STATE_AA64) || !(r->type & ARM_CP_64BIT));
5880     /* The AArch64 pseudocode CheckSystemAccess() specifies that op1
5881      * encodes a minimum access level for the register. We roll this
5882      * runtime check into our general permission check code, so check
5883      * here that the reginfo's specified permissions are strict enough
5884      * to encompass the generic architectural permission check.
5885      */
5886     if (r->state != ARM_CP_STATE_AA32) {
5887         int mask = 0;
5888         switch (r->opc1) {
5889         case 0: case 1: case 2:
5890             /* min_EL EL1 */
5891             mask = PL1_RW;
5892             break;
5893         case 3:
5894             /* min_EL EL0 */
5895             mask = PL0_RW;
5896             break;
5897         case 4:
5898             /* min_EL EL2 */
5899             mask = PL2_RW;
5900             break;
5901         case 5:
5902             /* unallocated encoding, so not possible */
5903             assert(false);
5904             break;
5905         case 6:
5906             /* min_EL EL3 */
5907             mask = PL3_RW;
5908             break;
5909         case 7:
5910             /* min_EL EL1, secure mode only (we don't check the latter) */
5911             mask = PL1_RW;
5912             break;
5913         default:
5914             /* broken reginfo with out-of-range opc1 */
5915             assert(false);
5916             break;
5917         }
5918         /* assert our permissions are not too lax (stricter is fine) */
5919         assert((r->access & ~mask) == 0);
5920     }
5921
5922     /* Check that the register definition has enough info to handle
5923      * reads and writes if they are permitted.
5924      */
5925     if (!(r->type & (ARM_CP_SPECIAL|ARM_CP_CONST))) {
5926         if (r->access & PL3_R) {
5927             assert((r->fieldoffset ||
5928                    (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
5929                    r->readfn);
5930         }
5931         if (r->access & PL3_W) {
5932             assert((r->fieldoffset ||
5933                    (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
5934                    r->writefn);
5935         }
5936     }
5937     /* Bad type field probably means missing sentinel at end of reg list */
5938     assert(cptype_valid(r->type));
5939     for (crm = crmmin; crm <= crmmax; crm++) {
5940         for (opc1 = opc1min; opc1 <= opc1max; opc1++) {
5941             for (opc2 = opc2min; opc2 <= opc2max; opc2++) {
5942                 for (state = ARM_CP_STATE_AA32;
5943                      state <= ARM_CP_STATE_AA64; state++) {
5944                     if (r->state != state && r->state != ARM_CP_STATE_BOTH) {
5945                         continue;
5946                     }
5947                     if (state == ARM_CP_STATE_AA32) {
5948                         /* Under AArch32 CP registers can be common
5949                          * (same for secure and non-secure world) or banked.
5950                          */
5951                         char *name;
5952
5953                         switch (r->secure) {
5954                         case ARM_CP_SECSTATE_S:
5955                         case ARM_CP_SECSTATE_NS:
5956                             add_cpreg_to_hashtable(cpu, r, opaque, state,
5957                                                    r->secure, crm, opc1, opc2,
5958                                                    r->name);
5959                             break;
5960                         default:
5961                             name = g_strdup_printf("%s_S", r->name);
5962                             add_cpreg_to_hashtable(cpu, r, opaque, state,
5963                                                    ARM_CP_SECSTATE_S,
5964                                                    crm, opc1, opc2, name);
5965                             g_free(name);
5966                             add_cpreg_to_hashtable(cpu, r, opaque, state,
5967                                                    ARM_CP_SECSTATE_NS,
5968                                                    crm, opc1, opc2, r->name);
5969                             break;
5970                         }
5971                     } else {
5972                         /* AArch64 registers get mapped to non-secure instance
5973                          * of AArch32 */
5974                         add_cpreg_to_hashtable(cpu, r, opaque, state,
5975                                                ARM_CP_SECSTATE_NS,
5976                                                crm, opc1, opc2, r->name);
5977                     }
5978                 }
5979             }
5980         }
5981     }
5982 }
5983
5984 void define_arm_cp_regs_with_opaque(ARMCPU *cpu,
5985                                     const ARMCPRegInfo *regs, void *opaque)
5986 {
5987     /* Define a whole list of registers */
5988     const ARMCPRegInfo *r;
5989     for (r = regs; r->type != ARM_CP_SENTINEL; r++) {
5990         define_one_arm_cp_reg_with_opaque(cpu, r, opaque);
5991     }
5992 }
5993
5994 const ARMCPRegInfo *get_arm_cp_reginfo(GHashTable *cpregs, uint32_t encoded_cp)
5995 {
5996     return g_hash_table_lookup(cpregs, &encoded_cp);
5997 }
5998
5999 void arm_cp_write_ignore(CPUARMState *env, const ARMCPRegInfo *ri,
6000                          uint64_t value)
6001 {
6002     /* Helper coprocessor write function for write-ignore registers */
6003 }
6004
6005 uint64_t arm_cp_read_zero(CPUARMState *env, const ARMCPRegInfo *ri)
6006 {
6007     /* Helper coprocessor write function for read-as-zero registers */
6008     return 0;
6009 }
6010
6011 void arm_cp_reset_ignore(CPUARMState *env, const ARMCPRegInfo *opaque)
6012 {
6013     /* Helper coprocessor reset function for do-nothing-on-reset registers */
6014 }
6015
6016 static int bad_mode_switch(CPUARMState *env, int mode, CPSRWriteType write_type)
6017 {
6018     /* Return true if it is not valid for us to switch to
6019      * this CPU mode (ie all the UNPREDICTABLE cases in
6020      * the ARM ARM CPSRWriteByInstr pseudocode).
6021      */
6022
6023     /* Changes to or from Hyp via MSR and CPS are illegal. */
6024     if (write_type == CPSRWriteByInstr &&
6025         ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_HYP ||
6026          mode == ARM_CPU_MODE_HYP)) {
6027         return 1;
6028     }
6029
6030     switch (mode) {
6031     case ARM_CPU_MODE_USR:
6032         return 0;
6033     case ARM_CPU_MODE_SYS:
6034     case ARM_CPU_MODE_SVC:
6035     case ARM_CPU_MODE_ABT:
6036     case ARM_CPU_MODE_UND:
6037     case ARM_CPU_MODE_IRQ:
6038     case ARM_CPU_MODE_FIQ:
6039         /* Note that we don't implement the IMPDEF NSACR.RFR which in v7
6040          * allows FIQ mode to be Secure-only. (In v8 this doesn't exist.)
6041          */
6042         /* If HCR.TGE is set then changes from Monitor to NS PL1 via MSR
6043          * and CPS are treated as illegal mode changes.
6044          */
6045         if (write_type == CPSRWriteByInstr &&
6046             (env->cp15.hcr_el2 & HCR_TGE) &&
6047             (env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON &&
6048             !arm_is_secure_below_el3(env)) {
6049             return 1;
6050         }
6051         return 0;
6052     case ARM_CPU_MODE_HYP:
6053         return !arm_feature(env, ARM_FEATURE_EL2)
6054             || arm_current_el(env) < 2 || arm_is_secure(env);
6055     case ARM_CPU_MODE_MON:
6056         return arm_current_el(env) < 3;
6057     default:
6058         return 1;
6059     }
6060 }
6061
6062 uint32_t cpsr_read(CPUARMState *env)
6063 {
6064     int ZF;
6065     ZF = (env->ZF == 0);
6066     return env->uncached_cpsr | (env->NF & 0x80000000) | (ZF << 30) |
6067         (env->CF << 29) | ((env->VF & 0x80000000) >> 3) | (env->QF << 27)
6068         | (env->thumb << 5) | ((env->condexec_bits & 3) << 25)
6069         | ((env->condexec_bits & 0xfc) << 8)
6070         | (env->GE << 16) | (env->daif & CPSR_AIF);
6071 }
6072
6073 void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask,
6074                 CPSRWriteType write_type)
6075 {
6076     uint32_t changed_daif;
6077
6078     if (mask & CPSR_NZCV) {
6079         env->ZF = (~val) & CPSR_Z;
6080         env->NF = val;
6081         env->CF = (val >> 29) & 1;
6082         env->VF = (val << 3) & 0x80000000;
6083     }
6084     if (mask & CPSR_Q)
6085         env->QF = ((val & CPSR_Q) != 0);
6086     if (mask & CPSR_T)
6087         env->thumb = ((val & CPSR_T) != 0);
6088     if (mask & CPSR_IT_0_1) {
6089         env->condexec_bits &= ~3;
6090         env->condexec_bits |= (val >> 25) & 3;
6091     }
6092     if (mask & CPSR_IT_2_7) {
6093         env->condexec_bits &= 3;
6094         env->condexec_bits |= (val >> 8) & 0xfc;
6095     }
6096     if (mask & CPSR_GE) {
6097         env->GE = (val >> 16) & 0xf;
6098     }
6099
6100     /* In a V7 implementation that includes the security extensions but does
6101      * not include Virtualization Extensions the SCR.FW and SCR.AW bits control
6102      * whether non-secure software is allowed to change the CPSR_F and CPSR_A
6103      * bits respectively.
6104      *
6105      * In a V8 implementation, it is permitted for privileged software to
6106      * change the CPSR A/F bits regardless of the SCR.AW/FW bits.
6107      */
6108     if (write_type != CPSRWriteRaw && !arm_feature(env, ARM_FEATURE_V8) &&
6109         arm_feature(env, ARM_FEATURE_EL3) &&
6110         !arm_feature(env, ARM_FEATURE_EL2) &&
6111         !arm_is_secure(env)) {
6112
6113         changed_daif = (env->daif ^ val) & mask;
6114
6115         if (changed_daif & CPSR_A) {
6116             /* Check to see if we are allowed to change the masking of async
6117              * abort exceptions from a non-secure state.
6118              */
6119             if (!(env->cp15.scr_el3 & SCR_AW)) {
6120                 qemu_log_mask(LOG_GUEST_ERROR,
6121                               "Ignoring attempt to switch CPSR_A flag from "
6122                               "non-secure world with SCR.AW bit clear\n");
6123                 mask &= ~CPSR_A;
6124             }
6125         }
6126
6127         if (changed_daif & CPSR_F) {
6128             /* Check to see if we are allowed to change the masking of FIQ
6129              * exceptions from a non-secure state.
6130              */
6131             if (!(env->cp15.scr_el3 & SCR_FW)) {
6132                 qemu_log_mask(LOG_GUEST_ERROR,
6133                               "Ignoring attempt to switch CPSR_F flag from "
6134                               "non-secure world with SCR.FW bit clear\n");
6135                 mask &= ~CPSR_F;
6136             }
6137
6138             /* Check whether non-maskable FIQ (NMFI) support is enabled.
6139              * If this bit is set software is not allowed to mask
6140              * FIQs, but is allowed to set CPSR_F to 0.
6141              */
6142             if ((A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_NMFI) &&
6143                 (val & CPSR_F)) {
6144                 qemu_log_mask(LOG_GUEST_ERROR,
6145                               "Ignoring attempt to enable CPSR_F flag "
6146                               "(non-maskable FIQ [NMFI] support enabled)\n");
6147                 mask &= ~CPSR_F;
6148             }
6149         }
6150     }
6151
6152     env->daif &= ~(CPSR_AIF & mask);
6153     env->daif |= val & CPSR_AIF & mask;
6154
6155     if (write_type != CPSRWriteRaw &&
6156         ((env->uncached_cpsr ^ val) & mask & CPSR_M)) {
6157         if ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_USR) {
6158             /* Note that we can only get here in USR mode if this is a
6159              * gdb stub write; for this case we follow the architectural
6160              * behaviour for guest writes in USR mode of ignoring an attempt
6161              * to switch mode. (Those are caught by translate.c for writes
6162              * triggered by guest instructions.)
6163              */
6164             mask &= ~CPSR_M;
6165         } else if (bad_mode_switch(env, val & CPSR_M, write_type)) {
6166             /* Attempt to switch to an invalid mode: this is UNPREDICTABLE in
6167              * v7, and has defined behaviour in v8:
6168              *  + leave CPSR.M untouched
6169              *  + allow changes to the other CPSR fields
6170              *  + set PSTATE.IL
6171              * For user changes via the GDB stub, we don't set PSTATE.IL,
6172              * as this would be unnecessarily harsh for a user error.
6173              */
6174             mask &= ~CPSR_M;
6175             if (write_type != CPSRWriteByGDBStub &&
6176                 arm_feature(env, ARM_FEATURE_V8)) {
6177                 mask |= CPSR_IL;
6178                 val |= CPSR_IL;
6179             }
6180         } else {
6181             switch_mode(env, val & CPSR_M);
6182         }
6183     }
6184     mask &= ~CACHED_CPSR_BITS;
6185     env->uncached_cpsr = (env->uncached_cpsr & ~mask) | (val & mask);
6186 }
6187
6188 /* Sign/zero extend */
6189 uint32_t HELPER(sxtb16)(uint32_t x)
6190 {
6191     uint32_t res;
6192     res = (uint16_t)(int8_t)x;
6193     res |= (uint32_t)(int8_t)(x >> 16) << 16;
6194     return res;
6195 }
6196
6197 uint32_t HELPER(uxtb16)(uint32_t x)
6198 {
6199     uint32_t res;
6200     res = (uint16_t)(uint8_t)x;
6201     res |= (uint32_t)(uint8_t)(x >> 16) << 16;
6202     return res;
6203 }
6204
6205 int32_t HELPER(sdiv)(int32_t num, int32_t den)
6206 {
6207     if (den == 0)
6208       return 0;
6209     if (num == INT_MIN && den == -1)
6210       return INT_MIN;
6211     return num / den;
6212 }
6213
6214 uint32_t HELPER(udiv)(uint32_t num, uint32_t den)
6215 {
6216     if (den == 0)
6217       return 0;
6218     return num / den;
6219 }
6220
6221 uint32_t HELPER(rbit)(uint32_t x)
6222 {
6223     return revbit32(x);
6224 }
6225
6226 #if defined(CONFIG_USER_ONLY)
6227
6228 /* These should probably raise undefined insn exceptions.  */
6229 void HELPER(v7m_msr)(CPUARMState *env, uint32_t reg, uint32_t val)
6230 {
6231     ARMCPU *cpu = arm_env_get_cpu(env);
6232
6233     cpu_abort(CPU(cpu), "v7m_msr %d\n", reg);
6234 }
6235
6236 uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
6237 {
6238     ARMCPU *cpu = arm_env_get_cpu(env);
6239
6240     cpu_abort(CPU(cpu), "v7m_mrs %d\n", reg);
6241     return 0;
6242 }
6243
6244 void HELPER(v7m_bxns)(CPUARMState *env, uint32_t dest)
6245 {
6246     /* translate.c should never generate calls here in user-only mode */
6247     g_assert_not_reached();
6248 }
6249
6250 void HELPER(v7m_blxns)(CPUARMState *env, uint32_t dest)
6251 {
6252     /* translate.c should never generate calls here in user-only mode */
6253     g_assert_not_reached();
6254 }
6255
6256 uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op)
6257 {
6258     /* The TT instructions can be used by unprivileged code, but in
6259      * user-only emulation we don't have the MPU.
6260      * Luckily since we know we are NonSecure unprivileged (and that in
6261      * turn means that the A flag wasn't specified), all the bits in the
6262      * register must be zero:
6263      *  IREGION: 0 because IRVALID is 0
6264      *  IRVALID: 0 because NS
6265      *  S: 0 because NS
6266      *  NSRW: 0 because NS
6267      *  NSR: 0 because NS
6268      *  RW: 0 because unpriv and A flag not set
6269      *  R: 0 because unpriv and A flag not set
6270      *  SRVALID: 0 because NS
6271      *  MRVALID: 0 because unpriv and A flag not set
6272      *  SREGION: 0 becaus SRVALID is 0
6273      *  MREGION: 0 because MRVALID is 0
6274      */
6275     return 0;
6276 }
6277
6278 void switch_mode(CPUARMState *env, int mode)
6279 {
6280     ARMCPU *cpu = arm_env_get_cpu(env);
6281
6282     if (mode != ARM_CPU_MODE_USR) {
6283         cpu_abort(CPU(cpu), "Tried to switch out of user mode\n");
6284     }
6285 }
6286
6287 uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
6288                                  uint32_t cur_el, bool secure)
6289 {
6290     return 1;
6291 }
6292
6293 void aarch64_sync_64_to_32(CPUARMState *env)
6294 {
6295     g_assert_not_reached();
6296 }
6297
6298 #else
6299
6300 void switch_mode(CPUARMState *env, int mode)
6301 {
6302     int old_mode;
6303     int i;
6304
6305     old_mode = env->uncached_cpsr & CPSR_M;
6306     if (mode == old_mode)
6307         return;
6308
6309     if (old_mode == ARM_CPU_MODE_FIQ) {
6310         memcpy (env->fiq_regs, env->regs + 8, 5 * sizeof(uint32_t));
6311         memcpy (env->regs + 8, env->usr_regs, 5 * sizeof(uint32_t));
6312     } else if (mode == ARM_CPU_MODE_FIQ) {
6313         memcpy (env->usr_regs, env->regs + 8, 5 * sizeof(uint32_t));
6314         memcpy (env->regs + 8, env->fiq_regs, 5 * sizeof(uint32_t));
6315     }
6316
6317     i = bank_number(old_mode);
6318     env->banked_r13[i] = env->regs[13];
6319     env->banked_r14[i] = env->regs[14];
6320     env->banked_spsr[i] = env->spsr;
6321
6322     i = bank_number(mode);
6323     env->regs[13] = env->banked_r13[i];
6324     env->regs[14] = env->banked_r14[i];
6325     env->spsr = env->banked_spsr[i];
6326 }
6327
6328 /* Physical Interrupt Target EL Lookup Table
6329  *
6330  * [ From ARM ARM section G1.13.4 (Table G1-15) ]
6331  *
6332  * The below multi-dimensional table is used for looking up the target
6333  * exception level given numerous condition criteria.  Specifically, the
6334  * target EL is based on SCR and HCR routing controls as well as the
6335  * currently executing EL and secure state.
6336  *
6337  *    Dimensions:
6338  *    target_el_table[2][2][2][2][2][4]
6339  *                    |  |  |  |  |  +--- Current EL
6340  *                    |  |  |  |  +------ Non-secure(0)/Secure(1)
6341  *                    |  |  |  +--------- HCR mask override
6342  *                    |  |  +------------ SCR exec state control
6343  *                    |  +--------------- SCR mask override
6344  *                    +------------------ 32-bit(0)/64-bit(1) EL3
6345  *
6346  *    The table values are as such:
6347  *    0-3 = EL0-EL3
6348  *     -1 = Cannot occur
6349  *
6350  * The ARM ARM target EL table includes entries indicating that an "exception
6351  * is not taken".  The two cases where this is applicable are:
6352  *    1) An exception is taken from EL3 but the SCR does not have the exception
6353  *    routed to EL3.
6354  *    2) An exception is taken from EL2 but the HCR does not have the exception
6355  *    routed to EL2.
6356  * In these two cases, the below table contain a target of EL1.  This value is
6357  * returned as it is expected that the consumer of the table data will check
6358  * for "target EL >= current EL" to ensure the exception is not taken.
6359  *
6360  *            SCR     HCR
6361  *         64  EA     AMO                 From
6362  *        BIT IRQ     IMO      Non-secure         Secure
6363  *        EL3 FIQ  RW FMO   EL0 EL1 EL2 EL3   EL0 EL1 EL2 EL3
6364  */
6365 static const int8_t target_el_table[2][2][2][2][2][4] = {
6366     {{{{/* 0   0   0   0 */{ 1,  1,  2, -1 },{ 3, -1, -1,  3 },},
6367        {/* 0   0   0   1 */{ 2,  2,  2, -1 },{ 3, -1, -1,  3 },},},
6368       {{/* 0   0   1   0 */{ 1,  1,  2, -1 },{ 3, -1, -1,  3 },},
6369        {/* 0   0   1   1 */{ 2,  2,  2, -1 },{ 3, -1, -1,  3 },},},},
6370      {{{/* 0   1   0   0 */{ 3,  3,  3, -1 },{ 3, -1, -1,  3 },},
6371        {/* 0   1   0   1 */{ 3,  3,  3, -1 },{ 3, -1, -1,  3 },},},
6372       {{/* 0   1   1   0 */{ 3,  3,  3, -1 },{ 3, -1, -1,  3 },},
6373        {/* 0   1   1   1 */{ 3,  3,  3, -1 },{ 3, -1, -1,  3 },},},},},
6374     {{{{/* 1   0   0   0 */{ 1,  1,  2, -1 },{ 1,  1, -1,  1 },},
6375        {/* 1   0   0   1 */{ 2,  2,  2, -1 },{ 1,  1, -1,  1 },},},
6376       {{/* 1   0   1   0 */{ 1,  1,  1, -1 },{ 1,  1, -1,  1 },},
6377        {/* 1   0   1   1 */{ 2,  2,  2, -1 },{ 1,  1, -1,  1 },},},},
6378      {{{/* 1   1   0   0 */{ 3,  3,  3, -1 },{ 3,  3, -1,  3 },},
6379        {/* 1   1   0   1 */{ 3,  3,  3, -1 },{ 3,  3, -1,  3 },},},
6380       {{/* 1   1   1   0 */{ 3,  3,  3, -1 },{ 3,  3, -1,  3 },},
6381        {/* 1   1   1   1 */{ 3,  3,  3, -1 },{ 3,  3, -1,  3 },},},},},
6382 };
6383
6384 /*
6385  * Determine the target EL for physical exceptions
6386  */
6387 uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
6388                                  uint32_t cur_el, bool secure)
6389 {
6390     CPUARMState *env = cs->env_ptr;
6391     int rw;
6392     int scr;
6393     int hcr;
6394     int target_el;
6395     /* Is the highest EL AArch64? */
6396     int is64 = arm_feature(env, ARM_FEATURE_AARCH64);
6397
6398     if (arm_feature(env, ARM_FEATURE_EL3)) {
6399         rw = ((env->cp15.scr_el3 & SCR_RW) == SCR_RW);
6400     } else {
6401         /* Either EL2 is the highest EL (and so the EL2 register width
6402          * is given by is64); or there is no EL2 or EL3, in which case
6403          * the value of 'rw' does not affect the table lookup anyway.
6404          */
6405         rw = is64;
6406     }
6407
6408     switch (excp_idx) {
6409     case EXCP_IRQ:
6410         scr = ((env->cp15.scr_el3 & SCR_IRQ) == SCR_IRQ);
6411         hcr = arm_hcr_el2_imo(env);
6412         break;
6413     case EXCP_FIQ:
6414         scr = ((env->cp15.scr_el3 & SCR_FIQ) == SCR_FIQ);
6415         hcr = arm_hcr_el2_fmo(env);
6416         break;
6417     default:
6418         scr = ((env->cp15.scr_el3 & SCR_EA) == SCR_EA);
6419         hcr = arm_hcr_el2_amo(env);
6420         break;
6421     };
6422
6423     /* If HCR.TGE is set then HCR is treated as being 1 */
6424     hcr |= ((env->cp15.hcr_el2 & HCR_TGE) == HCR_TGE);
6425
6426     /* Perform a table-lookup for the target EL given the current state */
6427     target_el = target_el_table[is64][scr][rw][hcr][secure][cur_el];
6428
6429     assert(target_el > 0);
6430
6431     return target_el;
6432 }
6433
6434 static bool v7m_stack_write(ARMCPU *cpu, uint32_t addr, uint32_t value,
6435                             ARMMMUIdx mmu_idx, bool ignfault)
6436 {
6437     CPUState *cs = CPU(cpu);
6438     CPUARMState *env = &cpu->env;
6439     MemTxAttrs attrs = {};
6440     MemTxResult txres;
6441     target_ulong page_size;
6442     hwaddr physaddr;
6443     int prot;
6444     ARMMMUFaultInfo fi;
6445     bool secure = mmu_idx & ARM_MMU_IDX_M_S;
6446     int exc;
6447     bool exc_secure;
6448
6449     if (get_phys_addr(env, addr, MMU_DATA_STORE, mmu_idx, &physaddr,
6450                       &attrs, &prot, &page_size, &fi, NULL)) {
6451         /* MPU/SAU lookup failed */
6452         if (fi.type == ARMFault_QEMU_SFault) {
6453             qemu_log_mask(CPU_LOG_INT,
6454                           "...SecureFault with SFSR.AUVIOL during stacking\n");
6455             env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK | R_V7M_SFSR_SFARVALID_MASK;
6456             env->v7m.sfar = addr;
6457             exc = ARMV7M_EXCP_SECURE;
6458             exc_secure = false;
6459         } else {
6460             qemu_log_mask(CPU_LOG_INT, "...MemManageFault with CFSR.MSTKERR\n");
6461             env->v7m.cfsr[secure] |= R_V7M_CFSR_MSTKERR_MASK;
6462             exc = ARMV7M_EXCP_MEM;
6463             exc_secure = secure;
6464         }
6465         goto pend_fault;
6466     }
6467     address_space_stl_le(arm_addressspace(cs, attrs), physaddr, value,
6468                          attrs, &txres);
6469     if (txres != MEMTX_OK) {
6470         /* BusFault trying to write the data */
6471         qemu_log_mask(CPU_LOG_INT, "...BusFault with BFSR.STKERR\n");
6472         env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_STKERR_MASK;
6473         exc = ARMV7M_EXCP_BUS;
6474         exc_secure = false;
6475         goto pend_fault;
6476     }
6477     return true;
6478
6479 pend_fault:
6480     /* By pending the exception at this point we are making
6481      * the IMPDEF choice "overridden exceptions pended" (see the
6482      * MergeExcInfo() pseudocode). The other choice would be to not
6483      * pend them now and then make a choice about which to throw away
6484      * later if we have two derived exceptions.
6485      * The only case when we must not pend the exception but instead
6486      * throw it away is if we are doing the push of the callee registers
6487      * and we've already generated a derived exception. Even in this
6488      * case we will still update the fault status registers.
6489      */
6490     if (!ignfault) {
6491         armv7m_nvic_set_pending_derived(env->nvic, exc, exc_secure);
6492     }
6493     return false;
6494 }
6495
6496 static bool v7m_stack_read(ARMCPU *cpu, uint32_t *dest, uint32_t addr,
6497                            ARMMMUIdx mmu_idx)
6498 {
6499     CPUState *cs = CPU(cpu);
6500     CPUARMState *env = &cpu->env;
6501     MemTxAttrs attrs = {};
6502     MemTxResult txres;
6503     target_ulong page_size;
6504     hwaddr physaddr;
6505     int prot;
6506     ARMMMUFaultInfo fi;
6507     bool secure = mmu_idx & ARM_MMU_IDX_M_S;
6508     int exc;
6509     bool exc_secure;
6510     uint32_t value;
6511
6512     if (get_phys_addr(env, addr, MMU_DATA_LOAD, mmu_idx, &physaddr,
6513                       &attrs, &prot, &page_size, &fi, NULL)) {
6514         /* MPU/SAU lookup failed */
6515         if (fi.type == ARMFault_QEMU_SFault) {
6516             qemu_log_mask(CPU_LOG_INT,
6517                           "...SecureFault with SFSR.AUVIOL during unstack\n");
6518             env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK | R_V7M_SFSR_SFARVALID_MASK;
6519             env->v7m.sfar = addr;
6520             exc = ARMV7M_EXCP_SECURE;
6521             exc_secure = false;
6522         } else {
6523             qemu_log_mask(CPU_LOG_INT,
6524                           "...MemManageFault with CFSR.MUNSTKERR\n");
6525             env->v7m.cfsr[secure] |= R_V7M_CFSR_MUNSTKERR_MASK;
6526             exc = ARMV7M_EXCP_MEM;
6527             exc_secure = secure;
6528         }
6529         goto pend_fault;
6530     }
6531
6532     value = address_space_ldl(arm_addressspace(cs, attrs), physaddr,
6533                               attrs, &txres);
6534     if (txres != MEMTX_OK) {
6535         /* BusFault trying to read the data */
6536         qemu_log_mask(CPU_LOG_INT, "...BusFault with BFSR.UNSTKERR\n");
6537         env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_UNSTKERR_MASK;
6538         exc = ARMV7M_EXCP_BUS;
6539         exc_secure = false;
6540         goto pend_fault;
6541     }
6542
6543     *dest = value;
6544     return true;
6545
6546 pend_fault:
6547     /* By pending the exception at this point we are making
6548      * the IMPDEF choice "overridden exceptions pended" (see the
6549      * MergeExcInfo() pseudocode). The other choice would be to not
6550      * pend them now and then make a choice about which to throw away
6551      * later if we have two derived exceptions.
6552      */
6553     armv7m_nvic_set_pending(env->nvic, exc, exc_secure);
6554     return false;
6555 }
6556
6557 /* Return true if we're using the process stack pointer (not the MSP) */
6558 static bool v7m_using_psp(CPUARMState *env)
6559 {
6560     /* Handler mode always uses the main stack; for thread mode
6561      * the CONTROL.SPSEL bit determines the answer.
6562      * Note that in v7M it is not possible to be in Handler mode with
6563      * CONTROL.SPSEL non-zero, but in v8M it is, so we must check both.
6564      */
6565     return !arm_v7m_is_handler_mode(env) &&
6566         env->v7m.control[env->v7m.secure] & R_V7M_CONTROL_SPSEL_MASK;
6567 }
6568
6569 /* Write to v7M CONTROL.SPSEL bit for the specified security bank.
6570  * This may change the current stack pointer between Main and Process
6571  * stack pointers if it is done for the CONTROL register for the current
6572  * security state.
6573  */
6574 static void write_v7m_control_spsel_for_secstate(CPUARMState *env,
6575                                                  bool new_spsel,
6576                                                  bool secstate)
6577 {
6578     bool old_is_psp = v7m_using_psp(env);
6579
6580     env->v7m.control[secstate] =
6581         deposit32(env->v7m.control[secstate],
6582                   R_V7M_CONTROL_SPSEL_SHIFT,
6583                   R_V7M_CONTROL_SPSEL_LENGTH, new_spsel);
6584
6585     if (secstate == env->v7m.secure) {
6586         bool new_is_psp = v7m_using_psp(env);
6587         uint32_t tmp;
6588
6589         if (old_is_psp != new_is_psp) {
6590             tmp = env->v7m.other_sp;
6591             env->v7m.other_sp = env->regs[13];
6592             env->regs[13] = tmp;
6593         }
6594     }
6595 }
6596
6597 /* Write to v7M CONTROL.SPSEL bit. This may change the current
6598  * stack pointer between Main and Process stack pointers.
6599  */
6600 static void write_v7m_control_spsel(CPUARMState *env, bool new_spsel)
6601 {
6602     write_v7m_control_spsel_for_secstate(env, new_spsel, env->v7m.secure);
6603 }
6604
6605 void write_v7m_exception(CPUARMState *env, uint32_t new_exc)
6606 {
6607     /* Write a new value to v7m.exception, thus transitioning into or out
6608      * of Handler mode; this may result in a change of active stack pointer.
6609      */
6610     bool new_is_psp, old_is_psp = v7m_using_psp(env);
6611     uint32_t tmp;
6612
6613     env->v7m.exception = new_exc;
6614
6615     new_is_psp = v7m_using_psp(env);
6616
6617     if (old_is_psp != new_is_psp) {
6618         tmp = env->v7m.other_sp;
6619         env->v7m.other_sp = env->regs[13];
6620         env->regs[13] = tmp;
6621     }
6622 }
6623
6624 /* Switch M profile security state between NS and S */
6625 static void switch_v7m_security_state(CPUARMState *env, bool new_secstate)
6626 {
6627     uint32_t new_ss_msp, new_ss_psp;
6628
6629     if (env->v7m.secure == new_secstate) {
6630         return;
6631     }
6632
6633     /* All the banked state is accessed by looking at env->v7m.secure
6634      * except for the stack pointer; rearrange the SP appropriately.
6635      */
6636     new_ss_msp = env->v7m.other_ss_msp;
6637     new_ss_psp = env->v7m.other_ss_psp;
6638
6639     if (v7m_using_psp(env)) {
6640         env->v7m.other_ss_psp = env->regs[13];
6641         env->v7m.other_ss_msp = env->v7m.other_sp;
6642     } else {
6643         env->v7m.other_ss_msp = env->regs[13];
6644         env->v7m.other_ss_psp = env->v7m.other_sp;
6645     }
6646
6647     env->v7m.secure = new_secstate;
6648
6649     if (v7m_using_psp(env)) {
6650         env->regs[13] = new_ss_psp;
6651         env->v7m.other_sp = new_ss_msp;
6652     } else {
6653         env->regs[13] = new_ss_msp;
6654         env->v7m.other_sp = new_ss_psp;
6655     }
6656 }
6657
6658 void HELPER(v7m_bxns)(CPUARMState *env, uint32_t dest)
6659 {
6660     /* Handle v7M BXNS:
6661      *  - if the return value is a magic value, do exception return (like BX)
6662      *  - otherwise bit 0 of the return value is the target security state
6663      */
6664     uint32_t min_magic;
6665
6666     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
6667         /* Covers FNC_RETURN and EXC_RETURN magic */
6668         min_magic = FNC_RETURN_MIN_MAGIC;
6669     } else {
6670         /* EXC_RETURN magic only */
6671         min_magic = EXC_RETURN_MIN_MAGIC;
6672     }
6673
6674     if (dest >= min_magic) {
6675         /* This is an exception return magic value; put it where
6676          * do_v7m_exception_exit() expects and raise EXCEPTION_EXIT.
6677          * Note that if we ever add gen_ss_advance() singlestep support to
6678          * M profile this should count as an "instruction execution complete"
6679          * event (compare gen_bx_excret_final_code()).
6680          */
6681         env->regs[15] = dest & ~1;
6682         env->thumb = dest & 1;
6683         HELPER(exception_internal)(env, EXCP_EXCEPTION_EXIT);
6684         /* notreached */
6685     }
6686
6687     /* translate.c should have made BXNS UNDEF unless we're secure */
6688     assert(env->v7m.secure);
6689
6690     switch_v7m_security_state(env, dest & 1);
6691     env->thumb = 1;
6692     env->regs[15] = dest & ~1;
6693 }
6694
6695 void HELPER(v7m_blxns)(CPUARMState *env, uint32_t dest)
6696 {
6697     /* Handle v7M BLXNS:
6698      *  - bit 0 of the destination address is the target security state
6699      */
6700
6701     /* At this point regs[15] is the address just after the BLXNS */
6702     uint32_t nextinst = env->regs[15] | 1;
6703     uint32_t sp = env->regs[13] - 8;
6704     uint32_t saved_psr;
6705
6706     /* translate.c will have made BLXNS UNDEF unless we're secure */
6707     assert(env->v7m.secure);
6708
6709     if (dest & 1) {
6710         /* target is Secure, so this is just a normal BLX,
6711          * except that the low bit doesn't indicate Thumb/not.
6712          */
6713         env->regs[14] = nextinst;
6714         env->thumb = 1;
6715         env->regs[15] = dest & ~1;
6716         return;
6717     }
6718
6719     /* Target is non-secure: first push a stack frame */
6720     if (!QEMU_IS_ALIGNED(sp, 8)) {
6721         qemu_log_mask(LOG_GUEST_ERROR,
6722                       "BLXNS with misaligned SP is UNPREDICTABLE\n");
6723     }
6724
6725     saved_psr = env->v7m.exception;
6726     if (env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK) {
6727         saved_psr |= XPSR_SFPA;
6728     }
6729
6730     /* Note that these stores can throw exceptions on MPU faults */
6731     cpu_stl_data(env, sp, nextinst);
6732     cpu_stl_data(env, sp + 4, saved_psr);
6733
6734     env->regs[13] = sp;
6735     env->regs[14] = 0xfeffffff;
6736     if (arm_v7m_is_handler_mode(env)) {
6737         /* Write a dummy value to IPSR, to avoid leaking the current secure
6738          * exception number to non-secure code. This is guaranteed not
6739          * to cause write_v7m_exception() to actually change stacks.
6740          */
6741         write_v7m_exception(env, 1);
6742     }
6743     switch_v7m_security_state(env, 0);
6744     env->thumb = 1;
6745     env->regs[15] = dest;
6746 }
6747
6748 static uint32_t *get_v7m_sp_ptr(CPUARMState *env, bool secure, bool threadmode,
6749                                 bool spsel)
6750 {
6751     /* Return a pointer to the location where we currently store the
6752      * stack pointer for the requested security state and thread mode.
6753      * This pointer will become invalid if the CPU state is updated
6754      * such that the stack pointers are switched around (eg changing
6755      * the SPSEL control bit).
6756      * Compare the v8M ARM ARM pseudocode LookUpSP_with_security_mode().
6757      * Unlike that pseudocode, we require the caller to pass us in the
6758      * SPSEL control bit value; this is because we also use this
6759      * function in handling of pushing of the callee-saves registers
6760      * part of the v8M stack frame (pseudocode PushCalleeStack()),
6761      * and in the tailchain codepath the SPSEL bit comes from the exception
6762      * return magic LR value from the previous exception. The pseudocode
6763      * opencodes the stack-selection in PushCalleeStack(), but we prefer
6764      * to make this utility function generic enough to do the job.
6765      */
6766     bool want_psp = threadmode && spsel;
6767
6768     if (secure == env->v7m.secure) {
6769         if (want_psp == v7m_using_psp(env)) {
6770             return &env->regs[13];
6771         } else {
6772             return &env->v7m.other_sp;
6773         }
6774     } else {
6775         if (want_psp) {
6776             return &env->v7m.other_ss_psp;
6777         } else {
6778             return &env->v7m.other_ss_msp;
6779         }
6780     }
6781 }
6782
6783 static bool arm_v7m_load_vector(ARMCPU *cpu, int exc, bool targets_secure,
6784                                 uint32_t *pvec)
6785 {
6786     CPUState *cs = CPU(cpu);
6787     CPUARMState *env = &cpu->env;
6788     MemTxResult result;
6789     uint32_t addr = env->v7m.vecbase[targets_secure] + exc * 4;
6790     uint32_t vector_entry;
6791     MemTxAttrs attrs = {};
6792     ARMMMUIdx mmu_idx;
6793     bool exc_secure;
6794
6795     mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, targets_secure, true);
6796
6797     /* We don't do a get_phys_addr() here because the rules for vector
6798      * loads are special: they always use the default memory map, and
6799      * the default memory map permits reads from all addresses.
6800      * Since there's no easy way to pass through to pmsav8_mpu_lookup()
6801      * that we want this special case which would always say "yes",
6802      * we just do the SAU lookup here followed by a direct physical load.
6803      */
6804     attrs.secure = targets_secure;
6805     attrs.user = false;
6806
6807     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
6808         V8M_SAttributes sattrs = {};
6809
6810         v8m_security_lookup(env, addr, MMU_DATA_LOAD, mmu_idx, &sattrs);
6811         if (sattrs.ns) {
6812             attrs.secure = false;
6813         } else if (!targets_secure) {
6814             /* NS access to S memory */
6815             goto load_fail;
6816         }
6817     }
6818
6819     vector_entry = address_space_ldl(arm_addressspace(cs, attrs), addr,
6820                                      attrs, &result);
6821     if (result != MEMTX_OK) {
6822         goto load_fail;
6823     }
6824     *pvec = vector_entry;
6825     return true;
6826
6827 load_fail:
6828     /* All vector table fetch fails are reported as HardFault, with
6829      * HFSR.VECTTBL and .FORCED set. (FORCED is set because
6830      * technically the underlying exception is a MemManage or BusFault
6831      * that is escalated to HardFault.) This is a terminal exception,
6832      * so we will either take the HardFault immediately or else enter
6833      * lockup (the latter case is handled in armv7m_nvic_set_pending_derived()).
6834      */
6835     exc_secure = targets_secure ||
6836         !(cpu->env.v7m.aircr & R_V7M_AIRCR_BFHFNMINS_MASK);
6837     env->v7m.hfsr |= R_V7M_HFSR_VECTTBL_MASK | R_V7M_HFSR_FORCED_MASK;
6838     armv7m_nvic_set_pending_derived(env->nvic, ARMV7M_EXCP_HARD, exc_secure);
6839     return false;
6840 }
6841
6842 static bool v7m_push_callee_stack(ARMCPU *cpu, uint32_t lr, bool dotailchain,
6843                                   bool ignore_faults)
6844 {
6845     /* For v8M, push the callee-saves register part of the stack frame.
6846      * Compare the v8M pseudocode PushCalleeStack().
6847      * In the tailchaining case this may not be the current stack.
6848      */
6849     CPUARMState *env = &cpu->env;
6850     uint32_t *frame_sp_p;
6851     uint32_t frameptr;
6852     ARMMMUIdx mmu_idx;
6853     bool stacked_ok;
6854
6855     if (dotailchain) {
6856         bool mode = lr & R_V7M_EXCRET_MODE_MASK;
6857         bool priv = !(env->v7m.control[M_REG_S] & R_V7M_CONTROL_NPRIV_MASK) ||
6858             !mode;
6859
6860         mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, M_REG_S, priv);
6861         frame_sp_p = get_v7m_sp_ptr(env, M_REG_S, mode,
6862                                     lr & R_V7M_EXCRET_SPSEL_MASK);
6863     } else {
6864         mmu_idx = core_to_arm_mmu_idx(env, cpu_mmu_index(env, false));
6865         frame_sp_p = &env->regs[13];
6866     }
6867
6868     frameptr = *frame_sp_p - 0x28;
6869
6870     /* Write as much of the stack frame as we can. A write failure may
6871      * cause us to pend a derived exception.
6872      */
6873     stacked_ok =
6874         v7m_stack_write(cpu, frameptr, 0xfefa125b, mmu_idx, ignore_faults) &&
6875         v7m_stack_write(cpu, frameptr + 0x8, env->regs[4], mmu_idx,
6876                         ignore_faults) &&
6877         v7m_stack_write(cpu, frameptr + 0xc, env->regs[5], mmu_idx,
6878                         ignore_faults) &&
6879         v7m_stack_write(cpu, frameptr + 0x10, env->regs[6], mmu_idx,
6880                         ignore_faults) &&
6881         v7m_stack_write(cpu, frameptr + 0x14, env->regs[7], mmu_idx,
6882                         ignore_faults) &&
6883         v7m_stack_write(cpu, frameptr + 0x18, env->regs[8], mmu_idx,
6884                         ignore_faults) &&
6885         v7m_stack_write(cpu, frameptr + 0x1c, env->regs[9], mmu_idx,
6886                         ignore_faults) &&
6887         v7m_stack_write(cpu, frameptr + 0x20, env->regs[10], mmu_idx,
6888                         ignore_faults) &&
6889         v7m_stack_write(cpu, frameptr + 0x24, env->regs[11], mmu_idx,
6890                         ignore_faults);
6891
6892     /* Update SP regardless of whether any of the stack accesses failed.
6893      * When we implement v8M stack limit checking then this attempt to
6894      * update SP might also fail and result in a derived exception.
6895      */
6896     *frame_sp_p = frameptr;
6897
6898     return !stacked_ok;
6899 }
6900
6901 static void v7m_exception_taken(ARMCPU *cpu, uint32_t lr, bool dotailchain,
6902                                 bool ignore_stackfaults)
6903 {
6904     /* Do the "take the exception" parts of exception entry,
6905      * but not the pushing of state to the stack. This is
6906      * similar to the pseudocode ExceptionTaken() function.
6907      */
6908     CPUARMState *env = &cpu->env;
6909     uint32_t addr;
6910     bool targets_secure;
6911     int exc;
6912     bool push_failed = false;
6913
6914     armv7m_nvic_get_pending_irq_info(env->nvic, &exc, &targets_secure);
6915     qemu_log_mask(CPU_LOG_INT, "...taking pending %s exception %d\n",
6916                   targets_secure ? "secure" : "nonsecure", exc);
6917
6918     if (arm_feature(env, ARM_FEATURE_V8)) {
6919         if (arm_feature(env, ARM_FEATURE_M_SECURITY) &&
6920             (lr & R_V7M_EXCRET_S_MASK)) {
6921             /* The background code (the owner of the registers in the
6922              * exception frame) is Secure. This means it may either already
6923              * have or now needs to push callee-saves registers.
6924              */
6925             if (targets_secure) {
6926                 if (dotailchain && !(lr & R_V7M_EXCRET_ES_MASK)) {
6927                     /* We took an exception from Secure to NonSecure
6928                      * (which means the callee-saved registers got stacked)
6929                      * and are now tailchaining to a Secure exception.
6930                      * Clear DCRS so eventual return from this Secure
6931                      * exception unstacks the callee-saved registers.
6932                      */
6933                     lr &= ~R_V7M_EXCRET_DCRS_MASK;
6934                 }
6935             } else {
6936                 /* We're going to a non-secure exception; push the
6937                  * callee-saves registers to the stack now, if they're
6938                  * not already saved.
6939                  */
6940                 if (lr & R_V7M_EXCRET_DCRS_MASK &&
6941                     !(dotailchain && !(lr & R_V7M_EXCRET_ES_MASK))) {
6942                     push_failed = v7m_push_callee_stack(cpu, lr, dotailchain,
6943                                                         ignore_stackfaults);
6944                 }
6945                 lr |= R_V7M_EXCRET_DCRS_MASK;
6946             }
6947         }
6948
6949         lr &= ~R_V7M_EXCRET_ES_MASK;
6950         if (targets_secure || !arm_feature(env, ARM_FEATURE_M_SECURITY)) {
6951             lr |= R_V7M_EXCRET_ES_MASK;
6952         }
6953         lr &= ~R_V7M_EXCRET_SPSEL_MASK;
6954         if (env->v7m.control[targets_secure] & R_V7M_CONTROL_SPSEL_MASK) {
6955             lr |= R_V7M_EXCRET_SPSEL_MASK;
6956         }
6957
6958         /* Clear registers if necessary to prevent non-secure exception
6959          * code being able to see register values from secure code.
6960          * Where register values become architecturally UNKNOWN we leave
6961          * them with their previous values.
6962          */
6963         if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
6964             if (!targets_secure) {
6965                 /* Always clear the caller-saved registers (they have been
6966                  * pushed to the stack earlier in v7m_push_stack()).
6967                  * Clear callee-saved registers if the background code is
6968                  * Secure (in which case these regs were saved in
6969                  * v7m_push_callee_stack()).
6970                  */
6971                 int i;
6972
6973                 for (i = 0; i < 13; i++) {
6974                     /* r4..r11 are callee-saves, zero only if EXCRET.S == 1 */
6975                     if (i < 4 || i > 11 || (lr & R_V7M_EXCRET_S_MASK)) {
6976                         env->regs[i] = 0;
6977                     }
6978                 }
6979                 /* Clear EAPSR */
6980                 xpsr_write(env, 0, XPSR_NZCV | XPSR_Q | XPSR_GE | XPSR_IT);
6981             }
6982         }
6983     }
6984
6985     if (push_failed && !ignore_stackfaults) {
6986         /* Derived exception on callee-saves register stacking:
6987          * we might now want to take a different exception which
6988          * targets a different security state, so try again from the top.
6989          */
6990         qemu_log_mask(CPU_LOG_INT,
6991                       "...derived exception on callee-saves register stacking");
6992         v7m_exception_taken(cpu, lr, true, true);
6993         return;
6994     }
6995
6996     if (!arm_v7m_load_vector(cpu, exc, targets_secure, &addr)) {
6997         /* Vector load failed: derived exception */
6998         qemu_log_mask(CPU_LOG_INT, "...derived exception on vector table load");
6999         v7m_exception_taken(cpu, lr, true, true);
7000         return;
7001     }
7002
7003     /* Now we've done everything that might cause a derived exception
7004      * we can go ahead and activate whichever exception we're going to
7005      * take (which might now be the derived exception).
7006      */
7007     armv7m_nvic_acknowledge_irq(env->nvic);
7008
7009     /* Switch to target security state -- must do this before writing SPSEL */
7010     switch_v7m_security_state(env, targets_secure);
7011     write_v7m_control_spsel(env, 0);
7012     arm_clear_exclusive(env);
7013     /* Clear IT bits */
7014     env->condexec_bits = 0;
7015     env->regs[14] = lr;
7016     env->regs[15] = addr & 0xfffffffe;
7017     env->thumb = addr & 1;
7018 }
7019
7020 static bool v7m_push_stack(ARMCPU *cpu)
7021 {
7022     /* Do the "set up stack frame" part of exception entry,
7023      * similar to pseudocode PushStack().
7024      * Return true if we generate a derived exception (and so
7025      * should ignore further stack faults trying to process
7026      * that derived exception.)
7027      */
7028     bool stacked_ok;
7029     CPUARMState *env = &cpu->env;
7030     uint32_t xpsr = xpsr_read(env);
7031     uint32_t frameptr = env->regs[13];
7032     ARMMMUIdx mmu_idx = core_to_arm_mmu_idx(env, cpu_mmu_index(env, false));
7033
7034     /* Align stack pointer if the guest wants that */
7035     if ((frameptr & 4) &&
7036         (env->v7m.ccr[env->v7m.secure] & R_V7M_CCR_STKALIGN_MASK)) {
7037         frameptr -= 4;
7038         xpsr |= XPSR_SPREALIGN;
7039     }
7040
7041     frameptr -= 0x20;
7042
7043     /* Write as much of the stack frame as we can. If we fail a stack
7044      * write this will result in a derived exception being pended
7045      * (which may be taken in preference to the one we started with
7046      * if it has higher priority).
7047      */
7048     stacked_ok =
7049         v7m_stack_write(cpu, frameptr, env->regs[0], mmu_idx, false) &&
7050         v7m_stack_write(cpu, frameptr + 4, env->regs[1], mmu_idx, false) &&
7051         v7m_stack_write(cpu, frameptr + 8, env->regs[2], mmu_idx, false) &&
7052         v7m_stack_write(cpu, frameptr + 12, env->regs[3], mmu_idx, false) &&
7053         v7m_stack_write(cpu, frameptr + 16, env->regs[12], mmu_idx, false) &&
7054         v7m_stack_write(cpu, frameptr + 20, env->regs[14], mmu_idx, false) &&
7055         v7m_stack_write(cpu, frameptr + 24, env->regs[15], mmu_idx, false) &&
7056         v7m_stack_write(cpu, frameptr + 28, xpsr, mmu_idx, false);
7057
7058     /* Update SP regardless of whether any of the stack accesses failed.
7059      * When we implement v8M stack limit checking then this attempt to
7060      * update SP might also fail and result in a derived exception.
7061      */
7062     env->regs[13] = frameptr;
7063
7064     return !stacked_ok;
7065 }
7066
7067 static void do_v7m_exception_exit(ARMCPU *cpu)
7068 {
7069     CPUARMState *env = &cpu->env;
7070     uint32_t excret;
7071     uint32_t xpsr;
7072     bool ufault = false;
7073     bool sfault = false;
7074     bool return_to_sp_process;
7075     bool return_to_handler;
7076     bool rettobase = false;
7077     bool exc_secure = false;
7078     bool return_to_secure;
7079
7080     /* If we're not in Handler mode then jumps to magic exception-exit
7081      * addresses don't have magic behaviour. However for the v8M
7082      * security extensions the magic secure-function-return has to
7083      * work in thread mode too, so to avoid doing an extra check in
7084      * the generated code we allow exception-exit magic to also cause the
7085      * internal exception and bring us here in thread mode. Correct code
7086      * will never try to do this (the following insn fetch will always
7087      * fault) so we the overhead of having taken an unnecessary exception
7088      * doesn't matter.
7089      */
7090     if (!arm_v7m_is_handler_mode(env)) {
7091         return;
7092     }
7093
7094     /* In the spec pseudocode ExceptionReturn() is called directly
7095      * from BXWritePC() and gets the full target PC value including
7096      * bit zero. In QEMU's implementation we treat it as a normal
7097      * jump-to-register (which is then caught later on), and so split
7098      * the target value up between env->regs[15] and env->thumb in
7099      * gen_bx(). Reconstitute it.
7100      */
7101     excret = env->regs[15];
7102     if (env->thumb) {
7103         excret |= 1;
7104     }
7105
7106     qemu_log_mask(CPU_LOG_INT, "Exception return: magic PC %" PRIx32
7107                   " previous exception %d\n",
7108                   excret, env->v7m.exception);
7109
7110     if ((excret & R_V7M_EXCRET_RES1_MASK) != R_V7M_EXCRET_RES1_MASK) {
7111         qemu_log_mask(LOG_GUEST_ERROR, "M profile: zero high bits in exception "
7112                       "exit PC value 0x%" PRIx32 " are UNPREDICTABLE\n",
7113                       excret);
7114     }
7115
7116     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
7117         /* EXC_RETURN.ES validation check (R_SMFL). We must do this before
7118          * we pick which FAULTMASK to clear.
7119          */
7120         if (!env->v7m.secure &&
7121             ((excret & R_V7M_EXCRET_ES_MASK) ||
7122              !(excret & R_V7M_EXCRET_DCRS_MASK))) {
7123             sfault = 1;
7124             /* For all other purposes, treat ES as 0 (R_HXSR) */
7125             excret &= ~R_V7M_EXCRET_ES_MASK;
7126         }
7127         exc_secure = excret & R_V7M_EXCRET_ES_MASK;
7128     }
7129
7130     if (env->v7m.exception != ARMV7M_EXCP_NMI) {
7131         /* Auto-clear FAULTMASK on return from other than NMI.
7132          * If the security extension is implemented then this only
7133          * happens if the raw execution priority is >= 0; the
7134          * value of the ES bit in the exception return value indicates
7135          * which security state's faultmask to clear. (v8M ARM ARM R_KBNF.)
7136          */
7137         if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
7138             if (armv7m_nvic_raw_execution_priority(env->nvic) >= 0) {
7139                 env->v7m.faultmask[exc_secure] = 0;
7140             }
7141         } else {
7142             env->v7m.faultmask[M_REG_NS] = 0;
7143         }
7144     }
7145
7146     switch (armv7m_nvic_complete_irq(env->nvic, env->v7m.exception,
7147                                      exc_secure)) {
7148     case -1:
7149         /* attempt to exit an exception that isn't active */
7150         ufault = true;
7151         break;
7152     case 0:
7153         /* still an irq active now */
7154         break;
7155     case 1:
7156         /* we returned to base exception level, no nesting.
7157          * (In the pseudocode this is written using "NestedActivation != 1"
7158          * where we have 'rettobase == false'.)
7159          */
7160         rettobase = true;
7161         break;
7162     default:
7163         g_assert_not_reached();
7164     }
7165
7166     return_to_handler = !(excret & R_V7M_EXCRET_MODE_MASK);
7167     return_to_sp_process = excret & R_V7M_EXCRET_SPSEL_MASK;
7168     return_to_secure = arm_feature(env, ARM_FEATURE_M_SECURITY) &&
7169         (excret & R_V7M_EXCRET_S_MASK);
7170
7171     if (arm_feature(env, ARM_FEATURE_V8)) {
7172         if (!arm_feature(env, ARM_FEATURE_M_SECURITY)) {
7173             /* UNPREDICTABLE if S == 1 or DCRS == 0 or ES == 1 (R_XLCP);
7174              * we choose to take the UsageFault.
7175              */
7176             if ((excret & R_V7M_EXCRET_S_MASK) ||
7177                 (excret & R_V7M_EXCRET_ES_MASK) ||
7178                 !(excret & R_V7M_EXCRET_DCRS_MASK)) {
7179                 ufault = true;
7180             }
7181         }
7182         if (excret & R_V7M_EXCRET_RES0_MASK) {
7183             ufault = true;
7184         }
7185     } else {
7186         /* For v7M we only recognize certain combinations of the low bits */
7187         switch (excret & 0xf) {
7188         case 1: /* Return to Handler */
7189             break;
7190         case 13: /* Return to Thread using Process stack */
7191         case 9: /* Return to Thread using Main stack */
7192             /* We only need to check NONBASETHRDENA for v7M, because in
7193              * v8M this bit does not exist (it is RES1).
7194              */
7195             if (!rettobase &&
7196                 !(env->v7m.ccr[env->v7m.secure] &
7197                   R_V7M_CCR_NONBASETHRDENA_MASK)) {
7198                 ufault = true;
7199             }
7200             break;
7201         default:
7202             ufault = true;
7203         }
7204     }
7205
7206     /*
7207      * Set CONTROL.SPSEL from excret.SPSEL. Since we're still in
7208      * Handler mode (and will be until we write the new XPSR.Interrupt
7209      * field) this does not switch around the current stack pointer.
7210      * We must do this before we do any kind of tailchaining, including
7211      * for the derived exceptions on integrity check failures, or we will
7212      * give the guest an incorrect EXCRET.SPSEL value on exception entry.
7213      */
7214     write_v7m_control_spsel_for_secstate(env, return_to_sp_process, exc_secure);
7215
7216     if (sfault) {
7217         env->v7m.sfsr |= R_V7M_SFSR_INVER_MASK;
7218         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
7219         qemu_log_mask(CPU_LOG_INT, "...taking SecureFault on existing "
7220                       "stackframe: failed EXC_RETURN.ES validity check\n");
7221         v7m_exception_taken(cpu, excret, true, false);
7222         return;
7223     }
7224
7225     if (ufault) {
7226         /* Bad exception return: instead of popping the exception
7227          * stack, directly take a usage fault on the current stack.
7228          */
7229         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
7230         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
7231         qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on existing "
7232                       "stackframe: failed exception return integrity check\n");
7233         v7m_exception_taken(cpu, excret, true, false);
7234         return;
7235     }
7236
7237     /*
7238      * Tailchaining: if there is currently a pending exception that
7239      * is high enough priority to preempt execution at the level we're
7240      * about to return to, then just directly take that exception now,
7241      * avoiding an unstack-and-then-stack. Note that now we have
7242      * deactivated the previous exception by calling armv7m_nvic_complete_irq()
7243      * our current execution priority is already the execution priority we are
7244      * returning to -- none of the state we would unstack or set based on
7245      * the EXCRET value affects it.
7246      */
7247     if (armv7m_nvic_can_take_pending_exception(env->nvic)) {
7248         qemu_log_mask(CPU_LOG_INT, "...tailchaining to pending exception\n");
7249         v7m_exception_taken(cpu, excret, true, false);
7250         return;
7251     }
7252
7253     switch_v7m_security_state(env, return_to_secure);
7254
7255     {
7256         /* The stack pointer we should be reading the exception frame from
7257          * depends on bits in the magic exception return type value (and
7258          * for v8M isn't necessarily the stack pointer we will eventually
7259          * end up resuming execution with). Get a pointer to the location
7260          * in the CPU state struct where the SP we need is currently being
7261          * stored; we will use and modify it in place.
7262          * We use this limited C variable scope so we don't accidentally
7263          * use 'frame_sp_p' after we do something that makes it invalid.
7264          */
7265         uint32_t *frame_sp_p = get_v7m_sp_ptr(env,
7266                                               return_to_secure,
7267                                               !return_to_handler,
7268                                               return_to_sp_process);
7269         uint32_t frameptr = *frame_sp_p;
7270         bool pop_ok = true;
7271         ARMMMUIdx mmu_idx;
7272         bool return_to_priv = return_to_handler ||
7273             !(env->v7m.control[return_to_secure] & R_V7M_CONTROL_NPRIV_MASK);
7274
7275         mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, return_to_secure,
7276                                                         return_to_priv);
7277
7278         if (!QEMU_IS_ALIGNED(frameptr, 8) &&
7279             arm_feature(env, ARM_FEATURE_V8)) {
7280             qemu_log_mask(LOG_GUEST_ERROR,
7281                           "M profile exception return with non-8-aligned SP "
7282                           "for destination state is UNPREDICTABLE\n");
7283         }
7284
7285         /* Do we need to pop callee-saved registers? */
7286         if (return_to_secure &&
7287             ((excret & R_V7M_EXCRET_ES_MASK) == 0 ||
7288              (excret & R_V7M_EXCRET_DCRS_MASK) == 0)) {
7289             uint32_t expected_sig = 0xfefa125b;
7290             uint32_t actual_sig;
7291
7292             pop_ok = v7m_stack_read(cpu, &actual_sig, frameptr, mmu_idx);
7293
7294             if (pop_ok && expected_sig != actual_sig) {
7295                 /* Take a SecureFault on the current stack */
7296                 env->v7m.sfsr |= R_V7M_SFSR_INVIS_MASK;
7297                 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
7298                 qemu_log_mask(CPU_LOG_INT, "...taking SecureFault on existing "
7299                               "stackframe: failed exception return integrity "
7300                               "signature check\n");
7301                 v7m_exception_taken(cpu, excret, true, false);
7302                 return;
7303             }
7304
7305             pop_ok = pop_ok &&
7306                 v7m_stack_read(cpu, &env->regs[4], frameptr + 0x8, mmu_idx) &&
7307                 v7m_stack_read(cpu, &env->regs[5], frameptr + 0xc, mmu_idx) &&
7308                 v7m_stack_read(cpu, &env->regs[6], frameptr + 0x10, mmu_idx) &&
7309                 v7m_stack_read(cpu, &env->regs[7], frameptr + 0x14, mmu_idx) &&
7310                 v7m_stack_read(cpu, &env->regs[8], frameptr + 0x18, mmu_idx) &&
7311                 v7m_stack_read(cpu, &env->regs[9], frameptr + 0x1c, mmu_idx) &&
7312                 v7m_stack_read(cpu, &env->regs[10], frameptr + 0x20, mmu_idx) &&
7313                 v7m_stack_read(cpu, &env->regs[11], frameptr + 0x24, mmu_idx);
7314
7315             frameptr += 0x28;
7316         }
7317
7318         /* Pop registers */
7319         pop_ok = pop_ok &&
7320             v7m_stack_read(cpu, &env->regs[0], frameptr, mmu_idx) &&
7321             v7m_stack_read(cpu, &env->regs[1], frameptr + 0x4, mmu_idx) &&
7322             v7m_stack_read(cpu, &env->regs[2], frameptr + 0x8, mmu_idx) &&
7323             v7m_stack_read(cpu, &env->regs[3], frameptr + 0xc, mmu_idx) &&
7324             v7m_stack_read(cpu, &env->regs[12], frameptr + 0x10, mmu_idx) &&
7325             v7m_stack_read(cpu, &env->regs[14], frameptr + 0x14, mmu_idx) &&
7326             v7m_stack_read(cpu, &env->regs[15], frameptr + 0x18, mmu_idx) &&
7327             v7m_stack_read(cpu, &xpsr, frameptr + 0x1c, mmu_idx);
7328
7329         if (!pop_ok) {
7330             /* v7m_stack_read() pended a fault, so take it (as a tail
7331              * chained exception on the same stack frame)
7332              */
7333             qemu_log_mask(CPU_LOG_INT, "...derived exception on unstacking\n");
7334             v7m_exception_taken(cpu, excret, true, false);
7335             return;
7336         }
7337
7338         /* Returning from an exception with a PC with bit 0 set is defined
7339          * behaviour on v8M (bit 0 is ignored), but for v7M it was specified
7340          * to be UNPREDICTABLE. In practice actual v7M hardware seems to ignore
7341          * the lsbit, and there are several RTOSes out there which incorrectly
7342          * assume the r15 in the stack frame should be a Thumb-style "lsbit
7343          * indicates ARM/Thumb" value, so ignore the bit on v7M as well, but
7344          * complain about the badly behaved guest.
7345          */
7346         if (env->regs[15] & 1) {
7347             env->regs[15] &= ~1U;
7348             if (!arm_feature(env, ARM_FEATURE_V8)) {
7349                 qemu_log_mask(LOG_GUEST_ERROR,
7350                               "M profile return from interrupt with misaligned "
7351                               "PC is UNPREDICTABLE on v7M\n");
7352             }
7353         }
7354
7355         if (arm_feature(env, ARM_FEATURE_V8)) {
7356             /* For v8M we have to check whether the xPSR exception field
7357              * matches the EXCRET value for return to handler/thread
7358              * before we commit to changing the SP and xPSR.
7359              */
7360             bool will_be_handler = (xpsr & XPSR_EXCP) != 0;
7361             if (return_to_handler != will_be_handler) {
7362                 /* Take an INVPC UsageFault on the current stack.
7363                  * By this point we will have switched to the security state
7364                  * for the background state, so this UsageFault will target
7365                  * that state.
7366                  */
7367                 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
7368                                         env->v7m.secure);
7369                 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
7370                 qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on existing "
7371                               "stackframe: failed exception return integrity "
7372                               "check\n");
7373                 v7m_exception_taken(cpu, excret, true, false);
7374                 return;
7375             }
7376         }
7377
7378         /* Commit to consuming the stack frame */
7379         frameptr += 0x20;
7380         /* Undo stack alignment (the SPREALIGN bit indicates that the original
7381          * pre-exception SP was not 8-aligned and we added a padding word to
7382          * align it, so we undo this by ORing in the bit that increases it
7383          * from the current 8-aligned value to the 8-unaligned value. (Adding 4
7384          * would work too but a logical OR is how the pseudocode specifies it.)
7385          */
7386         if (xpsr & XPSR_SPREALIGN) {
7387             frameptr |= 4;
7388         }
7389         *frame_sp_p = frameptr;
7390     }
7391     /* This xpsr_write() will invalidate frame_sp_p as it may switch stack */
7392     xpsr_write(env, xpsr, ~XPSR_SPREALIGN);
7393
7394     /* The restored xPSR exception field will be zero if we're
7395      * resuming in Thread mode. If that doesn't match what the
7396      * exception return excret specified then this is a UsageFault.
7397      * v7M requires we make this check here; v8M did it earlier.
7398      */
7399     if (return_to_handler != arm_v7m_is_handler_mode(env)) {
7400         /* Take an INVPC UsageFault by pushing the stack again;
7401          * we know we're v7M so this is never a Secure UsageFault.
7402          */
7403         bool ignore_stackfaults;
7404
7405         assert(!arm_feature(env, ARM_FEATURE_V8));
7406         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, false);
7407         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
7408         ignore_stackfaults = v7m_push_stack(cpu);
7409         qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on new stackframe: "
7410                       "failed exception return integrity check\n");
7411         v7m_exception_taken(cpu, excret, false, ignore_stackfaults);
7412         return;
7413     }
7414
7415     /* Otherwise, we have a successful exception exit. */
7416     arm_clear_exclusive(env);
7417     qemu_log_mask(CPU_LOG_INT, "...successful exception return\n");
7418 }
7419
7420 static bool do_v7m_function_return(ARMCPU *cpu)
7421 {
7422     /* v8M security extensions magic function return.
7423      * We may either:
7424      *  (1) throw an exception (longjump)
7425      *  (2) return true if we successfully handled the function return
7426      *  (3) return false if we failed a consistency check and have
7427      *      pended a UsageFault that needs to be taken now
7428      *
7429      * At this point the magic return value is split between env->regs[15]
7430      * and env->thumb. We don't bother to reconstitute it because we don't
7431      * need it (all values are handled the same way).
7432      */
7433     CPUARMState *env = &cpu->env;
7434     uint32_t newpc, newpsr, newpsr_exc;
7435
7436     qemu_log_mask(CPU_LOG_INT, "...really v7M secure function return\n");
7437
7438     {
7439         bool threadmode, spsel;
7440         TCGMemOpIdx oi;
7441         ARMMMUIdx mmu_idx;
7442         uint32_t *frame_sp_p;
7443         uint32_t frameptr;
7444
7445         /* Pull the return address and IPSR from the Secure stack */
7446         threadmode = !arm_v7m_is_handler_mode(env);
7447         spsel = env->v7m.control[M_REG_S] & R_V7M_CONTROL_SPSEL_MASK;
7448
7449         frame_sp_p = get_v7m_sp_ptr(env, true, threadmode, spsel);
7450         frameptr = *frame_sp_p;
7451
7452         /* These loads may throw an exception (for MPU faults). We want to
7453          * do them as secure, so work out what MMU index that is.
7454          */
7455         mmu_idx = arm_v7m_mmu_idx_for_secstate(env, true);
7456         oi = make_memop_idx(MO_LE, arm_to_core_mmu_idx(mmu_idx));
7457         newpc = helper_le_ldul_mmu(env, frameptr, oi, 0);
7458         newpsr = helper_le_ldul_mmu(env, frameptr + 4, oi, 0);
7459
7460         /* Consistency checks on new IPSR */
7461         newpsr_exc = newpsr & XPSR_EXCP;
7462         if (!((env->v7m.exception == 0 && newpsr_exc == 0) ||
7463               (env->v7m.exception == 1 && newpsr_exc != 0))) {
7464             /* Pend the fault and tell our caller to take it */
7465             env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
7466             armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
7467                                     env->v7m.secure);
7468             qemu_log_mask(CPU_LOG_INT,
7469                           "...taking INVPC UsageFault: "
7470                           "IPSR consistency check failed\n");
7471             return false;
7472         }
7473
7474         *frame_sp_p = frameptr + 8;
7475     }
7476
7477     /* This invalidates frame_sp_p */
7478     switch_v7m_security_state(env, true);
7479     env->v7m.exception = newpsr_exc;
7480     env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
7481     if (newpsr & XPSR_SFPA) {
7482         env->v7m.control[M_REG_S] |= R_V7M_CONTROL_SFPA_MASK;
7483     }
7484     xpsr_write(env, 0, XPSR_IT);
7485     env->thumb = newpc & 1;
7486     env->regs[15] = newpc & ~1;
7487
7488     qemu_log_mask(CPU_LOG_INT, "...function return successful\n");
7489     return true;
7490 }
7491
7492 static void arm_log_exception(int idx)
7493 {
7494     if (qemu_loglevel_mask(CPU_LOG_INT)) {
7495         const char *exc = NULL;
7496         static const char * const excnames[] = {
7497             [EXCP_UDEF] = "Undefined Instruction",
7498             [EXCP_SWI] = "SVC",
7499             [EXCP_PREFETCH_ABORT] = "Prefetch Abort",
7500             [EXCP_DATA_ABORT] = "Data Abort",
7501             [EXCP_IRQ] = "IRQ",
7502             [EXCP_FIQ] = "FIQ",
7503             [EXCP_BKPT] = "Breakpoint",
7504             [EXCP_EXCEPTION_EXIT] = "QEMU v7M exception exit",
7505             [EXCP_KERNEL_TRAP] = "QEMU intercept of kernel commpage",
7506             [EXCP_HVC] = "Hypervisor Call",
7507             [EXCP_HYP_TRAP] = "Hypervisor Trap",
7508             [EXCP_SMC] = "Secure Monitor Call",
7509             [EXCP_VIRQ] = "Virtual IRQ",
7510             [EXCP_VFIQ] = "Virtual FIQ",
7511             [EXCP_SEMIHOST] = "Semihosting call",
7512             [EXCP_NOCP] = "v7M NOCP UsageFault",
7513             [EXCP_INVSTATE] = "v7M INVSTATE UsageFault",
7514         };
7515
7516         if (idx >= 0 && idx < ARRAY_SIZE(excnames)) {
7517             exc = excnames[idx];
7518         }
7519         if (!exc) {
7520             exc = "unknown";
7521         }
7522         qemu_log_mask(CPU_LOG_INT, "Taking exception %d [%s]\n", idx, exc);
7523     }
7524 }
7525
7526 static bool v7m_read_half_insn(ARMCPU *cpu, ARMMMUIdx mmu_idx,
7527                                uint32_t addr, uint16_t *insn)
7528 {
7529     /* Load a 16-bit portion of a v7M instruction, returning true on success,
7530      * or false on failure (in which case we will have pended the appropriate
7531      * exception).
7532      * We need to do the instruction fetch's MPU and SAU checks
7533      * like this because there is no MMU index that would allow
7534      * doing the load with a single function call. Instead we must
7535      * first check that the security attributes permit the load
7536      * and that they don't mismatch on the two halves of the instruction,
7537      * and then we do the load as a secure load (ie using the security
7538      * attributes of the address, not the CPU, as architecturally required).
7539      */
7540     CPUState *cs = CPU(cpu);
7541     CPUARMState *env = &cpu->env;
7542     V8M_SAttributes sattrs = {};
7543     MemTxAttrs attrs = {};
7544     ARMMMUFaultInfo fi = {};
7545     MemTxResult txres;
7546     target_ulong page_size;
7547     hwaddr physaddr;
7548     int prot;
7549
7550     v8m_security_lookup(env, addr, MMU_INST_FETCH, mmu_idx, &sattrs);
7551     if (!sattrs.nsc || sattrs.ns) {
7552         /* This must be the second half of the insn, and it straddles a
7553          * region boundary with the second half not being S&NSC.
7554          */
7555         env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
7556         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
7557         qemu_log_mask(CPU_LOG_INT,
7558                       "...really SecureFault with SFSR.INVEP\n");
7559         return false;
7560     }
7561     if (get_phys_addr(env, addr, MMU_INST_FETCH, mmu_idx,
7562                       &physaddr, &attrs, &prot, &page_size, &fi, NULL)) {
7563         /* the MPU lookup failed */
7564         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_IACCVIOL_MASK;
7565         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_MEM, env->v7m.secure);
7566         qemu_log_mask(CPU_LOG_INT, "...really MemManage with CFSR.IACCVIOL\n");
7567         return false;
7568     }
7569     *insn = address_space_lduw_le(arm_addressspace(cs, attrs), physaddr,
7570                                  attrs, &txres);
7571     if (txres != MEMTX_OK) {
7572         env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_IBUSERR_MASK;
7573         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_BUS, false);
7574         qemu_log_mask(CPU_LOG_INT, "...really BusFault with CFSR.IBUSERR\n");
7575         return false;
7576     }
7577     return true;
7578 }
7579
7580 static bool v7m_handle_execute_nsc(ARMCPU *cpu)
7581 {
7582     /* Check whether this attempt to execute code in a Secure & NS-Callable
7583      * memory region is for an SG instruction; if so, then emulate the
7584      * effect of the SG instruction and return true. Otherwise pend
7585      * the correct kind of exception and return false.
7586      */
7587     CPUARMState *env = &cpu->env;
7588     ARMMMUIdx mmu_idx;
7589     uint16_t insn;
7590
7591     /* We should never get here unless get_phys_addr_pmsav8() caused
7592      * an exception for NS executing in S&NSC memory.
7593      */
7594     assert(!env->v7m.secure);
7595     assert(arm_feature(env, ARM_FEATURE_M_SECURITY));
7596
7597     /* We want to do the MPU lookup as secure; work out what mmu_idx that is */
7598     mmu_idx = arm_v7m_mmu_idx_for_secstate(env, true);
7599
7600     if (!v7m_read_half_insn(cpu, mmu_idx, env->regs[15], &insn)) {
7601         return false;
7602     }
7603
7604     if (!env->thumb) {
7605         goto gen_invep;
7606     }
7607
7608     if (insn != 0xe97f) {
7609         /* Not an SG instruction first half (we choose the IMPDEF
7610          * early-SG-check option).
7611          */
7612         goto gen_invep;
7613     }
7614
7615     if (!v7m_read_half_insn(cpu, mmu_idx, env->regs[15] + 2, &insn)) {
7616         return false;
7617     }
7618
7619     if (insn != 0xe97f) {
7620         /* Not an SG instruction second half (yes, both halves of the SG
7621          * insn have the same hex value)
7622          */
7623         goto gen_invep;
7624     }
7625
7626     /* OK, we have confirmed that we really have an SG instruction.
7627      * We know we're NS in S memory so don't need to repeat those checks.
7628      */
7629     qemu_log_mask(CPU_LOG_INT, "...really an SG instruction at 0x%08" PRIx32
7630                   ", executing it\n", env->regs[15]);
7631     env->regs[14] &= ~1;
7632     switch_v7m_security_state(env, true);
7633     xpsr_write(env, 0, XPSR_IT);
7634     env->regs[15] += 4;
7635     return true;
7636
7637 gen_invep:
7638     env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
7639     armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
7640     qemu_log_mask(CPU_LOG_INT,
7641                   "...really SecureFault with SFSR.INVEP\n");
7642     return false;
7643 }
7644
7645 void arm_v7m_cpu_do_interrupt(CPUState *cs)
7646 {
7647     ARMCPU *cpu = ARM_CPU(cs);
7648     CPUARMState *env = &cpu->env;
7649     uint32_t lr;
7650     bool ignore_stackfaults;
7651
7652     arm_log_exception(cs->exception_index);
7653
7654     /* For exceptions we just mark as pending on the NVIC, and let that
7655        handle it.  */
7656     switch (cs->exception_index) {
7657     case EXCP_UDEF:
7658         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
7659         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_UNDEFINSTR_MASK;
7660         break;
7661     case EXCP_NOCP:
7662         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
7663         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_NOCP_MASK;
7664         break;
7665     case EXCP_INVSTATE:
7666         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
7667         env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVSTATE_MASK;
7668         break;
7669     case EXCP_SWI:
7670         /* The PC already points to the next instruction.  */
7671         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SVC, env->v7m.secure);
7672         break;
7673     case EXCP_PREFETCH_ABORT:
7674     case EXCP_DATA_ABORT:
7675         /* Note that for M profile we don't have a guest facing FSR, but
7676          * the env->exception.fsr will be populated by the code that
7677          * raises the fault, in the A profile short-descriptor format.
7678          */
7679         switch (env->exception.fsr & 0xf) {
7680         case M_FAKE_FSR_NSC_EXEC:
7681             /* Exception generated when we try to execute code at an address
7682              * which is marked as Secure & Non-Secure Callable and the CPU
7683              * is in the Non-Secure state. The only instruction which can
7684              * be executed like this is SG (and that only if both halves of
7685              * the SG instruction have the same security attributes.)
7686              * Everything else must generate an INVEP SecureFault, so we
7687              * emulate the SG instruction here.
7688              */
7689             if (v7m_handle_execute_nsc(cpu)) {
7690                 return;
7691             }
7692             break;
7693         case M_FAKE_FSR_SFAULT:
7694             /* Various flavours of SecureFault for attempts to execute or
7695              * access data in the wrong security state.
7696              */
7697             switch (cs->exception_index) {
7698             case EXCP_PREFETCH_ABORT:
7699                 if (env->v7m.secure) {
7700                     env->v7m.sfsr |= R_V7M_SFSR_INVTRAN_MASK;
7701                     qemu_log_mask(CPU_LOG_INT,
7702                                   "...really SecureFault with SFSR.INVTRAN\n");
7703                 } else {
7704                     env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
7705                     qemu_log_mask(CPU_LOG_INT,
7706                                   "...really SecureFault with SFSR.INVEP\n");
7707                 }
7708                 break;
7709             case EXCP_DATA_ABORT:
7710                 /* This must be an NS access to S memory */
7711                 env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK;
7712                 qemu_log_mask(CPU_LOG_INT,
7713                               "...really SecureFault with SFSR.AUVIOL\n");
7714                 break;
7715             }
7716             armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
7717             break;
7718         case 0x8: /* External Abort */
7719             switch (cs->exception_index) {
7720             case EXCP_PREFETCH_ABORT:
7721                 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_IBUSERR_MASK;
7722                 qemu_log_mask(CPU_LOG_INT, "...with CFSR.IBUSERR\n");
7723                 break;
7724             case EXCP_DATA_ABORT:
7725                 env->v7m.cfsr[M_REG_NS] |=
7726                     (R_V7M_CFSR_PRECISERR_MASK | R_V7M_CFSR_BFARVALID_MASK);
7727                 env->v7m.bfar = env->exception.vaddress;
7728                 qemu_log_mask(CPU_LOG_INT,
7729                               "...with CFSR.PRECISERR and BFAR 0x%x\n",
7730                               env->v7m.bfar);
7731                 break;
7732             }
7733             armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_BUS, false);
7734             break;
7735         default:
7736             /* All other FSR values are either MPU faults or "can't happen
7737              * for M profile" cases.
7738              */
7739             switch (cs->exception_index) {
7740             case EXCP_PREFETCH_ABORT:
7741                 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_IACCVIOL_MASK;
7742                 qemu_log_mask(CPU_LOG_INT, "...with CFSR.IACCVIOL\n");
7743                 break;
7744             case EXCP_DATA_ABORT:
7745                 env->v7m.cfsr[env->v7m.secure] |=
7746                     (R_V7M_CFSR_DACCVIOL_MASK | R_V7M_CFSR_MMARVALID_MASK);
7747                 env->v7m.mmfar[env->v7m.secure] = env->exception.vaddress;
7748                 qemu_log_mask(CPU_LOG_INT,
7749                               "...with CFSR.DACCVIOL and MMFAR 0x%x\n",
7750                               env->v7m.mmfar[env->v7m.secure]);
7751                 break;
7752             }
7753             armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_MEM,
7754                                     env->v7m.secure);
7755             break;
7756         }
7757         break;
7758     case EXCP_BKPT:
7759         if (semihosting_enabled()) {
7760             int nr;
7761             nr = arm_lduw_code(env, env->regs[15], arm_sctlr_b(env)) & 0xff;
7762             if (nr == 0xab) {
7763                 env->regs[15] += 2;
7764                 qemu_log_mask(CPU_LOG_INT,
7765                               "...handling as semihosting call 0x%x\n",
7766                               env->regs[0]);
7767                 env->regs[0] = do_arm_semihosting(env);
7768                 return;
7769             }
7770         }
7771         armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_DEBUG, false);
7772         break;
7773     case EXCP_IRQ:
7774         break;
7775     case EXCP_EXCEPTION_EXIT:
7776         if (env->regs[15] < EXC_RETURN_MIN_MAGIC) {
7777             /* Must be v8M security extension function return */
7778             assert(env->regs[15] >= FNC_RETURN_MIN_MAGIC);
7779             assert(arm_feature(env, ARM_FEATURE_M_SECURITY));
7780             if (do_v7m_function_return(cpu)) {
7781                 return;
7782             }
7783         } else {
7784             do_v7m_exception_exit(cpu);
7785             return;
7786         }
7787         break;
7788     default:
7789         cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
7790         return; /* Never happens.  Keep compiler happy.  */
7791     }
7792
7793     if (arm_feature(env, ARM_FEATURE_V8)) {
7794         lr = R_V7M_EXCRET_RES1_MASK |
7795             R_V7M_EXCRET_DCRS_MASK |
7796             R_V7M_EXCRET_FTYPE_MASK;
7797         /* The S bit indicates whether we should return to Secure
7798          * or NonSecure (ie our current state).
7799          * The ES bit indicates whether we're taking this exception
7800          * to Secure or NonSecure (ie our target state). We set it
7801          * later, in v7m_exception_taken().
7802          * The SPSEL bit is also set in v7m_exception_taken() for v8M.
7803          * This corresponds to the ARM ARM pseudocode for v8M setting
7804          * some LR bits in PushStack() and some in ExceptionTaken();
7805          * the distinction matters for the tailchain cases where we
7806          * can take an exception without pushing the stack.
7807          */
7808         if (env->v7m.secure) {
7809             lr |= R_V7M_EXCRET_S_MASK;
7810         }
7811     } else {
7812         lr = R_V7M_EXCRET_RES1_MASK |
7813             R_V7M_EXCRET_S_MASK |
7814             R_V7M_EXCRET_DCRS_MASK |
7815             R_V7M_EXCRET_FTYPE_MASK |
7816             R_V7M_EXCRET_ES_MASK;
7817         if (env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK) {
7818             lr |= R_V7M_EXCRET_SPSEL_MASK;
7819         }
7820     }
7821     if (!arm_v7m_is_handler_mode(env)) {
7822         lr |= R_V7M_EXCRET_MODE_MASK;
7823     }
7824
7825     ignore_stackfaults = v7m_push_stack(cpu);
7826     v7m_exception_taken(cpu, lr, false, ignore_stackfaults);
7827 }
7828
7829 /* Function used to synchronize QEMU's AArch64 register set with AArch32
7830  * register set.  This is necessary when switching between AArch32 and AArch64
7831  * execution state.
7832  */
7833 void aarch64_sync_32_to_64(CPUARMState *env)
7834 {
7835     int i;
7836     uint32_t mode = env->uncached_cpsr & CPSR_M;
7837
7838     /* We can blanket copy R[0:7] to X[0:7] */
7839     for (i = 0; i < 8; i++) {
7840         env->xregs[i] = env->regs[i];
7841     }
7842
7843     /* Unless we are in FIQ mode, x8-x12 come from the user registers r8-r12.
7844      * Otherwise, they come from the banked user regs.
7845      */
7846     if (mode == ARM_CPU_MODE_FIQ) {
7847         for (i = 8; i < 13; i++) {
7848             env->xregs[i] = env->usr_regs[i - 8];
7849         }
7850     } else {
7851         for (i = 8; i < 13; i++) {
7852             env->xregs[i] = env->regs[i];
7853         }
7854     }
7855
7856     /* Registers x13-x23 are the various mode SP and FP registers. Registers
7857      * r13 and r14 are only copied if we are in that mode, otherwise we copy
7858      * from the mode banked register.
7859      */
7860     if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
7861         env->xregs[13] = env->regs[13];
7862         env->xregs[14] = env->regs[14];
7863     } else {
7864         env->xregs[13] = env->banked_r13[bank_number(ARM_CPU_MODE_USR)];
7865         /* HYP is an exception in that it is copied from r14 */
7866         if (mode == ARM_CPU_MODE_HYP) {
7867             env->xregs[14] = env->regs[14];
7868         } else {
7869             env->xregs[14] = env->banked_r14[bank_number(ARM_CPU_MODE_USR)];
7870         }
7871     }
7872
7873     if (mode == ARM_CPU_MODE_HYP) {
7874         env->xregs[15] = env->regs[13];
7875     } else {
7876         env->xregs[15] = env->banked_r13[bank_number(ARM_CPU_MODE_HYP)];
7877     }
7878
7879     if (mode == ARM_CPU_MODE_IRQ) {
7880         env->xregs[16] = env->regs[14];
7881         env->xregs[17] = env->regs[13];
7882     } else {
7883         env->xregs[16] = env->banked_r14[bank_number(ARM_CPU_MODE_IRQ)];
7884         env->xregs[17] = env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)];
7885     }
7886
7887     if (mode == ARM_CPU_MODE_SVC) {
7888         env->xregs[18] = env->regs[14];
7889         env->xregs[19] = env->regs[13];
7890     } else {
7891         env->xregs[18] = env->banked_r14[bank_number(ARM_CPU_MODE_SVC)];
7892         env->xregs[19] = env->banked_r13[bank_number(ARM_CPU_MODE_SVC)];
7893     }
7894
7895     if (mode == ARM_CPU_MODE_ABT) {
7896         env->xregs[20] = env->regs[14];
7897         env->xregs[21] = env->regs[13];
7898     } else {
7899         env->xregs[20] = env->banked_r14[bank_number(ARM_CPU_MODE_ABT)];
7900         env->xregs[21] = env->banked_r13[bank_number(ARM_CPU_MODE_ABT)];
7901     }
7902
7903     if (mode == ARM_CPU_MODE_UND) {
7904         env->xregs[22] = env->regs[14];
7905         env->xregs[23] = env->regs[13];
7906     } else {
7907         env->xregs[22] = env->banked_r14[bank_number(ARM_CPU_MODE_UND)];
7908         env->xregs[23] = env->banked_r13[bank_number(ARM_CPU_MODE_UND)];
7909     }
7910
7911     /* Registers x24-x30 are mapped to r8-r14 in FIQ mode.  If we are in FIQ
7912      * mode, then we can copy from r8-r14.  Otherwise, we copy from the
7913      * FIQ bank for r8-r14.
7914      */
7915     if (mode == ARM_CPU_MODE_FIQ) {
7916         for (i = 24; i < 31; i++) {
7917             env->xregs[i] = env->regs[i - 16];   /* X[24:30] <- R[8:14] */
7918         }
7919     } else {
7920         for (i = 24; i < 29; i++) {
7921             env->xregs[i] = env->fiq_regs[i - 24];
7922         }
7923         env->xregs[29] = env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)];
7924         env->xregs[30] = env->banked_r14[bank_number(ARM_CPU_MODE_FIQ)];
7925     }
7926
7927     env->pc = env->regs[15];
7928 }
7929
7930 /* Function used to synchronize QEMU's AArch32 register set with AArch64
7931  * register set.  This is necessary when switching between AArch32 and AArch64
7932  * execution state.
7933  */
7934 void aarch64_sync_64_to_32(CPUARMState *env)
7935 {
7936     int i;
7937     uint32_t mode = env->uncached_cpsr & CPSR_M;
7938
7939     /* We can blanket copy X[0:7] to R[0:7] */
7940     for (i = 0; i < 8; i++) {
7941         env->regs[i] = env->xregs[i];
7942     }
7943
7944     /* Unless we are in FIQ mode, r8-r12 come from the user registers x8-x12.
7945      * Otherwise, we copy x8-x12 into the banked user regs.
7946      */
7947     if (mode == ARM_CPU_MODE_FIQ) {
7948         for (i = 8; i < 13; i++) {
7949             env->usr_regs[i - 8] = env->xregs[i];
7950         }
7951     } else {
7952         for (i = 8; i < 13; i++) {
7953             env->regs[i] = env->xregs[i];
7954         }
7955     }
7956
7957     /* Registers r13 & r14 depend on the current mode.
7958      * If we are in a given mode, we copy the corresponding x registers to r13
7959      * and r14.  Otherwise, we copy the x register to the banked r13 and r14
7960      * for the mode.
7961      */
7962     if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
7963         env->regs[13] = env->xregs[13];
7964         env->regs[14] = env->xregs[14];
7965     } else {
7966         env->banked_r13[bank_number(ARM_CPU_MODE_USR)] = env->xregs[13];
7967
7968         /* HYP is an exception in that it does not have its own banked r14 but
7969          * shares the USR r14
7970          */
7971         if (mode == ARM_CPU_MODE_HYP) {
7972             env->regs[14] = env->xregs[14];
7973         } else {
7974             env->banked_r14[bank_number(ARM_CPU_MODE_USR)] = env->xregs[14];
7975         }
7976     }
7977
7978     if (mode == ARM_CPU_MODE_HYP) {
7979         env->regs[13] = env->xregs[15];
7980     } else {
7981         env->banked_r13[bank_number(ARM_CPU_MODE_HYP)] = env->xregs[15];
7982     }
7983
7984     if (mode == ARM_CPU_MODE_IRQ) {
7985         env->regs[14] = env->xregs[16];
7986         env->regs[13] = env->xregs[17];
7987     } else {
7988         env->banked_r14[bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[16];
7989         env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[17];
7990     }
7991
7992     if (mode == ARM_CPU_MODE_SVC) {
7993         env->regs[14] = env->xregs[18];
7994         env->regs[13] = env->xregs[19];
7995     } else {
7996         env->banked_r14[bank_number(ARM_CPU_MODE_SVC)] = env->xregs[18];
7997         env->banked_r13[bank_number(ARM_CPU_MODE_SVC)] = env->xregs[19];
7998     }
7999
8000     if (mode == ARM_CPU_MODE_ABT) {
8001         env->regs[14] = env->xregs[20];
8002         env->regs[13] = env->xregs[21];
8003     } else {
8004         env->banked_r14[bank_number(ARM_CPU_MODE_ABT)] = env->xregs[20];
8005         env->banked_r13[bank_number(ARM_CPU_MODE_ABT)] = env->xregs[21];
8006     }
8007
8008     if (mode == ARM_CPU_MODE_UND) {
8009         env->regs[14] = env->xregs[22];
8010         env->regs[13] = env->xregs[23];
8011     } else {
8012         env->banked_r14[bank_number(ARM_CPU_MODE_UND)] = env->xregs[22];
8013         env->banked_r13[bank_number(ARM_CPU_MODE_UND)] = env->xregs[23];
8014     }
8015
8016     /* Registers x24-x30 are mapped to r8-r14 in FIQ mode.  If we are in FIQ
8017      * mode, then we can copy to r8-r14.  Otherwise, we copy to the
8018      * FIQ bank for r8-r14.
8019      */
8020     if (mode == ARM_CPU_MODE_FIQ) {
8021         for (i = 24; i < 31; i++) {
8022             env->regs[i - 16] = env->xregs[i];   /* X[24:30] -> R[8:14] */
8023         }
8024     } else {
8025         for (i = 24; i < 29; i++) {
8026             env->fiq_regs[i - 24] = env->xregs[i];
8027         }
8028         env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[29];
8029         env->banked_r14[bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[30];
8030     }
8031
8032     env->regs[15] = env->pc;
8033 }
8034
8035 static void take_aarch32_exception(CPUARMState *env, int new_mode,
8036                                    uint32_t mask, uint32_t offset,
8037                                    uint32_t newpc)
8038 {
8039     /* Change the CPU state so as to actually take the exception. */
8040     switch_mode(env, new_mode);
8041     /*
8042      * For exceptions taken to AArch32 we must clear the SS bit in both
8043      * PSTATE and in the old-state value we save to SPSR_<mode>, so zero it now.
8044      */
8045     env->uncached_cpsr &= ~PSTATE_SS;
8046     env->spsr = cpsr_read(env);
8047     /* Clear IT bits.  */
8048     env->condexec_bits = 0;
8049     /* Switch to the new mode, and to the correct instruction set.  */
8050     env->uncached_cpsr = (env->uncached_cpsr & ~CPSR_M) | new_mode;
8051     /* Set new mode endianness */
8052     env->uncached_cpsr &= ~CPSR_E;
8053     if (env->cp15.sctlr_el[arm_current_el(env)] & SCTLR_EE) {
8054         env->uncached_cpsr |= CPSR_E;
8055     }
8056     /* J and IL must always be cleared for exception entry */
8057     env->uncached_cpsr &= ~(CPSR_IL | CPSR_J);
8058     env->daif |= mask;
8059
8060     if (new_mode == ARM_CPU_MODE_HYP) {
8061         env->thumb = (env->cp15.sctlr_el[2] & SCTLR_TE) != 0;
8062         env->elr_el[2] = env->regs[15];
8063     } else {
8064         /*
8065          * this is a lie, as there was no c1_sys on V4T/V5, but who cares
8066          * and we should just guard the thumb mode on V4
8067          */
8068         if (arm_feature(env, ARM_FEATURE_V4T)) {
8069             env->thumb =
8070                 (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_TE) != 0;
8071         }
8072         env->regs[14] = env->regs[15] + offset;
8073     }
8074     env->regs[15] = newpc;
8075 }
8076
8077 static void arm_cpu_do_interrupt_aarch32_hyp(CPUState *cs)
8078 {
8079     /*
8080      * Handle exception entry to Hyp mode; this is sufficiently
8081      * different to entry to other AArch32 modes that we handle it
8082      * separately here.
8083      *
8084      * The vector table entry used is always the 0x14 Hyp mode entry point,
8085      * unless this is an UNDEF/HVC/abort taken from Hyp to Hyp.
8086      * The offset applied to the preferred return address is always zero
8087      * (see DDI0487C.a section G1.12.3).
8088      * PSTATE A/I/F masks are set based only on the SCR.EA/IRQ/FIQ values.
8089      */
8090     uint32_t addr, mask;
8091     ARMCPU *cpu = ARM_CPU(cs);
8092     CPUARMState *env = &cpu->env;
8093
8094     switch (cs->exception_index) {
8095     case EXCP_UDEF:
8096         addr = 0x04;
8097         break;
8098     case EXCP_SWI:
8099         addr = 0x14;
8100         break;
8101     case EXCP_BKPT:
8102         /* Fall through to prefetch abort.  */
8103     case EXCP_PREFETCH_ABORT:
8104         env->cp15.ifar_s = env->exception.vaddress;
8105         qemu_log_mask(CPU_LOG_INT, "...with HIFAR 0x%x\n",
8106                       (uint32_t)env->exception.vaddress);
8107         addr = 0x0c;
8108         break;
8109     case EXCP_DATA_ABORT:
8110         env->cp15.dfar_s = env->exception.vaddress;
8111         qemu_log_mask(CPU_LOG_INT, "...with HDFAR 0x%x\n",
8112                       (uint32_t)env->exception.vaddress);
8113         addr = 0x10;
8114         break;
8115     case EXCP_IRQ:
8116         addr = 0x18;
8117         break;
8118     case EXCP_FIQ:
8119         addr = 0x1c;
8120         break;
8121     case EXCP_HVC:
8122         addr = 0x08;
8123         break;
8124     case EXCP_HYP_TRAP:
8125         addr = 0x14;
8126     default:
8127         cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
8128     }
8129
8130     if (cs->exception_index != EXCP_IRQ && cs->exception_index != EXCP_FIQ) {
8131         env->cp15.esr_el[2] = env->exception.syndrome;
8132     }
8133
8134     if (arm_current_el(env) != 2 && addr < 0x14) {
8135         addr = 0x14;
8136     }
8137
8138     mask = 0;
8139     if (!(env->cp15.scr_el3 & SCR_EA)) {
8140         mask |= CPSR_A;
8141     }
8142     if (!(env->cp15.scr_el3 & SCR_IRQ)) {
8143         mask |= CPSR_I;
8144     }
8145     if (!(env->cp15.scr_el3 & SCR_FIQ)) {
8146         mask |= CPSR_F;
8147     }
8148
8149     addr += env->cp15.hvbar;
8150
8151     take_aarch32_exception(env, ARM_CPU_MODE_HYP, mask, 0, addr);
8152 }
8153
8154 static void arm_cpu_do_interrupt_aarch32(CPUState *cs)
8155 {
8156     ARMCPU *cpu = ARM_CPU(cs);
8157     CPUARMState *env = &cpu->env;
8158     uint32_t addr;
8159     uint32_t mask;
8160     int new_mode;
8161     uint32_t offset;
8162     uint32_t moe;
8163
8164     /* If this is a debug exception we must update the DBGDSCR.MOE bits */
8165     switch (env->exception.syndrome >> ARM_EL_EC_SHIFT) {
8166     case EC_BREAKPOINT:
8167     case EC_BREAKPOINT_SAME_EL:
8168         moe = 1;
8169         break;
8170     case EC_WATCHPOINT:
8171     case EC_WATCHPOINT_SAME_EL:
8172         moe = 10;
8173         break;
8174     case EC_AA32_BKPT:
8175         moe = 3;
8176         break;
8177     case EC_VECTORCATCH:
8178         moe = 5;
8179         break;
8180     default:
8181         moe = 0;
8182         break;
8183     }
8184
8185     if (moe) {
8186         env->cp15.mdscr_el1 = deposit64(env->cp15.mdscr_el1, 2, 4, moe);
8187     }
8188
8189     if (env->exception.target_el == 2) {
8190         arm_cpu_do_interrupt_aarch32_hyp(cs);
8191         return;
8192     }
8193
8194     /* TODO: Vectored interrupt controller.  */
8195     switch (cs->exception_index) {
8196     case EXCP_UDEF:
8197         new_mode = ARM_CPU_MODE_UND;
8198         addr = 0x04;
8199         mask = CPSR_I;
8200         if (env->thumb)
8201             offset = 2;
8202         else
8203             offset = 4;
8204         break;
8205     case EXCP_SWI:
8206         new_mode = ARM_CPU_MODE_SVC;
8207         addr = 0x08;
8208         mask = CPSR_I;
8209         /* The PC already points to the next instruction.  */
8210         offset = 0;
8211         break;
8212     case EXCP_BKPT:
8213         /* Fall through to prefetch abort.  */
8214     case EXCP_PREFETCH_ABORT:
8215         A32_BANKED_CURRENT_REG_SET(env, ifsr, env->exception.fsr);
8216         A32_BANKED_CURRENT_REG_SET(env, ifar, env->exception.vaddress);
8217         qemu_log_mask(CPU_LOG_INT, "...with IFSR 0x%x IFAR 0x%x\n",
8218                       env->exception.fsr, (uint32_t)env->exception.vaddress);
8219         new_mode = ARM_CPU_MODE_ABT;
8220         addr = 0x0c;
8221         mask = CPSR_A | CPSR_I;
8222         offset = 4;
8223         break;
8224     case EXCP_DATA_ABORT:
8225         A32_BANKED_CURRENT_REG_SET(env, dfsr, env->exception.fsr);
8226         A32_BANKED_CURRENT_REG_SET(env, dfar, env->exception.vaddress);
8227         qemu_log_mask(CPU_LOG_INT, "...with DFSR 0x%x DFAR 0x%x\n",
8228                       env->exception.fsr,
8229                       (uint32_t)env->exception.vaddress);
8230         new_mode = ARM_CPU_MODE_ABT;
8231         addr = 0x10;
8232         mask = CPSR_A | CPSR_I;
8233         offset = 8;
8234         break;
8235     case EXCP_IRQ:
8236         new_mode = ARM_CPU_MODE_IRQ;
8237         addr = 0x18;
8238         /* Disable IRQ and imprecise data aborts.  */
8239         mask = CPSR_A | CPSR_I;
8240         offset = 4;
8241         if (env->cp15.scr_el3 & SCR_IRQ) {
8242             /* IRQ routed to monitor mode */
8243             new_mode = ARM_CPU_MODE_MON;
8244             mask |= CPSR_F;
8245         }
8246         break;
8247     case EXCP_FIQ:
8248         new_mode = ARM_CPU_MODE_FIQ;
8249         addr = 0x1c;
8250         /* Disable FIQ, IRQ and imprecise data aborts.  */
8251         mask = CPSR_A | CPSR_I | CPSR_F;
8252         if (env->cp15.scr_el3 & SCR_FIQ) {
8253             /* FIQ routed to monitor mode */
8254             new_mode = ARM_CPU_MODE_MON;
8255         }
8256         offset = 4;
8257         break;
8258     case EXCP_VIRQ:
8259         new_mode = ARM_CPU_MODE_IRQ;
8260         addr = 0x18;
8261         /* Disable IRQ and imprecise data aborts.  */
8262         mask = CPSR_A | CPSR_I;
8263         offset = 4;
8264         break;
8265     case EXCP_VFIQ:
8266         new_mode = ARM_CPU_MODE_FIQ;
8267         addr = 0x1c;
8268         /* Disable FIQ, IRQ and imprecise data aborts.  */
8269         mask = CPSR_A | CPSR_I | CPSR_F;
8270         offset = 4;
8271         break;
8272     case EXCP_SMC:
8273         new_mode = ARM_CPU_MODE_MON;
8274         addr = 0x08;
8275         mask = CPSR_A | CPSR_I | CPSR_F;
8276         offset = 0;
8277         break;
8278     default:
8279         cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
8280         return; /* Never happens.  Keep compiler happy.  */
8281     }
8282
8283     if (new_mode == ARM_CPU_MODE_MON) {
8284         addr += env->cp15.mvbar;
8285     } else if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
8286         /* High vectors. When enabled, base address cannot be remapped. */
8287         addr += 0xffff0000;
8288     } else {
8289         /* ARM v7 architectures provide a vector base address register to remap
8290          * the interrupt vector table.
8291          * This register is only followed in non-monitor mode, and is banked.
8292          * Note: only bits 31:5 are valid.
8293          */
8294         addr += A32_BANKED_CURRENT_REG_GET(env, vbar);
8295     }
8296
8297     if ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON) {
8298         env->cp15.scr_el3 &= ~SCR_NS;
8299     }
8300
8301     take_aarch32_exception(env, new_mode, mask, offset, addr);
8302 }
8303
8304 /* Handle exception entry to a target EL which is using AArch64 */
8305 static void arm_cpu_do_interrupt_aarch64(CPUState *cs)
8306 {
8307     ARMCPU *cpu = ARM_CPU(cs);
8308     CPUARMState *env = &cpu->env;
8309     unsigned int new_el = env->exception.target_el;
8310     target_ulong addr = env->cp15.vbar_el[new_el];
8311     unsigned int new_mode = aarch64_pstate_mode(new_el, true);
8312
8313     if (arm_current_el(env) < new_el) {
8314         /* Entry vector offset depends on whether the implemented EL
8315          * immediately lower than the target level is using AArch32 or AArch64
8316          */
8317         bool is_aa64;
8318
8319         switch (new_el) {
8320         case 3:
8321             is_aa64 = (env->cp15.scr_el3 & SCR_RW) != 0;
8322             break;
8323         case 2:
8324             is_aa64 = (env->cp15.hcr_el2 & HCR_RW) != 0;
8325             break;
8326         case 1:
8327             is_aa64 = is_a64(env);
8328             break;
8329         default:
8330             g_assert_not_reached();
8331         }
8332
8333         if (is_aa64) {
8334             addr += 0x400;
8335         } else {
8336             addr += 0x600;
8337         }
8338     } else if (pstate_read(env) & PSTATE_SP) {
8339         addr += 0x200;
8340     }
8341
8342     switch (cs->exception_index) {
8343     case EXCP_PREFETCH_ABORT:
8344     case EXCP_DATA_ABORT:
8345         env->cp15.far_el[new_el] = env->exception.vaddress;
8346         qemu_log_mask(CPU_LOG_INT, "...with FAR 0x%" PRIx64 "\n",
8347                       env->cp15.far_el[new_el]);
8348         /* fall through */
8349     case EXCP_BKPT:
8350     case EXCP_UDEF:
8351     case EXCP_SWI:
8352     case EXCP_HVC:
8353     case EXCP_HYP_TRAP:
8354     case EXCP_SMC:
8355         env->cp15.esr_el[new_el] = env->exception.syndrome;
8356         break;
8357     case EXCP_IRQ:
8358     case EXCP_VIRQ:
8359         addr += 0x80;
8360         break;
8361     case EXCP_FIQ:
8362     case EXCP_VFIQ:
8363         addr += 0x100;
8364         break;
8365     case EXCP_SEMIHOST:
8366         qemu_log_mask(CPU_LOG_INT,
8367                       "...handling as semihosting call 0x%" PRIx64 "\n",
8368                       env->xregs[0]);
8369         env->xregs[0] = do_arm_semihosting(env);
8370         return;
8371     default:
8372         cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
8373     }
8374
8375     if (is_a64(env)) {
8376         env->banked_spsr[aarch64_banked_spsr_index(new_el)] = pstate_read(env);
8377         aarch64_save_sp(env, arm_current_el(env));
8378         env->elr_el[new_el] = env->pc;
8379     } else {
8380         env->banked_spsr[aarch64_banked_spsr_index(new_el)] = cpsr_read(env);
8381         env->elr_el[new_el] = env->regs[15];
8382
8383         aarch64_sync_32_to_64(env);
8384
8385         env->condexec_bits = 0;
8386     }
8387     qemu_log_mask(CPU_LOG_INT, "...with ELR 0x%" PRIx64 "\n",
8388                   env->elr_el[new_el]);
8389
8390     pstate_write(env, PSTATE_DAIF | new_mode);
8391     env->aarch64 = 1;
8392     aarch64_restore_sp(env, new_el);
8393
8394     env->pc = addr;
8395
8396     qemu_log_mask(CPU_LOG_INT, "...to EL%d PC 0x%" PRIx64 " PSTATE 0x%x\n",
8397                   new_el, env->pc, pstate_read(env));
8398 }
8399
8400 static inline bool check_for_semihosting(CPUState *cs)
8401 {
8402     /* Check whether this exception is a semihosting call; if so
8403      * then handle it and return true; otherwise return false.
8404      */
8405     ARMCPU *cpu = ARM_CPU(cs);
8406     CPUARMState *env = &cpu->env;
8407
8408     if (is_a64(env)) {
8409         if (cs->exception_index == EXCP_SEMIHOST) {
8410             /* This is always the 64-bit semihosting exception.
8411              * The "is this usermode" and "is semihosting enabled"
8412              * checks have been done at translate time.
8413              */
8414             qemu_log_mask(CPU_LOG_INT,
8415                           "...handling as semihosting call 0x%" PRIx64 "\n",
8416                           env->xregs[0]);
8417             env->xregs[0] = do_arm_semihosting(env);
8418             return true;
8419         }
8420         return false;
8421     } else {
8422         uint32_t imm;
8423
8424         /* Only intercept calls from privileged modes, to provide some
8425          * semblance of security.
8426          */
8427         if (cs->exception_index != EXCP_SEMIHOST &&
8428             (!semihosting_enabled() ||
8429              ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_USR))) {
8430             return false;
8431         }
8432
8433         switch (cs->exception_index) {
8434         case EXCP_SEMIHOST:
8435             /* This is always a semihosting call; the "is this usermode"
8436              * and "is semihosting enabled" checks have been done at
8437              * translate time.
8438              */
8439             break;
8440         case EXCP_SWI:
8441             /* Check for semihosting interrupt.  */
8442             if (env->thumb) {
8443                 imm = arm_lduw_code(env, env->regs[15] - 2, arm_sctlr_b(env))
8444                     & 0xff;
8445                 if (imm == 0xab) {
8446                     break;
8447                 }
8448             } else {
8449                 imm = arm_ldl_code(env, env->regs[15] - 4, arm_sctlr_b(env))
8450                     & 0xffffff;
8451                 if (imm == 0x123456) {
8452                     break;
8453                 }
8454             }
8455             return false;
8456         case EXCP_BKPT:
8457             /* See if this is a semihosting syscall.  */
8458             if (env->thumb) {
8459                 imm = arm_lduw_code(env, env->regs[15], arm_sctlr_b(env))
8460                     & 0xff;
8461                 if (imm == 0xab) {
8462                     env->regs[15] += 2;
8463                     break;
8464                 }
8465             }
8466             return false;
8467         default:
8468             return false;
8469         }
8470
8471         qemu_log_mask(CPU_LOG_INT,
8472                       "...handling as semihosting call 0x%x\n",
8473                       env->regs[0]);
8474         env->regs[0] = do_arm_semihosting(env);
8475         return true;
8476     }
8477 }
8478
8479 /* Handle a CPU exception for A and R profile CPUs.
8480  * Do any appropriate logging, handle PSCI calls, and then hand off
8481  * to the AArch64-entry or AArch32-entry function depending on the
8482  * target exception level's register width.
8483  */
8484 void arm_cpu_do_interrupt(CPUState *cs)
8485 {
8486     ARMCPU *cpu = ARM_CPU(cs);
8487     CPUARMState *env = &cpu->env;
8488     unsigned int new_el = env->exception.target_el;
8489
8490     assert(!arm_feature(env, ARM_FEATURE_M));
8491
8492     arm_log_exception(cs->exception_index);
8493     qemu_log_mask(CPU_LOG_INT, "...from EL%d to EL%d\n", arm_current_el(env),
8494                   new_el);
8495     if (qemu_loglevel_mask(CPU_LOG_INT)
8496         && !excp_is_internal(cs->exception_index)) {
8497         qemu_log_mask(CPU_LOG_INT, "...with ESR 0x%x/0x%" PRIx32 "\n",
8498                       env->exception.syndrome >> ARM_EL_EC_SHIFT,
8499                       env->exception.syndrome);
8500     }
8501
8502     if (arm_is_psci_call(cpu, cs->exception_index)) {
8503         arm_handle_psci_call(cpu);
8504         qemu_log_mask(CPU_LOG_INT, "...handled as PSCI call\n");
8505         return;
8506     }
8507
8508     /* Semihosting semantics depend on the register width of the
8509      * code that caused the exception, not the target exception level,
8510      * so must be handled here.
8511      */
8512     if (check_for_semihosting(cs)) {
8513         return;
8514     }
8515
8516     /* Hooks may change global state so BQL should be held, also the
8517      * BQL needs to be held for any modification of
8518      * cs->interrupt_request.
8519      */
8520     g_assert(qemu_mutex_iothread_locked());
8521
8522     arm_call_pre_el_change_hook(cpu);
8523
8524     assert(!excp_is_internal(cs->exception_index));
8525     if (arm_el_is_aa64(env, new_el)) {
8526         arm_cpu_do_interrupt_aarch64(cs);
8527     } else {
8528         arm_cpu_do_interrupt_aarch32(cs);
8529     }
8530
8531     arm_call_el_change_hook(cpu);
8532
8533     if (!kvm_enabled()) {
8534         cs->interrupt_request |= CPU_INTERRUPT_EXITTB;
8535     }
8536 }
8537
8538 /* Return the exception level which controls this address translation regime */
8539 static inline uint32_t regime_el(CPUARMState *env, ARMMMUIdx mmu_idx)
8540 {
8541     switch (mmu_idx) {
8542     case ARMMMUIdx_S2NS:
8543     case ARMMMUIdx_S1E2:
8544         return 2;
8545     case ARMMMUIdx_S1E3:
8546         return 3;
8547     case ARMMMUIdx_S1SE0:
8548         return arm_el_is_aa64(env, 3) ? 1 : 3;
8549     case ARMMMUIdx_S1SE1:
8550     case ARMMMUIdx_S1NSE0:
8551     case ARMMMUIdx_S1NSE1:
8552     case ARMMMUIdx_MPrivNegPri:
8553     case ARMMMUIdx_MUserNegPri:
8554     case ARMMMUIdx_MPriv:
8555     case ARMMMUIdx_MUser:
8556     case ARMMMUIdx_MSPrivNegPri:
8557     case ARMMMUIdx_MSUserNegPri:
8558     case ARMMMUIdx_MSPriv:
8559     case ARMMMUIdx_MSUser:
8560         return 1;
8561     default:
8562         g_assert_not_reached();
8563     }
8564 }
8565
8566 /* Return the SCTLR value which controls this address translation regime */
8567 static inline uint32_t regime_sctlr(CPUARMState *env, ARMMMUIdx mmu_idx)
8568 {
8569     return env->cp15.sctlr_el[regime_el(env, mmu_idx)];
8570 }
8571
8572 /* Return true if the specified stage of address translation is disabled */
8573 static inline bool regime_translation_disabled(CPUARMState *env,
8574                                                ARMMMUIdx mmu_idx)
8575 {
8576     if (arm_feature(env, ARM_FEATURE_M)) {
8577         switch (env->v7m.mpu_ctrl[regime_is_secure(env, mmu_idx)] &
8578                 (R_V7M_MPU_CTRL_ENABLE_MASK | R_V7M_MPU_CTRL_HFNMIENA_MASK)) {
8579         case R_V7M_MPU_CTRL_ENABLE_MASK:
8580             /* Enabled, but not for HardFault and NMI */
8581             return mmu_idx & ARM_MMU_IDX_M_NEGPRI;
8582         case R_V7M_MPU_CTRL_ENABLE_MASK | R_V7M_MPU_CTRL_HFNMIENA_MASK:
8583             /* Enabled for all cases */
8584             return false;
8585         case 0:
8586         default:
8587             /* HFNMIENA set and ENABLE clear is UNPREDICTABLE, but
8588              * we warned about that in armv7m_nvic.c when the guest set it.
8589              */
8590             return true;
8591         }
8592     }
8593
8594     if (mmu_idx == ARMMMUIdx_S2NS) {
8595         return (env->cp15.hcr_el2 & HCR_VM) == 0;
8596     }
8597
8598     if (env->cp15.hcr_el2 & HCR_TGE) {
8599         /* TGE means that NS EL0/1 act as if SCTLR_EL1.M is zero */
8600         if (!regime_is_secure(env, mmu_idx) && regime_el(env, mmu_idx) == 1) {
8601             return true;
8602         }
8603     }
8604
8605     return (regime_sctlr(env, mmu_idx) & SCTLR_M) == 0;
8606 }
8607
8608 static inline bool regime_translation_big_endian(CPUARMState *env,
8609                                                  ARMMMUIdx mmu_idx)
8610 {
8611     return (regime_sctlr(env, mmu_idx) & SCTLR_EE) != 0;
8612 }
8613
8614 /* Return the TCR controlling this translation regime */
8615 static inline TCR *regime_tcr(CPUARMState *env, ARMMMUIdx mmu_idx)
8616 {
8617     if (mmu_idx == ARMMMUIdx_S2NS) {
8618         return &env->cp15.vtcr_el2;
8619     }
8620     return &env->cp15.tcr_el[regime_el(env, mmu_idx)];
8621 }
8622
8623 /* Convert a possible stage1+2 MMU index into the appropriate
8624  * stage 1 MMU index
8625  */
8626 static inline ARMMMUIdx stage_1_mmu_idx(ARMMMUIdx mmu_idx)
8627 {
8628     if (mmu_idx == ARMMMUIdx_S12NSE0 || mmu_idx == ARMMMUIdx_S12NSE1) {
8629         mmu_idx += (ARMMMUIdx_S1NSE0 - ARMMMUIdx_S12NSE0);
8630     }
8631     return mmu_idx;
8632 }
8633
8634 /* Returns TBI0 value for current regime el */
8635 uint32_t arm_regime_tbi0(CPUARMState *env, ARMMMUIdx mmu_idx)
8636 {
8637     TCR *tcr;
8638     uint32_t el;
8639
8640     /* For EL0 and EL1, TBI is controlled by stage 1's TCR, so convert
8641      * a stage 1+2 mmu index into the appropriate stage 1 mmu index.
8642      */
8643     mmu_idx = stage_1_mmu_idx(mmu_idx);
8644
8645     tcr = regime_tcr(env, mmu_idx);
8646     el = regime_el(env, mmu_idx);
8647
8648     if (el > 1) {
8649         return extract64(tcr->raw_tcr, 20, 1);
8650     } else {
8651         return extract64(tcr->raw_tcr, 37, 1);
8652     }
8653 }
8654
8655 /* Returns TBI1 value for current regime el */
8656 uint32_t arm_regime_tbi1(CPUARMState *env, ARMMMUIdx mmu_idx)
8657 {
8658     TCR *tcr;
8659     uint32_t el;
8660
8661     /* For EL0 and EL1, TBI is controlled by stage 1's TCR, so convert
8662      * a stage 1+2 mmu index into the appropriate stage 1 mmu index.
8663      */
8664     mmu_idx = stage_1_mmu_idx(mmu_idx);
8665
8666     tcr = regime_tcr(env, mmu_idx);
8667     el = regime_el(env, mmu_idx);
8668
8669     if (el > 1) {
8670         return 0;
8671     } else {
8672         return extract64(tcr->raw_tcr, 38, 1);
8673     }
8674 }
8675
8676 /* Return the TTBR associated with this translation regime */
8677 static inline uint64_t regime_ttbr(CPUARMState *env, ARMMMUIdx mmu_idx,
8678                                    int ttbrn)
8679 {
8680     if (mmu_idx == ARMMMUIdx_S2NS) {
8681         return env->cp15.vttbr_el2;
8682     }
8683     if (ttbrn == 0) {
8684         return env->cp15.ttbr0_el[regime_el(env, mmu_idx)];
8685     } else {
8686         return env->cp15.ttbr1_el[regime_el(env, mmu_idx)];
8687     }
8688 }
8689
8690 /* Return true if the translation regime is using LPAE format page tables */
8691 static inline bool regime_using_lpae_format(CPUARMState *env,
8692                                             ARMMMUIdx mmu_idx)
8693 {
8694     int el = regime_el(env, mmu_idx);
8695     if (el == 2 || arm_el_is_aa64(env, el)) {
8696         return true;
8697     }
8698     if (arm_feature(env, ARM_FEATURE_LPAE)
8699         && (regime_tcr(env, mmu_idx)->raw_tcr & TTBCR_EAE)) {
8700         return true;
8701     }
8702     return false;
8703 }
8704
8705 /* Returns true if the stage 1 translation regime is using LPAE format page
8706  * tables. Used when raising alignment exceptions, whose FSR changes depending
8707  * on whether the long or short descriptor format is in use. */
8708 bool arm_s1_regime_using_lpae_format(CPUARMState *env, ARMMMUIdx mmu_idx)
8709 {
8710     mmu_idx = stage_1_mmu_idx(mmu_idx);
8711
8712     return regime_using_lpae_format(env, mmu_idx);
8713 }
8714
8715 static inline bool regime_is_user(CPUARMState *env, ARMMMUIdx mmu_idx)
8716 {
8717     switch (mmu_idx) {
8718     case ARMMMUIdx_S1SE0:
8719     case ARMMMUIdx_S1NSE0:
8720     case ARMMMUIdx_MUser:
8721     case ARMMMUIdx_MSUser:
8722     case ARMMMUIdx_MUserNegPri:
8723     case ARMMMUIdx_MSUserNegPri:
8724         return true;
8725     default:
8726         return false;
8727     case ARMMMUIdx_S12NSE0:
8728     case ARMMMUIdx_S12NSE1:
8729         g_assert_not_reached();
8730     }
8731 }
8732
8733 /* Translate section/page access permissions to page
8734  * R/W protection flags
8735  *
8736  * @env:         CPUARMState
8737  * @mmu_idx:     MMU index indicating required translation regime
8738  * @ap:          The 3-bit access permissions (AP[2:0])
8739  * @domain_prot: The 2-bit domain access permissions
8740  */
8741 static inline int ap_to_rw_prot(CPUARMState *env, ARMMMUIdx mmu_idx,
8742                                 int ap, int domain_prot)
8743 {
8744     bool is_user = regime_is_user(env, mmu_idx);
8745
8746     if (domain_prot == 3) {
8747         return PAGE_READ | PAGE_WRITE;
8748     }
8749
8750     switch (ap) {
8751     case 0:
8752         if (arm_feature(env, ARM_FEATURE_V7)) {
8753             return 0;
8754         }
8755         switch (regime_sctlr(env, mmu_idx) & (SCTLR_S | SCTLR_R)) {
8756         case SCTLR_S:
8757             return is_user ? 0 : PAGE_READ;
8758         case SCTLR_R:
8759             return PAGE_READ;
8760         default:
8761             return 0;
8762         }
8763     case 1:
8764         return is_user ? 0 : PAGE_READ | PAGE_WRITE;
8765     case 2:
8766         if (is_user) {
8767             return PAGE_READ;
8768         } else {
8769             return PAGE_READ | PAGE_WRITE;
8770         }
8771     case 3:
8772         return PAGE_READ | PAGE_WRITE;
8773     case 4: /* Reserved.  */
8774         return 0;
8775     case 5:
8776         return is_user ? 0 : PAGE_READ;
8777     case 6:
8778         return PAGE_READ;
8779     case 7:
8780         if (!arm_feature(env, ARM_FEATURE_V6K)) {
8781             return 0;
8782         }
8783         return PAGE_READ;
8784     default:
8785         g_assert_not_reached();
8786     }
8787 }
8788
8789 /* Translate section/page access permissions to page
8790  * R/W protection flags.
8791  *
8792  * @ap:      The 2-bit simple AP (AP[2:1])
8793  * @is_user: TRUE if accessing from PL0
8794  */
8795 static inline int simple_ap_to_rw_prot_is_user(int ap, bool is_user)
8796 {
8797     switch (ap) {
8798     case 0:
8799         return is_user ? 0 : PAGE_READ | PAGE_WRITE;
8800     case 1:
8801         return PAGE_READ | PAGE_WRITE;
8802     case 2:
8803         return is_user ? 0 : PAGE_READ;
8804     case 3:
8805         return PAGE_READ;
8806     default:
8807         g_assert_not_reached();
8808     }
8809 }
8810
8811 static inline int
8812 simple_ap_to_rw_prot(CPUARMState *env, ARMMMUIdx mmu_idx, int ap)
8813 {
8814     return simple_ap_to_rw_prot_is_user(ap, regime_is_user(env, mmu_idx));
8815 }
8816
8817 /* Translate S2 section/page access permissions to protection flags
8818  *
8819  * @env:     CPUARMState
8820  * @s2ap:    The 2-bit stage2 access permissions (S2AP)
8821  * @xn:      XN (execute-never) bit
8822  */
8823 static int get_S2prot(CPUARMState *env, int s2ap, int xn)
8824 {
8825     int prot = 0;
8826
8827     if (s2ap & 1) {
8828         prot |= PAGE_READ;
8829     }
8830     if (s2ap & 2) {
8831         prot |= PAGE_WRITE;
8832     }
8833     if (!xn) {
8834         if (arm_el_is_aa64(env, 2) || prot & PAGE_READ) {
8835             prot |= PAGE_EXEC;
8836         }
8837     }
8838     return prot;
8839 }
8840
8841 /* Translate section/page access permissions to protection flags
8842  *
8843  * @env:     CPUARMState
8844  * @mmu_idx: MMU index indicating required translation regime
8845  * @is_aa64: TRUE if AArch64
8846  * @ap:      The 2-bit simple AP (AP[2:1])
8847  * @ns:      NS (non-secure) bit
8848  * @xn:      XN (execute-never) bit
8849  * @pxn:     PXN (privileged execute-never) bit
8850  */
8851 static int get_S1prot(CPUARMState *env, ARMMMUIdx mmu_idx, bool is_aa64,
8852                       int ap, int ns, int xn, int pxn)
8853 {
8854     bool is_user = regime_is_user(env, mmu_idx);
8855     int prot_rw, user_rw;
8856     bool have_wxn;
8857     int wxn = 0;
8858
8859     assert(mmu_idx != ARMMMUIdx_S2NS);
8860
8861     user_rw = simple_ap_to_rw_prot_is_user(ap, true);
8862     if (is_user) {
8863         prot_rw = user_rw;
8864     } else {
8865         prot_rw = simple_ap_to_rw_prot_is_user(ap, false);
8866     }
8867
8868     if (ns && arm_is_secure(env) && (env->cp15.scr_el3 & SCR_SIF)) {
8869         return prot_rw;
8870     }
8871
8872     /* TODO have_wxn should be replaced with
8873      *   ARM_FEATURE_V8 || (ARM_FEATURE_V7 && ARM_FEATURE_EL2)
8874      * when ARM_FEATURE_EL2 starts getting set. For now we assume all LPAE
8875      * compatible processors have EL2, which is required for [U]WXN.
8876      */
8877     have_wxn = arm_feature(env, ARM_FEATURE_LPAE);
8878
8879     if (have_wxn) {
8880         wxn = regime_sctlr(env, mmu_idx) & SCTLR_WXN;
8881     }
8882
8883     if (is_aa64) {
8884         switch (regime_el(env, mmu_idx)) {
8885         case 1:
8886             if (!is_user) {
8887                 xn = pxn || (user_rw & PAGE_WRITE);
8888             }
8889             break;
8890         case 2:
8891         case 3:
8892             break;
8893         }
8894     } else if (arm_feature(env, ARM_FEATURE_V7)) {
8895         switch (regime_el(env, mmu_idx)) {
8896         case 1:
8897         case 3:
8898             if (is_user) {
8899                 xn = xn || !(user_rw & PAGE_READ);
8900             } else {
8901                 int uwxn = 0;
8902                 if (have_wxn) {
8903                     uwxn = regime_sctlr(env, mmu_idx) & SCTLR_UWXN;
8904                 }
8905                 xn = xn || !(prot_rw & PAGE_READ) || pxn ||
8906                      (uwxn && (user_rw & PAGE_WRITE));
8907             }
8908             break;
8909         case 2:
8910             break;
8911         }
8912     } else {
8913         xn = wxn = 0;
8914     }
8915
8916     if (xn || (wxn && (prot_rw & PAGE_WRITE))) {
8917         return prot_rw;
8918     }
8919     return prot_rw | PAGE_EXEC;
8920 }
8921
8922 static bool get_level1_table_address(CPUARMState *env, ARMMMUIdx mmu_idx,
8923                                      uint32_t *table, uint32_t address)
8924 {
8925     /* Note that we can only get here for an AArch32 PL0/PL1 lookup */
8926     TCR *tcr = regime_tcr(env, mmu_idx);
8927
8928     if (address & tcr->mask) {
8929         if (tcr->raw_tcr & TTBCR_PD1) {
8930             /* Translation table walk disabled for TTBR1 */
8931             return false;
8932         }
8933         *table = regime_ttbr(env, mmu_idx, 1) & 0xffffc000;
8934     } else {
8935         if (tcr->raw_tcr & TTBCR_PD0) {
8936             /* Translation table walk disabled for TTBR0 */
8937             return false;
8938         }
8939         *table = regime_ttbr(env, mmu_idx, 0) & tcr->base_mask;
8940     }
8941     *table |= (address >> 18) & 0x3ffc;
8942     return true;
8943 }
8944
8945 /* Translate a S1 pagetable walk through S2 if needed.  */
8946 static hwaddr S1_ptw_translate(CPUARMState *env, ARMMMUIdx mmu_idx,
8947                                hwaddr addr, MemTxAttrs txattrs,
8948                                ARMMMUFaultInfo *fi)
8949 {
8950     if ((mmu_idx == ARMMMUIdx_S1NSE0 || mmu_idx == ARMMMUIdx_S1NSE1) &&
8951         !regime_translation_disabled(env, ARMMMUIdx_S2NS)) {
8952         target_ulong s2size;
8953         hwaddr s2pa;
8954         int s2prot;
8955         int ret;
8956
8957         ret = get_phys_addr_lpae(env, addr, 0, ARMMMUIdx_S2NS, &s2pa,
8958                                  &txattrs, &s2prot, &s2size, fi, NULL);
8959         if (ret) {
8960             assert(fi->type != ARMFault_None);
8961             fi->s2addr = addr;
8962             fi->stage2 = true;
8963             fi->s1ptw = true;
8964             return ~0;
8965         }
8966         addr = s2pa;
8967     }
8968     return addr;
8969 }
8970
8971 /* All loads done in the course of a page table walk go through here. */
8972 static uint32_t arm_ldl_ptw(CPUState *cs, hwaddr addr, bool is_secure,
8973                             ARMMMUIdx mmu_idx, ARMMMUFaultInfo *fi)
8974 {
8975     ARMCPU *cpu = ARM_CPU(cs);
8976     CPUARMState *env = &cpu->env;
8977     MemTxAttrs attrs = {};
8978     MemTxResult result = MEMTX_OK;
8979     AddressSpace *as;
8980     uint32_t data;
8981
8982     attrs.secure = is_secure;
8983     as = arm_addressspace(cs, attrs);
8984     addr = S1_ptw_translate(env, mmu_idx, addr, attrs, fi);
8985     if (fi->s1ptw) {
8986         return 0;
8987     }
8988     if (regime_translation_big_endian(env, mmu_idx)) {
8989         data = address_space_ldl_be(as, addr, attrs, &result);
8990     } else {
8991         data = address_space_ldl_le(as, addr, attrs, &result);
8992     }
8993     if (result == MEMTX_OK) {
8994         return data;
8995     }
8996     fi->type = ARMFault_SyncExternalOnWalk;
8997     fi->ea = arm_extabort_type(result);
8998     return 0;
8999 }
9000
9001 static uint64_t arm_ldq_ptw(CPUState *cs, hwaddr addr, bool is_secure,
9002                             ARMMMUIdx mmu_idx, ARMMMUFaultInfo *fi)
9003 {
9004     ARMCPU *cpu = ARM_CPU(cs);
9005     CPUARMState *env = &cpu->env;
9006     MemTxAttrs attrs = {};
9007     MemTxResult result = MEMTX_OK;
9008     AddressSpace *as;
9009     uint64_t data;
9010
9011     attrs.secure = is_secure;
9012     as = arm_addressspace(cs, attrs);
9013     addr = S1_ptw_translate(env, mmu_idx, addr, attrs, fi);
9014     if (fi->s1ptw) {
9015         return 0;
9016     }
9017     if (regime_translation_big_endian(env, mmu_idx)) {
9018         data = address_space_ldq_be(as, addr, attrs, &result);
9019     } else {
9020         data = address_space_ldq_le(as, addr, attrs, &result);
9021     }
9022     if (result == MEMTX_OK) {
9023         return data;
9024     }
9025     fi->type = ARMFault_SyncExternalOnWalk;
9026     fi->ea = arm_extabort_type(result);
9027     return 0;
9028 }
9029
9030 static bool get_phys_addr_v5(CPUARMState *env, uint32_t address,
9031                              MMUAccessType access_type, ARMMMUIdx mmu_idx,
9032                              hwaddr *phys_ptr, int *prot,
9033                              target_ulong *page_size,
9034                              ARMMMUFaultInfo *fi)
9035 {
9036     CPUState *cs = CPU(arm_env_get_cpu(env));
9037     int level = 1;
9038     uint32_t table;
9039     uint32_t desc;
9040     int type;
9041     int ap;
9042     int domain = 0;
9043     int domain_prot;
9044     hwaddr phys_addr;
9045     uint32_t dacr;
9046
9047     /* Pagetable walk.  */
9048     /* Lookup l1 descriptor.  */
9049     if (!get_level1_table_address(env, mmu_idx, &table, address)) {
9050         /* Section translation fault if page walk is disabled by PD0 or PD1 */
9051         fi->type = ARMFault_Translation;
9052         goto do_fault;
9053     }
9054     desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
9055                        mmu_idx, fi);
9056     if (fi->type != ARMFault_None) {
9057         goto do_fault;
9058     }
9059     type = (desc & 3);
9060     domain = (desc >> 5) & 0x0f;
9061     if (regime_el(env, mmu_idx) == 1) {
9062         dacr = env->cp15.dacr_ns;
9063     } else {
9064         dacr = env->cp15.dacr_s;
9065     }
9066     domain_prot = (dacr >> (domain * 2)) & 3;
9067     if (type == 0) {
9068         /* Section translation fault.  */
9069         fi->type = ARMFault_Translation;
9070         goto do_fault;
9071     }
9072     if (type != 2) {
9073         level = 2;
9074     }
9075     if (domain_prot == 0 || domain_prot == 2) {
9076         fi->type = ARMFault_Domain;
9077         goto do_fault;
9078     }
9079     if (type == 2) {
9080         /* 1Mb section.  */
9081         phys_addr = (desc & 0xfff00000) | (address & 0x000fffff);
9082         ap = (desc >> 10) & 3;
9083         *page_size = 1024 * 1024;
9084     } else {
9085         /* Lookup l2 entry.  */
9086         if (type == 1) {
9087             /* Coarse pagetable.  */
9088             table = (desc & 0xfffffc00) | ((address >> 10) & 0x3fc);
9089         } else {
9090             /* Fine pagetable.  */
9091             table = (desc & 0xfffff000) | ((address >> 8) & 0xffc);
9092         }
9093         desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
9094                            mmu_idx, fi);
9095         if (fi->type != ARMFault_None) {
9096             goto do_fault;
9097         }
9098         switch (desc & 3) {
9099         case 0: /* Page translation fault.  */
9100             fi->type = ARMFault_Translation;
9101             goto do_fault;
9102         case 1: /* 64k page.  */
9103             phys_addr = (desc & 0xffff0000) | (address & 0xffff);
9104             ap = (desc >> (4 + ((address >> 13) & 6))) & 3;
9105             *page_size = 0x10000;
9106             break;
9107         case 2: /* 4k page.  */
9108             phys_addr = (desc & 0xfffff000) | (address & 0xfff);
9109             ap = (desc >> (4 + ((address >> 9) & 6))) & 3;
9110             *page_size = 0x1000;
9111             break;
9112         case 3: /* 1k page, or ARMv6/XScale "extended small (4k) page" */
9113             if (type == 1) {
9114                 /* ARMv6/XScale extended small page format */
9115                 if (arm_feature(env, ARM_FEATURE_XSCALE)
9116                     || arm_feature(env, ARM_FEATURE_V6)) {
9117                     phys_addr = (desc & 0xfffff000) | (address & 0xfff);
9118                     *page_size = 0x1000;
9119                 } else {
9120                     /* UNPREDICTABLE in ARMv5; we choose to take a
9121                      * page translation fault.
9122                      */
9123                     fi->type = ARMFault_Translation;
9124                     goto do_fault;
9125                 }
9126             } else {
9127                 phys_addr = (desc & 0xfffffc00) | (address & 0x3ff);
9128                 *page_size = 0x400;
9129             }
9130             ap = (desc >> 4) & 3;
9131             break;
9132         default:
9133             /* Never happens, but compiler isn't smart enough to tell.  */
9134             abort();
9135         }
9136     }
9137     *prot = ap_to_rw_prot(env, mmu_idx, ap, domain_prot);
9138     *prot |= *prot ? PAGE_EXEC : 0;
9139     if (!(*prot & (1 << access_type))) {
9140         /* Access permission fault.  */
9141         fi->type = ARMFault_Permission;
9142         goto do_fault;
9143     }
9144     *phys_ptr = phys_addr;
9145     return false;
9146 do_fault:
9147     fi->domain = domain;
9148     fi->level = level;
9149     return true;
9150 }
9151
9152 static bool get_phys_addr_v6(CPUARMState *env, uint32_t address,
9153                              MMUAccessType access_type, ARMMMUIdx mmu_idx,
9154                              hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
9155                              target_ulong *page_size, ARMMMUFaultInfo *fi)
9156 {
9157     CPUState *cs = CPU(arm_env_get_cpu(env));
9158     int level = 1;
9159     uint32_t table;
9160     uint32_t desc;
9161     uint32_t xn;
9162     uint32_t pxn = 0;
9163     int type;
9164     int ap;
9165     int domain = 0;
9166     int domain_prot;
9167     hwaddr phys_addr;
9168     uint32_t dacr;
9169     bool ns;
9170
9171     /* Pagetable walk.  */
9172     /* Lookup l1 descriptor.  */
9173     if (!get_level1_table_address(env, mmu_idx, &table, address)) {
9174         /* Section translation fault if page walk is disabled by PD0 or PD1 */
9175         fi->type = ARMFault_Translation;
9176         goto do_fault;
9177     }
9178     desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
9179                        mmu_idx, fi);
9180     if (fi->type != ARMFault_None) {
9181         goto do_fault;
9182     }
9183     type = (desc & 3);
9184     if (type == 0 || (type == 3 && !arm_feature(env, ARM_FEATURE_PXN))) {
9185         /* Section translation fault, or attempt to use the encoding
9186          * which is Reserved on implementations without PXN.
9187          */
9188         fi->type = ARMFault_Translation;
9189         goto do_fault;
9190     }
9191     if ((type == 1) || !(desc & (1 << 18))) {
9192         /* Page or Section.  */
9193         domain = (desc >> 5) & 0x0f;
9194     }
9195     if (regime_el(env, mmu_idx) == 1) {
9196         dacr = env->cp15.dacr_ns;
9197     } else {
9198         dacr = env->cp15.dacr_s;
9199     }
9200     if (type == 1) {
9201         level = 2;
9202     }
9203     domain_prot = (dacr >> (domain * 2)) & 3;
9204     if (domain_prot == 0 || domain_prot == 2) {
9205         /* Section or Page domain fault */
9206         fi->type = ARMFault_Domain;
9207         goto do_fault;
9208     }
9209     if (type != 1) {
9210         if (desc & (1 << 18)) {
9211             /* Supersection.  */
9212             phys_addr = (desc & 0xff000000) | (address & 0x00ffffff);
9213             phys_addr |= (uint64_t)extract32(desc, 20, 4) << 32;
9214             phys_addr |= (uint64_t)extract32(desc, 5, 4) << 36;
9215             *page_size = 0x1000000;
9216         } else {
9217             /* Section.  */
9218             phys_addr = (desc & 0xfff00000) | (address & 0x000fffff);
9219             *page_size = 0x100000;
9220         }
9221         ap = ((desc >> 10) & 3) | ((desc >> 13) & 4);
9222         xn = desc & (1 << 4);
9223         pxn = desc & 1;
9224         ns = extract32(desc, 19, 1);
9225     } else {
9226         if (arm_feature(env, ARM_FEATURE_PXN)) {
9227             pxn = (desc >> 2) & 1;
9228         }
9229         ns = extract32(desc, 3, 1);
9230         /* Lookup l2 entry.  */
9231         table = (desc & 0xfffffc00) | ((address >> 10) & 0x3fc);
9232         desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
9233                            mmu_idx, fi);
9234         if (fi->type != ARMFault_None) {
9235             goto do_fault;
9236         }
9237         ap = ((desc >> 4) & 3) | ((desc >> 7) & 4);
9238         switch (desc & 3) {
9239         case 0: /* Page translation fault.  */
9240             fi->type = ARMFault_Translation;
9241             goto do_fault;
9242         case 1: /* 64k page.  */
9243             phys_addr = (desc & 0xffff0000) | (address & 0xffff);
9244             xn = desc & (1 << 15);
9245             *page_size = 0x10000;
9246             break;
9247         case 2: case 3: /* 4k page.  */
9248             phys_addr = (desc & 0xfffff000) | (address & 0xfff);
9249             xn = desc & 1;
9250             *page_size = 0x1000;
9251             break;
9252         default:
9253             /* Never happens, but compiler isn't smart enough to tell.  */
9254             abort();
9255         }
9256     }
9257     if (domain_prot == 3) {
9258         *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
9259     } else {
9260         if (pxn && !regime_is_user(env, mmu_idx)) {
9261             xn = 1;
9262         }
9263         if (xn && access_type == MMU_INST_FETCH) {
9264             fi->type = ARMFault_Permission;
9265             goto do_fault;
9266         }
9267
9268         if (arm_feature(env, ARM_FEATURE_V6K) &&
9269                 (regime_sctlr(env, mmu_idx) & SCTLR_AFE)) {
9270             /* The simplified model uses AP[0] as an access control bit.  */
9271             if ((ap & 1) == 0) {
9272                 /* Access flag fault.  */
9273                 fi->type = ARMFault_AccessFlag;
9274                 goto do_fault;
9275             }
9276             *prot = simple_ap_to_rw_prot(env, mmu_idx, ap >> 1);
9277         } else {
9278             *prot = ap_to_rw_prot(env, mmu_idx, ap, domain_prot);
9279         }
9280         if (*prot && !xn) {
9281             *prot |= PAGE_EXEC;
9282         }
9283         if (!(*prot & (1 << access_type))) {
9284             /* Access permission fault.  */
9285             fi->type = ARMFault_Permission;
9286             goto do_fault;
9287         }
9288     }
9289     if (ns) {
9290         /* The NS bit will (as required by the architecture) have no effect if
9291          * the CPU doesn't support TZ or this is a non-secure translation
9292          * regime, because the attribute will already be non-secure.
9293          */
9294         attrs->secure = false;
9295     }
9296     *phys_ptr = phys_addr;
9297     return false;
9298 do_fault:
9299     fi->domain = domain;
9300     fi->level = level;
9301     return true;
9302 }
9303
9304 /*
9305  * check_s2_mmu_setup
9306  * @cpu:        ARMCPU
9307  * @is_aa64:    True if the translation regime is in AArch64 state
9308  * @startlevel: Suggested starting level
9309  * @inputsize:  Bitsize of IPAs
9310  * @stride:     Page-table stride (See the ARM ARM)
9311  *
9312  * Returns true if the suggested S2 translation parameters are OK and
9313  * false otherwise.
9314  */
9315 static bool check_s2_mmu_setup(ARMCPU *cpu, bool is_aa64, int level,
9316                                int inputsize, int stride)
9317 {
9318     const int grainsize = stride + 3;
9319     int startsizecheck;
9320
9321     /* Negative levels are never allowed.  */
9322     if (level < 0) {
9323         return false;
9324     }
9325
9326     startsizecheck = inputsize - ((3 - level) * stride + grainsize);
9327     if (startsizecheck < 1 || startsizecheck > stride + 4) {
9328         return false;
9329     }
9330
9331     if (is_aa64) {
9332         CPUARMState *env = &cpu->env;
9333         unsigned int pamax = arm_pamax(cpu);
9334
9335         switch (stride) {
9336         case 13: /* 64KB Pages.  */
9337             if (level == 0 || (level == 1 && pamax <= 42)) {
9338                 return false;
9339             }
9340             break;
9341         case 11: /* 16KB Pages.  */
9342             if (level == 0 || (level == 1 && pamax <= 40)) {
9343                 return false;
9344             }
9345             break;
9346         case 9: /* 4KB Pages.  */
9347             if (level == 0 && pamax <= 42) {
9348                 return false;
9349             }
9350             break;
9351         default:
9352             g_assert_not_reached();
9353         }
9354
9355         /* Inputsize checks.  */
9356         if (inputsize > pamax &&
9357             (arm_el_is_aa64(env, 1) || inputsize > 40)) {
9358             /* This is CONSTRAINED UNPREDICTABLE and we choose to fault.  */
9359             return false;
9360         }
9361     } else {
9362         /* AArch32 only supports 4KB pages. Assert on that.  */
9363         assert(stride == 9);
9364
9365         if (level == 0) {
9366             return false;
9367         }
9368     }
9369     return true;
9370 }
9371
9372 /* Translate from the 4-bit stage 2 representation of
9373  * memory attributes (without cache-allocation hints) to
9374  * the 8-bit representation of the stage 1 MAIR registers
9375  * (which includes allocation hints).
9376  *
9377  * ref: shared/translation/attrs/S2AttrDecode()
9378  *      .../S2ConvertAttrsHints()
9379  */
9380 static uint8_t convert_stage2_attrs(CPUARMState *env, uint8_t s2attrs)
9381 {
9382     uint8_t hiattr = extract32(s2attrs, 2, 2);
9383     uint8_t loattr = extract32(s2attrs, 0, 2);
9384     uint8_t hihint = 0, lohint = 0;
9385
9386     if (hiattr != 0) { /* normal memory */
9387         if ((env->cp15.hcr_el2 & HCR_CD) != 0) { /* cache disabled */
9388             hiattr = loattr = 1; /* non-cacheable */
9389         } else {
9390             if (hiattr != 1) { /* Write-through or write-back */
9391                 hihint = 3; /* RW allocate */
9392             }
9393             if (loattr != 1) { /* Write-through or write-back */
9394                 lohint = 3; /* RW allocate */
9395             }
9396         }
9397     }
9398
9399     return (hiattr << 6) | (hihint << 4) | (loattr << 2) | lohint;
9400 }
9401
9402 static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
9403                                MMUAccessType access_type, ARMMMUIdx mmu_idx,
9404                                hwaddr *phys_ptr, MemTxAttrs *txattrs, int *prot,
9405                                target_ulong *page_size_ptr,
9406                                ARMMMUFaultInfo *fi, ARMCacheAttrs *cacheattrs)
9407 {
9408     ARMCPU *cpu = arm_env_get_cpu(env);
9409     CPUState *cs = CPU(cpu);
9410     /* Read an LPAE long-descriptor translation table. */
9411     ARMFaultType fault_type = ARMFault_Translation;
9412     uint32_t level;
9413     uint32_t epd = 0;
9414     int32_t t0sz, t1sz;
9415     uint32_t tg;
9416     uint64_t ttbr;
9417     int ttbr_select;
9418     hwaddr descaddr, indexmask, indexmask_grainsize;
9419     uint32_t tableattrs;
9420     target_ulong page_size;
9421     uint32_t attrs;
9422     int32_t stride = 9;
9423     int32_t addrsize;
9424     int inputsize;
9425     int32_t tbi = 0;
9426     TCR *tcr = regime_tcr(env, mmu_idx);
9427     int ap, ns, xn, pxn;
9428     uint32_t el = regime_el(env, mmu_idx);
9429     bool ttbr1_valid = true;
9430     uint64_t descaddrmask;
9431     bool aarch64 = arm_el_is_aa64(env, el);
9432
9433     /* TODO:
9434      * This code does not handle the different format TCR for VTCR_EL2.
9435      * This code also does not support shareability levels.
9436      * Attribute and permission bit handling should also be checked when adding
9437      * support for those page table walks.
9438      */
9439     if (aarch64) {
9440         level = 0;
9441         addrsize = 64;
9442         if (el > 1) {
9443             if (mmu_idx != ARMMMUIdx_S2NS) {
9444                 tbi = extract64(tcr->raw_tcr, 20, 1);
9445             }
9446         } else {
9447             if (extract64(address, 55, 1)) {
9448                 tbi = extract64(tcr->raw_tcr, 38, 1);
9449             } else {
9450                 tbi = extract64(tcr->raw_tcr, 37, 1);
9451             }
9452         }
9453         tbi *= 8;
9454
9455         /* If we are in 64-bit EL2 or EL3 then there is no TTBR1, so mark it
9456          * invalid.
9457          */
9458         if (el > 1) {
9459             ttbr1_valid = false;
9460         }
9461     } else {
9462         level = 1;
9463         addrsize = 32;
9464         /* There is no TTBR1 for EL2 */
9465         if (el == 2) {
9466             ttbr1_valid = false;
9467         }
9468     }
9469
9470     /* Determine whether this address is in the region controlled by
9471      * TTBR0 or TTBR1 (or if it is in neither region and should fault).
9472      * This is a Non-secure PL0/1 stage 1 translation, so controlled by
9473      * TTBCR/TTBR0/TTBR1 in accordance with ARM ARM DDI0406C table B-32:
9474      */
9475     if (aarch64) {
9476         /* AArch64 translation.  */
9477         t0sz = extract32(tcr->raw_tcr, 0, 6);
9478         t0sz = MIN(t0sz, 39);
9479         t0sz = MAX(t0sz, 16);
9480     } else if (mmu_idx != ARMMMUIdx_S2NS) {
9481         /* AArch32 stage 1 translation.  */
9482         t0sz = extract32(tcr->raw_tcr, 0, 3);
9483     } else {
9484         /* AArch32 stage 2 translation.  */
9485         bool sext = extract32(tcr->raw_tcr, 4, 1);
9486         bool sign = extract32(tcr->raw_tcr, 3, 1);
9487         /* Address size is 40-bit for a stage 2 translation,
9488          * and t0sz can be negative (from -8 to 7),
9489          * so we need to adjust it to use the TTBR selecting logic below.
9490          */
9491         addrsize = 40;
9492         t0sz = sextract32(tcr->raw_tcr, 0, 4) + 8;
9493
9494         /* If the sign-extend bit is not the same as t0sz[3], the result
9495          * is unpredictable. Flag this as a guest error.  */
9496         if (sign != sext) {
9497             qemu_log_mask(LOG_GUEST_ERROR,
9498                           "AArch32: VTCR.S / VTCR.T0SZ[3] mismatch\n");
9499         }
9500     }
9501     t1sz = extract32(tcr->raw_tcr, 16, 6);
9502     if (aarch64) {
9503         t1sz = MIN(t1sz, 39);
9504         t1sz = MAX(t1sz, 16);
9505     }
9506     if (t0sz && !extract64(address, addrsize - t0sz, t0sz - tbi)) {
9507         /* there is a ttbr0 region and we are in it (high bits all zero) */
9508         ttbr_select = 0;
9509     } else if (ttbr1_valid && t1sz &&
9510                !extract64(~address, addrsize - t1sz, t1sz - tbi)) {
9511         /* there is a ttbr1 region and we are in it (high bits all one) */
9512         ttbr_select = 1;
9513     } else if (!t0sz) {
9514         /* ttbr0 region is "everything not in the ttbr1 region" */
9515         ttbr_select = 0;
9516     } else if (!t1sz && ttbr1_valid) {
9517         /* ttbr1 region is "everything not in the ttbr0 region" */
9518         ttbr_select = 1;
9519     } else {
9520         /* in the gap between the two regions, this is a Translation fault */
9521         fault_type = ARMFault_Translation;
9522         goto do_fault;
9523     }
9524
9525     /* Note that QEMU ignores shareability and cacheability attributes,
9526      * so we don't need to do anything with the SH, ORGN, IRGN fields
9527      * in the TTBCR.  Similarly, TTBCR:A1 selects whether we get the
9528      * ASID from TTBR0 or TTBR1, but QEMU's TLB doesn't currently
9529      * implement any ASID-like capability so we can ignore it (instead
9530      * we will always flush the TLB any time the ASID is changed).
9531      */
9532     if (ttbr_select == 0) {
9533         ttbr = regime_ttbr(env, mmu_idx, 0);
9534         if (el < 2) {
9535             epd = extract32(tcr->raw_tcr, 7, 1);
9536         }
9537         inputsize = addrsize - t0sz;
9538
9539         tg = extract32(tcr->raw_tcr, 14, 2);
9540         if (tg == 1) { /* 64KB pages */
9541             stride = 13;
9542         }
9543         if (tg == 2) { /* 16KB pages */
9544             stride = 11;
9545         }
9546     } else {
9547         /* We should only be here if TTBR1 is valid */
9548         assert(ttbr1_valid);
9549
9550         ttbr = regime_ttbr(env, mmu_idx, 1);
9551         epd = extract32(tcr->raw_tcr, 23, 1);
9552         inputsize = addrsize - t1sz;
9553
9554         tg = extract32(tcr->raw_tcr, 30, 2);
9555         if (tg == 3)  { /* 64KB pages */
9556             stride = 13;
9557         }
9558         if (tg == 1) { /* 16KB pages */
9559             stride = 11;
9560         }
9561     }
9562
9563     /* Here we should have set up all the parameters for the translation:
9564      * inputsize, ttbr, epd, stride, tbi
9565      */
9566
9567     if (epd) {
9568         /* Translation table walk disabled => Translation fault on TLB miss
9569          * Note: This is always 0 on 64-bit EL2 and EL3.
9570          */
9571         goto do_fault;
9572     }
9573
9574     if (mmu_idx != ARMMMUIdx_S2NS) {
9575         /* The starting level depends on the virtual address size (which can
9576          * be up to 48 bits) and the translation granule size. It indicates
9577          * the number of strides (stride bits at a time) needed to
9578          * consume the bits of the input address. In the pseudocode this is:
9579          *  level = 4 - RoundUp((inputsize - grainsize) / stride)
9580          * where their 'inputsize' is our 'inputsize', 'grainsize' is
9581          * our 'stride + 3' and 'stride' is our 'stride'.
9582          * Applying the usual "rounded up m/n is (m+n-1)/n" and simplifying:
9583          * = 4 - (inputsize - stride - 3 + stride - 1) / stride
9584          * = 4 - (inputsize - 4) / stride;
9585          */
9586         level = 4 - (inputsize - 4) / stride;
9587     } else {
9588         /* For stage 2 translations the starting level is specified by the
9589          * VTCR_EL2.SL0 field (whose interpretation depends on the page size)
9590          */
9591         uint32_t sl0 = extract32(tcr->raw_tcr, 6, 2);
9592         uint32_t startlevel;
9593         bool ok;
9594
9595         if (!aarch64 || stride == 9) {
9596             /* AArch32 or 4KB pages */
9597             startlevel = 2 - sl0;
9598         } else {
9599             /* 16KB or 64KB pages */
9600             startlevel = 3 - sl0;
9601         }
9602
9603         /* Check that the starting level is valid. */
9604         ok = check_s2_mmu_setup(cpu, aarch64, startlevel,
9605                                 inputsize, stride);
9606         if (!ok) {
9607             fault_type = ARMFault_Translation;
9608             goto do_fault;
9609         }
9610         level = startlevel;
9611     }
9612
9613     indexmask_grainsize = (1ULL << (stride + 3)) - 1;
9614     indexmask = (1ULL << (inputsize - (stride * (4 - level)))) - 1;
9615
9616     /* Now we can extract the actual base address from the TTBR */
9617     descaddr = extract64(ttbr, 0, 48);
9618     descaddr &= ~indexmask;
9619
9620     /* The address field in the descriptor goes up to bit 39 for ARMv7
9621      * but up to bit 47 for ARMv8, but we use the descaddrmask
9622      * up to bit 39 for AArch32, because we don't need other bits in that case
9623      * to construct next descriptor address (anyway they should be all zeroes).
9624      */
9625     descaddrmask = ((1ull << (aarch64 ? 48 : 40)) - 1) &
9626                    ~indexmask_grainsize;
9627
9628     /* Secure accesses start with the page table in secure memory and
9629      * can be downgraded to non-secure at any step. Non-secure accesses
9630      * remain non-secure. We implement this by just ORing in the NSTable/NS
9631      * bits at each step.
9632      */
9633     tableattrs = regime_is_secure(env, mmu_idx) ? 0 : (1 << 4);
9634     for (;;) {
9635         uint64_t descriptor;
9636         bool nstable;
9637
9638         descaddr |= (address >> (stride * (4 - level))) & indexmask;
9639         descaddr &= ~7ULL;
9640         nstable = extract32(tableattrs, 4, 1);
9641         descriptor = arm_ldq_ptw(cs, descaddr, !nstable, mmu_idx, fi);
9642         if (fi->type != ARMFault_None) {
9643             goto do_fault;
9644         }
9645
9646         if (!(descriptor & 1) ||
9647             (!(descriptor & 2) && (level == 3))) {
9648             /* Invalid, or the Reserved level 3 encoding */
9649             goto do_fault;
9650         }
9651         descaddr = descriptor & descaddrmask;
9652
9653         if ((descriptor & 2) && (level < 3)) {
9654             /* Table entry. The top five bits are attributes which  may
9655              * propagate down through lower levels of the table (and
9656              * which are all arranged so that 0 means "no effect", so
9657              * we can gather them up by ORing in the bits at each level).
9658              */
9659             tableattrs |= extract64(descriptor, 59, 5);
9660             level++;
9661             indexmask = indexmask_grainsize;
9662             continue;
9663         }
9664         /* Block entry at level 1 or 2, or page entry at level 3.
9665          * These are basically the same thing, although the number
9666          * of bits we pull in from the vaddr varies.
9667          */
9668         page_size = (1ULL << ((stride * (4 - level)) + 3));
9669         descaddr |= (address & (page_size - 1));
9670         /* Extract attributes from the descriptor */
9671         attrs = extract64(descriptor, 2, 10)
9672             | (extract64(descriptor, 52, 12) << 10);
9673
9674         if (mmu_idx == ARMMMUIdx_S2NS) {
9675             /* Stage 2 table descriptors do not include any attribute fields */
9676             break;
9677         }
9678         /* Merge in attributes from table descriptors */
9679         attrs |= extract32(tableattrs, 0, 2) << 11; /* XN, PXN */
9680         attrs |= extract32(tableattrs, 3, 1) << 5; /* APTable[1] => AP[2] */
9681         /* The sense of AP[1] vs APTable[0] is reversed, as APTable[0] == 1
9682          * means "force PL1 access only", which means forcing AP[1] to 0.
9683          */
9684         if (extract32(tableattrs, 2, 1)) {
9685             attrs &= ~(1 << 4);
9686         }
9687         attrs |= nstable << 3; /* NS */
9688         break;
9689     }
9690     /* Here descaddr is the final physical address, and attributes
9691      * are all in attrs.
9692      */
9693     fault_type = ARMFault_AccessFlag;
9694     if ((attrs & (1 << 8)) == 0) {
9695         /* Access flag */
9696         goto do_fault;
9697     }
9698
9699     ap = extract32(attrs, 4, 2);
9700     xn = extract32(attrs, 12, 1);
9701
9702     if (mmu_idx == ARMMMUIdx_S2NS) {
9703         ns = true;
9704         *prot = get_S2prot(env, ap, xn);
9705     } else {
9706         ns = extract32(attrs, 3, 1);
9707         pxn = extract32(attrs, 11, 1);
9708         *prot = get_S1prot(env, mmu_idx, aarch64, ap, ns, xn, pxn);
9709     }
9710
9711     fault_type = ARMFault_Permission;
9712     if (!(*prot & (1 << access_type))) {
9713         goto do_fault;
9714     }
9715
9716     if (ns) {
9717         /* The NS bit will (as required by the architecture) have no effect if
9718          * the CPU doesn't support TZ or this is a non-secure translation
9719          * regime, because the attribute will already be non-secure.
9720          */
9721         txattrs->secure = false;
9722     }
9723
9724     if (cacheattrs != NULL) {
9725         if (mmu_idx == ARMMMUIdx_S2NS) {
9726             cacheattrs->attrs = convert_stage2_attrs(env,
9727                                                      extract32(attrs, 0, 4));
9728         } else {
9729             /* Index into MAIR registers for cache attributes */
9730             uint8_t attrindx = extract32(attrs, 0, 3);
9731             uint64_t mair = env->cp15.mair_el[regime_el(env, mmu_idx)];
9732             assert(attrindx <= 7);
9733             cacheattrs->attrs = extract64(mair, attrindx * 8, 8);
9734         }
9735         cacheattrs->shareability = extract32(attrs, 6, 2);
9736     }
9737
9738     *phys_ptr = descaddr;
9739     *page_size_ptr = page_size;
9740     return false;
9741
9742 do_fault:
9743     fi->type = fault_type;
9744     fi->level = level;
9745     /* Tag the error as S2 for failed S1 PTW at S2 or ordinary S2.  */
9746     fi->stage2 = fi->s1ptw || (mmu_idx == ARMMMUIdx_S2NS);
9747     return true;
9748 }
9749
9750 static inline void get_phys_addr_pmsav7_default(CPUARMState *env,
9751                                                 ARMMMUIdx mmu_idx,
9752                                                 int32_t address, int *prot)
9753 {
9754     if (!arm_feature(env, ARM_FEATURE_M)) {
9755         *prot = PAGE_READ | PAGE_WRITE;
9756         switch (address) {
9757         case 0xF0000000 ... 0xFFFFFFFF:
9758             if (regime_sctlr(env, mmu_idx) & SCTLR_V) {
9759                 /* hivecs execing is ok */
9760                 *prot |= PAGE_EXEC;
9761             }
9762             break;
9763         case 0x00000000 ... 0x7FFFFFFF:
9764             *prot |= PAGE_EXEC;
9765             break;
9766         }
9767     } else {
9768         /* Default system address map for M profile cores.
9769          * The architecture specifies which regions are execute-never;
9770          * at the MPU level no other checks are defined.
9771          */
9772         switch (address) {
9773         case 0x00000000 ... 0x1fffffff: /* ROM */
9774         case 0x20000000 ... 0x3fffffff: /* SRAM */
9775         case 0x60000000 ... 0x7fffffff: /* RAM */
9776         case 0x80000000 ... 0x9fffffff: /* RAM */
9777             *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
9778             break;
9779         case 0x40000000 ... 0x5fffffff: /* Peripheral */
9780         case 0xa0000000 ... 0xbfffffff: /* Device */
9781         case 0xc0000000 ... 0xdfffffff: /* Device */
9782         case 0xe0000000 ... 0xffffffff: /* System */
9783             *prot = PAGE_READ | PAGE_WRITE;
9784             break;
9785         default:
9786             g_assert_not_reached();
9787         }
9788     }
9789 }
9790
9791 static bool pmsav7_use_background_region(ARMCPU *cpu,
9792                                          ARMMMUIdx mmu_idx, bool is_user)
9793 {
9794     /* Return true if we should use the default memory map as a
9795      * "background" region if there are no hits against any MPU regions.
9796      */
9797     CPUARMState *env = &cpu->env;
9798
9799     if (is_user) {
9800         return false;
9801     }
9802
9803     if (arm_feature(env, ARM_FEATURE_M)) {
9804         return env->v7m.mpu_ctrl[regime_is_secure(env, mmu_idx)]
9805             & R_V7M_MPU_CTRL_PRIVDEFENA_MASK;
9806     } else {
9807         return regime_sctlr(env, mmu_idx) & SCTLR_BR;
9808     }
9809 }
9810
9811 static inline bool m_is_ppb_region(CPUARMState *env, uint32_t address)
9812 {
9813     /* True if address is in the M profile PPB region 0xe0000000 - 0xe00fffff */
9814     return arm_feature(env, ARM_FEATURE_M) &&
9815         extract32(address, 20, 12) == 0xe00;
9816 }
9817
9818 static inline bool m_is_system_region(CPUARMState *env, uint32_t address)
9819 {
9820     /* True if address is in the M profile system region
9821      * 0xe0000000 - 0xffffffff
9822      */
9823     return arm_feature(env, ARM_FEATURE_M) && extract32(address, 29, 3) == 0x7;
9824 }
9825
9826 static bool get_phys_addr_pmsav7(CPUARMState *env, uint32_t address,
9827                                  MMUAccessType access_type, ARMMMUIdx mmu_idx,
9828                                  hwaddr *phys_ptr, int *prot,
9829                                  target_ulong *page_size,
9830                                  ARMMMUFaultInfo *fi)
9831 {
9832     ARMCPU *cpu = arm_env_get_cpu(env);
9833     int n;
9834     bool is_user = regime_is_user(env, mmu_idx);
9835
9836     *phys_ptr = address;
9837     *page_size = TARGET_PAGE_SIZE;
9838     *prot = 0;
9839
9840     if (regime_translation_disabled(env, mmu_idx) ||
9841         m_is_ppb_region(env, address)) {
9842         /* MPU disabled or M profile PPB access: use default memory map.
9843          * The other case which uses the default memory map in the
9844          * v7M ARM ARM pseudocode is exception vector reads from the vector
9845          * table. In QEMU those accesses are done in arm_v7m_load_vector(),
9846          * which always does a direct read using address_space_ldl(), rather
9847          * than going via this function, so we don't need to check that here.
9848          */
9849         get_phys_addr_pmsav7_default(env, mmu_idx, address, prot);
9850     } else { /* MPU enabled */
9851         for (n = (int)cpu->pmsav7_dregion - 1; n >= 0; n--) {
9852             /* region search */
9853             uint32_t base = env->pmsav7.drbar[n];
9854             uint32_t rsize = extract32(env->pmsav7.drsr[n], 1, 5);
9855             uint32_t rmask;
9856             bool srdis = false;
9857
9858             if (!(env->pmsav7.drsr[n] & 0x1)) {
9859                 continue;
9860             }
9861
9862             if (!rsize) {
9863                 qemu_log_mask(LOG_GUEST_ERROR,
9864                               "DRSR[%d]: Rsize field cannot be 0\n", n);
9865                 continue;
9866             }
9867             rsize++;
9868             rmask = (1ull << rsize) - 1;
9869
9870             if (base & rmask) {
9871                 qemu_log_mask(LOG_GUEST_ERROR,
9872                               "DRBAR[%d]: 0x%" PRIx32 " misaligned "
9873                               "to DRSR region size, mask = 0x%" PRIx32 "\n",
9874                               n, base, rmask);
9875                 continue;
9876             }
9877
9878             if (address < base || address > base + rmask) {
9879                 /*
9880                  * Address not in this region. We must check whether the
9881                  * region covers addresses in the same page as our address.
9882                  * In that case we must not report a size that covers the
9883                  * whole page for a subsequent hit against a different MPU
9884                  * region or the background region, because it would result in
9885                  * incorrect TLB hits for subsequent accesses to addresses that
9886                  * are in this MPU region.
9887                  */
9888                 if (ranges_overlap(base, rmask,
9889                                    address & TARGET_PAGE_MASK,
9890                                    TARGET_PAGE_SIZE)) {
9891                     *page_size = 1;
9892                 }
9893                 continue;
9894             }
9895
9896             /* Region matched */
9897
9898             if (rsize >= 8) { /* no subregions for regions < 256 bytes */
9899                 int i, snd;
9900                 uint32_t srdis_mask;
9901
9902                 rsize -= 3; /* sub region size (power of 2) */
9903                 snd = ((address - base) >> rsize) & 0x7;
9904                 srdis = extract32(env->pmsav7.drsr[n], snd + 8, 1);
9905
9906                 srdis_mask = srdis ? 0x3 : 0x0;
9907                 for (i = 2; i <= 8 && rsize < TARGET_PAGE_BITS; i *= 2) {
9908                     /* This will check in groups of 2, 4 and then 8, whether
9909                      * the subregion bits are consistent. rsize is incremented
9910                      * back up to give the region size, considering consistent
9911                      * adjacent subregions as one region. Stop testing if rsize
9912                      * is already big enough for an entire QEMU page.
9913                      */
9914                     int snd_rounded = snd & ~(i - 1);
9915                     uint32_t srdis_multi = extract32(env->pmsav7.drsr[n],
9916                                                      snd_rounded + 8, i);
9917                     if (srdis_mask ^ srdis_multi) {
9918                         break;
9919                     }
9920                     srdis_mask = (srdis_mask << i) | srdis_mask;
9921                     rsize++;
9922                 }
9923             }
9924             if (srdis) {
9925                 continue;
9926             }
9927             if (rsize < TARGET_PAGE_BITS) {
9928                 *page_size = 1 << rsize;
9929             }
9930             break;
9931         }
9932
9933         if (n == -1) { /* no hits */
9934             if (!pmsav7_use_background_region(cpu, mmu_idx, is_user)) {
9935                 /* background fault */
9936                 fi->type = ARMFault_Background;
9937                 return true;
9938             }
9939             get_phys_addr_pmsav7_default(env, mmu_idx, address, prot);
9940         } else { /* a MPU hit! */
9941             uint32_t ap = extract32(env->pmsav7.dracr[n], 8, 3);
9942             uint32_t xn = extract32(env->pmsav7.dracr[n], 12, 1);
9943
9944             if (m_is_system_region(env, address)) {
9945                 /* System space is always execute never */
9946                 xn = 1;
9947             }
9948
9949             if (is_user) { /* User mode AP bit decoding */
9950                 switch (ap) {
9951                 case 0:
9952                 case 1:
9953                 case 5:
9954                     break; /* no access */
9955                 case 3:
9956                     *prot |= PAGE_WRITE;
9957                     /* fall through */
9958                 case 2:
9959                 case 6:
9960                     *prot |= PAGE_READ | PAGE_EXEC;
9961                     break;
9962                 case 7:
9963                     /* for v7M, same as 6; for R profile a reserved value */
9964                     if (arm_feature(env, ARM_FEATURE_M)) {
9965                         *prot |= PAGE_READ | PAGE_EXEC;
9966                         break;
9967                     }
9968                     /* fall through */
9969                 default:
9970                     qemu_log_mask(LOG_GUEST_ERROR,
9971                                   "DRACR[%d]: Bad value for AP bits: 0x%"
9972                                   PRIx32 "\n", n, ap);
9973                 }
9974             } else { /* Priv. mode AP bits decoding */
9975                 switch (ap) {
9976                 case 0:
9977                     break; /* no access */
9978                 case 1:
9979                 case 2:
9980                 case 3:
9981                     *prot |= PAGE_WRITE;
9982                     /* fall through */
9983                 case 5:
9984                 case 6:
9985                     *prot |= PAGE_READ | PAGE_EXEC;
9986                     break;
9987                 case 7:
9988                     /* for v7M, same as 6; for R profile a reserved value */
9989                     if (arm_feature(env, ARM_FEATURE_M)) {
9990                         *prot |= PAGE_READ | PAGE_EXEC;
9991                         break;
9992                     }
9993                     /* fall through */
9994                 default:
9995                     qemu_log_mask(LOG_GUEST_ERROR,
9996                                   "DRACR[%d]: Bad value for AP bits: 0x%"
9997                                   PRIx32 "\n", n, ap);
9998                 }
9999             }
10000
10001             /* execute never */
10002             if (xn) {
10003                 *prot &= ~PAGE_EXEC;
10004             }
10005         }
10006     }
10007
10008     fi->type = ARMFault_Permission;
10009     fi->level = 1;
10010     return !(*prot & (1 << access_type));
10011 }
10012
10013 static bool v8m_is_sau_exempt(CPUARMState *env,
10014                               uint32_t address, MMUAccessType access_type)
10015 {
10016     /* The architecture specifies that certain address ranges are
10017      * exempt from v8M SAU/IDAU checks.
10018      */
10019     return
10020         (access_type == MMU_INST_FETCH && m_is_system_region(env, address)) ||
10021         (address >= 0xe0000000 && address <= 0xe0002fff) ||
10022         (address >= 0xe000e000 && address <= 0xe000efff) ||
10023         (address >= 0xe002e000 && address <= 0xe002efff) ||
10024         (address >= 0xe0040000 && address <= 0xe0041fff) ||
10025         (address >= 0xe00ff000 && address <= 0xe00fffff);
10026 }
10027
10028 static void v8m_security_lookup(CPUARMState *env, uint32_t address,
10029                                 MMUAccessType access_type, ARMMMUIdx mmu_idx,
10030                                 V8M_SAttributes *sattrs)
10031 {
10032     /* Look up the security attributes for this address. Compare the
10033      * pseudocode SecurityCheck() function.
10034      * We assume the caller has zero-initialized *sattrs.
10035      */
10036     ARMCPU *cpu = arm_env_get_cpu(env);
10037     int r;
10038     bool idau_exempt = false, idau_ns = true, idau_nsc = true;
10039     int idau_region = IREGION_NOTVALID;
10040     uint32_t addr_page_base = address & TARGET_PAGE_MASK;
10041     uint32_t addr_page_limit = addr_page_base + (TARGET_PAGE_SIZE - 1);
10042
10043     if (cpu->idau) {
10044         IDAUInterfaceClass *iic = IDAU_INTERFACE_GET_CLASS(cpu->idau);
10045         IDAUInterface *ii = IDAU_INTERFACE(cpu->idau);
10046
10047         iic->check(ii, address, &idau_region, &idau_exempt, &idau_ns,
10048                    &idau_nsc);
10049     }
10050
10051     if (access_type == MMU_INST_FETCH && extract32(address, 28, 4) == 0xf) {
10052         /* 0xf0000000..0xffffffff is always S for insn fetches */
10053         return;
10054     }
10055
10056     if (idau_exempt || v8m_is_sau_exempt(env, address, access_type)) {
10057         sattrs->ns = !regime_is_secure(env, mmu_idx);
10058         return;
10059     }
10060
10061     if (idau_region != IREGION_NOTVALID) {
10062         sattrs->irvalid = true;
10063         sattrs->iregion = idau_region;
10064     }
10065
10066     switch (env->sau.ctrl & 3) {
10067     case 0: /* SAU.ENABLE == 0, SAU.ALLNS == 0 */
10068         break;
10069     case 2: /* SAU.ENABLE == 0, SAU.ALLNS == 1 */
10070         sattrs->ns = true;
10071         break;
10072     default: /* SAU.ENABLE == 1 */
10073         for (r = 0; r < cpu->sau_sregion; r++) {
10074             if (env->sau.rlar[r] & 1) {
10075                 uint32_t base = env->sau.rbar[r] & ~0x1f;
10076                 uint32_t limit = env->sau.rlar[r] | 0x1f;
10077
10078                 if (base <= address && limit >= address) {
10079                     if (base > addr_page_base || limit < addr_page_limit) {
10080                         sattrs->subpage = true;
10081                     }
10082                     if (sattrs->srvalid) {
10083                         /* If we hit in more than one region then we must report
10084                          * as Secure, not NS-Callable, with no valid region
10085                          * number info.
10086                          */
10087                         sattrs->ns = false;
10088                         sattrs->nsc = false;
10089                         sattrs->sregion = 0;
10090                         sattrs->srvalid = false;
10091                         break;
10092                     } else {
10093                         if (env->sau.rlar[r] & 2) {
10094                             sattrs->nsc = true;
10095                         } else {
10096                             sattrs->ns = true;
10097                         }
10098                         sattrs->srvalid = true;
10099                         sattrs->sregion = r;
10100                     }
10101                 } else {
10102                     /*
10103                      * Address not in this region. We must check whether the
10104                      * region covers addresses in the same page as our address.
10105                      * In that case we must not report a size that covers the
10106                      * whole page for a subsequent hit against a different MPU
10107                      * region or the background region, because it would result
10108                      * in incorrect TLB hits for subsequent accesses to
10109                      * addresses that are in this MPU region.
10110                      */
10111                     if (limit >= base &&
10112                         ranges_overlap(base, limit - base + 1,
10113                                        addr_page_base,
10114                                        TARGET_PAGE_SIZE)) {
10115                         sattrs->subpage = true;
10116                     }
10117                 }
10118             }
10119         }
10120
10121         /* The IDAU will override the SAU lookup results if it specifies
10122          * higher security than the SAU does.
10123          */
10124         if (!idau_ns) {
10125             if (sattrs->ns || (!idau_nsc && sattrs->nsc)) {
10126                 sattrs->ns = false;
10127                 sattrs->nsc = idau_nsc;
10128             }
10129         }
10130         break;
10131     }
10132 }
10133
10134 static bool pmsav8_mpu_lookup(CPUARMState *env, uint32_t address,
10135                               MMUAccessType access_type, ARMMMUIdx mmu_idx,
10136                               hwaddr *phys_ptr, MemTxAttrs *txattrs,
10137                               int *prot, bool *is_subpage,
10138                               ARMMMUFaultInfo *fi, uint32_t *mregion)
10139 {
10140     /* Perform a PMSAv8 MPU lookup (without also doing the SAU check
10141      * that a full phys-to-virt translation does).
10142      * mregion is (if not NULL) set to the region number which matched,
10143      * or -1 if no region number is returned (MPU off, address did not
10144      * hit a region, address hit in multiple regions).
10145      * We set is_subpage to true if the region hit doesn't cover the
10146      * entire TARGET_PAGE the address is within.
10147      */
10148     ARMCPU *cpu = arm_env_get_cpu(env);
10149     bool is_user = regime_is_user(env, mmu_idx);
10150     uint32_t secure = regime_is_secure(env, mmu_idx);
10151     int n;
10152     int matchregion = -1;
10153     bool hit = false;
10154     uint32_t addr_page_base = address & TARGET_PAGE_MASK;
10155     uint32_t addr_page_limit = addr_page_base + (TARGET_PAGE_SIZE - 1);
10156
10157     *is_subpage = false;
10158     *phys_ptr = address;
10159     *prot = 0;
10160     if (mregion) {
10161         *mregion = -1;
10162     }
10163
10164     /* Unlike the ARM ARM pseudocode, we don't need to check whether this
10165      * was an exception vector read from the vector table (which is always
10166      * done using the default system address map), because those accesses
10167      * are done in arm_v7m_load_vector(), which always does a direct
10168      * read using address_space_ldl(), rather than going via this function.
10169      */
10170     if (regime_translation_disabled(env, mmu_idx)) { /* MPU disabled */
10171         hit = true;
10172     } else if (m_is_ppb_region(env, address)) {
10173         hit = true;
10174     } else if (pmsav7_use_background_region(cpu, mmu_idx, is_user)) {
10175         hit = true;
10176     } else {
10177         for (n = (int)cpu->pmsav7_dregion - 1; n >= 0; n--) {
10178             /* region search */
10179             /* Note that the base address is bits [31:5] from the register
10180              * with bits [4:0] all zeroes, but the limit address is bits
10181              * [31:5] from the register with bits [4:0] all ones.
10182              */
10183             uint32_t base = env->pmsav8.rbar[secure][n] & ~0x1f;
10184             uint32_t limit = env->pmsav8.rlar[secure][n] | 0x1f;
10185
10186             if (!(env->pmsav8.rlar[secure][n] & 0x1)) {
10187                 /* Region disabled */
10188                 continue;
10189             }
10190
10191             if (address < base || address > limit) {
10192                 /*
10193                  * Address not in this region. We must check whether the
10194                  * region covers addresses in the same page as our address.
10195                  * In that case we must not report a size that covers the
10196                  * whole page for a subsequent hit against a different MPU
10197                  * region or the background region, because it would result in
10198                  * incorrect TLB hits for subsequent accesses to addresses that
10199                  * are in this MPU region.
10200                  */
10201                 if (limit >= base &&
10202                     ranges_overlap(base, limit - base + 1,
10203                                    addr_page_base,
10204                                    TARGET_PAGE_SIZE)) {
10205                     *is_subpage = true;
10206                 }
10207                 continue;
10208             }
10209
10210             if (base > addr_page_base || limit < addr_page_limit) {
10211                 *is_subpage = true;
10212             }
10213
10214             if (hit) {
10215                 /* Multiple regions match -- always a failure (unlike
10216                  * PMSAv7 where highest-numbered-region wins)
10217                  */
10218                 fi->type = ARMFault_Permission;
10219                 fi->level = 1;
10220                 return true;
10221             }
10222
10223             matchregion = n;
10224             hit = true;
10225         }
10226     }
10227
10228     if (!hit) {
10229         /* background fault */
10230         fi->type = ARMFault_Background;
10231         return true;
10232     }
10233
10234     if (matchregion == -1) {
10235         /* hit using the background region */
10236         get_phys_addr_pmsav7_default(env, mmu_idx, address, prot);
10237     } else {
10238         uint32_t ap = extract32(env->pmsav8.rbar[secure][matchregion], 1, 2);
10239         uint32_t xn = extract32(env->pmsav8.rbar[secure][matchregion], 0, 1);
10240
10241         if (m_is_system_region(env, address)) {
10242             /* System space is always execute never */
10243             xn = 1;
10244         }
10245
10246         *prot = simple_ap_to_rw_prot(env, mmu_idx, ap);
10247         if (*prot && !xn) {
10248             *prot |= PAGE_EXEC;
10249         }
10250         /* We don't need to look the attribute up in the MAIR0/MAIR1
10251          * registers because that only tells us about cacheability.
10252          */
10253         if (mregion) {
10254             *mregion = matchregion;
10255         }
10256     }
10257
10258     fi->type = ARMFault_Permission;
10259     fi->level = 1;
10260     return !(*prot & (1 << access_type));
10261 }
10262
10263
10264 static bool get_phys_addr_pmsav8(CPUARMState *env, uint32_t address,
10265                                  MMUAccessType access_type, ARMMMUIdx mmu_idx,
10266                                  hwaddr *phys_ptr, MemTxAttrs *txattrs,
10267                                  int *prot, target_ulong *page_size,
10268                                  ARMMMUFaultInfo *fi)
10269 {
10270     uint32_t secure = regime_is_secure(env, mmu_idx);
10271     V8M_SAttributes sattrs = {};
10272     bool ret;
10273     bool mpu_is_subpage;
10274
10275     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
10276         v8m_security_lookup(env, address, access_type, mmu_idx, &sattrs);
10277         if (access_type == MMU_INST_FETCH) {
10278             /* Instruction fetches always use the MMU bank and the
10279              * transaction attribute determined by the fetch address,
10280              * regardless of CPU state. This is painful for QEMU
10281              * to handle, because it would mean we need to encode
10282              * into the mmu_idx not just the (user, negpri) information
10283              * for the current security state but also that for the
10284              * other security state, which would balloon the number
10285              * of mmu_idx values needed alarmingly.
10286              * Fortunately we can avoid this because it's not actually
10287              * possible to arbitrarily execute code from memory with
10288              * the wrong security attribute: it will always generate
10289              * an exception of some kind or another, apart from the
10290              * special case of an NS CPU executing an SG instruction
10291              * in S&NSC memory. So we always just fail the translation
10292              * here and sort things out in the exception handler
10293              * (including possibly emulating an SG instruction).
10294              */
10295             if (sattrs.ns != !secure) {
10296                 if (sattrs.nsc) {
10297                     fi->type = ARMFault_QEMU_NSCExec;
10298                 } else {
10299                     fi->type = ARMFault_QEMU_SFault;
10300                 }
10301                 *page_size = sattrs.subpage ? 1 : TARGET_PAGE_SIZE;
10302                 *phys_ptr = address;
10303                 *prot = 0;
10304                 return true;
10305             }
10306         } else {
10307             /* For data accesses we always use the MMU bank indicated
10308              * by the current CPU state, but the security attributes
10309              * might downgrade a secure access to nonsecure.
10310              */
10311             if (sattrs.ns) {
10312                 txattrs->secure = false;
10313             } else if (!secure) {
10314                 /* NS access to S memory must fault.
10315                  * Architecturally we should first check whether the
10316                  * MPU information for this address indicates that we
10317                  * are doing an unaligned access to Device memory, which
10318                  * should generate a UsageFault instead. QEMU does not
10319                  * currently check for that kind of unaligned access though.
10320                  * If we added it we would need to do so as a special case
10321                  * for M_FAKE_FSR_SFAULT in arm_v7m_cpu_do_interrupt().
10322                  */
10323                 fi->type = ARMFault_QEMU_SFault;
10324                 *page_size = sattrs.subpage ? 1 : TARGET_PAGE_SIZE;
10325                 *phys_ptr = address;
10326                 *prot = 0;
10327                 return true;
10328             }
10329         }
10330     }
10331
10332     ret = pmsav8_mpu_lookup(env, address, access_type, mmu_idx, phys_ptr,
10333                             txattrs, prot, &mpu_is_subpage, fi, NULL);
10334     /*
10335      * TODO: this is a temporary hack to ignore the fact that the SAU region
10336      * is smaller than a page if this is an executable region. We never
10337      * supported small MPU regions, but we did (accidentally) allow small
10338      * SAU regions, and if we now made small SAU regions not be executable
10339      * then this would break previously working guest code. We can't
10340      * remove this until/unless we implement support for execution from
10341      * small regions.
10342      */
10343     if (*prot & PAGE_EXEC) {
10344         sattrs.subpage = false;
10345     }
10346     *page_size = sattrs.subpage || mpu_is_subpage ? 1 : TARGET_PAGE_SIZE;
10347     return ret;
10348 }
10349
10350 static bool get_phys_addr_pmsav5(CPUARMState *env, uint32_t address,
10351                                  MMUAccessType access_type, ARMMMUIdx mmu_idx,
10352                                  hwaddr *phys_ptr, int *prot,
10353                                  ARMMMUFaultInfo *fi)
10354 {
10355     int n;
10356     uint32_t mask;
10357     uint32_t base;
10358     bool is_user = regime_is_user(env, mmu_idx);
10359
10360     if (regime_translation_disabled(env, mmu_idx)) {
10361         /* MPU disabled.  */
10362         *phys_ptr = address;
10363         *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
10364         return false;
10365     }
10366
10367     *phys_ptr = address;
10368     for (n = 7; n >= 0; n--) {
10369         base = env->cp15.c6_region[n];
10370         if ((base & 1) == 0) {
10371             continue;
10372         }
10373         mask = 1 << ((base >> 1) & 0x1f);
10374         /* Keep this shift separate from the above to avoid an
10375            (undefined) << 32.  */
10376         mask = (mask << 1) - 1;
10377         if (((base ^ address) & ~mask) == 0) {
10378             break;
10379         }
10380     }
10381     if (n < 0) {
10382         fi->type = ARMFault_Background;
10383         return true;
10384     }
10385
10386     if (access_type == MMU_INST_FETCH) {
10387         mask = env->cp15.pmsav5_insn_ap;
10388     } else {
10389         mask = env->cp15.pmsav5_data_ap;
10390     }
10391     mask = (mask >> (n * 4)) & 0xf;
10392     switch (mask) {
10393     case 0:
10394         fi->type = ARMFault_Permission;
10395         fi->level = 1;
10396         return true;
10397     case 1:
10398         if (is_user) {
10399             fi->type = ARMFault_Permission;
10400             fi->level = 1;
10401             return true;
10402         }
10403         *prot = PAGE_READ | PAGE_WRITE;
10404         break;
10405     case 2:
10406         *prot = PAGE_READ;
10407         if (!is_user) {
10408             *prot |= PAGE_WRITE;
10409         }
10410         break;
10411     case 3:
10412         *prot = PAGE_READ | PAGE_WRITE;
10413         break;
10414     case 5:
10415         if (is_user) {
10416             fi->type = ARMFault_Permission;
10417             fi->level = 1;
10418             return true;
10419         }
10420         *prot = PAGE_READ;
10421         break;
10422     case 6:
10423         *prot = PAGE_READ;
10424         break;
10425     default:
10426         /* Bad permission.  */
10427         fi->type = ARMFault_Permission;
10428         fi->level = 1;
10429         return true;
10430     }
10431     *prot |= PAGE_EXEC;
10432     return false;
10433 }
10434
10435 /* Combine either inner or outer cacheability attributes for normal
10436  * memory, according to table D4-42 and pseudocode procedure
10437  * CombineS1S2AttrHints() of ARM DDI 0487B.b (the ARMv8 ARM).
10438  *
10439  * NB: only stage 1 includes allocation hints (RW bits), leading to
10440  * some asymmetry.
10441  */
10442 static uint8_t combine_cacheattr_nibble(uint8_t s1, uint8_t s2)
10443 {
10444     if (s1 == 4 || s2 == 4) {
10445         /* non-cacheable has precedence */
10446         return 4;
10447     } else if (extract32(s1, 2, 2) == 0 || extract32(s1, 2, 2) == 2) {
10448         /* stage 1 write-through takes precedence */
10449         return s1;
10450     } else if (extract32(s2, 2, 2) == 2) {
10451         /* stage 2 write-through takes precedence, but the allocation hint
10452          * is still taken from stage 1
10453          */
10454         return (2 << 2) | extract32(s1, 0, 2);
10455     } else { /* write-back */
10456         return s1;
10457     }
10458 }
10459
10460 /* Combine S1 and S2 cacheability/shareability attributes, per D4.5.4
10461  * and CombineS1S2Desc()
10462  *
10463  * @s1:      Attributes from stage 1 walk
10464  * @s2:      Attributes from stage 2 walk
10465  */
10466 static ARMCacheAttrs combine_cacheattrs(ARMCacheAttrs s1, ARMCacheAttrs s2)
10467 {
10468     uint8_t s1lo = extract32(s1.attrs, 0, 4), s2lo = extract32(s2.attrs, 0, 4);
10469     uint8_t s1hi = extract32(s1.attrs, 4, 4), s2hi = extract32(s2.attrs, 4, 4);
10470     ARMCacheAttrs ret;
10471
10472     /* Combine shareability attributes (table D4-43) */
10473     if (s1.shareability == 2 || s2.shareability == 2) {
10474         /* if either are outer-shareable, the result is outer-shareable */
10475         ret.shareability = 2;
10476     } else if (s1.shareability == 3 || s2.shareability == 3) {
10477         /* if either are inner-shareable, the result is inner-shareable */
10478         ret.shareability = 3;
10479     } else {
10480         /* both non-shareable */
10481         ret.shareability = 0;
10482     }
10483
10484     /* Combine memory type and cacheability attributes */
10485     if (s1hi == 0 || s2hi == 0) {
10486         /* Device has precedence over normal */
10487         if (s1lo == 0 || s2lo == 0) {
10488             /* nGnRnE has precedence over anything */
10489             ret.attrs = 0;
10490         } else if (s1lo == 4 || s2lo == 4) {
10491             /* non-Reordering has precedence over Reordering */
10492             ret.attrs = 4;  /* nGnRE */
10493         } else if (s1lo == 8 || s2lo == 8) {
10494             /* non-Gathering has precedence over Gathering */
10495             ret.attrs = 8;  /* nGRE */
10496         } else {
10497             ret.attrs = 0xc; /* GRE */
10498         }
10499
10500         /* Any location for which the resultant memory type is any
10501          * type of Device memory is always treated as Outer Shareable.
10502          */
10503         ret.shareability = 2;
10504     } else { /* Normal memory */
10505         /* Outer/inner cacheability combine independently */
10506         ret.attrs = combine_cacheattr_nibble(s1hi, s2hi) << 4
10507                   | combine_cacheattr_nibble(s1lo, s2lo);
10508
10509         if (ret.attrs == 0x44) {
10510             /* Any location for which the resultant memory type is Normal
10511              * Inner Non-cacheable, Outer Non-cacheable is always treated
10512              * as Outer Shareable.
10513              */
10514             ret.shareability = 2;
10515         }
10516     }
10517
10518     return ret;
10519 }
10520
10521
10522 /* get_phys_addr - get the physical address for this virtual address
10523  *
10524  * Find the physical address corresponding to the given virtual address,
10525  * by doing a translation table walk on MMU based systems or using the
10526  * MPU state on MPU based systems.
10527  *
10528  * Returns false if the translation was successful. Otherwise, phys_ptr, attrs,
10529  * prot and page_size may not be filled in, and the populated fsr value provides
10530  * information on why the translation aborted, in the format of a
10531  * DFSR/IFSR fault register, with the following caveats:
10532  *  * we honour the short vs long DFSR format differences.
10533  *  * the WnR bit is never set (the caller must do this).
10534  *  * for PSMAv5 based systems we don't bother to return a full FSR format
10535  *    value.
10536  *
10537  * @env: CPUARMState
10538  * @address: virtual address to get physical address for
10539  * @access_type: 0 for read, 1 for write, 2 for execute
10540  * @mmu_idx: MMU index indicating required translation regime
10541  * @phys_ptr: set to the physical address corresponding to the virtual address
10542  * @attrs: set to the memory transaction attributes to use
10543  * @prot: set to the permissions for the page containing phys_ptr
10544  * @page_size: set to the size of the page containing phys_ptr
10545  * @fi: set to fault info if the translation fails
10546  * @cacheattrs: (if non-NULL) set to the cacheability/shareability attributes
10547  */
10548 static bool get_phys_addr(CPUARMState *env, target_ulong address,
10549                           MMUAccessType access_type, ARMMMUIdx mmu_idx,
10550                           hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
10551                           target_ulong *page_size,
10552                           ARMMMUFaultInfo *fi, ARMCacheAttrs *cacheattrs)
10553 {
10554     if (mmu_idx == ARMMMUIdx_S12NSE0 || mmu_idx == ARMMMUIdx_S12NSE1) {
10555         /* Call ourselves recursively to do the stage 1 and then stage 2
10556          * translations.
10557          */
10558         if (arm_feature(env, ARM_FEATURE_EL2)) {
10559             hwaddr ipa;
10560             int s2_prot;
10561             int ret;
10562             ARMCacheAttrs cacheattrs2 = {};
10563
10564             ret = get_phys_addr(env, address, access_type,
10565                                 stage_1_mmu_idx(mmu_idx), &ipa, attrs,
10566                                 prot, page_size, fi, cacheattrs);
10567
10568             /* If S1 fails or S2 is disabled, return early.  */
10569             if (ret || regime_translation_disabled(env, ARMMMUIdx_S2NS)) {
10570                 *phys_ptr = ipa;
10571                 return ret;
10572             }
10573
10574             /* S1 is done. Now do S2 translation.  */
10575             ret = get_phys_addr_lpae(env, ipa, access_type, ARMMMUIdx_S2NS,
10576                                      phys_ptr, attrs, &s2_prot,
10577                                      page_size, fi,
10578                                      cacheattrs != NULL ? &cacheattrs2 : NULL);
10579             fi->s2addr = ipa;
10580             /* Combine the S1 and S2 perms.  */
10581             *prot &= s2_prot;
10582
10583             /* Combine the S1 and S2 cache attributes, if needed */
10584             if (!ret && cacheattrs != NULL) {
10585                 *cacheattrs = combine_cacheattrs(*cacheattrs, cacheattrs2);
10586             }
10587
10588             return ret;
10589         } else {
10590             /*
10591              * For non-EL2 CPUs a stage1+stage2 translation is just stage 1.
10592              */
10593             mmu_idx = stage_1_mmu_idx(mmu_idx);
10594         }
10595     }
10596
10597     /* The page table entries may downgrade secure to non-secure, but
10598      * cannot upgrade an non-secure translation regime's attributes
10599      * to secure.
10600      */
10601     attrs->secure = regime_is_secure(env, mmu_idx);
10602     attrs->user = regime_is_user(env, mmu_idx);
10603
10604     /* Fast Context Switch Extension. This doesn't exist at all in v8.
10605      * In v7 and earlier it affects all stage 1 translations.
10606      */
10607     if (address < 0x02000000 && mmu_idx != ARMMMUIdx_S2NS
10608         && !arm_feature(env, ARM_FEATURE_V8)) {
10609         if (regime_el(env, mmu_idx) == 3) {
10610             address += env->cp15.fcseidr_s;
10611         } else {
10612             address += env->cp15.fcseidr_ns;
10613         }
10614     }
10615
10616     if (arm_feature(env, ARM_FEATURE_PMSA)) {
10617         bool ret;
10618         *page_size = TARGET_PAGE_SIZE;
10619
10620         if (arm_feature(env, ARM_FEATURE_V8)) {
10621             /* PMSAv8 */
10622             ret = get_phys_addr_pmsav8(env, address, access_type, mmu_idx,
10623                                        phys_ptr, attrs, prot, page_size, fi);
10624         } else if (arm_feature(env, ARM_FEATURE_V7)) {
10625             /* PMSAv7 */
10626             ret = get_phys_addr_pmsav7(env, address, access_type, mmu_idx,
10627                                        phys_ptr, prot, page_size, fi);
10628         } else {
10629             /* Pre-v7 MPU */
10630             ret = get_phys_addr_pmsav5(env, address, access_type, mmu_idx,
10631                                        phys_ptr, prot, fi);
10632         }
10633         qemu_log_mask(CPU_LOG_MMU, "PMSA MPU lookup for %s at 0x%08" PRIx32
10634                       " mmu_idx %u -> %s (prot %c%c%c)\n",
10635                       access_type == MMU_DATA_LOAD ? "reading" :
10636                       (access_type == MMU_DATA_STORE ? "writing" : "execute"),
10637                       (uint32_t)address, mmu_idx,
10638                       ret ? "Miss" : "Hit",
10639                       *prot & PAGE_READ ? 'r' : '-',
10640                       *prot & PAGE_WRITE ? 'w' : '-',
10641                       *prot & PAGE_EXEC ? 'x' : '-');
10642
10643         return ret;
10644     }
10645
10646     /* Definitely a real MMU, not an MPU */
10647
10648     if (regime_translation_disabled(env, mmu_idx)) {
10649         /* MMU disabled. */
10650         *phys_ptr = address;
10651         *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
10652         *page_size = TARGET_PAGE_SIZE;
10653         return 0;
10654     }
10655
10656     if (regime_using_lpae_format(env, mmu_idx)) {
10657         return get_phys_addr_lpae(env, address, access_type, mmu_idx,
10658                                   phys_ptr, attrs, prot, page_size,
10659                                   fi, cacheattrs);
10660     } else if (regime_sctlr(env, mmu_idx) & SCTLR_XP) {
10661         return get_phys_addr_v6(env, address, access_type, mmu_idx,
10662                                 phys_ptr, attrs, prot, page_size, fi);
10663     } else {
10664         return get_phys_addr_v5(env, address, access_type, mmu_idx,
10665                                     phys_ptr, prot, page_size, fi);
10666     }
10667 }
10668
10669 /* Walk the page table and (if the mapping exists) add the page
10670  * to the TLB. Return false on success, or true on failure. Populate
10671  * fsr with ARM DFSR/IFSR fault register format value on failure.
10672  */
10673 bool arm_tlb_fill(CPUState *cs, vaddr address,
10674                   MMUAccessType access_type, int mmu_idx,
10675                   ARMMMUFaultInfo *fi)
10676 {
10677     ARMCPU *cpu = ARM_CPU(cs);
10678     CPUARMState *env = &cpu->env;
10679     hwaddr phys_addr;
10680     target_ulong page_size;
10681     int prot;
10682     int ret;
10683     MemTxAttrs attrs = {};
10684
10685     ret = get_phys_addr(env, address, access_type,
10686                         core_to_arm_mmu_idx(env, mmu_idx), &phys_addr,
10687                         &attrs, &prot, &page_size, fi, NULL);
10688     if (!ret) {
10689         /*
10690          * Map a single [sub]page. Regions smaller than our declared
10691          * target page size are handled specially, so for those we
10692          * pass in the exact addresses.
10693          */
10694         if (page_size >= TARGET_PAGE_SIZE) {
10695             phys_addr &= TARGET_PAGE_MASK;
10696             address &= TARGET_PAGE_MASK;
10697         }
10698         tlb_set_page_with_attrs(cs, address, phys_addr, attrs,
10699                                 prot, mmu_idx, page_size);
10700         return 0;
10701     }
10702
10703     return ret;
10704 }
10705
10706 hwaddr arm_cpu_get_phys_page_attrs_debug(CPUState *cs, vaddr addr,
10707                                          MemTxAttrs *attrs)
10708 {
10709     ARMCPU *cpu = ARM_CPU(cs);
10710     CPUARMState *env = &cpu->env;
10711     hwaddr phys_addr;
10712     target_ulong page_size;
10713     int prot;
10714     bool ret;
10715     ARMMMUFaultInfo fi = {};
10716     ARMMMUIdx mmu_idx = core_to_arm_mmu_idx(env, cpu_mmu_index(env, false));
10717
10718     *attrs = (MemTxAttrs) {};
10719
10720     ret = get_phys_addr(env, addr, 0, mmu_idx, &phys_addr,
10721                         attrs, &prot, &page_size, &fi, NULL);
10722
10723     if (ret) {
10724         return -1;
10725     }
10726     return phys_addr;
10727 }
10728
10729 uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
10730 {
10731     uint32_t mask;
10732     unsigned el = arm_current_el(env);
10733
10734     /* First handle registers which unprivileged can read */
10735
10736     switch (reg) {
10737     case 0 ... 7: /* xPSR sub-fields */
10738         mask = 0;
10739         if ((reg & 1) && el) {
10740             mask |= XPSR_EXCP; /* IPSR (unpriv. reads as zero) */
10741         }
10742         if (!(reg & 4)) {
10743             mask |= XPSR_NZCV | XPSR_Q; /* APSR */
10744         }
10745         /* EPSR reads as zero */
10746         return xpsr_read(env) & mask;
10747         break;
10748     case 20: /* CONTROL */
10749         return env->v7m.control[env->v7m.secure];
10750     case 0x94: /* CONTROL_NS */
10751         /* We have to handle this here because unprivileged Secure code
10752          * can read the NS CONTROL register.
10753          */
10754         if (!env->v7m.secure) {
10755             return 0;
10756         }
10757         return env->v7m.control[M_REG_NS];
10758     }
10759
10760     if (el == 0) {
10761         return 0; /* unprivileged reads others as zero */
10762     }
10763
10764     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
10765         switch (reg) {
10766         case 0x88: /* MSP_NS */
10767             if (!env->v7m.secure) {
10768                 return 0;
10769             }
10770             return env->v7m.other_ss_msp;
10771         case 0x89: /* PSP_NS */
10772             if (!env->v7m.secure) {
10773                 return 0;
10774             }
10775             return env->v7m.other_ss_psp;
10776         case 0x8a: /* MSPLIM_NS */
10777             if (!env->v7m.secure) {
10778                 return 0;
10779             }
10780             return env->v7m.msplim[M_REG_NS];
10781         case 0x8b: /* PSPLIM_NS */
10782             if (!env->v7m.secure) {
10783                 return 0;
10784             }
10785             return env->v7m.psplim[M_REG_NS];
10786         case 0x90: /* PRIMASK_NS */
10787             if (!env->v7m.secure) {
10788                 return 0;
10789             }
10790             return env->v7m.primask[M_REG_NS];
10791         case 0x91: /* BASEPRI_NS */
10792             if (!env->v7m.secure) {
10793                 return 0;
10794             }
10795             return env->v7m.basepri[M_REG_NS];
10796         case 0x93: /* FAULTMASK_NS */
10797             if (!env->v7m.secure) {
10798                 return 0;
10799             }
10800             return env->v7m.faultmask[M_REG_NS];
10801         case 0x98: /* SP_NS */
10802         {
10803             /* This gives the non-secure SP selected based on whether we're
10804              * currently in handler mode or not, using the NS CONTROL.SPSEL.
10805              */
10806             bool spsel = env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK;
10807
10808             if (!env->v7m.secure) {
10809                 return 0;
10810             }
10811             if (!arm_v7m_is_handler_mode(env) && spsel) {
10812                 return env->v7m.other_ss_psp;
10813             } else {
10814                 return env->v7m.other_ss_msp;
10815             }
10816         }
10817         default:
10818             break;
10819         }
10820     }
10821
10822     switch (reg) {
10823     case 8: /* MSP */
10824         return v7m_using_psp(env) ? env->v7m.other_sp : env->regs[13];
10825     case 9: /* PSP */
10826         return v7m_using_psp(env) ? env->regs[13] : env->v7m.other_sp;
10827     case 10: /* MSPLIM */
10828         if (!arm_feature(env, ARM_FEATURE_V8)) {
10829             goto bad_reg;
10830         }
10831         return env->v7m.msplim[env->v7m.secure];
10832     case 11: /* PSPLIM */
10833         if (!arm_feature(env, ARM_FEATURE_V8)) {
10834             goto bad_reg;
10835         }
10836         return env->v7m.psplim[env->v7m.secure];
10837     case 16: /* PRIMASK */
10838         return env->v7m.primask[env->v7m.secure];
10839     case 17: /* BASEPRI */
10840     case 18: /* BASEPRI_MAX */
10841         return env->v7m.basepri[env->v7m.secure];
10842     case 19: /* FAULTMASK */
10843         return env->v7m.faultmask[env->v7m.secure];
10844     default:
10845     bad_reg:
10846         qemu_log_mask(LOG_GUEST_ERROR, "Attempt to read unknown special"
10847                                        " register %d\n", reg);
10848         return 0;
10849     }
10850 }
10851
10852 void HELPER(v7m_msr)(CPUARMState *env, uint32_t maskreg, uint32_t val)
10853 {
10854     /* We're passed bits [11..0] of the instruction; extract
10855      * SYSm and the mask bits.
10856      * Invalid combinations of SYSm and mask are UNPREDICTABLE;
10857      * we choose to treat them as if the mask bits were valid.
10858      * NB that the pseudocode 'mask' variable is bits [11..10],
10859      * whereas ours is [11..8].
10860      */
10861     uint32_t mask = extract32(maskreg, 8, 4);
10862     uint32_t reg = extract32(maskreg, 0, 8);
10863
10864     if (arm_current_el(env) == 0 && reg > 7) {
10865         /* only xPSR sub-fields may be written by unprivileged */
10866         return;
10867     }
10868
10869     if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
10870         switch (reg) {
10871         case 0x88: /* MSP_NS */
10872             if (!env->v7m.secure) {
10873                 return;
10874             }
10875             env->v7m.other_ss_msp = val;
10876             return;
10877         case 0x89: /* PSP_NS */
10878             if (!env->v7m.secure) {
10879                 return;
10880             }
10881             env->v7m.other_ss_psp = val;
10882             return;
10883         case 0x8a: /* MSPLIM_NS */
10884             if (!env->v7m.secure) {
10885                 return;
10886             }
10887             env->v7m.msplim[M_REG_NS] = val & ~7;
10888             return;
10889         case 0x8b: /* PSPLIM_NS */
10890             if (!env->v7m.secure) {
10891                 return;
10892             }
10893             env->v7m.psplim[M_REG_NS] = val & ~7;
10894             return;
10895         case 0x90: /* PRIMASK_NS */
10896             if (!env->v7m.secure) {
10897                 return;
10898             }
10899             env->v7m.primask[M_REG_NS] = val & 1;
10900             return;
10901         case 0x91: /* BASEPRI_NS */
10902             if (!env->v7m.secure || !arm_feature(env, ARM_FEATURE_M_MAIN)) {
10903                 return;
10904             }
10905             env->v7m.basepri[M_REG_NS] = val & 0xff;
10906             return;
10907         case 0x93: /* FAULTMASK_NS */
10908             if (!env->v7m.secure || !arm_feature(env, ARM_FEATURE_M_MAIN)) {
10909                 return;
10910             }
10911             env->v7m.faultmask[M_REG_NS] = val & 1;
10912             return;
10913         case 0x94: /* CONTROL_NS */
10914             if (!env->v7m.secure) {
10915                 return;
10916             }
10917             write_v7m_control_spsel_for_secstate(env,
10918                                                  val & R_V7M_CONTROL_SPSEL_MASK,
10919                                                  M_REG_NS);
10920             if (arm_feature(env, ARM_FEATURE_M_MAIN)) {
10921                 env->v7m.control[M_REG_NS] &= ~R_V7M_CONTROL_NPRIV_MASK;
10922                 env->v7m.control[M_REG_NS] |= val & R_V7M_CONTROL_NPRIV_MASK;
10923             }
10924             return;
10925         case 0x98: /* SP_NS */
10926         {
10927             /* This gives the non-secure SP selected based on whether we're
10928              * currently in handler mode or not, using the NS CONTROL.SPSEL.
10929              */
10930             bool spsel = env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK;
10931
10932             if (!env->v7m.secure) {
10933                 return;
10934             }
10935             if (!arm_v7m_is_handler_mode(env) && spsel) {
10936                 env->v7m.other_ss_psp = val;
10937             } else {
10938                 env->v7m.other_ss_msp = val;
10939             }
10940             return;
10941         }
10942         default:
10943             break;
10944         }
10945     }
10946
10947     switch (reg) {
10948     case 0 ... 7: /* xPSR sub-fields */
10949         /* only APSR is actually writable */
10950         if (!(reg & 4)) {
10951             uint32_t apsrmask = 0;
10952
10953             if (mask & 8) {
10954                 apsrmask |= XPSR_NZCV | XPSR_Q;
10955             }
10956             if ((mask & 4) && arm_feature(env, ARM_FEATURE_THUMB_DSP)) {
10957                 apsrmask |= XPSR_GE;
10958             }
10959             xpsr_write(env, val, apsrmask);
10960         }
10961         break;
10962     case 8: /* MSP */
10963         if (v7m_using_psp(env)) {
10964             env->v7m.other_sp = val;
10965         } else {
10966             env->regs[13] = val;
10967         }
10968         break;
10969     case 9: /* PSP */
10970         if (v7m_using_psp(env)) {
10971             env->regs[13] = val;
10972         } else {
10973             env->v7m.other_sp = val;
10974         }
10975         break;
10976     case 10: /* MSPLIM */
10977         if (!arm_feature(env, ARM_FEATURE_V8)) {
10978             goto bad_reg;
10979         }
10980         env->v7m.msplim[env->v7m.secure] = val & ~7;
10981         break;
10982     case 11: /* PSPLIM */
10983         if (!arm_feature(env, ARM_FEATURE_V8)) {
10984             goto bad_reg;
10985         }
10986         env->v7m.psplim[env->v7m.secure] = val & ~7;
10987         break;
10988     case 16: /* PRIMASK */
10989         env->v7m.primask[env->v7m.secure] = val & 1;
10990         break;
10991     case 17: /* BASEPRI */
10992         if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
10993             goto bad_reg;
10994         }
10995         env->v7m.basepri[env->v7m.secure] = val & 0xff;
10996         break;
10997     case 18: /* BASEPRI_MAX */
10998         if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
10999             goto bad_reg;
11000         }
11001         val &= 0xff;
11002         if (val != 0 && (val < env->v7m.basepri[env->v7m.secure]
11003                          || env->v7m.basepri[env->v7m.secure] == 0)) {
11004             env->v7m.basepri[env->v7m.secure] = val;
11005         }
11006         break;
11007     case 19: /* FAULTMASK */
11008         if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
11009             goto bad_reg;
11010         }
11011         env->v7m.faultmask[env->v7m.secure] = val & 1;
11012         break;
11013     case 20: /* CONTROL */
11014         /* Writing to the SPSEL bit only has an effect if we are in
11015          * thread mode; other bits can be updated by any privileged code.
11016          * write_v7m_control_spsel() deals with updating the SPSEL bit in
11017          * env->v7m.control, so we only need update the others.
11018          * For v7M, we must just ignore explicit writes to SPSEL in handler
11019          * mode; for v8M the write is permitted but will have no effect.
11020          */
11021         if (arm_feature(env, ARM_FEATURE_V8) ||
11022             !arm_v7m_is_handler_mode(env)) {
11023             write_v7m_control_spsel(env, (val & R_V7M_CONTROL_SPSEL_MASK) != 0);
11024         }
11025         if (arm_feature(env, ARM_FEATURE_M_MAIN)) {
11026             env->v7m.control[env->v7m.secure] &= ~R_V7M_CONTROL_NPRIV_MASK;
11027             env->v7m.control[env->v7m.secure] |= val & R_V7M_CONTROL_NPRIV_MASK;
11028         }
11029         break;
11030     default:
11031     bad_reg:
11032         qemu_log_mask(LOG_GUEST_ERROR, "Attempt to write unknown special"
11033                                        " register %d\n", reg);
11034         return;
11035     }
11036 }
11037
11038 uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op)
11039 {
11040     /* Implement the TT instruction. op is bits [7:6] of the insn. */
11041     bool forceunpriv = op & 1;
11042     bool alt = op & 2;
11043     V8M_SAttributes sattrs = {};
11044     uint32_t tt_resp;
11045     bool r, rw, nsr, nsrw, mrvalid;
11046     int prot;
11047     ARMMMUFaultInfo fi = {};
11048     MemTxAttrs attrs = {};
11049     hwaddr phys_addr;
11050     ARMMMUIdx mmu_idx;
11051     uint32_t mregion;
11052     bool targetpriv;
11053     bool targetsec = env->v7m.secure;
11054     bool is_subpage;
11055
11056     /* Work out what the security state and privilege level we're
11057      * interested in is...
11058      */
11059     if (alt) {
11060         targetsec = !targetsec;
11061     }
11062
11063     if (forceunpriv) {
11064         targetpriv = false;
11065     } else {
11066         targetpriv = arm_v7m_is_handler_mode(env) ||
11067             !(env->v7m.control[targetsec] & R_V7M_CONTROL_NPRIV_MASK);
11068     }
11069
11070     /* ...and then figure out which MMU index this is */
11071     mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, targetsec, targetpriv);
11072
11073     /* We know that the MPU and SAU don't care about the access type
11074      * for our purposes beyond that we don't want to claim to be
11075      * an insn fetch, so we arbitrarily call this a read.
11076      */
11077
11078     /* MPU region info only available for privileged or if
11079      * inspecting the other MPU state.
11080      */
11081     if (arm_current_el(env) != 0 || alt) {
11082         /* We can ignore the return value as prot is always set */
11083         pmsav8_mpu_lookup(env, addr, MMU_DATA_LOAD, mmu_idx,
11084                           &phys_addr, &attrs, &prot, &is_subpage,
11085                           &fi, &mregion);
11086         if (mregion == -1) {
11087             mrvalid = false;
11088             mregion = 0;
11089         } else {
11090             mrvalid = true;
11091         }
11092         r = prot & PAGE_READ;
11093         rw = prot & PAGE_WRITE;
11094     } else {
11095         r = false;
11096         rw = false;
11097         mrvalid = false;
11098         mregion = 0;
11099     }
11100
11101     if (env->v7m.secure) {
11102         v8m_security_lookup(env, addr, MMU_DATA_LOAD, mmu_idx, &sattrs);
11103         nsr = sattrs.ns && r;
11104         nsrw = sattrs.ns && rw;
11105     } else {
11106         sattrs.ns = true;
11107         nsr = false;
11108         nsrw = false;
11109     }
11110
11111     tt_resp = (sattrs.iregion << 24) |
11112         (sattrs.irvalid << 23) |
11113         ((!sattrs.ns) << 22) |
11114         (nsrw << 21) |
11115         (nsr << 20) |
11116         (rw << 19) |
11117         (r << 18) |
11118         (sattrs.srvalid << 17) |
11119         (mrvalid << 16) |
11120         (sattrs.sregion << 8) |
11121         mregion;
11122
11123     return tt_resp;
11124 }
11125
11126 #endif
11127
11128 void HELPER(dc_zva)(CPUARMState *env, uint64_t vaddr_in)
11129 {
11130     /* Implement DC ZVA, which zeroes a fixed-length block of memory.
11131      * Note that we do not implement the (architecturally mandated)
11132      * alignment fault for attempts to use this on Device memory
11133      * (which matches the usual QEMU behaviour of not implementing either
11134      * alignment faults or any memory attribute handling).
11135      */
11136
11137     ARMCPU *cpu = arm_env_get_cpu(env);
11138     uint64_t blocklen = 4 << cpu->dcz_blocksize;
11139     uint64_t vaddr = vaddr_in & ~(blocklen - 1);
11140
11141 #ifndef CONFIG_USER_ONLY
11142     {
11143         /* Slightly awkwardly, QEMU's TARGET_PAGE_SIZE may be less than
11144          * the block size so we might have to do more than one TLB lookup.
11145          * We know that in fact for any v8 CPU the page size is at least 4K
11146          * and the block size must be 2K or less, but TARGET_PAGE_SIZE is only
11147          * 1K as an artefact of legacy v5 subpage support being present in the
11148          * same QEMU executable.
11149          */
11150         int maxidx = DIV_ROUND_UP(blocklen, TARGET_PAGE_SIZE);
11151         void *hostaddr[maxidx];
11152         int try, i;
11153         unsigned mmu_idx = cpu_mmu_index(env, false);
11154         TCGMemOpIdx oi = make_memop_idx(MO_UB, mmu_idx);
11155
11156         for (try = 0; try < 2; try++) {
11157
11158             for (i = 0; i < maxidx; i++) {
11159                 hostaddr[i] = tlb_vaddr_to_host(env,
11160                                                 vaddr + TARGET_PAGE_SIZE * i,
11161                                                 1, mmu_idx);
11162                 if (!hostaddr[i]) {
11163                     break;
11164                 }
11165             }
11166             if (i == maxidx) {
11167                 /* If it's all in the TLB it's fair game for just writing to;
11168                  * we know we don't need to update dirty status, etc.
11169                  */
11170                 for (i = 0; i < maxidx - 1; i++) {
11171                     memset(hostaddr[i], 0, TARGET_PAGE_SIZE);
11172                 }
11173                 memset(hostaddr[i], 0, blocklen - (i * TARGET_PAGE_SIZE));
11174                 return;
11175             }
11176             /* OK, try a store and see if we can populate the tlb. This
11177              * might cause an exception if the memory isn't writable,
11178              * in which case we will longjmp out of here. We must for
11179              * this purpose use the actual register value passed to us
11180              * so that we get the fault address right.
11181              */
11182             helper_ret_stb_mmu(env, vaddr_in, 0, oi, GETPC());
11183             /* Now we can populate the other TLB entries, if any */
11184             for (i = 0; i < maxidx; i++) {
11185                 uint64_t va = vaddr + TARGET_PAGE_SIZE * i;
11186                 if (va != (vaddr_in & TARGET_PAGE_MASK)) {
11187                     helper_ret_stb_mmu(env, va, 0, oi, GETPC());
11188                 }
11189             }
11190         }
11191
11192         /* Slow path (probably attempt to do this to an I/O device or
11193          * similar, or clearing of a block of code we have translations
11194          * cached for). Just do a series of byte writes as the architecture
11195          * demands. It's not worth trying to use a cpu_physical_memory_map(),
11196          * memset(), unmap() sequence here because:
11197          *  + we'd need to account for the blocksize being larger than a page
11198          *  + the direct-RAM access case is almost always going to be dealt
11199          *    with in the fastpath code above, so there's no speed benefit
11200          *  + we would have to deal with the map returning NULL because the
11201          *    bounce buffer was in use
11202          */
11203         for (i = 0; i < blocklen; i++) {
11204             helper_ret_stb_mmu(env, vaddr + i, 0, oi, GETPC());
11205         }
11206     }
11207 #else
11208     memset(g2h(vaddr), 0, blocklen);
11209 #endif
11210 }
11211
11212 /* Note that signed overflow is undefined in C.  The following routines are
11213    careful to use unsigned types where modulo arithmetic is required.
11214    Failure to do so _will_ break on newer gcc.  */
11215
11216 /* Signed saturating arithmetic.  */
11217
11218 /* Perform 16-bit signed saturating addition.  */
11219 static inline uint16_t add16_sat(uint16_t a, uint16_t b)
11220 {
11221     uint16_t res;
11222
11223     res = a + b;
11224     if (((res ^ a) & 0x8000) && !((a ^ b) & 0x8000)) {
11225         if (a & 0x8000)
11226             res = 0x8000;
11227         else
11228             res = 0x7fff;
11229     }
11230     return res;
11231 }
11232
11233 /* Perform 8-bit signed saturating addition.  */
11234 static inline uint8_t add8_sat(uint8_t a, uint8_t b)
11235 {
11236     uint8_t res;
11237
11238     res = a + b;
11239     if (((res ^ a) & 0x80) && !((a ^ b) & 0x80)) {
11240         if (a & 0x80)
11241             res = 0x80;
11242         else
11243             res = 0x7f;
11244     }
11245     return res;
11246 }
11247
11248 /* Perform 16-bit signed saturating subtraction.  */
11249 static inline uint16_t sub16_sat(uint16_t a, uint16_t b)
11250 {
11251     uint16_t res;
11252
11253     res = a - b;
11254     if (((res ^ a) & 0x8000) && ((a ^ b) & 0x8000)) {
11255         if (a & 0x8000)
11256             res = 0x8000;
11257         else
11258             res = 0x7fff;
11259     }
11260     return res;
11261 }
11262
11263 /* Perform 8-bit signed saturating subtraction.  */
11264 static inline uint8_t sub8_sat(uint8_t a, uint8_t b)
11265 {
11266     uint8_t res;
11267
11268     res = a - b;
11269     if (((res ^ a) & 0x80) && ((a ^ b) & 0x80)) {
11270         if (a & 0x80)
11271             res = 0x80;
11272         else
11273             res = 0x7f;
11274     }
11275     return res;
11276 }
11277
11278 #define ADD16(a, b, n) RESULT(add16_sat(a, b), n, 16);
11279 #define SUB16(a, b, n) RESULT(sub16_sat(a, b), n, 16);
11280 #define ADD8(a, b, n)  RESULT(add8_sat(a, b), n, 8);
11281 #define SUB8(a, b, n)  RESULT(sub8_sat(a, b), n, 8);
11282 #define PFX q
11283
11284 #include "op_addsub.h"
11285
11286 /* Unsigned saturating arithmetic.  */
11287 static inline uint16_t add16_usat(uint16_t a, uint16_t b)
11288 {
11289     uint16_t res;
11290     res = a + b;
11291     if (res < a)
11292         res = 0xffff;
11293     return res;
11294 }
11295
11296 static inline uint16_t sub16_usat(uint16_t a, uint16_t b)
11297 {
11298     if (a > b)
11299         return a - b;
11300     else
11301         return 0;
11302 }
11303
11304 static inline uint8_t add8_usat(uint8_t a, uint8_t b)
11305 {
11306     uint8_t res;
11307     res = a + b;
11308     if (res < a)
11309         res = 0xff;
11310     return res;
11311 }
11312
11313 static inline uint8_t sub8_usat(uint8_t a, uint8_t b)
11314 {
11315     if (a > b)
11316         return a - b;
11317     else
11318         return 0;
11319 }
11320
11321 #define ADD16(a, b, n) RESULT(add16_usat(a, b), n, 16);
11322 #define SUB16(a, b, n) RESULT(sub16_usat(a, b), n, 16);
11323 #define ADD8(a, b, n)  RESULT(add8_usat(a, b), n, 8);
11324 #define SUB8(a, b, n)  RESULT(sub8_usat(a, b), n, 8);
11325 #define PFX uq
11326
11327 #include "op_addsub.h"
11328
11329 /* Signed modulo arithmetic.  */
11330 #define SARITH16(a, b, n, op) do { \
11331     int32_t sum; \
11332     sum = (int32_t)(int16_t)(a) op (int32_t)(int16_t)(b); \
11333     RESULT(sum, n, 16); \
11334     if (sum >= 0) \
11335         ge |= 3 << (n * 2); \
11336     } while(0)
11337
11338 #define SARITH8(a, b, n, op) do { \
11339     int32_t sum; \
11340     sum = (int32_t)(int8_t)(a) op (int32_t)(int8_t)(b); \
11341     RESULT(sum, n, 8); \
11342     if (sum >= 0) \
11343         ge |= 1 << n; \
11344     } while(0)
11345
11346
11347 #define ADD16(a, b, n) SARITH16(a, b, n, +)
11348 #define SUB16(a, b, n) SARITH16(a, b, n, -)
11349 #define ADD8(a, b, n)  SARITH8(a, b, n, +)
11350 #define SUB8(a, b, n)  SARITH8(a, b, n, -)
11351 #define PFX s
11352 #define ARITH_GE
11353
11354 #include "op_addsub.h"
11355
11356 /* Unsigned modulo arithmetic.  */
11357 #define ADD16(a, b, n) do { \
11358     uint32_t sum; \
11359     sum = (uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b); \
11360     RESULT(sum, n, 16); \
11361     if ((sum >> 16) == 1) \
11362         ge |= 3 << (n * 2); \
11363     } while(0)
11364
11365 #define ADD8(a, b, n) do { \
11366     uint32_t sum; \
11367     sum = (uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b); \
11368     RESULT(sum, n, 8); \
11369     if ((sum >> 8) == 1) \
11370         ge |= 1 << n; \
11371     } while(0)
11372
11373 #define SUB16(a, b, n) do { \
11374     uint32_t sum; \
11375     sum = (uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b); \
11376     RESULT(sum, n, 16); \
11377     if ((sum >> 16) == 0) \
11378         ge |= 3 << (n * 2); \
11379     } while(0)
11380
11381 #define SUB8(a, b, n) do { \
11382     uint32_t sum; \
11383     sum = (uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b); \
11384     RESULT(sum, n, 8); \
11385     if ((sum >> 8) == 0) \
11386         ge |= 1 << n; \
11387     } while(0)
11388
11389 #define PFX u
11390 #define ARITH_GE
11391
11392 #include "op_addsub.h"
11393
11394 /* Halved signed arithmetic.  */
11395 #define ADD16(a, b, n) \
11396   RESULT(((int32_t)(int16_t)(a) + (int32_t)(int16_t)(b)) >> 1, n, 16)
11397 #define SUB16(a, b, n) \
11398   RESULT(((int32_t)(int16_t)(a) - (int32_t)(int16_t)(b)) >> 1, n, 16)
11399 #define ADD8(a, b, n) \
11400   RESULT(((int32_t)(int8_t)(a) + (int32_t)(int8_t)(b)) >> 1, n, 8)
11401 #define SUB8(a, b, n) \
11402   RESULT(((int32_t)(int8_t)(a) - (int32_t)(int8_t)(b)) >> 1, n, 8)
11403 #define PFX sh
11404
11405 #include "op_addsub.h"
11406
11407 /* Halved unsigned arithmetic.  */
11408 #define ADD16(a, b, n) \
11409   RESULT(((uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b)) >> 1, n, 16)
11410 #define SUB16(a, b, n) \
11411   RESULT(((uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b)) >> 1, n, 16)
11412 #define ADD8(a, b, n) \
11413   RESULT(((uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b)) >> 1, n, 8)
11414 #define SUB8(a, b, n) \
11415   RESULT(((uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b)) >> 1, n, 8)
11416 #define PFX uh
11417
11418 #include "op_addsub.h"
11419
11420 static inline uint8_t do_usad(uint8_t a, uint8_t b)
11421 {
11422     if (a > b)
11423         return a - b;
11424     else
11425         return b - a;
11426 }
11427
11428 /* Unsigned sum of absolute byte differences.  */
11429 uint32_t HELPER(usad8)(uint32_t a, uint32_t b)
11430 {
11431     uint32_t sum;
11432     sum = do_usad(a, b);
11433     sum += do_usad(a >> 8, b >> 8);
11434     sum += do_usad(a >> 16, b >>16);
11435     sum += do_usad(a >> 24, b >> 24);
11436     return sum;
11437 }
11438
11439 /* For ARMv6 SEL instruction.  */
11440 uint32_t HELPER(sel_flags)(uint32_t flags, uint32_t a, uint32_t b)
11441 {
11442     uint32_t mask;
11443
11444     mask = 0;
11445     if (flags & 1)
11446         mask |= 0xff;
11447     if (flags & 2)
11448         mask |= 0xff00;
11449     if (flags & 4)
11450         mask |= 0xff0000;
11451     if (flags & 8)
11452         mask |= 0xff000000;
11453     return (a & mask) | (b & ~mask);
11454 }
11455
11456 /* VFP support.  We follow the convention used for VFP instructions:
11457    Single precision routines have a "s" suffix, double precision a
11458    "d" suffix.  */
11459
11460 /* Convert host exception flags to vfp form.  */
11461 static inline int vfp_exceptbits_from_host(int host_bits)
11462 {
11463     int target_bits = 0;
11464
11465     if (host_bits & float_flag_invalid)
11466         target_bits |= 1;
11467     if (host_bits & float_flag_divbyzero)
11468         target_bits |= 2;
11469     if (host_bits & float_flag_overflow)
11470         target_bits |= 4;
11471     if (host_bits & (float_flag_underflow | float_flag_output_denormal))
11472         target_bits |= 8;
11473     if (host_bits & float_flag_inexact)
11474         target_bits |= 0x10;
11475     if (host_bits & float_flag_input_denormal)
11476         target_bits |= 0x80;
11477     return target_bits;
11478 }
11479
11480 uint32_t HELPER(vfp_get_fpscr)(CPUARMState *env)
11481 {
11482     int i;
11483     uint32_t fpscr;
11484
11485     fpscr = (env->vfp.xregs[ARM_VFP_FPSCR] & 0xffc8ffff)
11486             | (env->vfp.vec_len << 16)
11487             | (env->vfp.vec_stride << 20);
11488
11489     i = get_float_exception_flags(&env->vfp.fp_status);
11490     i |= get_float_exception_flags(&env->vfp.standard_fp_status);
11491     /* FZ16 does not generate an input denormal exception.  */
11492     i |= (get_float_exception_flags(&env->vfp.fp_status_f16)
11493           & ~float_flag_input_denormal);
11494
11495     fpscr |= vfp_exceptbits_from_host(i);
11496     return fpscr;
11497 }
11498
11499 uint32_t vfp_get_fpscr(CPUARMState *env)
11500 {
11501     return HELPER(vfp_get_fpscr)(env);
11502 }
11503
11504 /* Convert vfp exception flags to target form.  */
11505 static inline int vfp_exceptbits_to_host(int target_bits)
11506 {
11507     int host_bits = 0;
11508
11509     if (target_bits & 1)
11510         host_bits |= float_flag_invalid;
11511     if (target_bits & 2)
11512         host_bits |= float_flag_divbyzero;
11513     if (target_bits & 4)
11514         host_bits |= float_flag_overflow;
11515     if (target_bits & 8)
11516         host_bits |= float_flag_underflow;
11517     if (target_bits & 0x10)
11518         host_bits |= float_flag_inexact;
11519     if (target_bits & 0x80)
11520         host_bits |= float_flag_input_denormal;
11521     return host_bits;
11522 }
11523
11524 void HELPER(vfp_set_fpscr)(CPUARMState *env, uint32_t val)
11525 {
11526     int i;
11527     uint32_t changed;
11528
11529     /* When ARMv8.2-FP16 is not supported, FZ16 is RES0.  */
11530     if (!arm_feature(env, ARM_FEATURE_V8_FP16)) {
11531         val &= ~FPCR_FZ16;
11532     }
11533
11534     changed = env->vfp.xregs[ARM_VFP_FPSCR];
11535     env->vfp.xregs[ARM_VFP_FPSCR] = (val & 0xffc8ffff);
11536     env->vfp.vec_len = (val >> 16) & 7;
11537     env->vfp.vec_stride = (val >> 20) & 3;
11538
11539     changed ^= val;
11540     if (changed & (3 << 22)) {
11541         i = (val >> 22) & 3;
11542         switch (i) {
11543         case FPROUNDING_TIEEVEN:
11544             i = float_round_nearest_even;
11545             break;
11546         case FPROUNDING_POSINF:
11547             i = float_round_up;
11548             break;
11549         case FPROUNDING_NEGINF:
11550             i = float_round_down;
11551             break;
11552         case FPROUNDING_ZERO:
11553             i = float_round_to_zero;
11554             break;
11555         }
11556         set_float_rounding_mode(i, &env->vfp.fp_status);
11557         set_float_rounding_mode(i, &env->vfp.fp_status_f16);
11558     }
11559     if (changed & FPCR_FZ16) {
11560         bool ftz_enabled = val & FPCR_FZ16;
11561         set_flush_to_zero(ftz_enabled, &env->vfp.fp_status_f16);
11562         set_flush_inputs_to_zero(ftz_enabled, &env->vfp.fp_status_f16);
11563     }
11564     if (changed & FPCR_FZ) {
11565         bool ftz_enabled = val & FPCR_FZ;
11566         set_flush_to_zero(ftz_enabled, &env->vfp.fp_status);
11567         set_flush_inputs_to_zero(ftz_enabled, &env->vfp.fp_status);
11568     }
11569     if (changed & FPCR_DN) {
11570         bool dnan_enabled = val & FPCR_DN;
11571         set_default_nan_mode(dnan_enabled, &env->vfp.fp_status);
11572         set_default_nan_mode(dnan_enabled, &env->vfp.fp_status_f16);
11573     }
11574
11575     /* The exception flags are ORed together when we read fpscr so we
11576      * only need to preserve the current state in one of our
11577      * float_status values.
11578      */
11579     i = vfp_exceptbits_to_host(val);
11580     set_float_exception_flags(i, &env->vfp.fp_status);
11581     set_float_exception_flags(0, &env->vfp.fp_status_f16);
11582     set_float_exception_flags(0, &env->vfp.standard_fp_status);
11583 }
11584
11585 void vfp_set_fpscr(CPUARMState *env, uint32_t val)
11586 {
11587     HELPER(vfp_set_fpscr)(env, val);
11588 }
11589
11590 #define VFP_HELPER(name, p) HELPER(glue(glue(vfp_,name),p))
11591
11592 #define VFP_BINOP(name) \
11593 float32 VFP_HELPER(name, s)(float32 a, float32 b, void *fpstp) \
11594 { \
11595     float_status *fpst = fpstp; \
11596     return float32_ ## name(a, b, fpst); \
11597 } \
11598 float64 VFP_HELPER(name, d)(float64 a, float64 b, void *fpstp) \
11599 { \
11600     float_status *fpst = fpstp; \
11601     return float64_ ## name(a, b, fpst); \
11602 }
11603 VFP_BINOP(add)
11604 VFP_BINOP(sub)
11605 VFP_BINOP(mul)
11606 VFP_BINOP(div)
11607 VFP_BINOP(min)
11608 VFP_BINOP(max)
11609 VFP_BINOP(minnum)
11610 VFP_BINOP(maxnum)
11611 #undef VFP_BINOP
11612
11613 float32 VFP_HELPER(neg, s)(float32 a)
11614 {
11615     return float32_chs(a);
11616 }
11617
11618 float64 VFP_HELPER(neg, d)(float64 a)
11619 {
11620     return float64_chs(a);
11621 }
11622
11623 float32 VFP_HELPER(abs, s)(float32 a)
11624 {
11625     return float32_abs(a);
11626 }
11627
11628 float64 VFP_HELPER(abs, d)(float64 a)
11629 {
11630     return float64_abs(a);
11631 }
11632
11633 float32 VFP_HELPER(sqrt, s)(float32 a, CPUARMState *env)
11634 {
11635     return float32_sqrt(a, &env->vfp.fp_status);
11636 }
11637
11638 float64 VFP_HELPER(sqrt, d)(float64 a, CPUARMState *env)
11639 {
11640     return float64_sqrt(a, &env->vfp.fp_status);
11641 }
11642
11643 /* XXX: check quiet/signaling case */
11644 #define DO_VFP_cmp(p, type) \
11645 void VFP_HELPER(cmp, p)(type a, type b, CPUARMState *env)  \
11646 { \
11647     uint32_t flags; \
11648     switch(type ## _compare_quiet(a, b, &env->vfp.fp_status)) { \
11649     case 0: flags = 0x6; break; \
11650     case -1: flags = 0x8; break; \
11651     case 1: flags = 0x2; break; \
11652     default: case 2: flags = 0x3; break; \
11653     } \
11654     env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
11655         | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
11656 } \
11657 void VFP_HELPER(cmpe, p)(type a, type b, CPUARMState *env) \
11658 { \
11659     uint32_t flags; \
11660     switch(type ## _compare(a, b, &env->vfp.fp_status)) { \
11661     case 0: flags = 0x6; break; \
11662     case -1: flags = 0x8; break; \
11663     case 1: flags = 0x2; break; \
11664     default: case 2: flags = 0x3; break; \
11665     } \
11666     env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
11667         | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
11668 }
11669 DO_VFP_cmp(s, float32)
11670 DO_VFP_cmp(d, float64)
11671 #undef DO_VFP_cmp
11672
11673 /* Integer to float and float to integer conversions */
11674
11675 #define CONV_ITOF(name, ftype, fsz, sign)                           \
11676 ftype HELPER(name)(uint32_t x, void *fpstp)                         \
11677 {                                                                   \
11678     float_status *fpst = fpstp;                                     \
11679     return sign##int32_to_##float##fsz((sign##int32_t)x, fpst);     \
11680 }
11681
11682 #define CONV_FTOI(name, ftype, fsz, sign, round)                \
11683 sign##int32_t HELPER(name)(ftype x, void *fpstp)                \
11684 {                                                               \
11685     float_status *fpst = fpstp;                                 \
11686     if (float##fsz##_is_any_nan(x)) {                           \
11687         float_raise(float_flag_invalid, fpst);                  \
11688         return 0;                                               \
11689     }                                                           \
11690     return float##fsz##_to_##sign##int32##round(x, fpst);       \
11691 }
11692
11693 #define FLOAT_CONVS(name, p, ftype, fsz, sign)            \
11694     CONV_ITOF(vfp_##name##to##p, ftype, fsz, sign)        \
11695     CONV_FTOI(vfp_to##name##p, ftype, fsz, sign, )        \
11696     CONV_FTOI(vfp_to##name##z##p, ftype, fsz, sign, _round_to_zero)
11697
11698 FLOAT_CONVS(si, h, uint32_t, 16, )
11699 FLOAT_CONVS(si, s, float32, 32, )
11700 FLOAT_CONVS(si, d, float64, 64, )
11701 FLOAT_CONVS(ui, h, uint32_t, 16, u)
11702 FLOAT_CONVS(ui, s, float32, 32, u)
11703 FLOAT_CONVS(ui, d, float64, 64, u)
11704
11705 #undef CONV_ITOF
11706 #undef CONV_FTOI
11707 #undef FLOAT_CONVS
11708
11709 /* floating point conversion */
11710 float64 VFP_HELPER(fcvtd, s)(float32 x, CPUARMState *env)
11711 {
11712     return float32_to_float64(x, &env->vfp.fp_status);
11713 }
11714
11715 float32 VFP_HELPER(fcvts, d)(float64 x, CPUARMState *env)
11716 {
11717     return float64_to_float32(x, &env->vfp.fp_status);
11718 }
11719
11720 /* VFP3 fixed point conversion.  */
11721 #define VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype) \
11722 float##fsz HELPER(vfp_##name##to##p)(uint##isz##_t  x, uint32_t shift, \
11723                                      void *fpstp) \
11724 { return itype##_to_##float##fsz##_scalbn(x, -shift, fpstp); }
11725
11726 #define VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype, ROUND, suff)   \
11727 uint##isz##_t HELPER(vfp_to##name##p##suff)(float##fsz x, uint32_t shift, \
11728                                             void *fpst)                   \
11729 {                                                                         \
11730     if (unlikely(float##fsz##_is_any_nan(x))) {                           \
11731         float_raise(float_flag_invalid, fpst);                            \
11732         return 0;                                                         \
11733     }                                                                     \
11734     return float##fsz##_to_##itype##_scalbn(x, ROUND, shift, fpst);       \
11735 }
11736
11737 #define VFP_CONV_FIX(name, p, fsz, isz, itype)                   \
11738 VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype)                     \
11739 VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype,               \
11740                          float_round_to_zero, _round_to_zero)    \
11741 VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype,               \
11742                          get_float_rounding_mode(fpst), )
11743
11744 #define VFP_CONV_FIX_A64(name, p, fsz, isz, itype)               \
11745 VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype)                     \
11746 VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype,               \
11747                          get_float_rounding_mode(fpst), )
11748
11749 VFP_CONV_FIX(sh, d, 64, 64, int16)
11750 VFP_CONV_FIX(sl, d, 64, 64, int32)
11751 VFP_CONV_FIX_A64(sq, d, 64, 64, int64)
11752 VFP_CONV_FIX(uh, d, 64, 64, uint16)
11753 VFP_CONV_FIX(ul, d, 64, 64, uint32)
11754 VFP_CONV_FIX_A64(uq, d, 64, 64, uint64)
11755 VFP_CONV_FIX(sh, s, 32, 32, int16)
11756 VFP_CONV_FIX(sl, s, 32, 32, int32)
11757 VFP_CONV_FIX_A64(sq, s, 32, 64, int64)
11758 VFP_CONV_FIX(uh, s, 32, 32, uint16)
11759 VFP_CONV_FIX(ul, s, 32, 32, uint32)
11760 VFP_CONV_FIX_A64(uq, s, 32, 64, uint64)
11761
11762 #undef VFP_CONV_FIX
11763 #undef VFP_CONV_FIX_FLOAT
11764 #undef VFP_CONV_FLOAT_FIX_ROUND
11765 #undef VFP_CONV_FIX_A64
11766
11767 uint32_t HELPER(vfp_sltoh)(uint32_t x, uint32_t shift, void *fpst)
11768 {
11769     return int32_to_float16_scalbn(x, -shift, fpst);
11770 }
11771
11772 uint32_t HELPER(vfp_ultoh)(uint32_t x, uint32_t shift, void *fpst)
11773 {
11774     return uint32_to_float16_scalbn(x, -shift, fpst);
11775 }
11776
11777 uint32_t HELPER(vfp_sqtoh)(uint64_t x, uint32_t shift, void *fpst)
11778 {
11779     return int64_to_float16_scalbn(x, -shift, fpst);
11780 }
11781
11782 uint32_t HELPER(vfp_uqtoh)(uint64_t x, uint32_t shift, void *fpst)
11783 {
11784     return uint64_to_float16_scalbn(x, -shift, fpst);
11785 }
11786
11787 uint32_t HELPER(vfp_toshh)(uint32_t x, uint32_t shift, void *fpst)
11788 {
11789     if (unlikely(float16_is_any_nan(x))) {
11790         float_raise(float_flag_invalid, fpst);
11791         return 0;
11792     }
11793     return float16_to_int16_scalbn(x, get_float_rounding_mode(fpst),
11794                                    shift, fpst);
11795 }
11796
11797 uint32_t HELPER(vfp_touhh)(uint32_t x, uint32_t shift, void *fpst)
11798 {
11799     if (unlikely(float16_is_any_nan(x))) {
11800         float_raise(float_flag_invalid, fpst);
11801         return 0;
11802     }
11803     return float16_to_uint16_scalbn(x, get_float_rounding_mode(fpst),
11804                                     shift, fpst);
11805 }
11806
11807 uint32_t HELPER(vfp_toslh)(uint32_t x, uint32_t shift, void *fpst)
11808 {
11809     if (unlikely(float16_is_any_nan(x))) {
11810         float_raise(float_flag_invalid, fpst);
11811         return 0;
11812     }
11813     return float16_to_int32_scalbn(x, get_float_rounding_mode(fpst),
11814                                    shift, fpst);
11815 }
11816
11817 uint32_t HELPER(vfp_toulh)(uint32_t x, uint32_t shift, void *fpst)
11818 {
11819     if (unlikely(float16_is_any_nan(x))) {
11820         float_raise(float_flag_invalid, fpst);
11821         return 0;
11822     }
11823     return float16_to_uint32_scalbn(x, get_float_rounding_mode(fpst),
11824                                     shift, fpst);
11825 }
11826
11827 uint64_t HELPER(vfp_tosqh)(uint32_t x, uint32_t shift, void *fpst)
11828 {
11829     if (unlikely(float16_is_any_nan(x))) {
11830         float_raise(float_flag_invalid, fpst);
11831         return 0;
11832     }
11833     return float16_to_int64_scalbn(x, get_float_rounding_mode(fpst),
11834                                    shift, fpst);
11835 }
11836
11837 uint64_t HELPER(vfp_touqh)(uint32_t x, uint32_t shift, void *fpst)
11838 {
11839     if (unlikely(float16_is_any_nan(x))) {
11840         float_raise(float_flag_invalid, fpst);
11841         return 0;
11842     }
11843     return float16_to_uint64_scalbn(x, get_float_rounding_mode(fpst),
11844                                     shift, fpst);
11845 }
11846
11847 /* Set the current fp rounding mode and return the old one.
11848  * The argument is a softfloat float_round_ value.
11849  */
11850 uint32_t HELPER(set_rmode)(uint32_t rmode, void *fpstp)
11851 {
11852     float_status *fp_status = fpstp;
11853
11854     uint32_t prev_rmode = get_float_rounding_mode(fp_status);
11855     set_float_rounding_mode(rmode, fp_status);
11856
11857     return prev_rmode;
11858 }
11859
11860 /* Set the current fp rounding mode in the standard fp status and return
11861  * the old one. This is for NEON instructions that need to change the
11862  * rounding mode but wish to use the standard FPSCR values for everything
11863  * else. Always set the rounding mode back to the correct value after
11864  * modifying it.
11865  * The argument is a softfloat float_round_ value.
11866  */
11867 uint32_t HELPER(set_neon_rmode)(uint32_t rmode, CPUARMState *env)
11868 {
11869     float_status *fp_status = &env->vfp.standard_fp_status;
11870
11871     uint32_t prev_rmode = get_float_rounding_mode(fp_status);
11872     set_float_rounding_mode(rmode, fp_status);
11873
11874     return prev_rmode;
11875 }
11876
11877 /* Half precision conversions.  */
11878 float32 HELPER(vfp_fcvt_f16_to_f32)(uint32_t a, void *fpstp, uint32_t ahp_mode)
11879 {
11880     /* Squash FZ16 to 0 for the duration of conversion.  In this case,
11881      * it would affect flushing input denormals.
11882      */
11883     float_status *fpst = fpstp;
11884     flag save = get_flush_inputs_to_zero(fpst);
11885     set_flush_inputs_to_zero(false, fpst);
11886     float32 r = float16_to_float32(a, !ahp_mode, fpst);
11887     set_flush_inputs_to_zero(save, fpst);
11888     return r;
11889 }
11890
11891 uint32_t HELPER(vfp_fcvt_f32_to_f16)(float32 a, void *fpstp, uint32_t ahp_mode)
11892 {
11893     /* Squash FZ16 to 0 for the duration of conversion.  In this case,
11894      * it would affect flushing output denormals.
11895      */
11896     float_status *fpst = fpstp;
11897     flag save = get_flush_to_zero(fpst);
11898     set_flush_to_zero(false, fpst);
11899     float16 r = float32_to_float16(a, !ahp_mode, fpst);
11900     set_flush_to_zero(save, fpst);
11901     return r;
11902 }
11903
11904 float64 HELPER(vfp_fcvt_f16_to_f64)(uint32_t a, void *fpstp, uint32_t ahp_mode)
11905 {
11906     /* Squash FZ16 to 0 for the duration of conversion.  In this case,
11907      * it would affect flushing input denormals.
11908      */
11909     float_status *fpst = fpstp;
11910     flag save = get_flush_inputs_to_zero(fpst);
11911     set_flush_inputs_to_zero(false, fpst);
11912     float64 r = float16_to_float64(a, !ahp_mode, fpst);
11913     set_flush_inputs_to_zero(save, fpst);
11914     return r;
11915 }
11916
11917 uint32_t HELPER(vfp_fcvt_f64_to_f16)(float64 a, void *fpstp, uint32_t ahp_mode)
11918 {
11919     /* Squash FZ16 to 0 for the duration of conversion.  In this case,
11920      * it would affect flushing output denormals.
11921      */
11922     float_status *fpst = fpstp;
11923     flag save = get_flush_to_zero(fpst);
11924     set_flush_to_zero(false, fpst);
11925     float16 r = float64_to_float16(a, !ahp_mode, fpst);
11926     set_flush_to_zero(save, fpst);
11927     return r;
11928 }
11929
11930 #define float32_two make_float32(0x40000000)
11931 #define float32_three make_float32(0x40400000)
11932 #define float32_one_point_five make_float32(0x3fc00000)
11933
11934 float32 HELPER(recps_f32)(float32 a, float32 b, CPUARMState *env)
11935 {
11936     float_status *s = &env->vfp.standard_fp_status;
11937     if ((float32_is_infinity(a) && float32_is_zero_or_denormal(b)) ||
11938         (float32_is_infinity(b) && float32_is_zero_or_denormal(a))) {
11939         if (!(float32_is_zero(a) || float32_is_zero(b))) {
11940             float_raise(float_flag_input_denormal, s);
11941         }
11942         return float32_two;
11943     }
11944     return float32_sub(float32_two, float32_mul(a, b, s), s);
11945 }
11946
11947 float32 HELPER(rsqrts_f32)(float32 a, float32 b, CPUARMState *env)
11948 {
11949     float_status *s = &env->vfp.standard_fp_status;
11950     float32 product;
11951     if ((float32_is_infinity(a) && float32_is_zero_or_denormal(b)) ||
11952         (float32_is_infinity(b) && float32_is_zero_or_denormal(a))) {
11953         if (!(float32_is_zero(a) || float32_is_zero(b))) {
11954             float_raise(float_flag_input_denormal, s);
11955         }
11956         return float32_one_point_five;
11957     }
11958     product = float32_mul(a, b, s);
11959     return float32_div(float32_sub(float32_three, product, s), float32_two, s);
11960 }
11961
11962 /* NEON helpers.  */
11963
11964 /* Constants 256 and 512 are used in some helpers; we avoid relying on
11965  * int->float conversions at run-time.  */
11966 #define float64_256 make_float64(0x4070000000000000LL)
11967 #define float64_512 make_float64(0x4080000000000000LL)
11968 #define float16_maxnorm make_float16(0x7bff)
11969 #define float32_maxnorm make_float32(0x7f7fffff)
11970 #define float64_maxnorm make_float64(0x7fefffffffffffffLL)
11971
11972 /* Reciprocal functions
11973  *
11974  * The algorithm that must be used to calculate the estimate
11975  * is specified by the ARM ARM, see FPRecipEstimate()/RecipEstimate
11976  */
11977
11978 /* See RecipEstimate()
11979  *
11980  * input is a 9 bit fixed point number
11981  * input range 256 .. 511 for a number from 0.5 <= x < 1.0.
11982  * result range 256 .. 511 for a number from 1.0 to 511/256.
11983  */
11984
11985 static int recip_estimate(int input)
11986 {
11987     int a, b, r;
11988     assert(256 <= input && input < 512);
11989     a = (input * 2) + 1;
11990     b = (1 << 19) / a;
11991     r = (b + 1) >> 1;
11992     assert(256 <= r && r < 512);
11993     return r;
11994 }
11995
11996 /*
11997  * Common wrapper to call recip_estimate
11998  *
11999  * The parameters are exponent and 64 bit fraction (without implicit
12000  * bit) where the binary point is nominally at bit 52. Returns a
12001  * float64 which can then be rounded to the appropriate size by the
12002  * callee.
12003  */
12004
12005 static uint64_t call_recip_estimate(int *exp, int exp_off, uint64_t frac)
12006 {
12007     uint32_t scaled, estimate;
12008     uint64_t result_frac;
12009     int result_exp;
12010
12011     /* Handle sub-normals */
12012     if (*exp == 0) {
12013         if (extract64(frac, 51, 1) == 0) {
12014             *exp = -1;
12015             frac <<= 2;
12016         } else {
12017             frac <<= 1;
12018         }
12019     }
12020
12021     /* scaled = UInt('1':fraction<51:44>) */
12022     scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8));
12023     estimate = recip_estimate(scaled);
12024
12025     result_exp = exp_off - *exp;
12026     result_frac = deposit64(0, 44, 8, estimate);
12027     if (result_exp == 0) {
12028         result_frac = deposit64(result_frac >> 1, 51, 1, 1);
12029     } else if (result_exp == -1) {
12030         result_frac = deposit64(result_frac >> 2, 50, 2, 1);
12031         result_exp = 0;
12032     }
12033
12034     *exp = result_exp;
12035
12036     return result_frac;
12037 }
12038
12039 static bool round_to_inf(float_status *fpst, bool sign_bit)
12040 {
12041     switch (fpst->float_rounding_mode) {
12042     case float_round_nearest_even: /* Round to Nearest */
12043         return true;
12044     case float_round_up: /* Round to +Inf */
12045         return !sign_bit;
12046     case float_round_down: /* Round to -Inf */
12047         return sign_bit;
12048     case float_round_to_zero: /* Round to Zero */
12049         return false;
12050     }
12051
12052     g_assert_not_reached();
12053 }
12054
12055 uint32_t HELPER(recpe_f16)(uint32_t input, void *fpstp)
12056 {
12057     float_status *fpst = fpstp;
12058     float16 f16 = float16_squash_input_denormal(input, fpst);
12059     uint32_t f16_val = float16_val(f16);
12060     uint32_t f16_sign = float16_is_neg(f16);
12061     int f16_exp = extract32(f16_val, 10, 5);
12062     uint32_t f16_frac = extract32(f16_val, 0, 10);
12063     uint64_t f64_frac;
12064
12065     if (float16_is_any_nan(f16)) {
12066         float16 nan = f16;
12067         if (float16_is_signaling_nan(f16, fpst)) {
12068             float_raise(float_flag_invalid, fpst);
12069             nan = float16_silence_nan(f16, fpst);
12070         }
12071         if (fpst->default_nan_mode) {
12072             nan =  float16_default_nan(fpst);
12073         }
12074         return nan;
12075     } else if (float16_is_infinity(f16)) {
12076         return float16_set_sign(float16_zero, float16_is_neg(f16));
12077     } else if (float16_is_zero(f16)) {
12078         float_raise(float_flag_divbyzero, fpst);
12079         return float16_set_sign(float16_infinity, float16_is_neg(f16));
12080     } else if (float16_abs(f16) < (1 << 8)) {
12081         /* Abs(value) < 2.0^-16 */
12082         float_raise(float_flag_overflow | float_flag_inexact, fpst);
12083         if (round_to_inf(fpst, f16_sign)) {
12084             return float16_set_sign(float16_infinity, f16_sign);
12085         } else {
12086             return float16_set_sign(float16_maxnorm, f16_sign);
12087         }
12088     } else if (f16_exp >= 29 && fpst->flush_to_zero) {
12089         float_raise(float_flag_underflow, fpst);
12090         return float16_set_sign(float16_zero, float16_is_neg(f16));
12091     }
12092
12093     f64_frac = call_recip_estimate(&f16_exp, 29,
12094                                    ((uint64_t) f16_frac) << (52 - 10));
12095
12096     /* result = sign : result_exp<4:0> : fraction<51:42> */
12097     f16_val = deposit32(0, 15, 1, f16_sign);
12098     f16_val = deposit32(f16_val, 10, 5, f16_exp);
12099     f16_val = deposit32(f16_val, 0, 10, extract64(f64_frac, 52 - 10, 10));
12100     return make_float16(f16_val);
12101 }
12102
12103 float32 HELPER(recpe_f32)(float32 input, void *fpstp)
12104 {
12105     float_status *fpst = fpstp;
12106     float32 f32 = float32_squash_input_denormal(input, fpst);
12107     uint32_t f32_val = float32_val(f32);
12108     bool f32_sign = float32_is_neg(f32);
12109     int f32_exp = extract32(f32_val, 23, 8);
12110     uint32_t f32_frac = extract32(f32_val, 0, 23);
12111     uint64_t f64_frac;
12112
12113     if (float32_is_any_nan(f32)) {
12114         float32 nan = f32;
12115         if (float32_is_signaling_nan(f32, fpst)) {
12116             float_raise(float_flag_invalid, fpst);
12117             nan = float32_silence_nan(f32, fpst);
12118         }
12119         if (fpst->default_nan_mode) {
12120             nan =  float32_default_nan(fpst);
12121         }
12122         return nan;
12123     } else if (float32_is_infinity(f32)) {
12124         return float32_set_sign(float32_zero, float32_is_neg(f32));
12125     } else if (float32_is_zero(f32)) {
12126         float_raise(float_flag_divbyzero, fpst);
12127         return float32_set_sign(float32_infinity, float32_is_neg(f32));
12128     } else if (float32_abs(f32) < (1ULL << 21)) {
12129         /* Abs(value) < 2.0^-128 */
12130         float_raise(float_flag_overflow | float_flag_inexact, fpst);
12131         if (round_to_inf(fpst, f32_sign)) {
12132             return float32_set_sign(float32_infinity, f32_sign);
12133         } else {
12134             return float32_set_sign(float32_maxnorm, f32_sign);
12135         }
12136     } else if (f32_exp >= 253 && fpst->flush_to_zero) {
12137         float_raise(float_flag_underflow, fpst);
12138         return float32_set_sign(float32_zero, float32_is_neg(f32));
12139     }
12140
12141     f64_frac = call_recip_estimate(&f32_exp, 253,
12142                                    ((uint64_t) f32_frac) << (52 - 23));
12143
12144     /* result = sign : result_exp<7:0> : fraction<51:29> */
12145     f32_val = deposit32(0, 31, 1, f32_sign);
12146     f32_val = deposit32(f32_val, 23, 8, f32_exp);
12147     f32_val = deposit32(f32_val, 0, 23, extract64(f64_frac, 52 - 23, 23));
12148     return make_float32(f32_val);
12149 }
12150
12151 float64 HELPER(recpe_f64)(float64 input, void *fpstp)
12152 {
12153     float_status *fpst = fpstp;
12154     float64 f64 = float64_squash_input_denormal(input, fpst);
12155     uint64_t f64_val = float64_val(f64);
12156     bool f64_sign = float64_is_neg(f64);
12157     int f64_exp = extract64(f64_val, 52, 11);
12158     uint64_t f64_frac = extract64(f64_val, 0, 52);
12159
12160     /* Deal with any special cases */
12161     if (float64_is_any_nan(f64)) {
12162         float64 nan = f64;
12163         if (float64_is_signaling_nan(f64, fpst)) {
12164             float_raise(float_flag_invalid, fpst);
12165             nan = float64_silence_nan(f64, fpst);
12166         }
12167         if (fpst->default_nan_mode) {
12168             nan =  float64_default_nan(fpst);
12169         }
12170         return nan;
12171     } else if (float64_is_infinity(f64)) {
12172         return float64_set_sign(float64_zero, float64_is_neg(f64));
12173     } else if (float64_is_zero(f64)) {
12174         float_raise(float_flag_divbyzero, fpst);
12175         return float64_set_sign(float64_infinity, float64_is_neg(f64));
12176     } else if ((f64_val & ~(1ULL << 63)) < (1ULL << 50)) {
12177         /* Abs(value) < 2.0^-1024 */
12178         float_raise(float_flag_overflow | float_flag_inexact, fpst);
12179         if (round_to_inf(fpst, f64_sign)) {
12180             return float64_set_sign(float64_infinity, f64_sign);
12181         } else {
12182             return float64_set_sign(float64_maxnorm, f64_sign);
12183         }
12184     } else if (f64_exp >= 2045 && fpst->flush_to_zero) {
12185         float_raise(float_flag_underflow, fpst);
12186         return float64_set_sign(float64_zero, float64_is_neg(f64));
12187     }
12188
12189     f64_frac = call_recip_estimate(&f64_exp, 2045, f64_frac);
12190
12191     /* result = sign : result_exp<10:0> : fraction<51:0>; */
12192     f64_val = deposit64(0, 63, 1, f64_sign);
12193     f64_val = deposit64(f64_val, 52, 11, f64_exp);
12194     f64_val = deposit64(f64_val, 0, 52, f64_frac);
12195     return make_float64(f64_val);
12196 }
12197
12198 /* The algorithm that must be used to calculate the estimate
12199  * is specified by the ARM ARM.
12200  */
12201
12202 static int do_recip_sqrt_estimate(int a)
12203 {
12204     int b, estimate;
12205
12206     assert(128 <= a && a < 512);
12207     if (a < 256) {
12208         a = a * 2 + 1;
12209     } else {
12210         a = (a >> 1) << 1;
12211         a = (a + 1) * 2;
12212     }
12213     b = 512;
12214     while (a * (b + 1) * (b + 1) < (1 << 28)) {
12215         b += 1;
12216     }
12217     estimate = (b + 1) / 2;
12218     assert(256 <= estimate && estimate < 512);
12219
12220     return estimate;
12221 }
12222
12223
12224 static uint64_t recip_sqrt_estimate(int *exp , int exp_off, uint64_t frac)
12225 {
12226     int estimate;
12227     uint32_t scaled;
12228
12229     if (*exp == 0) {
12230         while (extract64(frac, 51, 1) == 0) {
12231             frac = frac << 1;
12232             *exp -= 1;
12233         }
12234         frac = extract64(frac, 0, 51) << 1;
12235     }
12236
12237     if (*exp & 1) {
12238         /* scaled = UInt('01':fraction<51:45>) */
12239         scaled = deposit32(1 << 7, 0, 7, extract64(frac, 45, 7));
12240     } else {
12241         /* scaled = UInt('1':fraction<51:44>) */
12242         scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8));
12243     }
12244     estimate = do_recip_sqrt_estimate(scaled);
12245
12246     *exp = (exp_off - *exp) / 2;
12247     return extract64(estimate, 0, 8) << 44;
12248 }
12249
12250 uint32_t HELPER(rsqrte_f16)(uint32_t input, void *fpstp)
12251 {
12252     float_status *s = fpstp;
12253     float16 f16 = float16_squash_input_denormal(input, s);
12254     uint16_t val = float16_val(f16);
12255     bool f16_sign = float16_is_neg(f16);
12256     int f16_exp = extract32(val, 10, 5);
12257     uint16_t f16_frac = extract32(val, 0, 10);
12258     uint64_t f64_frac;
12259
12260     if (float16_is_any_nan(f16)) {
12261         float16 nan = f16;
12262         if (float16_is_signaling_nan(f16, s)) {
12263             float_raise(float_flag_invalid, s);
12264             nan = float16_silence_nan(f16, s);
12265         }
12266         if (s->default_nan_mode) {
12267             nan =  float16_default_nan(s);
12268         }
12269         return nan;
12270     } else if (float16_is_zero(f16)) {
12271         float_raise(float_flag_divbyzero, s);
12272         return float16_set_sign(float16_infinity, f16_sign);
12273     } else if (f16_sign) {
12274         float_raise(float_flag_invalid, s);
12275         return float16_default_nan(s);
12276     } else if (float16_is_infinity(f16)) {
12277         return float16_zero;
12278     }
12279
12280     /* Scale and normalize to a double-precision value between 0.25 and 1.0,
12281      * preserving the parity of the exponent.  */
12282
12283     f64_frac = ((uint64_t) f16_frac) << (52 - 10);
12284
12285     f64_frac = recip_sqrt_estimate(&f16_exp, 44, f64_frac);
12286
12287     /* result = sign : result_exp<4:0> : estimate<7:0> : Zeros(2) */
12288     val = deposit32(0, 15, 1, f16_sign);
12289     val = deposit32(val, 10, 5, f16_exp);
12290     val = deposit32(val, 2, 8, extract64(f64_frac, 52 - 8, 8));
12291     return make_float16(val);
12292 }
12293
12294 float32 HELPER(rsqrte_f32)(float32 input, void *fpstp)
12295 {
12296     float_status *s = fpstp;
12297     float32 f32 = float32_squash_input_denormal(input, s);
12298     uint32_t val = float32_val(f32);
12299     uint32_t f32_sign = float32_is_neg(f32);
12300     int f32_exp = extract32(val, 23, 8);
12301     uint32_t f32_frac = extract32(val, 0, 23);
12302     uint64_t f64_frac;
12303
12304     if (float32_is_any_nan(f32)) {
12305         float32 nan = f32;
12306         if (float32_is_signaling_nan(f32, s)) {
12307             float_raise(float_flag_invalid, s);
12308             nan = float32_silence_nan(f32, s);
12309         }
12310         if (s->default_nan_mode) {
12311             nan =  float32_default_nan(s);
12312         }
12313         return nan;
12314     } else if (float32_is_zero(f32)) {
12315         float_raise(float_flag_divbyzero, s);
12316         return float32_set_sign(float32_infinity, float32_is_neg(f32));
12317     } else if (float32_is_neg(f32)) {
12318         float_raise(float_flag_invalid, s);
12319         return float32_default_nan(s);
12320     } else if (float32_is_infinity(f32)) {
12321         return float32_zero;
12322     }
12323
12324     /* Scale and normalize to a double-precision value between 0.25 and 1.0,
12325      * preserving the parity of the exponent.  */
12326
12327     f64_frac = ((uint64_t) f32_frac) << 29;
12328
12329     f64_frac = recip_sqrt_estimate(&f32_exp, 380, f64_frac);
12330
12331     /* result = sign : result_exp<4:0> : estimate<7:0> : Zeros(15) */
12332     val = deposit32(0, 31, 1, f32_sign);
12333     val = deposit32(val, 23, 8, f32_exp);
12334     val = deposit32(val, 15, 8, extract64(f64_frac, 52 - 8, 8));
12335     return make_float32(val);
12336 }
12337
12338 float64 HELPER(rsqrte_f64)(float64 input, void *fpstp)
12339 {
12340     float_status *s = fpstp;
12341     float64 f64 = float64_squash_input_denormal(input, s);
12342     uint64_t val = float64_val(f64);
12343     bool f64_sign = float64_is_neg(f64);
12344     int f64_exp = extract64(val, 52, 11);
12345     uint64_t f64_frac = extract64(val, 0, 52);
12346
12347     if (float64_is_any_nan(f64)) {
12348         float64 nan = f64;
12349         if (float64_is_signaling_nan(f64, s)) {
12350             float_raise(float_flag_invalid, s);
12351             nan = float64_silence_nan(f64, s);
12352         }
12353         if (s->default_nan_mode) {
12354             nan =  float64_default_nan(s);
12355         }
12356         return nan;
12357     } else if (float64_is_zero(f64)) {
12358         float_raise(float_flag_divbyzero, s);
12359         return float64_set_sign(float64_infinity, float64_is_neg(f64));
12360     } else if (float64_is_neg(f64)) {
12361         float_raise(float_flag_invalid, s);
12362         return float64_default_nan(s);
12363     } else if (float64_is_infinity(f64)) {
12364         return float64_zero;
12365     }
12366
12367     f64_frac = recip_sqrt_estimate(&f64_exp, 3068, f64_frac);
12368
12369     /* result = sign : result_exp<4:0> : estimate<7:0> : Zeros(44) */
12370     val = deposit64(0, 61, 1, f64_sign);
12371     val = deposit64(val, 52, 11, f64_exp);
12372     val = deposit64(val, 44, 8, extract64(f64_frac, 52 - 8, 8));
12373     return make_float64(val);
12374 }
12375
12376 uint32_t HELPER(recpe_u32)(uint32_t a, void *fpstp)
12377 {
12378     /* float_status *s = fpstp; */
12379     int input, estimate;
12380
12381     if ((a & 0x80000000) == 0) {
12382         return 0xffffffff;
12383     }
12384
12385     input = extract32(a, 23, 9);
12386     estimate = recip_estimate(input);
12387
12388     return deposit32(0, (32 - 9), 9, estimate);
12389 }
12390
12391 uint32_t HELPER(rsqrte_u32)(uint32_t a, void *fpstp)
12392 {
12393     int estimate;
12394
12395     if ((a & 0xc0000000) == 0) {
12396         return 0xffffffff;
12397     }
12398
12399     estimate = do_recip_sqrt_estimate(extract32(a, 23, 9));
12400
12401     return deposit32(0, 23, 9, estimate);
12402 }
12403
12404 /* VFPv4 fused multiply-accumulate */
12405 float32 VFP_HELPER(muladd, s)(float32 a, float32 b, float32 c, void *fpstp)
12406 {
12407     float_status *fpst = fpstp;
12408     return float32_muladd(a, b, c, 0, fpst);
12409 }
12410
12411 float64 VFP_HELPER(muladd, d)(float64 a, float64 b, float64 c, void *fpstp)
12412 {
12413     float_status *fpst = fpstp;
12414     return float64_muladd(a, b, c, 0, fpst);
12415 }
12416
12417 /* ARMv8 round to integral */
12418 float32 HELPER(rints_exact)(float32 x, void *fp_status)
12419 {
12420     return float32_round_to_int(x, fp_status);
12421 }
12422
12423 float64 HELPER(rintd_exact)(float64 x, void *fp_status)
12424 {
12425     return float64_round_to_int(x, fp_status);
12426 }
12427
12428 float32 HELPER(rints)(float32 x, void *fp_status)
12429 {
12430     int old_flags = get_float_exception_flags(fp_status), new_flags;
12431     float32 ret;
12432
12433     ret = float32_round_to_int(x, fp_status);
12434
12435     /* Suppress any inexact exceptions the conversion produced */
12436     if (!(old_flags & float_flag_inexact)) {
12437         new_flags = get_float_exception_flags(fp_status);
12438         set_float_exception_flags(new_flags & ~float_flag_inexact, fp_status);
12439     }
12440
12441     return ret;
12442 }
12443
12444 float64 HELPER(rintd)(float64 x, void *fp_status)
12445 {
12446     int old_flags = get_float_exception_flags(fp_status), new_flags;
12447     float64 ret;
12448
12449     ret = float64_round_to_int(x, fp_status);
12450
12451     new_flags = get_float_exception_flags(fp_status);
12452
12453     /* Suppress any inexact exceptions the conversion produced */
12454     if (!(old_flags & float_flag_inexact)) {
12455         new_flags = get_float_exception_flags(fp_status);
12456         set_float_exception_flags(new_flags & ~float_flag_inexact, fp_status);
12457     }
12458
12459     return ret;
12460 }
12461
12462 /* Convert ARM rounding mode to softfloat */
12463 int arm_rmode_to_sf(int rmode)
12464 {
12465     switch (rmode) {
12466     case FPROUNDING_TIEAWAY:
12467         rmode = float_round_ties_away;
12468         break;
12469     case FPROUNDING_ODD:
12470         /* FIXME: add support for TIEAWAY and ODD */
12471         qemu_log_mask(LOG_UNIMP, "arm: unimplemented rounding mode: %d\n",
12472                       rmode);
12473         /* fall through for now */
12474     case FPROUNDING_TIEEVEN:
12475     default:
12476         rmode = float_round_nearest_even;
12477         break;
12478     case FPROUNDING_POSINF:
12479         rmode = float_round_up;
12480         break;
12481     case FPROUNDING_NEGINF:
12482         rmode = float_round_down;
12483         break;
12484     case FPROUNDING_ZERO:
12485         rmode = float_round_to_zero;
12486         break;
12487     }
12488     return rmode;
12489 }
12490
12491 /* CRC helpers.
12492  * The upper bytes of val (above the number specified by 'bytes') must have
12493  * been zeroed out by the caller.
12494  */
12495 uint32_t HELPER(crc32)(uint32_t acc, uint32_t val, uint32_t bytes)
12496 {
12497     uint8_t buf[4];
12498
12499     stl_le_p(buf, val);
12500
12501     /* zlib crc32 converts the accumulator and output to one's complement.  */
12502     return crc32(acc ^ 0xffffffff, buf, bytes) ^ 0xffffffff;
12503 }
12504
12505 uint32_t HELPER(crc32c)(uint32_t acc, uint32_t val, uint32_t bytes)
12506 {
12507     uint8_t buf[4];
12508
12509     stl_le_p(buf, val);
12510
12511     /* Linux crc32c converts the output to one's complement.  */
12512     return crc32c(acc, buf, bytes) ^ 0xffffffff;
12513 }
12514
12515 /* Return the exception level to which FP-disabled exceptions should
12516  * be taken, or 0 if FP is enabled.
12517  */
12518 static inline int fp_exception_el(CPUARMState *env)
12519 {
12520 #ifndef CONFIG_USER_ONLY
12521     int fpen;
12522     int cur_el = arm_current_el(env);
12523
12524     /* CPACR and the CPTR registers don't exist before v6, so FP is
12525      * always accessible
12526      */
12527     if (!arm_feature(env, ARM_FEATURE_V6)) {
12528         return 0;
12529     }
12530
12531     /* The CPACR controls traps to EL1, or PL1 if we're 32 bit:
12532      * 0, 2 : trap EL0 and EL1/PL1 accesses
12533      * 1    : trap only EL0 accesses
12534      * 3    : trap no accesses
12535      */
12536     fpen = extract32(env->cp15.cpacr_el1, 20, 2);
12537     switch (fpen) {
12538     case 0:
12539     case 2:
12540         if (cur_el == 0 || cur_el == 1) {
12541             /* Trap to PL1, which might be EL1 or EL3 */
12542             if (arm_is_secure(env) && !arm_el_is_aa64(env, 3)) {
12543                 return 3;
12544             }
12545             return 1;
12546         }
12547         if (cur_el == 3 && !is_a64(env)) {
12548             /* Secure PL1 running at EL3 */
12549             return 3;
12550         }
12551         break;
12552     case 1:
12553         if (cur_el == 0) {
12554             return 1;
12555         }
12556         break;
12557     case 3:
12558         break;
12559     }
12560
12561     /* For the CPTR registers we don't need to guard with an ARM_FEATURE
12562      * check because zero bits in the registers mean "don't trap".
12563      */
12564
12565     /* CPTR_EL2 : present in v7VE or v8 */
12566     if (cur_el <= 2 && extract32(env->cp15.cptr_el[2], 10, 1)
12567         && !arm_is_secure_below_el3(env)) {
12568         /* Trap FP ops at EL2, NS-EL1 or NS-EL0 to EL2 */
12569         return 2;
12570     }
12571
12572     /* CPTR_EL3 : present in v8 */
12573     if (extract32(env->cp15.cptr_el[3], 10, 1)) {
12574         /* Trap all FP ops to EL3 */
12575         return 3;
12576     }
12577 #endif
12578     return 0;
12579 }
12580
12581 void cpu_get_tb_cpu_state(CPUARMState *env, target_ulong *pc,
12582                           target_ulong *cs_base, uint32_t *pflags)
12583 {
12584     ARMMMUIdx mmu_idx = core_to_arm_mmu_idx(env, cpu_mmu_index(env, false));
12585     int fp_el = fp_exception_el(env);
12586     uint32_t flags;
12587
12588     if (is_a64(env)) {
12589         *pc = env->pc;
12590         flags = ARM_TBFLAG_AARCH64_STATE_MASK;
12591         /* Get control bits for tagged addresses */
12592         flags |= (arm_regime_tbi0(env, mmu_idx) << ARM_TBFLAG_TBI0_SHIFT);
12593         flags |= (arm_regime_tbi1(env, mmu_idx) << ARM_TBFLAG_TBI1_SHIFT);
12594
12595         if (arm_feature(env, ARM_FEATURE_SVE)) {
12596             int sve_el = sve_exception_el(env);
12597             uint32_t zcr_len;
12598
12599             /* If SVE is disabled, but FP is enabled,
12600              * then the effective len is 0.
12601              */
12602             if (sve_el != 0 && fp_el == 0) {
12603                 zcr_len = 0;
12604             } else {
12605                 int current_el = arm_current_el(env);
12606                 ARMCPU *cpu = arm_env_get_cpu(env);
12607
12608                 zcr_len = cpu->sve_max_vq - 1;
12609                 if (current_el <= 1) {
12610                     zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[1]);
12611                 }
12612                 if (current_el < 2 && arm_feature(env, ARM_FEATURE_EL2)) {
12613                     zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[2]);
12614                 }
12615                 if (current_el < 3 && arm_feature(env, ARM_FEATURE_EL3)) {
12616                     zcr_len = MIN(zcr_len, 0xf & (uint32_t)env->vfp.zcr_el[3]);
12617                 }
12618             }
12619             flags |= sve_el << ARM_TBFLAG_SVEEXC_EL_SHIFT;
12620             flags |= zcr_len << ARM_TBFLAG_ZCR_LEN_SHIFT;
12621         }
12622     } else {
12623         *pc = env->regs[15];
12624         flags = (env->thumb << ARM_TBFLAG_THUMB_SHIFT)
12625             | (env->vfp.vec_len << ARM_TBFLAG_VECLEN_SHIFT)
12626             | (env->vfp.vec_stride << ARM_TBFLAG_VECSTRIDE_SHIFT)
12627             | (env->condexec_bits << ARM_TBFLAG_CONDEXEC_SHIFT)
12628             | (arm_sctlr_b(env) << ARM_TBFLAG_SCTLR_B_SHIFT);
12629         if (!(access_secure_reg(env))) {
12630             flags |= ARM_TBFLAG_NS_MASK;
12631         }
12632         if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)
12633             || arm_el_is_aa64(env, 1)) {
12634             flags |= ARM_TBFLAG_VFPEN_MASK;
12635         }
12636         flags |= (extract32(env->cp15.c15_cpar, 0, 2)
12637                   << ARM_TBFLAG_XSCALE_CPAR_SHIFT);
12638     }
12639
12640     flags |= (arm_to_core_mmu_idx(mmu_idx) << ARM_TBFLAG_MMUIDX_SHIFT);
12641
12642     /* The SS_ACTIVE and PSTATE_SS bits correspond to the state machine
12643      * states defined in the ARM ARM for software singlestep:
12644      *  SS_ACTIVE   PSTATE.SS   State
12645      *     0            x       Inactive (the TB flag for SS is always 0)
12646      *     1            0       Active-pending
12647      *     1            1       Active-not-pending
12648      */
12649     if (arm_singlestep_active(env)) {
12650         flags |= ARM_TBFLAG_SS_ACTIVE_MASK;
12651         if (is_a64(env)) {
12652             if (env->pstate & PSTATE_SS) {
12653                 flags |= ARM_TBFLAG_PSTATE_SS_MASK;
12654             }
12655         } else {
12656             if (env->uncached_cpsr & PSTATE_SS) {
12657                 flags |= ARM_TBFLAG_PSTATE_SS_MASK;
12658             }
12659         }
12660     }
12661     if (arm_cpu_data_is_big_endian(env)) {
12662         flags |= ARM_TBFLAG_BE_DATA_MASK;
12663     }
12664     flags |= fp_el << ARM_TBFLAG_FPEXC_EL_SHIFT;
12665
12666     if (arm_v7m_is_handler_mode(env)) {
12667         flags |= ARM_TBFLAG_HANDLER_MASK;
12668     }
12669
12670     *pflags = flags;
12671     *cs_base = 0;
12672 }
This page took 0.719598 seconds and 2 git commands to generate.