]> git.proxmox.com Git - mirror_qemu.git/blame - target-arm/helper.c
arm: soc-dma: use hwaddr instead of target_ulong in printf
[mirror_qemu.git] / target-arm / helper.c
CommitLineData
b5ff1b31 1#include "cpu.h"
ccd38087 2#include "internals.h"
022c62cb 3#include "exec/gdbstub.h"
2ef6175a 4#include "exec/helper-proto.h"
1de7afc9 5#include "qemu/host-utils.h"
78027bb6 6#include "sysemu/arch_init.h"
9c17d615 7#include "sysemu/sysemu.h"
1de7afc9 8#include "qemu/bitops.h"
eb0ecd5a 9#include "qemu/crc32c.h"
f08b6170 10#include "exec/cpu_ldst.h"
1d854765 11#include "arm_ldst.h"
eb0ecd5a 12#include <zlib.h> /* For crc32 */
cfe67cef 13#include "exec/semihost.h"
0b03bdfc 14
352c98e5
LV
15#define ARM_CPU_FREQ 1000000000 /* FIXME: 1 GHz, should be configurable */
16
4a501606 17#ifndef CONFIG_USER_ONLY
af51f566
EI
18static bool get_phys_addr(CPUARMState *env, target_ulong address,
19 int access_type, ARMMMUIdx mmu_idx,
20 hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
e14b5a23
EI
21 target_ulong *page_size, uint32_t *fsr,
22 ARMMMUFaultInfo *fi);
7c2cb42b 23
37785977
EI
24static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
25 int access_type, ARMMMUIdx mmu_idx,
26 hwaddr *phys_ptr, MemTxAttrs *txattrs, int *prot,
27 target_ulong *page_size_ptr, uint32_t *fsr,
28 ARMMMUFaultInfo *fi);
29
7c2cb42b
AF
30/* Definitions for the PMCCNTR and PMCR registers */
31#define PMCRD 0x8
32#define PMCRC 0x4
33#define PMCRE 0x1
4a501606
PM
34#endif
35
0ecb72a5 36static int vfp_gdb_get_reg(CPUARMState *env, uint8_t *buf, int reg)
56aebc89
PB
37{
38 int nregs;
39
40 /* VFP data registers are always little-endian. */
41 nregs = arm_feature(env, ARM_FEATURE_VFP3) ? 32 : 16;
42 if (reg < nregs) {
43 stfq_le_p(buf, env->vfp.regs[reg]);
44 return 8;
45 }
46 if (arm_feature(env, ARM_FEATURE_NEON)) {
47 /* Aliases for Q regs. */
48 nregs += 16;
49 if (reg < nregs) {
50 stfq_le_p(buf, env->vfp.regs[(reg - 32) * 2]);
51 stfq_le_p(buf + 8, env->vfp.regs[(reg - 32) * 2 + 1]);
52 return 16;
53 }
54 }
55 switch (reg - nregs) {
56 case 0: stl_p(buf, env->vfp.xregs[ARM_VFP_FPSID]); return 4;
57 case 1: stl_p(buf, env->vfp.xregs[ARM_VFP_FPSCR]); return 4;
58 case 2: stl_p(buf, env->vfp.xregs[ARM_VFP_FPEXC]); return 4;
59 }
60 return 0;
61}
62
0ecb72a5 63static int vfp_gdb_set_reg(CPUARMState *env, uint8_t *buf, int reg)
56aebc89
PB
64{
65 int nregs;
66
67 nregs = arm_feature(env, ARM_FEATURE_VFP3) ? 32 : 16;
68 if (reg < nregs) {
69 env->vfp.regs[reg] = ldfq_le_p(buf);
70 return 8;
71 }
72 if (arm_feature(env, ARM_FEATURE_NEON)) {
73 nregs += 16;
74 if (reg < nregs) {
75 env->vfp.regs[(reg - 32) * 2] = ldfq_le_p(buf);
76 env->vfp.regs[(reg - 32) * 2 + 1] = ldfq_le_p(buf + 8);
77 return 16;
78 }
79 }
80 switch (reg - nregs) {
81 case 0: env->vfp.xregs[ARM_VFP_FPSID] = ldl_p(buf); return 4;
82 case 1: env->vfp.xregs[ARM_VFP_FPSCR] = ldl_p(buf); return 4;
71b3c3de 83 case 2: env->vfp.xregs[ARM_VFP_FPEXC] = ldl_p(buf) & (1 << 30); return 4;
56aebc89
PB
84 }
85 return 0;
86}
87
6a669427
PM
88static int aarch64_fpu_gdb_get_reg(CPUARMState *env, uint8_t *buf, int reg)
89{
90 switch (reg) {
91 case 0 ... 31:
92 /* 128 bit FP register */
93 stfq_le_p(buf, env->vfp.regs[reg * 2]);
94 stfq_le_p(buf + 8, env->vfp.regs[reg * 2 + 1]);
95 return 16;
96 case 32:
97 /* FPSR */
98 stl_p(buf, vfp_get_fpsr(env));
99 return 4;
100 case 33:
101 /* FPCR */
102 stl_p(buf, vfp_get_fpcr(env));
103 return 4;
104 default:
105 return 0;
106 }
107}
108
109static int aarch64_fpu_gdb_set_reg(CPUARMState *env, uint8_t *buf, int reg)
110{
111 switch (reg) {
112 case 0 ... 31:
113 /* 128 bit FP register */
114 env->vfp.regs[reg * 2] = ldfq_le_p(buf);
115 env->vfp.regs[reg * 2 + 1] = ldfq_le_p(buf + 8);
116 return 16;
117 case 32:
118 /* FPSR */
119 vfp_set_fpsr(env, ldl_p(buf));
120 return 4;
121 case 33:
122 /* FPCR */
123 vfp_set_fpcr(env, ldl_p(buf));
124 return 4;
125 default:
126 return 0;
127 }
128}
129
c4241c7d 130static uint64_t raw_read(CPUARMState *env, const ARMCPRegInfo *ri)
d4e6df63 131{
375421cc 132 assert(ri->fieldoffset);
67ed771d 133 if (cpreg_field_is_64bit(ri)) {
c4241c7d 134 return CPREG_FIELD64(env, ri);
22d9e1a9 135 } else {
c4241c7d 136 return CPREG_FIELD32(env, ri);
22d9e1a9 137 }
d4e6df63
PM
138}
139
c4241c7d
PM
140static void raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
141 uint64_t value)
d4e6df63 142{
375421cc 143 assert(ri->fieldoffset);
67ed771d 144 if (cpreg_field_is_64bit(ri)) {
22d9e1a9
PM
145 CPREG_FIELD64(env, ri) = value;
146 } else {
147 CPREG_FIELD32(env, ri) = value;
148 }
d4e6df63
PM
149}
150
11f136ee
FA
151static void *raw_ptr(CPUARMState *env, const ARMCPRegInfo *ri)
152{
153 return (char *)env + ri->fieldoffset;
154}
155
49a66191 156uint64_t read_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri)
721fae12 157{
59a1c327 158 /* Raw read of a coprocessor register (as needed for migration, etc). */
721fae12 159 if (ri->type & ARM_CP_CONST) {
59a1c327 160 return ri->resetvalue;
721fae12 161 } else if (ri->raw_readfn) {
59a1c327 162 return ri->raw_readfn(env, ri);
721fae12 163 } else if (ri->readfn) {
59a1c327 164 return ri->readfn(env, ri);
721fae12 165 } else {
59a1c327 166 return raw_read(env, ri);
721fae12 167 }
721fae12
PM
168}
169
59a1c327 170static void write_raw_cp_reg(CPUARMState *env, const ARMCPRegInfo *ri,
7900e9f1 171 uint64_t v)
721fae12
PM
172{
173 /* Raw write of a coprocessor register (as needed for migration, etc).
721fae12
PM
174 * Note that constant registers are treated as write-ignored; the
175 * caller should check for success by whether a readback gives the
176 * value written.
177 */
178 if (ri->type & ARM_CP_CONST) {
59a1c327 179 return;
721fae12 180 } else if (ri->raw_writefn) {
c4241c7d 181 ri->raw_writefn(env, ri, v);
721fae12 182 } else if (ri->writefn) {
c4241c7d 183 ri->writefn(env, ri, v);
721fae12 184 } else {
afb2530f 185 raw_write(env, ri, v);
721fae12 186 }
721fae12
PM
187}
188
375421cc
PM
189static bool raw_accessors_invalid(const ARMCPRegInfo *ri)
190{
191 /* Return true if the regdef would cause an assertion if you called
192 * read_raw_cp_reg() or write_raw_cp_reg() on it (ie if it is a
193 * program bug for it not to have the NO_RAW flag).
194 * NB that returning false here doesn't necessarily mean that calling
195 * read/write_raw_cp_reg() is safe, because we can't distinguish "has
196 * read/write access functions which are safe for raw use" from "has
197 * read/write access functions which have side effects but has forgotten
198 * to provide raw access functions".
199 * The tests here line up with the conditions in read/write_raw_cp_reg()
200 * and assertions in raw_read()/raw_write().
201 */
202 if ((ri->type & ARM_CP_CONST) ||
203 ri->fieldoffset ||
204 ((ri->raw_writefn || ri->writefn) && (ri->raw_readfn || ri->readfn))) {
205 return false;
206 }
207 return true;
208}
209
721fae12
PM
210bool write_cpustate_to_list(ARMCPU *cpu)
211{
212 /* Write the coprocessor state from cpu->env to the (index,value) list. */
213 int i;
214 bool ok = true;
215
216 for (i = 0; i < cpu->cpreg_array_len; i++) {
217 uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
218 const ARMCPRegInfo *ri;
59a1c327 219
60322b39 220 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
721fae12
PM
221 if (!ri) {
222 ok = false;
223 continue;
224 }
7a0e58fa 225 if (ri->type & ARM_CP_NO_RAW) {
721fae12
PM
226 continue;
227 }
59a1c327 228 cpu->cpreg_values[i] = read_raw_cp_reg(&cpu->env, ri);
721fae12
PM
229 }
230 return ok;
231}
232
233bool write_list_to_cpustate(ARMCPU *cpu)
234{
235 int i;
236 bool ok = true;
237
238 for (i = 0; i < cpu->cpreg_array_len; i++) {
239 uint32_t regidx = kvm_to_cpreg_id(cpu->cpreg_indexes[i]);
240 uint64_t v = cpu->cpreg_values[i];
721fae12
PM
241 const ARMCPRegInfo *ri;
242
60322b39 243 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
721fae12
PM
244 if (!ri) {
245 ok = false;
246 continue;
247 }
7a0e58fa 248 if (ri->type & ARM_CP_NO_RAW) {
721fae12
PM
249 continue;
250 }
251 /* Write value and confirm it reads back as written
252 * (to catch read-only registers and partially read-only
253 * registers where the incoming migration value doesn't match)
254 */
59a1c327
PM
255 write_raw_cp_reg(&cpu->env, ri, v);
256 if (read_raw_cp_reg(&cpu->env, ri) != v) {
721fae12
PM
257 ok = false;
258 }
259 }
260 return ok;
261}
262
263static void add_cpreg_to_list(gpointer key, gpointer opaque)
264{
265 ARMCPU *cpu = opaque;
266 uint64_t regidx;
267 const ARMCPRegInfo *ri;
268
269 regidx = *(uint32_t *)key;
60322b39 270 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
721fae12 271
7a0e58fa 272 if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
721fae12
PM
273 cpu->cpreg_indexes[cpu->cpreg_array_len] = cpreg_to_kvm_id(regidx);
274 /* The value array need not be initialized at this point */
275 cpu->cpreg_array_len++;
276 }
277}
278
279static void count_cpreg(gpointer key, gpointer opaque)
280{
281 ARMCPU *cpu = opaque;
282 uint64_t regidx;
283 const ARMCPRegInfo *ri;
284
285 regidx = *(uint32_t *)key;
60322b39 286 ri = get_arm_cp_reginfo(cpu->cp_regs, regidx);
721fae12 287
7a0e58fa 288 if (!(ri->type & (ARM_CP_NO_RAW|ARM_CP_ALIAS))) {
721fae12
PM
289 cpu->cpreg_array_len++;
290 }
291}
292
293static gint cpreg_key_compare(gconstpointer a, gconstpointer b)
294{
cbf239b7
AR
295 uint64_t aidx = cpreg_to_kvm_id(*(uint32_t *)a);
296 uint64_t bidx = cpreg_to_kvm_id(*(uint32_t *)b);
721fae12 297
cbf239b7
AR
298 if (aidx > bidx) {
299 return 1;
300 }
301 if (aidx < bidx) {
302 return -1;
303 }
304 return 0;
721fae12
PM
305}
306
307void init_cpreg_list(ARMCPU *cpu)
308{
309 /* Initialise the cpreg_tuples[] array based on the cp_regs hash.
310 * Note that we require cpreg_tuples[] to be sorted by key ID.
311 */
57b6d95e 312 GList *keys;
721fae12
PM
313 int arraylen;
314
57b6d95e 315 keys = g_hash_table_get_keys(cpu->cp_regs);
721fae12
PM
316 keys = g_list_sort(keys, cpreg_key_compare);
317
318 cpu->cpreg_array_len = 0;
319
320 g_list_foreach(keys, count_cpreg, cpu);
321
322 arraylen = cpu->cpreg_array_len;
323 cpu->cpreg_indexes = g_new(uint64_t, arraylen);
324 cpu->cpreg_values = g_new(uint64_t, arraylen);
325 cpu->cpreg_vmstate_indexes = g_new(uint64_t, arraylen);
326 cpu->cpreg_vmstate_values = g_new(uint64_t, arraylen);
327 cpu->cpreg_vmstate_array_len = cpu->cpreg_array_len;
328 cpu->cpreg_array_len = 0;
329
330 g_list_foreach(keys, add_cpreg_to_list, cpu);
331
332 assert(cpu->cpreg_array_len == arraylen);
333
334 g_list_free(keys);
335}
336
68e9c2fe
EI
337/*
338 * Some registers are not accessible if EL3.NS=0 and EL3 is using AArch32 but
339 * they are accessible when EL3 is using AArch64 regardless of EL3.NS.
340 *
341 * access_el3_aa32ns: Used to check AArch32 register views.
342 * access_el3_aa32ns_aa64any: Used to check both AArch32/64 register views.
343 */
344static CPAccessResult access_el3_aa32ns(CPUARMState *env,
345 const ARMCPRegInfo *ri)
346{
347 bool secure = arm_is_secure_below_el3(env);
348
349 assert(!arm_el_is_aa64(env, 3));
350 if (secure) {
351 return CP_ACCESS_TRAP_UNCATEGORIZED;
352 }
353 return CP_ACCESS_OK;
354}
355
356static CPAccessResult access_el3_aa32ns_aa64any(CPUARMState *env,
357 const ARMCPRegInfo *ri)
358{
359 if (!arm_el_is_aa64(env, 3)) {
360 return access_el3_aa32ns(env, ri);
361 }
362 return CP_ACCESS_OK;
363}
364
c4241c7d 365static void dacr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
c983fe6c 366{
00c8cb0a
AF
367 ARMCPU *cpu = arm_env_get_cpu(env);
368
8d5c773e 369 raw_write(env, ri, value);
00c8cb0a 370 tlb_flush(CPU(cpu), 1); /* Flush TLB as domain not tracked in TLB */
c983fe6c
PM
371}
372
c4241c7d 373static void fcse_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
08de207b 374{
00c8cb0a
AF
375 ARMCPU *cpu = arm_env_get_cpu(env);
376
8d5c773e 377 if (raw_read(env, ri) != value) {
08de207b
PM
378 /* Unlike real hardware the qemu TLB uses virtual addresses,
379 * not modified virtual addresses, so this causes a TLB flush.
380 */
00c8cb0a 381 tlb_flush(CPU(cpu), 1);
8d5c773e 382 raw_write(env, ri, value);
08de207b 383 }
08de207b 384}
c4241c7d
PM
385
386static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
387 uint64_t value)
08de207b 388{
00c8cb0a
AF
389 ARMCPU *cpu = arm_env_get_cpu(env);
390
8d5c773e 391 if (raw_read(env, ri) != value && !arm_feature(env, ARM_FEATURE_MPU)
014406b5 392 && !extended_addresses_enabled(env)) {
08de207b
PM
393 /* For VMSA (when not using the LPAE long descriptor page table
394 * format) this register includes the ASID, so do a TLB flush.
395 * For PMSA it is purely a process ID and no action is needed.
396 */
00c8cb0a 397 tlb_flush(CPU(cpu), 1);
08de207b 398 }
8d5c773e 399 raw_write(env, ri, value);
08de207b
PM
400}
401
c4241c7d
PM
402static void tlbiall_write(CPUARMState *env, const ARMCPRegInfo *ri,
403 uint64_t value)
d929823f
PM
404{
405 /* Invalidate all (TLBIALL) */
00c8cb0a
AF
406 ARMCPU *cpu = arm_env_get_cpu(env);
407
408 tlb_flush(CPU(cpu), 1);
d929823f
PM
409}
410
c4241c7d
PM
411static void tlbimva_write(CPUARMState *env, const ARMCPRegInfo *ri,
412 uint64_t value)
d929823f
PM
413{
414 /* Invalidate single TLB entry by MVA and ASID (TLBIMVA) */
31b030d4
AF
415 ARMCPU *cpu = arm_env_get_cpu(env);
416
417 tlb_flush_page(CPU(cpu), value & TARGET_PAGE_MASK);
d929823f
PM
418}
419
c4241c7d
PM
420static void tlbiasid_write(CPUARMState *env, const ARMCPRegInfo *ri,
421 uint64_t value)
d929823f
PM
422{
423 /* Invalidate by ASID (TLBIASID) */
00c8cb0a
AF
424 ARMCPU *cpu = arm_env_get_cpu(env);
425
426 tlb_flush(CPU(cpu), value == 0);
d929823f
PM
427}
428
c4241c7d
PM
429static void tlbimvaa_write(CPUARMState *env, const ARMCPRegInfo *ri,
430 uint64_t value)
d929823f
PM
431{
432 /* Invalidate single entry by MVA, all ASIDs (TLBIMVAA) */
31b030d4
AF
433 ARMCPU *cpu = arm_env_get_cpu(env);
434
435 tlb_flush_page(CPU(cpu), value & TARGET_PAGE_MASK);
d929823f
PM
436}
437
fa439fc5
PM
438/* IS variants of TLB operations must affect all cores */
439static void tlbiall_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
440 uint64_t value)
441{
442 CPUState *other_cs;
443
444 CPU_FOREACH(other_cs) {
445 tlb_flush(other_cs, 1);
446 }
447}
448
449static void tlbiasid_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
450 uint64_t value)
451{
452 CPUState *other_cs;
453
454 CPU_FOREACH(other_cs) {
455 tlb_flush(other_cs, value == 0);
456 }
457}
458
459static void tlbimva_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
460 uint64_t value)
461{
462 CPUState *other_cs;
463
464 CPU_FOREACH(other_cs) {
465 tlb_flush_page(other_cs, value & TARGET_PAGE_MASK);
466 }
467}
468
469static void tlbimvaa_is_write(CPUARMState *env, const ARMCPRegInfo *ri,
470 uint64_t value)
471{
472 CPUState *other_cs;
473
474 CPU_FOREACH(other_cs) {
475 tlb_flush_page(other_cs, value & TARGET_PAGE_MASK);
476 }
477}
478
e9aa6c21 479static const ARMCPRegInfo cp_reginfo[] = {
54bf36ed
FA
480 /* Define the secure and non-secure FCSE identifier CP registers
481 * separately because there is no secure bank in V8 (no _EL3). This allows
482 * the secure register to be properly reset and migrated. There is also no
483 * v8 EL1 version of the register so the non-secure instance stands alone.
484 */
485 { .name = "FCSEIDR(NS)",
486 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
487 .access = PL1_RW, .secure = ARM_CP_SECSTATE_NS,
488 .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_ns),
489 .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
490 { .name = "FCSEIDR(S)",
491 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 0,
492 .access = PL1_RW, .secure = ARM_CP_SECSTATE_S,
493 .fieldoffset = offsetof(CPUARMState, cp15.fcseidr_s),
d4e6df63 494 .resetvalue = 0, .writefn = fcse_write, .raw_writefn = raw_write, },
54bf36ed
FA
495 /* Define the secure and non-secure context identifier CP registers
496 * separately because there is no secure bank in V8 (no _EL3). This allows
497 * the secure register to be properly reset and migrated. In the
498 * non-secure case, the 32-bit register will have reset and migration
499 * disabled during registration as it is handled by the 64-bit instance.
500 */
501 { .name = "CONTEXTIDR_EL1", .state = ARM_CP_STATE_BOTH,
014406b5 502 .opc0 = 3, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
54bf36ed
FA
503 .access = PL1_RW, .secure = ARM_CP_SECSTATE_NS,
504 .fieldoffset = offsetof(CPUARMState, cp15.contextidr_el[1]),
505 .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
506 { .name = "CONTEXTIDR(S)", .state = ARM_CP_STATE_AA32,
507 .cp = 15, .opc1 = 0, .crn = 13, .crm = 0, .opc2 = 1,
508 .access = PL1_RW, .secure = ARM_CP_SECSTATE_S,
509 .fieldoffset = offsetof(CPUARMState, cp15.contextidr_s),
d4e6df63 510 .resetvalue = 0, .writefn = contextidr_write, .raw_writefn = raw_write, },
9449fdf6
PM
511 REGINFO_SENTINEL
512};
513
514static const ARMCPRegInfo not_v8_cp_reginfo[] = {
515 /* NB: Some of these registers exist in v8 but with more precise
516 * definitions that don't use CP_ANY wildcards (mostly in v8_cp_reginfo[]).
517 */
518 /* MMU Domain access control / MPU write buffer control */
0c17d68c
FA
519 { .name = "DACR",
520 .cp = 15, .opc1 = CP_ANY, .crn = 3, .crm = CP_ANY, .opc2 = CP_ANY,
521 .access = PL1_RW, .resetvalue = 0,
522 .writefn = dacr_write, .raw_writefn = raw_write,
523 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
524 offsetoflow32(CPUARMState, cp15.dacr_ns) } },
a903c449
EI
525 /* ARMv7 allocates a range of implementation defined TLB LOCKDOWN regs.
526 * For v6 and v5, these mappings are overly broad.
4fdd17dd 527 */
a903c449
EI
528 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 0,
529 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
530 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 1,
531 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
532 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 4,
533 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
534 { .name = "TLB_LOCKDOWN", .cp = 15, .crn = 10, .crm = 8,
4fdd17dd 535 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_NOP },
c4804214
PM
536 /* Cache maintenance ops; some of this space may be overridden later. */
537 { .name = "CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
538 .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
539 .type = ARM_CP_NOP | ARM_CP_OVERRIDE },
e9aa6c21
PM
540 REGINFO_SENTINEL
541};
542
7d57f408
PM
543static const ARMCPRegInfo not_v6_cp_reginfo[] = {
544 /* Not all pre-v6 cores implemented this WFI, so this is slightly
545 * over-broad.
546 */
547 { .name = "WFI_v5", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = 2,
548 .access = PL1_W, .type = ARM_CP_WFI },
549 REGINFO_SENTINEL
550};
551
552static const ARMCPRegInfo not_v7_cp_reginfo[] = {
553 /* Standard v6 WFI (also used in some pre-v6 cores); not in v7 (which
554 * is UNPREDICTABLE; we choose to NOP as most implementations do).
555 */
556 { .name = "WFI_v6", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
557 .access = PL1_W, .type = ARM_CP_WFI },
34f90529
PM
558 /* L1 cache lockdown. Not architectural in v6 and earlier but in practice
559 * implemented in 926, 946, 1026, 1136, 1176 and 11MPCore. StrongARM and
560 * OMAPCP will override this space.
561 */
562 { .name = "DLOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 0,
563 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_data),
564 .resetvalue = 0 },
565 { .name = "ILOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 0, .opc2 = 1,
566 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_insn),
567 .resetvalue = 0 },
776d4e5c
PM
568 /* v6 doesn't have the cache ID registers but Linux reads them anyway */
569 { .name = "DUMMY", .cp = 15, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = CP_ANY,
7a0e58fa 570 .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
d4e6df63 571 .resetvalue = 0 },
50300698
PM
572 /* We don't implement pre-v7 debug but most CPUs had at least a DBGDIDR;
573 * implementing it as RAZ means the "debug architecture version" bits
574 * will read as a reserved value, which should cause Linux to not try
575 * to use the debug hardware.
576 */
577 { .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 0,
578 .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = 0 },
995939a6
PM
579 /* MMU TLB control. Note that the wildcarding means we cover not just
580 * the unified TLB ops but also the dside/iside/inner-shareable variants.
581 */
582 { .name = "TLBIALL", .cp = 15, .crn = 8, .crm = CP_ANY,
583 .opc1 = CP_ANY, .opc2 = 0, .access = PL1_W, .writefn = tlbiall_write,
7a0e58fa 584 .type = ARM_CP_NO_RAW },
995939a6
PM
585 { .name = "TLBIMVA", .cp = 15, .crn = 8, .crm = CP_ANY,
586 .opc1 = CP_ANY, .opc2 = 1, .access = PL1_W, .writefn = tlbimva_write,
7a0e58fa 587 .type = ARM_CP_NO_RAW },
995939a6
PM
588 { .name = "TLBIASID", .cp = 15, .crn = 8, .crm = CP_ANY,
589 .opc1 = CP_ANY, .opc2 = 2, .access = PL1_W, .writefn = tlbiasid_write,
7a0e58fa 590 .type = ARM_CP_NO_RAW },
995939a6
PM
591 { .name = "TLBIMVAA", .cp = 15, .crn = 8, .crm = CP_ANY,
592 .opc1 = CP_ANY, .opc2 = 3, .access = PL1_W, .writefn = tlbimvaa_write,
7a0e58fa 593 .type = ARM_CP_NO_RAW },
a903c449
EI
594 { .name = "PRRR", .cp = 15, .crn = 10, .crm = 2,
595 .opc1 = 0, .opc2 = 0, .access = PL1_RW, .type = ARM_CP_NOP },
596 { .name = "NMRR", .cp = 15, .crn = 10, .crm = 2,
597 .opc1 = 0, .opc2 = 1, .access = PL1_RW, .type = ARM_CP_NOP },
7d57f408
PM
598 REGINFO_SENTINEL
599};
600
c4241c7d
PM
601static void cpacr_write(CPUARMState *env, const ARMCPRegInfo *ri,
602 uint64_t value)
2771db27 603{
f0aff255
FA
604 uint32_t mask = 0;
605
606 /* In ARMv8 most bits of CPACR_EL1 are RES0. */
607 if (!arm_feature(env, ARM_FEATURE_V8)) {
608 /* ARMv7 defines bits for unimplemented coprocessors as RAZ/WI.
609 * ASEDIS [31] and D32DIS [30] are both UNK/SBZP without VFP.
610 * TRCDIS [28] is RAZ/WI since we do not implement a trace macrocell.
611 */
612 if (arm_feature(env, ARM_FEATURE_VFP)) {
613 /* VFP coprocessor: cp10 & cp11 [23:20] */
614 mask |= (1 << 31) | (1 << 30) | (0xf << 20);
615
616 if (!arm_feature(env, ARM_FEATURE_NEON)) {
617 /* ASEDIS [31] bit is RAO/WI */
618 value |= (1 << 31);
619 }
620
621 /* VFPv3 and upwards with NEON implement 32 double precision
622 * registers (D0-D31).
623 */
624 if (!arm_feature(env, ARM_FEATURE_NEON) ||
625 !arm_feature(env, ARM_FEATURE_VFP3)) {
626 /* D32DIS [30] is RAO/WI if D16-31 are not implemented. */
627 value |= (1 << 30);
628 }
629 }
630 value &= mask;
2771db27 631 }
7ebd5f2e 632 env->cp15.cpacr_el1 = value;
2771db27
PM
633}
634
c6f19164
GB
635static CPAccessResult cpacr_access(CPUARMState *env, const ARMCPRegInfo *ri)
636{
637 if (arm_feature(env, ARM_FEATURE_V8)) {
638 /* Check if CPACR accesses are to be trapped to EL2 */
639 if (arm_current_el(env) == 1 &&
640 (env->cp15.cptr_el[2] & CPTR_TCPAC) && !arm_is_secure(env)) {
641 return CP_ACCESS_TRAP_EL2;
642 /* Check if CPACR accesses are to be trapped to EL3 */
643 } else if (arm_current_el(env) < 3 &&
644 (env->cp15.cptr_el[3] & CPTR_TCPAC)) {
645 return CP_ACCESS_TRAP_EL3;
646 }
647 }
648
649 return CP_ACCESS_OK;
650}
651
652static CPAccessResult cptr_access(CPUARMState *env, const ARMCPRegInfo *ri)
653{
654 /* Check if CPTR accesses are set to trap to EL3 */
655 if (arm_current_el(env) == 2 && (env->cp15.cptr_el[3] & CPTR_TCPAC)) {
656 return CP_ACCESS_TRAP_EL3;
657 }
658
659 return CP_ACCESS_OK;
660}
661
7d57f408
PM
662static const ARMCPRegInfo v6_cp_reginfo[] = {
663 /* prefetch by MVA in v6, NOP in v7 */
664 { .name = "MVA_prefetch",
665 .cp = 15, .crn = 7, .crm = 13, .opc1 = 0, .opc2 = 1,
666 .access = PL1_W, .type = ARM_CP_NOP },
6df99dec
SS
667 /* We need to break the TB after ISB to execute self-modifying code
668 * correctly and also to take any pending interrupts immediately.
669 * So use arm_cp_write_ignore() function instead of ARM_CP_NOP flag.
670 */
7d57f408 671 { .name = "ISB", .cp = 15, .crn = 7, .crm = 5, .opc1 = 0, .opc2 = 4,
6df99dec 672 .access = PL0_W, .type = ARM_CP_NO_RAW, .writefn = arm_cp_write_ignore },
091fd17c 673 { .name = "DSB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 4,
7d57f408 674 .access = PL0_W, .type = ARM_CP_NOP },
091fd17c 675 { .name = "DMB", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 5,
7d57f408 676 .access = PL0_W, .type = ARM_CP_NOP },
06d76f31 677 { .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 2,
6cd8a264 678 .access = PL1_RW,
b848ce2b
FA
679 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ifar_s),
680 offsetof(CPUARMState, cp15.ifar_ns) },
06d76f31
PM
681 .resetvalue = 0, },
682 /* Watchpoint Fault Address Register : should actually only be present
683 * for 1136, 1176, 11MPCore.
684 */
685 { .name = "WFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1,
686 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0, },
34222fb8 687 { .name = "CPACR", .state = ARM_CP_STATE_BOTH, .opc0 = 3,
c6f19164 688 .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 2, .accessfn = cpacr_access,
7ebd5f2e 689 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.cpacr_el1),
2771db27 690 .resetvalue = 0, .writefn = cpacr_write },
7d57f408
PM
691 REGINFO_SENTINEL
692};
693
fcd25206 694static CPAccessResult pmreg_access(CPUARMState *env, const ARMCPRegInfo *ri)
200ac0ef 695{
3b163b01 696 /* Performance monitor registers user accessibility is controlled
fcd25206 697 * by PMUSERENR.
200ac0ef 698 */
dcbff19b 699 if (arm_current_el(env) == 0 && !env->cp15.c9_pmuserenr) {
fcd25206 700 return CP_ACCESS_TRAP;
200ac0ef 701 }
fcd25206 702 return CP_ACCESS_OK;
200ac0ef
PM
703}
704
7c2cb42b 705#ifndef CONFIG_USER_ONLY
87124fde
AF
706
707static inline bool arm_ccnt_enabled(CPUARMState *env)
708{
709 /* This does not support checking PMCCFILTR_EL0 register */
710
711 if (!(env->cp15.c9_pmcr & PMCRE)) {
712 return false;
713 }
714
715 return true;
716}
717
ec7b4ce4
AF
718void pmccntr_sync(CPUARMState *env)
719{
720 uint64_t temp_ticks;
721
352c98e5
LV
722 temp_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
723 ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
ec7b4ce4
AF
724
725 if (env->cp15.c9_pmcr & PMCRD) {
726 /* Increment once every 64 processor clock cycles */
727 temp_ticks /= 64;
728 }
729
730 if (arm_ccnt_enabled(env)) {
731 env->cp15.c15_ccnt = temp_ticks - env->cp15.c15_ccnt;
732 }
733}
734
c4241c7d
PM
735static void pmcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
736 uint64_t value)
200ac0ef 737{
942a155b 738 pmccntr_sync(env);
7c2cb42b
AF
739
740 if (value & PMCRC) {
741 /* The counter has been reset */
742 env->cp15.c15_ccnt = 0;
743 }
744
200ac0ef
PM
745 /* only the DP, X, D and E bits are writable */
746 env->cp15.c9_pmcr &= ~0x39;
747 env->cp15.c9_pmcr |= (value & 0x39);
7c2cb42b 748
942a155b 749 pmccntr_sync(env);
7c2cb42b
AF
750}
751
752static uint64_t pmccntr_read(CPUARMState *env, const ARMCPRegInfo *ri)
753{
c92c0687 754 uint64_t total_ticks;
7c2cb42b 755
942a155b 756 if (!arm_ccnt_enabled(env)) {
7c2cb42b
AF
757 /* Counter is disabled, do not change value */
758 return env->cp15.c15_ccnt;
759 }
760
352c98e5
LV
761 total_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
762 ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
7c2cb42b
AF
763
764 if (env->cp15.c9_pmcr & PMCRD) {
765 /* Increment once every 64 processor clock cycles */
766 total_ticks /= 64;
767 }
768 return total_ticks - env->cp15.c15_ccnt;
769}
770
771static void pmccntr_write(CPUARMState *env, const ARMCPRegInfo *ri,
772 uint64_t value)
773{
c92c0687 774 uint64_t total_ticks;
7c2cb42b 775
942a155b 776 if (!arm_ccnt_enabled(env)) {
7c2cb42b
AF
777 /* Counter is disabled, set the absolute value */
778 env->cp15.c15_ccnt = value;
779 return;
780 }
781
352c98e5
LV
782 total_ticks = muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL),
783 ARM_CPU_FREQ, NANOSECONDS_PER_SECOND);
7c2cb42b
AF
784
785 if (env->cp15.c9_pmcr & PMCRD) {
786 /* Increment once every 64 processor clock cycles */
787 total_ticks /= 64;
788 }
789 env->cp15.c15_ccnt = total_ticks - value;
200ac0ef 790}
421c7ebd
PC
791
792static void pmccntr_write32(CPUARMState *env, const ARMCPRegInfo *ri,
793 uint64_t value)
794{
795 uint64_t cur_val = pmccntr_read(env, NULL);
796
797 pmccntr_write(env, ri, deposit64(cur_val, 0, 32, value));
798}
799
ec7b4ce4
AF
800#else /* CONFIG_USER_ONLY */
801
802void pmccntr_sync(CPUARMState *env)
803{
804}
805
7c2cb42b 806#endif
200ac0ef 807
0614601c
AF
808static void pmccfiltr_write(CPUARMState *env, const ARMCPRegInfo *ri,
809 uint64_t value)
810{
811 pmccntr_sync(env);
812 env->cp15.pmccfiltr_el0 = value & 0x7E000000;
813 pmccntr_sync(env);
814}
815
c4241c7d 816static void pmcntenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
200ac0ef
PM
817 uint64_t value)
818{
200ac0ef
PM
819 value &= (1 << 31);
820 env->cp15.c9_pmcnten |= value;
200ac0ef
PM
821}
822
c4241c7d
PM
823static void pmcntenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
824 uint64_t value)
200ac0ef 825{
200ac0ef
PM
826 value &= (1 << 31);
827 env->cp15.c9_pmcnten &= ~value;
200ac0ef
PM
828}
829
c4241c7d
PM
830static void pmovsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
831 uint64_t value)
200ac0ef 832{
200ac0ef 833 env->cp15.c9_pmovsr &= ~value;
200ac0ef
PM
834}
835
c4241c7d
PM
836static void pmxevtyper_write(CPUARMState *env, const ARMCPRegInfo *ri,
837 uint64_t value)
200ac0ef 838{
200ac0ef 839 env->cp15.c9_pmxevtyper = value & 0xff;
200ac0ef
PM
840}
841
c4241c7d 842static void pmuserenr_write(CPUARMState *env, const ARMCPRegInfo *ri,
200ac0ef
PM
843 uint64_t value)
844{
845 env->cp15.c9_pmuserenr = value & 1;
200ac0ef
PM
846}
847
c4241c7d
PM
848static void pmintenset_write(CPUARMState *env, const ARMCPRegInfo *ri,
849 uint64_t value)
200ac0ef
PM
850{
851 /* We have no event counters so only the C bit can be changed */
852 value &= (1 << 31);
853 env->cp15.c9_pminten |= value;
200ac0ef
PM
854}
855
c4241c7d
PM
856static void pmintenclr_write(CPUARMState *env, const ARMCPRegInfo *ri,
857 uint64_t value)
200ac0ef
PM
858{
859 value &= (1 << 31);
860 env->cp15.c9_pminten &= ~value;
200ac0ef
PM
861}
862
c4241c7d
PM
863static void vbar_write(CPUARMState *env, const ARMCPRegInfo *ri,
864 uint64_t value)
8641136c 865{
a505d7fe
PM
866 /* Note that even though the AArch64 view of this register has bits
867 * [10:0] all RES0 we can only mask the bottom 5, to comply with the
868 * architectural requirements for bits which are RES0 only in some
869 * contexts. (ARMv8 would permit us to do no masking at all, but ARMv7
870 * requires the bottom five bits to be RAZ/WI because they're UNK/SBZP.)
871 */
855ea66d 872 raw_write(env, ri, value & ~0x1FULL);
8641136c
NR
873}
874
64e0e2de
EI
875static void scr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
876{
877 /* We only mask off bits that are RES0 both for AArch64 and AArch32.
878 * For bits that vary between AArch32/64, code needs to check the
879 * current execution mode before directly using the feature bit.
880 */
881 uint32_t valid_mask = SCR_AARCH64_MASK | SCR_AARCH32_MASK;
882
883 if (!arm_feature(env, ARM_FEATURE_EL2)) {
884 valid_mask &= ~SCR_HCE;
885
886 /* On ARMv7, SMD (or SCD as it is called in v7) is only
887 * supported if EL2 exists. The bit is UNK/SBZP when
888 * EL2 is unavailable. In QEMU ARMv7, we force it to always zero
889 * when EL2 is unavailable.
4eb27640 890 * On ARMv8, this bit is always available.
64e0e2de 891 */
4eb27640
GB
892 if (arm_feature(env, ARM_FEATURE_V7) &&
893 !arm_feature(env, ARM_FEATURE_V8)) {
64e0e2de
EI
894 valid_mask &= ~SCR_SMD;
895 }
896 }
897
898 /* Clear all-context RES0 bits. */
899 value &= valid_mask;
900 raw_write(env, ri, value);
901}
902
c4241c7d 903static uint64_t ccsidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
776d4e5c
PM
904{
905 ARMCPU *cpu = arm_env_get_cpu(env);
b85a1fd6
FA
906
907 /* Acquire the CSSELR index from the bank corresponding to the CCSIDR
908 * bank
909 */
910 uint32_t index = A32_BANKED_REG_GET(env, csselr,
911 ri->secure & ARM_CP_SECSTATE_S);
912
913 return cpu->ccsidr[index];
776d4e5c
PM
914}
915
c4241c7d
PM
916static void csselr_write(CPUARMState *env, const ARMCPRegInfo *ri,
917 uint64_t value)
776d4e5c 918{
8d5c773e 919 raw_write(env, ri, value & 0xf);
776d4e5c
PM
920}
921
1090b9c6
PM
922static uint64_t isr_read(CPUARMState *env, const ARMCPRegInfo *ri)
923{
924 CPUState *cs = ENV_GET_CPU(env);
925 uint64_t ret = 0;
926
927 if (cs->interrupt_request & CPU_INTERRUPT_HARD) {
928 ret |= CPSR_I;
929 }
930 if (cs->interrupt_request & CPU_INTERRUPT_FIQ) {
931 ret |= CPSR_F;
932 }
933 /* External aborts are not possible in QEMU so A bit is always clear */
934 return ret;
935}
936
e9aa6c21 937static const ARMCPRegInfo v7_cp_reginfo[] = {
7d57f408
PM
938 /* the old v6 WFI, UNPREDICTABLE in v7 but we choose to NOP */
939 { .name = "NOP", .cp = 15, .crn = 7, .crm = 0, .opc1 = 0, .opc2 = 4,
940 .access = PL1_W, .type = ARM_CP_NOP },
200ac0ef
PM
941 /* Performance monitors are implementation defined in v7,
942 * but with an ARM recommended set of registers, which we
943 * follow (although we don't actually implement any counters)
944 *
945 * Performance registers fall into three categories:
946 * (a) always UNDEF in PL0, RW in PL1 (PMINTENSET, PMINTENCLR)
947 * (b) RO in PL0 (ie UNDEF on write), RW in PL1 (PMUSERENR)
948 * (c) UNDEF in PL0 if PMUSERENR.EN==0, otherwise accessible (all others)
949 * For the cases controlled by PMUSERENR we must set .access to PL0_RW
950 * or PL0_RO as appropriate and then check PMUSERENR in the helper fn.
951 */
952 { .name = "PMCNTENSET", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 1,
7a0e58fa 953 .access = PL0_RW, .type = ARM_CP_ALIAS,
8521466b 954 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
fcd25206
PM
955 .writefn = pmcntenset_write,
956 .accessfn = pmreg_access,
957 .raw_writefn = raw_write },
8521466b
AF
958 { .name = "PMCNTENSET_EL0", .state = ARM_CP_STATE_AA64,
959 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 1,
960 .access = PL0_RW, .accessfn = pmreg_access,
961 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten), .resetvalue = 0,
962 .writefn = pmcntenset_write, .raw_writefn = raw_write },
200ac0ef 963 { .name = "PMCNTENCLR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 2,
8521466b
AF
964 .access = PL0_RW,
965 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcnten),
fcd25206
PM
966 .accessfn = pmreg_access,
967 .writefn = pmcntenclr_write,
7a0e58fa 968 .type = ARM_CP_ALIAS },
8521466b
AF
969 { .name = "PMCNTENCLR_EL0", .state = ARM_CP_STATE_AA64,
970 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 2,
971 .access = PL0_RW, .accessfn = pmreg_access,
7a0e58fa 972 .type = ARM_CP_ALIAS,
8521466b
AF
973 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcnten),
974 .writefn = pmcntenclr_write },
200ac0ef
PM
975 { .name = "PMOVSR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 3,
976 .access = PL0_RW, .fieldoffset = offsetof(CPUARMState, cp15.c9_pmovsr),
fcd25206
PM
977 .accessfn = pmreg_access,
978 .writefn = pmovsr_write,
979 .raw_writefn = raw_write },
980 /* Unimplemented so WI. */
200ac0ef 981 { .name = "PMSWINC", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 4,
fcd25206 982 .access = PL0_W, .accessfn = pmreg_access, .type = ARM_CP_NOP },
200ac0ef 983 /* Since we don't implement any events, writing to PMSELR is UNPREDICTABLE.
fcd25206 984 * We choose to RAZ/WI.
200ac0ef
PM
985 */
986 { .name = "PMSELR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 5,
fcd25206
PM
987 .access = PL0_RW, .type = ARM_CP_CONST, .resetvalue = 0,
988 .accessfn = pmreg_access },
7c2cb42b 989#ifndef CONFIG_USER_ONLY
200ac0ef 990 { .name = "PMCCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 0,
7c2cb42b 991 .access = PL0_RW, .resetvalue = 0, .type = ARM_CP_IO,
421c7ebd 992 .readfn = pmccntr_read, .writefn = pmccntr_write32,
fcd25206 993 .accessfn = pmreg_access },
8521466b
AF
994 { .name = "PMCCNTR_EL0", .state = ARM_CP_STATE_AA64,
995 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 13, .opc2 = 0,
996 .access = PL0_RW, .accessfn = pmreg_access,
997 .type = ARM_CP_IO,
998 .readfn = pmccntr_read, .writefn = pmccntr_write, },
7c2cb42b 999#endif
8521466b
AF
1000 { .name = "PMCCFILTR_EL0", .state = ARM_CP_STATE_AA64,
1001 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 15, .opc2 = 7,
0614601c 1002 .writefn = pmccfiltr_write,
8521466b
AF
1003 .access = PL0_RW, .accessfn = pmreg_access,
1004 .type = ARM_CP_IO,
1005 .fieldoffset = offsetof(CPUARMState, cp15.pmccfiltr_el0),
1006 .resetvalue = 0, },
200ac0ef
PM
1007 { .name = "PMXEVTYPER", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 1,
1008 .access = PL0_RW,
1009 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmxevtyper),
fcd25206
PM
1010 .accessfn = pmreg_access, .writefn = pmxevtyper_write,
1011 .raw_writefn = raw_write },
1012 /* Unimplemented, RAZ/WI. */
200ac0ef 1013 { .name = "PMXEVCNTR", .cp = 15, .crn = 9, .crm = 13, .opc1 = 0, .opc2 = 2,
fcd25206
PM
1014 .access = PL0_RW, .type = ARM_CP_CONST, .resetvalue = 0,
1015 .accessfn = pmreg_access },
200ac0ef
PM
1016 { .name = "PMUSERENR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 0,
1017 .access = PL0_R | PL1_RW,
1018 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmuserenr),
1019 .resetvalue = 0,
d4e6df63 1020 .writefn = pmuserenr_write, .raw_writefn = raw_write },
200ac0ef
PM
1021 { .name = "PMINTENSET", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 1,
1022 .access = PL1_RW,
1023 .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
1024 .resetvalue = 0,
d4e6df63 1025 .writefn = pmintenset_write, .raw_writefn = raw_write },
200ac0ef 1026 { .name = "PMINTENCLR", .cp = 15, .crn = 9, .crm = 14, .opc1 = 0, .opc2 = 2,
7a0e58fa 1027 .access = PL1_RW, .type = ARM_CP_ALIAS,
200ac0ef 1028 .fieldoffset = offsetof(CPUARMState, cp15.c9_pminten),
b061a82b 1029 .writefn = pmintenclr_write, },
a505d7fe
PM
1030 { .name = "VBAR", .state = ARM_CP_STATE_BOTH,
1031 .opc0 = 3, .crn = 12, .crm = 0, .opc1 = 0, .opc2 = 0,
8641136c 1032 .access = PL1_RW, .writefn = vbar_write,
fb6c91ba
GB
1033 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.vbar_s),
1034 offsetof(CPUARMState, cp15.vbar_ns) },
8641136c 1035 .resetvalue = 0 },
7da845b0
PM
1036 { .name = "CCSIDR", .state = ARM_CP_STATE_BOTH,
1037 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 0,
7a0e58fa 1038 .access = PL1_R, .readfn = ccsidr_read, .type = ARM_CP_NO_RAW },
7da845b0
PM
1039 { .name = "CSSELR", .state = ARM_CP_STATE_BOTH,
1040 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 2, .opc2 = 0,
b85a1fd6
FA
1041 .access = PL1_RW, .writefn = csselr_write, .resetvalue = 0,
1042 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.csselr_s),
1043 offsetof(CPUARMState, cp15.csselr_ns) } },
776d4e5c
PM
1044 /* Auxiliary ID register: this actually has an IMPDEF value but for now
1045 * just RAZ for all cores:
1046 */
0ff644a7
PM
1047 { .name = "AIDR", .state = ARM_CP_STATE_BOTH,
1048 .opc0 = 3, .opc1 = 1, .crn = 0, .crm = 0, .opc2 = 7,
776d4e5c 1049 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
f32cdad5
PM
1050 /* Auxiliary fault status registers: these also are IMPDEF, and we
1051 * choose to RAZ/WI for all cores.
1052 */
1053 { .name = "AFSR0_EL1", .state = ARM_CP_STATE_BOTH,
1054 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 0,
1055 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1056 { .name = "AFSR1_EL1", .state = ARM_CP_STATE_BOTH,
1057 .opc0 = 3, .opc1 = 0, .crn = 5, .crm = 1, .opc2 = 1,
1058 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
b0fe2427
PM
1059 /* MAIR can just read-as-written because we don't implement caches
1060 * and so don't need to care about memory attributes.
1061 */
1062 { .name = "MAIR_EL1", .state = ARM_CP_STATE_AA64,
1063 .opc0 = 3, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0,
be693c87 1064 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[1]),
b0fe2427 1065 .resetvalue = 0 },
4cfb8ad8
PM
1066 { .name = "MAIR_EL3", .state = ARM_CP_STATE_AA64,
1067 .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 2, .opc2 = 0,
1068 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[3]),
1069 .resetvalue = 0 },
b0fe2427
PM
1070 /* For non-long-descriptor page tables these are PRRR and NMRR;
1071 * regardless they still act as reads-as-written for QEMU.
b0fe2427 1072 */
1281f8e3 1073 /* MAIR0/1 are defined separately from their 64-bit counterpart which
be693c87
GB
1074 * allows them to assign the correct fieldoffset based on the endianness
1075 * handled in the field definitions.
1076 */
a903c449 1077 { .name = "MAIR0", .state = ARM_CP_STATE_AA32,
b0fe2427 1078 .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 0, .access = PL1_RW,
be693c87
GB
1079 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair0_s),
1080 offsetof(CPUARMState, cp15.mair0_ns) },
b0fe2427 1081 .resetfn = arm_cp_reset_ignore },
a903c449 1082 { .name = "MAIR1", .state = ARM_CP_STATE_AA32,
b0fe2427 1083 .cp = 15, .opc1 = 0, .crn = 10, .crm = 2, .opc2 = 1, .access = PL1_RW,
be693c87
GB
1084 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.mair1_s),
1085 offsetof(CPUARMState, cp15.mair1_ns) },
b0fe2427 1086 .resetfn = arm_cp_reset_ignore },
1090b9c6
PM
1087 { .name = "ISR_EL1", .state = ARM_CP_STATE_BOTH,
1088 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 1, .opc2 = 0,
7a0e58fa 1089 .type = ARM_CP_NO_RAW, .access = PL1_R, .readfn = isr_read },
995939a6
PM
1090 /* 32 bit ITLB invalidates */
1091 { .name = "ITLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 0,
7a0e58fa 1092 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
995939a6 1093 { .name = "ITLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 1,
7a0e58fa 1094 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
995939a6 1095 { .name = "ITLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 5, .opc2 = 2,
7a0e58fa 1096 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
995939a6
PM
1097 /* 32 bit DTLB invalidates */
1098 { .name = "DTLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 0,
7a0e58fa 1099 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
995939a6 1100 { .name = "DTLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 1,
7a0e58fa 1101 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
995939a6 1102 { .name = "DTLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 6, .opc2 = 2,
7a0e58fa 1103 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
995939a6
PM
1104 /* 32 bit TLB invalidates */
1105 { .name = "TLBIALL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
7a0e58fa 1106 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_write },
995939a6 1107 { .name = "TLBIMVA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
7a0e58fa 1108 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
995939a6 1109 { .name = "TLBIASID", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
7a0e58fa 1110 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiasid_write },
995939a6 1111 { .name = "TLBIMVAA", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
7a0e58fa 1112 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimvaa_write },
995939a6
PM
1113 REGINFO_SENTINEL
1114};
1115
1116static const ARMCPRegInfo v7mp_cp_reginfo[] = {
1117 /* 32 bit TLB invalidates, Inner Shareable */
1118 { .name = "TLBIALLIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
7a0e58fa 1119 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbiall_is_write },
995939a6 1120 { .name = "TLBIMVAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
7a0e58fa 1121 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_is_write },
995939a6 1122 { .name = "TLBIASIDIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
7a0e58fa 1123 .type = ARM_CP_NO_RAW, .access = PL1_W,
fa439fc5 1124 .writefn = tlbiasid_is_write },
995939a6 1125 { .name = "TLBIMVAAIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
7a0e58fa 1126 .type = ARM_CP_NO_RAW, .access = PL1_W,
fa439fc5 1127 .writefn = tlbimvaa_is_write },
e9aa6c21
PM
1128 REGINFO_SENTINEL
1129};
1130
c4241c7d
PM
1131static void teecr_write(CPUARMState *env, const ARMCPRegInfo *ri,
1132 uint64_t value)
c326b979
PM
1133{
1134 value &= 1;
1135 env->teecr = value;
c326b979
PM
1136}
1137
c4241c7d 1138static CPAccessResult teehbr_access(CPUARMState *env, const ARMCPRegInfo *ri)
c326b979 1139{
dcbff19b 1140 if (arm_current_el(env) == 0 && (env->teecr & 1)) {
92611c00 1141 return CP_ACCESS_TRAP;
c326b979 1142 }
92611c00 1143 return CP_ACCESS_OK;
c326b979
PM
1144}
1145
1146static const ARMCPRegInfo t2ee_cp_reginfo[] = {
1147 { .name = "TEECR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 6, .opc2 = 0,
1148 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, teecr),
1149 .resetvalue = 0,
1150 .writefn = teecr_write },
1151 { .name = "TEEHBR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 6, .opc2 = 0,
1152 .access = PL0_RW, .fieldoffset = offsetof(CPUARMState, teehbr),
92611c00 1153 .accessfn = teehbr_access, .resetvalue = 0 },
c326b979
PM
1154 REGINFO_SENTINEL
1155};
1156
4d31c596 1157static const ARMCPRegInfo v6k_cp_reginfo[] = {
e4fe830b
PM
1158 { .name = "TPIDR_EL0", .state = ARM_CP_STATE_AA64,
1159 .opc0 = 3, .opc1 = 3, .opc2 = 2, .crn = 13, .crm = 0,
1160 .access = PL0_RW,
54bf36ed 1161 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[0]), .resetvalue = 0 },
4d31c596
PM
1162 { .name = "TPIDRURW", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 2,
1163 .access = PL0_RW,
54bf36ed
FA
1164 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrurw_s),
1165 offsetoflow32(CPUARMState, cp15.tpidrurw_ns) },
e4fe830b
PM
1166 .resetfn = arm_cp_reset_ignore },
1167 { .name = "TPIDRRO_EL0", .state = ARM_CP_STATE_AA64,
1168 .opc0 = 3, .opc1 = 3, .opc2 = 3, .crn = 13, .crm = 0,
1169 .access = PL0_R|PL1_W,
54bf36ed
FA
1170 .fieldoffset = offsetof(CPUARMState, cp15.tpidrro_el[0]),
1171 .resetvalue = 0},
4d31c596
PM
1172 { .name = "TPIDRURO", .cp = 15, .crn = 13, .crm = 0, .opc1 = 0, .opc2 = 3,
1173 .access = PL0_R|PL1_W,
54bf36ed
FA
1174 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidruro_s),
1175 offsetoflow32(CPUARMState, cp15.tpidruro_ns) },
e4fe830b 1176 .resetfn = arm_cp_reset_ignore },
54bf36ed 1177 { .name = "TPIDR_EL1", .state = ARM_CP_STATE_AA64,
e4fe830b 1178 .opc0 = 3, .opc1 = 0, .opc2 = 4, .crn = 13, .crm = 0,
4d31c596 1179 .access = PL1_RW,
54bf36ed
FA
1180 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[1]), .resetvalue = 0 },
1181 { .name = "TPIDRPRW", .opc1 = 0, .cp = 15, .crn = 13, .crm = 0, .opc2 = 4,
1182 .access = PL1_RW,
1183 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tpidrprw_s),
1184 offsetoflow32(CPUARMState, cp15.tpidrprw_ns) },
1185 .resetvalue = 0 },
4d31c596
PM
1186 REGINFO_SENTINEL
1187};
1188
55d284af
PM
1189#ifndef CONFIG_USER_ONLY
1190
00108f2d
PM
1191static CPAccessResult gt_cntfrq_access(CPUARMState *env, const ARMCPRegInfo *ri)
1192{
1193 /* CNTFRQ: not visible from PL0 if both PL0PCTEN and PL0VCTEN are zero */
dcbff19b 1194 if (arm_current_el(env) == 0 && !extract32(env->cp15.c14_cntkctl, 0, 2)) {
00108f2d
PM
1195 return CP_ACCESS_TRAP;
1196 }
1197 return CP_ACCESS_OK;
1198}
1199
1200static CPAccessResult gt_counter_access(CPUARMState *env, int timeridx)
1201{
0b6440af
EI
1202 unsigned int cur_el = arm_current_el(env);
1203 bool secure = arm_is_secure(env);
1204
00108f2d 1205 /* CNT[PV]CT: not visible from PL0 if ELO[PV]CTEN is zero */
0b6440af 1206 if (cur_el == 0 &&
00108f2d
PM
1207 !extract32(env->cp15.c14_cntkctl, timeridx, 1)) {
1208 return CP_ACCESS_TRAP;
1209 }
0b6440af
EI
1210
1211 if (arm_feature(env, ARM_FEATURE_EL2) &&
1212 timeridx == GTIMER_PHYS && !secure && cur_el < 2 &&
1213 !extract32(env->cp15.cnthctl_el2, 0, 1)) {
1214 return CP_ACCESS_TRAP_EL2;
1215 }
00108f2d
PM
1216 return CP_ACCESS_OK;
1217}
1218
1219static CPAccessResult gt_timer_access(CPUARMState *env, int timeridx)
1220{
0b6440af
EI
1221 unsigned int cur_el = arm_current_el(env);
1222 bool secure = arm_is_secure(env);
1223
00108f2d
PM
1224 /* CNT[PV]_CVAL, CNT[PV]_CTL, CNT[PV]_TVAL: not visible from PL0 if
1225 * EL0[PV]TEN is zero.
1226 */
0b6440af 1227 if (cur_el == 0 &&
00108f2d
PM
1228 !extract32(env->cp15.c14_cntkctl, 9 - timeridx, 1)) {
1229 return CP_ACCESS_TRAP;
1230 }
0b6440af
EI
1231
1232 if (arm_feature(env, ARM_FEATURE_EL2) &&
1233 timeridx == GTIMER_PHYS && !secure && cur_el < 2 &&
1234 !extract32(env->cp15.cnthctl_el2, 1, 1)) {
1235 return CP_ACCESS_TRAP_EL2;
1236 }
00108f2d
PM
1237 return CP_ACCESS_OK;
1238}
1239
1240static CPAccessResult gt_pct_access(CPUARMState *env,
1241 const ARMCPRegInfo *ri)
1242{
1243 return gt_counter_access(env, GTIMER_PHYS);
1244}
1245
1246static CPAccessResult gt_vct_access(CPUARMState *env,
1247 const ARMCPRegInfo *ri)
1248{
1249 return gt_counter_access(env, GTIMER_VIRT);
1250}
1251
1252static CPAccessResult gt_ptimer_access(CPUARMState *env, const ARMCPRegInfo *ri)
1253{
1254 return gt_timer_access(env, GTIMER_PHYS);
1255}
1256
1257static CPAccessResult gt_vtimer_access(CPUARMState *env, const ARMCPRegInfo *ri)
1258{
1259 return gt_timer_access(env, GTIMER_VIRT);
1260}
1261
b4d3978c
PM
1262static CPAccessResult gt_stimer_access(CPUARMState *env,
1263 const ARMCPRegInfo *ri)
1264{
1265 /* The AArch64 register view of the secure physical timer is
1266 * always accessible from EL3, and configurably accessible from
1267 * Secure EL1.
1268 */
1269 switch (arm_current_el(env)) {
1270 case 1:
1271 if (!arm_is_secure(env)) {
1272 return CP_ACCESS_TRAP;
1273 }
1274 if (!(env->cp15.scr_el3 & SCR_ST)) {
1275 return CP_ACCESS_TRAP_EL3;
1276 }
1277 return CP_ACCESS_OK;
1278 case 0:
1279 case 2:
1280 return CP_ACCESS_TRAP;
1281 case 3:
1282 return CP_ACCESS_OK;
1283 default:
1284 g_assert_not_reached();
1285 }
1286}
1287
55d284af
PM
1288static uint64_t gt_get_countervalue(CPUARMState *env)
1289{
bc72ad67 1290 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) / GTIMER_SCALE;
55d284af
PM
1291}
1292
1293static void gt_recalc_timer(ARMCPU *cpu, int timeridx)
1294{
1295 ARMGenericTimer *gt = &cpu->env.cp15.c14_timer[timeridx];
1296
1297 if (gt->ctl & 1) {
1298 /* Timer enabled: calculate and set current ISTATUS, irq, and
1299 * reset timer to when ISTATUS next has to change
1300 */
edac4d8a
EI
1301 uint64_t offset = timeridx == GTIMER_VIRT ?
1302 cpu->env.cp15.cntvoff_el2 : 0;
55d284af
PM
1303 uint64_t count = gt_get_countervalue(&cpu->env);
1304 /* Note that this must be unsigned 64 bit arithmetic: */
edac4d8a 1305 int istatus = count - offset >= gt->cval;
55d284af
PM
1306 uint64_t nexttick;
1307
1308 gt->ctl = deposit32(gt->ctl, 2, 1, istatus);
1309 qemu_set_irq(cpu->gt_timer_outputs[timeridx],
1310 (istatus && !(gt->ctl & 2)));
1311 if (istatus) {
1312 /* Next transition is when count rolls back over to zero */
1313 nexttick = UINT64_MAX;
1314 } else {
1315 /* Next transition is when we hit cval */
edac4d8a 1316 nexttick = gt->cval + offset;
55d284af
PM
1317 }
1318 /* Note that the desired next expiry time might be beyond the
1319 * signed-64-bit range of a QEMUTimer -- in this case we just
1320 * set the timer for as far in the future as possible. When the
1321 * timer expires we will reset the timer for any remaining period.
1322 */
1323 if (nexttick > INT64_MAX / GTIMER_SCALE) {
1324 nexttick = INT64_MAX / GTIMER_SCALE;
1325 }
bc72ad67 1326 timer_mod(cpu->gt_timer[timeridx], nexttick);
55d284af
PM
1327 } else {
1328 /* Timer disabled: ISTATUS and timer output always clear */
1329 gt->ctl &= ~4;
1330 qemu_set_irq(cpu->gt_timer_outputs[timeridx], 0);
bc72ad67 1331 timer_del(cpu->gt_timer[timeridx]);
55d284af
PM
1332 }
1333}
1334
0e3eca4c
EI
1335static void gt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri,
1336 int timeridx)
55d284af
PM
1337{
1338 ARMCPU *cpu = arm_env_get_cpu(env);
55d284af 1339
bc72ad67 1340 timer_del(cpu->gt_timer[timeridx]);
55d284af
PM
1341}
1342
c4241c7d 1343static uint64_t gt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
55d284af 1344{
c4241c7d 1345 return gt_get_countervalue(env);
55d284af
PM
1346}
1347
edac4d8a
EI
1348static uint64_t gt_virt_cnt_read(CPUARMState *env, const ARMCPRegInfo *ri)
1349{
1350 return gt_get_countervalue(env) - env->cp15.cntvoff_el2;
1351}
1352
c4241c7d 1353static void gt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
0e3eca4c 1354 int timeridx,
c4241c7d 1355 uint64_t value)
55d284af 1356{
55d284af
PM
1357 env->cp15.c14_timer[timeridx].cval = value;
1358 gt_recalc_timer(arm_env_get_cpu(env), timeridx);
55d284af 1359}
c4241c7d 1360
0e3eca4c
EI
1361static uint64_t gt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri,
1362 int timeridx)
55d284af 1363{
edac4d8a 1364 uint64_t offset = timeridx == GTIMER_VIRT ? env->cp15.cntvoff_el2 : 0;
55d284af 1365
c4241c7d 1366 return (uint32_t)(env->cp15.c14_timer[timeridx].cval -
edac4d8a 1367 (gt_get_countervalue(env) - offset));
55d284af
PM
1368}
1369
c4241c7d 1370static void gt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
0e3eca4c 1371 int timeridx,
c4241c7d 1372 uint64_t value)
55d284af 1373{
edac4d8a 1374 uint64_t offset = timeridx == GTIMER_VIRT ? env->cp15.cntvoff_el2 : 0;
55d284af 1375
edac4d8a 1376 env->cp15.c14_timer[timeridx].cval = gt_get_countervalue(env) - offset +
18084b2f 1377 sextract64(value, 0, 32);
55d284af 1378 gt_recalc_timer(arm_env_get_cpu(env), timeridx);
55d284af
PM
1379}
1380
c4241c7d 1381static void gt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
0e3eca4c 1382 int timeridx,
c4241c7d 1383 uint64_t value)
55d284af
PM
1384{
1385 ARMCPU *cpu = arm_env_get_cpu(env);
55d284af
PM
1386 uint32_t oldval = env->cp15.c14_timer[timeridx].ctl;
1387
d3afacc7 1388 env->cp15.c14_timer[timeridx].ctl = deposit64(oldval, 0, 2, value);
55d284af
PM
1389 if ((oldval ^ value) & 1) {
1390 /* Enable toggled */
1391 gt_recalc_timer(cpu, timeridx);
d3afacc7 1392 } else if ((oldval ^ value) & 2) {
55d284af
PM
1393 /* IMASK toggled: don't need to recalculate,
1394 * just set the interrupt line based on ISTATUS
1395 */
1396 qemu_set_irq(cpu->gt_timer_outputs[timeridx],
d3afacc7 1397 (oldval & 4) && !(value & 2));
55d284af 1398 }
55d284af
PM
1399}
1400
0e3eca4c
EI
1401static void gt_phys_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1402{
1403 gt_timer_reset(env, ri, GTIMER_PHYS);
1404}
1405
1406static void gt_phys_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1407 uint64_t value)
1408{
1409 gt_cval_write(env, ri, GTIMER_PHYS, value);
1410}
1411
1412static uint64_t gt_phys_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1413{
1414 return gt_tval_read(env, ri, GTIMER_PHYS);
1415}
1416
1417static void gt_phys_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1418 uint64_t value)
1419{
1420 gt_tval_write(env, ri, GTIMER_PHYS, value);
1421}
1422
1423static void gt_phys_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1424 uint64_t value)
1425{
1426 gt_ctl_write(env, ri, GTIMER_PHYS, value);
1427}
1428
1429static void gt_virt_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1430{
1431 gt_timer_reset(env, ri, GTIMER_VIRT);
1432}
1433
1434static void gt_virt_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1435 uint64_t value)
1436{
1437 gt_cval_write(env, ri, GTIMER_VIRT, value);
1438}
1439
1440static uint64_t gt_virt_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1441{
1442 return gt_tval_read(env, ri, GTIMER_VIRT);
1443}
1444
1445static void gt_virt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1446 uint64_t value)
1447{
1448 gt_tval_write(env, ri, GTIMER_VIRT, value);
1449}
1450
1451static void gt_virt_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1452 uint64_t value)
1453{
1454 gt_ctl_write(env, ri, GTIMER_VIRT, value);
1455}
1456
edac4d8a
EI
1457static void gt_cntvoff_write(CPUARMState *env, const ARMCPRegInfo *ri,
1458 uint64_t value)
1459{
1460 ARMCPU *cpu = arm_env_get_cpu(env);
1461
1462 raw_write(env, ri, value);
1463 gt_recalc_timer(cpu, GTIMER_VIRT);
1464}
1465
b0e66d95
EI
1466static void gt_hyp_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1467{
1468 gt_timer_reset(env, ri, GTIMER_HYP);
1469}
1470
1471static void gt_hyp_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1472 uint64_t value)
1473{
1474 gt_cval_write(env, ri, GTIMER_HYP, value);
1475}
1476
1477static uint64_t gt_hyp_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1478{
1479 return gt_tval_read(env, ri, GTIMER_HYP);
1480}
1481
1482static void gt_hyp_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1483 uint64_t value)
1484{
1485 gt_tval_write(env, ri, GTIMER_HYP, value);
1486}
1487
1488static void gt_hyp_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1489 uint64_t value)
1490{
1491 gt_ctl_write(env, ri, GTIMER_HYP, value);
1492}
1493
b4d3978c
PM
1494static void gt_sec_timer_reset(CPUARMState *env, const ARMCPRegInfo *ri)
1495{
1496 gt_timer_reset(env, ri, GTIMER_SEC);
1497}
1498
1499static void gt_sec_cval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1500 uint64_t value)
1501{
1502 gt_cval_write(env, ri, GTIMER_SEC, value);
1503}
1504
1505static uint64_t gt_sec_tval_read(CPUARMState *env, const ARMCPRegInfo *ri)
1506{
1507 return gt_tval_read(env, ri, GTIMER_SEC);
1508}
1509
1510static void gt_sec_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
1511 uint64_t value)
1512{
1513 gt_tval_write(env, ri, GTIMER_SEC, value);
1514}
1515
1516static void gt_sec_ctl_write(CPUARMState *env, const ARMCPRegInfo *ri,
1517 uint64_t value)
1518{
1519 gt_ctl_write(env, ri, GTIMER_SEC, value);
1520}
1521
55d284af
PM
1522void arm_gt_ptimer_cb(void *opaque)
1523{
1524 ARMCPU *cpu = opaque;
1525
1526 gt_recalc_timer(cpu, GTIMER_PHYS);
1527}
1528
1529void arm_gt_vtimer_cb(void *opaque)
1530{
1531 ARMCPU *cpu = opaque;
1532
1533 gt_recalc_timer(cpu, GTIMER_VIRT);
1534}
1535
b0e66d95
EI
1536void arm_gt_htimer_cb(void *opaque)
1537{
1538 ARMCPU *cpu = opaque;
1539
1540 gt_recalc_timer(cpu, GTIMER_HYP);
1541}
1542
b4d3978c
PM
1543void arm_gt_stimer_cb(void *opaque)
1544{
1545 ARMCPU *cpu = opaque;
1546
1547 gt_recalc_timer(cpu, GTIMER_SEC);
1548}
1549
55d284af
PM
1550static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
1551 /* Note that CNTFRQ is purely reads-as-written for the benefit
1552 * of software; writing it doesn't actually change the timer frequency.
1553 * Our reset value matches the fixed frequency we implement the timer at.
1554 */
1555 { .name = "CNTFRQ", .cp = 15, .crn = 14, .crm = 0, .opc1 = 0, .opc2 = 0,
7a0e58fa 1556 .type = ARM_CP_ALIAS,
a7adc4b7
PM
1557 .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
1558 .fieldoffset = offsetoflow32(CPUARMState, cp15.c14_cntfrq),
a7adc4b7
PM
1559 },
1560 { .name = "CNTFRQ_EL0", .state = ARM_CP_STATE_AA64,
1561 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 0,
1562 .access = PL1_RW | PL0_R, .accessfn = gt_cntfrq_access,
55d284af
PM
1563 .fieldoffset = offsetof(CPUARMState, cp15.c14_cntfrq),
1564 .resetvalue = (1000 * 1000 * 1000) / GTIMER_SCALE,
55d284af
PM
1565 },
1566 /* overall control: mostly access permissions */
a7adc4b7
PM
1567 { .name = "CNTKCTL", .state = ARM_CP_STATE_BOTH,
1568 .opc0 = 3, .opc1 = 0, .crn = 14, .crm = 1, .opc2 = 0,
55d284af
PM
1569 .access = PL1_RW,
1570 .fieldoffset = offsetof(CPUARMState, cp15.c14_cntkctl),
1571 .resetvalue = 0,
1572 },
1573 /* per-timer control */
1574 { .name = "CNTP_CTL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
9ff9dd3c 1575 .secure = ARM_CP_SECSTATE_NS,
7a0e58fa 1576 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
a7adc4b7
PM
1577 .accessfn = gt_ptimer_access,
1578 .fieldoffset = offsetoflow32(CPUARMState,
1579 cp15.c14_timer[GTIMER_PHYS].ctl),
0e3eca4c 1580 .writefn = gt_phys_ctl_write, .raw_writefn = raw_write,
a7adc4b7 1581 },
9ff9dd3c
PM
1582 { .name = "CNTP_CTL(S)",
1583 .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 1,
1584 .secure = ARM_CP_SECSTATE_S,
1585 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
1586 .accessfn = gt_ptimer_access,
1587 .fieldoffset = offsetoflow32(CPUARMState,
1588 cp15.c14_timer[GTIMER_SEC].ctl),
1589 .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
1590 },
a7adc4b7
PM
1591 { .name = "CNTP_CTL_EL0", .state = ARM_CP_STATE_AA64,
1592 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 1,
55d284af 1593 .type = ARM_CP_IO, .access = PL1_RW | PL0_R,
a7adc4b7 1594 .accessfn = gt_ptimer_access,
55d284af
PM
1595 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].ctl),
1596 .resetvalue = 0,
0e3eca4c 1597 .writefn = gt_phys_ctl_write, .raw_writefn = raw_write,
55d284af
PM
1598 },
1599 { .name = "CNTV_CTL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 1,
7a0e58fa 1600 .type = ARM_CP_IO | ARM_CP_ALIAS, .access = PL1_RW | PL0_R,
a7adc4b7
PM
1601 .accessfn = gt_vtimer_access,
1602 .fieldoffset = offsetoflow32(CPUARMState,
1603 cp15.c14_timer[GTIMER_VIRT].ctl),
0e3eca4c 1604 .writefn = gt_virt_ctl_write, .raw_writefn = raw_write,
a7adc4b7
PM
1605 },
1606 { .name = "CNTV_CTL_EL0", .state = ARM_CP_STATE_AA64,
1607 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 1,
55d284af 1608 .type = ARM_CP_IO, .access = PL1_RW | PL0_R,
a7adc4b7 1609 .accessfn = gt_vtimer_access,
55d284af
PM
1610 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].ctl),
1611 .resetvalue = 0,
0e3eca4c 1612 .writefn = gt_virt_ctl_write, .raw_writefn = raw_write,
55d284af
PM
1613 },
1614 /* TimerValue views: a 32 bit downcounting view of the underlying state */
1615 { .name = "CNTP_TVAL", .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
9ff9dd3c 1616 .secure = ARM_CP_SECSTATE_NS,
7a0e58fa 1617 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
00108f2d 1618 .accessfn = gt_ptimer_access,
0e3eca4c 1619 .readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
55d284af 1620 },
9ff9dd3c
PM
1621 { .name = "CNTP_TVAL(S)",
1622 .cp = 15, .crn = 14, .crm = 2, .opc1 = 0, .opc2 = 0,
1623 .secure = ARM_CP_SECSTATE_S,
1624 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
1625 .accessfn = gt_ptimer_access,
1626 .readfn = gt_sec_tval_read, .writefn = gt_sec_tval_write,
1627 },
a7adc4b7
PM
1628 { .name = "CNTP_TVAL_EL0", .state = ARM_CP_STATE_AA64,
1629 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 0,
7a0e58fa 1630 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
0e3eca4c
EI
1631 .accessfn = gt_ptimer_access, .resetfn = gt_phys_timer_reset,
1632 .readfn = gt_phys_tval_read, .writefn = gt_phys_tval_write,
a7adc4b7 1633 },
55d284af 1634 { .name = "CNTV_TVAL", .cp = 15, .crn = 14, .crm = 3, .opc1 = 0, .opc2 = 0,
7a0e58fa 1635 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
00108f2d 1636 .accessfn = gt_vtimer_access,
0e3eca4c 1637 .readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
55d284af 1638 },
a7adc4b7
PM
1639 { .name = "CNTV_TVAL_EL0", .state = ARM_CP_STATE_AA64,
1640 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 0,
7a0e58fa 1641 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW | PL0_R,
0e3eca4c
EI
1642 .accessfn = gt_vtimer_access, .resetfn = gt_virt_timer_reset,
1643 .readfn = gt_virt_tval_read, .writefn = gt_virt_tval_write,
a7adc4b7 1644 },
55d284af
PM
1645 /* The counter itself */
1646 { .name = "CNTPCT", .cp = 15, .crm = 14, .opc1 = 0,
7a0e58fa 1647 .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
00108f2d 1648 .accessfn = gt_pct_access,
a7adc4b7
PM
1649 .readfn = gt_cnt_read, .resetfn = arm_cp_reset_ignore,
1650 },
1651 { .name = "CNTPCT_EL0", .state = ARM_CP_STATE_AA64,
1652 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 1,
7a0e58fa 1653 .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
d57b9ee8 1654 .accessfn = gt_pct_access, .readfn = gt_cnt_read,
55d284af
PM
1655 },
1656 { .name = "CNTVCT", .cp = 15, .crm = 14, .opc1 = 1,
7a0e58fa 1657 .access = PL0_R, .type = ARM_CP_64BIT | ARM_CP_NO_RAW | ARM_CP_IO,
00108f2d 1658 .accessfn = gt_vct_access,
edac4d8a 1659 .readfn = gt_virt_cnt_read, .resetfn = arm_cp_reset_ignore,
a7adc4b7
PM
1660 },
1661 { .name = "CNTVCT_EL0", .state = ARM_CP_STATE_AA64,
1662 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 0, .opc2 = 2,
7a0e58fa 1663 .access = PL0_R, .type = ARM_CP_NO_RAW | ARM_CP_IO,
d57b9ee8 1664 .accessfn = gt_vct_access, .readfn = gt_virt_cnt_read,
55d284af
PM
1665 },
1666 /* Comparison value, indicating when the timer goes off */
1667 { .name = "CNTP_CVAL", .cp = 15, .crm = 14, .opc1 = 2,
9ff9dd3c 1668 .secure = ARM_CP_SECSTATE_NS,
55d284af 1669 .access = PL1_RW | PL0_R,
7a0e58fa 1670 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
55d284af 1671 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
b061a82b 1672 .accessfn = gt_ptimer_access,
0e3eca4c 1673 .writefn = gt_phys_cval_write, .raw_writefn = raw_write,
a7adc4b7 1674 },
9ff9dd3c
PM
1675 { .name = "CNTP_CVAL(S)", .cp = 15, .crm = 14, .opc1 = 2,
1676 .secure = ARM_CP_SECSTATE_S,
1677 .access = PL1_RW | PL0_R,
1678 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
1679 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
1680 .accessfn = gt_ptimer_access,
1681 .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
1682 },
a7adc4b7
PM
1683 { .name = "CNTP_CVAL_EL0", .state = ARM_CP_STATE_AA64,
1684 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 2, .opc2 = 2,
1685 .access = PL1_RW | PL0_R,
1686 .type = ARM_CP_IO,
1687 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_PHYS].cval),
12cde08a 1688 .resetvalue = 0, .accessfn = gt_ptimer_access,
0e3eca4c 1689 .writefn = gt_phys_cval_write, .raw_writefn = raw_write,
55d284af
PM
1690 },
1691 { .name = "CNTV_CVAL", .cp = 15, .crm = 14, .opc1 = 3,
1692 .access = PL1_RW | PL0_R,
7a0e58fa 1693 .type = ARM_CP_64BIT | ARM_CP_IO | ARM_CP_ALIAS,
55d284af 1694 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
b061a82b 1695 .accessfn = gt_vtimer_access,
0e3eca4c 1696 .writefn = gt_virt_cval_write, .raw_writefn = raw_write,
a7adc4b7
PM
1697 },
1698 { .name = "CNTV_CVAL_EL0", .state = ARM_CP_STATE_AA64,
1699 .opc0 = 3, .opc1 = 3, .crn = 14, .crm = 3, .opc2 = 2,
1700 .access = PL1_RW | PL0_R,
1701 .type = ARM_CP_IO,
1702 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_VIRT].cval),
1703 .resetvalue = 0, .accessfn = gt_vtimer_access,
0e3eca4c 1704 .writefn = gt_virt_cval_write, .raw_writefn = raw_write,
55d284af 1705 },
b4d3978c
PM
1706 /* Secure timer -- this is actually restricted to only EL3
1707 * and configurably Secure-EL1 via the accessfn.
1708 */
1709 { .name = "CNTPS_TVAL_EL1", .state = ARM_CP_STATE_AA64,
1710 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 0,
1711 .type = ARM_CP_NO_RAW | ARM_CP_IO, .access = PL1_RW,
1712 .accessfn = gt_stimer_access,
1713 .readfn = gt_sec_tval_read,
1714 .writefn = gt_sec_tval_write,
1715 .resetfn = gt_sec_timer_reset,
1716 },
1717 { .name = "CNTPS_CTL_EL1", .state = ARM_CP_STATE_AA64,
1718 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 1,
1719 .type = ARM_CP_IO, .access = PL1_RW,
1720 .accessfn = gt_stimer_access,
1721 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].ctl),
1722 .resetvalue = 0,
1723 .writefn = gt_sec_ctl_write, .raw_writefn = raw_write,
1724 },
1725 { .name = "CNTPS_CVAL_EL1", .state = ARM_CP_STATE_AA64,
1726 .opc0 = 3, .opc1 = 7, .crn = 14, .crm = 2, .opc2 = 2,
1727 .type = ARM_CP_IO, .access = PL1_RW,
1728 .accessfn = gt_stimer_access,
1729 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_SEC].cval),
1730 .writefn = gt_sec_cval_write, .raw_writefn = raw_write,
1731 },
55d284af
PM
1732 REGINFO_SENTINEL
1733};
1734
1735#else
1736/* In user-mode none of the generic timer registers are accessible,
bc72ad67 1737 * and their implementation depends on QEMU_CLOCK_VIRTUAL and qdev gpio outputs,
55d284af
PM
1738 * so instead just don't register any of them.
1739 */
6cc7a3ae 1740static const ARMCPRegInfo generic_timer_cp_reginfo[] = {
6cc7a3ae
PM
1741 REGINFO_SENTINEL
1742};
1743
55d284af
PM
1744#endif
1745
c4241c7d 1746static void par_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
4a501606 1747{
891a2fe7 1748 if (arm_feature(env, ARM_FEATURE_LPAE)) {
8d5c773e 1749 raw_write(env, ri, value);
891a2fe7 1750 } else if (arm_feature(env, ARM_FEATURE_V7)) {
8d5c773e 1751 raw_write(env, ri, value & 0xfffff6ff);
4a501606 1752 } else {
8d5c773e 1753 raw_write(env, ri, value & 0xfffff1ff);
4a501606 1754 }
4a501606
PM
1755}
1756
1757#ifndef CONFIG_USER_ONLY
1758/* get_phys_addr() isn't present for user-mode-only targets */
702a9357 1759
92611c00
PM
1760static CPAccessResult ats_access(CPUARMState *env, const ARMCPRegInfo *ri)
1761{
1762 if (ri->opc2 & 4) {
87562e4f
PM
1763 /* The ATS12NSO* operations must trap to EL3 if executed in
1764 * Secure EL1 (which can only happen if EL3 is AArch64).
1765 * They are simply UNDEF if executed from NS EL1.
1766 * They function normally from EL2 or EL3.
92611c00 1767 */
87562e4f
PM
1768 if (arm_current_el(env) == 1) {
1769 if (arm_is_secure_below_el3(env)) {
1770 return CP_ACCESS_TRAP_UNCATEGORIZED_EL3;
1771 }
1772 return CP_ACCESS_TRAP_UNCATEGORIZED;
1773 }
92611c00
PM
1774 }
1775 return CP_ACCESS_OK;
1776}
1777
060e8a48 1778static uint64_t do_ats_write(CPUARMState *env, uint64_t value,
d3649702 1779 int access_type, ARMMMUIdx mmu_idx)
4a501606 1780{
a8170e5e 1781 hwaddr phys_addr;
4a501606
PM
1782 target_ulong page_size;
1783 int prot;
b7cc4e82
PC
1784 uint32_t fsr;
1785 bool ret;
01c097f7 1786 uint64_t par64;
8bf5b6a9 1787 MemTxAttrs attrs = {};
e14b5a23 1788 ARMMMUFaultInfo fi = {};
4a501606 1789
d3649702 1790 ret = get_phys_addr(env, value, access_type, mmu_idx,
e14b5a23 1791 &phys_addr, &attrs, &prot, &page_size, &fsr, &fi);
702a9357 1792 if (extended_addresses_enabled(env)) {
b7cc4e82 1793 /* fsr is a DFSR/IFSR value for the long descriptor
702a9357
PM
1794 * translation table format, but with WnR always clear.
1795 * Convert it to a 64-bit PAR.
1796 */
01c097f7 1797 par64 = (1 << 11); /* LPAE bit always set */
b7cc4e82 1798 if (!ret) {
702a9357 1799 par64 |= phys_addr & ~0xfffULL;
8bf5b6a9
PM
1800 if (!attrs.secure) {
1801 par64 |= (1 << 9); /* NS */
1802 }
702a9357 1803 /* We don't set the ATTR or SH fields in the PAR. */
4a501606 1804 } else {
702a9357 1805 par64 |= 1; /* F */
b7cc4e82 1806 par64 |= (fsr & 0x3f) << 1; /* FS */
702a9357
PM
1807 /* Note that S2WLK and FSTAGE are always zero, because we don't
1808 * implement virtualization and therefore there can't be a stage 2
1809 * fault.
1810 */
4a501606
PM
1811 }
1812 } else {
b7cc4e82 1813 /* fsr is a DFSR/IFSR value for the short descriptor
702a9357
PM
1814 * translation table format (with WnR always clear).
1815 * Convert it to a 32-bit PAR.
1816 */
b7cc4e82 1817 if (!ret) {
702a9357
PM
1818 /* We do not set any attribute bits in the PAR */
1819 if (page_size == (1 << 24)
1820 && arm_feature(env, ARM_FEATURE_V7)) {
01c097f7 1821 par64 = (phys_addr & 0xff000000) | (1 << 1);
702a9357 1822 } else {
01c097f7 1823 par64 = phys_addr & 0xfffff000;
702a9357 1824 }
8bf5b6a9
PM
1825 if (!attrs.secure) {
1826 par64 |= (1 << 9); /* NS */
1827 }
702a9357 1828 } else {
b7cc4e82
PC
1829 par64 = ((fsr & (1 << 10)) >> 5) | ((fsr & (1 << 12)) >> 6) |
1830 ((fsr & 0xf) << 1) | 1;
702a9357 1831 }
4a501606 1832 }
060e8a48
PM
1833 return par64;
1834}
1835
1836static void ats_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
1837{
060e8a48
PM
1838 int access_type = ri->opc2 & 1;
1839 uint64_t par64;
d3649702
PM
1840 ARMMMUIdx mmu_idx;
1841 int el = arm_current_el(env);
1842 bool secure = arm_is_secure_below_el3(env);
060e8a48 1843
d3649702
PM
1844 switch (ri->opc2 & 6) {
1845 case 0:
1846 /* stage 1 current state PL1: ATS1CPR, ATS1CPW */
1847 switch (el) {
1848 case 3:
1849 mmu_idx = ARMMMUIdx_S1E3;
1850 break;
1851 case 2:
1852 mmu_idx = ARMMMUIdx_S1NSE1;
1853 break;
1854 case 1:
1855 mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S1NSE1;
1856 break;
1857 default:
1858 g_assert_not_reached();
1859 }
1860 break;
1861 case 2:
1862 /* stage 1 current state PL0: ATS1CUR, ATS1CUW */
1863 switch (el) {
1864 case 3:
1865 mmu_idx = ARMMMUIdx_S1SE0;
1866 break;
1867 case 2:
1868 mmu_idx = ARMMMUIdx_S1NSE0;
1869 break;
1870 case 1:
1871 mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S1NSE0;
1872 break;
1873 default:
1874 g_assert_not_reached();
1875 }
1876 break;
1877 case 4:
1878 /* stage 1+2 NonSecure PL1: ATS12NSOPR, ATS12NSOPW */
1879 mmu_idx = ARMMMUIdx_S12NSE1;
1880 break;
1881 case 6:
1882 /* stage 1+2 NonSecure PL0: ATS12NSOUR, ATS12NSOUW */
1883 mmu_idx = ARMMMUIdx_S12NSE0;
1884 break;
1885 default:
1886 g_assert_not_reached();
1887 }
1888
1889 par64 = do_ats_write(env, value, access_type, mmu_idx);
01c097f7
FA
1890
1891 A32_BANKED_CURRENT_REG_SET(env, par, par64);
4a501606 1892}
060e8a48 1893
14db7fe0
PM
1894static void ats1h_write(CPUARMState *env, const ARMCPRegInfo *ri,
1895 uint64_t value)
1896{
1897 int access_type = ri->opc2 & 1;
1898 uint64_t par64;
1899
1900 par64 = do_ats_write(env, value, access_type, ARMMMUIdx_S2NS);
1901
1902 A32_BANKED_CURRENT_REG_SET(env, par, par64);
1903}
1904
2a47df95
PM
1905static CPAccessResult at_s1e2_access(CPUARMState *env, const ARMCPRegInfo *ri)
1906{
1907 if (arm_current_el(env) == 3 && !(env->cp15.scr_el3 & SCR_NS)) {
1908 return CP_ACCESS_TRAP;
1909 }
1910 return CP_ACCESS_OK;
1911}
1912
060e8a48
PM
1913static void ats_write64(CPUARMState *env, const ARMCPRegInfo *ri,
1914 uint64_t value)
1915{
060e8a48 1916 int access_type = ri->opc2 & 1;
d3649702
PM
1917 ARMMMUIdx mmu_idx;
1918 int secure = arm_is_secure_below_el3(env);
1919
1920 switch (ri->opc2 & 6) {
1921 case 0:
1922 switch (ri->opc1) {
1923 case 0: /* AT S1E1R, AT S1E1W */
1924 mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S1NSE1;
1925 break;
1926 case 4: /* AT S1E2R, AT S1E2W */
1927 mmu_idx = ARMMMUIdx_S1E2;
1928 break;
1929 case 6: /* AT S1E3R, AT S1E3W */
1930 mmu_idx = ARMMMUIdx_S1E3;
1931 break;
1932 default:
1933 g_assert_not_reached();
1934 }
1935 break;
1936 case 2: /* AT S1E0R, AT S1E0W */
1937 mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S1NSE0;
1938 break;
1939 case 4: /* AT S12E1R, AT S12E1W */
2a47df95 1940 mmu_idx = secure ? ARMMMUIdx_S1SE1 : ARMMMUIdx_S12NSE1;
d3649702
PM
1941 break;
1942 case 6: /* AT S12E0R, AT S12E0W */
2a47df95 1943 mmu_idx = secure ? ARMMMUIdx_S1SE0 : ARMMMUIdx_S12NSE0;
d3649702
PM
1944 break;
1945 default:
1946 g_assert_not_reached();
1947 }
060e8a48 1948
d3649702 1949 env->cp15.par_el[1] = do_ats_write(env, value, access_type, mmu_idx);
060e8a48 1950}
4a501606
PM
1951#endif
1952
1953static const ARMCPRegInfo vapa_cp_reginfo[] = {
1954 { .name = "PAR", .cp = 15, .crn = 7, .crm = 4, .opc1 = 0, .opc2 = 0,
1955 .access = PL1_RW, .resetvalue = 0,
01c097f7
FA
1956 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.par_s),
1957 offsetoflow32(CPUARMState, cp15.par_ns) },
4a501606
PM
1958 .writefn = par_write },
1959#ifndef CONFIG_USER_ONLY
87562e4f 1960 /* This underdecoding is safe because the reginfo is NO_RAW. */
4a501606 1961 { .name = "ATS", .cp = 15, .crn = 7, .crm = 8, .opc1 = 0, .opc2 = CP_ANY,
92611c00 1962 .access = PL1_W, .accessfn = ats_access,
7a0e58fa 1963 .writefn = ats_write, .type = ARM_CP_NO_RAW },
4a501606
PM
1964#endif
1965 REGINFO_SENTINEL
1966};
1967
18032bec
PM
1968/* Return basic MPU access permission bits. */
1969static uint32_t simple_mpu_ap_bits(uint32_t val)
1970{
1971 uint32_t ret;
1972 uint32_t mask;
1973 int i;
1974 ret = 0;
1975 mask = 3;
1976 for (i = 0; i < 16; i += 2) {
1977 ret |= (val >> i) & mask;
1978 mask <<= 2;
1979 }
1980 return ret;
1981}
1982
1983/* Pad basic MPU access permission bits to extended format. */
1984static uint32_t extended_mpu_ap_bits(uint32_t val)
1985{
1986 uint32_t ret;
1987 uint32_t mask;
1988 int i;
1989 ret = 0;
1990 mask = 3;
1991 for (i = 0; i < 16; i += 2) {
1992 ret |= (val & mask) << i;
1993 mask <<= 2;
1994 }
1995 return ret;
1996}
1997
c4241c7d
PM
1998static void pmsav5_data_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
1999 uint64_t value)
18032bec 2000{
7e09797c 2001 env->cp15.pmsav5_data_ap = extended_mpu_ap_bits(value);
18032bec
PM
2002}
2003
c4241c7d 2004static uint64_t pmsav5_data_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
18032bec 2005{
7e09797c 2006 return simple_mpu_ap_bits(env->cp15.pmsav5_data_ap);
18032bec
PM
2007}
2008
c4241c7d
PM
2009static void pmsav5_insn_ap_write(CPUARMState *env, const ARMCPRegInfo *ri,
2010 uint64_t value)
18032bec 2011{
7e09797c 2012 env->cp15.pmsav5_insn_ap = extended_mpu_ap_bits(value);
18032bec
PM
2013}
2014
c4241c7d 2015static uint64_t pmsav5_insn_ap_read(CPUARMState *env, const ARMCPRegInfo *ri)
18032bec 2016{
7e09797c 2017 return simple_mpu_ap_bits(env->cp15.pmsav5_insn_ap);
18032bec
PM
2018}
2019
6cb0b013
PC
2020static uint64_t pmsav7_read(CPUARMState *env, const ARMCPRegInfo *ri)
2021{
2022 uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
2023
2024 if (!u32p) {
2025 return 0;
2026 }
2027
2028 u32p += env->cp15.c6_rgnr;
2029 return *u32p;
2030}
2031
2032static void pmsav7_write(CPUARMState *env, const ARMCPRegInfo *ri,
2033 uint64_t value)
2034{
2035 ARMCPU *cpu = arm_env_get_cpu(env);
2036 uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
2037
2038 if (!u32p) {
2039 return;
2040 }
2041
2042 u32p += env->cp15.c6_rgnr;
2043 tlb_flush(CPU(cpu), 1); /* Mappings may have changed - purge! */
2044 *u32p = value;
2045}
2046
2047static void pmsav7_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2048{
2049 ARMCPU *cpu = arm_env_get_cpu(env);
2050 uint32_t *u32p = *(uint32_t **)raw_ptr(env, ri);
2051
2052 if (!u32p) {
2053 return;
2054 }
2055
2056 memset(u32p, 0, sizeof(*u32p) * cpu->pmsav7_dregion);
2057}
2058
2059static void pmsav7_rgnr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2060 uint64_t value)
2061{
2062 ARMCPU *cpu = arm_env_get_cpu(env);
2063 uint32_t nrgs = cpu->pmsav7_dregion;
2064
2065 if (value >= nrgs) {
2066 qemu_log_mask(LOG_GUEST_ERROR,
2067 "PMSAv7 RGNR write >= # supported regions, %" PRIu32
2068 " > %" PRIu32 "\n", (uint32_t)value, nrgs);
2069 return;
2070 }
2071
2072 raw_write(env, ri, value);
2073}
2074
2075static const ARMCPRegInfo pmsav7_cp_reginfo[] = {
2076 { .name = "DRBAR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 0,
2077 .access = PL1_RW, .type = ARM_CP_NO_RAW,
2078 .fieldoffset = offsetof(CPUARMState, pmsav7.drbar),
2079 .readfn = pmsav7_read, .writefn = pmsav7_write, .resetfn = pmsav7_reset },
2080 { .name = "DRSR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 2,
2081 .access = PL1_RW, .type = ARM_CP_NO_RAW,
2082 .fieldoffset = offsetof(CPUARMState, pmsav7.drsr),
2083 .readfn = pmsav7_read, .writefn = pmsav7_write, .resetfn = pmsav7_reset },
2084 { .name = "DRACR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 1, .opc2 = 4,
2085 .access = PL1_RW, .type = ARM_CP_NO_RAW,
2086 .fieldoffset = offsetof(CPUARMState, pmsav7.dracr),
2087 .readfn = pmsav7_read, .writefn = pmsav7_write, .resetfn = pmsav7_reset },
2088 { .name = "RGNR", .cp = 15, .crn = 6, .opc1 = 0, .crm = 2, .opc2 = 0,
2089 .access = PL1_RW,
2090 .fieldoffset = offsetof(CPUARMState, cp15.c6_rgnr),
2091 .writefn = pmsav7_rgnr_write },
2092 REGINFO_SENTINEL
2093};
2094
18032bec
PM
2095static const ARMCPRegInfo pmsav5_cp_reginfo[] = {
2096 { .name = "DATA_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
7a0e58fa 2097 .access = PL1_RW, .type = ARM_CP_ALIAS,
7e09797c 2098 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
18032bec
PM
2099 .readfn = pmsav5_data_ap_read, .writefn = pmsav5_data_ap_write, },
2100 { .name = "INSN_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
7a0e58fa 2101 .access = PL1_RW, .type = ARM_CP_ALIAS,
7e09797c 2102 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
18032bec
PM
2103 .readfn = pmsav5_insn_ap_read, .writefn = pmsav5_insn_ap_write, },
2104 { .name = "DATA_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 2,
2105 .access = PL1_RW,
7e09797c
PM
2106 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_data_ap),
2107 .resetvalue = 0, },
18032bec
PM
2108 { .name = "INSN_EXT_AP", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 3,
2109 .access = PL1_RW,
7e09797c
PM
2110 .fieldoffset = offsetof(CPUARMState, cp15.pmsav5_insn_ap),
2111 .resetvalue = 0, },
ecce5c3c
PM
2112 { .name = "DCACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
2113 .access = PL1_RW,
2114 .fieldoffset = offsetof(CPUARMState, cp15.c2_data), .resetvalue = 0, },
2115 { .name = "ICACHE_CFG", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 1,
2116 .access = PL1_RW,
2117 .fieldoffset = offsetof(CPUARMState, cp15.c2_insn), .resetvalue = 0, },
06d76f31 2118 /* Protection region base and size registers */
e508a92b
PM
2119 { .name = "946_PRBS0", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0,
2120 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2121 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[0]) },
2122 { .name = "946_PRBS1", .cp = 15, .crn = 6, .crm = 1, .opc1 = 0,
2123 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2124 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[1]) },
2125 { .name = "946_PRBS2", .cp = 15, .crn = 6, .crm = 2, .opc1 = 0,
2126 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2127 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[2]) },
2128 { .name = "946_PRBS3", .cp = 15, .crn = 6, .crm = 3, .opc1 = 0,
2129 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2130 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[3]) },
2131 { .name = "946_PRBS4", .cp = 15, .crn = 6, .crm = 4, .opc1 = 0,
2132 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2133 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[4]) },
2134 { .name = "946_PRBS5", .cp = 15, .crn = 6, .crm = 5, .opc1 = 0,
2135 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2136 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[5]) },
2137 { .name = "946_PRBS6", .cp = 15, .crn = 6, .crm = 6, .opc1 = 0,
2138 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2139 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[6]) },
2140 { .name = "946_PRBS7", .cp = 15, .crn = 6, .crm = 7, .opc1 = 0,
2141 .opc2 = CP_ANY, .access = PL1_RW, .resetvalue = 0,
2142 .fieldoffset = offsetof(CPUARMState, cp15.c6_region[7]) },
18032bec
PM
2143 REGINFO_SENTINEL
2144};
2145
c4241c7d
PM
2146static void vmsa_ttbcr_raw_write(CPUARMState *env, const ARMCPRegInfo *ri,
2147 uint64_t value)
ecce5c3c 2148{
11f136ee 2149 TCR *tcr = raw_ptr(env, ri);
2ebcebe2
PM
2150 int maskshift = extract32(value, 0, 3);
2151
e389be16
FA
2152 if (!arm_feature(env, ARM_FEATURE_V8)) {
2153 if (arm_feature(env, ARM_FEATURE_LPAE) && (value & TTBCR_EAE)) {
2154 /* Pre ARMv8 bits [21:19], [15:14] and [6:3] are UNK/SBZP when
2155 * using Long-desciptor translation table format */
2156 value &= ~((7 << 19) | (3 << 14) | (0xf << 3));
2157 } else if (arm_feature(env, ARM_FEATURE_EL3)) {
2158 /* In an implementation that includes the Security Extensions
2159 * TTBCR has additional fields PD0 [4] and PD1 [5] for
2160 * Short-descriptor translation table format.
2161 */
2162 value &= TTBCR_PD1 | TTBCR_PD0 | TTBCR_N;
2163 } else {
2164 value &= TTBCR_N;
2165 }
e42c4db3 2166 }
e389be16 2167
b6af0975 2168 /* Update the masks corresponding to the TCR bank being written
11f136ee 2169 * Note that we always calculate mask and base_mask, but
e42c4db3 2170 * they are only used for short-descriptor tables (ie if EAE is 0);
11f136ee
FA
2171 * for long-descriptor tables the TCR fields are used differently
2172 * and the mask and base_mask values are meaningless.
e42c4db3 2173 */
11f136ee
FA
2174 tcr->raw_tcr = value;
2175 tcr->mask = ~(((uint32_t)0xffffffffu) >> maskshift);
2176 tcr->base_mask = ~((uint32_t)0x3fffu >> maskshift);
ecce5c3c
PM
2177}
2178
c4241c7d
PM
2179static void vmsa_ttbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2180 uint64_t value)
d4e6df63 2181{
00c8cb0a
AF
2182 ARMCPU *cpu = arm_env_get_cpu(env);
2183
d4e6df63
PM
2184 if (arm_feature(env, ARM_FEATURE_LPAE)) {
2185 /* With LPAE the TTBCR could result in a change of ASID
2186 * via the TTBCR.A1 bit, so do a TLB flush.
2187 */
00c8cb0a 2188 tlb_flush(CPU(cpu), 1);
d4e6df63 2189 }
c4241c7d 2190 vmsa_ttbcr_raw_write(env, ri, value);
d4e6df63
PM
2191}
2192
ecce5c3c
PM
2193static void vmsa_ttbcr_reset(CPUARMState *env, const ARMCPRegInfo *ri)
2194{
11f136ee
FA
2195 TCR *tcr = raw_ptr(env, ri);
2196
2197 /* Reset both the TCR as well as the masks corresponding to the bank of
2198 * the TCR being reset.
2199 */
2200 tcr->raw_tcr = 0;
2201 tcr->mask = 0;
2202 tcr->base_mask = 0xffffc000u;
ecce5c3c
PM
2203}
2204
cb2e37df
PM
2205static void vmsa_tcr_el1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2206 uint64_t value)
2207{
00c8cb0a 2208 ARMCPU *cpu = arm_env_get_cpu(env);
11f136ee 2209 TCR *tcr = raw_ptr(env, ri);
00c8cb0a 2210
cb2e37df 2211 /* For AArch64 the A1 bit could result in a change of ASID, so TLB flush. */
00c8cb0a 2212 tlb_flush(CPU(cpu), 1);
11f136ee 2213 tcr->raw_tcr = value;
cb2e37df
PM
2214}
2215
327ed10f
PM
2216static void vmsa_ttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2217 uint64_t value)
2218{
2219 /* 64 bit accesses to the TTBRs can change the ASID and so we
2220 * must flush the TLB.
2221 */
2222 if (cpreg_field_is_64bit(ri)) {
00c8cb0a
AF
2223 ARMCPU *cpu = arm_env_get_cpu(env);
2224
2225 tlb_flush(CPU(cpu), 1);
327ed10f
PM
2226 }
2227 raw_write(env, ri, value);
2228}
2229
b698e9cf
EI
2230static void vttbr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2231 uint64_t value)
2232{
2233 ARMCPU *cpu = arm_env_get_cpu(env);
2234 CPUState *cs = CPU(cpu);
2235
2236 /* Accesses to VTTBR may change the VMID so we must flush the TLB. */
2237 if (raw_read(env, ri) != value) {
2238 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S12NSE1, ARMMMUIdx_S12NSE0,
2239 ARMMMUIdx_S2NS, -1);
2240 raw_write(env, ri, value);
2241 }
2242}
2243
8e5d75c9 2244static const ARMCPRegInfo vmsa_pmsa_cp_reginfo[] = {
18032bec 2245 { .name = "DFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 0,
7a0e58fa 2246 .access = PL1_RW, .type = ARM_CP_ALIAS,
4a7e2d73 2247 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dfsr_s),
b061a82b 2248 offsetoflow32(CPUARMState, cp15.dfsr_ns) }, },
18032bec 2249 { .name = "IFSR", .cp = 15, .crn = 5, .crm = 0, .opc1 = 0, .opc2 = 1,
88ca1c2d
FA
2250 .access = PL1_RW, .resetvalue = 0,
2251 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.ifsr_s),
2252 offsetoflow32(CPUARMState, cp15.ifsr_ns) } },
8e5d75c9
PC
2253 { .name = "DFAR", .cp = 15, .opc1 = 0, .crn = 6, .crm = 0, .opc2 = 0,
2254 .access = PL1_RW, .resetvalue = 0,
2255 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.dfar_s),
2256 offsetof(CPUARMState, cp15.dfar_ns) } },
2257 { .name = "FAR_EL1", .state = ARM_CP_STATE_AA64,
2258 .opc0 = 3, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 0,
2259 .access = PL1_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[1]),
2260 .resetvalue = 0, },
2261 REGINFO_SENTINEL
2262};
2263
2264static const ARMCPRegInfo vmsa_cp_reginfo[] = {
6cd8a264
RH
2265 { .name = "ESR_EL1", .state = ARM_CP_STATE_AA64,
2266 .opc0 = 3, .crn = 5, .crm = 2, .opc1 = 0, .opc2 = 0,
2267 .access = PL1_RW,
d81c519c 2268 .fieldoffset = offsetof(CPUARMState, cp15.esr_el[1]), .resetvalue = 0, },
327ed10f 2269 { .name = "TTBR0_EL1", .state = ARM_CP_STATE_BOTH,
7dd8c9af
FA
2270 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 0,
2271 .access = PL1_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
2272 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
2273 offsetof(CPUARMState, cp15.ttbr0_ns) } },
327ed10f 2274 { .name = "TTBR1_EL1", .state = ARM_CP_STATE_BOTH,
7dd8c9af
FA
2275 .opc0 = 3, .opc1 = 0, .crn = 2, .crm = 0, .opc2 = 1,
2276 .access = PL1_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
2277 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
2278 offsetof(CPUARMState, cp15.ttbr1_ns) } },
cb2e37df
PM
2279 { .name = "TCR_EL1", .state = ARM_CP_STATE_AA64,
2280 .opc0 = 3, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
2281 .access = PL1_RW, .writefn = vmsa_tcr_el1_write,
2282 .resetfn = vmsa_ttbcr_reset, .raw_writefn = raw_write,
11f136ee 2283 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[1]) },
cb2e37df 2284 { .name = "TTBCR", .cp = 15, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 2,
7a0e58fa 2285 .access = PL1_RW, .type = ARM_CP_ALIAS, .writefn = vmsa_ttbcr_write,
b061a82b 2286 .raw_writefn = vmsa_ttbcr_raw_write,
11f136ee
FA
2287 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.tcr_el[3]),
2288 offsetoflow32(CPUARMState, cp15.tcr_el[1])} },
18032bec
PM
2289 REGINFO_SENTINEL
2290};
2291
c4241c7d
PM
2292static void omap_ticonfig_write(CPUARMState *env, const ARMCPRegInfo *ri,
2293 uint64_t value)
1047b9d7
PM
2294{
2295 env->cp15.c15_ticonfig = value & 0xe7;
2296 /* The OS_TYPE bit in this register changes the reported CPUID! */
2297 env->cp15.c0_cpuid = (value & (1 << 5)) ?
2298 ARM_CPUID_TI915T : ARM_CPUID_TI925T;
1047b9d7
PM
2299}
2300
c4241c7d
PM
2301static void omap_threadid_write(CPUARMState *env, const ARMCPRegInfo *ri,
2302 uint64_t value)
1047b9d7
PM
2303{
2304 env->cp15.c15_threadid = value & 0xffff;
1047b9d7
PM
2305}
2306
c4241c7d
PM
2307static void omap_wfi_write(CPUARMState *env, const ARMCPRegInfo *ri,
2308 uint64_t value)
1047b9d7
PM
2309{
2310 /* Wait-for-interrupt (deprecated) */
c3affe56 2311 cpu_interrupt(CPU(arm_env_get_cpu(env)), CPU_INTERRUPT_HALT);
1047b9d7
PM
2312}
2313
c4241c7d
PM
2314static void omap_cachemaint_write(CPUARMState *env, const ARMCPRegInfo *ri,
2315 uint64_t value)
c4804214
PM
2316{
2317 /* On OMAP there are registers indicating the max/min index of dcache lines
2318 * containing a dirty line; cache flush operations have to reset these.
2319 */
2320 env->cp15.c15_i_max = 0x000;
2321 env->cp15.c15_i_min = 0xff0;
c4804214
PM
2322}
2323
18032bec
PM
2324static const ARMCPRegInfo omap_cp_reginfo[] = {
2325 { .name = "DFSR", .cp = 15, .crn = 5, .crm = CP_ANY,
2326 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW, .type = ARM_CP_OVERRIDE,
d81c519c 2327 .fieldoffset = offsetoflow32(CPUARMState, cp15.esr_el[1]),
6cd8a264 2328 .resetvalue = 0, },
1047b9d7
PM
2329 { .name = "", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0,
2330 .access = PL1_RW, .type = ARM_CP_NOP },
2331 { .name = "TICONFIG", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0,
2332 .access = PL1_RW,
2333 .fieldoffset = offsetof(CPUARMState, cp15.c15_ticonfig), .resetvalue = 0,
2334 .writefn = omap_ticonfig_write },
2335 { .name = "IMAX", .cp = 15, .crn = 15, .crm = 2, .opc1 = 0, .opc2 = 0,
2336 .access = PL1_RW,
2337 .fieldoffset = offsetof(CPUARMState, cp15.c15_i_max), .resetvalue = 0, },
2338 { .name = "IMIN", .cp = 15, .crn = 15, .crm = 3, .opc1 = 0, .opc2 = 0,
2339 .access = PL1_RW, .resetvalue = 0xff0,
2340 .fieldoffset = offsetof(CPUARMState, cp15.c15_i_min) },
2341 { .name = "THREADID", .cp = 15, .crn = 15, .crm = 4, .opc1 = 0, .opc2 = 0,
2342 .access = PL1_RW,
2343 .fieldoffset = offsetof(CPUARMState, cp15.c15_threadid), .resetvalue = 0,
2344 .writefn = omap_threadid_write },
2345 { .name = "TI925T_STATUS", .cp = 15, .crn = 15,
2346 .crm = 8, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
7a0e58fa 2347 .type = ARM_CP_NO_RAW,
1047b9d7
PM
2348 .readfn = arm_cp_read_zero, .writefn = omap_wfi_write, },
2349 /* TODO: Peripheral port remap register:
2350 * On OMAP2 mcr p15, 0, rn, c15, c2, 4 sets up the interrupt controller
2351 * base address at $rn & ~0xfff and map size of 0x200 << ($rn & 0xfff),
2352 * when MMU is off.
2353 */
c4804214 2354 { .name = "OMAP_CACHEMAINT", .cp = 15, .crn = 7, .crm = CP_ANY,
d4e6df63 2355 .opc1 = 0, .opc2 = CP_ANY, .access = PL1_W,
7a0e58fa 2356 .type = ARM_CP_OVERRIDE | ARM_CP_NO_RAW,
c4804214 2357 .writefn = omap_cachemaint_write },
34f90529
PM
2358 { .name = "C9", .cp = 15, .crn = 9,
2359 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_RW,
2360 .type = ARM_CP_CONST | ARM_CP_OVERRIDE, .resetvalue = 0 },
1047b9d7
PM
2361 REGINFO_SENTINEL
2362};
2363
c4241c7d
PM
2364static void xscale_cpar_write(CPUARMState *env, const ARMCPRegInfo *ri,
2365 uint64_t value)
1047b9d7 2366{
c0f4af17 2367 env->cp15.c15_cpar = value & 0x3fff;
1047b9d7
PM
2368}
2369
2370static const ARMCPRegInfo xscale_cp_reginfo[] = {
2371 { .name = "XSCALE_CPAR",
2372 .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0, .access = PL1_RW,
2373 .fieldoffset = offsetof(CPUARMState, cp15.c15_cpar), .resetvalue = 0,
2374 .writefn = xscale_cpar_write, },
2771db27
PM
2375 { .name = "XSCALE_AUXCR",
2376 .cp = 15, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 1, .access = PL1_RW,
2377 .fieldoffset = offsetof(CPUARMState, cp15.c1_xscaleauxcr),
2378 .resetvalue = 0, },
3b771579
PM
2379 /* XScale specific cache-lockdown: since we have no cache we NOP these
2380 * and hope the guest does not really rely on cache behaviour.
2381 */
2382 { .name = "XSCALE_LOCK_ICACHE_LINE",
2383 .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 0,
2384 .access = PL1_W, .type = ARM_CP_NOP },
2385 { .name = "XSCALE_UNLOCK_ICACHE",
2386 .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 1,
2387 .access = PL1_W, .type = ARM_CP_NOP },
2388 { .name = "XSCALE_DCACHE_LOCK",
2389 .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 0,
2390 .access = PL1_RW, .type = ARM_CP_NOP },
2391 { .name = "XSCALE_UNLOCK_DCACHE",
2392 .cp = 15, .opc1 = 0, .crn = 9, .crm = 2, .opc2 = 1,
2393 .access = PL1_W, .type = ARM_CP_NOP },
1047b9d7
PM
2394 REGINFO_SENTINEL
2395};
2396
2397static const ARMCPRegInfo dummy_c15_cp_reginfo[] = {
2398 /* RAZ/WI the whole crn=15 space, when we don't have a more specific
2399 * implementation of this implementation-defined space.
2400 * Ideally this should eventually disappear in favour of actually
2401 * implementing the correct behaviour for all cores.
2402 */
2403 { .name = "C15_IMPDEF", .cp = 15, .crn = 15,
2404 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
3671cd87 2405 .access = PL1_RW,
7a0e58fa 2406 .type = ARM_CP_CONST | ARM_CP_NO_RAW | ARM_CP_OVERRIDE,
d4e6df63 2407 .resetvalue = 0 },
18032bec
PM
2408 REGINFO_SENTINEL
2409};
2410
c4804214
PM
2411static const ARMCPRegInfo cache_dirty_status_cp_reginfo[] = {
2412 /* Cache status: RAZ because we have no cache so it's always clean */
2413 { .name = "CDSR", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 6,
7a0e58fa 2414 .access = PL1_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
d4e6df63 2415 .resetvalue = 0 },
c4804214
PM
2416 REGINFO_SENTINEL
2417};
2418
2419static const ARMCPRegInfo cache_block_ops_cp_reginfo[] = {
2420 /* We never have a a block transfer operation in progress */
2421 { .name = "BXSR", .cp = 15, .crn = 7, .crm = 12, .opc1 = 0, .opc2 = 4,
7a0e58fa 2422 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
d4e6df63 2423 .resetvalue = 0 },
30b05bba
PM
2424 /* The cache ops themselves: these all NOP for QEMU */
2425 { .name = "IICR", .cp = 15, .crm = 5, .opc1 = 0,
2426 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2427 { .name = "IDCR", .cp = 15, .crm = 6, .opc1 = 0,
2428 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2429 { .name = "CDCR", .cp = 15, .crm = 12, .opc1 = 0,
2430 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2431 { .name = "PIR", .cp = 15, .crm = 12, .opc1 = 1,
2432 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2433 { .name = "PDR", .cp = 15, .crm = 12, .opc1 = 2,
2434 .access = PL0_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
2435 { .name = "CIDCR", .cp = 15, .crm = 14, .opc1 = 0,
2436 .access = PL1_W, .type = ARM_CP_NOP|ARM_CP_64BIT },
c4804214
PM
2437 REGINFO_SENTINEL
2438};
2439
2440static const ARMCPRegInfo cache_test_clean_cp_reginfo[] = {
2441 /* The cache test-and-clean instructions always return (1 << 30)
2442 * to indicate that there are no dirty cache lines.
2443 */
2444 { .name = "TC_DCACHE", .cp = 15, .crn = 7, .crm = 10, .opc1 = 0, .opc2 = 3,
7a0e58fa 2445 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
d4e6df63 2446 .resetvalue = (1 << 30) },
c4804214 2447 { .name = "TCI_DCACHE", .cp = 15, .crn = 7, .crm = 14, .opc1 = 0, .opc2 = 3,
7a0e58fa 2448 .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW,
d4e6df63 2449 .resetvalue = (1 << 30) },
c4804214
PM
2450 REGINFO_SENTINEL
2451};
2452
34f90529
PM
2453static const ARMCPRegInfo strongarm_cp_reginfo[] = {
2454 /* Ignore ReadBuffer accesses */
2455 { .name = "C9_READBUFFER", .cp = 15, .crn = 9,
2456 .crm = CP_ANY, .opc1 = CP_ANY, .opc2 = CP_ANY,
d4e6df63 2457 .access = PL1_RW, .resetvalue = 0,
7a0e58fa 2458 .type = ARM_CP_CONST | ARM_CP_OVERRIDE | ARM_CP_NO_RAW },
34f90529
PM
2459 REGINFO_SENTINEL
2460};
2461
731de9e6
EI
2462static uint64_t midr_read(CPUARMState *env, const ARMCPRegInfo *ri)
2463{
2464 ARMCPU *cpu = arm_env_get_cpu(env);
2465 unsigned int cur_el = arm_current_el(env);
2466 bool secure = arm_is_secure(env);
2467
2468 if (arm_feature(&cpu->env, ARM_FEATURE_EL2) && !secure && cur_el == 1) {
2469 return env->cp15.vpidr_el2;
2470 }
2471 return raw_read(env, ri);
2472}
2473
06a7e647 2474static uint64_t mpidr_read_val(CPUARMState *env)
81bdde9d 2475{
eb5e1d3c
PF
2476 ARMCPU *cpu = ARM_CPU(arm_env_get_cpu(env));
2477 uint64_t mpidr = cpu->mp_affinity;
2478
81bdde9d 2479 if (arm_feature(env, ARM_FEATURE_V7MP)) {
78dbbbe4 2480 mpidr |= (1U << 31);
81bdde9d
PM
2481 /* Cores which are uniprocessor (non-coherent)
2482 * but still implement the MP extensions set
a8e81b31 2483 * bit 30. (For instance, Cortex-R5).
81bdde9d 2484 */
a8e81b31
PC
2485 if (cpu->mp_is_up) {
2486 mpidr |= (1u << 30);
2487 }
81bdde9d 2488 }
c4241c7d 2489 return mpidr;
81bdde9d
PM
2490}
2491
06a7e647
EI
2492static uint64_t mpidr_read(CPUARMState *env, const ARMCPRegInfo *ri)
2493{
f0d574d6
EI
2494 unsigned int cur_el = arm_current_el(env);
2495 bool secure = arm_is_secure(env);
2496
2497 if (arm_feature(env, ARM_FEATURE_EL2) && !secure && cur_el == 1) {
2498 return env->cp15.vmpidr_el2;
2499 }
06a7e647
EI
2500 return mpidr_read_val(env);
2501}
2502
81bdde9d 2503static const ARMCPRegInfo mpidr_cp_reginfo[] = {
4b7fff2f
PM
2504 { .name = "MPIDR", .state = ARM_CP_STATE_BOTH,
2505 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 5,
7a0e58fa 2506 .access = PL1_R, .readfn = mpidr_read, .type = ARM_CP_NO_RAW },
81bdde9d
PM
2507 REGINFO_SENTINEL
2508};
2509
7ac681cf 2510static const ARMCPRegInfo lpae_cp_reginfo[] = {
a903c449 2511 /* NOP AMAIR0/1 */
b0fe2427
PM
2512 { .name = "AMAIR0", .state = ARM_CP_STATE_BOTH,
2513 .opc0 = 3, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 0,
a903c449 2514 .access = PL1_RW, .type = ARM_CP_CONST,
7ac681cf 2515 .resetvalue = 0 },
b0fe2427 2516 /* AMAIR1 is mapped to AMAIR_EL1[63:32] */
7ac681cf 2517 { .name = "AMAIR1", .cp = 15, .crn = 10, .crm = 3, .opc1 = 0, .opc2 = 1,
a903c449 2518 .access = PL1_RW, .type = ARM_CP_CONST,
7ac681cf 2519 .resetvalue = 0 },
891a2fe7 2520 { .name = "PAR", .cp = 15, .crm = 7, .opc1 = 0,
01c097f7
FA
2521 .access = PL1_RW, .type = ARM_CP_64BIT, .resetvalue = 0,
2522 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.par_s),
2523 offsetof(CPUARMState, cp15.par_ns)} },
891a2fe7 2524 { .name = "TTBR0", .cp = 15, .crm = 2, .opc1 = 0,
7a0e58fa 2525 .access = PL1_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
7dd8c9af
FA
2526 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr0_s),
2527 offsetof(CPUARMState, cp15.ttbr0_ns) },
b061a82b 2528 .writefn = vmsa_ttbr_write, },
891a2fe7 2529 { .name = "TTBR1", .cp = 15, .crm = 2, .opc1 = 1,
7a0e58fa 2530 .access = PL1_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
7dd8c9af
FA
2531 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.ttbr1_s),
2532 offsetof(CPUARMState, cp15.ttbr1_ns) },
b061a82b 2533 .writefn = vmsa_ttbr_write, },
7ac681cf
PM
2534 REGINFO_SENTINEL
2535};
2536
c4241c7d 2537static uint64_t aa64_fpcr_read(CPUARMState *env, const ARMCPRegInfo *ri)
b0d2b7d0 2538{
c4241c7d 2539 return vfp_get_fpcr(env);
b0d2b7d0
PM
2540}
2541
c4241c7d
PM
2542static void aa64_fpcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2543 uint64_t value)
b0d2b7d0
PM
2544{
2545 vfp_set_fpcr(env, value);
b0d2b7d0
PM
2546}
2547
c4241c7d 2548static uint64_t aa64_fpsr_read(CPUARMState *env, const ARMCPRegInfo *ri)
b0d2b7d0 2549{
c4241c7d 2550 return vfp_get_fpsr(env);
b0d2b7d0
PM
2551}
2552
c4241c7d
PM
2553static void aa64_fpsr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2554 uint64_t value)
b0d2b7d0
PM
2555{
2556 vfp_set_fpsr(env, value);
b0d2b7d0
PM
2557}
2558
c2b820fe
PM
2559static CPAccessResult aa64_daif_access(CPUARMState *env, const ARMCPRegInfo *ri)
2560{
137feaa9 2561 if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UMA)) {
c2b820fe
PM
2562 return CP_ACCESS_TRAP;
2563 }
2564 return CP_ACCESS_OK;
2565}
2566
2567static void aa64_daif_write(CPUARMState *env, const ARMCPRegInfo *ri,
2568 uint64_t value)
2569{
2570 env->daif = value & PSTATE_DAIF;
2571}
2572
8af35c37
PM
2573static CPAccessResult aa64_cacheop_access(CPUARMState *env,
2574 const ARMCPRegInfo *ri)
2575{
2576 /* Cache invalidate/clean: NOP, but EL0 must UNDEF unless
2577 * SCTLR_EL1.UCI is set.
2578 */
137feaa9 2579 if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UCI)) {
8af35c37
PM
2580 return CP_ACCESS_TRAP;
2581 }
2582 return CP_ACCESS_OK;
2583}
2584
dbb1fb27
AB
2585/* See: D4.7.2 TLB maintenance requirements and the TLB maintenance instructions
2586 * Page D4-1736 (DDI0487A.b)
2587 */
2588
fd3ed969
PM
2589static void tlbi_aa64_vmalle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2590 uint64_t value)
168aa23b 2591{
31b030d4 2592 ARMCPU *cpu = arm_env_get_cpu(env);
fd3ed969 2593 CPUState *cs = CPU(cpu);
dbb1fb27 2594
fd3ed969
PM
2595 if (arm_is_secure_below_el3(env)) {
2596 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S1SE1, ARMMMUIdx_S1SE0, -1);
2597 } else {
2598 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S12NSE1, ARMMMUIdx_S12NSE0, -1);
2599 }
168aa23b
PM
2600}
2601
fd3ed969
PM
2602static void tlbi_aa64_vmalle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2603 uint64_t value)
168aa23b 2604{
fd3ed969
PM
2605 bool sec = arm_is_secure_below_el3(env);
2606 CPUState *other_cs;
dbb1fb27 2607
fd3ed969
PM
2608 CPU_FOREACH(other_cs) {
2609 if (sec) {
2610 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S1SE1, ARMMMUIdx_S1SE0, -1);
2611 } else {
2612 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S12NSE1,
2613 ARMMMUIdx_S12NSE0, -1);
2614 }
2615 }
168aa23b
PM
2616}
2617
fd3ed969
PM
2618static void tlbi_aa64_alle1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2619 uint64_t value)
168aa23b 2620{
fd3ed969
PM
2621 /* Note that the 'ALL' scope must invalidate both stage 1 and
2622 * stage 2 translations, whereas most other scopes only invalidate
2623 * stage 1 translations.
2624 */
00c8cb0a 2625 ARMCPU *cpu = arm_env_get_cpu(env);
fd3ed969
PM
2626 CPUState *cs = CPU(cpu);
2627
2628 if (arm_is_secure_below_el3(env)) {
2629 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S1SE1, ARMMMUIdx_S1SE0, -1);
2630 } else {
2631 if (arm_feature(env, ARM_FEATURE_EL2)) {
2632 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S12NSE1, ARMMMUIdx_S12NSE0,
2633 ARMMMUIdx_S2NS, -1);
2634 } else {
2635 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S12NSE1, ARMMMUIdx_S12NSE0, -1);
2636 }
2637 }
168aa23b
PM
2638}
2639
fd3ed969 2640static void tlbi_aa64_alle2_write(CPUARMState *env, const ARMCPRegInfo *ri,
fa439fc5
PM
2641 uint64_t value)
2642{
fd3ed969
PM
2643 ARMCPU *cpu = arm_env_get_cpu(env);
2644 CPUState *cs = CPU(cpu);
2645
2646 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S1E2, -1);
2647}
2648
43efaa33
PM
2649static void tlbi_aa64_alle3_write(CPUARMState *env, const ARMCPRegInfo *ri,
2650 uint64_t value)
2651{
2652 ARMCPU *cpu = arm_env_get_cpu(env);
2653 CPUState *cs = CPU(cpu);
2654
2655 tlb_flush_by_mmuidx(cs, ARMMMUIdx_S1E3, -1);
2656}
2657
fd3ed969
PM
2658static void tlbi_aa64_alle1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2659 uint64_t value)
2660{
2661 /* Note that the 'ALL' scope must invalidate both stage 1 and
2662 * stage 2 translations, whereas most other scopes only invalidate
2663 * stage 1 translations.
2664 */
2665 bool sec = arm_is_secure_below_el3(env);
2666 bool has_el2 = arm_feature(env, ARM_FEATURE_EL2);
fa439fc5 2667 CPUState *other_cs;
fa439fc5
PM
2668
2669 CPU_FOREACH(other_cs) {
fd3ed969
PM
2670 if (sec) {
2671 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S1SE1, ARMMMUIdx_S1SE0, -1);
2672 } else if (has_el2) {
2673 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S12NSE1,
2674 ARMMMUIdx_S12NSE0, ARMMMUIdx_S2NS, -1);
2675 } else {
2676 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S12NSE1,
2677 ARMMMUIdx_S12NSE0, -1);
2678 }
fa439fc5
PM
2679 }
2680}
2681
2bfb9d75
PM
2682static void tlbi_aa64_alle2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2683 uint64_t value)
2684{
2685 CPUState *other_cs;
2686
2687 CPU_FOREACH(other_cs) {
2688 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S1E2, -1);
2689 }
2690}
2691
43efaa33
PM
2692static void tlbi_aa64_alle3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2693 uint64_t value)
2694{
2695 CPUState *other_cs;
2696
2697 CPU_FOREACH(other_cs) {
2698 tlb_flush_by_mmuidx(other_cs, ARMMMUIdx_S1E3, -1);
2699 }
2700}
2701
fd3ed969
PM
2702static void tlbi_aa64_vae1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2703 uint64_t value)
2704{
2705 /* Invalidate by VA, EL1&0 (AArch64 version).
2706 * Currently handles all of VAE1, VAAE1, VAALE1 and VALE1,
2707 * since we don't support flush-for-specific-ASID-only or
2708 * flush-last-level-only.
2709 */
2710 ARMCPU *cpu = arm_env_get_cpu(env);
2711 CPUState *cs = CPU(cpu);
2712 uint64_t pageaddr = sextract64(value << 12, 0, 56);
2713
2714 if (arm_is_secure_below_el3(env)) {
2715 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdx_S1SE1,
2716 ARMMMUIdx_S1SE0, -1);
2717 } else {
2718 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdx_S12NSE1,
2719 ARMMMUIdx_S12NSE0, -1);
2720 }
2721}
2722
2723static void tlbi_aa64_vae2_write(CPUARMState *env, const ARMCPRegInfo *ri,
2724 uint64_t value)
fa439fc5 2725{
fd3ed969
PM
2726 /* Invalidate by VA, EL2
2727 * Currently handles both VAE2 and VALE2, since we don't support
2728 * flush-last-level-only.
2729 */
2730 ARMCPU *cpu = arm_env_get_cpu(env);
2731 CPUState *cs = CPU(cpu);
2732 uint64_t pageaddr = sextract64(value << 12, 0, 56);
2733
2734 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdx_S1E2, -1);
2735}
2736
43efaa33
PM
2737static void tlbi_aa64_vae3_write(CPUARMState *env, const ARMCPRegInfo *ri,
2738 uint64_t value)
2739{
2740 /* Invalidate by VA, EL3
2741 * Currently handles both VAE3 and VALE3, since we don't support
2742 * flush-last-level-only.
2743 */
2744 ARMCPU *cpu = arm_env_get_cpu(env);
2745 CPUState *cs = CPU(cpu);
2746 uint64_t pageaddr = sextract64(value << 12, 0, 56);
2747
2748 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdx_S1E3, -1);
2749}
2750
fd3ed969
PM
2751static void tlbi_aa64_vae1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2752 uint64_t value)
2753{
2754 bool sec = arm_is_secure_below_el3(env);
fa439fc5
PM
2755 CPUState *other_cs;
2756 uint64_t pageaddr = sextract64(value << 12, 0, 56);
2757
2758 CPU_FOREACH(other_cs) {
fd3ed969
PM
2759 if (sec) {
2760 tlb_flush_page_by_mmuidx(other_cs, pageaddr, ARMMMUIdx_S1SE1,
2761 ARMMMUIdx_S1SE0, -1);
2762 } else {
2763 tlb_flush_page_by_mmuidx(other_cs, pageaddr, ARMMMUIdx_S12NSE1,
2764 ARMMMUIdx_S12NSE0, -1);
2765 }
fa439fc5
PM
2766 }
2767}
2768
fd3ed969
PM
2769static void tlbi_aa64_vae2is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2770 uint64_t value)
fa439fc5
PM
2771{
2772 CPUState *other_cs;
fd3ed969 2773 uint64_t pageaddr = sextract64(value << 12, 0, 56);
fa439fc5
PM
2774
2775 CPU_FOREACH(other_cs) {
fd3ed969 2776 tlb_flush_page_by_mmuidx(other_cs, pageaddr, ARMMMUIdx_S1E2, -1);
fa439fc5
PM
2777 }
2778}
2779
43efaa33
PM
2780static void tlbi_aa64_vae3is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2781 uint64_t value)
2782{
2783 CPUState *other_cs;
2784 uint64_t pageaddr = sextract64(value << 12, 0, 56);
2785
2786 CPU_FOREACH(other_cs) {
2787 tlb_flush_page_by_mmuidx(other_cs, pageaddr, ARMMMUIdx_S1E3, -1);
2788 }
2789}
2790
cea66e91
PM
2791static void tlbi_aa64_ipas2e1_write(CPUARMState *env, const ARMCPRegInfo *ri,
2792 uint64_t value)
2793{
2794 /* Invalidate by IPA. This has to invalidate any structures that
2795 * contain only stage 2 translation information, but does not need
2796 * to apply to structures that contain combined stage 1 and stage 2
2797 * translation information.
2798 * This must NOP if EL2 isn't implemented or SCR_EL3.NS is zero.
2799 */
2800 ARMCPU *cpu = arm_env_get_cpu(env);
2801 CPUState *cs = CPU(cpu);
2802 uint64_t pageaddr;
2803
2804 if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
2805 return;
2806 }
2807
2808 pageaddr = sextract64(value << 12, 0, 48);
2809
2810 tlb_flush_page_by_mmuidx(cs, pageaddr, ARMMMUIdx_S2NS, -1);
2811}
2812
2813static void tlbi_aa64_ipas2e1is_write(CPUARMState *env, const ARMCPRegInfo *ri,
2814 uint64_t value)
2815{
2816 CPUState *other_cs;
2817 uint64_t pageaddr;
2818
2819 if (!arm_feature(env, ARM_FEATURE_EL2) || !(env->cp15.scr_el3 & SCR_NS)) {
2820 return;
2821 }
2822
2823 pageaddr = sextract64(value << 12, 0, 48);
2824
2825 CPU_FOREACH(other_cs) {
2826 tlb_flush_page_by_mmuidx(other_cs, pageaddr, ARMMMUIdx_S2NS, -1);
2827 }
2828}
2829
aca3f40b
PM
2830static CPAccessResult aa64_zva_access(CPUARMState *env, const ARMCPRegInfo *ri)
2831{
2832 /* We don't implement EL2, so the only control on DC ZVA is the
2833 * bit in the SCTLR which can prohibit access for EL0.
2834 */
137feaa9 2835 if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_DZE)) {
aca3f40b
PM
2836 return CP_ACCESS_TRAP;
2837 }
2838 return CP_ACCESS_OK;
2839}
2840
2841static uint64_t aa64_dczid_read(CPUARMState *env, const ARMCPRegInfo *ri)
2842{
2843 ARMCPU *cpu = arm_env_get_cpu(env);
2844 int dzp_bit = 1 << 4;
2845
2846 /* DZP indicates whether DC ZVA access is allowed */
14e5f106 2847 if (aa64_zva_access(env, NULL) == CP_ACCESS_OK) {
aca3f40b
PM
2848 dzp_bit = 0;
2849 }
2850 return cpu->dcz_blocksize | dzp_bit;
2851}
2852
f502cfc2
PM
2853static CPAccessResult sp_el0_access(CPUARMState *env, const ARMCPRegInfo *ri)
2854{
cdcf1405 2855 if (!(env->pstate & PSTATE_SP)) {
f502cfc2
PM
2856 /* Access to SP_EL0 is undefined if it's being used as
2857 * the stack pointer.
2858 */
2859 return CP_ACCESS_TRAP_UNCATEGORIZED;
2860 }
2861 return CP_ACCESS_OK;
2862}
2863
2864static uint64_t spsel_read(CPUARMState *env, const ARMCPRegInfo *ri)
2865{
2866 return env->pstate & PSTATE_SP;
2867}
2868
2869static void spsel_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t val)
2870{
2871 update_spsel(env, val);
2872}
2873
137feaa9
FA
2874static void sctlr_write(CPUARMState *env, const ARMCPRegInfo *ri,
2875 uint64_t value)
2876{
2877 ARMCPU *cpu = arm_env_get_cpu(env);
2878
2879 if (raw_read(env, ri) == value) {
2880 /* Skip the TLB flush if nothing actually changed; Linux likes
2881 * to do a lot of pointless SCTLR writes.
2882 */
2883 return;
2884 }
2885
2886 raw_write(env, ri, value);
2887 /* ??? Lots of these bits are not implemented. */
2888 /* This may enable/disable the MMU, so do a TLB flush. */
2889 tlb_flush(CPU(cpu), 1);
2890}
2891
b0d2b7d0
PM
2892static const ARMCPRegInfo v8_cp_reginfo[] = {
2893 /* Minimal set of EL0-visible registers. This will need to be expanded
2894 * significantly for system emulation of AArch64 CPUs.
2895 */
2896 { .name = "NZCV", .state = ARM_CP_STATE_AA64,
2897 .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 2,
2898 .access = PL0_RW, .type = ARM_CP_NZCV },
c2b820fe
PM
2899 { .name = "DAIF", .state = ARM_CP_STATE_AA64,
2900 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 2,
7a0e58fa 2901 .type = ARM_CP_NO_RAW,
c2b820fe
PM
2902 .access = PL0_RW, .accessfn = aa64_daif_access,
2903 .fieldoffset = offsetof(CPUARMState, daif),
2904 .writefn = aa64_daif_write, .resetfn = arm_cp_reset_ignore },
b0d2b7d0
PM
2905 { .name = "FPCR", .state = ARM_CP_STATE_AA64,
2906 .opc0 = 3, .opc1 = 3, .opc2 = 0, .crn = 4, .crm = 4,
2907 .access = PL0_RW, .readfn = aa64_fpcr_read, .writefn = aa64_fpcr_write },
2908 { .name = "FPSR", .state = ARM_CP_STATE_AA64,
2909 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 4, .crm = 4,
2910 .access = PL0_RW, .readfn = aa64_fpsr_read, .writefn = aa64_fpsr_write },
b0d2b7d0
PM
2911 { .name = "DCZID_EL0", .state = ARM_CP_STATE_AA64,
2912 .opc0 = 3, .opc1 = 3, .opc2 = 7, .crn = 0, .crm = 0,
7a0e58fa 2913 .access = PL0_R, .type = ARM_CP_NO_RAW,
aca3f40b
PM
2914 .readfn = aa64_dczid_read },
2915 { .name = "DC_ZVA", .state = ARM_CP_STATE_AA64,
2916 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 4, .opc2 = 1,
2917 .access = PL0_W, .type = ARM_CP_DC_ZVA,
2918#ifndef CONFIG_USER_ONLY
2919 /* Avoid overhead of an access check that always passes in user-mode */
2920 .accessfn = aa64_zva_access,
2921#endif
2922 },
0eef9d98
PM
2923 { .name = "CURRENTEL", .state = ARM_CP_STATE_AA64,
2924 .opc0 = 3, .opc1 = 0, .opc2 = 2, .crn = 4, .crm = 2,
2925 .access = PL1_R, .type = ARM_CP_CURRENTEL },
8af35c37
PM
2926 /* Cache ops: all NOPs since we don't emulate caches */
2927 { .name = "IC_IALLUIS", .state = ARM_CP_STATE_AA64,
2928 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
2929 .access = PL1_W, .type = ARM_CP_NOP },
2930 { .name = "IC_IALLU", .state = ARM_CP_STATE_AA64,
2931 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
2932 .access = PL1_W, .type = ARM_CP_NOP },
2933 { .name = "IC_IVAU", .state = ARM_CP_STATE_AA64,
2934 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 5, .opc2 = 1,
2935 .access = PL0_W, .type = ARM_CP_NOP,
2936 .accessfn = aa64_cacheop_access },
2937 { .name = "DC_IVAC", .state = ARM_CP_STATE_AA64,
2938 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
2939 .access = PL1_W, .type = ARM_CP_NOP },
2940 { .name = "DC_ISW", .state = ARM_CP_STATE_AA64,
2941 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
2942 .access = PL1_W, .type = ARM_CP_NOP },
2943 { .name = "DC_CVAC", .state = ARM_CP_STATE_AA64,
2944 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 10, .opc2 = 1,
2945 .access = PL0_W, .type = ARM_CP_NOP,
2946 .accessfn = aa64_cacheop_access },
2947 { .name = "DC_CSW", .state = ARM_CP_STATE_AA64,
2948 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
2949 .access = PL1_W, .type = ARM_CP_NOP },
2950 { .name = "DC_CVAU", .state = ARM_CP_STATE_AA64,
2951 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 11, .opc2 = 1,
2952 .access = PL0_W, .type = ARM_CP_NOP,
2953 .accessfn = aa64_cacheop_access },
2954 { .name = "DC_CIVAC", .state = ARM_CP_STATE_AA64,
2955 .opc0 = 1, .opc1 = 3, .crn = 7, .crm = 14, .opc2 = 1,
2956 .access = PL0_W, .type = ARM_CP_NOP,
2957 .accessfn = aa64_cacheop_access },
2958 { .name = "DC_CISW", .state = ARM_CP_STATE_AA64,
2959 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
2960 .access = PL1_W, .type = ARM_CP_NOP },
168aa23b
PM
2961 /* TLBI operations */
2962 { .name = "TLBI_VMALLE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2963 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 0,
7a0e58fa 2964 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2965 .writefn = tlbi_aa64_vmalle1is_write },
168aa23b 2966 { .name = "TLBI_VAE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2967 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 1,
7a0e58fa 2968 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2969 .writefn = tlbi_aa64_vae1is_write },
168aa23b 2970 { .name = "TLBI_ASIDE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2971 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 2,
7a0e58fa 2972 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2973 .writefn = tlbi_aa64_vmalle1is_write },
168aa23b 2974 { .name = "TLBI_VAAE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2975 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 3,
7a0e58fa 2976 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2977 .writefn = tlbi_aa64_vae1is_write },
168aa23b 2978 { .name = "TLBI_VALE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2979 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
7a0e58fa 2980 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2981 .writefn = tlbi_aa64_vae1is_write },
168aa23b 2982 { .name = "TLBI_VAALE1IS", .state = ARM_CP_STATE_AA64,
6ab9f499 2983 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
7a0e58fa 2984 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2985 .writefn = tlbi_aa64_vae1is_write },
168aa23b 2986 { .name = "TLBI_VMALLE1", .state = ARM_CP_STATE_AA64,
6ab9f499 2987 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 0,
7a0e58fa 2988 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2989 .writefn = tlbi_aa64_vmalle1_write },
168aa23b 2990 { .name = "TLBI_VAE1", .state = ARM_CP_STATE_AA64,
6ab9f499 2991 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 1,
7a0e58fa 2992 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2993 .writefn = tlbi_aa64_vae1_write },
168aa23b 2994 { .name = "TLBI_ASIDE1", .state = ARM_CP_STATE_AA64,
6ab9f499 2995 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 2,
7a0e58fa 2996 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 2997 .writefn = tlbi_aa64_vmalle1_write },
168aa23b 2998 { .name = "TLBI_VAAE1", .state = ARM_CP_STATE_AA64,
6ab9f499 2999 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 3,
7a0e58fa 3000 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 3001 .writefn = tlbi_aa64_vae1_write },
168aa23b 3002 { .name = "TLBI_VALE1", .state = ARM_CP_STATE_AA64,
6ab9f499 3003 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
7a0e58fa 3004 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 3005 .writefn = tlbi_aa64_vae1_write },
168aa23b 3006 { .name = "TLBI_VAALE1", .state = ARM_CP_STATE_AA64,
6ab9f499 3007 .opc0 = 1, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
7a0e58fa 3008 .access = PL1_W, .type = ARM_CP_NO_RAW,
fd3ed969 3009 .writefn = tlbi_aa64_vae1_write },
cea66e91
PM
3010 { .name = "TLBI_IPAS2E1IS", .state = ARM_CP_STATE_AA64,
3011 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 1,
3012 .access = PL2_W, .type = ARM_CP_NO_RAW,
3013 .writefn = tlbi_aa64_ipas2e1is_write },
3014 { .name = "TLBI_IPAS2LE1IS", .state = ARM_CP_STATE_AA64,
3015 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 0, .opc2 = 5,
3016 .access = PL2_W, .type = ARM_CP_NO_RAW,
3017 .writefn = tlbi_aa64_ipas2e1is_write },
83ddf975
PM
3018 { .name = "TLBI_ALLE1IS", .state = ARM_CP_STATE_AA64,
3019 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 4,
3020 .access = PL2_W, .type = ARM_CP_NO_RAW,
fd3ed969 3021 .writefn = tlbi_aa64_alle1is_write },
43efaa33
PM
3022 { .name = "TLBI_VMALLS12E1IS", .state = ARM_CP_STATE_AA64,
3023 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 6,
3024 .access = PL2_W, .type = ARM_CP_NO_RAW,
3025 .writefn = tlbi_aa64_alle1is_write },
cea66e91
PM
3026 { .name = "TLBI_IPAS2E1", .state = ARM_CP_STATE_AA64,
3027 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 1,
3028 .access = PL2_W, .type = ARM_CP_NO_RAW,
3029 .writefn = tlbi_aa64_ipas2e1_write },
3030 { .name = "TLBI_IPAS2LE1", .state = ARM_CP_STATE_AA64,
3031 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 4, .opc2 = 5,
3032 .access = PL2_W, .type = ARM_CP_NO_RAW,
3033 .writefn = tlbi_aa64_ipas2e1_write },
83ddf975
PM
3034 { .name = "TLBI_ALLE1", .state = ARM_CP_STATE_AA64,
3035 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 4,
3036 .access = PL2_W, .type = ARM_CP_NO_RAW,
fd3ed969 3037 .writefn = tlbi_aa64_alle1_write },
43efaa33
PM
3038 { .name = "TLBI_VMALLS12E1", .state = ARM_CP_STATE_AA64,
3039 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 6,
3040 .access = PL2_W, .type = ARM_CP_NO_RAW,
3041 .writefn = tlbi_aa64_alle1is_write },
19525524
PM
3042#ifndef CONFIG_USER_ONLY
3043 /* 64 bit address translation operations */
3044 { .name = "AT_S1E1R", .state = ARM_CP_STATE_AA64,
3045 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 0,
060e8a48 3046 .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
19525524
PM
3047 { .name = "AT_S1E1W", .state = ARM_CP_STATE_AA64,
3048 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 1,
060e8a48 3049 .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
19525524
PM
3050 { .name = "AT_S1E0R", .state = ARM_CP_STATE_AA64,
3051 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 2,
060e8a48 3052 .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
19525524
PM
3053 { .name = "AT_S1E0W", .state = ARM_CP_STATE_AA64,
3054 .opc0 = 1, .opc1 = 0, .crn = 7, .crm = 8, .opc2 = 3,
060e8a48 3055 .access = PL1_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
2a47df95 3056 { .name = "AT_S12E1R", .state = ARM_CP_STATE_AA64,
7a379c7e 3057 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 4,
2a47df95
PM
3058 .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3059 { .name = "AT_S12E1W", .state = ARM_CP_STATE_AA64,
7a379c7e 3060 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 5,
2a47df95
PM
3061 .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3062 { .name = "AT_S12E0R", .state = ARM_CP_STATE_AA64,
7a379c7e 3063 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 6,
2a47df95
PM
3064 .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3065 { .name = "AT_S12E0W", .state = ARM_CP_STATE_AA64,
7a379c7e 3066 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 7,
2a47df95
PM
3067 .access = PL2_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3068 /* AT S1E2* are elsewhere as they UNDEF from EL3 if EL2 is not present */
3069 { .name = "AT_S1E3R", .state = ARM_CP_STATE_AA64,
3070 .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 0,
3071 .access = PL3_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3072 { .name = "AT_S1E3W", .state = ARM_CP_STATE_AA64,
3073 .opc0 = 1, .opc1 = 6, .crn = 7, .crm = 8, .opc2 = 1,
3074 .access = PL3_W, .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
c96fc9b5
EI
3075 { .name = "PAR_EL1", .state = ARM_CP_STATE_AA64,
3076 .type = ARM_CP_ALIAS,
3077 .opc0 = 3, .opc1 = 0, .crn = 7, .crm = 4, .opc2 = 0,
3078 .access = PL1_RW, .resetvalue = 0,
3079 .fieldoffset = offsetof(CPUARMState, cp15.par_el[1]),
3080 .writefn = par_write },
19525524 3081#endif
995939a6 3082 /* TLB invalidate last level of translation table walk */
9449fdf6 3083 { .name = "TLBIMVALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 5,
7a0e58fa 3084 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_is_write },
9449fdf6 3085 { .name = "TLBIMVAALIS", .cp = 15, .opc1 = 0, .crn = 8, .crm = 3, .opc2 = 7,
7a0e58fa 3086 .type = ARM_CP_NO_RAW, .access = PL1_W,
fa439fc5 3087 .writefn = tlbimvaa_is_write },
9449fdf6 3088 { .name = "TLBIMVAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 5,
7a0e58fa 3089 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimva_write },
9449fdf6 3090 { .name = "TLBIMVAAL", .cp = 15, .opc1 = 0, .crn = 8, .crm = 7, .opc2 = 7,
7a0e58fa 3091 .type = ARM_CP_NO_RAW, .access = PL1_W, .writefn = tlbimvaa_write },
9449fdf6
PM
3092 /* 32 bit cache operations */
3093 { .name = "ICIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 0,
3094 .type = ARM_CP_NOP, .access = PL1_W },
3095 { .name = "BPIALLUIS", .cp = 15, .opc1 = 0, .crn = 7, .crm = 1, .opc2 = 6,
3096 .type = ARM_CP_NOP, .access = PL1_W },
3097 { .name = "ICIALLU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 0,
3098 .type = ARM_CP_NOP, .access = PL1_W },
3099 { .name = "ICIMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 1,
3100 .type = ARM_CP_NOP, .access = PL1_W },
3101 { .name = "BPIALL", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 6,
3102 .type = ARM_CP_NOP, .access = PL1_W },
3103 { .name = "BPIMVA", .cp = 15, .opc1 = 0, .crn = 7, .crm = 5, .opc2 = 7,
3104 .type = ARM_CP_NOP, .access = PL1_W },
3105 { .name = "DCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 1,
3106 .type = ARM_CP_NOP, .access = PL1_W },
3107 { .name = "DCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 6, .opc2 = 2,
3108 .type = ARM_CP_NOP, .access = PL1_W },
3109 { .name = "DCCMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 1,
3110 .type = ARM_CP_NOP, .access = PL1_W },
3111 { .name = "DCCSW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 10, .opc2 = 2,
3112 .type = ARM_CP_NOP, .access = PL1_W },
3113 { .name = "DCCMVAU", .cp = 15, .opc1 = 0, .crn = 7, .crm = 11, .opc2 = 1,
3114 .type = ARM_CP_NOP, .access = PL1_W },
3115 { .name = "DCCIMVAC", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 1,
3116 .type = ARM_CP_NOP, .access = PL1_W },
3117 { .name = "DCCISW", .cp = 15, .opc1 = 0, .crn = 7, .crm = 14, .opc2 = 2,
3118 .type = ARM_CP_NOP, .access = PL1_W },
3119 /* MMU Domain access control / MPU write buffer control */
0c17d68c
FA
3120 { .name = "DACR", .cp = 15, .opc1 = 0, .crn = 3, .crm = 0, .opc2 = 0,
3121 .access = PL1_RW, .resetvalue = 0,
3122 .writefn = dacr_write, .raw_writefn = raw_write,
3123 .bank_fieldoffsets = { offsetoflow32(CPUARMState, cp15.dacr_s),
3124 offsetoflow32(CPUARMState, cp15.dacr_ns) } },
a0618a19 3125 { .name = "ELR_EL1", .state = ARM_CP_STATE_AA64,
7a0e58fa 3126 .type = ARM_CP_ALIAS,
a0618a19 3127 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 1,
6947f059
EI
3128 .access = PL1_RW,
3129 .fieldoffset = offsetof(CPUARMState, elr_el[1]) },
a65f1de9 3130 { .name = "SPSR_EL1", .state = ARM_CP_STATE_AA64,
7a0e58fa 3131 .type = ARM_CP_ALIAS,
a65f1de9 3132 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 0, .opc2 = 0,
99a99c1f
SB
3133 .access = PL1_RW,
3134 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_SVC]) },
f502cfc2
PM
3135 /* We rely on the access checks not allowing the guest to write to the
3136 * state field when SPSel indicates that it's being used as the stack
3137 * pointer.
3138 */
3139 { .name = "SP_EL0", .state = ARM_CP_STATE_AA64,
3140 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 1, .opc2 = 0,
3141 .access = PL1_RW, .accessfn = sp_el0_access,
7a0e58fa 3142 .type = ARM_CP_ALIAS,
f502cfc2 3143 .fieldoffset = offsetof(CPUARMState, sp_el[0]) },
884b4dee
GB
3144 { .name = "SP_EL1", .state = ARM_CP_STATE_AA64,
3145 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 1, .opc2 = 0,
7a0e58fa 3146 .access = PL2_RW, .type = ARM_CP_ALIAS,
884b4dee 3147 .fieldoffset = offsetof(CPUARMState, sp_el[1]) },
f502cfc2
PM
3148 { .name = "SPSel", .state = ARM_CP_STATE_AA64,
3149 .opc0 = 3, .opc1 = 0, .crn = 4, .crm = 2, .opc2 = 0,
7a0e58fa 3150 .type = ARM_CP_NO_RAW,
f502cfc2 3151 .access = PL1_RW, .readfn = spsel_read, .writefn = spsel_write },
b0d2b7d0
PM
3152 REGINFO_SENTINEL
3153};
3154
d42e3c26 3155/* Used to describe the behaviour of EL2 regs when EL2 does not exist. */
4771cd01 3156static const ARMCPRegInfo el3_no_el2_cp_reginfo[] = {
d42e3c26
EI
3157 { .name = "VBAR_EL2", .state = ARM_CP_STATE_AA64,
3158 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
3159 .access = PL2_RW,
3160 .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore },
f149e3e8 3161 { .name = "HCR_EL2", .state = ARM_CP_STATE_AA64,
7a0e58fa 3162 .type = ARM_CP_NO_RAW,
f149e3e8
EI
3163 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
3164 .access = PL2_RW,
3165 .readfn = arm_cp_read_zero, .writefn = arm_cp_write_ignore },
c6f19164
GB
3166 { .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
3167 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
3168 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
95f949ac
EI
3169 { .name = "MAIR_EL2", .state = ARM_CP_STATE_BOTH,
3170 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 0,
3171 .access = PL2_RW, .type = ARM_CP_CONST,
3172 .resetvalue = 0 },
3173 { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3174 .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 1,
3175 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
2179ef95
PM
3176 { .name = "AMAIR_EL2", .state = ARM_CP_STATE_BOTH,
3177 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 0,
3178 .access = PL2_RW, .type = ARM_CP_CONST,
3179 .resetvalue = 0 },
3180 { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3181 .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 1,
3182 .access = PL2_RW, .type = ARM_CP_CONST,
3183 .resetvalue = 0 },
37cd6c24
PM
3184 { .name = "AFSR0_EL2", .state = ARM_CP_STATE_BOTH,
3185 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 0,
3186 .access = PL2_RW, .type = ARM_CP_CONST,
3187 .resetvalue = 0 },
3188 { .name = "AFSR1_EL2", .state = ARM_CP_STATE_BOTH,
3189 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 1,
3190 .access = PL2_RW, .type = ARM_CP_CONST,
3191 .resetvalue = 0 },
06ec4c8c
EI
3192 { .name = "TCR_EL2", .state = ARM_CP_STATE_BOTH,
3193 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 2,
3194 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
68e9c2fe
EI
3195 { .name = "VTCR_EL2", .state = ARM_CP_STATE_BOTH,
3196 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
3197 .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
3198 .type = ARM_CP_CONST, .resetvalue = 0 },
b698e9cf
EI
3199 { .name = "VTTBR", .state = ARM_CP_STATE_AA32,
3200 .cp = 15, .opc1 = 6, .crm = 2,
3201 .access = PL2_RW, .accessfn = access_el3_aa32ns,
3202 .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
3203 { .name = "VTTBR_EL2", .state = ARM_CP_STATE_AA64,
3204 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 0,
3205 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
b9cb5323
EI
3206 { .name = "SCTLR_EL2", .state = ARM_CP_STATE_BOTH,
3207 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 0,
3208 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
ff05f37b
EI
3209 { .name = "TPIDR_EL2", .state = ARM_CP_STATE_BOTH,
3210 .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 2,
3211 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
a57633c0
EI
3212 { .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
3213 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
3214 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3215 { .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
3216 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3217 .resetvalue = 0 },
0b6440af
EI
3218 { .name = "CNTHCTL_EL2", .state = ARM_CP_STATE_BOTH,
3219 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 1, .opc2 = 0,
3220 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
edac4d8a
EI
3221 { .name = "CNTVOFF_EL2", .state = ARM_CP_STATE_AA64,
3222 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 0, .opc2 = 3,
3223 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3224 { .name = "CNTVOFF", .cp = 15, .opc1 = 4, .crm = 14,
3225 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3226 .resetvalue = 0 },
b0e66d95
EI
3227 { .name = "CNTHP_CVAL_EL2", .state = ARM_CP_STATE_AA64,
3228 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 2,
3229 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3230 { .name = "CNTHP_CVAL", .cp = 15, .opc1 = 6, .crm = 14,
3231 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_CONST,
3232 .resetvalue = 0 },
3233 { .name = "CNTHP_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
3234 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 0,
3235 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
3236 { .name = "CNTHP_CTL_EL2", .state = ARM_CP_STATE_BOTH,
3237 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 1,
3238 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
14cc7b54
SF
3239 { .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH,
3240 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1,
3241 .access = PL2_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
59e05530
EI
3242 { .name = "HPFAR_EL2", .state = ARM_CP_STATE_BOTH,
3243 .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
3244 .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
3245 .type = ARM_CP_CONST, .resetvalue = 0 },
d42e3c26
EI
3246 REGINFO_SENTINEL
3247};
3248
f149e3e8
EI
3249static void hcr_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
3250{
3251 ARMCPU *cpu = arm_env_get_cpu(env);
3252 uint64_t valid_mask = HCR_MASK;
3253
3254 if (arm_feature(env, ARM_FEATURE_EL3)) {
3255 valid_mask &= ~HCR_HCD;
3256 } else {
3257 valid_mask &= ~HCR_TSC;
3258 }
3259
3260 /* Clear RES0 bits. */
3261 value &= valid_mask;
3262
3263 /* These bits change the MMU setup:
3264 * HCR_VM enables stage 2 translation
3265 * HCR_PTW forbids certain page-table setups
3266 * HCR_DC Disables stage1 and enables stage2 translation
3267 */
3268 if ((raw_read(env, ri) ^ value) & (HCR_VM | HCR_PTW | HCR_DC)) {
3269 tlb_flush(CPU(cpu), 1);
3270 }
3271 raw_write(env, ri, value);
3272}
3273
4771cd01 3274static const ARMCPRegInfo el2_cp_reginfo[] = {
f149e3e8
EI
3275 { .name = "HCR_EL2", .state = ARM_CP_STATE_AA64,
3276 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 0,
3277 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.hcr_el2),
3278 .writefn = hcr_write },
0c17d68c
FA
3279 { .name = "DACR32_EL2", .state = ARM_CP_STATE_AA64,
3280 .opc0 = 3, .opc1 = 4, .crn = 3, .crm = 0, .opc2 = 0,
3281 .access = PL2_RW, .resetvalue = 0,
3282 .writefn = dacr_write, .raw_writefn = raw_write,
3283 .fieldoffset = offsetof(CPUARMState, cp15.dacr32_el2) },
3b685ba7 3284 { .name = "ELR_EL2", .state = ARM_CP_STATE_AA64,
7a0e58fa 3285 .type = ARM_CP_ALIAS,
3b685ba7
EI
3286 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 1,
3287 .access = PL2_RW,
3288 .fieldoffset = offsetof(CPUARMState, elr_el[2]) },
f2c30f42 3289 { .name = "ESR_EL2", .state = ARM_CP_STATE_AA64,
7a0e58fa 3290 .type = ARM_CP_ALIAS,
f2c30f42
EI
3291 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 2, .opc2 = 0,
3292 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[2]) },
88ca1c2d
FA
3293 { .name = "IFSR32_EL2", .state = ARM_CP_STATE_AA64,
3294 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 0, .opc2 = 1,
3295 .access = PL2_RW, .resetvalue = 0,
3296 .fieldoffset = offsetof(CPUARMState, cp15.ifsr32_el2) },
63b60551
EI
3297 { .name = "FAR_EL2", .state = ARM_CP_STATE_AA64,
3298 .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 0,
3299 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[2]) },
3b685ba7 3300 { .name = "SPSR_EL2", .state = ARM_CP_STATE_AA64,
7a0e58fa 3301 .type = ARM_CP_ALIAS,
3b685ba7 3302 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 0, .opc2 = 0,
99a99c1f
SB
3303 .access = PL2_RW,
3304 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_HYP]) },
b8764525
SB
3305 { .name = "SPSR_IRQ", .state = ARM_CP_STATE_AA64,
3306 .type = ARM_CP_ALIAS,
3307 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 0,
99a99c1f
SB
3308 .access = PL2_RW,
3309 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_IRQ]) },
b8764525
SB
3310 { .name = "SPSR_ABT", .state = ARM_CP_STATE_AA64,
3311 .type = ARM_CP_ALIAS,
3312 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 1,
99a99c1f
SB
3313 .access = PL2_RW,
3314 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_ABT]) },
b8764525
SB
3315 { .name = "SPSR_UND", .state = ARM_CP_STATE_AA64,
3316 .type = ARM_CP_ALIAS,
3317 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 2,
99a99c1f
SB
3318 .access = PL2_RW,
3319 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_UND]) },
b8764525
SB
3320 { .name = "SPSR_FIQ", .state = ARM_CP_STATE_AA64,
3321 .type = ARM_CP_ALIAS,
3322 .opc0 = 3, .opc1 = 4, .crn = 4, .crm = 3, .opc2 = 3,
99a99c1f
SB
3323 .access = PL2_RW,
3324 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_FIQ]) },
d42e3c26
EI
3325 { .name = "VBAR_EL2", .state = ARM_CP_STATE_AA64,
3326 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 0,
3327 .access = PL2_RW, .writefn = vbar_write,
3328 .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[2]),
3329 .resetvalue = 0 },
884b4dee
GB
3330 { .name = "SP_EL2", .state = ARM_CP_STATE_AA64,
3331 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 1, .opc2 = 0,
7a0e58fa 3332 .access = PL3_RW, .type = ARM_CP_ALIAS,
884b4dee 3333 .fieldoffset = offsetof(CPUARMState, sp_el[2]) },
c6f19164
GB
3334 { .name = "CPTR_EL2", .state = ARM_CP_STATE_BOTH,
3335 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 2,
3336 .access = PL2_RW, .accessfn = cptr_access, .resetvalue = 0,
3337 .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[2]) },
95f949ac
EI
3338 { .name = "MAIR_EL2", .state = ARM_CP_STATE_BOTH,
3339 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 0,
3340 .access = PL2_RW, .fieldoffset = offsetof(CPUARMState, cp15.mair_el[2]),
3341 .resetvalue = 0 },
3342 { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3343 .opc1 = 4, .crn = 10, .crm = 2, .opc2 = 1,
3344 .access = PL2_RW, .type = ARM_CP_ALIAS,
3345 .fieldoffset = offsetofhigh32(CPUARMState, cp15.mair_el[2]) },
2179ef95
PM
3346 { .name = "AMAIR_EL2", .state = ARM_CP_STATE_BOTH,
3347 .opc0 = 3, .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 0,
3348 .access = PL2_RW, .type = ARM_CP_CONST,
3349 .resetvalue = 0 },
3350 /* HAMAIR1 is mapped to AMAIR_EL2[63:32] */
3351 { .name = "HMAIR1", .state = ARM_CP_STATE_AA32,
3352 .opc1 = 4, .crn = 10, .crm = 3, .opc2 = 1,
3353 .access = PL2_RW, .type = ARM_CP_CONST,
3354 .resetvalue = 0 },
37cd6c24
PM
3355 { .name = "AFSR0_EL2", .state = ARM_CP_STATE_BOTH,
3356 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 0,
3357 .access = PL2_RW, .type = ARM_CP_CONST,
3358 .resetvalue = 0 },
3359 { .name = "AFSR1_EL2", .state = ARM_CP_STATE_BOTH,
3360 .opc0 = 3, .opc1 = 4, .crn = 5, .crm = 1, .opc2 = 1,
3361 .access = PL2_RW, .type = ARM_CP_CONST,
3362 .resetvalue = 0 },
06ec4c8c
EI
3363 { .name = "TCR_EL2", .state = ARM_CP_STATE_BOTH,
3364 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 2,
3365 .access = PL2_RW, .writefn = vmsa_tcr_el1_write,
3366 .resetfn = vmsa_ttbcr_reset, .raw_writefn = raw_write,
3367 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[2]) },
68e9c2fe
EI
3368 { .name = "VTCR", .state = ARM_CP_STATE_AA32,
3369 .cp = 15, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
3370 .access = PL2_RW, .accessfn = access_el3_aa32ns,
3371 .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
3372 { .name = "VTCR_EL2", .state = ARM_CP_STATE_AA64,
3373 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 2,
3374 .access = PL2_RW, .type = ARM_CP_ALIAS,
3375 .fieldoffset = offsetof(CPUARMState, cp15.vtcr_el2) },
b698e9cf
EI
3376 { .name = "VTTBR", .state = ARM_CP_STATE_AA32,
3377 .cp = 15, .opc1 = 6, .crm = 2,
3378 .type = ARM_CP_64BIT | ARM_CP_ALIAS,
3379 .access = PL2_RW, .accessfn = access_el3_aa32ns,
3380 .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2),
3381 .writefn = vttbr_write },
3382 { .name = "VTTBR_EL2", .state = ARM_CP_STATE_AA64,
3383 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 1, .opc2 = 0,
3384 .access = PL2_RW, .writefn = vttbr_write,
3385 .fieldoffset = offsetof(CPUARMState, cp15.vttbr_el2) },
b9cb5323
EI
3386 { .name = "SCTLR_EL2", .state = ARM_CP_STATE_BOTH,
3387 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 0,
3388 .access = PL2_RW, .raw_writefn = raw_write, .writefn = sctlr_write,
3389 .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[2]) },
ff05f37b
EI
3390 { .name = "TPIDR_EL2", .state = ARM_CP_STATE_BOTH,
3391 .opc0 = 3, .opc1 = 4, .crn = 13, .crm = 0, .opc2 = 2,
3392 .access = PL2_RW, .resetvalue = 0,
3393 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[2]) },
a57633c0
EI
3394 { .name = "TTBR0_EL2", .state = ARM_CP_STATE_AA64,
3395 .opc0 = 3, .opc1 = 4, .crn = 2, .crm = 0, .opc2 = 0,
3396 .access = PL2_RW, .resetvalue = 0,
3397 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
3398 { .name = "HTTBR", .cp = 15, .opc1 = 4, .crm = 2,
3399 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS,
a57633c0 3400 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[2]) },
51da9014
EI
3401 { .name = "TLBI_ALLE2", .state = ARM_CP_STATE_AA64,
3402 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 0,
3403 .type = ARM_CP_NO_RAW, .access = PL2_W,
fd3ed969 3404 .writefn = tlbi_aa64_alle2_write },
8742d49d
EI
3405 { .name = "TLBI_VAE2", .state = ARM_CP_STATE_AA64,
3406 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 1,
3407 .type = ARM_CP_NO_RAW, .access = PL2_W,
fd3ed969 3408 .writefn = tlbi_aa64_vae2_write },
2bfb9d75
PM
3409 { .name = "TLBI_VALE2", .state = ARM_CP_STATE_AA64,
3410 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 7, .opc2 = 5,
3411 .access = PL2_W, .type = ARM_CP_NO_RAW,
3412 .writefn = tlbi_aa64_vae2_write },
3413 { .name = "TLBI_ALLE2IS", .state = ARM_CP_STATE_AA64,
3414 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 0,
3415 .access = PL2_W, .type = ARM_CP_NO_RAW,
3416 .writefn = tlbi_aa64_alle2is_write },
8742d49d
EI
3417 { .name = "TLBI_VAE2IS", .state = ARM_CP_STATE_AA64,
3418 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 1,
3419 .type = ARM_CP_NO_RAW, .access = PL2_W,
fd3ed969 3420 .writefn = tlbi_aa64_vae2is_write },
2bfb9d75
PM
3421 { .name = "TLBI_VALE2IS", .state = ARM_CP_STATE_AA64,
3422 .opc0 = 1, .opc1 = 4, .crn = 8, .crm = 3, .opc2 = 5,
3423 .access = PL2_W, .type = ARM_CP_NO_RAW,
3424 .writefn = tlbi_aa64_vae2is_write },
edac4d8a 3425#ifndef CONFIG_USER_ONLY
2a47df95
PM
3426 /* Unlike the other EL2-related AT operations, these must
3427 * UNDEF from EL3 if EL2 is not implemented, which is why we
3428 * define them here rather than with the rest of the AT ops.
3429 */
3430 { .name = "AT_S1E2R", .state = ARM_CP_STATE_AA64,
3431 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
3432 .access = PL2_W, .accessfn = at_s1e2_access,
3433 .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
3434 { .name = "AT_S1E2W", .state = ARM_CP_STATE_AA64,
3435 .opc0 = 1, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
3436 .access = PL2_W, .accessfn = at_s1e2_access,
3437 .type = ARM_CP_NO_RAW, .writefn = ats_write64 },
14db7fe0
PM
3438 /* The AArch32 ATS1H* operations are CONSTRAINED UNPREDICTABLE
3439 * if EL2 is not implemented; we choose to UNDEF. Behaviour at EL3
3440 * with SCR.NS == 0 outside Monitor mode is UNPREDICTABLE; we choose
3441 * to behave as if SCR.NS was 1.
3442 */
3443 { .name = "ATS1HR", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 0,
3444 .access = PL2_W,
3445 .writefn = ats1h_write, .type = ARM_CP_NO_RAW },
3446 { .name = "ATS1HW", .cp = 15, .opc1 = 4, .crn = 7, .crm = 8, .opc2 = 1,
3447 .access = PL2_W,
3448 .writefn = ats1h_write, .type = ARM_CP_NO_RAW },
0b6440af
EI
3449 { .name = "CNTHCTL_EL2", .state = ARM_CP_STATE_BOTH,
3450 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 1, .opc2 = 0,
3451 /* ARMv7 requires bit 0 and 1 to reset to 1. ARMv8 defines the
3452 * reset values as IMPDEF. We choose to reset to 3 to comply with
3453 * both ARMv7 and ARMv8.
3454 */
3455 .access = PL2_RW, .resetvalue = 3,
3456 .fieldoffset = offsetof(CPUARMState, cp15.cnthctl_el2) },
edac4d8a
EI
3457 { .name = "CNTVOFF_EL2", .state = ARM_CP_STATE_AA64,
3458 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 0, .opc2 = 3,
3459 .access = PL2_RW, .type = ARM_CP_IO, .resetvalue = 0,
3460 .writefn = gt_cntvoff_write,
3461 .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
3462 { .name = "CNTVOFF", .cp = 15, .opc1 = 4, .crm = 14,
3463 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_ALIAS | ARM_CP_IO,
3464 .writefn = gt_cntvoff_write,
3465 .fieldoffset = offsetof(CPUARMState, cp15.cntvoff_el2) },
b0e66d95
EI
3466 { .name = "CNTHP_CVAL_EL2", .state = ARM_CP_STATE_AA64,
3467 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 2,
3468 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
3469 .type = ARM_CP_IO, .access = PL2_RW,
3470 .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
3471 { .name = "CNTHP_CVAL", .cp = 15, .opc1 = 6, .crm = 14,
3472 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].cval),
3473 .access = PL2_RW, .type = ARM_CP_64BIT | ARM_CP_IO,
3474 .writefn = gt_hyp_cval_write, .raw_writefn = raw_write },
3475 { .name = "CNTHP_TVAL_EL2", .state = ARM_CP_STATE_BOTH,
3476 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 0,
3477 .type = ARM_CP_IO, .access = PL2_RW,
3478 .resetfn = gt_hyp_timer_reset,
3479 .readfn = gt_hyp_tval_read, .writefn = gt_hyp_tval_write },
3480 { .name = "CNTHP_CTL_EL2", .state = ARM_CP_STATE_BOTH,
3481 .type = ARM_CP_IO,
3482 .opc0 = 3, .opc1 = 4, .crn = 14, .crm = 2, .opc2 = 1,
3483 .access = PL2_RW,
3484 .fieldoffset = offsetof(CPUARMState, cp15.c14_timer[GTIMER_HYP].ctl),
3485 .resetvalue = 0,
3486 .writefn = gt_hyp_ctl_write, .raw_writefn = raw_write },
edac4d8a 3487#endif
14cc7b54
SF
3488 /* The only field of MDCR_EL2 that has a defined architectural reset value
3489 * is MDCR_EL2.HPMN which should reset to the value of PMCR_EL0.N; but we
3490 * don't impelment any PMU event counters, so using zero as a reset
3491 * value for MDCR_EL2 is okay
3492 */
3493 { .name = "MDCR_EL2", .state = ARM_CP_STATE_BOTH,
3494 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 1, .opc2 = 1,
3495 .access = PL2_RW, .resetvalue = 0,
3496 .fieldoffset = offsetof(CPUARMState, cp15.mdcr_el2), },
59e05530
EI
3497 { .name = "HPFAR", .state = ARM_CP_STATE_AA32,
3498 .cp = 15, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
3499 .access = PL2_RW, .accessfn = access_el3_aa32ns,
3500 .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
3501 { .name = "HPFAR_EL2", .state = ARM_CP_STATE_AA64,
3502 .opc0 = 3, .opc1 = 4, .crn = 6, .crm = 0, .opc2 = 4,
3503 .access = PL2_RW,
3504 .fieldoffset = offsetof(CPUARMState, cp15.hpfar_el2) },
3b685ba7
EI
3505 REGINFO_SENTINEL
3506};
3507
60fb1a87
GB
3508static const ARMCPRegInfo el3_cp_reginfo[] = {
3509 { .name = "SCR_EL3", .state = ARM_CP_STATE_AA64,
3510 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 0,
3511 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.scr_el3),
3512 .resetvalue = 0, .writefn = scr_write },
7a0e58fa 3513 { .name = "SCR", .type = ARM_CP_ALIAS,
60fb1a87
GB
3514 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 0,
3515 .access = PL3_RW, .fieldoffset = offsetoflow32(CPUARMState, cp15.scr_el3),
b061a82b 3516 .writefn = scr_write },
60fb1a87
GB
3517 { .name = "SDER32_EL3", .state = ARM_CP_STATE_AA64,
3518 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 1,
3519 .access = PL3_RW, .resetvalue = 0,
3520 .fieldoffset = offsetof(CPUARMState, cp15.sder) },
3521 { .name = "SDER",
3522 .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 1,
3523 .access = PL3_RW, .resetvalue = 0,
3524 .fieldoffset = offsetoflow32(CPUARMState, cp15.sder) },
3525 /* TODO: Implement NSACR trapping of secure EL1 accesses to EL3 */
3526 { .name = "NSACR", .cp = 15, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 2,
3527 .access = PL3_W | PL1_R, .resetvalue = 0,
3528 .fieldoffset = offsetof(CPUARMState, cp15.nsacr) },
3529 { .name = "MVBAR", .cp = 15, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
3530 .access = PL3_RW, .writefn = vbar_write, .resetvalue = 0,
3531 .fieldoffset = offsetof(CPUARMState, cp15.mvbar) },
137feaa9 3532 { .name = "SCTLR_EL3", .state = ARM_CP_STATE_AA64,
e46e1a74 3533 .type = ARM_CP_ALIAS, /* reset handled by AArch32 view */
137feaa9
FA
3534 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 0,
3535 .access = PL3_RW, .raw_writefn = raw_write, .writefn = sctlr_write,
3536 .fieldoffset = offsetof(CPUARMState, cp15.sctlr_el[3]) },
7dd8c9af
FA
3537 { .name = "TTBR0_EL3", .state = ARM_CP_STATE_AA64,
3538 .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 0,
3539 .access = PL3_RW, .writefn = vmsa_ttbr_write, .resetvalue = 0,
3540 .fieldoffset = offsetof(CPUARMState, cp15.ttbr0_el[3]) },
11f136ee
FA
3541 { .name = "TCR_EL3", .state = ARM_CP_STATE_AA64,
3542 .opc0 = 3, .opc1 = 6, .crn = 2, .crm = 0, .opc2 = 2,
3543 .access = PL3_RW, .writefn = vmsa_tcr_el1_write,
3544 .resetfn = vmsa_ttbcr_reset, .raw_writefn = raw_write,
3545 .fieldoffset = offsetof(CPUARMState, cp15.tcr_el[3]) },
81547d66 3546 { .name = "ELR_EL3", .state = ARM_CP_STATE_AA64,
7a0e58fa 3547 .type = ARM_CP_ALIAS,
81547d66
EI
3548 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 1,
3549 .access = PL3_RW,
3550 .fieldoffset = offsetof(CPUARMState, elr_el[3]) },
f2c30f42 3551 { .name = "ESR_EL3", .state = ARM_CP_STATE_AA64,
7a0e58fa 3552 .type = ARM_CP_ALIAS,
f2c30f42
EI
3553 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 2, .opc2 = 0,
3554 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.esr_el[3]) },
63b60551
EI
3555 { .name = "FAR_EL3", .state = ARM_CP_STATE_AA64,
3556 .opc0 = 3, .opc1 = 6, .crn = 6, .crm = 0, .opc2 = 0,
3557 .access = PL3_RW, .fieldoffset = offsetof(CPUARMState, cp15.far_el[3]) },
81547d66 3558 { .name = "SPSR_EL3", .state = ARM_CP_STATE_AA64,
7a0e58fa 3559 .type = ARM_CP_ALIAS,
81547d66 3560 .opc0 = 3, .opc1 = 6, .crn = 4, .crm = 0, .opc2 = 0,
99a99c1f
SB
3561 .access = PL3_RW,
3562 .fieldoffset = offsetof(CPUARMState, banked_spsr[BANK_MON]) },
a1ba125c
EI
3563 { .name = "VBAR_EL3", .state = ARM_CP_STATE_AA64,
3564 .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 0,
3565 .access = PL3_RW, .writefn = vbar_write,
3566 .fieldoffset = offsetof(CPUARMState, cp15.vbar_el[3]),
3567 .resetvalue = 0 },
c6f19164
GB
3568 { .name = "CPTR_EL3", .state = ARM_CP_STATE_AA64,
3569 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 1, .opc2 = 2,
3570 .access = PL3_RW, .accessfn = cptr_access, .resetvalue = 0,
3571 .fieldoffset = offsetof(CPUARMState, cp15.cptr_el[3]) },
4cfb8ad8
PM
3572 { .name = "TPIDR_EL3", .state = ARM_CP_STATE_AA64,
3573 .opc0 = 3, .opc1 = 6, .crn = 13, .crm = 0, .opc2 = 2,
3574 .access = PL3_RW, .resetvalue = 0,
3575 .fieldoffset = offsetof(CPUARMState, cp15.tpidr_el[3]) },
2179ef95
PM
3576 { .name = "AMAIR_EL3", .state = ARM_CP_STATE_AA64,
3577 .opc0 = 3, .opc1 = 6, .crn = 10, .crm = 3, .opc2 = 0,
3578 .access = PL3_RW, .type = ARM_CP_CONST,
3579 .resetvalue = 0 },
37cd6c24
PM
3580 { .name = "AFSR0_EL3", .state = ARM_CP_STATE_BOTH,
3581 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 0,
3582 .access = PL3_RW, .type = ARM_CP_CONST,
3583 .resetvalue = 0 },
3584 { .name = "AFSR1_EL3", .state = ARM_CP_STATE_BOTH,
3585 .opc0 = 3, .opc1 = 6, .crn = 5, .crm = 1, .opc2 = 1,
3586 .access = PL3_RW, .type = ARM_CP_CONST,
3587 .resetvalue = 0 },
43efaa33
PM
3588 { .name = "TLBI_ALLE3IS", .state = ARM_CP_STATE_AA64,
3589 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 0,
3590 .access = PL3_W, .type = ARM_CP_NO_RAW,
3591 .writefn = tlbi_aa64_alle3is_write },
3592 { .name = "TLBI_VAE3IS", .state = ARM_CP_STATE_AA64,
3593 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 1,
3594 .access = PL3_W, .type = ARM_CP_NO_RAW,
3595 .writefn = tlbi_aa64_vae3is_write },
3596 { .name = "TLBI_VALE3IS", .state = ARM_CP_STATE_AA64,
3597 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 3, .opc2 = 5,
3598 .access = PL3_W, .type = ARM_CP_NO_RAW,
3599 .writefn = tlbi_aa64_vae3is_write },
3600 { .name = "TLBI_ALLE3", .state = ARM_CP_STATE_AA64,
3601 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 0,
3602 .access = PL3_W, .type = ARM_CP_NO_RAW,
3603 .writefn = tlbi_aa64_alle3_write },
3604 { .name = "TLBI_VAE3", .state = ARM_CP_STATE_AA64,
3605 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 1,
3606 .access = PL3_W, .type = ARM_CP_NO_RAW,
3607 .writefn = tlbi_aa64_vae3_write },
3608 { .name = "TLBI_VALE3", .state = ARM_CP_STATE_AA64,
3609 .opc0 = 1, .opc1 = 6, .crn = 8, .crm = 7, .opc2 = 5,
3610 .access = PL3_W, .type = ARM_CP_NO_RAW,
3611 .writefn = tlbi_aa64_vae3_write },
0f1a3b24
FA
3612 REGINFO_SENTINEL
3613};
3614
7da845b0
PM
3615static CPAccessResult ctr_el0_access(CPUARMState *env, const ARMCPRegInfo *ri)
3616{
3617 /* Only accessible in EL0 if SCTLR.UCT is set (and only in AArch64,
3618 * but the AArch32 CTR has its own reginfo struct)
3619 */
137feaa9 3620 if (arm_current_el(env) == 0 && !(env->cp15.sctlr_el[1] & SCTLR_UCT)) {
7da845b0
PM
3621 return CP_ACCESS_TRAP;
3622 }
3623 return CP_ACCESS_OK;
3624}
3625
1424ca8d
DM
3626static void oslar_write(CPUARMState *env, const ARMCPRegInfo *ri,
3627 uint64_t value)
3628{
3629 /* Writes to OSLAR_EL1 may update the OS lock status, which can be
3630 * read via a bit in OSLSR_EL1.
3631 */
3632 int oslock;
3633
3634 if (ri->state == ARM_CP_STATE_AA32) {
3635 oslock = (value == 0xC5ACCE55);
3636 } else {
3637 oslock = value & 1;
3638 }
3639
3640 env->cp15.oslsr_el1 = deposit32(env->cp15.oslsr_el1, 1, 1, oslock);
3641}
3642
50300698 3643static const ARMCPRegInfo debug_cp_reginfo[] = {
50300698 3644 /* DBGDRAR, DBGDSAR: always RAZ since we don't implement memory mapped
10aae104
PM
3645 * debug components. The AArch64 version of DBGDRAR is named MDRAR_EL1;
3646 * unlike DBGDRAR it is never accessible from EL0.
3647 * DBGDSAR is deprecated and must RAZ from v8 anyway, so it has no AArch64
3648 * accessor.
50300698
PM
3649 */
3650 { .name = "DBGDRAR", .cp = 14, .crn = 1, .crm = 0, .opc1 = 0, .opc2 = 0,
3651 .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = 0 },
10aae104
PM
3652 { .name = "MDRAR_EL1", .state = ARM_CP_STATE_AA64,
3653 .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
3654 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
50300698
PM
3655 { .name = "DBGDSAR", .cp = 14, .crn = 2, .crm = 0, .opc1 = 0, .opc2 = 0,
3656 .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = 0 },
17a9eb53 3657 /* Monitor debug system control register; the 32-bit alias is DBGDSCRext. */
10aae104
PM
3658 { .name = "MDSCR_EL1", .state = ARM_CP_STATE_BOTH,
3659 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
0e5e8935
PM
3660 .access = PL1_RW,
3661 .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1),
3662 .resetvalue = 0 },
5e8b12ff
PM
3663 /* MDCCSR_EL0, aka DBGDSCRint. This is a read-only mirror of MDSCR_EL1.
3664 * We don't implement the configurable EL0 access.
3665 */
3666 { .name = "MDCCSR_EL0", .state = ARM_CP_STATE_BOTH,
3667 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
7a0e58fa 3668 .type = ARM_CP_ALIAS,
5e8b12ff 3669 .access = PL1_R,
b061a82b 3670 .fieldoffset = offsetof(CPUARMState, cp15.mdscr_el1), },
10aae104
PM
3671 { .name = "OSLAR_EL1", .state = ARM_CP_STATE_BOTH,
3672 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 4,
1424ca8d
DM
3673 .access = PL1_W, .type = ARM_CP_NO_RAW,
3674 .writefn = oslar_write },
3675 { .name = "OSLSR_EL1", .state = ARM_CP_STATE_BOTH,
3676 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 1, .opc2 = 4,
3677 .access = PL1_R, .resetvalue = 10,
3678 .fieldoffset = offsetof(CPUARMState, cp15.oslsr_el1) },
5e8b12ff
PM
3679 /* Dummy OSDLR_EL1: 32-bit Linux will read this */
3680 { .name = "OSDLR_EL1", .state = ARM_CP_STATE_BOTH,
3681 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 1, .crm = 3, .opc2 = 4,
3682 .access = PL1_RW, .type = ARM_CP_NOP },
3683 /* Dummy DBGVCR: Linux wants to clear this on startup, but we don't
3684 * implement vector catch debug events yet.
3685 */
3686 { .name = "DBGVCR",
3687 .cp = 14, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
3688 .access = PL1_RW, .type = ARM_CP_NOP },
50300698
PM
3689 REGINFO_SENTINEL
3690};
3691
3692static const ARMCPRegInfo debug_lpae_cp_reginfo[] = {
3693 /* 64 bit access versions of the (dummy) debug registers */
3694 { .name = "DBGDRAR", .cp = 14, .crm = 1, .opc1 = 0,
3695 .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
3696 { .name = "DBGDSAR", .cp = 14, .crm = 2, .opc1 = 0,
3697 .access = PL0_R, .type = ARM_CP_CONST|ARM_CP_64BIT, .resetvalue = 0 },
3698 REGINFO_SENTINEL
3699};
3700
9ee98ce8
PM
3701void hw_watchpoint_update(ARMCPU *cpu, int n)
3702{
3703 CPUARMState *env = &cpu->env;
3704 vaddr len = 0;
3705 vaddr wvr = env->cp15.dbgwvr[n];
3706 uint64_t wcr = env->cp15.dbgwcr[n];
3707 int mask;
3708 int flags = BP_CPU | BP_STOP_BEFORE_ACCESS;
3709
3710 if (env->cpu_watchpoint[n]) {
3711 cpu_watchpoint_remove_by_ref(CPU(cpu), env->cpu_watchpoint[n]);
3712 env->cpu_watchpoint[n] = NULL;
3713 }
3714
3715 if (!extract64(wcr, 0, 1)) {
3716 /* E bit clear : watchpoint disabled */
3717 return;
3718 }
3719
3720 switch (extract64(wcr, 3, 2)) {
3721 case 0:
3722 /* LSC 00 is reserved and must behave as if the wp is disabled */
3723 return;
3724 case 1:
3725 flags |= BP_MEM_READ;
3726 break;
3727 case 2:
3728 flags |= BP_MEM_WRITE;
3729 break;
3730 case 3:
3731 flags |= BP_MEM_ACCESS;
3732 break;
3733 }
3734
3735 /* Attempts to use both MASK and BAS fields simultaneously are
3736 * CONSTRAINED UNPREDICTABLE; we opt to ignore BAS in this case,
3737 * thus generating a watchpoint for every byte in the masked region.
3738 */
3739 mask = extract64(wcr, 24, 4);
3740 if (mask == 1 || mask == 2) {
3741 /* Reserved values of MASK; we must act as if the mask value was
3742 * some non-reserved value, or as if the watchpoint were disabled.
3743 * We choose the latter.
3744 */
3745 return;
3746 } else if (mask) {
3747 /* Watchpoint covers an aligned area up to 2GB in size */
3748 len = 1ULL << mask;
3749 /* If masked bits in WVR are not zero it's CONSTRAINED UNPREDICTABLE
3750 * whether the watchpoint fires when the unmasked bits match; we opt
3751 * to generate the exceptions.
3752 */
3753 wvr &= ~(len - 1);
3754 } else {
3755 /* Watchpoint covers bytes defined by the byte address select bits */
3756 int bas = extract64(wcr, 5, 8);
3757 int basstart;
3758
3759 if (bas == 0) {
3760 /* This must act as if the watchpoint is disabled */
3761 return;
3762 }
3763
3764 if (extract64(wvr, 2, 1)) {
3765 /* Deprecated case of an only 4-aligned address. BAS[7:4] are
3766 * ignored, and BAS[3:0] define which bytes to watch.
3767 */
3768 bas &= 0xf;
3769 }
3770 /* The BAS bits are supposed to be programmed to indicate a contiguous
3771 * range of bytes. Otherwise it is CONSTRAINED UNPREDICTABLE whether
3772 * we fire for each byte in the word/doubleword addressed by the WVR.
3773 * We choose to ignore any non-zero bits after the first range of 1s.
3774 */
3775 basstart = ctz32(bas);
3776 len = cto32(bas >> basstart);
3777 wvr += basstart;
3778 }
3779
3780 cpu_watchpoint_insert(CPU(cpu), wvr, len, flags,
3781 &env->cpu_watchpoint[n]);
3782}
3783
3784void hw_watchpoint_update_all(ARMCPU *cpu)
3785{
3786 int i;
3787 CPUARMState *env = &cpu->env;
3788
3789 /* Completely clear out existing QEMU watchpoints and our array, to
3790 * avoid possible stale entries following migration load.
3791 */
3792 cpu_watchpoint_remove_all(CPU(cpu), BP_CPU);
3793 memset(env->cpu_watchpoint, 0, sizeof(env->cpu_watchpoint));
3794
3795 for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_watchpoint); i++) {
3796 hw_watchpoint_update(cpu, i);
3797 }
3798}
3799
3800static void dbgwvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3801 uint64_t value)
3802{
3803 ARMCPU *cpu = arm_env_get_cpu(env);
3804 int i = ri->crm;
3805
3806 /* Bits [63:49] are hardwired to the value of bit [48]; that is, the
3807 * register reads and behaves as if values written are sign extended.
3808 * Bits [1:0] are RES0.
3809 */
3810 value = sextract64(value, 0, 49) & ~3ULL;
3811
3812 raw_write(env, ri, value);
3813 hw_watchpoint_update(cpu, i);
3814}
3815
3816static void dbgwcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3817 uint64_t value)
3818{
3819 ARMCPU *cpu = arm_env_get_cpu(env);
3820 int i = ri->crm;
3821
3822 raw_write(env, ri, value);
3823 hw_watchpoint_update(cpu, i);
3824}
3825
46747d15
PM
3826void hw_breakpoint_update(ARMCPU *cpu, int n)
3827{
3828 CPUARMState *env = &cpu->env;
3829 uint64_t bvr = env->cp15.dbgbvr[n];
3830 uint64_t bcr = env->cp15.dbgbcr[n];
3831 vaddr addr;
3832 int bt;
3833 int flags = BP_CPU;
3834
3835 if (env->cpu_breakpoint[n]) {
3836 cpu_breakpoint_remove_by_ref(CPU(cpu), env->cpu_breakpoint[n]);
3837 env->cpu_breakpoint[n] = NULL;
3838 }
3839
3840 if (!extract64(bcr, 0, 1)) {
3841 /* E bit clear : watchpoint disabled */
3842 return;
3843 }
3844
3845 bt = extract64(bcr, 20, 4);
3846
3847 switch (bt) {
3848 case 4: /* unlinked address mismatch (reserved if AArch64) */
3849 case 5: /* linked address mismatch (reserved if AArch64) */
3850 qemu_log_mask(LOG_UNIMP,
3851 "arm: address mismatch breakpoint types not implemented");
3852 return;
3853 case 0: /* unlinked address match */
3854 case 1: /* linked address match */
3855 {
3856 /* Bits [63:49] are hardwired to the value of bit [48]; that is,
3857 * we behave as if the register was sign extended. Bits [1:0] are
3858 * RES0. The BAS field is used to allow setting breakpoints on 16
3859 * bit wide instructions; it is CONSTRAINED UNPREDICTABLE whether
3860 * a bp will fire if the addresses covered by the bp and the addresses
3861 * covered by the insn overlap but the insn doesn't start at the
3862 * start of the bp address range. We choose to require the insn and
3863 * the bp to have the same address. The constraints on writing to
3864 * BAS enforced in dbgbcr_write mean we have only four cases:
3865 * 0b0000 => no breakpoint
3866 * 0b0011 => breakpoint on addr
3867 * 0b1100 => breakpoint on addr + 2
3868 * 0b1111 => breakpoint on addr
3869 * See also figure D2-3 in the v8 ARM ARM (DDI0487A.c).
3870 */
3871 int bas = extract64(bcr, 5, 4);
3872 addr = sextract64(bvr, 0, 49) & ~3ULL;
3873 if (bas == 0) {
3874 return;
3875 }
3876 if (bas == 0xc) {
3877 addr += 2;
3878 }
3879 break;
3880 }
3881 case 2: /* unlinked context ID match */
3882 case 8: /* unlinked VMID match (reserved if no EL2) */
3883 case 10: /* unlinked context ID and VMID match (reserved if no EL2) */
3884 qemu_log_mask(LOG_UNIMP,
3885 "arm: unlinked context breakpoint types not implemented");
3886 return;
3887 case 9: /* linked VMID match (reserved if no EL2) */
3888 case 11: /* linked context ID and VMID match (reserved if no EL2) */
3889 case 3: /* linked context ID match */
3890 default:
3891 /* We must generate no events for Linked context matches (unless
3892 * they are linked to by some other bp/wp, which is handled in
3893 * updates for the linking bp/wp). We choose to also generate no events
3894 * for reserved values.
3895 */
3896 return;
3897 }
3898
3899 cpu_breakpoint_insert(CPU(cpu), addr, flags, &env->cpu_breakpoint[n]);
3900}
3901
3902void hw_breakpoint_update_all(ARMCPU *cpu)
3903{
3904 int i;
3905 CPUARMState *env = &cpu->env;
3906
3907 /* Completely clear out existing QEMU breakpoints and our array, to
3908 * avoid possible stale entries following migration load.
3909 */
3910 cpu_breakpoint_remove_all(CPU(cpu), BP_CPU);
3911 memset(env->cpu_breakpoint, 0, sizeof(env->cpu_breakpoint));
3912
3913 for (i = 0; i < ARRAY_SIZE(cpu->env.cpu_breakpoint); i++) {
3914 hw_breakpoint_update(cpu, i);
3915 }
3916}
3917
3918static void dbgbvr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3919 uint64_t value)
3920{
3921 ARMCPU *cpu = arm_env_get_cpu(env);
3922 int i = ri->crm;
3923
3924 raw_write(env, ri, value);
3925 hw_breakpoint_update(cpu, i);
3926}
3927
3928static void dbgbcr_write(CPUARMState *env, const ARMCPRegInfo *ri,
3929 uint64_t value)
3930{
3931 ARMCPU *cpu = arm_env_get_cpu(env);
3932 int i = ri->crm;
3933
3934 /* BAS[3] is a read-only copy of BAS[2], and BAS[1] a read-only
3935 * copy of BAS[0].
3936 */
3937 value = deposit64(value, 6, 1, extract64(value, 5, 1));
3938 value = deposit64(value, 8, 1, extract64(value, 7, 1));
3939
3940 raw_write(env, ri, value);
3941 hw_breakpoint_update(cpu, i);
3942}
3943
50300698 3944static void define_debug_regs(ARMCPU *cpu)
0b45451e 3945{
50300698
PM
3946 /* Define v7 and v8 architectural debug registers.
3947 * These are just dummy implementations for now.
0b45451e
PM
3948 */
3949 int i;
3ff6fc91 3950 int wrps, brps, ctx_cmps;
48eb3ae6
PM
3951 ARMCPRegInfo dbgdidr = {
3952 .name = "DBGDIDR", .cp = 14, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 0,
3953 .access = PL0_R, .type = ARM_CP_CONST, .resetvalue = cpu->dbgdidr,
3954 };
3955
3ff6fc91 3956 /* Note that all these register fields hold "number of Xs minus 1". */
48eb3ae6
PM
3957 brps = extract32(cpu->dbgdidr, 24, 4);
3958 wrps = extract32(cpu->dbgdidr, 28, 4);
3ff6fc91
PM
3959 ctx_cmps = extract32(cpu->dbgdidr, 20, 4);
3960
3961 assert(ctx_cmps <= brps);
48eb3ae6
PM
3962
3963 /* The DBGDIDR and ID_AA64DFR0_EL1 define various properties
3964 * of the debug registers such as number of breakpoints;
3965 * check that if they both exist then they agree.
3966 */
3967 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
3968 assert(extract32(cpu->id_aa64dfr0, 12, 4) == brps);
3969 assert(extract32(cpu->id_aa64dfr0, 20, 4) == wrps);
3ff6fc91 3970 assert(extract32(cpu->id_aa64dfr0, 28, 4) == ctx_cmps);
48eb3ae6 3971 }
0b45451e 3972
48eb3ae6 3973 define_one_arm_cp_reg(cpu, &dbgdidr);
50300698
PM
3974 define_arm_cp_regs(cpu, debug_cp_reginfo);
3975
3976 if (arm_feature(&cpu->env, ARM_FEATURE_LPAE)) {
3977 define_arm_cp_regs(cpu, debug_lpae_cp_reginfo);
3978 }
3979
48eb3ae6 3980 for (i = 0; i < brps + 1; i++) {
0b45451e 3981 ARMCPRegInfo dbgregs[] = {
10aae104
PM
3982 { .name = "DBGBVR", .state = ARM_CP_STATE_BOTH,
3983 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 4,
0b45451e 3984 .access = PL1_RW,
46747d15
PM
3985 .fieldoffset = offsetof(CPUARMState, cp15.dbgbvr[i]),
3986 .writefn = dbgbvr_write, .raw_writefn = raw_write
3987 },
10aae104
PM
3988 { .name = "DBGBCR", .state = ARM_CP_STATE_BOTH,
3989 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 5,
0b45451e 3990 .access = PL1_RW,
46747d15
PM
3991 .fieldoffset = offsetof(CPUARMState, cp15.dbgbcr[i]),
3992 .writefn = dbgbcr_write, .raw_writefn = raw_write
3993 },
48eb3ae6
PM
3994 REGINFO_SENTINEL
3995 };
3996 define_arm_cp_regs(cpu, dbgregs);
3997 }
3998
3999 for (i = 0; i < wrps + 1; i++) {
4000 ARMCPRegInfo dbgregs[] = {
10aae104
PM
4001 { .name = "DBGWVR", .state = ARM_CP_STATE_BOTH,
4002 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 6,
0b45451e 4003 .access = PL1_RW,
9ee98ce8
PM
4004 .fieldoffset = offsetof(CPUARMState, cp15.dbgwvr[i]),
4005 .writefn = dbgwvr_write, .raw_writefn = raw_write
4006 },
10aae104
PM
4007 { .name = "DBGWCR", .state = ARM_CP_STATE_BOTH,
4008 .cp = 14, .opc0 = 2, .opc1 = 0, .crn = 0, .crm = i, .opc2 = 7,
0b45451e 4009 .access = PL1_RW,
9ee98ce8
PM
4010 .fieldoffset = offsetof(CPUARMState, cp15.dbgwcr[i]),
4011 .writefn = dbgwcr_write, .raw_writefn = raw_write
4012 },
4013 REGINFO_SENTINEL
0b45451e
PM
4014 };
4015 define_arm_cp_regs(cpu, dbgregs);
4016 }
4017}
4018
2ceb98c0
PM
4019void register_cp_regs_for_features(ARMCPU *cpu)
4020{
4021 /* Register all the coprocessor registers based on feature bits */
4022 CPUARMState *env = &cpu->env;
4023 if (arm_feature(env, ARM_FEATURE_M)) {
4024 /* M profile has no coprocessor registers */
4025 return;
4026 }
4027
e9aa6c21 4028 define_arm_cp_regs(cpu, cp_reginfo);
9449fdf6
PM
4029 if (!arm_feature(env, ARM_FEATURE_V8)) {
4030 /* Must go early as it is full of wildcards that may be
4031 * overridden by later definitions.
4032 */
4033 define_arm_cp_regs(cpu, not_v8_cp_reginfo);
4034 }
4035
7d57f408 4036 if (arm_feature(env, ARM_FEATURE_V6)) {
8515a092
PM
4037 /* The ID registers all have impdef reset values */
4038 ARMCPRegInfo v6_idregs[] = {
0ff644a7
PM
4039 { .name = "ID_PFR0", .state = ARM_CP_STATE_BOTH,
4040 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 0,
4041 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4042 .resetvalue = cpu->id_pfr0 },
0ff644a7
PM
4043 { .name = "ID_PFR1", .state = ARM_CP_STATE_BOTH,
4044 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 1,
4045 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4046 .resetvalue = cpu->id_pfr1 },
0ff644a7
PM
4047 { .name = "ID_DFR0", .state = ARM_CP_STATE_BOTH,
4048 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 2,
4049 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4050 .resetvalue = cpu->id_dfr0 },
0ff644a7
PM
4051 { .name = "ID_AFR0", .state = ARM_CP_STATE_BOTH,
4052 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 3,
4053 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4054 .resetvalue = cpu->id_afr0 },
0ff644a7
PM
4055 { .name = "ID_MMFR0", .state = ARM_CP_STATE_BOTH,
4056 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 4,
4057 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4058 .resetvalue = cpu->id_mmfr0 },
0ff644a7
PM
4059 { .name = "ID_MMFR1", .state = ARM_CP_STATE_BOTH,
4060 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 5,
4061 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4062 .resetvalue = cpu->id_mmfr1 },
0ff644a7
PM
4063 { .name = "ID_MMFR2", .state = ARM_CP_STATE_BOTH,
4064 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 6,
4065 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4066 .resetvalue = cpu->id_mmfr2 },
0ff644a7
PM
4067 { .name = "ID_MMFR3", .state = ARM_CP_STATE_BOTH,
4068 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 1, .opc2 = 7,
4069 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4070 .resetvalue = cpu->id_mmfr3 },
0ff644a7
PM
4071 { .name = "ID_ISAR0", .state = ARM_CP_STATE_BOTH,
4072 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 0,
4073 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4074 .resetvalue = cpu->id_isar0 },
0ff644a7
PM
4075 { .name = "ID_ISAR1", .state = ARM_CP_STATE_BOTH,
4076 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 1,
4077 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4078 .resetvalue = cpu->id_isar1 },
0ff644a7
PM
4079 { .name = "ID_ISAR2", .state = ARM_CP_STATE_BOTH,
4080 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 2,
4081 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4082 .resetvalue = cpu->id_isar2 },
0ff644a7
PM
4083 { .name = "ID_ISAR3", .state = ARM_CP_STATE_BOTH,
4084 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 3,
4085 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4086 .resetvalue = cpu->id_isar3 },
0ff644a7
PM
4087 { .name = "ID_ISAR4", .state = ARM_CP_STATE_BOTH,
4088 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 4,
4089 .access = PL1_R, .type = ARM_CP_CONST,
8515a092 4090 .resetvalue = cpu->id_isar4 },
0ff644a7
PM
4091 { .name = "ID_ISAR5", .state = ARM_CP_STATE_BOTH,
4092 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 2, .opc2 = 5,
4093 .access = PL1_R, .type = ARM_CP_CONST,
8515a092
PM
4094 .resetvalue = cpu->id_isar5 },
4095 /* 6..7 are as yet unallocated and must RAZ */
4096 { .name = "ID_ISAR6", .cp = 15, .crn = 0, .crm = 2,
4097 .opc1 = 0, .opc2 = 6, .access = PL1_R, .type = ARM_CP_CONST,
4098 .resetvalue = 0 },
4099 { .name = "ID_ISAR7", .cp = 15, .crn = 0, .crm = 2,
4100 .opc1 = 0, .opc2 = 7, .access = PL1_R, .type = ARM_CP_CONST,
4101 .resetvalue = 0 },
4102 REGINFO_SENTINEL
4103 };
4104 define_arm_cp_regs(cpu, v6_idregs);
7d57f408
PM
4105 define_arm_cp_regs(cpu, v6_cp_reginfo);
4106 } else {
4107 define_arm_cp_regs(cpu, not_v6_cp_reginfo);
4108 }
4d31c596
PM
4109 if (arm_feature(env, ARM_FEATURE_V6K)) {
4110 define_arm_cp_regs(cpu, v6k_cp_reginfo);
4111 }
5e5cf9e3
PC
4112 if (arm_feature(env, ARM_FEATURE_V7MP) &&
4113 !arm_feature(env, ARM_FEATURE_MPU)) {
995939a6
PM
4114 define_arm_cp_regs(cpu, v7mp_cp_reginfo);
4115 }
e9aa6c21 4116 if (arm_feature(env, ARM_FEATURE_V7)) {
200ac0ef 4117 /* v7 performance monitor control register: same implementor
7c2cb42b
AF
4118 * field as main ID register, and we implement only the cycle
4119 * count register.
200ac0ef 4120 */
7c2cb42b 4121#ifndef CONFIG_USER_ONLY
200ac0ef
PM
4122 ARMCPRegInfo pmcr = {
4123 .name = "PMCR", .cp = 15, .crn = 9, .crm = 12, .opc1 = 0, .opc2 = 0,
8521466b 4124 .access = PL0_RW,
7a0e58fa 4125 .type = ARM_CP_IO | ARM_CP_ALIAS,
8521466b 4126 .fieldoffset = offsetoflow32(CPUARMState, cp15.c9_pmcr),
fcd25206
PM
4127 .accessfn = pmreg_access, .writefn = pmcr_write,
4128 .raw_writefn = raw_write,
200ac0ef 4129 };
8521466b
AF
4130 ARMCPRegInfo pmcr64 = {
4131 .name = "PMCR_EL0", .state = ARM_CP_STATE_AA64,
4132 .opc0 = 3, .opc1 = 3, .crn = 9, .crm = 12, .opc2 = 0,
4133 .access = PL0_RW, .accessfn = pmreg_access,
4134 .type = ARM_CP_IO,
4135 .fieldoffset = offsetof(CPUARMState, cp15.c9_pmcr),
4136 .resetvalue = cpu->midr & 0xff000000,
4137 .writefn = pmcr_write, .raw_writefn = raw_write,
4138 };
7c2cb42b 4139 define_one_arm_cp_reg(cpu, &pmcr);
8521466b 4140 define_one_arm_cp_reg(cpu, &pmcr64);
7c2cb42b 4141#endif
776d4e5c 4142 ARMCPRegInfo clidr = {
7da845b0
PM
4143 .name = "CLIDR", .state = ARM_CP_STATE_BOTH,
4144 .opc0 = 3, .crn = 0, .crm = 0, .opc1 = 1, .opc2 = 1,
776d4e5c
PM
4145 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->clidr
4146 };
776d4e5c 4147 define_one_arm_cp_reg(cpu, &clidr);
e9aa6c21 4148 define_arm_cp_regs(cpu, v7_cp_reginfo);
50300698 4149 define_debug_regs(cpu);
7d57f408
PM
4150 } else {
4151 define_arm_cp_regs(cpu, not_v7_cp_reginfo);
e9aa6c21 4152 }
b0d2b7d0 4153 if (arm_feature(env, ARM_FEATURE_V8)) {
e60cef86
PM
4154 /* AArch64 ID registers, which all have impdef reset values */
4155 ARMCPRegInfo v8_idregs[] = {
4156 { .name = "ID_AA64PFR0_EL1", .state = ARM_CP_STATE_AA64,
4157 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 0,
4158 .access = PL1_R, .type = ARM_CP_CONST,
4159 .resetvalue = cpu->id_aa64pfr0 },
4160 { .name = "ID_AA64PFR1_EL1", .state = ARM_CP_STATE_AA64,
4161 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 4, .opc2 = 1,
4162 .access = PL1_R, .type = ARM_CP_CONST,
4163 .resetvalue = cpu->id_aa64pfr1},
4164 { .name = "ID_AA64DFR0_EL1", .state = ARM_CP_STATE_AA64,
4165 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 0,
4166 .access = PL1_R, .type = ARM_CP_CONST,
5d831be2 4167 /* We mask out the PMUVer field, because we don't currently
9225d739
PM
4168 * implement the PMU. Not advertising it prevents the guest
4169 * from trying to use it and getting UNDEFs on registers we
4170 * don't implement.
4171 */
4172 .resetvalue = cpu->id_aa64dfr0 & ~0xf00 },
e60cef86
PM
4173 { .name = "ID_AA64DFR1_EL1", .state = ARM_CP_STATE_AA64,
4174 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 1,
4175 .access = PL1_R, .type = ARM_CP_CONST,
4176 .resetvalue = cpu->id_aa64dfr1 },
4177 { .name = "ID_AA64AFR0_EL1", .state = ARM_CP_STATE_AA64,
4178 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 4,
4179 .access = PL1_R, .type = ARM_CP_CONST,
4180 .resetvalue = cpu->id_aa64afr0 },
4181 { .name = "ID_AA64AFR1_EL1", .state = ARM_CP_STATE_AA64,
4182 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 5, .opc2 = 5,
4183 .access = PL1_R, .type = ARM_CP_CONST,
4184 .resetvalue = cpu->id_aa64afr1 },
4185 { .name = "ID_AA64ISAR0_EL1", .state = ARM_CP_STATE_AA64,
4186 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 0,
4187 .access = PL1_R, .type = ARM_CP_CONST,
4188 .resetvalue = cpu->id_aa64isar0 },
4189 { .name = "ID_AA64ISAR1_EL1", .state = ARM_CP_STATE_AA64,
4190 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 6, .opc2 = 1,
4191 .access = PL1_R, .type = ARM_CP_CONST,
4192 .resetvalue = cpu->id_aa64isar1 },
4193 { .name = "ID_AA64MMFR0_EL1", .state = ARM_CP_STATE_AA64,
4194 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 0,
4195 .access = PL1_R, .type = ARM_CP_CONST,
4196 .resetvalue = cpu->id_aa64mmfr0 },
4197 { .name = "ID_AA64MMFR1_EL1", .state = ARM_CP_STATE_AA64,
4198 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 7, .opc2 = 1,
4199 .access = PL1_R, .type = ARM_CP_CONST,
4200 .resetvalue = cpu->id_aa64mmfr1 },
a50c0f51
PM
4201 { .name = "MVFR0_EL1", .state = ARM_CP_STATE_AA64,
4202 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 0,
4203 .access = PL1_R, .type = ARM_CP_CONST,
4204 .resetvalue = cpu->mvfr0 },
4205 { .name = "MVFR1_EL1", .state = ARM_CP_STATE_AA64,
4206 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 1,
4207 .access = PL1_R, .type = ARM_CP_CONST,
4208 .resetvalue = cpu->mvfr1 },
4209 { .name = "MVFR2_EL1", .state = ARM_CP_STATE_AA64,
4210 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 3, .opc2 = 2,
4211 .access = PL1_R, .type = ARM_CP_CONST,
4212 .resetvalue = cpu->mvfr2 },
e60cef86
PM
4213 REGINFO_SENTINEL
4214 };
be8e8128
GB
4215 /* RVBAR_EL1 is only implemented if EL1 is the highest EL */
4216 if (!arm_feature(env, ARM_FEATURE_EL3) &&
4217 !arm_feature(env, ARM_FEATURE_EL2)) {
4218 ARMCPRegInfo rvbar = {
4219 .name = "RVBAR_EL1", .state = ARM_CP_STATE_AA64,
4220 .opc0 = 3, .opc1 = 0, .crn = 12, .crm = 0, .opc2 = 1,
4221 .type = ARM_CP_CONST, .access = PL1_R, .resetvalue = cpu->rvbar
4222 };
4223 define_one_arm_cp_reg(cpu, &rvbar);
4224 }
e60cef86 4225 define_arm_cp_regs(cpu, v8_idregs);
b0d2b7d0
PM
4226 define_arm_cp_regs(cpu, v8_cp_reginfo);
4227 }
3b685ba7 4228 if (arm_feature(env, ARM_FEATURE_EL2)) {
f0d574d6 4229 uint64_t vmpidr_def = mpidr_read_val(env);
731de9e6
EI
4230 ARMCPRegInfo vpidr_regs[] = {
4231 { .name = "VPIDR", .state = ARM_CP_STATE_AA32,
4232 .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
4233 .access = PL2_RW, .accessfn = access_el3_aa32ns,
4234 .resetvalue = cpu->midr,
4235 .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
4236 { .name = "VPIDR_EL2", .state = ARM_CP_STATE_AA64,
4237 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
4238 .access = PL2_RW, .resetvalue = cpu->midr,
4239 .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
f0d574d6
EI
4240 { .name = "VMPIDR", .state = ARM_CP_STATE_AA32,
4241 .cp = 15, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
4242 .access = PL2_RW, .accessfn = access_el3_aa32ns,
4243 .resetvalue = vmpidr_def,
4244 .fieldoffset = offsetof(CPUARMState, cp15.vmpidr_el2) },
4245 { .name = "VMPIDR_EL2", .state = ARM_CP_STATE_AA64,
4246 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
4247 .access = PL2_RW,
4248 .resetvalue = vmpidr_def,
4249 .fieldoffset = offsetof(CPUARMState, cp15.vmpidr_el2) },
731de9e6
EI
4250 REGINFO_SENTINEL
4251 };
4252 define_arm_cp_regs(cpu, vpidr_regs);
4771cd01 4253 define_arm_cp_regs(cpu, el2_cp_reginfo);
be8e8128
GB
4254 /* RVBAR_EL2 is only implemented if EL2 is the highest EL */
4255 if (!arm_feature(env, ARM_FEATURE_EL3)) {
4256 ARMCPRegInfo rvbar = {
4257 .name = "RVBAR_EL2", .state = ARM_CP_STATE_AA64,
4258 .opc0 = 3, .opc1 = 4, .crn = 12, .crm = 0, .opc2 = 1,
4259 .type = ARM_CP_CONST, .access = PL2_R, .resetvalue = cpu->rvbar
4260 };
4261 define_one_arm_cp_reg(cpu, &rvbar);
4262 }
d42e3c26
EI
4263 } else {
4264 /* If EL2 is missing but higher ELs are enabled, we need to
4265 * register the no_el2 reginfos.
4266 */
4267 if (arm_feature(env, ARM_FEATURE_EL3)) {
f0d574d6
EI
4268 /* When EL3 exists but not EL2, VPIDR and VMPIDR take the value
4269 * of MIDR_EL1 and MPIDR_EL1.
731de9e6
EI
4270 */
4271 ARMCPRegInfo vpidr_regs[] = {
4272 { .name = "VPIDR_EL2", .state = ARM_CP_STATE_BOTH,
4273 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 0,
4274 .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
4275 .type = ARM_CP_CONST, .resetvalue = cpu->midr,
4276 .fieldoffset = offsetof(CPUARMState, cp15.vpidr_el2) },
f0d574d6
EI
4277 { .name = "VMPIDR_EL2", .state = ARM_CP_STATE_BOTH,
4278 .opc0 = 3, .opc1 = 4, .crn = 0, .crm = 0, .opc2 = 5,
4279 .access = PL2_RW, .accessfn = access_el3_aa32ns_aa64any,
4280 .type = ARM_CP_NO_RAW,
4281 .writefn = arm_cp_write_ignore, .readfn = mpidr_read },
731de9e6
EI
4282 REGINFO_SENTINEL
4283 };
4284 define_arm_cp_regs(cpu, vpidr_regs);
4771cd01 4285 define_arm_cp_regs(cpu, el3_no_el2_cp_reginfo);
d42e3c26 4286 }
3b685ba7 4287 }
81547d66 4288 if (arm_feature(env, ARM_FEATURE_EL3)) {
0f1a3b24 4289 define_arm_cp_regs(cpu, el3_cp_reginfo);
be8e8128
GB
4290 ARMCPRegInfo rvbar = {
4291 .name = "RVBAR_EL3", .state = ARM_CP_STATE_AA64,
4292 .opc0 = 3, .opc1 = 6, .crn = 12, .crm = 0, .opc2 = 1,
4293 .type = ARM_CP_CONST, .access = PL3_R, .resetvalue = cpu->rvbar
4294 };
4295 define_one_arm_cp_reg(cpu, &rvbar);
81547d66 4296 }
18032bec 4297 if (arm_feature(env, ARM_FEATURE_MPU)) {
6cb0b013
PC
4298 if (arm_feature(env, ARM_FEATURE_V6)) {
4299 /* PMSAv6 not implemented */
4300 assert(arm_feature(env, ARM_FEATURE_V7));
4301 define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
4302 define_arm_cp_regs(cpu, pmsav7_cp_reginfo);
4303 } else {
4304 define_arm_cp_regs(cpu, pmsav5_cp_reginfo);
4305 }
18032bec 4306 } else {
8e5d75c9 4307 define_arm_cp_regs(cpu, vmsa_pmsa_cp_reginfo);
18032bec
PM
4308 define_arm_cp_regs(cpu, vmsa_cp_reginfo);
4309 }
c326b979
PM
4310 if (arm_feature(env, ARM_FEATURE_THUMB2EE)) {
4311 define_arm_cp_regs(cpu, t2ee_cp_reginfo);
4312 }
6cc7a3ae
PM
4313 if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) {
4314 define_arm_cp_regs(cpu, generic_timer_cp_reginfo);
4315 }
4a501606
PM
4316 if (arm_feature(env, ARM_FEATURE_VAPA)) {
4317 define_arm_cp_regs(cpu, vapa_cp_reginfo);
4318 }
c4804214
PM
4319 if (arm_feature(env, ARM_FEATURE_CACHE_TEST_CLEAN)) {
4320 define_arm_cp_regs(cpu, cache_test_clean_cp_reginfo);
4321 }
4322 if (arm_feature(env, ARM_FEATURE_CACHE_DIRTY_REG)) {
4323 define_arm_cp_regs(cpu, cache_dirty_status_cp_reginfo);
4324 }
4325 if (arm_feature(env, ARM_FEATURE_CACHE_BLOCK_OPS)) {
4326 define_arm_cp_regs(cpu, cache_block_ops_cp_reginfo);
4327 }
18032bec
PM
4328 if (arm_feature(env, ARM_FEATURE_OMAPCP)) {
4329 define_arm_cp_regs(cpu, omap_cp_reginfo);
4330 }
34f90529
PM
4331 if (arm_feature(env, ARM_FEATURE_STRONGARM)) {
4332 define_arm_cp_regs(cpu, strongarm_cp_reginfo);
4333 }
1047b9d7
PM
4334 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
4335 define_arm_cp_regs(cpu, xscale_cp_reginfo);
4336 }
4337 if (arm_feature(env, ARM_FEATURE_DUMMY_C15_REGS)) {
4338 define_arm_cp_regs(cpu, dummy_c15_cp_reginfo);
4339 }
7ac681cf
PM
4340 if (arm_feature(env, ARM_FEATURE_LPAE)) {
4341 define_arm_cp_regs(cpu, lpae_cp_reginfo);
4342 }
7884849c
PM
4343 /* Slightly awkwardly, the OMAP and StrongARM cores need all of
4344 * cp15 crn=0 to be writes-ignored, whereas for other cores they should
4345 * be read-only (ie write causes UNDEF exception).
4346 */
4347 {
00a29f3d
PM
4348 ARMCPRegInfo id_pre_v8_midr_cp_reginfo[] = {
4349 /* Pre-v8 MIDR space.
4350 * Note that the MIDR isn't a simple constant register because
7884849c
PM
4351 * of the TI925 behaviour where writes to another register can
4352 * cause the MIDR value to change.
97ce8d61
PC
4353 *
4354 * Unimplemented registers in the c15 0 0 0 space default to
4355 * MIDR. Define MIDR first as this entire space, then CTR, TCMTR
4356 * and friends override accordingly.
7884849c
PM
4357 */
4358 { .name = "MIDR",
97ce8d61 4359 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = CP_ANY,
7884849c 4360 .access = PL1_R, .resetvalue = cpu->midr,
d4e6df63 4361 .writefn = arm_cp_write_ignore, .raw_writefn = raw_write,
731de9e6 4362 .readfn = midr_read,
97ce8d61
PC
4363 .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
4364 .type = ARM_CP_OVERRIDE },
7884849c
PM
4365 /* crn = 0 op1 = 0 crm = 3..7 : currently unassigned; we RAZ. */
4366 { .name = "DUMMY",
4367 .cp = 15, .crn = 0, .crm = 3, .opc1 = 0, .opc2 = CP_ANY,
4368 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
4369 { .name = "DUMMY",
4370 .cp = 15, .crn = 0, .crm = 4, .opc1 = 0, .opc2 = CP_ANY,
4371 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
4372 { .name = "DUMMY",
4373 .cp = 15, .crn = 0, .crm = 5, .opc1 = 0, .opc2 = CP_ANY,
4374 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
4375 { .name = "DUMMY",
4376 .cp = 15, .crn = 0, .crm = 6, .opc1 = 0, .opc2 = CP_ANY,
4377 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
4378 { .name = "DUMMY",
4379 .cp = 15, .crn = 0, .crm = 7, .opc1 = 0, .opc2 = CP_ANY,
4380 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
4381 REGINFO_SENTINEL
4382 };
00a29f3d 4383 ARMCPRegInfo id_v8_midr_cp_reginfo[] = {
00a29f3d
PM
4384 { .name = "MIDR_EL1", .state = ARM_CP_STATE_BOTH,
4385 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 0,
731de9e6
EI
4386 .access = PL1_R, .type = ARM_CP_NO_RAW, .resetvalue = cpu->midr,
4387 .fieldoffset = offsetof(CPUARMState, cp15.c0_cpuid),
4388 .readfn = midr_read },
ac00c79f
SF
4389 /* crn = 0 op1 = 0 crm = 0 op2 = 4,7 : AArch32 aliases of MIDR */
4390 { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
4391 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
4392 .access = PL1_R, .resetvalue = cpu->midr },
4393 { .name = "MIDR", .type = ARM_CP_ALIAS | ARM_CP_CONST,
4394 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 7,
4395 .access = PL1_R, .resetvalue = cpu->midr },
00a29f3d
PM
4396 { .name = "REVIDR_EL1", .state = ARM_CP_STATE_BOTH,
4397 .opc0 = 3, .opc1 = 0, .crn = 0, .crm = 0, .opc2 = 6,
13b72b2b 4398 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->revidr },
00a29f3d
PM
4399 REGINFO_SENTINEL
4400 };
4401 ARMCPRegInfo id_cp_reginfo[] = {
4402 /* These are common to v8 and pre-v8 */
4403 { .name = "CTR",
4404 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 1,
4405 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
4406 { .name = "CTR_EL0", .state = ARM_CP_STATE_AA64,
4407 .opc0 = 3, .opc1 = 3, .opc2 = 1, .crn = 0, .crm = 0,
4408 .access = PL0_R, .accessfn = ctr_el0_access,
4409 .type = ARM_CP_CONST, .resetvalue = cpu->ctr },
4410 /* TCMTR and TLBTR exist in v8 but have no 64-bit versions */
4411 { .name = "TCMTR",
4412 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 2,
4413 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0 },
00a29f3d
PM
4414 REGINFO_SENTINEL
4415 };
8085ce63
PC
4416 /* TLBTR is specific to VMSA */
4417 ARMCPRegInfo id_tlbtr_reginfo = {
4418 .name = "TLBTR",
4419 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 3,
4420 .access = PL1_R, .type = ARM_CP_CONST, .resetvalue = 0,
4421 };
3281af81
PC
4422 /* MPUIR is specific to PMSA V6+ */
4423 ARMCPRegInfo id_mpuir_reginfo = {
4424 .name = "MPUIR",
4425 .cp = 15, .crn = 0, .crm = 0, .opc1 = 0, .opc2 = 4,
4426 .access = PL1_R, .type = ARM_CP_CONST,
4427 .resetvalue = cpu->pmsav7_dregion << 8
4428 };
7884849c
PM
4429 ARMCPRegInfo crn0_wi_reginfo = {
4430 .name = "CRN0_WI", .cp = 15, .crn = 0, .crm = CP_ANY,
4431 .opc1 = CP_ANY, .opc2 = CP_ANY, .access = PL1_W,
4432 .type = ARM_CP_NOP | ARM_CP_OVERRIDE
4433 };
4434 if (arm_feature(env, ARM_FEATURE_OMAPCP) ||
4435 arm_feature(env, ARM_FEATURE_STRONGARM)) {
4436 ARMCPRegInfo *r;
4437 /* Register the blanket "writes ignored" value first to cover the
a703eda1
PC
4438 * whole space. Then update the specific ID registers to allow write
4439 * access, so that they ignore writes rather than causing them to
4440 * UNDEF.
7884849c
PM
4441 */
4442 define_one_arm_cp_reg(cpu, &crn0_wi_reginfo);
00a29f3d
PM
4443 for (r = id_pre_v8_midr_cp_reginfo;
4444 r->type != ARM_CP_SENTINEL; r++) {
4445 r->access = PL1_RW;
4446 }
7884849c
PM
4447 for (r = id_cp_reginfo; r->type != ARM_CP_SENTINEL; r++) {
4448 r->access = PL1_RW;
7884849c 4449 }
8085ce63 4450 id_tlbtr_reginfo.access = PL1_RW;
3281af81 4451 id_tlbtr_reginfo.access = PL1_RW;
7884849c 4452 }
00a29f3d
PM
4453 if (arm_feature(env, ARM_FEATURE_V8)) {
4454 define_arm_cp_regs(cpu, id_v8_midr_cp_reginfo);
4455 } else {
4456 define_arm_cp_regs(cpu, id_pre_v8_midr_cp_reginfo);
4457 }
a703eda1 4458 define_arm_cp_regs(cpu, id_cp_reginfo);
8085ce63
PC
4459 if (!arm_feature(env, ARM_FEATURE_MPU)) {
4460 define_one_arm_cp_reg(cpu, &id_tlbtr_reginfo);
3281af81
PC
4461 } else if (arm_feature(env, ARM_FEATURE_V7)) {
4462 define_one_arm_cp_reg(cpu, &id_mpuir_reginfo);
8085ce63 4463 }
7884849c
PM
4464 }
4465
97ce8d61
PC
4466 if (arm_feature(env, ARM_FEATURE_MPIDR)) {
4467 define_arm_cp_regs(cpu, mpidr_cp_reginfo);
4468 }
4469
2771db27 4470 if (arm_feature(env, ARM_FEATURE_AUXCR)) {
834a6c69
PM
4471 ARMCPRegInfo auxcr_reginfo[] = {
4472 { .name = "ACTLR_EL1", .state = ARM_CP_STATE_BOTH,
4473 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 1,
4474 .access = PL1_RW, .type = ARM_CP_CONST,
4475 .resetvalue = cpu->reset_auxcr },
4476 { .name = "ACTLR_EL2", .state = ARM_CP_STATE_BOTH,
4477 .opc0 = 3, .opc1 = 4, .crn = 1, .crm = 0, .opc2 = 1,
4478 .access = PL2_RW, .type = ARM_CP_CONST,
4479 .resetvalue = 0 },
4480 { .name = "ACTLR_EL3", .state = ARM_CP_STATE_AA64,
4481 .opc0 = 3, .opc1 = 6, .crn = 1, .crm = 0, .opc2 = 1,
4482 .access = PL3_RW, .type = ARM_CP_CONST,
4483 .resetvalue = 0 },
4484 REGINFO_SENTINEL
2771db27 4485 };
834a6c69 4486 define_arm_cp_regs(cpu, auxcr_reginfo);
2771db27
PM
4487 }
4488
d8ba780b 4489 if (arm_feature(env, ARM_FEATURE_CBAR)) {
f318cec6
PM
4490 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
4491 /* 32 bit view is [31:18] 0...0 [43:32]. */
4492 uint32_t cbar32 = (extract64(cpu->reset_cbar, 18, 14) << 18)
4493 | extract64(cpu->reset_cbar, 32, 12);
4494 ARMCPRegInfo cbar_reginfo[] = {
4495 { .name = "CBAR",
4496 .type = ARM_CP_CONST,
4497 .cp = 15, .crn = 15, .crm = 0, .opc1 = 4, .opc2 = 0,
4498 .access = PL1_R, .resetvalue = cpu->reset_cbar },
4499 { .name = "CBAR_EL1", .state = ARM_CP_STATE_AA64,
4500 .type = ARM_CP_CONST,
4501 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 3, .opc2 = 0,
4502 .access = PL1_R, .resetvalue = cbar32 },
4503 REGINFO_SENTINEL
4504 };
4505 /* We don't implement a r/w 64 bit CBAR currently */
4506 assert(arm_feature(env, ARM_FEATURE_CBAR_RO));
4507 define_arm_cp_regs(cpu, cbar_reginfo);
4508 } else {
4509 ARMCPRegInfo cbar = {
4510 .name = "CBAR",
4511 .cp = 15, .crn = 15, .crm = 0, .opc1 = 4, .opc2 = 0,
4512 .access = PL1_R|PL3_W, .resetvalue = cpu->reset_cbar,
4513 .fieldoffset = offsetof(CPUARMState,
4514 cp15.c15_config_base_address)
4515 };
4516 if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
4517 cbar.access = PL1_R;
4518 cbar.fieldoffset = 0;
4519 cbar.type = ARM_CP_CONST;
4520 }
4521 define_one_arm_cp_reg(cpu, &cbar);
4522 }
d8ba780b
PC
4523 }
4524
2771db27
PM
4525 /* Generic registers whose values depend on the implementation */
4526 {
4527 ARMCPRegInfo sctlr = {
5ebafdf3 4528 .name = "SCTLR", .state = ARM_CP_STATE_BOTH,
137feaa9
FA
4529 .opc0 = 3, .opc1 = 0, .crn = 1, .crm = 0, .opc2 = 0,
4530 .access = PL1_RW,
4531 .bank_fieldoffsets = { offsetof(CPUARMState, cp15.sctlr_s),
4532 offsetof(CPUARMState, cp15.sctlr_ns) },
d4e6df63
PM
4533 .writefn = sctlr_write, .resetvalue = cpu->reset_sctlr,
4534 .raw_writefn = raw_write,
2771db27
PM
4535 };
4536 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
4537 /* Normally we would always end the TB on an SCTLR write, but Linux
4538 * arch/arm/mach-pxa/sleep.S expects two instructions following
4539 * an MMU enable to execute from cache. Imitate this behaviour.
4540 */
4541 sctlr.type |= ARM_CP_SUPPRESS_TB_END;
4542 }
4543 define_one_arm_cp_reg(cpu, &sctlr);
4544 }
2ceb98c0
PM
4545}
4546
778c3a06 4547ARMCPU *cpu_arm_init(const char *cpu_model)
40f137e1 4548{
9262685b 4549 return ARM_CPU(cpu_generic_init(TYPE_ARM_CPU, cpu_model));
14969266
AF
4550}
4551
4552void arm_cpu_register_gdb_regs_for_features(ARMCPU *cpu)
4553{
22169d41 4554 CPUState *cs = CPU(cpu);
14969266
AF
4555 CPUARMState *env = &cpu->env;
4556
6a669427
PM
4557 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
4558 gdb_register_coprocessor(cs, aarch64_fpu_gdb_get_reg,
4559 aarch64_fpu_gdb_set_reg,
4560 34, "aarch64-fpu.xml", 0);
4561 } else if (arm_feature(env, ARM_FEATURE_NEON)) {
22169d41 4562 gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
56aebc89
PB
4563 51, "arm-neon.xml", 0);
4564 } else if (arm_feature(env, ARM_FEATURE_VFP3)) {
22169d41 4565 gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
56aebc89
PB
4566 35, "arm-vfp3.xml", 0);
4567 } else if (arm_feature(env, ARM_FEATURE_VFP)) {
22169d41 4568 gdb_register_coprocessor(cs, vfp_gdb_get_reg, vfp_gdb_set_reg,
56aebc89
PB
4569 19, "arm-vfp.xml", 0);
4570 }
40f137e1
PB
4571}
4572
777dc784
PM
4573/* Sort alphabetically by type name, except for "any". */
4574static gint arm_cpu_list_compare(gconstpointer a, gconstpointer b)
5adb4839 4575{
777dc784
PM
4576 ObjectClass *class_a = (ObjectClass *)a;
4577 ObjectClass *class_b = (ObjectClass *)b;
4578 const char *name_a, *name_b;
5adb4839 4579
777dc784
PM
4580 name_a = object_class_get_name(class_a);
4581 name_b = object_class_get_name(class_b);
51492fd1 4582 if (strcmp(name_a, "any-" TYPE_ARM_CPU) == 0) {
777dc784 4583 return 1;
51492fd1 4584 } else if (strcmp(name_b, "any-" TYPE_ARM_CPU) == 0) {
777dc784
PM
4585 return -1;
4586 } else {
4587 return strcmp(name_a, name_b);
5adb4839
PB
4588 }
4589}
4590
777dc784 4591static void arm_cpu_list_entry(gpointer data, gpointer user_data)
40f137e1 4592{
777dc784 4593 ObjectClass *oc = data;
92a31361 4594 CPUListState *s = user_data;
51492fd1
AF
4595 const char *typename;
4596 char *name;
3371d272 4597
51492fd1
AF
4598 typename = object_class_get_name(oc);
4599 name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_ARM_CPU));
777dc784 4600 (*s->cpu_fprintf)(s->file, " %s\n",
51492fd1
AF
4601 name);
4602 g_free(name);
777dc784
PM
4603}
4604
4605void arm_cpu_list(FILE *f, fprintf_function cpu_fprintf)
4606{
92a31361 4607 CPUListState s = {
777dc784
PM
4608 .file = f,
4609 .cpu_fprintf = cpu_fprintf,
4610 };
4611 GSList *list;
4612
4613 list = object_class_get_list(TYPE_ARM_CPU, false);
4614 list = g_slist_sort(list, arm_cpu_list_compare);
4615 (*cpu_fprintf)(f, "Available CPUs:\n");
4616 g_slist_foreach(list, arm_cpu_list_entry, &s);
4617 g_slist_free(list);
a96c0514
PM
4618#ifdef CONFIG_KVM
4619 /* The 'host' CPU type is dynamically registered only if KVM is
4620 * enabled, so we have to special-case it here:
4621 */
4622 (*cpu_fprintf)(f, " host (only available in KVM mode)\n");
4623#endif
40f137e1
PB
4624}
4625
78027bb6
CR
4626static void arm_cpu_add_definition(gpointer data, gpointer user_data)
4627{
4628 ObjectClass *oc = data;
4629 CpuDefinitionInfoList **cpu_list = user_data;
4630 CpuDefinitionInfoList *entry;
4631 CpuDefinitionInfo *info;
4632 const char *typename;
4633
4634 typename = object_class_get_name(oc);
4635 info = g_malloc0(sizeof(*info));
4636 info->name = g_strndup(typename,
4637 strlen(typename) - strlen("-" TYPE_ARM_CPU));
4638
4639 entry = g_malloc0(sizeof(*entry));
4640 entry->value = info;
4641 entry->next = *cpu_list;
4642 *cpu_list = entry;
4643}
4644
4645CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
4646{
4647 CpuDefinitionInfoList *cpu_list = NULL;
4648 GSList *list;
4649
4650 list = object_class_get_list(TYPE_ARM_CPU, false);
4651 g_slist_foreach(list, arm_cpu_add_definition, &cpu_list);
4652 g_slist_free(list);
4653
4654 return cpu_list;
4655}
4656
6e6efd61 4657static void add_cpreg_to_hashtable(ARMCPU *cpu, const ARMCPRegInfo *r,
51a79b03 4658 void *opaque, int state, int secstate,
f5a0a5a5 4659 int crm, int opc1, int opc2)
6e6efd61
PM
4660{
4661 /* Private utility function for define_one_arm_cp_reg_with_opaque():
4662 * add a single reginfo struct to the hash table.
4663 */
4664 uint32_t *key = g_new(uint32_t, 1);
4665 ARMCPRegInfo *r2 = g_memdup(r, sizeof(ARMCPRegInfo));
4666 int is64 = (r->type & ARM_CP_64BIT) ? 1 : 0;
3f3c82a5
FA
4667 int ns = (secstate & ARM_CP_SECSTATE_NS) ? 1 : 0;
4668
4669 /* Reset the secure state to the specific incoming state. This is
4670 * necessary as the register may have been defined with both states.
4671 */
4672 r2->secure = secstate;
4673
4674 if (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1]) {
4675 /* Register is banked (using both entries in array).
4676 * Overwriting fieldoffset as the array is only used to define
4677 * banked registers but later only fieldoffset is used.
f5a0a5a5 4678 */
3f3c82a5
FA
4679 r2->fieldoffset = r->bank_fieldoffsets[ns];
4680 }
4681
4682 if (state == ARM_CP_STATE_AA32) {
4683 if (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1]) {
4684 /* If the register is banked then we don't need to migrate or
4685 * reset the 32-bit instance in certain cases:
4686 *
4687 * 1) If the register has both 32-bit and 64-bit instances then we
4688 * can count on the 64-bit instance taking care of the
4689 * non-secure bank.
4690 * 2) If ARMv8 is enabled then we can count on a 64-bit version
4691 * taking care of the secure bank. This requires that separate
4692 * 32 and 64-bit definitions are provided.
4693 */
4694 if ((r->state == ARM_CP_STATE_BOTH && ns) ||
4695 (arm_feature(&cpu->env, ARM_FEATURE_V8) && !ns)) {
7a0e58fa 4696 r2->type |= ARM_CP_ALIAS;
3f3c82a5
FA
4697 }
4698 } else if ((secstate != r->secure) && !ns) {
4699 /* The register is not banked so we only want to allow migration of
4700 * the non-secure instance.
4701 */
7a0e58fa 4702 r2->type |= ARM_CP_ALIAS;
58a1d8ce 4703 }
3f3c82a5
FA
4704
4705 if (r->state == ARM_CP_STATE_BOTH) {
4706 /* We assume it is a cp15 register if the .cp field is left unset.
4707 */
4708 if (r2->cp == 0) {
4709 r2->cp = 15;
4710 }
4711
f5a0a5a5 4712#ifdef HOST_WORDS_BIGENDIAN
3f3c82a5
FA
4713 if (r2->fieldoffset) {
4714 r2->fieldoffset += sizeof(uint32_t);
4715 }
f5a0a5a5 4716#endif
3f3c82a5 4717 }
f5a0a5a5
PM
4718 }
4719 if (state == ARM_CP_STATE_AA64) {
4720 /* To allow abbreviation of ARMCPRegInfo
4721 * definitions, we treat cp == 0 as equivalent to
4722 * the value for "standard guest-visible sysreg".
58a1d8ce
PM
4723 * STATE_BOTH definitions are also always "standard
4724 * sysreg" in their AArch64 view (the .cp value may
4725 * be non-zero for the benefit of the AArch32 view).
f5a0a5a5 4726 */
58a1d8ce 4727 if (r->cp == 0 || r->state == ARM_CP_STATE_BOTH) {
f5a0a5a5
PM
4728 r2->cp = CP_REG_ARM64_SYSREG_CP;
4729 }
4730 *key = ENCODE_AA64_CP_REG(r2->cp, r2->crn, crm,
4731 r2->opc0, opc1, opc2);
4732 } else {
51a79b03 4733 *key = ENCODE_CP_REG(r2->cp, is64, ns, r2->crn, crm, opc1, opc2);
f5a0a5a5 4734 }
6e6efd61
PM
4735 if (opaque) {
4736 r2->opaque = opaque;
4737 }
67ed771d
PM
4738 /* reginfo passed to helpers is correct for the actual access,
4739 * and is never ARM_CP_STATE_BOTH:
4740 */
4741 r2->state = state;
6e6efd61
PM
4742 /* Make sure reginfo passed to helpers for wildcarded regs
4743 * has the correct crm/opc1/opc2 for this reg, not CP_ANY:
4744 */
4745 r2->crm = crm;
4746 r2->opc1 = opc1;
4747 r2->opc2 = opc2;
4748 /* By convention, for wildcarded registers only the first
4749 * entry is used for migration; the others are marked as
7a0e58fa 4750 * ALIAS so we don't try to transfer the register
6e6efd61 4751 * multiple times. Special registers (ie NOP/WFI) are
7a0e58fa 4752 * never migratable and not even raw-accessible.
6e6efd61 4753 */
7a0e58fa
PM
4754 if ((r->type & ARM_CP_SPECIAL)) {
4755 r2->type |= ARM_CP_NO_RAW;
4756 }
4757 if (((r->crm == CP_ANY) && crm != 0) ||
6e6efd61
PM
4758 ((r->opc1 == CP_ANY) && opc1 != 0) ||
4759 ((r->opc2 == CP_ANY) && opc2 != 0)) {
7a0e58fa 4760 r2->type |= ARM_CP_ALIAS;
6e6efd61
PM
4761 }
4762
375421cc
PM
4763 /* Check that raw accesses are either forbidden or handled. Note that
4764 * we can't assert this earlier because the setup of fieldoffset for
4765 * banked registers has to be done first.
4766 */
4767 if (!(r2->type & ARM_CP_NO_RAW)) {
4768 assert(!raw_accessors_invalid(r2));
4769 }
4770
6e6efd61
PM
4771 /* Overriding of an existing definition must be explicitly
4772 * requested.
4773 */
4774 if (!(r->type & ARM_CP_OVERRIDE)) {
4775 ARMCPRegInfo *oldreg;
4776 oldreg = g_hash_table_lookup(cpu->cp_regs, key);
4777 if (oldreg && !(oldreg->type & ARM_CP_OVERRIDE)) {
4778 fprintf(stderr, "Register redefined: cp=%d %d bit "
4779 "crn=%d crm=%d opc1=%d opc2=%d, "
4780 "was %s, now %s\n", r2->cp, 32 + 32 * is64,
4781 r2->crn, r2->crm, r2->opc1, r2->opc2,
4782 oldreg->name, r2->name);
4783 g_assert_not_reached();
4784 }
4785 }
4786 g_hash_table_insert(cpu->cp_regs, key, r2);
4787}
4788
4789
4b6a83fb
PM
4790void define_one_arm_cp_reg_with_opaque(ARMCPU *cpu,
4791 const ARMCPRegInfo *r, void *opaque)
4792{
4793 /* Define implementations of coprocessor registers.
4794 * We store these in a hashtable because typically
4795 * there are less than 150 registers in a space which
4796 * is 16*16*16*8*8 = 262144 in size.
4797 * Wildcarding is supported for the crm, opc1 and opc2 fields.
4798 * If a register is defined twice then the second definition is
4799 * used, so this can be used to define some generic registers and
4800 * then override them with implementation specific variations.
4801 * At least one of the original and the second definition should
4802 * include ARM_CP_OVERRIDE in its type bits -- this is just a guard
4803 * against accidental use.
f5a0a5a5
PM
4804 *
4805 * The state field defines whether the register is to be
4806 * visible in the AArch32 or AArch64 execution state. If the
4807 * state is set to ARM_CP_STATE_BOTH then we synthesise a
4808 * reginfo structure for the AArch32 view, which sees the lower
4809 * 32 bits of the 64 bit register.
4810 *
4811 * Only registers visible in AArch64 may set r->opc0; opc0 cannot
4812 * be wildcarded. AArch64 registers are always considered to be 64
4813 * bits; the ARM_CP_64BIT* flag applies only to the AArch32 view of
4814 * the register, if any.
4b6a83fb 4815 */
f5a0a5a5 4816 int crm, opc1, opc2, state;
4b6a83fb
PM
4817 int crmmin = (r->crm == CP_ANY) ? 0 : r->crm;
4818 int crmmax = (r->crm == CP_ANY) ? 15 : r->crm;
4819 int opc1min = (r->opc1 == CP_ANY) ? 0 : r->opc1;
4820 int opc1max = (r->opc1 == CP_ANY) ? 7 : r->opc1;
4821 int opc2min = (r->opc2 == CP_ANY) ? 0 : r->opc2;
4822 int opc2max = (r->opc2 == CP_ANY) ? 7 : r->opc2;
4823 /* 64 bit registers have only CRm and Opc1 fields */
4824 assert(!((r->type & ARM_CP_64BIT) && (r->opc2 || r->crn)));
f5a0a5a5
PM
4825 /* op0 only exists in the AArch64 encodings */
4826 assert((r->state != ARM_CP_STATE_AA32) || (r->opc0 == 0));
4827 /* AArch64 regs are all 64 bit so ARM_CP_64BIT is meaningless */
4828 assert((r->state != ARM_CP_STATE_AA64) || !(r->type & ARM_CP_64BIT));
4829 /* The AArch64 pseudocode CheckSystemAccess() specifies that op1
4830 * encodes a minimum access level for the register. We roll this
4831 * runtime check into our general permission check code, so check
4832 * here that the reginfo's specified permissions are strict enough
4833 * to encompass the generic architectural permission check.
4834 */
4835 if (r->state != ARM_CP_STATE_AA32) {
4836 int mask = 0;
4837 switch (r->opc1) {
4838 case 0: case 1: case 2:
4839 /* min_EL EL1 */
4840 mask = PL1_RW;
4841 break;
4842 case 3:
4843 /* min_EL EL0 */
4844 mask = PL0_RW;
4845 break;
4846 case 4:
4847 /* min_EL EL2 */
4848 mask = PL2_RW;
4849 break;
4850 case 5:
4851 /* unallocated encoding, so not possible */
4852 assert(false);
4853 break;
4854 case 6:
4855 /* min_EL EL3 */
4856 mask = PL3_RW;
4857 break;
4858 case 7:
4859 /* min_EL EL1, secure mode only (we don't check the latter) */
4860 mask = PL1_RW;
4861 break;
4862 default:
4863 /* broken reginfo with out-of-range opc1 */
4864 assert(false);
4865 break;
4866 }
4867 /* assert our permissions are not too lax (stricter is fine) */
4868 assert((r->access & ~mask) == 0);
4869 }
4870
4b6a83fb
PM
4871 /* Check that the register definition has enough info to handle
4872 * reads and writes if they are permitted.
4873 */
4874 if (!(r->type & (ARM_CP_SPECIAL|ARM_CP_CONST))) {
4875 if (r->access & PL3_R) {
3f3c82a5
FA
4876 assert((r->fieldoffset ||
4877 (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
4878 r->readfn);
4b6a83fb
PM
4879 }
4880 if (r->access & PL3_W) {
3f3c82a5
FA
4881 assert((r->fieldoffset ||
4882 (r->bank_fieldoffsets[0] && r->bank_fieldoffsets[1])) ||
4883 r->writefn);
4b6a83fb
PM
4884 }
4885 }
4886 /* Bad type field probably means missing sentinel at end of reg list */
4887 assert(cptype_valid(r->type));
4888 for (crm = crmmin; crm <= crmmax; crm++) {
4889 for (opc1 = opc1min; opc1 <= opc1max; opc1++) {
4890 for (opc2 = opc2min; opc2 <= opc2max; opc2++) {
f5a0a5a5
PM
4891 for (state = ARM_CP_STATE_AA32;
4892 state <= ARM_CP_STATE_AA64; state++) {
4893 if (r->state != state && r->state != ARM_CP_STATE_BOTH) {
4894 continue;
4895 }
3f3c82a5
FA
4896 if (state == ARM_CP_STATE_AA32) {
4897 /* Under AArch32 CP registers can be common
4898 * (same for secure and non-secure world) or banked.
4899 */
4900 switch (r->secure) {
4901 case ARM_CP_SECSTATE_S:
4902 case ARM_CP_SECSTATE_NS:
4903 add_cpreg_to_hashtable(cpu, r, opaque, state,
4904 r->secure, crm, opc1, opc2);
4905 break;
4906 default:
4907 add_cpreg_to_hashtable(cpu, r, opaque, state,
4908 ARM_CP_SECSTATE_S,
4909 crm, opc1, opc2);
4910 add_cpreg_to_hashtable(cpu, r, opaque, state,
4911 ARM_CP_SECSTATE_NS,
4912 crm, opc1, opc2);
4913 break;
4914 }
4915 } else {
4916 /* AArch64 registers get mapped to non-secure instance
4917 * of AArch32 */
4918 add_cpreg_to_hashtable(cpu, r, opaque, state,
4919 ARM_CP_SECSTATE_NS,
4920 crm, opc1, opc2);
4921 }
f5a0a5a5 4922 }
4b6a83fb
PM
4923 }
4924 }
4925 }
4926}
4927
4928void define_arm_cp_regs_with_opaque(ARMCPU *cpu,
4929 const ARMCPRegInfo *regs, void *opaque)
4930{
4931 /* Define a whole list of registers */
4932 const ARMCPRegInfo *r;
4933 for (r = regs; r->type != ARM_CP_SENTINEL; r++) {
4934 define_one_arm_cp_reg_with_opaque(cpu, r, opaque);
4935 }
4936}
4937
60322b39 4938const ARMCPRegInfo *get_arm_cp_reginfo(GHashTable *cpregs, uint32_t encoded_cp)
4b6a83fb 4939{
60322b39 4940 return g_hash_table_lookup(cpregs, &encoded_cp);
4b6a83fb
PM
4941}
4942
c4241c7d
PM
4943void arm_cp_write_ignore(CPUARMState *env, const ARMCPRegInfo *ri,
4944 uint64_t value)
4b6a83fb
PM
4945{
4946 /* Helper coprocessor write function for write-ignore registers */
4b6a83fb
PM
4947}
4948
c4241c7d 4949uint64_t arm_cp_read_zero(CPUARMState *env, const ARMCPRegInfo *ri)
4b6a83fb
PM
4950{
4951 /* Helper coprocessor write function for read-as-zero registers */
4b6a83fb
PM
4952 return 0;
4953}
4954
f5a0a5a5
PM
4955void arm_cp_reset_ignore(CPUARMState *env, const ARMCPRegInfo *opaque)
4956{
4957 /* Helper coprocessor reset function for do-nothing-on-reset registers */
4958}
4959
0ecb72a5 4960static int bad_mode_switch(CPUARMState *env, int mode)
37064a8b
PM
4961{
4962 /* Return true if it is not valid for us to switch to
4963 * this CPU mode (ie all the UNPREDICTABLE cases in
4964 * the ARM ARM CPSRWriteByInstr pseudocode).
4965 */
4966 switch (mode) {
4967 case ARM_CPU_MODE_USR:
4968 case ARM_CPU_MODE_SYS:
4969 case ARM_CPU_MODE_SVC:
4970 case ARM_CPU_MODE_ABT:
4971 case ARM_CPU_MODE_UND:
4972 case ARM_CPU_MODE_IRQ:
4973 case ARM_CPU_MODE_FIQ:
4974 return 0;
027fc527
SF
4975 case ARM_CPU_MODE_MON:
4976 return !arm_is_secure(env);
37064a8b
PM
4977 default:
4978 return 1;
4979 }
4980}
4981
2f4a40e5
AZ
4982uint32_t cpsr_read(CPUARMState *env)
4983{
4984 int ZF;
6fbe23d5
PB
4985 ZF = (env->ZF == 0);
4986 return env->uncached_cpsr | (env->NF & 0x80000000) | (ZF << 30) |
2f4a40e5
AZ
4987 (env->CF << 29) | ((env->VF & 0x80000000) >> 3) | (env->QF << 27)
4988 | (env->thumb << 5) | ((env->condexec_bits & 3) << 25)
4989 | ((env->condexec_bits & 0xfc) << 8)
af519934 4990 | (env->GE << 16) | (env->daif & CPSR_AIF);
2f4a40e5
AZ
4991}
4992
4993void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask)
4994{
6e8801f9
FA
4995 uint32_t changed_daif;
4996
2f4a40e5 4997 if (mask & CPSR_NZCV) {
6fbe23d5
PB
4998 env->ZF = (~val) & CPSR_Z;
4999 env->NF = val;
2f4a40e5
AZ
5000 env->CF = (val >> 29) & 1;
5001 env->VF = (val << 3) & 0x80000000;
5002 }
5003 if (mask & CPSR_Q)
5004 env->QF = ((val & CPSR_Q) != 0);
5005 if (mask & CPSR_T)
5006 env->thumb = ((val & CPSR_T) != 0);
5007 if (mask & CPSR_IT_0_1) {
5008 env->condexec_bits &= ~3;
5009 env->condexec_bits |= (val >> 25) & 3;
5010 }
5011 if (mask & CPSR_IT_2_7) {
5012 env->condexec_bits &= 3;
5013 env->condexec_bits |= (val >> 8) & 0xfc;
5014 }
5015 if (mask & CPSR_GE) {
5016 env->GE = (val >> 16) & 0xf;
5017 }
5018
6e8801f9
FA
5019 /* In a V7 implementation that includes the security extensions but does
5020 * not include Virtualization Extensions the SCR.FW and SCR.AW bits control
5021 * whether non-secure software is allowed to change the CPSR_F and CPSR_A
5022 * bits respectively.
5023 *
5024 * In a V8 implementation, it is permitted for privileged software to
5025 * change the CPSR A/F bits regardless of the SCR.AW/FW bits.
5026 */
5027 if (!arm_feature(env, ARM_FEATURE_V8) &&
5028 arm_feature(env, ARM_FEATURE_EL3) &&
5029 !arm_feature(env, ARM_FEATURE_EL2) &&
5030 !arm_is_secure(env)) {
5031
5032 changed_daif = (env->daif ^ val) & mask;
5033
5034 if (changed_daif & CPSR_A) {
5035 /* Check to see if we are allowed to change the masking of async
5036 * abort exceptions from a non-secure state.
5037 */
5038 if (!(env->cp15.scr_el3 & SCR_AW)) {
5039 qemu_log_mask(LOG_GUEST_ERROR,
5040 "Ignoring attempt to switch CPSR_A flag from "
5041 "non-secure world with SCR.AW bit clear\n");
5042 mask &= ~CPSR_A;
5043 }
5044 }
5045
5046 if (changed_daif & CPSR_F) {
5047 /* Check to see if we are allowed to change the masking of FIQ
5048 * exceptions from a non-secure state.
5049 */
5050 if (!(env->cp15.scr_el3 & SCR_FW)) {
5051 qemu_log_mask(LOG_GUEST_ERROR,
5052 "Ignoring attempt to switch CPSR_F flag from "
5053 "non-secure world with SCR.FW bit clear\n");
5054 mask &= ~CPSR_F;
5055 }
5056
5057 /* Check whether non-maskable FIQ (NMFI) support is enabled.
5058 * If this bit is set software is not allowed to mask
5059 * FIQs, but is allowed to set CPSR_F to 0.
5060 */
5061 if ((A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_NMFI) &&
5062 (val & CPSR_F)) {
5063 qemu_log_mask(LOG_GUEST_ERROR,
5064 "Ignoring attempt to enable CPSR_F flag "
5065 "(non-maskable FIQ [NMFI] support enabled)\n");
5066 mask &= ~CPSR_F;
5067 }
5068 }
5069 }
5070
4cc35614
PM
5071 env->daif &= ~(CPSR_AIF & mask);
5072 env->daif |= val & CPSR_AIF & mask;
5073
2f4a40e5 5074 if ((env->uncached_cpsr ^ val) & mask & CPSR_M) {
37064a8b
PM
5075 if (bad_mode_switch(env, val & CPSR_M)) {
5076 /* Attempt to switch to an invalid mode: this is UNPREDICTABLE.
5077 * We choose to ignore the attempt and leave the CPSR M field
5078 * untouched.
5079 */
5080 mask &= ~CPSR_M;
5081 } else {
5082 switch_mode(env, val & CPSR_M);
5083 }
2f4a40e5
AZ
5084 }
5085 mask &= ~CACHED_CPSR_BITS;
5086 env->uncached_cpsr = (env->uncached_cpsr & ~mask) | (val & mask);
5087}
5088
b26eefb6
PB
5089/* Sign/zero extend */
5090uint32_t HELPER(sxtb16)(uint32_t x)
5091{
5092 uint32_t res;
5093 res = (uint16_t)(int8_t)x;
5094 res |= (uint32_t)(int8_t)(x >> 16) << 16;
5095 return res;
5096}
5097
5098uint32_t HELPER(uxtb16)(uint32_t x)
5099{
5100 uint32_t res;
5101 res = (uint16_t)(uint8_t)x;
5102 res |= (uint32_t)(uint8_t)(x >> 16) << 16;
5103 return res;
5104}
5105
f51bbbfe
PB
5106uint32_t HELPER(clz)(uint32_t x)
5107{
7bbcb0af 5108 return clz32(x);
f51bbbfe
PB
5109}
5110
3670669c
PB
5111int32_t HELPER(sdiv)(int32_t num, int32_t den)
5112{
5113 if (den == 0)
5114 return 0;
686eeb93
AJ
5115 if (num == INT_MIN && den == -1)
5116 return INT_MIN;
3670669c
PB
5117 return num / den;
5118}
5119
5120uint32_t HELPER(udiv)(uint32_t num, uint32_t den)
5121{
5122 if (den == 0)
5123 return 0;
5124 return num / den;
5125}
5126
5127uint32_t HELPER(rbit)(uint32_t x)
5128{
42fedbca 5129 return revbit32(x);
3670669c
PB
5130}
5131
5fafdf24 5132#if defined(CONFIG_USER_ONLY)
b5ff1b31 5133
9ee6e8bb 5134/* These should probably raise undefined insn exceptions. */
0ecb72a5 5135void HELPER(v7m_msr)(CPUARMState *env, uint32_t reg, uint32_t val)
9ee6e8bb 5136{
a47dddd7
AF
5137 ARMCPU *cpu = arm_env_get_cpu(env);
5138
5139 cpu_abort(CPU(cpu), "v7m_msr %d\n", reg);
9ee6e8bb
PB
5140}
5141
0ecb72a5 5142uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
9ee6e8bb 5143{
a47dddd7
AF
5144 ARMCPU *cpu = arm_env_get_cpu(env);
5145
5146 cpu_abort(CPU(cpu), "v7m_mrs %d\n", reg);
9ee6e8bb
PB
5147 return 0;
5148}
5149
0ecb72a5 5150void switch_mode(CPUARMState *env, int mode)
b5ff1b31 5151{
a47dddd7
AF
5152 ARMCPU *cpu = arm_env_get_cpu(env);
5153
5154 if (mode != ARM_CPU_MODE_USR) {
5155 cpu_abort(CPU(cpu), "Tried to switch out of user mode\n");
5156 }
b5ff1b31
FB
5157}
5158
0ecb72a5 5159void HELPER(set_r13_banked)(CPUARMState *env, uint32_t mode, uint32_t val)
9ee6e8bb 5160{
a47dddd7
AF
5161 ARMCPU *cpu = arm_env_get_cpu(env);
5162
5163 cpu_abort(CPU(cpu), "banked r13 write\n");
9ee6e8bb
PB
5164}
5165
0ecb72a5 5166uint32_t HELPER(get_r13_banked)(CPUARMState *env, uint32_t mode)
9ee6e8bb 5167{
a47dddd7
AF
5168 ARMCPU *cpu = arm_env_get_cpu(env);
5169
5170 cpu_abort(CPU(cpu), "banked r13 read\n");
9ee6e8bb
PB
5171 return 0;
5172}
5173
012a906b
GB
5174uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
5175 uint32_t cur_el, bool secure)
9e729b57
EI
5176{
5177 return 1;
5178}
5179
ce02049d
GB
5180void aarch64_sync_64_to_32(CPUARMState *env)
5181{
5182 g_assert_not_reached();
5183}
5184
b5ff1b31
FB
5185#else
5186
5187/* Map CPU modes onto saved register banks. */
494b00c7 5188int bank_number(int mode)
b5ff1b31
FB
5189{
5190 switch (mode) {
5191 case ARM_CPU_MODE_USR:
5192 case ARM_CPU_MODE_SYS:
99a99c1f 5193 return BANK_USRSYS;
b5ff1b31 5194 case ARM_CPU_MODE_SVC:
99a99c1f 5195 return BANK_SVC;
b5ff1b31 5196 case ARM_CPU_MODE_ABT:
99a99c1f 5197 return BANK_ABT;
b5ff1b31 5198 case ARM_CPU_MODE_UND:
99a99c1f 5199 return BANK_UND;
b5ff1b31 5200 case ARM_CPU_MODE_IRQ:
99a99c1f 5201 return BANK_IRQ;
b5ff1b31 5202 case ARM_CPU_MODE_FIQ:
99a99c1f 5203 return BANK_FIQ;
28c9457d 5204 case ARM_CPU_MODE_HYP:
99a99c1f 5205 return BANK_HYP;
28c9457d 5206 case ARM_CPU_MODE_MON:
99a99c1f 5207 return BANK_MON;
b5ff1b31 5208 }
8f6fd322 5209 g_assert_not_reached();
b5ff1b31
FB
5210}
5211
0ecb72a5 5212void switch_mode(CPUARMState *env, int mode)
b5ff1b31
FB
5213{
5214 int old_mode;
5215 int i;
5216
5217 old_mode = env->uncached_cpsr & CPSR_M;
5218 if (mode == old_mode)
5219 return;
5220
5221 if (old_mode == ARM_CPU_MODE_FIQ) {
5222 memcpy (env->fiq_regs, env->regs + 8, 5 * sizeof(uint32_t));
8637c67f 5223 memcpy (env->regs + 8, env->usr_regs, 5 * sizeof(uint32_t));
b5ff1b31
FB
5224 } else if (mode == ARM_CPU_MODE_FIQ) {
5225 memcpy (env->usr_regs, env->regs + 8, 5 * sizeof(uint32_t));
8637c67f 5226 memcpy (env->regs + 8, env->fiq_regs, 5 * sizeof(uint32_t));
b5ff1b31
FB
5227 }
5228
f5206413 5229 i = bank_number(old_mode);
b5ff1b31
FB
5230 env->banked_r13[i] = env->regs[13];
5231 env->banked_r14[i] = env->regs[14];
5232 env->banked_spsr[i] = env->spsr;
5233
f5206413 5234 i = bank_number(mode);
b5ff1b31
FB
5235 env->regs[13] = env->banked_r13[i];
5236 env->regs[14] = env->banked_r14[i];
5237 env->spsr = env->banked_spsr[i];
5238}
5239
0eeb17d6
GB
5240/* Physical Interrupt Target EL Lookup Table
5241 *
5242 * [ From ARM ARM section G1.13.4 (Table G1-15) ]
5243 *
5244 * The below multi-dimensional table is used for looking up the target
5245 * exception level given numerous condition criteria. Specifically, the
5246 * target EL is based on SCR and HCR routing controls as well as the
5247 * currently executing EL and secure state.
5248 *
5249 * Dimensions:
5250 * target_el_table[2][2][2][2][2][4]
5251 * | | | | | +--- Current EL
5252 * | | | | +------ Non-secure(0)/Secure(1)
5253 * | | | +--------- HCR mask override
5254 * | | +------------ SCR exec state control
5255 * | +--------------- SCR mask override
5256 * +------------------ 32-bit(0)/64-bit(1) EL3
5257 *
5258 * The table values are as such:
5259 * 0-3 = EL0-EL3
5260 * -1 = Cannot occur
5261 *
5262 * The ARM ARM target EL table includes entries indicating that an "exception
5263 * is not taken". The two cases where this is applicable are:
5264 * 1) An exception is taken from EL3 but the SCR does not have the exception
5265 * routed to EL3.
5266 * 2) An exception is taken from EL2 but the HCR does not have the exception
5267 * routed to EL2.
5268 * In these two cases, the below table contain a target of EL1. This value is
5269 * returned as it is expected that the consumer of the table data will check
5270 * for "target EL >= current EL" to ensure the exception is not taken.
5271 *
5272 * SCR HCR
5273 * 64 EA AMO From
5274 * BIT IRQ IMO Non-secure Secure
5275 * EL3 FIQ RW FMO EL0 EL1 EL2 EL3 EL0 EL1 EL2 EL3
5276 */
82c39f6a 5277static const int8_t target_el_table[2][2][2][2][2][4] = {
0eeb17d6
GB
5278 {{{{/* 0 0 0 0 */{ 1, 1, 2, -1 },{ 3, -1, -1, 3 },},
5279 {/* 0 0 0 1 */{ 2, 2, 2, -1 },{ 3, -1, -1, 3 },},},
5280 {{/* 0 0 1 0 */{ 1, 1, 2, -1 },{ 3, -1, -1, 3 },},
5281 {/* 0 0 1 1 */{ 2, 2, 2, -1 },{ 3, -1, -1, 3 },},},},
5282 {{{/* 0 1 0 0 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},
5283 {/* 0 1 0 1 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},},
5284 {{/* 0 1 1 0 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},
5285 {/* 0 1 1 1 */{ 3, 3, 3, -1 },{ 3, -1, -1, 3 },},},},},
5286 {{{{/* 1 0 0 0 */{ 1, 1, 2, -1 },{ 1, 1, -1, 1 },},
5287 {/* 1 0 0 1 */{ 2, 2, 2, -1 },{ 1, 1, -1, 1 },},},
5288 {{/* 1 0 1 0 */{ 1, 1, 1, -1 },{ 1, 1, -1, 1 },},
5289 {/* 1 0 1 1 */{ 2, 2, 2, -1 },{ 1, 1, -1, 1 },},},},
5290 {{{/* 1 1 0 0 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},
5291 {/* 1 1 0 1 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},},
5292 {{/* 1 1 1 0 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},
5293 {/* 1 1 1 1 */{ 3, 3, 3, -1 },{ 3, 3, -1, 3 },},},},},
5294};
5295
5296/*
5297 * Determine the target EL for physical exceptions
5298 */
012a906b
GB
5299uint32_t arm_phys_excp_target_el(CPUState *cs, uint32_t excp_idx,
5300 uint32_t cur_el, bool secure)
0eeb17d6
GB
5301{
5302 CPUARMState *env = cs->env_ptr;
2cde031f 5303 int rw;
0eeb17d6
GB
5304 int scr;
5305 int hcr;
5306 int target_el;
2cde031f
SS
5307 /* Is the highest EL AArch64? */
5308 int is64 = arm_feature(env, ARM_FEATURE_AARCH64);
5309
5310 if (arm_feature(env, ARM_FEATURE_EL3)) {
5311 rw = ((env->cp15.scr_el3 & SCR_RW) == SCR_RW);
5312 } else {
5313 /* Either EL2 is the highest EL (and so the EL2 register width
5314 * is given by is64); or there is no EL2 or EL3, in which case
5315 * the value of 'rw' does not affect the table lookup anyway.
5316 */
5317 rw = is64;
5318 }
0eeb17d6
GB
5319
5320 switch (excp_idx) {
5321 case EXCP_IRQ:
5322 scr = ((env->cp15.scr_el3 & SCR_IRQ) == SCR_IRQ);
5323 hcr = ((env->cp15.hcr_el2 & HCR_IMO) == HCR_IMO);
5324 break;
5325 case EXCP_FIQ:
5326 scr = ((env->cp15.scr_el3 & SCR_FIQ) == SCR_FIQ);
5327 hcr = ((env->cp15.hcr_el2 & HCR_FMO) == HCR_FMO);
5328 break;
5329 default:
5330 scr = ((env->cp15.scr_el3 & SCR_EA) == SCR_EA);
5331 hcr = ((env->cp15.hcr_el2 & HCR_AMO) == HCR_AMO);
5332 break;
5333 };
5334
5335 /* If HCR.TGE is set then HCR is treated as being 1 */
5336 hcr |= ((env->cp15.hcr_el2 & HCR_TGE) == HCR_TGE);
5337
5338 /* Perform a table-lookup for the target EL given the current state */
5339 target_el = target_el_table[is64][scr][rw][hcr][secure][cur_el];
5340
5341 assert(target_el > 0);
5342
5343 return target_el;
5344}
5345
9ee6e8bb
PB
5346static void v7m_push(CPUARMState *env, uint32_t val)
5347{
70d74660
AF
5348 CPUState *cs = CPU(arm_env_get_cpu(env));
5349
9ee6e8bb 5350 env->regs[13] -= 4;
ab1da857 5351 stl_phys(cs->as, env->regs[13], val);
9ee6e8bb
PB
5352}
5353
5354static uint32_t v7m_pop(CPUARMState *env)
5355{
70d74660 5356 CPUState *cs = CPU(arm_env_get_cpu(env));
9ee6e8bb 5357 uint32_t val;
70d74660 5358
fdfba1a2 5359 val = ldl_phys(cs->as, env->regs[13]);
9ee6e8bb
PB
5360 env->regs[13] += 4;
5361 return val;
5362}
5363
5364/* Switch to V7M main or process stack pointer. */
5365static void switch_v7m_sp(CPUARMState *env, int process)
5366{
5367 uint32_t tmp;
5368 if (env->v7m.current_sp != process) {
5369 tmp = env->v7m.other_sp;
5370 env->v7m.other_sp = env->regs[13];
5371 env->regs[13] = tmp;
5372 env->v7m.current_sp = process;
5373 }
5374}
5375
5376static void do_v7m_exception_exit(CPUARMState *env)
5377{
5378 uint32_t type;
5379 uint32_t xpsr;
5380
5381 type = env->regs[15];
5382 if (env->v7m.exception != 0)
983fe826 5383 armv7m_nvic_complete_irq(env->nvic, env->v7m.exception);
9ee6e8bb
PB
5384
5385 /* Switch to the target stack. */
5386 switch_v7m_sp(env, (type & 4) != 0);
5387 /* Pop registers. */
5388 env->regs[0] = v7m_pop(env);
5389 env->regs[1] = v7m_pop(env);
5390 env->regs[2] = v7m_pop(env);
5391 env->regs[3] = v7m_pop(env);
5392 env->regs[12] = v7m_pop(env);
5393 env->regs[14] = v7m_pop(env);
5394 env->regs[15] = v7m_pop(env);
fcf83ab1
PM
5395 if (env->regs[15] & 1) {
5396 qemu_log_mask(LOG_GUEST_ERROR,
5397 "M profile return from interrupt with misaligned "
5398 "PC is UNPREDICTABLE\n");
5399 /* Actual hardware seems to ignore the lsbit, and there are several
5400 * RTOSes out there which incorrectly assume the r15 in the stack
5401 * frame should be a Thumb-style "lsbit indicates ARM/Thumb" value.
5402 */
5403 env->regs[15] &= ~1U;
5404 }
9ee6e8bb
PB
5405 xpsr = v7m_pop(env);
5406 xpsr_write(env, xpsr, 0xfffffdff);
5407 /* Undo stack alignment. */
5408 if (xpsr & 0x200)
5409 env->regs[13] |= 4;
5410 /* ??? The exception return type specifies Thread/Handler mode. However
5411 this is also implied by the xPSR value. Not sure what to do
5412 if there is a mismatch. */
5413 /* ??? Likewise for mismatches between the CONTROL register and the stack
5414 pointer. */
5415}
5416
e6f010cc 5417void arm_v7m_cpu_do_interrupt(CPUState *cs)
9ee6e8bb 5418{
e6f010cc
AF
5419 ARMCPU *cpu = ARM_CPU(cs);
5420 CPUARMState *env = &cpu->env;
9ee6e8bb
PB
5421 uint32_t xpsr = xpsr_read(env);
5422 uint32_t lr;
5423 uint32_t addr;
5424
27103424 5425 arm_log_exception(cs->exception_index);
3f1beaca 5426
9ee6e8bb
PB
5427 lr = 0xfffffff1;
5428 if (env->v7m.current_sp)
5429 lr |= 4;
5430 if (env->v7m.exception == 0)
5431 lr |= 8;
5432
5433 /* For exceptions we just mark as pending on the NVIC, and let that
5434 handle it. */
5435 /* TODO: Need to escalate if the current priority is higher than the
5436 one we're raising. */
27103424 5437 switch (cs->exception_index) {
9ee6e8bb 5438 case EXCP_UDEF:
983fe826 5439 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE);
9ee6e8bb
PB
5440 return;
5441 case EXCP_SWI:
314e2296 5442 /* The PC already points to the next instruction. */
983fe826 5443 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SVC);
9ee6e8bb
PB
5444 return;
5445 case EXCP_PREFETCH_ABORT:
5446 case EXCP_DATA_ABORT:
abf1172f
PM
5447 /* TODO: if we implemented the MPU registers, this is where we
5448 * should set the MMFAR, etc from exception.fsr and exception.vaddress.
5449 */
983fe826 5450 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_MEM);
9ee6e8bb
PB
5451 return;
5452 case EXCP_BKPT:
cfe67cef 5453 if (semihosting_enabled()) {
2ad207d4 5454 int nr;
d31dd73e 5455 nr = arm_lduw_code(env, env->regs[15], env->bswap_code) & 0xff;
2ad207d4
PB
5456 if (nr == 0xab) {
5457 env->regs[15] += 2;
205ace55
CC
5458 qemu_log_mask(CPU_LOG_INT,
5459 "...handling as semihosting call 0x%x\n",
5460 env->regs[0]);
2ad207d4
PB
5461 env->regs[0] = do_arm_semihosting(env);
5462 return;
5463 }
5464 }
983fe826 5465 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_DEBUG);
9ee6e8bb
PB
5466 return;
5467 case EXCP_IRQ:
983fe826 5468 env->v7m.exception = armv7m_nvic_acknowledge_irq(env->nvic);
9ee6e8bb
PB
5469 break;
5470 case EXCP_EXCEPTION_EXIT:
5471 do_v7m_exception_exit(env);
5472 return;
5473 default:
a47dddd7 5474 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
9ee6e8bb
PB
5475 return; /* Never happens. Keep compiler happy. */
5476 }
5477
5478 /* Align stack pointer. */
5479 /* ??? Should only do this if Configuration Control Register
5480 STACKALIGN bit is set. */
5481 if (env->regs[13] & 4) {
ab19b0ec 5482 env->regs[13] -= 4;
9ee6e8bb
PB
5483 xpsr |= 0x200;
5484 }
6c95676b 5485 /* Switch to the handler mode. */
9ee6e8bb
PB
5486 v7m_push(env, xpsr);
5487 v7m_push(env, env->regs[15]);
5488 v7m_push(env, env->regs[14]);
5489 v7m_push(env, env->regs[12]);
5490 v7m_push(env, env->regs[3]);
5491 v7m_push(env, env->regs[2]);
5492 v7m_push(env, env->regs[1]);
5493 v7m_push(env, env->regs[0]);
5494 switch_v7m_sp(env, 0);
c98d174c
PM
5495 /* Clear IT bits */
5496 env->condexec_bits = 0;
9ee6e8bb 5497 env->regs[14] = lr;
fdfba1a2 5498 addr = ldl_phys(cs->as, env->v7m.vecbase + env->v7m.exception * 4);
9ee6e8bb
PB
5499 env->regs[15] = addr & 0xfffffffe;
5500 env->thumb = addr & 1;
5501}
5502
ce02049d
GB
5503/* Function used to synchronize QEMU's AArch64 register set with AArch32
5504 * register set. This is necessary when switching between AArch32 and AArch64
5505 * execution state.
5506 */
5507void aarch64_sync_32_to_64(CPUARMState *env)
5508{
5509 int i;
5510 uint32_t mode = env->uncached_cpsr & CPSR_M;
5511
5512 /* We can blanket copy R[0:7] to X[0:7] */
5513 for (i = 0; i < 8; i++) {
5514 env->xregs[i] = env->regs[i];
5515 }
5516
5517 /* Unless we are in FIQ mode, x8-x12 come from the user registers r8-r12.
5518 * Otherwise, they come from the banked user regs.
5519 */
5520 if (mode == ARM_CPU_MODE_FIQ) {
5521 for (i = 8; i < 13; i++) {
5522 env->xregs[i] = env->usr_regs[i - 8];
5523 }
5524 } else {
5525 for (i = 8; i < 13; i++) {
5526 env->xregs[i] = env->regs[i];
5527 }
5528 }
5529
5530 /* Registers x13-x23 are the various mode SP and FP registers. Registers
5531 * r13 and r14 are only copied if we are in that mode, otherwise we copy
5532 * from the mode banked register.
5533 */
5534 if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
5535 env->xregs[13] = env->regs[13];
5536 env->xregs[14] = env->regs[14];
5537 } else {
5538 env->xregs[13] = env->banked_r13[bank_number(ARM_CPU_MODE_USR)];
5539 /* HYP is an exception in that it is copied from r14 */
5540 if (mode == ARM_CPU_MODE_HYP) {
5541 env->xregs[14] = env->regs[14];
5542 } else {
5543 env->xregs[14] = env->banked_r14[bank_number(ARM_CPU_MODE_USR)];
5544 }
5545 }
5546
5547 if (mode == ARM_CPU_MODE_HYP) {
5548 env->xregs[15] = env->regs[13];
5549 } else {
5550 env->xregs[15] = env->banked_r13[bank_number(ARM_CPU_MODE_HYP)];
5551 }
5552
5553 if (mode == ARM_CPU_MODE_IRQ) {
3a9148d0
SS
5554 env->xregs[16] = env->regs[14];
5555 env->xregs[17] = env->regs[13];
ce02049d 5556 } else {
3a9148d0
SS
5557 env->xregs[16] = env->banked_r14[bank_number(ARM_CPU_MODE_IRQ)];
5558 env->xregs[17] = env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)];
ce02049d
GB
5559 }
5560
5561 if (mode == ARM_CPU_MODE_SVC) {
3a9148d0
SS
5562 env->xregs[18] = env->regs[14];
5563 env->xregs[19] = env->regs[13];
ce02049d 5564 } else {
3a9148d0
SS
5565 env->xregs[18] = env->banked_r14[bank_number(ARM_CPU_MODE_SVC)];
5566 env->xregs[19] = env->banked_r13[bank_number(ARM_CPU_MODE_SVC)];
ce02049d
GB
5567 }
5568
5569 if (mode == ARM_CPU_MODE_ABT) {
3a9148d0
SS
5570 env->xregs[20] = env->regs[14];
5571 env->xregs[21] = env->regs[13];
ce02049d 5572 } else {
3a9148d0
SS
5573 env->xregs[20] = env->banked_r14[bank_number(ARM_CPU_MODE_ABT)];
5574 env->xregs[21] = env->banked_r13[bank_number(ARM_CPU_MODE_ABT)];
ce02049d
GB
5575 }
5576
5577 if (mode == ARM_CPU_MODE_UND) {
3a9148d0
SS
5578 env->xregs[22] = env->regs[14];
5579 env->xregs[23] = env->regs[13];
ce02049d 5580 } else {
3a9148d0
SS
5581 env->xregs[22] = env->banked_r14[bank_number(ARM_CPU_MODE_UND)];
5582 env->xregs[23] = env->banked_r13[bank_number(ARM_CPU_MODE_UND)];
ce02049d
GB
5583 }
5584
5585 /* Registers x24-x30 are mapped to r8-r14 in FIQ mode. If we are in FIQ
5586 * mode, then we can copy from r8-r14. Otherwise, we copy from the
5587 * FIQ bank for r8-r14.
5588 */
5589 if (mode == ARM_CPU_MODE_FIQ) {
5590 for (i = 24; i < 31; i++) {
5591 env->xregs[i] = env->regs[i - 16]; /* X[24:30] <- R[8:14] */
5592 }
5593 } else {
5594 for (i = 24; i < 29; i++) {
5595 env->xregs[i] = env->fiq_regs[i - 24];
5596 }
5597 env->xregs[29] = env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)];
5598 env->xregs[30] = env->banked_r14[bank_number(ARM_CPU_MODE_FIQ)];
5599 }
5600
5601 env->pc = env->regs[15];
5602}
5603
5604/* Function used to synchronize QEMU's AArch32 register set with AArch64
5605 * register set. This is necessary when switching between AArch32 and AArch64
5606 * execution state.
5607 */
5608void aarch64_sync_64_to_32(CPUARMState *env)
5609{
5610 int i;
5611 uint32_t mode = env->uncached_cpsr & CPSR_M;
5612
5613 /* We can blanket copy X[0:7] to R[0:7] */
5614 for (i = 0; i < 8; i++) {
5615 env->regs[i] = env->xregs[i];
5616 }
5617
5618 /* Unless we are in FIQ mode, r8-r12 come from the user registers x8-x12.
5619 * Otherwise, we copy x8-x12 into the banked user regs.
5620 */
5621 if (mode == ARM_CPU_MODE_FIQ) {
5622 for (i = 8; i < 13; i++) {
5623 env->usr_regs[i - 8] = env->xregs[i];
5624 }
5625 } else {
5626 for (i = 8; i < 13; i++) {
5627 env->regs[i] = env->xregs[i];
5628 }
5629 }
5630
5631 /* Registers r13 & r14 depend on the current mode.
5632 * If we are in a given mode, we copy the corresponding x registers to r13
5633 * and r14. Otherwise, we copy the x register to the banked r13 and r14
5634 * for the mode.
5635 */
5636 if (mode == ARM_CPU_MODE_USR || mode == ARM_CPU_MODE_SYS) {
5637 env->regs[13] = env->xregs[13];
5638 env->regs[14] = env->xregs[14];
5639 } else {
5640 env->banked_r13[bank_number(ARM_CPU_MODE_USR)] = env->xregs[13];
5641
5642 /* HYP is an exception in that it does not have its own banked r14 but
5643 * shares the USR r14
5644 */
5645 if (mode == ARM_CPU_MODE_HYP) {
5646 env->regs[14] = env->xregs[14];
5647 } else {
5648 env->banked_r14[bank_number(ARM_CPU_MODE_USR)] = env->xregs[14];
5649 }
5650 }
5651
5652 if (mode == ARM_CPU_MODE_HYP) {
5653 env->regs[13] = env->xregs[15];
5654 } else {
5655 env->banked_r13[bank_number(ARM_CPU_MODE_HYP)] = env->xregs[15];
5656 }
5657
5658 if (mode == ARM_CPU_MODE_IRQ) {
3a9148d0
SS
5659 env->regs[14] = env->xregs[16];
5660 env->regs[13] = env->xregs[17];
ce02049d 5661 } else {
3a9148d0
SS
5662 env->banked_r14[bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[16];
5663 env->banked_r13[bank_number(ARM_CPU_MODE_IRQ)] = env->xregs[17];
ce02049d
GB
5664 }
5665
5666 if (mode == ARM_CPU_MODE_SVC) {
3a9148d0
SS
5667 env->regs[14] = env->xregs[18];
5668 env->regs[13] = env->xregs[19];
ce02049d 5669 } else {
3a9148d0
SS
5670 env->banked_r14[bank_number(ARM_CPU_MODE_SVC)] = env->xregs[18];
5671 env->banked_r13[bank_number(ARM_CPU_MODE_SVC)] = env->xregs[19];
ce02049d
GB
5672 }
5673
5674 if (mode == ARM_CPU_MODE_ABT) {
3a9148d0
SS
5675 env->regs[14] = env->xregs[20];
5676 env->regs[13] = env->xregs[21];
ce02049d 5677 } else {
3a9148d0
SS
5678 env->banked_r14[bank_number(ARM_CPU_MODE_ABT)] = env->xregs[20];
5679 env->banked_r13[bank_number(ARM_CPU_MODE_ABT)] = env->xregs[21];
ce02049d
GB
5680 }
5681
5682 if (mode == ARM_CPU_MODE_UND) {
3a9148d0
SS
5683 env->regs[14] = env->xregs[22];
5684 env->regs[13] = env->xregs[23];
ce02049d 5685 } else {
3a9148d0
SS
5686 env->banked_r14[bank_number(ARM_CPU_MODE_UND)] = env->xregs[22];
5687 env->banked_r13[bank_number(ARM_CPU_MODE_UND)] = env->xregs[23];
ce02049d
GB
5688 }
5689
5690 /* Registers x24-x30 are mapped to r8-r14 in FIQ mode. If we are in FIQ
5691 * mode, then we can copy to r8-r14. Otherwise, we copy to the
5692 * FIQ bank for r8-r14.
5693 */
5694 if (mode == ARM_CPU_MODE_FIQ) {
5695 for (i = 24; i < 31; i++) {
5696 env->regs[i - 16] = env->xregs[i]; /* X[24:30] -> R[8:14] */
5697 }
5698 } else {
5699 for (i = 24; i < 29; i++) {
5700 env->fiq_regs[i - 24] = env->xregs[i];
5701 }
5702 env->banked_r13[bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[29];
5703 env->banked_r14[bank_number(ARM_CPU_MODE_FIQ)] = env->xregs[30];
5704 }
5705
5706 env->regs[15] = env->pc;
5707}
5708
b5ff1b31 5709/* Handle a CPU exception. */
97a8ea5a 5710void arm_cpu_do_interrupt(CPUState *cs)
b5ff1b31 5711{
97a8ea5a
AF
5712 ARMCPU *cpu = ARM_CPU(cs);
5713 CPUARMState *env = &cpu->env;
b5ff1b31
FB
5714 uint32_t addr;
5715 uint32_t mask;
5716 int new_mode;
5717 uint32_t offset;
16a906fd 5718 uint32_t moe;
b5ff1b31 5719
e6f010cc
AF
5720 assert(!IS_M(env));
5721
27103424 5722 arm_log_exception(cs->exception_index);
3f1beaca 5723
98128601
RH
5724 if (arm_is_psci_call(cpu, cs->exception_index)) {
5725 arm_handle_psci_call(cpu);
5726 qemu_log_mask(CPU_LOG_INT, "...handled as PSCI call\n");
5727 return;
5728 }
5729
16a906fd
PM
5730 /* If this is a debug exception we must update the DBGDSCR.MOE bits */
5731 switch (env->exception.syndrome >> ARM_EL_EC_SHIFT) {
5732 case EC_BREAKPOINT:
5733 case EC_BREAKPOINT_SAME_EL:
5734 moe = 1;
5735 break;
5736 case EC_WATCHPOINT:
5737 case EC_WATCHPOINT_SAME_EL:
5738 moe = 10;
5739 break;
5740 case EC_AA32_BKPT:
5741 moe = 3;
5742 break;
5743 case EC_VECTORCATCH:
5744 moe = 5;
5745 break;
5746 default:
5747 moe = 0;
5748 break;
5749 }
5750
5751 if (moe) {
5752 env->cp15.mdscr_el1 = deposit64(env->cp15.mdscr_el1, 2, 4, moe);
5753 }
5754
b5ff1b31 5755 /* TODO: Vectored interrupt controller. */
27103424 5756 switch (cs->exception_index) {
b5ff1b31
FB
5757 case EXCP_UDEF:
5758 new_mode = ARM_CPU_MODE_UND;
5759 addr = 0x04;
5760 mask = CPSR_I;
5761 if (env->thumb)
5762 offset = 2;
5763 else
5764 offset = 4;
5765 break;
5766 case EXCP_SWI:
cfe67cef 5767 if (semihosting_enabled()) {
8e71621f
PB
5768 /* Check for semihosting interrupt. */
5769 if (env->thumb) {
d31dd73e
BS
5770 mask = arm_lduw_code(env, env->regs[15] - 2, env->bswap_code)
5771 & 0xff;
8e71621f 5772 } else {
d31dd73e 5773 mask = arm_ldl_code(env, env->regs[15] - 4, env->bswap_code)
d8fd2954 5774 & 0xffffff;
8e71621f
PB
5775 }
5776 /* Only intercept calls from privileged modes, to provide some
5777 semblance of security. */
5778 if (((mask == 0x123456 && !env->thumb)
5779 || (mask == 0xab && env->thumb))
5780 && (env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR) {
205ace55
CC
5781 qemu_log_mask(CPU_LOG_INT,
5782 "...handling as semihosting call 0x%x\n",
5783 env->regs[0]);
8e71621f
PB
5784 env->regs[0] = do_arm_semihosting(env);
5785 return;
5786 }
5787 }
b5ff1b31
FB
5788 new_mode = ARM_CPU_MODE_SVC;
5789 addr = 0x08;
5790 mask = CPSR_I;
601d70b9 5791 /* The PC already points to the next instruction. */
b5ff1b31
FB
5792 offset = 0;
5793 break;
06c949e6 5794 case EXCP_BKPT:
9ee6e8bb 5795 /* See if this is a semihosting syscall. */
cfe67cef 5796 if (env->thumb && semihosting_enabled()) {
d31dd73e 5797 mask = arm_lduw_code(env, env->regs[15], env->bswap_code) & 0xff;
9ee6e8bb
PB
5798 if (mask == 0xab
5799 && (env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR) {
5800 env->regs[15] += 2;
205ace55
CC
5801 qemu_log_mask(CPU_LOG_INT,
5802 "...handling as semihosting call 0x%x\n",
5803 env->regs[0]);
9ee6e8bb
PB
5804 env->regs[0] = do_arm_semihosting(env);
5805 return;
5806 }
5807 }
abf1172f 5808 env->exception.fsr = 2;
9ee6e8bb
PB
5809 /* Fall through to prefetch abort. */
5810 case EXCP_PREFETCH_ABORT:
88ca1c2d 5811 A32_BANKED_CURRENT_REG_SET(env, ifsr, env->exception.fsr);
b848ce2b 5812 A32_BANKED_CURRENT_REG_SET(env, ifar, env->exception.vaddress);
3f1beaca 5813 qemu_log_mask(CPU_LOG_INT, "...with IFSR 0x%x IFAR 0x%x\n",
88ca1c2d 5814 env->exception.fsr, (uint32_t)env->exception.vaddress);
b5ff1b31
FB
5815 new_mode = ARM_CPU_MODE_ABT;
5816 addr = 0x0c;
5817 mask = CPSR_A | CPSR_I;
5818 offset = 4;
5819 break;
5820 case EXCP_DATA_ABORT:
4a7e2d73 5821 A32_BANKED_CURRENT_REG_SET(env, dfsr, env->exception.fsr);
b848ce2b 5822 A32_BANKED_CURRENT_REG_SET(env, dfar, env->exception.vaddress);
3f1beaca 5823 qemu_log_mask(CPU_LOG_INT, "...with DFSR 0x%x DFAR 0x%x\n",
4a7e2d73 5824 env->exception.fsr,
6cd8a264 5825 (uint32_t)env->exception.vaddress);
b5ff1b31
FB
5826 new_mode = ARM_CPU_MODE_ABT;
5827 addr = 0x10;
5828 mask = CPSR_A | CPSR_I;
5829 offset = 8;
5830 break;
5831 case EXCP_IRQ:
5832 new_mode = ARM_CPU_MODE_IRQ;
5833 addr = 0x18;
5834 /* Disable IRQ and imprecise data aborts. */
5835 mask = CPSR_A | CPSR_I;
5836 offset = 4;
de38d23b
FA
5837 if (env->cp15.scr_el3 & SCR_IRQ) {
5838 /* IRQ routed to monitor mode */
5839 new_mode = ARM_CPU_MODE_MON;
5840 mask |= CPSR_F;
5841 }
b5ff1b31
FB
5842 break;
5843 case EXCP_FIQ:
5844 new_mode = ARM_CPU_MODE_FIQ;
5845 addr = 0x1c;
5846 /* Disable FIQ, IRQ and imprecise data aborts. */
5847 mask = CPSR_A | CPSR_I | CPSR_F;
de38d23b
FA
5848 if (env->cp15.scr_el3 & SCR_FIQ) {
5849 /* FIQ routed to monitor mode */
5850 new_mode = ARM_CPU_MODE_MON;
5851 }
b5ff1b31
FB
5852 offset = 4;
5853 break;
dbe9d163
FA
5854 case EXCP_SMC:
5855 new_mode = ARM_CPU_MODE_MON;
5856 addr = 0x08;
5857 mask = CPSR_A | CPSR_I | CPSR_F;
5858 offset = 0;
5859 break;
b5ff1b31 5860 default:
a47dddd7 5861 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
b5ff1b31
FB
5862 return; /* Never happens. Keep compiler happy. */
5863 }
e89e51a1
FA
5864
5865 if (new_mode == ARM_CPU_MODE_MON) {
5866 addr += env->cp15.mvbar;
137feaa9 5867 } else if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
e89e51a1 5868 /* High vectors. When enabled, base address cannot be remapped. */
b5ff1b31 5869 addr += 0xffff0000;
8641136c
NR
5870 } else {
5871 /* ARM v7 architectures provide a vector base address register to remap
5872 * the interrupt vector table.
e89e51a1 5873 * This register is only followed in non-monitor mode, and is banked.
8641136c
NR
5874 * Note: only bits 31:5 are valid.
5875 */
fb6c91ba 5876 addr += A32_BANKED_CURRENT_REG_GET(env, vbar);
b5ff1b31 5877 }
dbe9d163
FA
5878
5879 if ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_MON) {
5880 env->cp15.scr_el3 &= ~SCR_NS;
5881 }
5882
b5ff1b31 5883 switch_mode (env, new_mode);
662cefb7
PM
5884 /* For exceptions taken to AArch32 we must clear the SS bit in both
5885 * PSTATE and in the old-state value we save to SPSR_<mode>, so zero it now.
5886 */
5887 env->uncached_cpsr &= ~PSTATE_SS;
b5ff1b31 5888 env->spsr = cpsr_read(env);
9ee6e8bb
PB
5889 /* Clear IT bits. */
5890 env->condexec_bits = 0;
30a8cac1 5891 /* Switch to the new mode, and to the correct instruction set. */
6d7e6326 5892 env->uncached_cpsr = (env->uncached_cpsr & ~CPSR_M) | new_mode;
4cc35614 5893 env->daif |= mask;
be5e7a76
DES
5894 /* this is a lie, as the was no c1_sys on V4T/V5, but who cares
5895 * and we should just guard the thumb mode on V4 */
5896 if (arm_feature(env, ARM_FEATURE_V4T)) {
137feaa9 5897 env->thumb = (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_TE) != 0;
be5e7a76 5898 }
b5ff1b31
FB
5899 env->regs[14] = env->regs[15] + offset;
5900 env->regs[15] = addr;
259186a7 5901 cs->interrupt_request |= CPU_INTERRUPT_EXITTB;
b5ff1b31
FB
5902}
5903
0480f69a
PM
5904
5905/* Return the exception level which controls this address translation regime */
5906static inline uint32_t regime_el(CPUARMState *env, ARMMMUIdx mmu_idx)
5907{
5908 switch (mmu_idx) {
5909 case ARMMMUIdx_S2NS:
5910 case ARMMMUIdx_S1E2:
5911 return 2;
5912 case ARMMMUIdx_S1E3:
5913 return 3;
5914 case ARMMMUIdx_S1SE0:
5915 return arm_el_is_aa64(env, 3) ? 1 : 3;
5916 case ARMMMUIdx_S1SE1:
5917 case ARMMMUIdx_S1NSE0:
5918 case ARMMMUIdx_S1NSE1:
5919 return 1;
5920 default:
5921 g_assert_not_reached();
5922 }
5923}
5924
8bf5b6a9
PM
5925/* Return true if this address translation regime is secure */
5926static inline bool regime_is_secure(CPUARMState *env, ARMMMUIdx mmu_idx)
5927{
5928 switch (mmu_idx) {
5929 case ARMMMUIdx_S12NSE0:
5930 case ARMMMUIdx_S12NSE1:
5931 case ARMMMUIdx_S1NSE0:
5932 case ARMMMUIdx_S1NSE1:
5933 case ARMMMUIdx_S1E2:
5934 case ARMMMUIdx_S2NS:
5935 return false;
5936 case ARMMMUIdx_S1E3:
5937 case ARMMMUIdx_S1SE0:
5938 case ARMMMUIdx_S1SE1:
5939 return true;
5940 default:
5941 g_assert_not_reached();
5942 }
5943}
5944
0480f69a
PM
5945/* Return the SCTLR value which controls this address translation regime */
5946static inline uint32_t regime_sctlr(CPUARMState *env, ARMMMUIdx mmu_idx)
5947{
5948 return env->cp15.sctlr_el[regime_el(env, mmu_idx)];
5949}
5950
5951/* Return true if the specified stage of address translation is disabled */
5952static inline bool regime_translation_disabled(CPUARMState *env,
5953 ARMMMUIdx mmu_idx)
5954{
5955 if (mmu_idx == ARMMMUIdx_S2NS) {
5956 return (env->cp15.hcr_el2 & HCR_VM) == 0;
5957 }
5958 return (regime_sctlr(env, mmu_idx) & SCTLR_M) == 0;
5959}
5960
5961/* Return the TCR controlling this translation regime */
5962static inline TCR *regime_tcr(CPUARMState *env, ARMMMUIdx mmu_idx)
5963{
5964 if (mmu_idx == ARMMMUIdx_S2NS) {
68e9c2fe 5965 return &env->cp15.vtcr_el2;
0480f69a
PM
5966 }
5967 return &env->cp15.tcr_el[regime_el(env, mmu_idx)];
5968}
5969
aef878be
GB
5970/* Return the TTBR associated with this translation regime */
5971static inline uint64_t regime_ttbr(CPUARMState *env, ARMMMUIdx mmu_idx,
5972 int ttbrn)
5973{
5974 if (mmu_idx == ARMMMUIdx_S2NS) {
b698e9cf 5975 return env->cp15.vttbr_el2;
aef878be
GB
5976 }
5977 if (ttbrn == 0) {
5978 return env->cp15.ttbr0_el[regime_el(env, mmu_idx)];
5979 } else {
5980 return env->cp15.ttbr1_el[regime_el(env, mmu_idx)];
5981 }
5982}
5983
0480f69a
PM
5984/* Return true if the translation regime is using LPAE format page tables */
5985static inline bool regime_using_lpae_format(CPUARMState *env,
5986 ARMMMUIdx mmu_idx)
5987{
5988 int el = regime_el(env, mmu_idx);
5989 if (el == 2 || arm_el_is_aa64(env, el)) {
5990 return true;
5991 }
5992 if (arm_feature(env, ARM_FEATURE_LPAE)
5993 && (regime_tcr(env, mmu_idx)->raw_tcr & TTBCR_EAE)) {
5994 return true;
5995 }
5996 return false;
5997}
5998
5999static inline bool regime_is_user(CPUARMState *env, ARMMMUIdx mmu_idx)
6000{
6001 switch (mmu_idx) {
6002 case ARMMMUIdx_S1SE0:
6003 case ARMMMUIdx_S1NSE0:
6004 return true;
6005 default:
6006 return false;
6007 case ARMMMUIdx_S12NSE0:
6008 case ARMMMUIdx_S12NSE1:
6009 g_assert_not_reached();
6010 }
6011}
6012
0fbf5238
AJ
6013/* Translate section/page access permissions to page
6014 * R/W protection flags
d76951b6
AJ
6015 *
6016 * @env: CPUARMState
6017 * @mmu_idx: MMU index indicating required translation regime
6018 * @ap: The 3-bit access permissions (AP[2:0])
6019 * @domain_prot: The 2-bit domain access permissions
0fbf5238
AJ
6020 */
6021static inline int ap_to_rw_prot(CPUARMState *env, ARMMMUIdx mmu_idx,
6022 int ap, int domain_prot)
6023{
554b0b09
PM
6024 bool is_user = regime_is_user(env, mmu_idx);
6025
6026 if (domain_prot == 3) {
6027 return PAGE_READ | PAGE_WRITE;
6028 }
6029
554b0b09
PM
6030 switch (ap) {
6031 case 0:
6032 if (arm_feature(env, ARM_FEATURE_V7)) {
6033 return 0;
6034 }
554b0b09
PM
6035 switch (regime_sctlr(env, mmu_idx) & (SCTLR_S | SCTLR_R)) {
6036 case SCTLR_S:
6037 return is_user ? 0 : PAGE_READ;
6038 case SCTLR_R:
6039 return PAGE_READ;
6040 default:
6041 return 0;
6042 }
6043 case 1:
6044 return is_user ? 0 : PAGE_READ | PAGE_WRITE;
6045 case 2:
87c3d486 6046 if (is_user) {
0fbf5238 6047 return PAGE_READ;
87c3d486 6048 } else {
554b0b09 6049 return PAGE_READ | PAGE_WRITE;
87c3d486 6050 }
554b0b09
PM
6051 case 3:
6052 return PAGE_READ | PAGE_WRITE;
6053 case 4: /* Reserved. */
6054 return 0;
6055 case 5:
0fbf5238 6056 return is_user ? 0 : PAGE_READ;
554b0b09 6057 case 6:
0fbf5238 6058 return PAGE_READ;
554b0b09 6059 case 7:
87c3d486 6060 if (!arm_feature(env, ARM_FEATURE_V6K)) {
554b0b09 6061 return 0;
87c3d486 6062 }
0fbf5238 6063 return PAGE_READ;
554b0b09 6064 default:
0fbf5238 6065 g_assert_not_reached();
554b0b09 6066 }
b5ff1b31
FB
6067}
6068
d76951b6
AJ
6069/* Translate section/page access permissions to page
6070 * R/W protection flags.
6071 *
d76951b6 6072 * @ap: The 2-bit simple AP (AP[2:1])
d8e052b3 6073 * @is_user: TRUE if accessing from PL0
d76951b6 6074 */
d8e052b3 6075static inline int simple_ap_to_rw_prot_is_user(int ap, bool is_user)
d76951b6 6076{
d76951b6
AJ
6077 switch (ap) {
6078 case 0:
6079 return is_user ? 0 : PAGE_READ | PAGE_WRITE;
6080 case 1:
6081 return PAGE_READ | PAGE_WRITE;
6082 case 2:
6083 return is_user ? 0 : PAGE_READ;
6084 case 3:
6085 return PAGE_READ;
6086 default:
6087 g_assert_not_reached();
6088 }
6089}
6090
d8e052b3
AJ
6091static inline int
6092simple_ap_to_rw_prot(CPUARMState *env, ARMMMUIdx mmu_idx, int ap)
6093{
6094 return simple_ap_to_rw_prot_is_user(ap, regime_is_user(env, mmu_idx));
6095}
6096
6ab1a5ee
EI
6097/* Translate S2 section/page access permissions to protection flags
6098 *
6099 * @env: CPUARMState
6100 * @s2ap: The 2-bit stage2 access permissions (S2AP)
6101 * @xn: XN (execute-never) bit
6102 */
6103static int get_S2prot(CPUARMState *env, int s2ap, int xn)
6104{
6105 int prot = 0;
6106
6107 if (s2ap & 1) {
6108 prot |= PAGE_READ;
6109 }
6110 if (s2ap & 2) {
6111 prot |= PAGE_WRITE;
6112 }
6113 if (!xn) {
6114 prot |= PAGE_EXEC;
6115 }
6116 return prot;
6117}
6118
d8e052b3
AJ
6119/* Translate section/page access permissions to protection flags
6120 *
6121 * @env: CPUARMState
6122 * @mmu_idx: MMU index indicating required translation regime
6123 * @is_aa64: TRUE if AArch64
6124 * @ap: The 2-bit simple AP (AP[2:1])
6125 * @ns: NS (non-secure) bit
6126 * @xn: XN (execute-never) bit
6127 * @pxn: PXN (privileged execute-never) bit
6128 */
6129static int get_S1prot(CPUARMState *env, ARMMMUIdx mmu_idx, bool is_aa64,
6130 int ap, int ns, int xn, int pxn)
6131{
6132 bool is_user = regime_is_user(env, mmu_idx);
6133 int prot_rw, user_rw;
6134 bool have_wxn;
6135 int wxn = 0;
6136
6137 assert(mmu_idx != ARMMMUIdx_S2NS);
6138
6139 user_rw = simple_ap_to_rw_prot_is_user(ap, true);
6140 if (is_user) {
6141 prot_rw = user_rw;
6142 } else {
6143 prot_rw = simple_ap_to_rw_prot_is_user(ap, false);
6144 }
6145
6146 if (ns && arm_is_secure(env) && (env->cp15.scr_el3 & SCR_SIF)) {
6147 return prot_rw;
6148 }
6149
6150 /* TODO have_wxn should be replaced with
6151 * ARM_FEATURE_V8 || (ARM_FEATURE_V7 && ARM_FEATURE_EL2)
6152 * when ARM_FEATURE_EL2 starts getting set. For now we assume all LPAE
6153 * compatible processors have EL2, which is required for [U]WXN.
6154 */
6155 have_wxn = arm_feature(env, ARM_FEATURE_LPAE);
6156
6157 if (have_wxn) {
6158 wxn = regime_sctlr(env, mmu_idx) & SCTLR_WXN;
6159 }
6160
6161 if (is_aa64) {
6162 switch (regime_el(env, mmu_idx)) {
6163 case 1:
6164 if (!is_user) {
6165 xn = pxn || (user_rw & PAGE_WRITE);
6166 }
6167 break;
6168 case 2:
6169 case 3:
6170 break;
6171 }
6172 } else if (arm_feature(env, ARM_FEATURE_V7)) {
6173 switch (regime_el(env, mmu_idx)) {
6174 case 1:
6175 case 3:
6176 if (is_user) {
6177 xn = xn || !(user_rw & PAGE_READ);
6178 } else {
6179 int uwxn = 0;
6180 if (have_wxn) {
6181 uwxn = regime_sctlr(env, mmu_idx) & SCTLR_UWXN;
6182 }
6183 xn = xn || !(prot_rw & PAGE_READ) || pxn ||
6184 (uwxn && (user_rw & PAGE_WRITE));
6185 }
6186 break;
6187 case 2:
6188 break;
6189 }
6190 } else {
6191 xn = wxn = 0;
6192 }
6193
6194 if (xn || (wxn && (prot_rw & PAGE_WRITE))) {
6195 return prot_rw;
6196 }
6197 return prot_rw | PAGE_EXEC;
6198}
6199
0480f69a
PM
6200static bool get_level1_table_address(CPUARMState *env, ARMMMUIdx mmu_idx,
6201 uint32_t *table, uint32_t address)
b2fa1797 6202{
0480f69a 6203 /* Note that we can only get here for an AArch32 PL0/PL1 lookup */
0480f69a 6204 TCR *tcr = regime_tcr(env, mmu_idx);
11f136ee 6205
11f136ee
FA
6206 if (address & tcr->mask) {
6207 if (tcr->raw_tcr & TTBCR_PD1) {
e389be16
FA
6208 /* Translation table walk disabled for TTBR1 */
6209 return false;
6210 }
aef878be 6211 *table = regime_ttbr(env, mmu_idx, 1) & 0xffffc000;
e389be16 6212 } else {
11f136ee 6213 if (tcr->raw_tcr & TTBCR_PD0) {
e389be16
FA
6214 /* Translation table walk disabled for TTBR0 */
6215 return false;
6216 }
aef878be 6217 *table = regime_ttbr(env, mmu_idx, 0) & tcr->base_mask;
e389be16
FA
6218 }
6219 *table |= (address >> 18) & 0x3ffc;
6220 return true;
b2fa1797
PB
6221}
6222
37785977
EI
6223/* Translate a S1 pagetable walk through S2 if needed. */
6224static hwaddr S1_ptw_translate(CPUARMState *env, ARMMMUIdx mmu_idx,
6225 hwaddr addr, MemTxAttrs txattrs,
6226 uint32_t *fsr,
6227 ARMMMUFaultInfo *fi)
6228{
6229 if ((mmu_idx == ARMMMUIdx_S1NSE0 || mmu_idx == ARMMMUIdx_S1NSE1) &&
6230 !regime_translation_disabled(env, ARMMMUIdx_S2NS)) {
6231 target_ulong s2size;
6232 hwaddr s2pa;
6233 int s2prot;
6234 int ret;
6235
6236 ret = get_phys_addr_lpae(env, addr, 0, ARMMMUIdx_S2NS, &s2pa,
6237 &txattrs, &s2prot, &s2size, fsr, fi);
6238 if (ret) {
6239 fi->s2addr = addr;
6240 fi->stage2 = true;
6241 fi->s1ptw = true;
6242 return ~0;
6243 }
6244 addr = s2pa;
6245 }
6246 return addr;
6247}
6248
ebca90e4
PM
6249/* All loads done in the course of a page table walk go through here.
6250 * TODO: rather than ignoring errors from physical memory reads (which
6251 * are external aborts in ARM terminology) we should propagate this
6252 * error out so that we can turn it into a Data Abort if this walk
6253 * was being done for a CPU load/store or an address translation instruction
6254 * (but not if it was for a debug access).
6255 */
a614e698
EI
6256static uint32_t arm_ldl_ptw(CPUState *cs, hwaddr addr, bool is_secure,
6257 ARMMMUIdx mmu_idx, uint32_t *fsr,
6258 ARMMMUFaultInfo *fi)
ebca90e4 6259{
a614e698
EI
6260 ARMCPU *cpu = ARM_CPU(cs);
6261 CPUARMState *env = &cpu->env;
ebca90e4
PM
6262 MemTxAttrs attrs = {};
6263
6264 attrs.secure = is_secure;
a614e698
EI
6265 addr = S1_ptw_translate(env, mmu_idx, addr, attrs, fsr, fi);
6266 if (fi->s1ptw) {
6267 return 0;
6268 }
ebca90e4
PM
6269 return address_space_ldl(cs->as, addr, attrs, NULL);
6270}
6271
37785977
EI
6272static uint64_t arm_ldq_ptw(CPUState *cs, hwaddr addr, bool is_secure,
6273 ARMMMUIdx mmu_idx, uint32_t *fsr,
6274 ARMMMUFaultInfo *fi)
ebca90e4 6275{
37785977
EI
6276 ARMCPU *cpu = ARM_CPU(cs);
6277 CPUARMState *env = &cpu->env;
ebca90e4
PM
6278 MemTxAttrs attrs = {};
6279
6280 attrs.secure = is_secure;
37785977
EI
6281 addr = S1_ptw_translate(env, mmu_idx, addr, attrs, fsr, fi);
6282 if (fi->s1ptw) {
6283 return 0;
6284 }
ebca90e4
PM
6285 return address_space_ldq(cs->as, addr, attrs, NULL);
6286}
6287
b7cc4e82
PC
6288static bool get_phys_addr_v5(CPUARMState *env, uint32_t address,
6289 int access_type, ARMMMUIdx mmu_idx,
6290 hwaddr *phys_ptr, int *prot,
e14b5a23
EI
6291 target_ulong *page_size, uint32_t *fsr,
6292 ARMMMUFaultInfo *fi)
b5ff1b31 6293{
70d74660 6294 CPUState *cs = CPU(arm_env_get_cpu(env));
b5ff1b31
FB
6295 int code;
6296 uint32_t table;
6297 uint32_t desc;
6298 int type;
6299 int ap;
e389be16 6300 int domain = 0;
dd4ebc2e 6301 int domain_prot;
a8170e5e 6302 hwaddr phys_addr;
0480f69a 6303 uint32_t dacr;
b5ff1b31 6304
9ee6e8bb
PB
6305 /* Pagetable walk. */
6306 /* Lookup l1 descriptor. */
0480f69a 6307 if (!get_level1_table_address(env, mmu_idx, &table, address)) {
e389be16
FA
6308 /* Section translation fault if page walk is disabled by PD0 or PD1 */
6309 code = 5;
6310 goto do_fault;
6311 }
a614e698
EI
6312 desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
6313 mmu_idx, fsr, fi);
9ee6e8bb 6314 type = (desc & 3);
dd4ebc2e 6315 domain = (desc >> 5) & 0x0f;
0480f69a
PM
6316 if (regime_el(env, mmu_idx) == 1) {
6317 dacr = env->cp15.dacr_ns;
6318 } else {
6319 dacr = env->cp15.dacr_s;
6320 }
6321 domain_prot = (dacr >> (domain * 2)) & 3;
9ee6e8bb 6322 if (type == 0) {
601d70b9 6323 /* Section translation fault. */
9ee6e8bb
PB
6324 code = 5;
6325 goto do_fault;
6326 }
dd4ebc2e 6327 if (domain_prot == 0 || domain_prot == 2) {
9ee6e8bb
PB
6328 if (type == 2)
6329 code = 9; /* Section domain fault. */
6330 else
6331 code = 11; /* Page domain fault. */
6332 goto do_fault;
6333 }
6334 if (type == 2) {
6335 /* 1Mb section. */
6336 phys_addr = (desc & 0xfff00000) | (address & 0x000fffff);
6337 ap = (desc >> 10) & 3;
6338 code = 13;
d4c430a8 6339 *page_size = 1024 * 1024;
9ee6e8bb
PB
6340 } else {
6341 /* Lookup l2 entry. */
554b0b09
PM
6342 if (type == 1) {
6343 /* Coarse pagetable. */
6344 table = (desc & 0xfffffc00) | ((address >> 10) & 0x3fc);
6345 } else {
6346 /* Fine pagetable. */
6347 table = (desc & 0xfffff000) | ((address >> 8) & 0xffc);
6348 }
a614e698
EI
6349 desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
6350 mmu_idx, fsr, fi);
9ee6e8bb
PB
6351 switch (desc & 3) {
6352 case 0: /* Page translation fault. */
6353 code = 7;
6354 goto do_fault;
6355 case 1: /* 64k page. */
6356 phys_addr = (desc & 0xffff0000) | (address & 0xffff);
6357 ap = (desc >> (4 + ((address >> 13) & 6))) & 3;
d4c430a8 6358 *page_size = 0x10000;
ce819861 6359 break;
9ee6e8bb
PB
6360 case 2: /* 4k page. */
6361 phys_addr = (desc & 0xfffff000) | (address & 0xfff);
c10f7fc3 6362 ap = (desc >> (4 + ((address >> 9) & 6))) & 3;
d4c430a8 6363 *page_size = 0x1000;
ce819861 6364 break;
fc1891c7 6365 case 3: /* 1k page, or ARMv6/XScale "extended small (4k) page" */
554b0b09 6366 if (type == 1) {
fc1891c7
PM
6367 /* ARMv6/XScale extended small page format */
6368 if (arm_feature(env, ARM_FEATURE_XSCALE)
6369 || arm_feature(env, ARM_FEATURE_V6)) {
554b0b09 6370 phys_addr = (desc & 0xfffff000) | (address & 0xfff);
fc1891c7 6371 *page_size = 0x1000;
554b0b09 6372 } else {
fc1891c7
PM
6373 /* UNPREDICTABLE in ARMv5; we choose to take a
6374 * page translation fault.
6375 */
554b0b09
PM
6376 code = 7;
6377 goto do_fault;
6378 }
6379 } else {
6380 phys_addr = (desc & 0xfffffc00) | (address & 0x3ff);
fc1891c7 6381 *page_size = 0x400;
554b0b09 6382 }
9ee6e8bb 6383 ap = (desc >> 4) & 3;
ce819861
PB
6384 break;
6385 default:
9ee6e8bb
PB
6386 /* Never happens, but compiler isn't smart enough to tell. */
6387 abort();
ce819861 6388 }
9ee6e8bb
PB
6389 code = 15;
6390 }
0fbf5238
AJ
6391 *prot = ap_to_rw_prot(env, mmu_idx, ap, domain_prot);
6392 *prot |= *prot ? PAGE_EXEC : 0;
6393 if (!(*prot & (1 << access_type))) {
9ee6e8bb
PB
6394 /* Access permission fault. */
6395 goto do_fault;
6396 }
6397 *phys_ptr = phys_addr;
b7cc4e82 6398 return false;
9ee6e8bb 6399do_fault:
b7cc4e82
PC
6400 *fsr = code | (domain << 4);
6401 return true;
9ee6e8bb
PB
6402}
6403
b7cc4e82
PC
6404static bool get_phys_addr_v6(CPUARMState *env, uint32_t address,
6405 int access_type, ARMMMUIdx mmu_idx,
6406 hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
e14b5a23
EI
6407 target_ulong *page_size, uint32_t *fsr,
6408 ARMMMUFaultInfo *fi)
9ee6e8bb 6409{
70d74660 6410 CPUState *cs = CPU(arm_env_get_cpu(env));
9ee6e8bb
PB
6411 int code;
6412 uint32_t table;
6413 uint32_t desc;
6414 uint32_t xn;
de9b05b8 6415 uint32_t pxn = 0;
9ee6e8bb
PB
6416 int type;
6417 int ap;
de9b05b8 6418 int domain = 0;
dd4ebc2e 6419 int domain_prot;
a8170e5e 6420 hwaddr phys_addr;
0480f69a 6421 uint32_t dacr;
8bf5b6a9 6422 bool ns;
9ee6e8bb
PB
6423
6424 /* Pagetable walk. */
6425 /* Lookup l1 descriptor. */
0480f69a 6426 if (!get_level1_table_address(env, mmu_idx, &table, address)) {
e389be16
FA
6427 /* Section translation fault if page walk is disabled by PD0 or PD1 */
6428 code = 5;
6429 goto do_fault;
6430 }
a614e698
EI
6431 desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
6432 mmu_idx, fsr, fi);
9ee6e8bb 6433 type = (desc & 3);
de9b05b8
PM
6434 if (type == 0 || (type == 3 && !arm_feature(env, ARM_FEATURE_PXN))) {
6435 /* Section translation fault, or attempt to use the encoding
6436 * which is Reserved on implementations without PXN.
6437 */
9ee6e8bb 6438 code = 5;
9ee6e8bb 6439 goto do_fault;
de9b05b8
PM
6440 }
6441 if ((type == 1) || !(desc & (1 << 18))) {
6442 /* Page or Section. */
dd4ebc2e 6443 domain = (desc >> 5) & 0x0f;
9ee6e8bb 6444 }
0480f69a
PM
6445 if (regime_el(env, mmu_idx) == 1) {
6446 dacr = env->cp15.dacr_ns;
6447 } else {
6448 dacr = env->cp15.dacr_s;
6449 }
6450 domain_prot = (dacr >> (domain * 2)) & 3;
dd4ebc2e 6451 if (domain_prot == 0 || domain_prot == 2) {
de9b05b8 6452 if (type != 1) {
9ee6e8bb 6453 code = 9; /* Section domain fault. */
de9b05b8 6454 } else {
9ee6e8bb 6455 code = 11; /* Page domain fault. */
de9b05b8 6456 }
9ee6e8bb
PB
6457 goto do_fault;
6458 }
de9b05b8 6459 if (type != 1) {
9ee6e8bb
PB
6460 if (desc & (1 << 18)) {
6461 /* Supersection. */
6462 phys_addr = (desc & 0xff000000) | (address & 0x00ffffff);
4e42a6ca
SF
6463 phys_addr |= (uint64_t)extract32(desc, 20, 4) << 32;
6464 phys_addr |= (uint64_t)extract32(desc, 5, 4) << 36;
d4c430a8 6465 *page_size = 0x1000000;
b5ff1b31 6466 } else {
9ee6e8bb
PB
6467 /* Section. */
6468 phys_addr = (desc & 0xfff00000) | (address & 0x000fffff);
d4c430a8 6469 *page_size = 0x100000;
b5ff1b31 6470 }
9ee6e8bb
PB
6471 ap = ((desc >> 10) & 3) | ((desc >> 13) & 4);
6472 xn = desc & (1 << 4);
de9b05b8 6473 pxn = desc & 1;
9ee6e8bb 6474 code = 13;
8bf5b6a9 6475 ns = extract32(desc, 19, 1);
9ee6e8bb 6476 } else {
de9b05b8
PM
6477 if (arm_feature(env, ARM_FEATURE_PXN)) {
6478 pxn = (desc >> 2) & 1;
6479 }
8bf5b6a9 6480 ns = extract32(desc, 3, 1);
9ee6e8bb
PB
6481 /* Lookup l2 entry. */
6482 table = (desc & 0xfffffc00) | ((address >> 10) & 0x3fc);
a614e698
EI
6483 desc = arm_ldl_ptw(cs, table, regime_is_secure(env, mmu_idx),
6484 mmu_idx, fsr, fi);
9ee6e8bb
PB
6485 ap = ((desc >> 4) & 3) | ((desc >> 7) & 4);
6486 switch (desc & 3) {
6487 case 0: /* Page translation fault. */
6488 code = 7;
b5ff1b31 6489 goto do_fault;
9ee6e8bb
PB
6490 case 1: /* 64k page. */
6491 phys_addr = (desc & 0xffff0000) | (address & 0xffff);
6492 xn = desc & (1 << 15);
d4c430a8 6493 *page_size = 0x10000;
9ee6e8bb
PB
6494 break;
6495 case 2: case 3: /* 4k page. */
6496 phys_addr = (desc & 0xfffff000) | (address & 0xfff);
6497 xn = desc & 1;
d4c430a8 6498 *page_size = 0x1000;
9ee6e8bb
PB
6499 break;
6500 default:
6501 /* Never happens, but compiler isn't smart enough to tell. */
6502 abort();
b5ff1b31 6503 }
9ee6e8bb
PB
6504 code = 15;
6505 }
dd4ebc2e 6506 if (domain_prot == 3) {
c0034328
JR
6507 *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
6508 } else {
0480f69a 6509 if (pxn && !regime_is_user(env, mmu_idx)) {
de9b05b8
PM
6510 xn = 1;
6511 }
c0034328
JR
6512 if (xn && access_type == 2)
6513 goto do_fault;
9ee6e8bb 6514
d76951b6
AJ
6515 if (arm_feature(env, ARM_FEATURE_V6K) &&
6516 (regime_sctlr(env, mmu_idx) & SCTLR_AFE)) {
6517 /* The simplified model uses AP[0] as an access control bit. */
6518 if ((ap & 1) == 0) {
6519 /* Access flag fault. */
6520 code = (code == 15) ? 6 : 3;
6521 goto do_fault;
6522 }
6523 *prot = simple_ap_to_rw_prot(env, mmu_idx, ap >> 1);
6524 } else {
6525 *prot = ap_to_rw_prot(env, mmu_idx, ap, domain_prot);
c0034328 6526 }
0fbf5238
AJ
6527 if (*prot && !xn) {
6528 *prot |= PAGE_EXEC;
6529 }
6530 if (!(*prot & (1 << access_type))) {
c0034328
JR
6531 /* Access permission fault. */
6532 goto do_fault;
6533 }
3ad493fc 6534 }
8bf5b6a9
PM
6535 if (ns) {
6536 /* The NS bit will (as required by the architecture) have no effect if
6537 * the CPU doesn't support TZ or this is a non-secure translation
6538 * regime, because the attribute will already be non-secure.
6539 */
6540 attrs->secure = false;
6541 }
9ee6e8bb 6542 *phys_ptr = phys_addr;
b7cc4e82 6543 return false;
b5ff1b31 6544do_fault:
b7cc4e82
PC
6545 *fsr = code | (domain << 4);
6546 return true;
b5ff1b31
FB
6547}
6548
3dde962f
PM
6549/* Fault type for long-descriptor MMU fault reporting; this corresponds
6550 * to bits [5..2] in the STATUS field in long-format DFSR/IFSR.
6551 */
6552typedef enum {
6553 translation_fault = 1,
6554 access_fault = 2,
6555 permission_fault = 3,
6556} MMUFaultType;
6557
1853d5a9
EI
6558/*
6559 * check_s2_startlevel
6560 * @cpu: ARMCPU
6561 * @is_aa64: True if the translation regime is in AArch64 state
6562 * @startlevel: Suggested starting level
6563 * @inputsize: Bitsize of IPAs
6564 * @stride: Page-table stride (See the ARM ARM)
6565 *
6566 * Returns true if the suggested starting level is OK and false otherwise.
6567 */
6568static bool check_s2_startlevel(ARMCPU *cpu, bool is_aa64, int level,
6569 int inputsize, int stride)
6570{
6571 /* Negative levels are never allowed. */
6572 if (level < 0) {
6573 return false;
6574 }
6575
6576 if (is_aa64) {
6577 unsigned int pamax = arm_pamax(cpu);
6578
6579 switch (stride) {
6580 case 13: /* 64KB Pages. */
6581 if (level == 0 || (level == 1 && pamax <= 42)) {
6582 return false;
6583 }
6584 break;
6585 case 11: /* 16KB Pages. */
6586 if (level == 0 || (level == 1 && pamax <= 40)) {
6587 return false;
6588 }
6589 break;
6590 case 9: /* 4KB Pages. */
6591 if (level == 0 && pamax <= 42) {
6592 return false;
6593 }
6594 break;
6595 default:
6596 g_assert_not_reached();
6597 }
6598 } else {
6599 const int grainsize = stride + 3;
6600 int startsizecheck;
6601
6602 /* AArch32 only supports 4KB pages. Assert on that. */
6603 assert(stride == 9);
6604
6605 if (level == 0) {
6606 return false;
6607 }
6608
6609 startsizecheck = inputsize - ((3 - level) * stride + grainsize);
6610 if (startsizecheck < 1 || startsizecheck > stride + 4) {
6611 return false;
6612 }
6613 }
6614 return true;
6615}
6616
b7cc4e82
PC
6617static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
6618 int access_type, ARMMMUIdx mmu_idx,
6619 hwaddr *phys_ptr, MemTxAttrs *txattrs, int *prot,
e14b5a23
EI
6620 target_ulong *page_size_ptr, uint32_t *fsr,
6621 ARMMMUFaultInfo *fi)
3dde962f 6622{
1853d5a9
EI
6623 ARMCPU *cpu = arm_env_get_cpu(env);
6624 CPUState *cs = CPU(cpu);
3dde962f
PM
6625 /* Read an LPAE long-descriptor translation table. */
6626 MMUFaultType fault_type = translation_fault;
6627 uint32_t level = 1;
0c5fbf3b 6628 uint32_t epd = 0;
1f4c8c18 6629 int32_t t0sz, t1sz;
2c8dd318 6630 uint32_t tg;
3dde962f
PM
6631 uint64_t ttbr;
6632 int ttbr_select;
2c8dd318 6633 hwaddr descaddr, descmask;
3dde962f
PM
6634 uint32_t tableattrs;
6635 target_ulong page_size;
6636 uint32_t attrs;
973a5434 6637 int32_t stride = 9;
2c8dd318 6638 int32_t va_size = 32;
4ca6a051 6639 int inputsize;
2c8dd318 6640 int32_t tbi = 0;
0480f69a 6641 TCR *tcr = regime_tcr(env, mmu_idx);
d8e052b3 6642 int ap, ns, xn, pxn;
88e8add8
GB
6643 uint32_t el = regime_el(env, mmu_idx);
6644 bool ttbr1_valid = true;
6109769a 6645 uint64_t descaddrmask;
0480f69a
PM
6646
6647 /* TODO:
88e8add8
GB
6648 * This code does not handle the different format TCR for VTCR_EL2.
6649 * This code also does not support shareability levels.
6650 * Attribute and permission bit handling should also be checked when adding
6651 * support for those page table walks.
0480f69a 6652 */
88e8add8 6653 if (arm_el_is_aa64(env, el)) {
2c8dd318 6654 va_size = 64;
88e8add8 6655 if (el > 1) {
1edee470
EI
6656 if (mmu_idx != ARMMMUIdx_S2NS) {
6657 tbi = extract64(tcr->raw_tcr, 20, 1);
6658 }
88e8add8
GB
6659 } else {
6660 if (extract64(address, 55, 1)) {
6661 tbi = extract64(tcr->raw_tcr, 38, 1);
6662 } else {
6663 tbi = extract64(tcr->raw_tcr, 37, 1);
6664 }
6665 }
2c8dd318 6666 tbi *= 8;
88e8add8
GB
6667
6668 /* If we are in 64-bit EL2 or EL3 then there is no TTBR1, so mark it
6669 * invalid.
6670 */
6671 if (el > 1) {
6672 ttbr1_valid = false;
6673 }
d0a2cbce
PM
6674 } else {
6675 /* There is no TTBR1 for EL2 */
6676 if (el == 2) {
6677 ttbr1_valid = false;
6678 }
2c8dd318 6679 }
3dde962f
PM
6680
6681 /* Determine whether this address is in the region controlled by
6682 * TTBR0 or TTBR1 (or if it is in neither region and should fault).
6683 * This is a Non-secure PL0/1 stage 1 translation, so controlled by
6684 * TTBCR/TTBR0/TTBR1 in accordance with ARM ARM DDI0406C table B-32:
6685 */
0480f69a 6686 if (va_size == 64) {
4ee38098
EI
6687 /* AArch64 translation. */
6688 t0sz = extract32(tcr->raw_tcr, 0, 6);
2c8dd318
RH
6689 t0sz = MIN(t0sz, 39);
6690 t0sz = MAX(t0sz, 16);
4ee38098
EI
6691 } else if (mmu_idx != ARMMMUIdx_S2NS) {
6692 /* AArch32 stage 1 translation. */
6693 t0sz = extract32(tcr->raw_tcr, 0, 3);
6694 } else {
6695 /* AArch32 stage 2 translation. */
6696 bool sext = extract32(tcr->raw_tcr, 4, 1);
6697 bool sign = extract32(tcr->raw_tcr, 3, 1);
6698 t0sz = sextract32(tcr->raw_tcr, 0, 4);
6699
6700 /* If the sign-extend bit is not the same as t0sz[3], the result
6701 * is unpredictable. Flag this as a guest error. */
6702 if (sign != sext) {
6703 qemu_log_mask(LOG_GUEST_ERROR,
6704 "AArch32: VTCR.S / VTCR.T0SZ[3] missmatch\n");
6705 }
2c8dd318 6706 }
1f4c8c18 6707 t1sz = extract32(tcr->raw_tcr, 16, 6);
0480f69a 6708 if (va_size == 64) {
2c8dd318
RH
6709 t1sz = MIN(t1sz, 39);
6710 t1sz = MAX(t1sz, 16);
6711 }
6712 if (t0sz && !extract64(address, va_size - t0sz, t0sz - tbi)) {
3dde962f
PM
6713 /* there is a ttbr0 region and we are in it (high bits all zero) */
6714 ttbr_select = 0;
88e8add8
GB
6715 } else if (ttbr1_valid && t1sz &&
6716 !extract64(~address, va_size - t1sz, t1sz - tbi)) {
3dde962f
PM
6717 /* there is a ttbr1 region and we are in it (high bits all one) */
6718 ttbr_select = 1;
6719 } else if (!t0sz) {
6720 /* ttbr0 region is "everything not in the ttbr1 region" */
6721 ttbr_select = 0;
88e8add8 6722 } else if (!t1sz && ttbr1_valid) {
3dde962f
PM
6723 /* ttbr1 region is "everything not in the ttbr0 region" */
6724 ttbr_select = 1;
6725 } else {
6726 /* in the gap between the two regions, this is a Translation fault */
6727 fault_type = translation_fault;
6728 goto do_fault;
6729 }
6730
6731 /* Note that QEMU ignores shareability and cacheability attributes,
6732 * so we don't need to do anything with the SH, ORGN, IRGN fields
6733 * in the TTBCR. Similarly, TTBCR:A1 selects whether we get the
6734 * ASID from TTBR0 or TTBR1, but QEMU's TLB doesn't currently
6735 * implement any ASID-like capability so we can ignore it (instead
6736 * we will always flush the TLB any time the ASID is changed).
6737 */
6738 if (ttbr_select == 0) {
aef878be 6739 ttbr = regime_ttbr(env, mmu_idx, 0);
0c5fbf3b
EI
6740 if (el < 2) {
6741 epd = extract32(tcr->raw_tcr, 7, 1);
6742 }
4ca6a051 6743 inputsize = va_size - t0sz;
2c8dd318 6744
11f136ee 6745 tg = extract32(tcr->raw_tcr, 14, 2);
2c8dd318 6746 if (tg == 1) { /* 64KB pages */
973a5434 6747 stride = 13;
2c8dd318
RH
6748 }
6749 if (tg == 2) { /* 16KB pages */
973a5434 6750 stride = 11;
2c8dd318 6751 }
3dde962f 6752 } else {
88e8add8
GB
6753 /* We should only be here if TTBR1 is valid */
6754 assert(ttbr1_valid);
6755
aef878be 6756 ttbr = regime_ttbr(env, mmu_idx, 1);
11f136ee 6757 epd = extract32(tcr->raw_tcr, 23, 1);
4ca6a051 6758 inputsize = va_size - t1sz;
2c8dd318 6759
11f136ee 6760 tg = extract32(tcr->raw_tcr, 30, 2);
2c8dd318 6761 if (tg == 3) { /* 64KB pages */
973a5434 6762 stride = 13;
2c8dd318
RH
6763 }
6764 if (tg == 1) { /* 16KB pages */
973a5434 6765 stride = 11;
2c8dd318 6766 }
3dde962f
PM
6767 }
6768
0480f69a 6769 /* Here we should have set up all the parameters for the translation:
973a5434 6770 * va_size, inputsize, ttbr, epd, stride, tbi
0480f69a
PM
6771 */
6772
3dde962f 6773 if (epd) {
88e8add8
GB
6774 /* Translation table walk disabled => Translation fault on TLB miss
6775 * Note: This is always 0 on 64-bit EL2 and EL3.
6776 */
3dde962f
PM
6777 goto do_fault;
6778 }
6779
1853d5a9
EI
6780 if (mmu_idx != ARMMMUIdx_S2NS) {
6781 /* The starting level depends on the virtual address size (which can
6782 * be up to 48 bits) and the translation granule size. It indicates
6783 * the number of strides (stride bits at a time) needed to
6784 * consume the bits of the input address. In the pseudocode this is:
6785 * level = 4 - RoundUp((inputsize - grainsize) / stride)
6786 * where their 'inputsize' is our 'inputsize', 'grainsize' is
6787 * our 'stride + 3' and 'stride' is our 'stride'.
6788 * Applying the usual "rounded up m/n is (m+n-1)/n" and simplifying:
6789 * = 4 - (inputsize - stride - 3 + stride - 1) / stride
6790 * = 4 - (inputsize - 4) / stride;
6791 */
6792 level = 4 - (inputsize - 4) / stride;
6793 } else {
6794 /* For stage 2 translations the starting level is specified by the
6795 * VTCR_EL2.SL0 field (whose interpretation depends on the page size)
6796 */
6797 int startlevel = extract32(tcr->raw_tcr, 6, 2);
6798 bool ok;
6799
6800 if (va_size == 32 || stride == 9) {
6801 /* AArch32 or 4KB pages */
6802 level = 2 - startlevel;
6803 } else {
6804 /* 16KB or 64KB pages */
6805 level = 3 - startlevel;
6806 }
6807
6808 /* Check that the starting level is valid. */
6809 ok = check_s2_startlevel(cpu, va_size == 64, level,
6810 inputsize, stride);
6811 if (!ok) {
6812 /* AArch64 reports these as level 0 faults.
6813 * AArch32 reports these as level 1 faults.
6814 */
6815 level = va_size == 64 ? 0 : 1;
6816 fault_type = translation_fault;
6817 goto do_fault;
6818 }
6819 }
3dde962f
PM
6820
6821 /* Clear the vaddr bits which aren't part of the within-region address,
6822 * so that we don't have to special case things when calculating the
6823 * first descriptor address.
6824 */
4ca6a051
EI
6825 if (va_size != inputsize) {
6826 address &= (1ULL << inputsize) - 1;
2c8dd318
RH
6827 }
6828
973a5434 6829 descmask = (1ULL << (stride + 3)) - 1;
3dde962f
PM
6830
6831 /* Now we can extract the actual base address from the TTBR */
2c8dd318 6832 descaddr = extract64(ttbr, 0, 48);
973a5434 6833 descaddr &= ~((1ULL << (inputsize - (stride * (4 - level)))) - 1);
3dde962f 6834
6109769a
PM
6835 /* The address field in the descriptor goes up to bit 39 for ARMv7
6836 * but up to bit 47 for ARMv8.
6837 */
6838 if (arm_feature(env, ARM_FEATURE_V8)) {
6839 descaddrmask = 0xfffffffff000ULL;
6840 } else {
6841 descaddrmask = 0xfffffff000ULL;
6842 }
6843
ebca90e4
PM
6844 /* Secure accesses start with the page table in secure memory and
6845 * can be downgraded to non-secure at any step. Non-secure accesses
6846 * remain non-secure. We implement this by just ORing in the NSTable/NS
6847 * bits at each step.
6848 */
6849 tableattrs = regime_is_secure(env, mmu_idx) ? 0 : (1 << 4);
3dde962f
PM
6850 for (;;) {
6851 uint64_t descriptor;
ebca90e4 6852 bool nstable;
3dde962f 6853
973a5434 6854 descaddr |= (address >> (stride * (4 - level))) & descmask;
2c8dd318 6855 descaddr &= ~7ULL;
ebca90e4 6856 nstable = extract32(tableattrs, 4, 1);
37785977
EI
6857 descriptor = arm_ldq_ptw(cs, descaddr, !nstable, mmu_idx, fsr, fi);
6858 if (fi->s1ptw) {
6859 goto do_fault;
6860 }
6861
3dde962f
PM
6862 if (!(descriptor & 1) ||
6863 (!(descriptor & 2) && (level == 3))) {
6864 /* Invalid, or the Reserved level 3 encoding */
6865 goto do_fault;
6866 }
6109769a 6867 descaddr = descriptor & descaddrmask;
3dde962f
PM
6868
6869 if ((descriptor & 2) && (level < 3)) {
6870 /* Table entry. The top five bits are attributes which may
6871 * propagate down through lower levels of the table (and
6872 * which are all arranged so that 0 means "no effect", so
6873 * we can gather them up by ORing in the bits at each level).
6874 */
6875 tableattrs |= extract64(descriptor, 59, 5);
6876 level++;
6877 continue;
6878 }
6879 /* Block entry at level 1 or 2, or page entry at level 3.
6880 * These are basically the same thing, although the number
6881 * of bits we pull in from the vaddr varies.
6882 */
973a5434 6883 page_size = (1ULL << ((stride * (4 - level)) + 3));
3dde962f 6884 descaddr |= (address & (page_size - 1));
6ab1a5ee 6885 /* Extract attributes from the descriptor */
d615efac
IC
6886 attrs = extract64(descriptor, 2, 10)
6887 | (extract64(descriptor, 52, 12) << 10);
6ab1a5ee
EI
6888
6889 if (mmu_idx == ARMMMUIdx_S2NS) {
6890 /* Stage 2 table descriptors do not include any attribute fields */
6891 break;
6892 }
6893 /* Merge in attributes from table descriptors */
3dde962f
PM
6894 attrs |= extract32(tableattrs, 0, 2) << 11; /* XN, PXN */
6895 attrs |= extract32(tableattrs, 3, 1) << 5; /* APTable[1] => AP[2] */
6896 /* The sense of AP[1] vs APTable[0] is reversed, as APTable[0] == 1
6897 * means "force PL1 access only", which means forcing AP[1] to 0.
6898 */
6899 if (extract32(tableattrs, 2, 1)) {
6900 attrs &= ~(1 << 4);
6901 }
ebca90e4 6902 attrs |= nstable << 3; /* NS */
3dde962f
PM
6903 break;
6904 }
6905 /* Here descaddr is the final physical address, and attributes
6906 * are all in attrs.
6907 */
6908 fault_type = access_fault;
6909 if ((attrs & (1 << 8)) == 0) {
6910 /* Access flag */
6911 goto do_fault;
6912 }
d8e052b3
AJ
6913
6914 ap = extract32(attrs, 4, 2);
d8e052b3 6915 xn = extract32(attrs, 12, 1);
d8e052b3 6916
6ab1a5ee
EI
6917 if (mmu_idx == ARMMMUIdx_S2NS) {
6918 ns = true;
6919 *prot = get_S2prot(env, ap, xn);
6920 } else {
6921 ns = extract32(attrs, 3, 1);
6922 pxn = extract32(attrs, 11, 1);
6923 *prot = get_S1prot(env, mmu_idx, va_size == 64, ap, ns, xn, pxn);
6924 }
d8e052b3 6925
3dde962f 6926 fault_type = permission_fault;
d8e052b3 6927 if (!(*prot & (1 << access_type))) {
3dde962f
PM
6928 goto do_fault;
6929 }
3dde962f 6930
8bf5b6a9
PM
6931 if (ns) {
6932 /* The NS bit will (as required by the architecture) have no effect if
6933 * the CPU doesn't support TZ or this is a non-secure translation
6934 * regime, because the attribute will already be non-secure.
6935 */
6936 txattrs->secure = false;
6937 }
3dde962f
PM
6938 *phys_ptr = descaddr;
6939 *page_size_ptr = page_size;
b7cc4e82 6940 return false;
3dde962f
PM
6941
6942do_fault:
6943 /* Long-descriptor format IFSR/DFSR value */
b7cc4e82 6944 *fsr = (1 << 9) | (fault_type << 2) | level;
37785977
EI
6945 /* Tag the error as S2 for failed S1 PTW at S2 or ordinary S2. */
6946 fi->stage2 = fi->s1ptw || (mmu_idx == ARMMMUIdx_S2NS);
b7cc4e82 6947 return true;
3dde962f
PM
6948}
6949
f6bda88f
PC
6950static inline void get_phys_addr_pmsav7_default(CPUARMState *env,
6951 ARMMMUIdx mmu_idx,
6952 int32_t address, int *prot)
6953{
6954 *prot = PAGE_READ | PAGE_WRITE;
6955 switch (address) {
6956 case 0xF0000000 ... 0xFFFFFFFF:
6957 if (regime_sctlr(env, mmu_idx) & SCTLR_V) { /* hivecs execing is ok */
6958 *prot |= PAGE_EXEC;
6959 }
6960 break;
6961 case 0x00000000 ... 0x7FFFFFFF:
6962 *prot |= PAGE_EXEC;
6963 break;
6964 }
6965
6966}
6967
6968static bool get_phys_addr_pmsav7(CPUARMState *env, uint32_t address,
6969 int access_type, ARMMMUIdx mmu_idx,
6970 hwaddr *phys_ptr, int *prot, uint32_t *fsr)
6971{
6972 ARMCPU *cpu = arm_env_get_cpu(env);
6973 int n;
6974 bool is_user = regime_is_user(env, mmu_idx);
6975
6976 *phys_ptr = address;
6977 *prot = 0;
6978
6979 if (regime_translation_disabled(env, mmu_idx)) { /* MPU disabled */
6980 get_phys_addr_pmsav7_default(env, mmu_idx, address, prot);
6981 } else { /* MPU enabled */
6982 for (n = (int)cpu->pmsav7_dregion - 1; n >= 0; n--) {
6983 /* region search */
6984 uint32_t base = env->pmsav7.drbar[n];
6985 uint32_t rsize = extract32(env->pmsav7.drsr[n], 1, 5);
6986 uint32_t rmask;
6987 bool srdis = false;
6988
6989 if (!(env->pmsav7.drsr[n] & 0x1)) {
6990 continue;
6991 }
6992
6993 if (!rsize) {
6994 qemu_log_mask(LOG_GUEST_ERROR, "DRSR.Rsize field can not be 0");
6995 continue;
6996 }
6997 rsize++;
6998 rmask = (1ull << rsize) - 1;
6999
7000 if (base & rmask) {
7001 qemu_log_mask(LOG_GUEST_ERROR, "DRBAR %" PRIx32 " misaligned "
7002 "to DRSR region size, mask = %" PRIx32,
7003 base, rmask);
7004 continue;
7005 }
7006
7007 if (address < base || address > base + rmask) {
7008 continue;
7009 }
7010
7011 /* Region matched */
7012
7013 if (rsize >= 8) { /* no subregions for regions < 256 bytes */
7014 int i, snd;
7015 uint32_t srdis_mask;
7016
7017 rsize -= 3; /* sub region size (power of 2) */
7018 snd = ((address - base) >> rsize) & 0x7;
7019 srdis = extract32(env->pmsav7.drsr[n], snd + 8, 1);
7020
7021 srdis_mask = srdis ? 0x3 : 0x0;
7022 for (i = 2; i <= 8 && rsize < TARGET_PAGE_BITS; i *= 2) {
7023 /* This will check in groups of 2, 4 and then 8, whether
7024 * the subregion bits are consistent. rsize is incremented
7025 * back up to give the region size, considering consistent
7026 * adjacent subregions as one region. Stop testing if rsize
7027 * is already big enough for an entire QEMU page.
7028 */
7029 int snd_rounded = snd & ~(i - 1);
7030 uint32_t srdis_multi = extract32(env->pmsav7.drsr[n],
7031 snd_rounded + 8, i);
7032 if (srdis_mask ^ srdis_multi) {
7033 break;
7034 }
7035 srdis_mask = (srdis_mask << i) | srdis_mask;
7036 rsize++;
7037 }
7038 }
7039 if (rsize < TARGET_PAGE_BITS) {
7040 qemu_log_mask(LOG_UNIMP, "No support for MPU (sub)region"
7041 "alignment of %" PRIu32 " bits. Minimum is %d\n",
7042 rsize, TARGET_PAGE_BITS);
7043 continue;
7044 }
7045 if (srdis) {
7046 continue;
7047 }
7048 break;
7049 }
7050
7051 if (n == -1) { /* no hits */
7052 if (cpu->pmsav7_dregion &&
7053 (is_user || !(regime_sctlr(env, mmu_idx) & SCTLR_BR))) {
7054 /* background fault */
7055 *fsr = 0;
7056 return true;
7057 }
7058 get_phys_addr_pmsav7_default(env, mmu_idx, address, prot);
7059 } else { /* a MPU hit! */
7060 uint32_t ap = extract32(env->pmsav7.dracr[n], 8, 3);
7061
7062 if (is_user) { /* User mode AP bit decoding */
7063 switch (ap) {
7064 case 0:
7065 case 1:
7066 case 5:
7067 break; /* no access */
7068 case 3:
7069 *prot |= PAGE_WRITE;
7070 /* fall through */
7071 case 2:
7072 case 6:
7073 *prot |= PAGE_READ | PAGE_EXEC;
7074 break;
7075 default:
7076 qemu_log_mask(LOG_GUEST_ERROR,
7077 "Bad value for AP bits in DRACR %"
7078 PRIx32 "\n", ap);
7079 }
7080 } else { /* Priv. mode AP bits decoding */
7081 switch (ap) {
7082 case 0:
7083 break; /* no access */
7084 case 1:
7085 case 2:
7086 case 3:
7087 *prot |= PAGE_WRITE;
7088 /* fall through */
7089 case 5:
7090 case 6:
7091 *prot |= PAGE_READ | PAGE_EXEC;
7092 break;
7093 default:
7094 qemu_log_mask(LOG_GUEST_ERROR,
7095 "Bad value for AP bits in DRACR %"
7096 PRIx32 "\n", ap);
7097 }
7098 }
7099
7100 /* execute never */
7101 if (env->pmsav7.dracr[n] & (1 << 12)) {
7102 *prot &= ~PAGE_EXEC;
7103 }
7104 }
7105 }
7106
7107 *fsr = 0x00d; /* Permission fault */
7108 return !(*prot & (1 << access_type));
7109}
7110
13689d43
PC
7111static bool get_phys_addr_pmsav5(CPUARMState *env, uint32_t address,
7112 int access_type, ARMMMUIdx mmu_idx,
7113 hwaddr *phys_ptr, int *prot, uint32_t *fsr)
9ee6e8bb
PB
7114{
7115 int n;
7116 uint32_t mask;
7117 uint32_t base;
0480f69a 7118 bool is_user = regime_is_user(env, mmu_idx);
9ee6e8bb
PB
7119
7120 *phys_ptr = address;
7121 for (n = 7; n >= 0; n--) {
554b0b09 7122 base = env->cp15.c6_region[n];
87c3d486 7123 if ((base & 1) == 0) {
554b0b09 7124 continue;
87c3d486 7125 }
554b0b09
PM
7126 mask = 1 << ((base >> 1) & 0x1f);
7127 /* Keep this shift separate from the above to avoid an
7128 (undefined) << 32. */
7129 mask = (mask << 1) - 1;
87c3d486 7130 if (((base ^ address) & ~mask) == 0) {
554b0b09 7131 break;
87c3d486 7132 }
9ee6e8bb 7133 }
87c3d486 7134 if (n < 0) {
b7cc4e82
PC
7135 *fsr = 2;
7136 return true;
87c3d486 7137 }
9ee6e8bb
PB
7138
7139 if (access_type == 2) {
7e09797c 7140 mask = env->cp15.pmsav5_insn_ap;
9ee6e8bb 7141 } else {
7e09797c 7142 mask = env->cp15.pmsav5_data_ap;
9ee6e8bb
PB
7143 }
7144 mask = (mask >> (n * 4)) & 0xf;
7145 switch (mask) {
7146 case 0:
b7cc4e82
PC
7147 *fsr = 1;
7148 return true;
9ee6e8bb 7149 case 1:
87c3d486 7150 if (is_user) {
b7cc4e82
PC
7151 *fsr = 1;
7152 return true;
87c3d486 7153 }
554b0b09
PM
7154 *prot = PAGE_READ | PAGE_WRITE;
7155 break;
9ee6e8bb 7156 case 2:
554b0b09 7157 *prot = PAGE_READ;
87c3d486 7158 if (!is_user) {
554b0b09 7159 *prot |= PAGE_WRITE;
87c3d486 7160 }
554b0b09 7161 break;
9ee6e8bb 7162 case 3:
554b0b09
PM
7163 *prot = PAGE_READ | PAGE_WRITE;
7164 break;
9ee6e8bb 7165 case 5:
87c3d486 7166 if (is_user) {
b7cc4e82
PC
7167 *fsr = 1;
7168 return true;
87c3d486 7169 }
554b0b09
PM
7170 *prot = PAGE_READ;
7171 break;
9ee6e8bb 7172 case 6:
554b0b09
PM
7173 *prot = PAGE_READ;
7174 break;
9ee6e8bb 7175 default:
554b0b09 7176 /* Bad permission. */
b7cc4e82
PC
7177 *fsr = 1;
7178 return true;
9ee6e8bb 7179 }
3ad493fc 7180 *prot |= PAGE_EXEC;
b7cc4e82 7181 return false;
9ee6e8bb
PB
7182}
7183
702a9357
PM
7184/* get_phys_addr - get the physical address for this virtual address
7185 *
7186 * Find the physical address corresponding to the given virtual address,
7187 * by doing a translation table walk on MMU based systems or using the
7188 * MPU state on MPU based systems.
7189 *
b7cc4e82
PC
7190 * Returns false if the translation was successful. Otherwise, phys_ptr, attrs,
7191 * prot and page_size may not be filled in, and the populated fsr value provides
702a9357
PM
7192 * information on why the translation aborted, in the format of a
7193 * DFSR/IFSR fault register, with the following caveats:
7194 * * we honour the short vs long DFSR format differences.
7195 * * the WnR bit is never set (the caller must do this).
f6bda88f 7196 * * for PSMAv5 based systems we don't bother to return a full FSR format
702a9357
PM
7197 * value.
7198 *
7199 * @env: CPUARMState
7200 * @address: virtual address to get physical address for
7201 * @access_type: 0 for read, 1 for write, 2 for execute
d3649702 7202 * @mmu_idx: MMU index indicating required translation regime
702a9357 7203 * @phys_ptr: set to the physical address corresponding to the virtual address
8bf5b6a9 7204 * @attrs: set to the memory transaction attributes to use
702a9357
PM
7205 * @prot: set to the permissions for the page containing phys_ptr
7206 * @page_size: set to the size of the page containing phys_ptr
b7cc4e82 7207 * @fsr: set to the DFSR/IFSR value on failure
702a9357 7208 */
af51f566
EI
7209static bool get_phys_addr(CPUARMState *env, target_ulong address,
7210 int access_type, ARMMMUIdx mmu_idx,
7211 hwaddr *phys_ptr, MemTxAttrs *attrs, int *prot,
e14b5a23
EI
7212 target_ulong *page_size, uint32_t *fsr,
7213 ARMMMUFaultInfo *fi)
9ee6e8bb 7214{
0480f69a 7215 if (mmu_idx == ARMMMUIdx_S12NSE0 || mmu_idx == ARMMMUIdx_S12NSE1) {
9b539263
EI
7216 /* Call ourselves recursively to do the stage 1 and then stage 2
7217 * translations.
0480f69a 7218 */
9b539263
EI
7219 if (arm_feature(env, ARM_FEATURE_EL2)) {
7220 hwaddr ipa;
7221 int s2_prot;
7222 int ret;
7223
7224 ret = get_phys_addr(env, address, access_type,
7225 mmu_idx + ARMMMUIdx_S1NSE0, &ipa, attrs,
7226 prot, page_size, fsr, fi);
7227
7228 /* If S1 fails or S2 is disabled, return early. */
7229 if (ret || regime_translation_disabled(env, ARMMMUIdx_S2NS)) {
7230 *phys_ptr = ipa;
7231 return ret;
7232 }
7233
7234 /* S1 is done. Now do S2 translation. */
7235 ret = get_phys_addr_lpae(env, ipa, access_type, ARMMMUIdx_S2NS,
7236 phys_ptr, attrs, &s2_prot,
7237 page_size, fsr, fi);
7238 fi->s2addr = ipa;
7239 /* Combine the S1 and S2 perms. */
7240 *prot &= s2_prot;
7241 return ret;
7242 } else {
7243 /*
7244 * For non-EL2 CPUs a stage1+stage2 translation is just stage 1.
7245 */
7246 mmu_idx += ARMMMUIdx_S1NSE0;
7247 }
0480f69a 7248 }
d3649702 7249
8bf5b6a9
PM
7250 /* The page table entries may downgrade secure to non-secure, but
7251 * cannot upgrade an non-secure translation regime's attributes
7252 * to secure.
7253 */
7254 attrs->secure = regime_is_secure(env, mmu_idx);
0995bf8c 7255 attrs->user = regime_is_user(env, mmu_idx);
8bf5b6a9 7256
0480f69a
PM
7257 /* Fast Context Switch Extension. This doesn't exist at all in v8.
7258 * In v7 and earlier it affects all stage 1 translations.
7259 */
7260 if (address < 0x02000000 && mmu_idx != ARMMMUIdx_S2NS
7261 && !arm_feature(env, ARM_FEATURE_V8)) {
7262 if (regime_el(env, mmu_idx) == 3) {
7263 address += env->cp15.fcseidr_s;
7264 } else {
7265 address += env->cp15.fcseidr_ns;
7266 }
54bf36ed 7267 }
9ee6e8bb 7268
f6bda88f
PC
7269 /* pmsav7 has special handling for when MPU is disabled so call it before
7270 * the common MMU/MPU disabled check below.
7271 */
7272 if (arm_feature(env, ARM_FEATURE_MPU) &&
7273 arm_feature(env, ARM_FEATURE_V7)) {
7274 *page_size = TARGET_PAGE_SIZE;
7275 return get_phys_addr_pmsav7(env, address, access_type, mmu_idx,
7276 phys_ptr, prot, fsr);
7277 }
7278
0480f69a 7279 if (regime_translation_disabled(env, mmu_idx)) {
9ee6e8bb
PB
7280 /* MMU/MPU disabled. */
7281 *phys_ptr = address;
3ad493fc 7282 *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
d4c430a8 7283 *page_size = TARGET_PAGE_SIZE;
9ee6e8bb 7284 return 0;
0480f69a
PM
7285 }
7286
7287 if (arm_feature(env, ARM_FEATURE_MPU)) {
f6bda88f 7288 /* Pre-v7 MPU */
d4c430a8 7289 *page_size = TARGET_PAGE_SIZE;
13689d43
PC
7290 return get_phys_addr_pmsav5(env, address, access_type, mmu_idx,
7291 phys_ptr, prot, fsr);
0480f69a
PM
7292 }
7293
7294 if (regime_using_lpae_format(env, mmu_idx)) {
7295 return get_phys_addr_lpae(env, address, access_type, mmu_idx, phys_ptr,
e14b5a23 7296 attrs, prot, page_size, fsr, fi);
0480f69a
PM
7297 } else if (regime_sctlr(env, mmu_idx) & SCTLR_XP) {
7298 return get_phys_addr_v6(env, address, access_type, mmu_idx, phys_ptr,
e14b5a23 7299 attrs, prot, page_size, fsr, fi);
9ee6e8bb 7300 } else {
0480f69a 7301 return get_phys_addr_v5(env, address, access_type, mmu_idx, phys_ptr,
e14b5a23 7302 prot, page_size, fsr, fi);
9ee6e8bb
PB
7303 }
7304}
7305
8c6084bf 7306/* Walk the page table and (if the mapping exists) add the page
b7cc4e82
PC
7307 * to the TLB. Return false on success, or true on failure. Populate
7308 * fsr with ARM DFSR/IFSR fault register format value on failure.
8c6084bf 7309 */
b7cc4e82 7310bool arm_tlb_fill(CPUState *cs, vaddr address,
e14b5a23
EI
7311 int access_type, int mmu_idx, uint32_t *fsr,
7312 ARMMMUFaultInfo *fi)
b5ff1b31 7313{
7510454e
AF
7314 ARMCPU *cpu = ARM_CPU(cs);
7315 CPUARMState *env = &cpu->env;
a8170e5e 7316 hwaddr phys_addr;
d4c430a8 7317 target_ulong page_size;
b5ff1b31 7318 int prot;
d3649702 7319 int ret;
8bf5b6a9 7320 MemTxAttrs attrs = {};
b5ff1b31 7321
8bf5b6a9 7322 ret = get_phys_addr(env, address, access_type, mmu_idx, &phys_addr,
e14b5a23 7323 &attrs, &prot, &page_size, fsr, fi);
b7cc4e82 7324 if (!ret) {
b5ff1b31 7325 /* Map a single [sub]page. */
dcd82c11
AB
7326 phys_addr &= TARGET_PAGE_MASK;
7327 address &= TARGET_PAGE_MASK;
8bf5b6a9
PM
7328 tlb_set_page_with_attrs(cs, address, phys_addr, attrs,
7329 prot, mmu_idx, page_size);
d4c430a8 7330 return 0;
b5ff1b31
FB
7331 }
7332
8c6084bf 7333 return ret;
b5ff1b31
FB
7334}
7335
00b941e5 7336hwaddr arm_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
b5ff1b31 7337{
00b941e5 7338 ARMCPU *cpu = ARM_CPU(cs);
d3649702 7339 CPUARMState *env = &cpu->env;
a8170e5e 7340 hwaddr phys_addr;
d4c430a8 7341 target_ulong page_size;
b5ff1b31 7342 int prot;
b7cc4e82
PC
7343 bool ret;
7344 uint32_t fsr;
8bf5b6a9 7345 MemTxAttrs attrs = {};
e14b5a23 7346 ARMMMUFaultInfo fi = {};
b5ff1b31 7347
97ed5ccd 7348 ret = get_phys_addr(env, addr, 0, cpu_mmu_index(env, false), &phys_addr,
e14b5a23 7349 &attrs, &prot, &page_size, &fsr, &fi);
b5ff1b31 7350
b7cc4e82 7351 if (ret) {
b5ff1b31 7352 return -1;
00b941e5 7353 }
b5ff1b31
FB
7354
7355 return phys_addr;
7356}
7357
0ecb72a5 7358void HELPER(set_r13_banked)(CPUARMState *env, uint32_t mode, uint32_t val)
9ee6e8bb 7359{
39ea3d4e
PM
7360 if ((env->uncached_cpsr & CPSR_M) == mode) {
7361 env->regs[13] = val;
7362 } else {
f5206413 7363 env->banked_r13[bank_number(mode)] = val;
39ea3d4e 7364 }
9ee6e8bb
PB
7365}
7366
0ecb72a5 7367uint32_t HELPER(get_r13_banked)(CPUARMState *env, uint32_t mode)
9ee6e8bb 7368{
39ea3d4e
PM
7369 if ((env->uncached_cpsr & CPSR_M) == mode) {
7370 return env->regs[13];
7371 } else {
f5206413 7372 return env->banked_r13[bank_number(mode)];
39ea3d4e 7373 }
9ee6e8bb
PB
7374}
7375
0ecb72a5 7376uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
9ee6e8bb 7377{
a47dddd7
AF
7378 ARMCPU *cpu = arm_env_get_cpu(env);
7379
9ee6e8bb
PB
7380 switch (reg) {
7381 case 0: /* APSR */
7382 return xpsr_read(env) & 0xf8000000;
7383 case 1: /* IAPSR */
7384 return xpsr_read(env) & 0xf80001ff;
7385 case 2: /* EAPSR */
7386 return xpsr_read(env) & 0xff00fc00;
7387 case 3: /* xPSR */
7388 return xpsr_read(env) & 0xff00fdff;
7389 case 5: /* IPSR */
7390 return xpsr_read(env) & 0x000001ff;
7391 case 6: /* EPSR */
7392 return xpsr_read(env) & 0x0700fc00;
7393 case 7: /* IEPSR */
7394 return xpsr_read(env) & 0x0700edff;
7395 case 8: /* MSP */
7396 return env->v7m.current_sp ? env->v7m.other_sp : env->regs[13];
7397 case 9: /* PSP */
7398 return env->v7m.current_sp ? env->regs[13] : env->v7m.other_sp;
7399 case 16: /* PRIMASK */
4cc35614 7400 return (env->daif & PSTATE_I) != 0;
82845826
SH
7401 case 17: /* BASEPRI */
7402 case 18: /* BASEPRI_MAX */
9ee6e8bb 7403 return env->v7m.basepri;
82845826 7404 case 19: /* FAULTMASK */
4cc35614 7405 return (env->daif & PSTATE_F) != 0;
9ee6e8bb
PB
7406 case 20: /* CONTROL */
7407 return env->v7m.control;
7408 default:
7409 /* ??? For debugging only. */
a47dddd7 7410 cpu_abort(CPU(cpu), "Unimplemented system register read (%d)\n", reg);
9ee6e8bb
PB
7411 return 0;
7412 }
7413}
7414
0ecb72a5 7415void HELPER(v7m_msr)(CPUARMState *env, uint32_t reg, uint32_t val)
9ee6e8bb 7416{
a47dddd7
AF
7417 ARMCPU *cpu = arm_env_get_cpu(env);
7418
9ee6e8bb
PB
7419 switch (reg) {
7420 case 0: /* APSR */
7421 xpsr_write(env, val, 0xf8000000);
7422 break;
7423 case 1: /* IAPSR */
7424 xpsr_write(env, val, 0xf8000000);
7425 break;
7426 case 2: /* EAPSR */
7427 xpsr_write(env, val, 0xfe00fc00);
7428 break;
7429 case 3: /* xPSR */
7430 xpsr_write(env, val, 0xfe00fc00);
7431 break;
7432 case 5: /* IPSR */
7433 /* IPSR bits are readonly. */
7434 break;
7435 case 6: /* EPSR */
7436 xpsr_write(env, val, 0x0600fc00);
7437 break;
7438 case 7: /* IEPSR */
7439 xpsr_write(env, val, 0x0600fc00);
7440 break;
7441 case 8: /* MSP */
7442 if (env->v7m.current_sp)
7443 env->v7m.other_sp = val;
7444 else
7445 env->regs[13] = val;
7446 break;
7447 case 9: /* PSP */
7448 if (env->v7m.current_sp)
7449 env->regs[13] = val;
7450 else
7451 env->v7m.other_sp = val;
7452 break;
7453 case 16: /* PRIMASK */
4cc35614
PM
7454 if (val & 1) {
7455 env->daif |= PSTATE_I;
7456 } else {
7457 env->daif &= ~PSTATE_I;
7458 }
9ee6e8bb 7459 break;
82845826 7460 case 17: /* BASEPRI */
9ee6e8bb
PB
7461 env->v7m.basepri = val & 0xff;
7462 break;
82845826 7463 case 18: /* BASEPRI_MAX */
9ee6e8bb
PB
7464 val &= 0xff;
7465 if (val != 0 && (val < env->v7m.basepri || env->v7m.basepri == 0))
7466 env->v7m.basepri = val;
7467 break;
82845826 7468 case 19: /* FAULTMASK */
4cc35614
PM
7469 if (val & 1) {
7470 env->daif |= PSTATE_F;
7471 } else {
7472 env->daif &= ~PSTATE_F;
7473 }
82845826 7474 break;
9ee6e8bb
PB
7475 case 20: /* CONTROL */
7476 env->v7m.control = val & 3;
7477 switch_v7m_sp(env, (val & 2) != 0);
7478 break;
7479 default:
7480 /* ??? For debugging only. */
a47dddd7 7481 cpu_abort(CPU(cpu), "Unimplemented system register write (%d)\n", reg);
9ee6e8bb
PB
7482 return;
7483 }
7484}
7485
b5ff1b31 7486#endif
6ddbc6e4 7487
aca3f40b
PM
7488void HELPER(dc_zva)(CPUARMState *env, uint64_t vaddr_in)
7489{
7490 /* Implement DC ZVA, which zeroes a fixed-length block of memory.
7491 * Note that we do not implement the (architecturally mandated)
7492 * alignment fault for attempts to use this on Device memory
7493 * (which matches the usual QEMU behaviour of not implementing either
7494 * alignment faults or any memory attribute handling).
7495 */
7496
7497 ARMCPU *cpu = arm_env_get_cpu(env);
7498 uint64_t blocklen = 4 << cpu->dcz_blocksize;
7499 uint64_t vaddr = vaddr_in & ~(blocklen - 1);
7500
7501#ifndef CONFIG_USER_ONLY
7502 {
7503 /* Slightly awkwardly, QEMU's TARGET_PAGE_SIZE may be less than
7504 * the block size so we might have to do more than one TLB lookup.
7505 * We know that in fact for any v8 CPU the page size is at least 4K
7506 * and the block size must be 2K or less, but TARGET_PAGE_SIZE is only
7507 * 1K as an artefact of legacy v5 subpage support being present in the
7508 * same QEMU executable.
7509 */
7510 int maxidx = DIV_ROUND_UP(blocklen, TARGET_PAGE_SIZE);
7511 void *hostaddr[maxidx];
7512 int try, i;
97ed5ccd 7513 unsigned mmu_idx = cpu_mmu_index(env, false);
3972ef6f 7514 TCGMemOpIdx oi = make_memop_idx(MO_UB, mmu_idx);
aca3f40b
PM
7515
7516 for (try = 0; try < 2; try++) {
7517
7518 for (i = 0; i < maxidx; i++) {
7519 hostaddr[i] = tlb_vaddr_to_host(env,
7520 vaddr + TARGET_PAGE_SIZE * i,
3972ef6f 7521 1, mmu_idx);
aca3f40b
PM
7522 if (!hostaddr[i]) {
7523 break;
7524 }
7525 }
7526 if (i == maxidx) {
7527 /* If it's all in the TLB it's fair game for just writing to;
7528 * we know we don't need to update dirty status, etc.
7529 */
7530 for (i = 0; i < maxidx - 1; i++) {
7531 memset(hostaddr[i], 0, TARGET_PAGE_SIZE);
7532 }
7533 memset(hostaddr[i], 0, blocklen - (i * TARGET_PAGE_SIZE));
7534 return;
7535 }
7536 /* OK, try a store and see if we can populate the tlb. This
7537 * might cause an exception if the memory isn't writable,
7538 * in which case we will longjmp out of here. We must for
7539 * this purpose use the actual register value passed to us
7540 * so that we get the fault address right.
7541 */
3972ef6f 7542 helper_ret_stb_mmu(env, vaddr_in, 0, oi, GETRA());
aca3f40b
PM
7543 /* Now we can populate the other TLB entries, if any */
7544 for (i = 0; i < maxidx; i++) {
7545 uint64_t va = vaddr + TARGET_PAGE_SIZE * i;
7546 if (va != (vaddr_in & TARGET_PAGE_MASK)) {
3972ef6f 7547 helper_ret_stb_mmu(env, va, 0, oi, GETRA());
aca3f40b
PM
7548 }
7549 }
7550 }
7551
7552 /* Slow path (probably attempt to do this to an I/O device or
7553 * similar, or clearing of a block of code we have translations
7554 * cached for). Just do a series of byte writes as the architecture
7555 * demands. It's not worth trying to use a cpu_physical_memory_map(),
7556 * memset(), unmap() sequence here because:
7557 * + we'd need to account for the blocksize being larger than a page
7558 * + the direct-RAM access case is almost always going to be dealt
7559 * with in the fastpath code above, so there's no speed benefit
7560 * + we would have to deal with the map returning NULL because the
7561 * bounce buffer was in use
7562 */
7563 for (i = 0; i < blocklen; i++) {
3972ef6f 7564 helper_ret_stb_mmu(env, vaddr + i, 0, oi, GETRA());
aca3f40b
PM
7565 }
7566 }
7567#else
7568 memset(g2h(vaddr), 0, blocklen);
7569#endif
7570}
7571
6ddbc6e4
PB
7572/* Note that signed overflow is undefined in C. The following routines are
7573 careful to use unsigned types where modulo arithmetic is required.
7574 Failure to do so _will_ break on newer gcc. */
7575
7576/* Signed saturating arithmetic. */
7577
1654b2d6 7578/* Perform 16-bit signed saturating addition. */
6ddbc6e4
PB
7579static inline uint16_t add16_sat(uint16_t a, uint16_t b)
7580{
7581 uint16_t res;
7582
7583 res = a + b;
7584 if (((res ^ a) & 0x8000) && !((a ^ b) & 0x8000)) {
7585 if (a & 0x8000)
7586 res = 0x8000;
7587 else
7588 res = 0x7fff;
7589 }
7590 return res;
7591}
7592
1654b2d6 7593/* Perform 8-bit signed saturating addition. */
6ddbc6e4
PB
7594static inline uint8_t add8_sat(uint8_t a, uint8_t b)
7595{
7596 uint8_t res;
7597
7598 res = a + b;
7599 if (((res ^ a) & 0x80) && !((a ^ b) & 0x80)) {
7600 if (a & 0x80)
7601 res = 0x80;
7602 else
7603 res = 0x7f;
7604 }
7605 return res;
7606}
7607
1654b2d6 7608/* Perform 16-bit signed saturating subtraction. */
6ddbc6e4
PB
7609static inline uint16_t sub16_sat(uint16_t a, uint16_t b)
7610{
7611 uint16_t res;
7612
7613 res = a - b;
7614 if (((res ^ a) & 0x8000) && ((a ^ b) & 0x8000)) {
7615 if (a & 0x8000)
7616 res = 0x8000;
7617 else
7618 res = 0x7fff;
7619 }
7620 return res;
7621}
7622
1654b2d6 7623/* Perform 8-bit signed saturating subtraction. */
6ddbc6e4
PB
7624static inline uint8_t sub8_sat(uint8_t a, uint8_t b)
7625{
7626 uint8_t res;
7627
7628 res = a - b;
7629 if (((res ^ a) & 0x80) && ((a ^ b) & 0x80)) {
7630 if (a & 0x80)
7631 res = 0x80;
7632 else
7633 res = 0x7f;
7634 }
7635 return res;
7636}
7637
7638#define ADD16(a, b, n) RESULT(add16_sat(a, b), n, 16);
7639#define SUB16(a, b, n) RESULT(sub16_sat(a, b), n, 16);
7640#define ADD8(a, b, n) RESULT(add8_sat(a, b), n, 8);
7641#define SUB8(a, b, n) RESULT(sub8_sat(a, b), n, 8);
7642#define PFX q
7643
7644#include "op_addsub.h"
7645
7646/* Unsigned saturating arithmetic. */
460a09c1 7647static inline uint16_t add16_usat(uint16_t a, uint16_t b)
6ddbc6e4
PB
7648{
7649 uint16_t res;
7650 res = a + b;
7651 if (res < a)
7652 res = 0xffff;
7653 return res;
7654}
7655
460a09c1 7656static inline uint16_t sub16_usat(uint16_t a, uint16_t b)
6ddbc6e4 7657{
4c4fd3f8 7658 if (a > b)
6ddbc6e4
PB
7659 return a - b;
7660 else
7661 return 0;
7662}
7663
7664static inline uint8_t add8_usat(uint8_t a, uint8_t b)
7665{
7666 uint8_t res;
7667 res = a + b;
7668 if (res < a)
7669 res = 0xff;
7670 return res;
7671}
7672
7673static inline uint8_t sub8_usat(uint8_t a, uint8_t b)
7674{
4c4fd3f8 7675 if (a > b)
6ddbc6e4
PB
7676 return a - b;
7677 else
7678 return 0;
7679}
7680
7681#define ADD16(a, b, n) RESULT(add16_usat(a, b), n, 16);
7682#define SUB16(a, b, n) RESULT(sub16_usat(a, b), n, 16);
7683#define ADD8(a, b, n) RESULT(add8_usat(a, b), n, 8);
7684#define SUB8(a, b, n) RESULT(sub8_usat(a, b), n, 8);
7685#define PFX uq
7686
7687#include "op_addsub.h"
7688
7689/* Signed modulo arithmetic. */
7690#define SARITH16(a, b, n, op) do { \
7691 int32_t sum; \
db6e2e65 7692 sum = (int32_t)(int16_t)(a) op (int32_t)(int16_t)(b); \
6ddbc6e4
PB
7693 RESULT(sum, n, 16); \
7694 if (sum >= 0) \
7695 ge |= 3 << (n * 2); \
7696 } while(0)
7697
7698#define SARITH8(a, b, n, op) do { \
7699 int32_t sum; \
db6e2e65 7700 sum = (int32_t)(int8_t)(a) op (int32_t)(int8_t)(b); \
6ddbc6e4
PB
7701 RESULT(sum, n, 8); \
7702 if (sum >= 0) \
7703 ge |= 1 << n; \
7704 } while(0)
7705
7706
7707#define ADD16(a, b, n) SARITH16(a, b, n, +)
7708#define SUB16(a, b, n) SARITH16(a, b, n, -)
7709#define ADD8(a, b, n) SARITH8(a, b, n, +)
7710#define SUB8(a, b, n) SARITH8(a, b, n, -)
7711#define PFX s
7712#define ARITH_GE
7713
7714#include "op_addsub.h"
7715
7716/* Unsigned modulo arithmetic. */
7717#define ADD16(a, b, n) do { \
7718 uint32_t sum; \
7719 sum = (uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b); \
7720 RESULT(sum, n, 16); \
a87aa10b 7721 if ((sum >> 16) == 1) \
6ddbc6e4
PB
7722 ge |= 3 << (n * 2); \
7723 } while(0)
7724
7725#define ADD8(a, b, n) do { \
7726 uint32_t sum; \
7727 sum = (uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b); \
7728 RESULT(sum, n, 8); \
a87aa10b
AZ
7729 if ((sum >> 8) == 1) \
7730 ge |= 1 << n; \
6ddbc6e4
PB
7731 } while(0)
7732
7733#define SUB16(a, b, n) do { \
7734 uint32_t sum; \
7735 sum = (uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b); \
7736 RESULT(sum, n, 16); \
7737 if ((sum >> 16) == 0) \
7738 ge |= 3 << (n * 2); \
7739 } while(0)
7740
7741#define SUB8(a, b, n) do { \
7742 uint32_t sum; \
7743 sum = (uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b); \
7744 RESULT(sum, n, 8); \
7745 if ((sum >> 8) == 0) \
a87aa10b 7746 ge |= 1 << n; \
6ddbc6e4
PB
7747 } while(0)
7748
7749#define PFX u
7750#define ARITH_GE
7751
7752#include "op_addsub.h"
7753
7754/* Halved signed arithmetic. */
7755#define ADD16(a, b, n) \
7756 RESULT(((int32_t)(int16_t)(a) + (int32_t)(int16_t)(b)) >> 1, n, 16)
7757#define SUB16(a, b, n) \
7758 RESULT(((int32_t)(int16_t)(a) - (int32_t)(int16_t)(b)) >> 1, n, 16)
7759#define ADD8(a, b, n) \
7760 RESULT(((int32_t)(int8_t)(a) + (int32_t)(int8_t)(b)) >> 1, n, 8)
7761#define SUB8(a, b, n) \
7762 RESULT(((int32_t)(int8_t)(a) - (int32_t)(int8_t)(b)) >> 1, n, 8)
7763#define PFX sh
7764
7765#include "op_addsub.h"
7766
7767/* Halved unsigned arithmetic. */
7768#define ADD16(a, b, n) \
7769 RESULT(((uint32_t)(uint16_t)(a) + (uint32_t)(uint16_t)(b)) >> 1, n, 16)
7770#define SUB16(a, b, n) \
7771 RESULT(((uint32_t)(uint16_t)(a) - (uint32_t)(uint16_t)(b)) >> 1, n, 16)
7772#define ADD8(a, b, n) \
7773 RESULT(((uint32_t)(uint8_t)(a) + (uint32_t)(uint8_t)(b)) >> 1, n, 8)
7774#define SUB8(a, b, n) \
7775 RESULT(((uint32_t)(uint8_t)(a) - (uint32_t)(uint8_t)(b)) >> 1, n, 8)
7776#define PFX uh
7777
7778#include "op_addsub.h"
7779
7780static inline uint8_t do_usad(uint8_t a, uint8_t b)
7781{
7782 if (a > b)
7783 return a - b;
7784 else
7785 return b - a;
7786}
7787
7788/* Unsigned sum of absolute byte differences. */
7789uint32_t HELPER(usad8)(uint32_t a, uint32_t b)
7790{
7791 uint32_t sum;
7792 sum = do_usad(a, b);
7793 sum += do_usad(a >> 8, b >> 8);
7794 sum += do_usad(a >> 16, b >>16);
7795 sum += do_usad(a >> 24, b >> 24);
7796 return sum;
7797}
7798
7799/* For ARMv6 SEL instruction. */
7800uint32_t HELPER(sel_flags)(uint32_t flags, uint32_t a, uint32_t b)
7801{
7802 uint32_t mask;
7803
7804 mask = 0;
7805 if (flags & 1)
7806 mask |= 0xff;
7807 if (flags & 2)
7808 mask |= 0xff00;
7809 if (flags & 4)
7810 mask |= 0xff0000;
7811 if (flags & 8)
7812 mask |= 0xff000000;
7813 return (a & mask) | (b & ~mask);
7814}
7815
b90372ad
PM
7816/* VFP support. We follow the convention used for VFP instructions:
7817 Single precision routines have a "s" suffix, double precision a
4373f3ce
PB
7818 "d" suffix. */
7819
7820/* Convert host exception flags to vfp form. */
7821static inline int vfp_exceptbits_from_host(int host_bits)
7822{
7823 int target_bits = 0;
7824
7825 if (host_bits & float_flag_invalid)
7826 target_bits |= 1;
7827 if (host_bits & float_flag_divbyzero)
7828 target_bits |= 2;
7829 if (host_bits & float_flag_overflow)
7830 target_bits |= 4;
36802b6b 7831 if (host_bits & (float_flag_underflow | float_flag_output_denormal))
4373f3ce
PB
7832 target_bits |= 8;
7833 if (host_bits & float_flag_inexact)
7834 target_bits |= 0x10;
cecd8504
PM
7835 if (host_bits & float_flag_input_denormal)
7836 target_bits |= 0x80;
4373f3ce
PB
7837 return target_bits;
7838}
7839
0ecb72a5 7840uint32_t HELPER(vfp_get_fpscr)(CPUARMState *env)
4373f3ce
PB
7841{
7842 int i;
7843 uint32_t fpscr;
7844
7845 fpscr = (env->vfp.xregs[ARM_VFP_FPSCR] & 0xffc8ffff)
7846 | (env->vfp.vec_len << 16)
7847 | (env->vfp.vec_stride << 20);
7848 i = get_float_exception_flags(&env->vfp.fp_status);
3a492f3a 7849 i |= get_float_exception_flags(&env->vfp.standard_fp_status);
4373f3ce
PB
7850 fpscr |= vfp_exceptbits_from_host(i);
7851 return fpscr;
7852}
7853
0ecb72a5 7854uint32_t vfp_get_fpscr(CPUARMState *env)
01653295
PM
7855{
7856 return HELPER(vfp_get_fpscr)(env);
7857}
7858
4373f3ce
PB
7859/* Convert vfp exception flags to target form. */
7860static inline int vfp_exceptbits_to_host(int target_bits)
7861{
7862 int host_bits = 0;
7863
7864 if (target_bits & 1)
7865 host_bits |= float_flag_invalid;
7866 if (target_bits & 2)
7867 host_bits |= float_flag_divbyzero;
7868 if (target_bits & 4)
7869 host_bits |= float_flag_overflow;
7870 if (target_bits & 8)
7871 host_bits |= float_flag_underflow;
7872 if (target_bits & 0x10)
7873 host_bits |= float_flag_inexact;
cecd8504
PM
7874 if (target_bits & 0x80)
7875 host_bits |= float_flag_input_denormal;
4373f3ce
PB
7876 return host_bits;
7877}
7878
0ecb72a5 7879void HELPER(vfp_set_fpscr)(CPUARMState *env, uint32_t val)
4373f3ce
PB
7880{
7881 int i;
7882 uint32_t changed;
7883
7884 changed = env->vfp.xregs[ARM_VFP_FPSCR];
7885 env->vfp.xregs[ARM_VFP_FPSCR] = (val & 0xffc8ffff);
7886 env->vfp.vec_len = (val >> 16) & 7;
7887 env->vfp.vec_stride = (val >> 20) & 3;
7888
7889 changed ^= val;
7890 if (changed & (3 << 22)) {
7891 i = (val >> 22) & 3;
7892 switch (i) {
4d3da0f3 7893 case FPROUNDING_TIEEVEN:
4373f3ce
PB
7894 i = float_round_nearest_even;
7895 break;
4d3da0f3 7896 case FPROUNDING_POSINF:
4373f3ce
PB
7897 i = float_round_up;
7898 break;
4d3da0f3 7899 case FPROUNDING_NEGINF:
4373f3ce
PB
7900 i = float_round_down;
7901 break;
4d3da0f3 7902 case FPROUNDING_ZERO:
4373f3ce
PB
7903 i = float_round_to_zero;
7904 break;
7905 }
7906 set_float_rounding_mode(i, &env->vfp.fp_status);
7907 }
cecd8504 7908 if (changed & (1 << 24)) {
fe76d976 7909 set_flush_to_zero((val & (1 << 24)) != 0, &env->vfp.fp_status);
cecd8504
PM
7910 set_flush_inputs_to_zero((val & (1 << 24)) != 0, &env->vfp.fp_status);
7911 }
5c7908ed
PB
7912 if (changed & (1 << 25))
7913 set_default_nan_mode((val & (1 << 25)) != 0, &env->vfp.fp_status);
4373f3ce 7914
b12c390b 7915 i = vfp_exceptbits_to_host(val);
4373f3ce 7916 set_float_exception_flags(i, &env->vfp.fp_status);
3a492f3a 7917 set_float_exception_flags(0, &env->vfp.standard_fp_status);
4373f3ce
PB
7918}
7919
0ecb72a5 7920void vfp_set_fpscr(CPUARMState *env, uint32_t val)
01653295
PM
7921{
7922 HELPER(vfp_set_fpscr)(env, val);
7923}
7924
4373f3ce
PB
7925#define VFP_HELPER(name, p) HELPER(glue(glue(vfp_,name),p))
7926
7927#define VFP_BINOP(name) \
ae1857ec 7928float32 VFP_HELPER(name, s)(float32 a, float32 b, void *fpstp) \
4373f3ce 7929{ \
ae1857ec
PM
7930 float_status *fpst = fpstp; \
7931 return float32_ ## name(a, b, fpst); \
4373f3ce 7932} \
ae1857ec 7933float64 VFP_HELPER(name, d)(float64 a, float64 b, void *fpstp) \
4373f3ce 7934{ \
ae1857ec
PM
7935 float_status *fpst = fpstp; \
7936 return float64_ ## name(a, b, fpst); \
4373f3ce
PB
7937}
7938VFP_BINOP(add)
7939VFP_BINOP(sub)
7940VFP_BINOP(mul)
7941VFP_BINOP(div)
f71a2ae5
PM
7942VFP_BINOP(min)
7943VFP_BINOP(max)
7944VFP_BINOP(minnum)
7945VFP_BINOP(maxnum)
4373f3ce
PB
7946#undef VFP_BINOP
7947
7948float32 VFP_HELPER(neg, s)(float32 a)
7949{
7950 return float32_chs(a);
7951}
7952
7953float64 VFP_HELPER(neg, d)(float64 a)
7954{
66230e0d 7955 return float64_chs(a);
4373f3ce
PB
7956}
7957
7958float32 VFP_HELPER(abs, s)(float32 a)
7959{
7960 return float32_abs(a);
7961}
7962
7963float64 VFP_HELPER(abs, d)(float64 a)
7964{
66230e0d 7965 return float64_abs(a);
4373f3ce
PB
7966}
7967
0ecb72a5 7968float32 VFP_HELPER(sqrt, s)(float32 a, CPUARMState *env)
4373f3ce
PB
7969{
7970 return float32_sqrt(a, &env->vfp.fp_status);
7971}
7972
0ecb72a5 7973float64 VFP_HELPER(sqrt, d)(float64 a, CPUARMState *env)
4373f3ce
PB
7974{
7975 return float64_sqrt(a, &env->vfp.fp_status);
7976}
7977
7978/* XXX: check quiet/signaling case */
7979#define DO_VFP_cmp(p, type) \
0ecb72a5 7980void VFP_HELPER(cmp, p)(type a, type b, CPUARMState *env) \
4373f3ce
PB
7981{ \
7982 uint32_t flags; \
7983 switch(type ## _compare_quiet(a, b, &env->vfp.fp_status)) { \
7984 case 0: flags = 0x6; break; \
7985 case -1: flags = 0x8; break; \
7986 case 1: flags = 0x2; break; \
7987 default: case 2: flags = 0x3; break; \
7988 } \
7989 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
7990 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
7991} \
0ecb72a5 7992void VFP_HELPER(cmpe, p)(type a, type b, CPUARMState *env) \
4373f3ce
PB
7993{ \
7994 uint32_t flags; \
7995 switch(type ## _compare(a, b, &env->vfp.fp_status)) { \
7996 case 0: flags = 0x6; break; \
7997 case -1: flags = 0x8; break; \
7998 case 1: flags = 0x2; break; \
7999 default: case 2: flags = 0x3; break; \
8000 } \
8001 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28) \
8002 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
8003}
8004DO_VFP_cmp(s, float32)
8005DO_VFP_cmp(d, float64)
8006#undef DO_VFP_cmp
8007
5500b06c 8008/* Integer to float and float to integer conversions */
4373f3ce 8009
5500b06c
PM
8010#define CONV_ITOF(name, fsz, sign) \
8011 float##fsz HELPER(name)(uint32_t x, void *fpstp) \
8012{ \
8013 float_status *fpst = fpstp; \
85836979 8014 return sign##int32_to_##float##fsz((sign##int32_t)x, fpst); \
4373f3ce
PB
8015}
8016
5500b06c
PM
8017#define CONV_FTOI(name, fsz, sign, round) \
8018uint32_t HELPER(name)(float##fsz x, void *fpstp) \
8019{ \
8020 float_status *fpst = fpstp; \
8021 if (float##fsz##_is_any_nan(x)) { \
8022 float_raise(float_flag_invalid, fpst); \
8023 return 0; \
8024 } \
8025 return float##fsz##_to_##sign##int32##round(x, fpst); \
4373f3ce
PB
8026}
8027
5500b06c
PM
8028#define FLOAT_CONVS(name, p, fsz, sign) \
8029CONV_ITOF(vfp_##name##to##p, fsz, sign) \
8030CONV_FTOI(vfp_to##name##p, fsz, sign, ) \
8031CONV_FTOI(vfp_to##name##z##p, fsz, sign, _round_to_zero)
4373f3ce 8032
5500b06c
PM
8033FLOAT_CONVS(si, s, 32, )
8034FLOAT_CONVS(si, d, 64, )
8035FLOAT_CONVS(ui, s, 32, u)
8036FLOAT_CONVS(ui, d, 64, u)
4373f3ce 8037
5500b06c
PM
8038#undef CONV_ITOF
8039#undef CONV_FTOI
8040#undef FLOAT_CONVS
4373f3ce
PB
8041
8042/* floating point conversion */
0ecb72a5 8043float64 VFP_HELPER(fcvtd, s)(float32 x, CPUARMState *env)
4373f3ce 8044{
2d627737
PM
8045 float64 r = float32_to_float64(x, &env->vfp.fp_status);
8046 /* ARM requires that S<->D conversion of any kind of NaN generates
8047 * a quiet NaN by forcing the most significant frac bit to 1.
8048 */
8049 return float64_maybe_silence_nan(r);
4373f3ce
PB
8050}
8051
0ecb72a5 8052float32 VFP_HELPER(fcvts, d)(float64 x, CPUARMState *env)
4373f3ce 8053{
2d627737
PM
8054 float32 r = float64_to_float32(x, &env->vfp.fp_status);
8055 /* ARM requires that S<->D conversion of any kind of NaN generates
8056 * a quiet NaN by forcing the most significant frac bit to 1.
8057 */
8058 return float32_maybe_silence_nan(r);
4373f3ce
PB
8059}
8060
8061/* VFP3 fixed point conversion. */
16d5b3ca 8062#define VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype) \
8ed697e8
WN
8063float##fsz HELPER(vfp_##name##to##p)(uint##isz##_t x, uint32_t shift, \
8064 void *fpstp) \
4373f3ce 8065{ \
5500b06c 8066 float_status *fpst = fpstp; \
622465e1 8067 float##fsz tmp; \
8ed697e8 8068 tmp = itype##_to_##float##fsz(x, fpst); \
5500b06c 8069 return float##fsz##_scalbn(tmp, -(int)shift, fpst); \
16d5b3ca
WN
8070}
8071
abe66f70
PM
8072/* Notice that we want only input-denormal exception flags from the
8073 * scalbn operation: the other possible flags (overflow+inexact if
8074 * we overflow to infinity, output-denormal) aren't correct for the
8075 * complete scale-and-convert operation.
8076 */
16d5b3ca
WN
8077#define VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype, round) \
8078uint##isz##_t HELPER(vfp_to##name##p##round)(float##fsz x, \
8079 uint32_t shift, \
8080 void *fpstp) \
4373f3ce 8081{ \
5500b06c 8082 float_status *fpst = fpstp; \
abe66f70 8083 int old_exc_flags = get_float_exception_flags(fpst); \
622465e1
PM
8084 float##fsz tmp; \
8085 if (float##fsz##_is_any_nan(x)) { \
5500b06c 8086 float_raise(float_flag_invalid, fpst); \
622465e1 8087 return 0; \
09d9487f 8088 } \
5500b06c 8089 tmp = float##fsz##_scalbn(x, shift, fpst); \
abe66f70
PM
8090 old_exc_flags |= get_float_exception_flags(fpst) \
8091 & float_flag_input_denormal; \
8092 set_float_exception_flags(old_exc_flags, fpst); \
16d5b3ca 8093 return float##fsz##_to_##itype##round(tmp, fpst); \
622465e1
PM
8094}
8095
16d5b3ca
WN
8096#define VFP_CONV_FIX(name, p, fsz, isz, itype) \
8097VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype) \
3c6a074a
WN
8098VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype, _round_to_zero) \
8099VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype, )
8100
8101#define VFP_CONV_FIX_A64(name, p, fsz, isz, itype) \
8102VFP_CONV_FIX_FLOAT(name, p, fsz, isz, itype) \
8103VFP_CONV_FLOAT_FIX_ROUND(name, p, fsz, isz, itype, )
16d5b3ca 8104
8ed697e8
WN
8105VFP_CONV_FIX(sh, d, 64, 64, int16)
8106VFP_CONV_FIX(sl, d, 64, 64, int32)
3c6a074a 8107VFP_CONV_FIX_A64(sq, d, 64, 64, int64)
8ed697e8
WN
8108VFP_CONV_FIX(uh, d, 64, 64, uint16)
8109VFP_CONV_FIX(ul, d, 64, 64, uint32)
3c6a074a 8110VFP_CONV_FIX_A64(uq, d, 64, 64, uint64)
8ed697e8
WN
8111VFP_CONV_FIX(sh, s, 32, 32, int16)
8112VFP_CONV_FIX(sl, s, 32, 32, int32)
3c6a074a 8113VFP_CONV_FIX_A64(sq, s, 32, 64, int64)
8ed697e8
WN
8114VFP_CONV_FIX(uh, s, 32, 32, uint16)
8115VFP_CONV_FIX(ul, s, 32, 32, uint32)
3c6a074a 8116VFP_CONV_FIX_A64(uq, s, 32, 64, uint64)
4373f3ce 8117#undef VFP_CONV_FIX
16d5b3ca
WN
8118#undef VFP_CONV_FIX_FLOAT
8119#undef VFP_CONV_FLOAT_FIX_ROUND
4373f3ce 8120
52a1f6a3
AG
8121/* Set the current fp rounding mode and return the old one.
8122 * The argument is a softfloat float_round_ value.
8123 */
8124uint32_t HELPER(set_rmode)(uint32_t rmode, CPUARMState *env)
8125{
8126 float_status *fp_status = &env->vfp.fp_status;
8127
8128 uint32_t prev_rmode = get_float_rounding_mode(fp_status);
8129 set_float_rounding_mode(rmode, fp_status);
8130
8131 return prev_rmode;
8132}
8133
43630e58
WN
8134/* Set the current fp rounding mode in the standard fp status and return
8135 * the old one. This is for NEON instructions that need to change the
8136 * rounding mode but wish to use the standard FPSCR values for everything
8137 * else. Always set the rounding mode back to the correct value after
8138 * modifying it.
8139 * The argument is a softfloat float_round_ value.
8140 */
8141uint32_t HELPER(set_neon_rmode)(uint32_t rmode, CPUARMState *env)
8142{
8143 float_status *fp_status = &env->vfp.standard_fp_status;
8144
8145 uint32_t prev_rmode = get_float_rounding_mode(fp_status);
8146 set_float_rounding_mode(rmode, fp_status);
8147
8148 return prev_rmode;
8149}
8150
60011498 8151/* Half precision conversions. */
0ecb72a5 8152static float32 do_fcvt_f16_to_f32(uint32_t a, CPUARMState *env, float_status *s)
60011498 8153{
60011498 8154 int ieee = (env->vfp.xregs[ARM_VFP_FPSCR] & (1 << 26)) == 0;
fb91678d
PM
8155 float32 r = float16_to_float32(make_float16(a), ieee, s);
8156 if (ieee) {
8157 return float32_maybe_silence_nan(r);
8158 }
8159 return r;
60011498
PB
8160}
8161
0ecb72a5 8162static uint32_t do_fcvt_f32_to_f16(float32 a, CPUARMState *env, float_status *s)
60011498 8163{
60011498 8164 int ieee = (env->vfp.xregs[ARM_VFP_FPSCR] & (1 << 26)) == 0;
fb91678d
PM
8165 float16 r = float32_to_float16(a, ieee, s);
8166 if (ieee) {
8167 r = float16_maybe_silence_nan(r);
8168 }
8169 return float16_val(r);
60011498
PB
8170}
8171
0ecb72a5 8172float32 HELPER(neon_fcvt_f16_to_f32)(uint32_t a, CPUARMState *env)
2d981da7
PM
8173{
8174 return do_fcvt_f16_to_f32(a, env, &env->vfp.standard_fp_status);
8175}
8176
0ecb72a5 8177uint32_t HELPER(neon_fcvt_f32_to_f16)(float32 a, CPUARMState *env)
2d981da7
PM
8178{
8179 return do_fcvt_f32_to_f16(a, env, &env->vfp.standard_fp_status);
8180}
8181
0ecb72a5 8182float32 HELPER(vfp_fcvt_f16_to_f32)(uint32_t a, CPUARMState *env)
2d981da7
PM
8183{
8184 return do_fcvt_f16_to_f32(a, env, &env->vfp.fp_status);
8185}
8186
0ecb72a5 8187uint32_t HELPER(vfp_fcvt_f32_to_f16)(float32 a, CPUARMState *env)
2d981da7
PM
8188{
8189 return do_fcvt_f32_to_f16(a, env, &env->vfp.fp_status);
8190}
8191
8900aad2
PM
8192float64 HELPER(vfp_fcvt_f16_to_f64)(uint32_t a, CPUARMState *env)
8193{
8194 int ieee = (env->vfp.xregs[ARM_VFP_FPSCR] & (1 << 26)) == 0;
8195 float64 r = float16_to_float64(make_float16(a), ieee, &env->vfp.fp_status);
8196 if (ieee) {
8197 return float64_maybe_silence_nan(r);
8198 }
8199 return r;
8200}
8201
8202uint32_t HELPER(vfp_fcvt_f64_to_f16)(float64 a, CPUARMState *env)
8203{
8204 int ieee = (env->vfp.xregs[ARM_VFP_FPSCR] & (1 << 26)) == 0;
8205 float16 r = float64_to_float16(a, ieee, &env->vfp.fp_status);
8206 if (ieee) {
8207 r = float16_maybe_silence_nan(r);
8208 }
8209 return float16_val(r);
8210}
8211
dda3ec49 8212#define float32_two make_float32(0x40000000)
6aae3df1
PM
8213#define float32_three make_float32(0x40400000)
8214#define float32_one_point_five make_float32(0x3fc00000)
dda3ec49 8215
0ecb72a5 8216float32 HELPER(recps_f32)(float32 a, float32 b, CPUARMState *env)
4373f3ce 8217{
dda3ec49
PM
8218 float_status *s = &env->vfp.standard_fp_status;
8219 if ((float32_is_infinity(a) && float32_is_zero_or_denormal(b)) ||
8220 (float32_is_infinity(b) && float32_is_zero_or_denormal(a))) {
43fe9bdb
PM
8221 if (!(float32_is_zero(a) || float32_is_zero(b))) {
8222 float_raise(float_flag_input_denormal, s);
8223 }
dda3ec49
PM
8224 return float32_two;
8225 }
8226 return float32_sub(float32_two, float32_mul(a, b, s), s);
4373f3ce
PB
8227}
8228
0ecb72a5 8229float32 HELPER(rsqrts_f32)(float32 a, float32 b, CPUARMState *env)
4373f3ce 8230{
71826966 8231 float_status *s = &env->vfp.standard_fp_status;
9ea62f57
PM
8232 float32 product;
8233 if ((float32_is_infinity(a) && float32_is_zero_or_denormal(b)) ||
8234 (float32_is_infinity(b) && float32_is_zero_or_denormal(a))) {
43fe9bdb
PM
8235 if (!(float32_is_zero(a) || float32_is_zero(b))) {
8236 float_raise(float_flag_input_denormal, s);
8237 }
6aae3df1 8238 return float32_one_point_five;
9ea62f57 8239 }
6aae3df1
PM
8240 product = float32_mul(a, b, s);
8241 return float32_div(float32_sub(float32_three, product, s), float32_two, s);
4373f3ce
PB
8242}
8243
8f8e3aa4
PB
8244/* NEON helpers. */
8245
56bf4fe2
CL
8246/* Constants 256 and 512 are used in some helpers; we avoid relying on
8247 * int->float conversions at run-time. */
8248#define float64_256 make_float64(0x4070000000000000LL)
8249#define float64_512 make_float64(0x4080000000000000LL)
b6d4443a
AB
8250#define float32_maxnorm make_float32(0x7f7fffff)
8251#define float64_maxnorm make_float64(0x7fefffffffffffffLL)
56bf4fe2 8252
b6d4443a
AB
8253/* Reciprocal functions
8254 *
8255 * The algorithm that must be used to calculate the estimate
8256 * is specified by the ARM ARM, see FPRecipEstimate()
fe0e4872 8257 */
b6d4443a
AB
8258
8259static float64 recip_estimate(float64 a, float_status *real_fp_status)
fe0e4872 8260{
1146a817
PM
8261 /* These calculations mustn't set any fp exception flags,
8262 * so we use a local copy of the fp_status.
8263 */
b6d4443a 8264 float_status dummy_status = *real_fp_status;
1146a817 8265 float_status *s = &dummy_status;
fe0e4872
CL
8266 /* q = (int)(a * 512.0) */
8267 float64 q = float64_mul(float64_512, a, s);
8268 int64_t q_int = float64_to_int64_round_to_zero(q, s);
8269
8270 /* r = 1.0 / (((double)q + 0.5) / 512.0) */
8271 q = int64_to_float64(q_int, s);
8272 q = float64_add(q, float64_half, s);
8273 q = float64_div(q, float64_512, s);
8274 q = float64_div(float64_one, q, s);
8275
8276 /* s = (int)(256.0 * r + 0.5) */
8277 q = float64_mul(q, float64_256, s);
8278 q = float64_add(q, float64_half, s);
8279 q_int = float64_to_int64_round_to_zero(q, s);
8280
8281 /* return (double)s / 256.0 */
8282 return float64_div(int64_to_float64(q_int, s), float64_256, s);
8283}
8284
b6d4443a
AB
8285/* Common wrapper to call recip_estimate */
8286static float64 call_recip_estimate(float64 num, int off, float_status *fpst)
4373f3ce 8287{
b6d4443a
AB
8288 uint64_t val64 = float64_val(num);
8289 uint64_t frac = extract64(val64, 0, 52);
8290 int64_t exp = extract64(val64, 52, 11);
8291 uint64_t sbit;
8292 float64 scaled, estimate;
fe0e4872 8293
b6d4443a
AB
8294 /* Generate the scaled number for the estimate function */
8295 if (exp == 0) {
8296 if (extract64(frac, 51, 1) == 0) {
8297 exp = -1;
8298 frac = extract64(frac, 0, 50) << 2;
8299 } else {
8300 frac = extract64(frac, 0, 51) << 1;
8301 }
8302 }
fe0e4872 8303
b6d4443a
AB
8304 /* scaled = '0' : '01111111110' : fraction<51:44> : Zeros(44); */
8305 scaled = make_float64((0x3feULL << 52)
8306 | extract64(frac, 44, 8) << 44);
8307
8308 estimate = recip_estimate(scaled, fpst);
8309
8310 /* Build new result */
8311 val64 = float64_val(estimate);
8312 sbit = 0x8000000000000000ULL & val64;
8313 exp = off - exp;
8314 frac = extract64(val64, 0, 52);
8315
8316 if (exp == 0) {
8317 frac = 1ULL << 51 | extract64(frac, 1, 51);
8318 } else if (exp == -1) {
8319 frac = 1ULL << 50 | extract64(frac, 2, 50);
8320 exp = 0;
8321 }
8322
8323 return make_float64(sbit | (exp << 52) | frac);
8324}
8325
8326static bool round_to_inf(float_status *fpst, bool sign_bit)
8327{
8328 switch (fpst->float_rounding_mode) {
8329 case float_round_nearest_even: /* Round to Nearest */
8330 return true;
8331 case float_round_up: /* Round to +Inf */
8332 return !sign_bit;
8333 case float_round_down: /* Round to -Inf */
8334 return sign_bit;
8335 case float_round_to_zero: /* Round to Zero */
8336 return false;
8337 }
8338
8339 g_assert_not_reached();
8340}
8341
8342float32 HELPER(recpe_f32)(float32 input, void *fpstp)
8343{
8344 float_status *fpst = fpstp;
8345 float32 f32 = float32_squash_input_denormal(input, fpst);
8346 uint32_t f32_val = float32_val(f32);
8347 uint32_t f32_sbit = 0x80000000ULL & f32_val;
8348 int32_t f32_exp = extract32(f32_val, 23, 8);
8349 uint32_t f32_frac = extract32(f32_val, 0, 23);
8350 float64 f64, r64;
8351 uint64_t r64_val;
8352 int64_t r64_exp;
8353 uint64_t r64_frac;
8354
8355 if (float32_is_any_nan(f32)) {
8356 float32 nan = f32;
8357 if (float32_is_signaling_nan(f32)) {
8358 float_raise(float_flag_invalid, fpst);
8359 nan = float32_maybe_silence_nan(f32);
fe0e4872 8360 }
b6d4443a
AB
8361 if (fpst->default_nan_mode) {
8362 nan = float32_default_nan;
43fe9bdb 8363 }
b6d4443a
AB
8364 return nan;
8365 } else if (float32_is_infinity(f32)) {
8366 return float32_set_sign(float32_zero, float32_is_neg(f32));
8367 } else if (float32_is_zero(f32)) {
8368 float_raise(float_flag_divbyzero, fpst);
8369 return float32_set_sign(float32_infinity, float32_is_neg(f32));
8370 } else if ((f32_val & ~(1ULL << 31)) < (1ULL << 21)) {
8371 /* Abs(value) < 2.0^-128 */
8372 float_raise(float_flag_overflow | float_flag_inexact, fpst);
8373 if (round_to_inf(fpst, f32_sbit)) {
8374 return float32_set_sign(float32_infinity, float32_is_neg(f32));
8375 } else {
8376 return float32_set_sign(float32_maxnorm, float32_is_neg(f32));
8377 }
8378 } else if (f32_exp >= 253 && fpst->flush_to_zero) {
8379 float_raise(float_flag_underflow, fpst);
8380 return float32_set_sign(float32_zero, float32_is_neg(f32));
fe0e4872
CL
8381 }
8382
fe0e4872 8383
b6d4443a
AB
8384 f64 = make_float64(((int64_t)(f32_exp) << 52) | (int64_t)(f32_frac) << 29);
8385 r64 = call_recip_estimate(f64, 253, fpst);
8386 r64_val = float64_val(r64);
8387 r64_exp = extract64(r64_val, 52, 11);
8388 r64_frac = extract64(r64_val, 0, 52);
8389
8390 /* result = sign : result_exp<7:0> : fraction<51:29>; */
8391 return make_float32(f32_sbit |
8392 (r64_exp & 0xff) << 23 |
8393 extract64(r64_frac, 29, 24));
8394}
8395
8396float64 HELPER(recpe_f64)(float64 input, void *fpstp)
8397{
8398 float_status *fpst = fpstp;
8399 float64 f64 = float64_squash_input_denormal(input, fpst);
8400 uint64_t f64_val = float64_val(f64);
8401 uint64_t f64_sbit = 0x8000000000000000ULL & f64_val;
8402 int64_t f64_exp = extract64(f64_val, 52, 11);
8403 float64 r64;
8404 uint64_t r64_val;
8405 int64_t r64_exp;
8406 uint64_t r64_frac;
8407
8408 /* Deal with any special cases */
8409 if (float64_is_any_nan(f64)) {
8410 float64 nan = f64;
8411 if (float64_is_signaling_nan(f64)) {
8412 float_raise(float_flag_invalid, fpst);
8413 nan = float64_maybe_silence_nan(f64);
8414 }
8415 if (fpst->default_nan_mode) {
8416 nan = float64_default_nan;
8417 }
8418 return nan;
8419 } else if (float64_is_infinity(f64)) {
8420 return float64_set_sign(float64_zero, float64_is_neg(f64));
8421 } else if (float64_is_zero(f64)) {
8422 float_raise(float_flag_divbyzero, fpst);
8423 return float64_set_sign(float64_infinity, float64_is_neg(f64));
8424 } else if ((f64_val & ~(1ULL << 63)) < (1ULL << 50)) {
8425 /* Abs(value) < 2.0^-1024 */
8426 float_raise(float_flag_overflow | float_flag_inexact, fpst);
8427 if (round_to_inf(fpst, f64_sbit)) {
8428 return float64_set_sign(float64_infinity, float64_is_neg(f64));
8429 } else {
8430 return float64_set_sign(float64_maxnorm, float64_is_neg(f64));
8431 }
fc1792e9 8432 } else if (f64_exp >= 2045 && fpst->flush_to_zero) {
b6d4443a
AB
8433 float_raise(float_flag_underflow, fpst);
8434 return float64_set_sign(float64_zero, float64_is_neg(f64));
8435 }
fe0e4872 8436
b6d4443a
AB
8437 r64 = call_recip_estimate(f64, 2045, fpst);
8438 r64_val = float64_val(r64);
8439 r64_exp = extract64(r64_val, 52, 11);
8440 r64_frac = extract64(r64_val, 0, 52);
fe0e4872 8441
b6d4443a
AB
8442 /* result = sign : result_exp<10:0> : fraction<51:0> */
8443 return make_float64(f64_sbit |
8444 ((r64_exp & 0x7ff) << 52) |
8445 r64_frac);
4373f3ce
PB
8446}
8447
e07be5d2
CL
8448/* The algorithm that must be used to calculate the estimate
8449 * is specified by the ARM ARM.
8450 */
c2fb418e 8451static float64 recip_sqrt_estimate(float64 a, float_status *real_fp_status)
e07be5d2 8452{
1146a817
PM
8453 /* These calculations mustn't set any fp exception flags,
8454 * so we use a local copy of the fp_status.
8455 */
c2fb418e 8456 float_status dummy_status = *real_fp_status;
1146a817 8457 float_status *s = &dummy_status;
e07be5d2
CL
8458 float64 q;
8459 int64_t q_int;
8460
8461 if (float64_lt(a, float64_half, s)) {
8462 /* range 0.25 <= a < 0.5 */
8463
8464 /* a in units of 1/512 rounded down */
8465 /* q0 = (int)(a * 512.0); */
8466 q = float64_mul(float64_512, a, s);
8467 q_int = float64_to_int64_round_to_zero(q, s);
8468
8469 /* reciprocal root r */
8470 /* r = 1.0 / sqrt(((double)q0 + 0.5) / 512.0); */
8471 q = int64_to_float64(q_int, s);
8472 q = float64_add(q, float64_half, s);
8473 q = float64_div(q, float64_512, s);
8474 q = float64_sqrt(q, s);
8475 q = float64_div(float64_one, q, s);
8476 } else {
8477 /* range 0.5 <= a < 1.0 */
8478
8479 /* a in units of 1/256 rounded down */
8480 /* q1 = (int)(a * 256.0); */
8481 q = float64_mul(float64_256, a, s);
8482 int64_t q_int = float64_to_int64_round_to_zero(q, s);
8483
8484 /* reciprocal root r */
8485 /* r = 1.0 /sqrt(((double)q1 + 0.5) / 256); */
8486 q = int64_to_float64(q_int, s);
8487 q = float64_add(q, float64_half, s);
8488 q = float64_div(q, float64_256, s);
8489 q = float64_sqrt(q, s);
8490 q = float64_div(float64_one, q, s);
8491 }
8492 /* r in units of 1/256 rounded to nearest */
8493 /* s = (int)(256.0 * r + 0.5); */
8494
8495 q = float64_mul(q, float64_256,s );
8496 q = float64_add(q, float64_half, s);
8497 q_int = float64_to_int64_round_to_zero(q, s);
8498
8499 /* return (double)s / 256.0;*/
8500 return float64_div(int64_to_float64(q_int, s), float64_256, s);
8501}
8502
c2fb418e 8503float32 HELPER(rsqrte_f32)(float32 input, void *fpstp)
4373f3ce 8504{
c2fb418e
AB
8505 float_status *s = fpstp;
8506 float32 f32 = float32_squash_input_denormal(input, s);
8507 uint32_t val = float32_val(f32);
8508 uint32_t f32_sbit = 0x80000000 & val;
8509 int32_t f32_exp = extract32(val, 23, 8);
8510 uint32_t f32_frac = extract32(val, 0, 23);
8511 uint64_t f64_frac;
8512 uint64_t val64;
e07be5d2
CL
8513 int result_exp;
8514 float64 f64;
e07be5d2 8515
c2fb418e
AB
8516 if (float32_is_any_nan(f32)) {
8517 float32 nan = f32;
8518 if (float32_is_signaling_nan(f32)) {
e07be5d2 8519 float_raise(float_flag_invalid, s);
c2fb418e 8520 nan = float32_maybe_silence_nan(f32);
e07be5d2 8521 }
c2fb418e
AB
8522 if (s->default_nan_mode) {
8523 nan = float32_default_nan;
43fe9bdb 8524 }
c2fb418e
AB
8525 return nan;
8526 } else if (float32_is_zero(f32)) {
e07be5d2 8527 float_raise(float_flag_divbyzero, s);
c2fb418e
AB
8528 return float32_set_sign(float32_infinity, float32_is_neg(f32));
8529 } else if (float32_is_neg(f32)) {
e07be5d2
CL
8530 float_raise(float_flag_invalid, s);
8531 return float32_default_nan;
c2fb418e 8532 } else if (float32_is_infinity(f32)) {
e07be5d2
CL
8533 return float32_zero;
8534 }
8535
c2fb418e 8536 /* Scale and normalize to a double-precision value between 0.25 and 1.0,
e07be5d2 8537 * preserving the parity of the exponent. */
c2fb418e
AB
8538
8539 f64_frac = ((uint64_t) f32_frac) << 29;
8540 if (f32_exp == 0) {
8541 while (extract64(f64_frac, 51, 1) == 0) {
8542 f64_frac = f64_frac << 1;
8543 f32_exp = f32_exp-1;
8544 }
8545 f64_frac = extract64(f64_frac, 0, 51) << 1;
8546 }
8547
8548 if (extract64(f32_exp, 0, 1) == 0) {
8549 f64 = make_float64(((uint64_t) f32_sbit) << 32
e07be5d2 8550 | (0x3feULL << 52)
c2fb418e 8551 | f64_frac);
e07be5d2 8552 } else {
c2fb418e 8553 f64 = make_float64(((uint64_t) f32_sbit) << 32
e07be5d2 8554 | (0x3fdULL << 52)
c2fb418e 8555 | f64_frac);
e07be5d2
CL
8556 }
8557
c2fb418e 8558 result_exp = (380 - f32_exp) / 2;
e07be5d2 8559
c2fb418e 8560 f64 = recip_sqrt_estimate(f64, s);
e07be5d2
CL
8561
8562 val64 = float64_val(f64);
8563
26cc6abf 8564 val = ((result_exp & 0xff) << 23)
e07be5d2
CL
8565 | ((val64 >> 29) & 0x7fffff);
8566 return make_float32(val);
4373f3ce
PB
8567}
8568
c2fb418e
AB
8569float64 HELPER(rsqrte_f64)(float64 input, void *fpstp)
8570{
8571 float_status *s = fpstp;
8572 float64 f64 = float64_squash_input_denormal(input, s);
8573 uint64_t val = float64_val(f64);
8574 uint64_t f64_sbit = 0x8000000000000000ULL & val;
8575 int64_t f64_exp = extract64(val, 52, 11);
8576 uint64_t f64_frac = extract64(val, 0, 52);
8577 int64_t result_exp;
8578 uint64_t result_frac;
8579
8580 if (float64_is_any_nan(f64)) {
8581 float64 nan = f64;
8582 if (float64_is_signaling_nan(f64)) {
8583 float_raise(float_flag_invalid, s);
8584 nan = float64_maybe_silence_nan(f64);
8585 }
8586 if (s->default_nan_mode) {
8587 nan = float64_default_nan;
8588 }
8589 return nan;
8590 } else if (float64_is_zero(f64)) {
8591 float_raise(float_flag_divbyzero, s);
8592 return float64_set_sign(float64_infinity, float64_is_neg(f64));
8593 } else if (float64_is_neg(f64)) {
8594 float_raise(float_flag_invalid, s);
8595 return float64_default_nan;
8596 } else if (float64_is_infinity(f64)) {
8597 return float64_zero;
8598 }
8599
8600 /* Scale and normalize to a double-precision value between 0.25 and 1.0,
8601 * preserving the parity of the exponent. */
8602
8603 if (f64_exp == 0) {
8604 while (extract64(f64_frac, 51, 1) == 0) {
8605 f64_frac = f64_frac << 1;
8606 f64_exp = f64_exp - 1;
8607 }
8608 f64_frac = extract64(f64_frac, 0, 51) << 1;
8609 }
8610
8611 if (extract64(f64_exp, 0, 1) == 0) {
8612 f64 = make_float64(f64_sbit
8613 | (0x3feULL << 52)
8614 | f64_frac);
8615 } else {
8616 f64 = make_float64(f64_sbit
8617 | (0x3fdULL << 52)
8618 | f64_frac);
8619 }
8620
8621 result_exp = (3068 - f64_exp) / 2;
8622
8623 f64 = recip_sqrt_estimate(f64, s);
8624
8625 result_frac = extract64(float64_val(f64), 0, 52);
8626
8627 return make_float64(f64_sbit |
8628 ((result_exp & 0x7ff) << 52) |
8629 result_frac);
8630}
8631
b6d4443a 8632uint32_t HELPER(recpe_u32)(uint32_t a, void *fpstp)
4373f3ce 8633{
b6d4443a 8634 float_status *s = fpstp;
fe0e4872
CL
8635 float64 f64;
8636
8637 if ((a & 0x80000000) == 0) {
8638 return 0xffffffff;
8639 }
8640
8641 f64 = make_float64((0x3feULL << 52)
8642 | ((int64_t)(a & 0x7fffffff) << 21));
8643
b6d4443a 8644 f64 = recip_estimate(f64, s);
fe0e4872
CL
8645
8646 return 0x80000000 | ((float64_val(f64) >> 21) & 0x7fffffff);
4373f3ce
PB
8647}
8648
c2fb418e 8649uint32_t HELPER(rsqrte_u32)(uint32_t a, void *fpstp)
4373f3ce 8650{
c2fb418e 8651 float_status *fpst = fpstp;
e07be5d2
CL
8652 float64 f64;
8653
8654 if ((a & 0xc0000000) == 0) {
8655 return 0xffffffff;
8656 }
8657
8658 if (a & 0x80000000) {
8659 f64 = make_float64((0x3feULL << 52)
8660 | ((uint64_t)(a & 0x7fffffff) << 21));
8661 } else { /* bits 31-30 == '01' */
8662 f64 = make_float64((0x3fdULL << 52)
8663 | ((uint64_t)(a & 0x3fffffff) << 22));
8664 }
8665
c2fb418e 8666 f64 = recip_sqrt_estimate(f64, fpst);
e07be5d2
CL
8667
8668 return 0x80000000 | ((float64_val(f64) >> 21) & 0x7fffffff);
4373f3ce 8669}
fe1479c3 8670
da97f52c
PM
8671/* VFPv4 fused multiply-accumulate */
8672float32 VFP_HELPER(muladd, s)(float32 a, float32 b, float32 c, void *fpstp)
8673{
8674 float_status *fpst = fpstp;
8675 return float32_muladd(a, b, c, 0, fpst);
8676}
8677
8678float64 VFP_HELPER(muladd, d)(float64 a, float64 b, float64 c, void *fpstp)
8679{
8680 float_status *fpst = fpstp;
8681 return float64_muladd(a, b, c, 0, fpst);
8682}
d9b0848d
PM
8683
8684/* ARMv8 round to integral */
8685float32 HELPER(rints_exact)(float32 x, void *fp_status)
8686{
8687 return float32_round_to_int(x, fp_status);
8688}
8689
8690float64 HELPER(rintd_exact)(float64 x, void *fp_status)
8691{
8692 return float64_round_to_int(x, fp_status);
8693}
8694
8695float32 HELPER(rints)(float32 x, void *fp_status)
8696{
8697 int old_flags = get_float_exception_flags(fp_status), new_flags;
8698 float32 ret;
8699
8700 ret = float32_round_to_int(x, fp_status);
8701
8702 /* Suppress any inexact exceptions the conversion produced */
8703 if (!(old_flags & float_flag_inexact)) {
8704 new_flags = get_float_exception_flags(fp_status);
8705 set_float_exception_flags(new_flags & ~float_flag_inexact, fp_status);
8706 }
8707
8708 return ret;
8709}
8710
8711float64 HELPER(rintd)(float64 x, void *fp_status)
8712{
8713 int old_flags = get_float_exception_flags(fp_status), new_flags;
8714 float64 ret;
8715
8716 ret = float64_round_to_int(x, fp_status);
8717
8718 new_flags = get_float_exception_flags(fp_status);
8719
8720 /* Suppress any inexact exceptions the conversion produced */
8721 if (!(old_flags & float_flag_inexact)) {
8722 new_flags = get_float_exception_flags(fp_status);
8723 set_float_exception_flags(new_flags & ~float_flag_inexact, fp_status);
8724 }
8725
8726 return ret;
8727}
9972da66
WN
8728
8729/* Convert ARM rounding mode to softfloat */
8730int arm_rmode_to_sf(int rmode)
8731{
8732 switch (rmode) {
8733 case FPROUNDING_TIEAWAY:
8734 rmode = float_round_ties_away;
8735 break;
8736 case FPROUNDING_ODD:
8737 /* FIXME: add support for TIEAWAY and ODD */
8738 qemu_log_mask(LOG_UNIMP, "arm: unimplemented rounding mode: %d\n",
8739 rmode);
8740 case FPROUNDING_TIEEVEN:
8741 default:
8742 rmode = float_round_nearest_even;
8743 break;
8744 case FPROUNDING_POSINF:
8745 rmode = float_round_up;
8746 break;
8747 case FPROUNDING_NEGINF:
8748 rmode = float_round_down;
8749 break;
8750 case FPROUNDING_ZERO:
8751 rmode = float_round_to_zero;
8752 break;
8753 }
8754 return rmode;
8755}
eb0ecd5a 8756
aa633469
PM
8757/* CRC helpers.
8758 * The upper bytes of val (above the number specified by 'bytes') must have
8759 * been zeroed out by the caller.
8760 */
eb0ecd5a
WN
8761uint32_t HELPER(crc32)(uint32_t acc, uint32_t val, uint32_t bytes)
8762{
8763 uint8_t buf[4];
8764
aa633469 8765 stl_le_p(buf, val);
eb0ecd5a
WN
8766
8767 /* zlib crc32 converts the accumulator and output to one's complement. */
8768 return crc32(acc ^ 0xffffffff, buf, bytes) ^ 0xffffffff;
8769}
8770
8771uint32_t HELPER(crc32c)(uint32_t acc, uint32_t val, uint32_t bytes)
8772{
8773 uint8_t buf[4];
8774
aa633469 8775 stl_le_p(buf, val);
eb0ecd5a
WN
8776
8777 /* Linux crc32c converts the output to one's complement. */
8778 return crc32c(acc, buf, bytes) ^ 0xffffffff;
8779}