]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/cpu.c
Merge tag 'xen-virtio-fix-1-tag' of https://gitlab.com/sstabellini/qemu into staging
[mirror_qemu.git] / target / arm / cpu.c
1 /*
2 * QEMU ARM CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see
18 * <http://www.gnu.org/licenses/gpl-2.0.html>
19 */
20
21 #include "qemu/osdep.h"
22 #include "qemu/qemu-print.h"
23 #include "qemu/timer.h"
24 #include "qemu/log.h"
25 #include "exec/page-vary.h"
26 #include "target/arm/idau.h"
27 #include "qemu/module.h"
28 #include "qapi/error.h"
29 #include "cpu.h"
30 #ifdef CONFIG_TCG
31 #include "hw/core/tcg-cpu-ops.h"
32 #endif /* CONFIG_TCG */
33 #include "internals.h"
34 #include "cpu-features.h"
35 #include "exec/exec-all.h"
36 #include "hw/qdev-properties.h"
37 #if !defined(CONFIG_USER_ONLY)
38 #include "hw/loader.h"
39 #include "hw/boards.h"
40 #ifdef CONFIG_TCG
41 #include "hw/intc/armv7m_nvic.h"
42 #endif /* CONFIG_TCG */
43 #endif /* !CONFIG_USER_ONLY */
44 #include "sysemu/tcg.h"
45 #include "sysemu/qtest.h"
46 #include "sysemu/hw_accel.h"
47 #include "kvm_arm.h"
48 #include "disas/capstone.h"
49 #include "fpu/softfloat.h"
50 #include "cpregs.h"
51
52 static void arm_cpu_set_pc(CPUState *cs, vaddr value)
53 {
54 ARMCPU *cpu = ARM_CPU(cs);
55 CPUARMState *env = &cpu->env;
56
57 if (is_a64(env)) {
58 env->pc = value;
59 env->thumb = false;
60 } else {
61 env->regs[15] = value & ~1;
62 env->thumb = value & 1;
63 }
64 }
65
66 static vaddr arm_cpu_get_pc(CPUState *cs)
67 {
68 ARMCPU *cpu = ARM_CPU(cs);
69 CPUARMState *env = &cpu->env;
70
71 if (is_a64(env)) {
72 return env->pc;
73 } else {
74 return env->regs[15];
75 }
76 }
77
78 #ifdef CONFIG_TCG
79 void arm_cpu_synchronize_from_tb(CPUState *cs,
80 const TranslationBlock *tb)
81 {
82 /* The program counter is always up to date with CF_PCREL. */
83 if (!(tb_cflags(tb) & CF_PCREL)) {
84 CPUARMState *env = cpu_env(cs);
85 /*
86 * It's OK to look at env for the current mode here, because it's
87 * never possible for an AArch64 TB to chain to an AArch32 TB.
88 */
89 if (is_a64(env)) {
90 env->pc = tb->pc;
91 } else {
92 env->regs[15] = tb->pc;
93 }
94 }
95 }
96
97 void arm_restore_state_to_opc(CPUState *cs,
98 const TranslationBlock *tb,
99 const uint64_t *data)
100 {
101 CPUARMState *env = cpu_env(cs);
102
103 if (is_a64(env)) {
104 if (tb_cflags(tb) & CF_PCREL) {
105 env->pc = (env->pc & TARGET_PAGE_MASK) | data[0];
106 } else {
107 env->pc = data[0];
108 }
109 env->condexec_bits = 0;
110 env->exception.syndrome = data[2] << ARM_INSN_START_WORD2_SHIFT;
111 } else {
112 if (tb_cflags(tb) & CF_PCREL) {
113 env->regs[15] = (env->regs[15] & TARGET_PAGE_MASK) | data[0];
114 } else {
115 env->regs[15] = data[0];
116 }
117 env->condexec_bits = data[1];
118 env->exception.syndrome = data[2] << ARM_INSN_START_WORD2_SHIFT;
119 }
120 }
121 #endif /* CONFIG_TCG */
122
123 static bool arm_cpu_has_work(CPUState *cs)
124 {
125 ARMCPU *cpu = ARM_CPU(cs);
126
127 return (cpu->power_state != PSCI_OFF)
128 && cs->interrupt_request &
129 (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD
130 | CPU_INTERRUPT_VFIQ | CPU_INTERRUPT_VIRQ | CPU_INTERRUPT_VSERR
131 | CPU_INTERRUPT_EXITTB);
132 }
133
134 void arm_register_pre_el_change_hook(ARMCPU *cpu, ARMELChangeHookFn *hook,
135 void *opaque)
136 {
137 ARMELChangeHook *entry = g_new0(ARMELChangeHook, 1);
138
139 entry->hook = hook;
140 entry->opaque = opaque;
141
142 QLIST_INSERT_HEAD(&cpu->pre_el_change_hooks, entry, node);
143 }
144
145 void arm_register_el_change_hook(ARMCPU *cpu, ARMELChangeHookFn *hook,
146 void *opaque)
147 {
148 ARMELChangeHook *entry = g_new0(ARMELChangeHook, 1);
149
150 entry->hook = hook;
151 entry->opaque = opaque;
152
153 QLIST_INSERT_HEAD(&cpu->el_change_hooks, entry, node);
154 }
155
156 static void cp_reg_reset(gpointer key, gpointer value, gpointer opaque)
157 {
158 /* Reset a single ARMCPRegInfo register */
159 ARMCPRegInfo *ri = value;
160 ARMCPU *cpu = opaque;
161
162 if (ri->type & (ARM_CP_SPECIAL_MASK | ARM_CP_ALIAS)) {
163 return;
164 }
165
166 if (ri->resetfn) {
167 ri->resetfn(&cpu->env, ri);
168 return;
169 }
170
171 /* A zero offset is never possible as it would be regs[0]
172 * so we use it to indicate that reset is being handled elsewhere.
173 * This is basically only used for fields in non-core coprocessors
174 * (like the pxa2xx ones).
175 */
176 if (!ri->fieldoffset) {
177 return;
178 }
179
180 if (cpreg_field_is_64bit(ri)) {
181 CPREG_FIELD64(&cpu->env, ri) = ri->resetvalue;
182 } else {
183 CPREG_FIELD32(&cpu->env, ri) = ri->resetvalue;
184 }
185 }
186
187 static void cp_reg_check_reset(gpointer key, gpointer value, gpointer opaque)
188 {
189 /* Purely an assertion check: we've already done reset once,
190 * so now check that running the reset for the cpreg doesn't
191 * change its value. This traps bugs where two different cpregs
192 * both try to reset the same state field but to different values.
193 */
194 ARMCPRegInfo *ri = value;
195 ARMCPU *cpu = opaque;
196 uint64_t oldvalue, newvalue;
197
198 if (ri->type & (ARM_CP_SPECIAL_MASK | ARM_CP_ALIAS | ARM_CP_NO_RAW)) {
199 return;
200 }
201
202 oldvalue = read_raw_cp_reg(&cpu->env, ri);
203 cp_reg_reset(key, value, opaque);
204 newvalue = read_raw_cp_reg(&cpu->env, ri);
205 assert(oldvalue == newvalue);
206 }
207
208 static void arm_cpu_reset_hold(Object *obj)
209 {
210 CPUState *s = CPU(obj);
211 ARMCPU *cpu = ARM_CPU(s);
212 ARMCPUClass *acc = ARM_CPU_GET_CLASS(cpu);
213 CPUARMState *env = &cpu->env;
214
215 if (acc->parent_phases.hold) {
216 acc->parent_phases.hold(obj);
217 }
218
219 memset(env, 0, offsetof(CPUARMState, end_reset_fields));
220
221 g_hash_table_foreach(cpu->cp_regs, cp_reg_reset, cpu);
222 g_hash_table_foreach(cpu->cp_regs, cp_reg_check_reset, cpu);
223
224 env->vfp.xregs[ARM_VFP_FPSID] = cpu->reset_fpsid;
225 env->vfp.xregs[ARM_VFP_MVFR0] = cpu->isar.mvfr0;
226 env->vfp.xregs[ARM_VFP_MVFR1] = cpu->isar.mvfr1;
227 env->vfp.xregs[ARM_VFP_MVFR2] = cpu->isar.mvfr2;
228
229 cpu->power_state = s->start_powered_off ? PSCI_OFF : PSCI_ON;
230
231 if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
232 env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q';
233 }
234
235 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
236 /* 64 bit CPUs always start in 64 bit mode */
237 env->aarch64 = true;
238 #if defined(CONFIG_USER_ONLY)
239 env->pstate = PSTATE_MODE_EL0t;
240 /* Userspace expects access to DC ZVA, CTL_EL0 and the cache ops */
241 env->cp15.sctlr_el[1] |= SCTLR_UCT | SCTLR_UCI | SCTLR_DZE;
242 /* Enable all PAC keys. */
243 env->cp15.sctlr_el[1] |= (SCTLR_EnIA | SCTLR_EnIB |
244 SCTLR_EnDA | SCTLR_EnDB);
245 /* Trap on btype=3 for PACIxSP. */
246 env->cp15.sctlr_el[1] |= SCTLR_BT0;
247 /* Trap on implementation defined registers. */
248 if (cpu_isar_feature(aa64_tidcp1, cpu)) {
249 env->cp15.sctlr_el[1] |= SCTLR_TIDCP;
250 }
251 /* and to the FP/Neon instructions */
252 env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
253 CPACR_EL1, FPEN, 3);
254 /* and to the SVE instructions, with default vector length */
255 if (cpu_isar_feature(aa64_sve, cpu)) {
256 env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
257 CPACR_EL1, ZEN, 3);
258 env->vfp.zcr_el[1] = cpu->sve_default_vq - 1;
259 }
260 /* and for SME instructions, with default vector length, and TPIDR2 */
261 if (cpu_isar_feature(aa64_sme, cpu)) {
262 env->cp15.sctlr_el[1] |= SCTLR_EnTP2;
263 env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
264 CPACR_EL1, SMEN, 3);
265 env->vfp.smcr_el[1] = cpu->sme_default_vq - 1;
266 if (cpu_isar_feature(aa64_sme_fa64, cpu)) {
267 env->vfp.smcr_el[1] = FIELD_DP64(env->vfp.smcr_el[1],
268 SMCR, FA64, 1);
269 }
270 }
271 /*
272 * Enable 48-bit address space (TODO: take reserved_va into account).
273 * Enable TBI0 but not TBI1.
274 * Note that this must match useronly_clean_ptr.
275 */
276 env->cp15.tcr_el[1] = 5 | (1ULL << 37);
277
278 /* Enable MTE */
279 if (cpu_isar_feature(aa64_mte, cpu)) {
280 /* Enable tag access, but leave TCF0 as No Effect (0). */
281 env->cp15.sctlr_el[1] |= SCTLR_ATA0;
282 /*
283 * Exclude all tags, so that tag 0 is always used.
284 * This corresponds to Linux current->thread.gcr_incl = 0.
285 *
286 * Set RRND, so that helper_irg() will generate a seed later.
287 * Here in cpu_reset(), the crypto subsystem has not yet been
288 * initialized.
289 */
290 env->cp15.gcr_el1 = 0x1ffff;
291 }
292 /*
293 * Disable access to SCXTNUM_EL0 from CSV2_1p2.
294 * This is not yet exposed from the Linux kernel in any way.
295 */
296 env->cp15.sctlr_el[1] |= SCTLR_TSCXT;
297 /* Disable access to Debug Communication Channel (DCC). */
298 env->cp15.mdscr_el1 |= 1 << 12;
299 /* Enable FEAT_MOPS */
300 env->cp15.sctlr_el[1] |= SCTLR_MSCEN;
301 #else
302 /* Reset into the highest available EL */
303 if (arm_feature(env, ARM_FEATURE_EL3)) {
304 env->pstate = PSTATE_MODE_EL3h;
305 } else if (arm_feature(env, ARM_FEATURE_EL2)) {
306 env->pstate = PSTATE_MODE_EL2h;
307 } else {
308 env->pstate = PSTATE_MODE_EL1h;
309 }
310
311 /* Sample rvbar at reset. */
312 env->cp15.rvbar = cpu->rvbar_prop;
313 env->pc = env->cp15.rvbar;
314 #endif
315 } else {
316 #if defined(CONFIG_USER_ONLY)
317 /* Userspace expects access to cp10 and cp11 for FP/Neon */
318 env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
319 CPACR, CP10, 3);
320 env->cp15.cpacr_el1 = FIELD_DP64(env->cp15.cpacr_el1,
321 CPACR, CP11, 3);
322 #endif
323 if (arm_feature(env, ARM_FEATURE_V8)) {
324 env->cp15.rvbar = cpu->rvbar_prop;
325 env->regs[15] = cpu->rvbar_prop;
326 }
327 }
328
329 #if defined(CONFIG_USER_ONLY)
330 env->uncached_cpsr = ARM_CPU_MODE_USR;
331 /* For user mode we must enable access to coprocessors */
332 env->vfp.xregs[ARM_VFP_FPEXC] = 1 << 30;
333 if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
334 env->cp15.c15_cpar = 3;
335 } else if (arm_feature(env, ARM_FEATURE_XSCALE)) {
336 env->cp15.c15_cpar = 1;
337 }
338 #else
339
340 /*
341 * If the highest available EL is EL2, AArch32 will start in Hyp
342 * mode; otherwise it starts in SVC. Note that if we start in
343 * AArch64 then these values in the uncached_cpsr will be ignored.
344 */
345 if (arm_feature(env, ARM_FEATURE_EL2) &&
346 !arm_feature(env, ARM_FEATURE_EL3)) {
347 env->uncached_cpsr = ARM_CPU_MODE_HYP;
348 } else {
349 env->uncached_cpsr = ARM_CPU_MODE_SVC;
350 }
351 env->daif = PSTATE_D | PSTATE_A | PSTATE_I | PSTATE_F;
352
353 /* AArch32 has a hard highvec setting of 0xFFFF0000. If we are currently
354 * executing as AArch32 then check if highvecs are enabled and
355 * adjust the PC accordingly.
356 */
357 if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
358 env->regs[15] = 0xFFFF0000;
359 }
360
361 env->vfp.xregs[ARM_VFP_FPEXC] = 0;
362 #endif
363
364 if (arm_feature(env, ARM_FEATURE_M)) {
365 #ifndef CONFIG_USER_ONLY
366 uint32_t initial_msp; /* Loaded from 0x0 */
367 uint32_t initial_pc; /* Loaded from 0x4 */
368 uint8_t *rom;
369 uint32_t vecbase;
370 #endif
371
372 if (cpu_isar_feature(aa32_lob, cpu)) {
373 /*
374 * LTPSIZE is constant 4 if MVE not implemented, and resets
375 * to an UNKNOWN value if MVE is implemented. We choose to
376 * always reset to 4.
377 */
378 env->v7m.ltpsize = 4;
379 /* The LTPSIZE field in FPDSCR is constant and reads as 4. */
380 env->v7m.fpdscr[M_REG_NS] = 4 << FPCR_LTPSIZE_SHIFT;
381 env->v7m.fpdscr[M_REG_S] = 4 << FPCR_LTPSIZE_SHIFT;
382 }
383
384 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
385 env->v7m.secure = true;
386 } else {
387 /* This bit resets to 0 if security is supported, but 1 if
388 * it is not. The bit is not present in v7M, but we set it
389 * here so we can avoid having to make checks on it conditional
390 * on ARM_FEATURE_V8 (we don't let the guest see the bit).
391 */
392 env->v7m.aircr = R_V7M_AIRCR_BFHFNMINS_MASK;
393 /*
394 * Set NSACR to indicate "NS access permitted to everything";
395 * this avoids having to have all the tests of it being
396 * conditional on ARM_FEATURE_M_SECURITY. Note also that from
397 * v8.1M the guest-visible value of NSACR in a CPU without the
398 * Security Extension is 0xcff.
399 */
400 env->v7m.nsacr = 0xcff;
401 }
402
403 /* In v7M the reset value of this bit is IMPDEF, but ARM recommends
404 * that it resets to 1, so QEMU always does that rather than making
405 * it dependent on CPU model. In v8M it is RES1.
406 */
407 env->v7m.ccr[M_REG_NS] = R_V7M_CCR_STKALIGN_MASK;
408 env->v7m.ccr[M_REG_S] = R_V7M_CCR_STKALIGN_MASK;
409 if (arm_feature(env, ARM_FEATURE_V8)) {
410 /* in v8M the NONBASETHRDENA bit [0] is RES1 */
411 env->v7m.ccr[M_REG_NS] |= R_V7M_CCR_NONBASETHRDENA_MASK;
412 env->v7m.ccr[M_REG_S] |= R_V7M_CCR_NONBASETHRDENA_MASK;
413 }
414 if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
415 env->v7m.ccr[M_REG_NS] |= R_V7M_CCR_UNALIGN_TRP_MASK;
416 env->v7m.ccr[M_REG_S] |= R_V7M_CCR_UNALIGN_TRP_MASK;
417 }
418
419 if (cpu_isar_feature(aa32_vfp_simd, cpu)) {
420 env->v7m.fpccr[M_REG_NS] = R_V7M_FPCCR_ASPEN_MASK;
421 env->v7m.fpccr[M_REG_S] = R_V7M_FPCCR_ASPEN_MASK |
422 R_V7M_FPCCR_LSPEN_MASK | R_V7M_FPCCR_S_MASK;
423 }
424
425 #ifndef CONFIG_USER_ONLY
426 /* Unlike A/R profile, M profile defines the reset LR value */
427 env->regs[14] = 0xffffffff;
428
429 env->v7m.vecbase[M_REG_S] = cpu->init_svtor & 0xffffff80;
430 env->v7m.vecbase[M_REG_NS] = cpu->init_nsvtor & 0xffffff80;
431
432 /* Load the initial SP and PC from offset 0 and 4 in the vector table */
433 vecbase = env->v7m.vecbase[env->v7m.secure];
434 rom = rom_ptr_for_as(s->as, vecbase, 8);
435 if (rom) {
436 /* Address zero is covered by ROM which hasn't yet been
437 * copied into physical memory.
438 */
439 initial_msp = ldl_p(rom);
440 initial_pc = ldl_p(rom + 4);
441 } else {
442 /* Address zero not covered by a ROM blob, or the ROM blob
443 * is in non-modifiable memory and this is a second reset after
444 * it got copied into memory. In the latter case, rom_ptr
445 * will return a NULL pointer and we should use ldl_phys instead.
446 */
447 initial_msp = ldl_phys(s->as, vecbase);
448 initial_pc = ldl_phys(s->as, vecbase + 4);
449 }
450
451 qemu_log_mask(CPU_LOG_INT,
452 "Loaded reset SP 0x%x PC 0x%x from vector table\n",
453 initial_msp, initial_pc);
454
455 env->regs[13] = initial_msp & 0xFFFFFFFC;
456 env->regs[15] = initial_pc & ~1;
457 env->thumb = initial_pc & 1;
458 #else
459 /*
460 * For user mode we run non-secure and with access to the FPU.
461 * The FPU context is active (ie does not need further setup)
462 * and is owned by non-secure.
463 */
464 env->v7m.secure = false;
465 env->v7m.nsacr = 0xcff;
466 env->v7m.cpacr[M_REG_NS] = 0xf0ffff;
467 env->v7m.fpccr[M_REG_S] &=
468 ~(R_V7M_FPCCR_LSPEN_MASK | R_V7M_FPCCR_S_MASK);
469 env->v7m.control[M_REG_S] |= R_V7M_CONTROL_FPCA_MASK;
470 #endif
471 }
472
473 /* M profile requires that reset clears the exclusive monitor;
474 * A profile does not, but clearing it makes more sense than having it
475 * set with an exclusive access on address zero.
476 */
477 arm_clear_exclusive(env);
478
479 if (arm_feature(env, ARM_FEATURE_PMSA)) {
480 if (cpu->pmsav7_dregion > 0) {
481 if (arm_feature(env, ARM_FEATURE_V8)) {
482 memset(env->pmsav8.rbar[M_REG_NS], 0,
483 sizeof(*env->pmsav8.rbar[M_REG_NS])
484 * cpu->pmsav7_dregion);
485 memset(env->pmsav8.rlar[M_REG_NS], 0,
486 sizeof(*env->pmsav8.rlar[M_REG_NS])
487 * cpu->pmsav7_dregion);
488 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
489 memset(env->pmsav8.rbar[M_REG_S], 0,
490 sizeof(*env->pmsav8.rbar[M_REG_S])
491 * cpu->pmsav7_dregion);
492 memset(env->pmsav8.rlar[M_REG_S], 0,
493 sizeof(*env->pmsav8.rlar[M_REG_S])
494 * cpu->pmsav7_dregion);
495 }
496 } else if (arm_feature(env, ARM_FEATURE_V7)) {
497 memset(env->pmsav7.drbar, 0,
498 sizeof(*env->pmsav7.drbar) * cpu->pmsav7_dregion);
499 memset(env->pmsav7.drsr, 0,
500 sizeof(*env->pmsav7.drsr) * cpu->pmsav7_dregion);
501 memset(env->pmsav7.dracr, 0,
502 sizeof(*env->pmsav7.dracr) * cpu->pmsav7_dregion);
503 }
504 }
505
506 if (cpu->pmsav8r_hdregion > 0) {
507 memset(env->pmsav8.hprbar, 0,
508 sizeof(*env->pmsav8.hprbar) * cpu->pmsav8r_hdregion);
509 memset(env->pmsav8.hprlar, 0,
510 sizeof(*env->pmsav8.hprlar) * cpu->pmsav8r_hdregion);
511 }
512
513 env->pmsav7.rnr[M_REG_NS] = 0;
514 env->pmsav7.rnr[M_REG_S] = 0;
515 env->pmsav8.mair0[M_REG_NS] = 0;
516 env->pmsav8.mair0[M_REG_S] = 0;
517 env->pmsav8.mair1[M_REG_NS] = 0;
518 env->pmsav8.mair1[M_REG_S] = 0;
519 }
520
521 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
522 if (cpu->sau_sregion > 0) {
523 memset(env->sau.rbar, 0, sizeof(*env->sau.rbar) * cpu->sau_sregion);
524 memset(env->sau.rlar, 0, sizeof(*env->sau.rlar) * cpu->sau_sregion);
525 }
526 env->sau.rnr = 0;
527 /* SAU_CTRL reset value is IMPDEF; we choose 0, which is what
528 * the Cortex-M33 does.
529 */
530 env->sau.ctrl = 0;
531 }
532
533 set_flush_to_zero(1, &env->vfp.standard_fp_status);
534 set_flush_inputs_to_zero(1, &env->vfp.standard_fp_status);
535 set_default_nan_mode(1, &env->vfp.standard_fp_status);
536 set_default_nan_mode(1, &env->vfp.standard_fp_status_f16);
537 set_float_detect_tininess(float_tininess_before_rounding,
538 &env->vfp.fp_status);
539 set_float_detect_tininess(float_tininess_before_rounding,
540 &env->vfp.standard_fp_status);
541 set_float_detect_tininess(float_tininess_before_rounding,
542 &env->vfp.fp_status_f16);
543 set_float_detect_tininess(float_tininess_before_rounding,
544 &env->vfp.standard_fp_status_f16);
545 #ifndef CONFIG_USER_ONLY
546 if (kvm_enabled()) {
547 kvm_arm_reset_vcpu(cpu);
548 }
549 #endif
550
551 if (tcg_enabled()) {
552 hw_breakpoint_update_all(cpu);
553 hw_watchpoint_update_all(cpu);
554
555 arm_rebuild_hflags(env);
556 }
557 }
558
559 void arm_emulate_firmware_reset(CPUState *cpustate, int target_el)
560 {
561 ARMCPU *cpu = ARM_CPU(cpustate);
562 CPUARMState *env = &cpu->env;
563 bool have_el3 = arm_feature(env, ARM_FEATURE_EL3);
564 bool have_el2 = arm_feature(env, ARM_FEATURE_EL2);
565
566 /*
567 * Check we have the EL we're aiming for. If that is the
568 * highest implemented EL, then cpu_reset has already done
569 * all the work.
570 */
571 switch (target_el) {
572 case 3:
573 assert(have_el3);
574 return;
575 case 2:
576 assert(have_el2);
577 if (!have_el3) {
578 return;
579 }
580 break;
581 case 1:
582 if (!have_el3 && !have_el2) {
583 return;
584 }
585 break;
586 default:
587 g_assert_not_reached();
588 }
589
590 if (have_el3) {
591 /*
592 * Set the EL3 state so code can run at EL2. This should match
593 * the requirements set by Linux in its booting spec.
594 */
595 if (env->aarch64) {
596 env->cp15.scr_el3 |= SCR_RW;
597 if (cpu_isar_feature(aa64_pauth, cpu)) {
598 env->cp15.scr_el3 |= SCR_API | SCR_APK;
599 }
600 if (cpu_isar_feature(aa64_mte, cpu)) {
601 env->cp15.scr_el3 |= SCR_ATA;
602 }
603 if (cpu_isar_feature(aa64_sve, cpu)) {
604 env->cp15.cptr_el[3] |= R_CPTR_EL3_EZ_MASK;
605 env->vfp.zcr_el[3] = 0xf;
606 }
607 if (cpu_isar_feature(aa64_sme, cpu)) {
608 env->cp15.cptr_el[3] |= R_CPTR_EL3_ESM_MASK;
609 env->cp15.scr_el3 |= SCR_ENTP2;
610 env->vfp.smcr_el[3] = 0xf;
611 }
612 if (cpu_isar_feature(aa64_hcx, cpu)) {
613 env->cp15.scr_el3 |= SCR_HXEN;
614 }
615 if (cpu_isar_feature(aa64_fgt, cpu)) {
616 env->cp15.scr_el3 |= SCR_FGTEN;
617 }
618 }
619
620 if (target_el == 2) {
621 /* If the guest is at EL2 then Linux expects the HVC insn to work */
622 env->cp15.scr_el3 |= SCR_HCE;
623 }
624
625 /* Put CPU into non-secure state */
626 env->cp15.scr_el3 |= SCR_NS;
627 /* Set NSACR.{CP11,CP10} so NS can access the FPU */
628 env->cp15.nsacr |= 3 << 10;
629 }
630
631 if (have_el2 && target_el < 2) {
632 /* Set EL2 state so code can run at EL1. */
633 if (env->aarch64) {
634 env->cp15.hcr_el2 |= HCR_RW;
635 }
636 }
637
638 /* Set the CPU to the desired state */
639 if (env->aarch64) {
640 env->pstate = aarch64_pstate_mode(target_el, true);
641 } else {
642 static const uint32_t mode_for_el[] = {
643 0,
644 ARM_CPU_MODE_SVC,
645 ARM_CPU_MODE_HYP,
646 ARM_CPU_MODE_SVC,
647 };
648
649 cpsr_write(env, mode_for_el[target_el], CPSR_M, CPSRWriteRaw);
650 }
651 }
652
653
654 #if defined(CONFIG_TCG) && !defined(CONFIG_USER_ONLY)
655
656 static inline bool arm_excp_unmasked(CPUState *cs, unsigned int excp_idx,
657 unsigned int target_el,
658 unsigned int cur_el, bool secure,
659 uint64_t hcr_el2)
660 {
661 CPUARMState *env = cpu_env(cs);
662 bool pstate_unmasked;
663 bool unmasked = false;
664
665 /*
666 * Don't take exceptions if they target a lower EL.
667 * This check should catch any exceptions that would not be taken
668 * but left pending.
669 */
670 if (cur_el > target_el) {
671 return false;
672 }
673
674 switch (excp_idx) {
675 case EXCP_FIQ:
676 pstate_unmasked = !(env->daif & PSTATE_F);
677 break;
678
679 case EXCP_IRQ:
680 pstate_unmasked = !(env->daif & PSTATE_I);
681 break;
682
683 case EXCP_VFIQ:
684 if (!(hcr_el2 & HCR_FMO) || (hcr_el2 & HCR_TGE)) {
685 /* VFIQs are only taken when hypervized. */
686 return false;
687 }
688 return !(env->daif & PSTATE_F);
689 case EXCP_VIRQ:
690 if (!(hcr_el2 & HCR_IMO) || (hcr_el2 & HCR_TGE)) {
691 /* VIRQs are only taken when hypervized. */
692 return false;
693 }
694 return !(env->daif & PSTATE_I);
695 case EXCP_VSERR:
696 if (!(hcr_el2 & HCR_AMO) || (hcr_el2 & HCR_TGE)) {
697 /* VIRQs are only taken when hypervized. */
698 return false;
699 }
700 return !(env->daif & PSTATE_A);
701 default:
702 g_assert_not_reached();
703 }
704
705 /*
706 * Use the target EL, current execution state and SCR/HCR settings to
707 * determine whether the corresponding CPSR bit is used to mask the
708 * interrupt.
709 */
710 if ((target_el > cur_el) && (target_el != 1)) {
711 /* Exceptions targeting a higher EL may not be maskable */
712 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
713 switch (target_el) {
714 case 2:
715 /*
716 * According to ARM DDI 0487H.a, an interrupt can be masked
717 * when HCR_E2H and HCR_TGE are both set regardless of the
718 * current Security state. Note that we need to revisit this
719 * part again once we need to support NMI.
720 */
721 if ((hcr_el2 & (HCR_E2H | HCR_TGE)) != (HCR_E2H | HCR_TGE)) {
722 unmasked = true;
723 }
724 break;
725 case 3:
726 /* Interrupt cannot be masked when the target EL is 3 */
727 unmasked = true;
728 break;
729 default:
730 g_assert_not_reached();
731 }
732 } else {
733 /*
734 * The old 32-bit-only environment has a more complicated
735 * masking setup. HCR and SCR bits not only affect interrupt
736 * routing but also change the behaviour of masking.
737 */
738 bool hcr, scr;
739
740 switch (excp_idx) {
741 case EXCP_FIQ:
742 /*
743 * If FIQs are routed to EL3 or EL2 then there are cases where
744 * we override the CPSR.F in determining if the exception is
745 * masked or not. If neither of these are set then we fall back
746 * to the CPSR.F setting otherwise we further assess the state
747 * below.
748 */
749 hcr = hcr_el2 & HCR_FMO;
750 scr = (env->cp15.scr_el3 & SCR_FIQ);
751
752 /*
753 * When EL3 is 32-bit, the SCR.FW bit controls whether the
754 * CPSR.F bit masks FIQ interrupts when taken in non-secure
755 * state. If SCR.FW is set then FIQs can be masked by CPSR.F
756 * when non-secure but only when FIQs are only routed to EL3.
757 */
758 scr = scr && !((env->cp15.scr_el3 & SCR_FW) && !hcr);
759 break;
760 case EXCP_IRQ:
761 /*
762 * When EL3 execution state is 32-bit, if HCR.IMO is set then
763 * we may override the CPSR.I masking when in non-secure state.
764 * The SCR.IRQ setting has already been taken into consideration
765 * when setting the target EL, so it does not have a further
766 * affect here.
767 */
768 hcr = hcr_el2 & HCR_IMO;
769 scr = false;
770 break;
771 default:
772 g_assert_not_reached();
773 }
774
775 if ((scr || hcr) && !secure) {
776 unmasked = true;
777 }
778 }
779 }
780
781 /*
782 * The PSTATE bits only mask the interrupt if we have not overridden the
783 * ability above.
784 */
785 return unmasked || pstate_unmasked;
786 }
787
788 static bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
789 {
790 CPUClass *cc = CPU_GET_CLASS(cs);
791 CPUARMState *env = cpu_env(cs);
792 uint32_t cur_el = arm_current_el(env);
793 bool secure = arm_is_secure(env);
794 uint64_t hcr_el2 = arm_hcr_el2_eff(env);
795 uint32_t target_el;
796 uint32_t excp_idx;
797
798 /* The prioritization of interrupts is IMPLEMENTATION DEFINED. */
799
800 if (interrupt_request & CPU_INTERRUPT_FIQ) {
801 excp_idx = EXCP_FIQ;
802 target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
803 if (arm_excp_unmasked(cs, excp_idx, target_el,
804 cur_el, secure, hcr_el2)) {
805 goto found;
806 }
807 }
808 if (interrupt_request & CPU_INTERRUPT_HARD) {
809 excp_idx = EXCP_IRQ;
810 target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
811 if (arm_excp_unmasked(cs, excp_idx, target_el,
812 cur_el, secure, hcr_el2)) {
813 goto found;
814 }
815 }
816 if (interrupt_request & CPU_INTERRUPT_VIRQ) {
817 excp_idx = EXCP_VIRQ;
818 target_el = 1;
819 if (arm_excp_unmasked(cs, excp_idx, target_el,
820 cur_el, secure, hcr_el2)) {
821 goto found;
822 }
823 }
824 if (interrupt_request & CPU_INTERRUPT_VFIQ) {
825 excp_idx = EXCP_VFIQ;
826 target_el = 1;
827 if (arm_excp_unmasked(cs, excp_idx, target_el,
828 cur_el, secure, hcr_el2)) {
829 goto found;
830 }
831 }
832 if (interrupt_request & CPU_INTERRUPT_VSERR) {
833 excp_idx = EXCP_VSERR;
834 target_el = 1;
835 if (arm_excp_unmasked(cs, excp_idx, target_el,
836 cur_el, secure, hcr_el2)) {
837 /* Taking a virtual abort clears HCR_EL2.VSE */
838 env->cp15.hcr_el2 &= ~HCR_VSE;
839 cpu_reset_interrupt(cs, CPU_INTERRUPT_VSERR);
840 goto found;
841 }
842 }
843 return false;
844
845 found:
846 cs->exception_index = excp_idx;
847 env->exception.target_el = target_el;
848 cc->tcg_ops->do_interrupt(cs);
849 return true;
850 }
851
852 #endif /* CONFIG_TCG && !CONFIG_USER_ONLY */
853
854 void arm_cpu_update_virq(ARMCPU *cpu)
855 {
856 /*
857 * Update the interrupt level for VIRQ, which is the logical OR of
858 * the HCR_EL2.VI bit and the input line level from the GIC.
859 */
860 CPUARMState *env = &cpu->env;
861 CPUState *cs = CPU(cpu);
862
863 bool new_state = (env->cp15.hcr_el2 & HCR_VI) ||
864 (env->irq_line_state & CPU_INTERRUPT_VIRQ);
865
866 if (new_state != ((cs->interrupt_request & CPU_INTERRUPT_VIRQ) != 0)) {
867 if (new_state) {
868 cpu_interrupt(cs, CPU_INTERRUPT_VIRQ);
869 } else {
870 cpu_reset_interrupt(cs, CPU_INTERRUPT_VIRQ);
871 }
872 }
873 }
874
875 void arm_cpu_update_vfiq(ARMCPU *cpu)
876 {
877 /*
878 * Update the interrupt level for VFIQ, which is the logical OR of
879 * the HCR_EL2.VF bit and the input line level from the GIC.
880 */
881 CPUARMState *env = &cpu->env;
882 CPUState *cs = CPU(cpu);
883
884 bool new_state = (env->cp15.hcr_el2 & HCR_VF) ||
885 (env->irq_line_state & CPU_INTERRUPT_VFIQ);
886
887 if (new_state != ((cs->interrupt_request & CPU_INTERRUPT_VFIQ) != 0)) {
888 if (new_state) {
889 cpu_interrupt(cs, CPU_INTERRUPT_VFIQ);
890 } else {
891 cpu_reset_interrupt(cs, CPU_INTERRUPT_VFIQ);
892 }
893 }
894 }
895
896 void arm_cpu_update_vserr(ARMCPU *cpu)
897 {
898 /*
899 * Update the interrupt level for VSERR, which is the HCR_EL2.VSE bit.
900 */
901 CPUARMState *env = &cpu->env;
902 CPUState *cs = CPU(cpu);
903
904 bool new_state = env->cp15.hcr_el2 & HCR_VSE;
905
906 if (new_state != ((cs->interrupt_request & CPU_INTERRUPT_VSERR) != 0)) {
907 if (new_state) {
908 cpu_interrupt(cs, CPU_INTERRUPT_VSERR);
909 } else {
910 cpu_reset_interrupt(cs, CPU_INTERRUPT_VSERR);
911 }
912 }
913 }
914
915 #ifndef CONFIG_USER_ONLY
916 static void arm_cpu_set_irq(void *opaque, int irq, int level)
917 {
918 ARMCPU *cpu = opaque;
919 CPUARMState *env = &cpu->env;
920 CPUState *cs = CPU(cpu);
921 static const int mask[] = {
922 [ARM_CPU_IRQ] = CPU_INTERRUPT_HARD,
923 [ARM_CPU_FIQ] = CPU_INTERRUPT_FIQ,
924 [ARM_CPU_VIRQ] = CPU_INTERRUPT_VIRQ,
925 [ARM_CPU_VFIQ] = CPU_INTERRUPT_VFIQ
926 };
927
928 if (!arm_feature(env, ARM_FEATURE_EL2) &&
929 (irq == ARM_CPU_VIRQ || irq == ARM_CPU_VFIQ)) {
930 /*
931 * The GIC might tell us about VIRQ and VFIQ state, but if we don't
932 * have EL2 support we don't care. (Unless the guest is doing something
933 * silly this will only be calls saying "level is still 0".)
934 */
935 return;
936 }
937
938 if (level) {
939 env->irq_line_state |= mask[irq];
940 } else {
941 env->irq_line_state &= ~mask[irq];
942 }
943
944 switch (irq) {
945 case ARM_CPU_VIRQ:
946 arm_cpu_update_virq(cpu);
947 break;
948 case ARM_CPU_VFIQ:
949 arm_cpu_update_vfiq(cpu);
950 break;
951 case ARM_CPU_IRQ:
952 case ARM_CPU_FIQ:
953 if (level) {
954 cpu_interrupt(cs, mask[irq]);
955 } else {
956 cpu_reset_interrupt(cs, mask[irq]);
957 }
958 break;
959 default:
960 g_assert_not_reached();
961 }
962 }
963
964 static void arm_cpu_kvm_set_irq(void *opaque, int irq, int level)
965 {
966 #ifdef CONFIG_KVM
967 ARMCPU *cpu = opaque;
968 CPUARMState *env = &cpu->env;
969 CPUState *cs = CPU(cpu);
970 uint32_t linestate_bit;
971 int irq_id;
972
973 switch (irq) {
974 case ARM_CPU_IRQ:
975 irq_id = KVM_ARM_IRQ_CPU_IRQ;
976 linestate_bit = CPU_INTERRUPT_HARD;
977 break;
978 case ARM_CPU_FIQ:
979 irq_id = KVM_ARM_IRQ_CPU_FIQ;
980 linestate_bit = CPU_INTERRUPT_FIQ;
981 break;
982 default:
983 g_assert_not_reached();
984 }
985
986 if (level) {
987 env->irq_line_state |= linestate_bit;
988 } else {
989 env->irq_line_state &= ~linestate_bit;
990 }
991 kvm_arm_set_irq(cs->cpu_index, KVM_ARM_IRQ_TYPE_CPU, irq_id, !!level);
992 #endif
993 }
994
995 static bool arm_cpu_virtio_is_big_endian(CPUState *cs)
996 {
997 ARMCPU *cpu = ARM_CPU(cs);
998 CPUARMState *env = &cpu->env;
999
1000 cpu_synchronize_state(cs);
1001 return arm_cpu_data_is_big_endian(env);
1002 }
1003
1004 #endif
1005
1006 static void arm_disas_set_info(CPUState *cpu, disassemble_info *info)
1007 {
1008 ARMCPU *ac = ARM_CPU(cpu);
1009 CPUARMState *env = &ac->env;
1010 bool sctlr_b;
1011
1012 if (is_a64(env)) {
1013 info->cap_arch = CS_ARCH_ARM64;
1014 info->cap_insn_unit = 4;
1015 info->cap_insn_split = 4;
1016 } else {
1017 int cap_mode;
1018 if (env->thumb) {
1019 info->cap_insn_unit = 2;
1020 info->cap_insn_split = 4;
1021 cap_mode = CS_MODE_THUMB;
1022 } else {
1023 info->cap_insn_unit = 4;
1024 info->cap_insn_split = 4;
1025 cap_mode = CS_MODE_ARM;
1026 }
1027 if (arm_feature(env, ARM_FEATURE_V8)) {
1028 cap_mode |= CS_MODE_V8;
1029 }
1030 if (arm_feature(env, ARM_FEATURE_M)) {
1031 cap_mode |= CS_MODE_MCLASS;
1032 }
1033 info->cap_arch = CS_ARCH_ARM;
1034 info->cap_mode = cap_mode;
1035 }
1036
1037 sctlr_b = arm_sctlr_b(env);
1038 if (bswap_code(sctlr_b)) {
1039 #if TARGET_BIG_ENDIAN
1040 info->endian = BFD_ENDIAN_LITTLE;
1041 #else
1042 info->endian = BFD_ENDIAN_BIG;
1043 #endif
1044 }
1045 info->flags &= ~INSN_ARM_BE32;
1046 #ifndef CONFIG_USER_ONLY
1047 if (sctlr_b) {
1048 info->flags |= INSN_ARM_BE32;
1049 }
1050 #endif
1051 }
1052
1053 #ifdef TARGET_AARCH64
1054
1055 static void aarch64_cpu_dump_state(CPUState *cs, FILE *f, int flags)
1056 {
1057 ARMCPU *cpu = ARM_CPU(cs);
1058 CPUARMState *env = &cpu->env;
1059 uint32_t psr = pstate_read(env);
1060 int i, j;
1061 int el = arm_current_el(env);
1062 const char *ns_status;
1063 bool sve;
1064
1065 qemu_fprintf(f, " PC=%016" PRIx64 " ", env->pc);
1066 for (i = 0; i < 32; i++) {
1067 if (i == 31) {
1068 qemu_fprintf(f, " SP=%016" PRIx64 "\n", env->xregs[i]);
1069 } else {
1070 qemu_fprintf(f, "X%02d=%016" PRIx64 "%s", i, env->xregs[i],
1071 (i + 2) % 3 ? " " : "\n");
1072 }
1073 }
1074
1075 if (arm_feature(env, ARM_FEATURE_EL3) && el != 3) {
1076 ns_status = env->cp15.scr_el3 & SCR_NS ? "NS " : "S ";
1077 } else {
1078 ns_status = "";
1079 }
1080 qemu_fprintf(f, "PSTATE=%08x %c%c%c%c %sEL%d%c",
1081 psr,
1082 psr & PSTATE_N ? 'N' : '-',
1083 psr & PSTATE_Z ? 'Z' : '-',
1084 psr & PSTATE_C ? 'C' : '-',
1085 psr & PSTATE_V ? 'V' : '-',
1086 ns_status,
1087 el,
1088 psr & PSTATE_SP ? 'h' : 't');
1089
1090 if (cpu_isar_feature(aa64_sme, cpu)) {
1091 qemu_fprintf(f, " SVCR=%08" PRIx64 " %c%c",
1092 env->svcr,
1093 (FIELD_EX64(env->svcr, SVCR, ZA) ? 'Z' : '-'),
1094 (FIELD_EX64(env->svcr, SVCR, SM) ? 'S' : '-'));
1095 }
1096 if (cpu_isar_feature(aa64_bti, cpu)) {
1097 qemu_fprintf(f, " BTYPE=%d", (psr & PSTATE_BTYPE) >> 10);
1098 }
1099 if (!(flags & CPU_DUMP_FPU)) {
1100 qemu_fprintf(f, "\n");
1101 return;
1102 }
1103 if (fp_exception_el(env, el) != 0) {
1104 qemu_fprintf(f, " FPU disabled\n");
1105 return;
1106 }
1107 qemu_fprintf(f, " FPCR=%08x FPSR=%08x\n",
1108 vfp_get_fpcr(env), vfp_get_fpsr(env));
1109
1110 if (cpu_isar_feature(aa64_sme, cpu) && FIELD_EX64(env->svcr, SVCR, SM)) {
1111 sve = sme_exception_el(env, el) == 0;
1112 } else if (cpu_isar_feature(aa64_sve, cpu)) {
1113 sve = sve_exception_el(env, el) == 0;
1114 } else {
1115 sve = false;
1116 }
1117
1118 if (sve) {
1119 int zcr_len = sve_vqm1_for_el(env, el);
1120
1121 for (i = 0; i <= FFR_PRED_NUM; i++) {
1122 bool eol;
1123 if (i == FFR_PRED_NUM) {
1124 qemu_fprintf(f, "FFR=");
1125 /* It's last, so end the line. */
1126 eol = true;
1127 } else {
1128 qemu_fprintf(f, "P%02d=", i);
1129 switch (zcr_len) {
1130 case 0:
1131 eol = i % 8 == 7;
1132 break;
1133 case 1:
1134 eol = i % 6 == 5;
1135 break;
1136 case 2:
1137 case 3:
1138 eol = i % 3 == 2;
1139 break;
1140 default:
1141 /* More than one quadword per predicate. */
1142 eol = true;
1143 break;
1144 }
1145 }
1146 for (j = zcr_len / 4; j >= 0; j--) {
1147 int digits;
1148 if (j * 4 + 4 <= zcr_len + 1) {
1149 digits = 16;
1150 } else {
1151 digits = (zcr_len % 4 + 1) * 4;
1152 }
1153 qemu_fprintf(f, "%0*" PRIx64 "%s", digits,
1154 env->vfp.pregs[i].p[j],
1155 j ? ":" : eol ? "\n" : " ");
1156 }
1157 }
1158
1159 if (zcr_len == 0) {
1160 /*
1161 * With vl=16, there are only 37 columns per register,
1162 * so output two registers per line.
1163 */
1164 for (i = 0; i < 32; i++) {
1165 qemu_fprintf(f, "Z%02d=%016" PRIx64 ":%016" PRIx64 "%s",
1166 i, env->vfp.zregs[i].d[1],
1167 env->vfp.zregs[i].d[0], i & 1 ? "\n" : " ");
1168 }
1169 } else {
1170 for (i = 0; i < 32; i++) {
1171 qemu_fprintf(f, "Z%02d=", i);
1172 for (j = zcr_len; j >= 0; j--) {
1173 qemu_fprintf(f, "%016" PRIx64 ":%016" PRIx64 "%s",
1174 env->vfp.zregs[i].d[j * 2 + 1],
1175 env->vfp.zregs[i].d[j * 2 + 0],
1176 j ? ":" : "\n");
1177 }
1178 }
1179 }
1180 } else {
1181 for (i = 0; i < 32; i++) {
1182 uint64_t *q = aa64_vfp_qreg(env, i);
1183 qemu_fprintf(f, "Q%02d=%016" PRIx64 ":%016" PRIx64 "%s",
1184 i, q[1], q[0], (i & 1 ? "\n" : " "));
1185 }
1186 }
1187
1188 if (cpu_isar_feature(aa64_sme, cpu) &&
1189 FIELD_EX64(env->svcr, SVCR, ZA) &&
1190 sme_exception_el(env, el) == 0) {
1191 int zcr_len = sve_vqm1_for_el_sm(env, el, true);
1192 int svl = (zcr_len + 1) * 16;
1193 int svl_lg10 = svl < 100 ? 2 : 3;
1194
1195 for (i = 0; i < svl; i++) {
1196 qemu_fprintf(f, "ZA[%0*d]=", svl_lg10, i);
1197 for (j = zcr_len; j >= 0; --j) {
1198 qemu_fprintf(f, "%016" PRIx64 ":%016" PRIx64 "%c",
1199 env->zarray[i].d[2 * j + 1],
1200 env->zarray[i].d[2 * j],
1201 j ? ':' : '\n');
1202 }
1203 }
1204 }
1205 }
1206
1207 #else
1208
1209 static inline void aarch64_cpu_dump_state(CPUState *cs, FILE *f, int flags)
1210 {
1211 g_assert_not_reached();
1212 }
1213
1214 #endif
1215
1216 static void arm_cpu_dump_state(CPUState *cs, FILE *f, int flags)
1217 {
1218 ARMCPU *cpu = ARM_CPU(cs);
1219 CPUARMState *env = &cpu->env;
1220 int i;
1221
1222 if (is_a64(env)) {
1223 aarch64_cpu_dump_state(cs, f, flags);
1224 return;
1225 }
1226
1227 for (i = 0; i < 16; i++) {
1228 qemu_fprintf(f, "R%02d=%08x", i, env->regs[i]);
1229 if ((i % 4) == 3) {
1230 qemu_fprintf(f, "\n");
1231 } else {
1232 qemu_fprintf(f, " ");
1233 }
1234 }
1235
1236 if (arm_feature(env, ARM_FEATURE_M)) {
1237 uint32_t xpsr = xpsr_read(env);
1238 const char *mode;
1239 const char *ns_status = "";
1240
1241 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1242 ns_status = env->v7m.secure ? "S " : "NS ";
1243 }
1244
1245 if (xpsr & XPSR_EXCP) {
1246 mode = "handler";
1247 } else {
1248 if (env->v7m.control[env->v7m.secure] & R_V7M_CONTROL_NPRIV_MASK) {
1249 mode = "unpriv-thread";
1250 } else {
1251 mode = "priv-thread";
1252 }
1253 }
1254
1255 qemu_fprintf(f, "XPSR=%08x %c%c%c%c %c %s%s\n",
1256 xpsr,
1257 xpsr & XPSR_N ? 'N' : '-',
1258 xpsr & XPSR_Z ? 'Z' : '-',
1259 xpsr & XPSR_C ? 'C' : '-',
1260 xpsr & XPSR_V ? 'V' : '-',
1261 xpsr & XPSR_T ? 'T' : 'A',
1262 ns_status,
1263 mode);
1264 } else {
1265 uint32_t psr = cpsr_read(env);
1266 const char *ns_status = "";
1267
1268 if (arm_feature(env, ARM_FEATURE_EL3) &&
1269 (psr & CPSR_M) != ARM_CPU_MODE_MON) {
1270 ns_status = env->cp15.scr_el3 & SCR_NS ? "NS " : "S ";
1271 }
1272
1273 qemu_fprintf(f, "PSR=%08x %c%c%c%c %c %s%s%d\n",
1274 psr,
1275 psr & CPSR_N ? 'N' : '-',
1276 psr & CPSR_Z ? 'Z' : '-',
1277 psr & CPSR_C ? 'C' : '-',
1278 psr & CPSR_V ? 'V' : '-',
1279 psr & CPSR_T ? 'T' : 'A',
1280 ns_status,
1281 aarch32_mode_name(psr), (psr & 0x10) ? 32 : 26);
1282 }
1283
1284 if (flags & CPU_DUMP_FPU) {
1285 int numvfpregs = 0;
1286 if (cpu_isar_feature(aa32_simd_r32, cpu)) {
1287 numvfpregs = 32;
1288 } else if (cpu_isar_feature(aa32_vfp_simd, cpu)) {
1289 numvfpregs = 16;
1290 }
1291 for (i = 0; i < numvfpregs; i++) {
1292 uint64_t v = *aa32_vfp_dreg(env, i);
1293 qemu_fprintf(f, "s%02d=%08x s%02d=%08x d%02d=%016" PRIx64 "\n",
1294 i * 2, (uint32_t)v,
1295 i * 2 + 1, (uint32_t)(v >> 32),
1296 i, v);
1297 }
1298 qemu_fprintf(f, "FPSCR: %08x\n", vfp_get_fpscr(env));
1299 if (cpu_isar_feature(aa32_mve, cpu)) {
1300 qemu_fprintf(f, "VPR: %08x\n", env->v7m.vpr);
1301 }
1302 }
1303 }
1304
1305 uint64_t arm_cpu_mp_affinity(int idx, uint8_t clustersz)
1306 {
1307 uint32_t Aff1 = idx / clustersz;
1308 uint32_t Aff0 = idx % clustersz;
1309 return (Aff1 << ARM_AFF1_SHIFT) | Aff0;
1310 }
1311
1312 static void arm_cpu_initfn(Object *obj)
1313 {
1314 ARMCPU *cpu = ARM_CPU(obj);
1315
1316 cpu->cp_regs = g_hash_table_new_full(g_direct_hash, g_direct_equal,
1317 NULL, g_free);
1318
1319 QLIST_INIT(&cpu->pre_el_change_hooks);
1320 QLIST_INIT(&cpu->el_change_hooks);
1321
1322 #ifdef CONFIG_USER_ONLY
1323 # ifdef TARGET_AARCH64
1324 /*
1325 * The linux kernel defaults to 512-bit for SVE, and 256-bit for SME.
1326 * These values were chosen to fit within the default signal frame.
1327 * See documentation for /proc/sys/abi/{sve,sme}_default_vector_length,
1328 * and our corresponding cpu property.
1329 */
1330 cpu->sve_default_vq = 4;
1331 cpu->sme_default_vq = 2;
1332 # endif
1333 #else
1334 /* Our inbound IRQ and FIQ lines */
1335 if (kvm_enabled()) {
1336 /* VIRQ and VFIQ are unused with KVM but we add them to maintain
1337 * the same interface as non-KVM CPUs.
1338 */
1339 qdev_init_gpio_in(DEVICE(cpu), arm_cpu_kvm_set_irq, 4);
1340 } else {
1341 qdev_init_gpio_in(DEVICE(cpu), arm_cpu_set_irq, 4);
1342 }
1343
1344 qdev_init_gpio_out(DEVICE(cpu), cpu->gt_timer_outputs,
1345 ARRAY_SIZE(cpu->gt_timer_outputs));
1346
1347 qdev_init_gpio_out_named(DEVICE(cpu), &cpu->gicv3_maintenance_interrupt,
1348 "gicv3-maintenance-interrupt", 1);
1349 qdev_init_gpio_out_named(DEVICE(cpu), &cpu->pmu_interrupt,
1350 "pmu-interrupt", 1);
1351 #endif
1352
1353 /* DTB consumers generally don't in fact care what the 'compatible'
1354 * string is, so always provide some string and trust that a hypothetical
1355 * picky DTB consumer will also provide a helpful error message.
1356 */
1357 cpu->dtb_compatible = "qemu,unknown";
1358 cpu->psci_version = QEMU_PSCI_VERSION_0_1; /* By default assume PSCI v0.1 */
1359 cpu->kvm_target = QEMU_KVM_ARM_TARGET_NONE;
1360
1361 if (tcg_enabled() || hvf_enabled()) {
1362 /* TCG and HVF implement PSCI 1.1 */
1363 cpu->psci_version = QEMU_PSCI_VERSION_1_1;
1364 }
1365 }
1366
1367 static Property arm_cpu_gt_cntfrq_property =
1368 DEFINE_PROP_UINT64("cntfrq", ARMCPU, gt_cntfrq_hz,
1369 NANOSECONDS_PER_SECOND / GTIMER_SCALE);
1370
1371 static Property arm_cpu_reset_cbar_property =
1372 DEFINE_PROP_UINT64("reset-cbar", ARMCPU, reset_cbar, 0);
1373
1374 static Property arm_cpu_reset_hivecs_property =
1375 DEFINE_PROP_BOOL("reset-hivecs", ARMCPU, reset_hivecs, false);
1376
1377 #ifndef CONFIG_USER_ONLY
1378 static Property arm_cpu_has_el2_property =
1379 DEFINE_PROP_BOOL("has_el2", ARMCPU, has_el2, true);
1380
1381 static Property arm_cpu_has_el3_property =
1382 DEFINE_PROP_BOOL("has_el3", ARMCPU, has_el3, true);
1383 #endif
1384
1385 static Property arm_cpu_cfgend_property =
1386 DEFINE_PROP_BOOL("cfgend", ARMCPU, cfgend, false);
1387
1388 static Property arm_cpu_has_vfp_property =
1389 DEFINE_PROP_BOOL("vfp", ARMCPU, has_vfp, true);
1390
1391 static Property arm_cpu_has_vfp_d32_property =
1392 DEFINE_PROP_BOOL("vfp-d32", ARMCPU, has_vfp_d32, true);
1393
1394 static Property arm_cpu_has_neon_property =
1395 DEFINE_PROP_BOOL("neon", ARMCPU, has_neon, true);
1396
1397 static Property arm_cpu_has_dsp_property =
1398 DEFINE_PROP_BOOL("dsp", ARMCPU, has_dsp, true);
1399
1400 static Property arm_cpu_has_mpu_property =
1401 DEFINE_PROP_BOOL("has-mpu", ARMCPU, has_mpu, true);
1402
1403 /* This is like DEFINE_PROP_UINT32 but it doesn't set the default value,
1404 * because the CPU initfn will have already set cpu->pmsav7_dregion to
1405 * the right value for that particular CPU type, and we don't want
1406 * to override that with an incorrect constant value.
1407 */
1408 static Property arm_cpu_pmsav7_dregion_property =
1409 DEFINE_PROP_UNSIGNED_NODEFAULT("pmsav7-dregion", ARMCPU,
1410 pmsav7_dregion,
1411 qdev_prop_uint32, uint32_t);
1412
1413 static bool arm_get_pmu(Object *obj, Error **errp)
1414 {
1415 ARMCPU *cpu = ARM_CPU(obj);
1416
1417 return cpu->has_pmu;
1418 }
1419
1420 static void arm_set_pmu(Object *obj, bool value, Error **errp)
1421 {
1422 ARMCPU *cpu = ARM_CPU(obj);
1423
1424 if (value) {
1425 if (kvm_enabled() && !kvm_arm_pmu_supported()) {
1426 error_setg(errp, "'pmu' feature not supported by KVM on this host");
1427 return;
1428 }
1429 set_feature(&cpu->env, ARM_FEATURE_PMU);
1430 } else {
1431 unset_feature(&cpu->env, ARM_FEATURE_PMU);
1432 }
1433 cpu->has_pmu = value;
1434 }
1435
1436 unsigned int gt_cntfrq_period_ns(ARMCPU *cpu)
1437 {
1438 /*
1439 * The exact approach to calculating guest ticks is:
1440 *
1441 * muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), cpu->gt_cntfrq_hz,
1442 * NANOSECONDS_PER_SECOND);
1443 *
1444 * We don't do that. Rather we intentionally use integer division
1445 * truncation below and in the caller for the conversion of host monotonic
1446 * time to guest ticks to provide the exact inverse for the semantics of
1447 * the QEMUTimer scale factor. QEMUTimer's scale facter is an integer, so
1448 * it loses precision when representing frequencies where
1449 * `(NANOSECONDS_PER_SECOND % cpu->gt_cntfrq) > 0` holds. Failing to
1450 * provide an exact inverse leads to scheduling timers with negative
1451 * periods, which in turn leads to sticky behaviour in the guest.
1452 *
1453 * Finally, CNTFRQ is effectively capped at 1GHz to ensure our scale factor
1454 * cannot become zero.
1455 */
1456 return NANOSECONDS_PER_SECOND > cpu->gt_cntfrq_hz ?
1457 NANOSECONDS_PER_SECOND / cpu->gt_cntfrq_hz : 1;
1458 }
1459
1460 static void arm_cpu_propagate_feature_implications(ARMCPU *cpu)
1461 {
1462 CPUARMState *env = &cpu->env;
1463 bool no_aa32 = false;
1464
1465 /*
1466 * Some features automatically imply others: set the feature
1467 * bits explicitly for these cases.
1468 */
1469
1470 if (arm_feature(env, ARM_FEATURE_M)) {
1471 set_feature(env, ARM_FEATURE_PMSA);
1472 }
1473
1474 if (arm_feature(env, ARM_FEATURE_V8)) {
1475 if (arm_feature(env, ARM_FEATURE_M)) {
1476 set_feature(env, ARM_FEATURE_V7);
1477 } else {
1478 set_feature(env, ARM_FEATURE_V7VE);
1479 }
1480 }
1481
1482 /*
1483 * There exist AArch64 cpus without AArch32 support. When KVM
1484 * queries ID_ISAR0_EL1 on such a host, the value is UNKNOWN.
1485 * Similarly, we cannot check ID_AA64PFR0 without AArch64 support.
1486 * As a general principle, we also do not make ID register
1487 * consistency checks anywhere unless using TCG, because only
1488 * for TCG would a consistency-check failure be a QEMU bug.
1489 */
1490 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
1491 no_aa32 = !cpu_isar_feature(aa64_aa32, cpu);
1492 }
1493
1494 if (arm_feature(env, ARM_FEATURE_V7VE)) {
1495 /*
1496 * v7 Virtualization Extensions. In real hardware this implies
1497 * EL2 and also the presence of the Security Extensions.
1498 * For QEMU, for backwards-compatibility we implement some
1499 * CPUs or CPU configs which have no actual EL2 or EL3 but do
1500 * include the various other features that V7VE implies.
1501 * Presence of EL2 itself is ARM_FEATURE_EL2, and of the
1502 * Security Extensions is ARM_FEATURE_EL3.
1503 */
1504 assert(!tcg_enabled() || no_aa32 ||
1505 cpu_isar_feature(aa32_arm_div, cpu));
1506 set_feature(env, ARM_FEATURE_LPAE);
1507 set_feature(env, ARM_FEATURE_V7);
1508 }
1509 if (arm_feature(env, ARM_FEATURE_V7)) {
1510 set_feature(env, ARM_FEATURE_VAPA);
1511 set_feature(env, ARM_FEATURE_THUMB2);
1512 set_feature(env, ARM_FEATURE_MPIDR);
1513 if (!arm_feature(env, ARM_FEATURE_M)) {
1514 set_feature(env, ARM_FEATURE_V6K);
1515 } else {
1516 set_feature(env, ARM_FEATURE_V6);
1517 }
1518
1519 /*
1520 * Always define VBAR for V7 CPUs even if it doesn't exist in
1521 * non-EL3 configs. This is needed by some legacy boards.
1522 */
1523 set_feature(env, ARM_FEATURE_VBAR);
1524 }
1525 if (arm_feature(env, ARM_FEATURE_V6K)) {
1526 set_feature(env, ARM_FEATURE_V6);
1527 set_feature(env, ARM_FEATURE_MVFR);
1528 }
1529 if (arm_feature(env, ARM_FEATURE_V6)) {
1530 set_feature(env, ARM_FEATURE_V5);
1531 if (!arm_feature(env, ARM_FEATURE_M)) {
1532 assert(!tcg_enabled() || no_aa32 ||
1533 cpu_isar_feature(aa32_jazelle, cpu));
1534 set_feature(env, ARM_FEATURE_AUXCR);
1535 }
1536 }
1537 if (arm_feature(env, ARM_FEATURE_V5)) {
1538 set_feature(env, ARM_FEATURE_V4T);
1539 }
1540 if (arm_feature(env, ARM_FEATURE_LPAE)) {
1541 set_feature(env, ARM_FEATURE_V7MP);
1542 }
1543 if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
1544 set_feature(env, ARM_FEATURE_CBAR);
1545 }
1546 if (arm_feature(env, ARM_FEATURE_THUMB2) &&
1547 !arm_feature(env, ARM_FEATURE_M)) {
1548 set_feature(env, ARM_FEATURE_THUMB_DSP);
1549 }
1550 }
1551
1552 void arm_cpu_post_init(Object *obj)
1553 {
1554 ARMCPU *cpu = ARM_CPU(obj);
1555
1556 /*
1557 * Some features imply others. Figure this out now, because we
1558 * are going to look at the feature bits in deciding which
1559 * properties to add.
1560 */
1561 arm_cpu_propagate_feature_implications(cpu);
1562
1563 if (arm_feature(&cpu->env, ARM_FEATURE_CBAR) ||
1564 arm_feature(&cpu->env, ARM_FEATURE_CBAR_RO)) {
1565 qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_cbar_property);
1566 }
1567
1568 if (!arm_feature(&cpu->env, ARM_FEATURE_M)) {
1569 qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_hivecs_property);
1570 }
1571
1572 if (arm_feature(&cpu->env, ARM_FEATURE_V8)) {
1573 object_property_add_uint64_ptr(obj, "rvbar",
1574 &cpu->rvbar_prop,
1575 OBJ_PROP_FLAG_READWRITE);
1576 }
1577
1578 #ifndef CONFIG_USER_ONLY
1579 if (arm_feature(&cpu->env, ARM_FEATURE_EL3)) {
1580 /* Add the has_el3 state CPU property only if EL3 is allowed. This will
1581 * prevent "has_el3" from existing on CPUs which cannot support EL3.
1582 */
1583 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el3_property);
1584
1585 object_property_add_link(obj, "secure-memory",
1586 TYPE_MEMORY_REGION,
1587 (Object **)&cpu->secure_memory,
1588 qdev_prop_allow_set_link_before_realize,
1589 OBJ_PROP_LINK_STRONG);
1590 }
1591
1592 if (arm_feature(&cpu->env, ARM_FEATURE_EL2)) {
1593 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el2_property);
1594 }
1595 #endif
1596
1597 if (arm_feature(&cpu->env, ARM_FEATURE_PMU)) {
1598 cpu->has_pmu = true;
1599 object_property_add_bool(obj, "pmu", arm_get_pmu, arm_set_pmu);
1600 }
1601
1602 /*
1603 * Allow user to turn off VFP and Neon support, but only for TCG --
1604 * KVM does not currently allow us to lie to the guest about its
1605 * ID/feature registers, so the guest always sees what the host has.
1606 */
1607 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
1608 if (cpu_isar_feature(aa64_fp_simd, cpu)) {
1609 cpu->has_vfp = true;
1610 cpu->has_vfp_d32 = true;
1611 if (tcg_enabled() || qtest_enabled()) {
1612 qdev_property_add_static(DEVICE(obj),
1613 &arm_cpu_has_vfp_property);
1614 }
1615 }
1616 } else if (cpu_isar_feature(aa32_vfp, cpu)) {
1617 cpu->has_vfp = true;
1618 if (cpu_isar_feature(aa32_simd_r32, cpu)) {
1619 cpu->has_vfp_d32 = true;
1620 /*
1621 * The permitted values of the SIMDReg bits [3:0] on
1622 * Armv8-A are either 0b0000 and 0b0010. On such CPUs,
1623 * make sure that has_vfp_d32 can not be set to false.
1624 */
1625 if ((tcg_enabled() || qtest_enabled())
1626 && !(arm_feature(&cpu->env, ARM_FEATURE_V8)
1627 && !arm_feature(&cpu->env, ARM_FEATURE_M))) {
1628 qdev_property_add_static(DEVICE(obj),
1629 &arm_cpu_has_vfp_d32_property);
1630 }
1631 }
1632 }
1633
1634 if (arm_feature(&cpu->env, ARM_FEATURE_NEON)) {
1635 cpu->has_neon = true;
1636 if (!kvm_enabled()) {
1637 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_neon_property);
1638 }
1639 }
1640
1641 if (arm_feature(&cpu->env, ARM_FEATURE_M) &&
1642 arm_feature(&cpu->env, ARM_FEATURE_THUMB_DSP)) {
1643 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_dsp_property);
1644 }
1645
1646 if (arm_feature(&cpu->env, ARM_FEATURE_PMSA)) {
1647 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_mpu_property);
1648 if (arm_feature(&cpu->env, ARM_FEATURE_V7)) {
1649 qdev_property_add_static(DEVICE(obj),
1650 &arm_cpu_pmsav7_dregion_property);
1651 }
1652 }
1653
1654 if (arm_feature(&cpu->env, ARM_FEATURE_M_SECURITY)) {
1655 object_property_add_link(obj, "idau", TYPE_IDAU_INTERFACE, &cpu->idau,
1656 qdev_prop_allow_set_link_before_realize,
1657 OBJ_PROP_LINK_STRONG);
1658 /*
1659 * M profile: initial value of the Secure VTOR. We can't just use
1660 * a simple DEFINE_PROP_UINT32 for this because we want to permit
1661 * the property to be set after realize.
1662 */
1663 object_property_add_uint32_ptr(obj, "init-svtor",
1664 &cpu->init_svtor,
1665 OBJ_PROP_FLAG_READWRITE);
1666 }
1667 if (arm_feature(&cpu->env, ARM_FEATURE_M)) {
1668 /*
1669 * Initial value of the NS VTOR (for cores without the Security
1670 * extension, this is the only VTOR)
1671 */
1672 object_property_add_uint32_ptr(obj, "init-nsvtor",
1673 &cpu->init_nsvtor,
1674 OBJ_PROP_FLAG_READWRITE);
1675 }
1676
1677 /* Not DEFINE_PROP_UINT32: we want this to be settable after realize */
1678 object_property_add_uint32_ptr(obj, "psci-conduit",
1679 &cpu->psci_conduit,
1680 OBJ_PROP_FLAG_READWRITE);
1681
1682 qdev_property_add_static(DEVICE(obj), &arm_cpu_cfgend_property);
1683
1684 if (arm_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER)) {
1685 qdev_property_add_static(DEVICE(cpu), &arm_cpu_gt_cntfrq_property);
1686 }
1687
1688 if (kvm_enabled()) {
1689 kvm_arm_add_vcpu_properties(obj);
1690 }
1691
1692 #ifndef CONFIG_USER_ONLY
1693 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64) &&
1694 cpu_isar_feature(aa64_mte, cpu)) {
1695 object_property_add_link(obj, "tag-memory",
1696 TYPE_MEMORY_REGION,
1697 (Object **)&cpu->tag_memory,
1698 qdev_prop_allow_set_link_before_realize,
1699 OBJ_PROP_LINK_STRONG);
1700
1701 if (arm_feature(&cpu->env, ARM_FEATURE_EL3)) {
1702 object_property_add_link(obj, "secure-tag-memory",
1703 TYPE_MEMORY_REGION,
1704 (Object **)&cpu->secure_tag_memory,
1705 qdev_prop_allow_set_link_before_realize,
1706 OBJ_PROP_LINK_STRONG);
1707 }
1708 }
1709 #endif
1710 }
1711
1712 static void arm_cpu_finalizefn(Object *obj)
1713 {
1714 ARMCPU *cpu = ARM_CPU(obj);
1715 ARMELChangeHook *hook, *next;
1716
1717 g_hash_table_destroy(cpu->cp_regs);
1718
1719 QLIST_FOREACH_SAFE(hook, &cpu->pre_el_change_hooks, node, next) {
1720 QLIST_REMOVE(hook, node);
1721 g_free(hook);
1722 }
1723 QLIST_FOREACH_SAFE(hook, &cpu->el_change_hooks, node, next) {
1724 QLIST_REMOVE(hook, node);
1725 g_free(hook);
1726 }
1727 #ifndef CONFIG_USER_ONLY
1728 if (cpu->pmu_timer) {
1729 timer_free(cpu->pmu_timer);
1730 }
1731 #endif
1732 }
1733
1734 void arm_cpu_finalize_features(ARMCPU *cpu, Error **errp)
1735 {
1736 Error *local_err = NULL;
1737
1738 #ifdef TARGET_AARCH64
1739 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
1740 arm_cpu_sve_finalize(cpu, &local_err);
1741 if (local_err != NULL) {
1742 error_propagate(errp, local_err);
1743 return;
1744 }
1745
1746 arm_cpu_sme_finalize(cpu, &local_err);
1747 if (local_err != NULL) {
1748 error_propagate(errp, local_err);
1749 return;
1750 }
1751
1752 arm_cpu_pauth_finalize(cpu, &local_err);
1753 if (local_err != NULL) {
1754 error_propagate(errp, local_err);
1755 return;
1756 }
1757
1758 arm_cpu_lpa2_finalize(cpu, &local_err);
1759 if (local_err != NULL) {
1760 error_propagate(errp, local_err);
1761 return;
1762 }
1763 }
1764 #endif
1765
1766 if (kvm_enabled()) {
1767 kvm_arm_steal_time_finalize(cpu, &local_err);
1768 if (local_err != NULL) {
1769 error_propagate(errp, local_err);
1770 return;
1771 }
1772 }
1773 }
1774
1775 static void arm_cpu_realizefn(DeviceState *dev, Error **errp)
1776 {
1777 CPUState *cs = CPU(dev);
1778 ARMCPU *cpu = ARM_CPU(dev);
1779 ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev);
1780 CPUARMState *env = &cpu->env;
1781 int pagebits;
1782 Error *local_err = NULL;
1783
1784 /* Use pc-relative instructions in system-mode */
1785 #ifndef CONFIG_USER_ONLY
1786 cs->tcg_cflags |= CF_PCREL;
1787 #endif
1788
1789 /* If we needed to query the host kernel for the CPU features
1790 * then it's possible that might have failed in the initfn, but
1791 * this is the first point where we can report it.
1792 */
1793 if (cpu->host_cpu_probe_failed) {
1794 if (!kvm_enabled() && !hvf_enabled()) {
1795 error_setg(errp, "The 'host' CPU type can only be used with KVM or HVF");
1796 } else {
1797 error_setg(errp, "Failed to retrieve host CPU features");
1798 }
1799 return;
1800 }
1801
1802 #ifndef CONFIG_USER_ONLY
1803 /* The NVIC and M-profile CPU are two halves of a single piece of
1804 * hardware; trying to use one without the other is a command line
1805 * error and will result in segfaults if not caught here.
1806 */
1807 if (arm_feature(env, ARM_FEATURE_M)) {
1808 if (!env->nvic) {
1809 error_setg(errp, "This board cannot be used with Cortex-M CPUs");
1810 return;
1811 }
1812 } else {
1813 if (env->nvic) {
1814 error_setg(errp, "This board can only be used with Cortex-M CPUs");
1815 return;
1816 }
1817 }
1818
1819 if (!tcg_enabled() && !qtest_enabled()) {
1820 /*
1821 * We assume that no accelerator except TCG (and the "not really an
1822 * accelerator" qtest) can handle these features, because Arm hardware
1823 * virtualization can't virtualize them.
1824 *
1825 * Catch all the cases which might cause us to create more than one
1826 * address space for the CPU (otherwise we will assert() later in
1827 * cpu_address_space_init()).
1828 */
1829 if (arm_feature(env, ARM_FEATURE_M)) {
1830 error_setg(errp,
1831 "Cannot enable %s when using an M-profile guest CPU",
1832 current_accel_name());
1833 return;
1834 }
1835 if (cpu->has_el3) {
1836 error_setg(errp,
1837 "Cannot enable %s when guest CPU has EL3 enabled",
1838 current_accel_name());
1839 return;
1840 }
1841 if (cpu->tag_memory) {
1842 error_setg(errp,
1843 "Cannot enable %s when guest CPUs has MTE enabled",
1844 current_accel_name());
1845 return;
1846 }
1847 }
1848
1849 {
1850 uint64_t scale;
1851
1852 if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) {
1853 if (!cpu->gt_cntfrq_hz) {
1854 error_setg(errp, "Invalid CNTFRQ: %"PRId64"Hz",
1855 cpu->gt_cntfrq_hz);
1856 return;
1857 }
1858 scale = gt_cntfrq_period_ns(cpu);
1859 } else {
1860 scale = GTIMER_SCALE;
1861 }
1862
1863 cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, scale,
1864 arm_gt_ptimer_cb, cpu);
1865 cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale,
1866 arm_gt_vtimer_cb, cpu);
1867 cpu->gt_timer[GTIMER_HYP] = timer_new(QEMU_CLOCK_VIRTUAL, scale,
1868 arm_gt_htimer_cb, cpu);
1869 cpu->gt_timer[GTIMER_SEC] = timer_new(QEMU_CLOCK_VIRTUAL, scale,
1870 arm_gt_stimer_cb, cpu);
1871 cpu->gt_timer[GTIMER_HYPVIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale,
1872 arm_gt_hvtimer_cb, cpu);
1873 }
1874 #endif
1875
1876 cpu_exec_realizefn(cs, &local_err);
1877 if (local_err != NULL) {
1878 error_propagate(errp, local_err);
1879 return;
1880 }
1881
1882 arm_cpu_finalize_features(cpu, &local_err);
1883 if (local_err != NULL) {
1884 error_propagate(errp, local_err);
1885 return;
1886 }
1887
1888 #ifdef CONFIG_USER_ONLY
1889 /*
1890 * User mode relies on IC IVAU instructions to catch modification of
1891 * dual-mapped code.
1892 *
1893 * Clear CTR_EL0.DIC to ensure that software that honors these flags uses
1894 * IC IVAU even if the emulated processor does not normally require it.
1895 */
1896 cpu->ctr = FIELD_DP64(cpu->ctr, CTR_EL0, DIC, 0);
1897 #endif
1898
1899 if (arm_feature(env, ARM_FEATURE_AARCH64) &&
1900 cpu->has_vfp != cpu->has_neon) {
1901 /*
1902 * This is an architectural requirement for AArch64; AArch32 is
1903 * more flexible and permits VFP-no-Neon and Neon-no-VFP.
1904 */
1905 error_setg(errp,
1906 "AArch64 CPUs must have both VFP and Neon or neither");
1907 return;
1908 }
1909
1910 if (cpu->has_vfp_d32 != cpu->has_neon) {
1911 error_setg(errp, "ARM CPUs must have both VFP-D32 and Neon or neither");
1912 return;
1913 }
1914
1915 if (!cpu->has_vfp_d32) {
1916 uint32_t u;
1917
1918 u = cpu->isar.mvfr0;
1919 u = FIELD_DP32(u, MVFR0, SIMDREG, 1); /* 16 registers */
1920 cpu->isar.mvfr0 = u;
1921 }
1922
1923 if (!cpu->has_vfp) {
1924 uint64_t t;
1925 uint32_t u;
1926
1927 t = cpu->isar.id_aa64isar1;
1928 t = FIELD_DP64(t, ID_AA64ISAR1, JSCVT, 0);
1929 cpu->isar.id_aa64isar1 = t;
1930
1931 t = cpu->isar.id_aa64pfr0;
1932 t = FIELD_DP64(t, ID_AA64PFR0, FP, 0xf);
1933 cpu->isar.id_aa64pfr0 = t;
1934
1935 u = cpu->isar.id_isar6;
1936 u = FIELD_DP32(u, ID_ISAR6, JSCVT, 0);
1937 u = FIELD_DP32(u, ID_ISAR6, BF16, 0);
1938 cpu->isar.id_isar6 = u;
1939
1940 u = cpu->isar.mvfr0;
1941 u = FIELD_DP32(u, MVFR0, FPSP, 0);
1942 u = FIELD_DP32(u, MVFR0, FPDP, 0);
1943 u = FIELD_DP32(u, MVFR0, FPDIVIDE, 0);
1944 u = FIELD_DP32(u, MVFR0, FPSQRT, 0);
1945 u = FIELD_DP32(u, MVFR0, FPROUND, 0);
1946 if (!arm_feature(env, ARM_FEATURE_M)) {
1947 u = FIELD_DP32(u, MVFR0, FPTRAP, 0);
1948 u = FIELD_DP32(u, MVFR0, FPSHVEC, 0);
1949 }
1950 cpu->isar.mvfr0 = u;
1951
1952 u = cpu->isar.mvfr1;
1953 u = FIELD_DP32(u, MVFR1, FPFTZ, 0);
1954 u = FIELD_DP32(u, MVFR1, FPDNAN, 0);
1955 u = FIELD_DP32(u, MVFR1, FPHP, 0);
1956 if (arm_feature(env, ARM_FEATURE_M)) {
1957 u = FIELD_DP32(u, MVFR1, FP16, 0);
1958 }
1959 cpu->isar.mvfr1 = u;
1960
1961 u = cpu->isar.mvfr2;
1962 u = FIELD_DP32(u, MVFR2, FPMISC, 0);
1963 cpu->isar.mvfr2 = u;
1964 }
1965
1966 if (!cpu->has_neon) {
1967 uint64_t t;
1968 uint32_t u;
1969
1970 unset_feature(env, ARM_FEATURE_NEON);
1971
1972 t = cpu->isar.id_aa64isar0;
1973 t = FIELD_DP64(t, ID_AA64ISAR0, AES, 0);
1974 t = FIELD_DP64(t, ID_AA64ISAR0, SHA1, 0);
1975 t = FIELD_DP64(t, ID_AA64ISAR0, SHA2, 0);
1976 t = FIELD_DP64(t, ID_AA64ISAR0, SHA3, 0);
1977 t = FIELD_DP64(t, ID_AA64ISAR0, SM3, 0);
1978 t = FIELD_DP64(t, ID_AA64ISAR0, SM4, 0);
1979 t = FIELD_DP64(t, ID_AA64ISAR0, DP, 0);
1980 cpu->isar.id_aa64isar0 = t;
1981
1982 t = cpu->isar.id_aa64isar1;
1983 t = FIELD_DP64(t, ID_AA64ISAR1, FCMA, 0);
1984 t = FIELD_DP64(t, ID_AA64ISAR1, BF16, 0);
1985 t = FIELD_DP64(t, ID_AA64ISAR1, I8MM, 0);
1986 cpu->isar.id_aa64isar1 = t;
1987
1988 t = cpu->isar.id_aa64pfr0;
1989 t = FIELD_DP64(t, ID_AA64PFR0, ADVSIMD, 0xf);
1990 cpu->isar.id_aa64pfr0 = t;
1991
1992 u = cpu->isar.id_isar5;
1993 u = FIELD_DP32(u, ID_ISAR5, AES, 0);
1994 u = FIELD_DP32(u, ID_ISAR5, SHA1, 0);
1995 u = FIELD_DP32(u, ID_ISAR5, SHA2, 0);
1996 u = FIELD_DP32(u, ID_ISAR5, RDM, 0);
1997 u = FIELD_DP32(u, ID_ISAR5, VCMA, 0);
1998 cpu->isar.id_isar5 = u;
1999
2000 u = cpu->isar.id_isar6;
2001 u = FIELD_DP32(u, ID_ISAR6, DP, 0);
2002 u = FIELD_DP32(u, ID_ISAR6, FHM, 0);
2003 u = FIELD_DP32(u, ID_ISAR6, BF16, 0);
2004 u = FIELD_DP32(u, ID_ISAR6, I8MM, 0);
2005 cpu->isar.id_isar6 = u;
2006
2007 if (!arm_feature(env, ARM_FEATURE_M)) {
2008 u = cpu->isar.mvfr1;
2009 u = FIELD_DP32(u, MVFR1, SIMDLS, 0);
2010 u = FIELD_DP32(u, MVFR1, SIMDINT, 0);
2011 u = FIELD_DP32(u, MVFR1, SIMDSP, 0);
2012 u = FIELD_DP32(u, MVFR1, SIMDHP, 0);
2013 cpu->isar.mvfr1 = u;
2014
2015 u = cpu->isar.mvfr2;
2016 u = FIELD_DP32(u, MVFR2, SIMDMISC, 0);
2017 cpu->isar.mvfr2 = u;
2018 }
2019 }
2020
2021 if (!cpu->has_neon && !cpu->has_vfp) {
2022 uint64_t t;
2023 uint32_t u;
2024
2025 t = cpu->isar.id_aa64isar0;
2026 t = FIELD_DP64(t, ID_AA64ISAR0, FHM, 0);
2027 cpu->isar.id_aa64isar0 = t;
2028
2029 t = cpu->isar.id_aa64isar1;
2030 t = FIELD_DP64(t, ID_AA64ISAR1, FRINTTS, 0);
2031 cpu->isar.id_aa64isar1 = t;
2032
2033 u = cpu->isar.mvfr0;
2034 u = FIELD_DP32(u, MVFR0, SIMDREG, 0);
2035 cpu->isar.mvfr0 = u;
2036
2037 /* Despite the name, this field covers both VFP and Neon */
2038 u = cpu->isar.mvfr1;
2039 u = FIELD_DP32(u, MVFR1, SIMDFMAC, 0);
2040 cpu->isar.mvfr1 = u;
2041 }
2042
2043 if (arm_feature(env, ARM_FEATURE_M) && !cpu->has_dsp) {
2044 uint32_t u;
2045
2046 unset_feature(env, ARM_FEATURE_THUMB_DSP);
2047
2048 u = cpu->isar.id_isar1;
2049 u = FIELD_DP32(u, ID_ISAR1, EXTEND, 1);
2050 cpu->isar.id_isar1 = u;
2051
2052 u = cpu->isar.id_isar2;
2053 u = FIELD_DP32(u, ID_ISAR2, MULTU, 1);
2054 u = FIELD_DP32(u, ID_ISAR2, MULTS, 1);
2055 cpu->isar.id_isar2 = u;
2056
2057 u = cpu->isar.id_isar3;
2058 u = FIELD_DP32(u, ID_ISAR3, SIMD, 1);
2059 u = FIELD_DP32(u, ID_ISAR3, SATURATE, 0);
2060 cpu->isar.id_isar3 = u;
2061 }
2062
2063
2064 /*
2065 * We rely on no XScale CPU having VFP so we can use the same bits in the
2066 * TB flags field for VECSTRIDE and XSCALE_CPAR.
2067 */
2068 assert(arm_feature(&cpu->env, ARM_FEATURE_AARCH64) ||
2069 !cpu_isar_feature(aa32_vfp_simd, cpu) ||
2070 !arm_feature(env, ARM_FEATURE_XSCALE));
2071
2072 if (arm_feature(env, ARM_FEATURE_V7) &&
2073 !arm_feature(env, ARM_FEATURE_M) &&
2074 !arm_feature(env, ARM_FEATURE_PMSA)) {
2075 /* v7VMSA drops support for the old ARMv5 tiny pages, so we
2076 * can use 4K pages.
2077 */
2078 pagebits = 12;
2079 } else {
2080 /* For CPUs which might have tiny 1K pages, or which have an
2081 * MPU and might have small region sizes, stick with 1K pages.
2082 */
2083 pagebits = 10;
2084 }
2085 if (!set_preferred_target_page_bits(pagebits)) {
2086 /* This can only ever happen for hotplugging a CPU, or if
2087 * the board code incorrectly creates a CPU which it has
2088 * promised via minimum_page_size that it will not.
2089 */
2090 error_setg(errp, "This CPU requires a smaller page size than the "
2091 "system is using");
2092 return;
2093 }
2094
2095 /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it.
2096 * We don't support setting cluster ID ([16..23]) (known as Aff2
2097 * in later ARM ARM versions), or any of the higher affinity level fields,
2098 * so these bits always RAZ.
2099 */
2100 if (cpu->mp_affinity == ARM64_AFFINITY_INVALID) {
2101 cpu->mp_affinity = arm_cpu_mp_affinity(cs->cpu_index,
2102 ARM_DEFAULT_CPUS_PER_CLUSTER);
2103 }
2104
2105 if (cpu->reset_hivecs) {
2106 cpu->reset_sctlr |= (1 << 13);
2107 }
2108
2109 if (cpu->cfgend) {
2110 if (arm_feature(&cpu->env, ARM_FEATURE_V7)) {
2111 cpu->reset_sctlr |= SCTLR_EE;
2112 } else {
2113 cpu->reset_sctlr |= SCTLR_B;
2114 }
2115 }
2116
2117 if (!arm_feature(env, ARM_FEATURE_M) && !cpu->has_el3) {
2118 /* If the has_el3 CPU property is disabled then we need to disable the
2119 * feature.
2120 */
2121 unset_feature(env, ARM_FEATURE_EL3);
2122
2123 /*
2124 * Disable the security extension feature bits in the processor
2125 * feature registers as well.
2126 */
2127 cpu->isar.id_pfr1 = FIELD_DP32(cpu->isar.id_pfr1, ID_PFR1, SECURITY, 0);
2128 cpu->isar.id_dfr0 = FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, COPSDBG, 0);
2129 cpu->isar.id_aa64pfr0 = FIELD_DP64(cpu->isar.id_aa64pfr0,
2130 ID_AA64PFR0, EL3, 0);
2131
2132 /* Disable the realm management extension, which requires EL3. */
2133 cpu->isar.id_aa64pfr0 = FIELD_DP64(cpu->isar.id_aa64pfr0,
2134 ID_AA64PFR0, RME, 0);
2135 }
2136
2137 if (!cpu->has_el2) {
2138 unset_feature(env, ARM_FEATURE_EL2);
2139 }
2140
2141 if (!cpu->has_pmu) {
2142 unset_feature(env, ARM_FEATURE_PMU);
2143 }
2144 if (arm_feature(env, ARM_FEATURE_PMU)) {
2145 pmu_init(cpu);
2146
2147 if (!kvm_enabled()) {
2148 arm_register_pre_el_change_hook(cpu, &pmu_pre_el_change, 0);
2149 arm_register_el_change_hook(cpu, &pmu_post_el_change, 0);
2150 }
2151
2152 #ifndef CONFIG_USER_ONLY
2153 cpu->pmu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, arm_pmu_timer_cb,
2154 cpu);
2155 #endif
2156 } else {
2157 cpu->isar.id_aa64dfr0 =
2158 FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, PMUVER, 0);
2159 cpu->isar.id_dfr0 = FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, PERFMON, 0);
2160 cpu->pmceid0 = 0;
2161 cpu->pmceid1 = 0;
2162 }
2163
2164 if (!arm_feature(env, ARM_FEATURE_EL2)) {
2165 /*
2166 * Disable the hypervisor feature bits in the processor feature
2167 * registers if we don't have EL2.
2168 */
2169 cpu->isar.id_aa64pfr0 = FIELD_DP64(cpu->isar.id_aa64pfr0,
2170 ID_AA64PFR0, EL2, 0);
2171 cpu->isar.id_pfr1 = FIELD_DP32(cpu->isar.id_pfr1,
2172 ID_PFR1, VIRTUALIZATION, 0);
2173 }
2174
2175 if (cpu_isar_feature(aa64_mte, cpu)) {
2176 /*
2177 * The architectural range of GM blocksize is 2-6, however qemu
2178 * doesn't support blocksize of 2 (see HELPER(ldgm)).
2179 */
2180 if (tcg_enabled()) {
2181 assert(cpu->gm_blocksize >= 3 && cpu->gm_blocksize <= 6);
2182 }
2183
2184 #ifndef CONFIG_USER_ONLY
2185 /*
2186 * If we do not have tag-memory provided by the machine,
2187 * reduce MTE support to instructions enabled at EL0.
2188 * This matches Cortex-A710 BROADCASTMTE input being LOW.
2189 */
2190 if (cpu->tag_memory == NULL) {
2191 cpu->isar.id_aa64pfr1 =
2192 FIELD_DP64(cpu->isar.id_aa64pfr1, ID_AA64PFR1, MTE, 1);
2193 }
2194 #endif
2195 }
2196
2197 if (tcg_enabled()) {
2198 /*
2199 * Don't report some architectural features in the ID registers
2200 * where TCG does not yet implement it (not even a minimal
2201 * stub version). This avoids guests falling over when they
2202 * try to access the non-existent system registers for them.
2203 */
2204 /* FEAT_SPE (Statistical Profiling Extension) */
2205 cpu->isar.id_aa64dfr0 =
2206 FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, PMSVER, 0);
2207 /* FEAT_TRBE (Trace Buffer Extension) */
2208 cpu->isar.id_aa64dfr0 =
2209 FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, TRACEBUFFER, 0);
2210 /* FEAT_TRF (Self-hosted Trace Extension) */
2211 cpu->isar.id_aa64dfr0 =
2212 FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, TRACEFILT, 0);
2213 cpu->isar.id_dfr0 =
2214 FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, TRACEFILT, 0);
2215 /* Trace Macrocell system register access */
2216 cpu->isar.id_aa64dfr0 =
2217 FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, TRACEVER, 0);
2218 cpu->isar.id_dfr0 =
2219 FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, COPTRC, 0);
2220 /* Memory mapped trace */
2221 cpu->isar.id_dfr0 =
2222 FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, MMAPTRC, 0);
2223 /* FEAT_AMU (Activity Monitors Extension) */
2224 cpu->isar.id_aa64pfr0 =
2225 FIELD_DP64(cpu->isar.id_aa64pfr0, ID_AA64PFR0, AMU, 0);
2226 cpu->isar.id_pfr0 =
2227 FIELD_DP32(cpu->isar.id_pfr0, ID_PFR0, AMU, 0);
2228 /* FEAT_MPAM (Memory Partitioning and Monitoring Extension) */
2229 cpu->isar.id_aa64pfr0 =
2230 FIELD_DP64(cpu->isar.id_aa64pfr0, ID_AA64PFR0, MPAM, 0);
2231 /* FEAT_NV (Nested Virtualization) */
2232 cpu->isar.id_aa64mmfr2 =
2233 FIELD_DP64(cpu->isar.id_aa64mmfr2, ID_AA64MMFR2, NV, 0);
2234 }
2235
2236 /* MPU can be configured out of a PMSA CPU either by setting has-mpu
2237 * to false or by setting pmsav7-dregion to 0.
2238 */
2239 if (!cpu->has_mpu || cpu->pmsav7_dregion == 0) {
2240 cpu->has_mpu = false;
2241 cpu->pmsav7_dregion = 0;
2242 cpu->pmsav8r_hdregion = 0;
2243 }
2244
2245 if (arm_feature(env, ARM_FEATURE_PMSA) &&
2246 arm_feature(env, ARM_FEATURE_V7)) {
2247 uint32_t nr = cpu->pmsav7_dregion;
2248
2249 if (nr > 0xff) {
2250 error_setg(errp, "PMSAv7 MPU #regions invalid %" PRIu32, nr);
2251 return;
2252 }
2253
2254 if (nr) {
2255 if (arm_feature(env, ARM_FEATURE_V8)) {
2256 /* PMSAv8 */
2257 env->pmsav8.rbar[M_REG_NS] = g_new0(uint32_t, nr);
2258 env->pmsav8.rlar[M_REG_NS] = g_new0(uint32_t, nr);
2259 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
2260 env->pmsav8.rbar[M_REG_S] = g_new0(uint32_t, nr);
2261 env->pmsav8.rlar[M_REG_S] = g_new0(uint32_t, nr);
2262 }
2263 } else {
2264 env->pmsav7.drbar = g_new0(uint32_t, nr);
2265 env->pmsav7.drsr = g_new0(uint32_t, nr);
2266 env->pmsav7.dracr = g_new0(uint32_t, nr);
2267 }
2268 }
2269
2270 if (cpu->pmsav8r_hdregion > 0xff) {
2271 error_setg(errp, "PMSAv8 MPU EL2 #regions invalid %" PRIu32,
2272 cpu->pmsav8r_hdregion);
2273 return;
2274 }
2275
2276 if (cpu->pmsav8r_hdregion) {
2277 env->pmsav8.hprbar = g_new0(uint32_t,
2278 cpu->pmsav8r_hdregion);
2279 env->pmsav8.hprlar = g_new0(uint32_t,
2280 cpu->pmsav8r_hdregion);
2281 }
2282 }
2283
2284 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
2285 uint32_t nr = cpu->sau_sregion;
2286
2287 if (nr > 0xff) {
2288 error_setg(errp, "v8M SAU #regions invalid %" PRIu32, nr);
2289 return;
2290 }
2291
2292 if (nr) {
2293 env->sau.rbar = g_new0(uint32_t, nr);
2294 env->sau.rlar = g_new0(uint32_t, nr);
2295 }
2296 }
2297
2298 if (arm_feature(env, ARM_FEATURE_EL3)) {
2299 set_feature(env, ARM_FEATURE_VBAR);
2300 }
2301
2302 #ifndef CONFIG_USER_ONLY
2303 if (tcg_enabled() && cpu_isar_feature(aa64_rme, cpu)) {
2304 arm_register_el_change_hook(cpu, &gt_rme_post_el_change, 0);
2305 }
2306 #endif
2307
2308 register_cp_regs_for_features(cpu);
2309 arm_cpu_register_gdb_regs_for_features(cpu);
2310
2311 init_cpreg_list(cpu);
2312
2313 #ifndef CONFIG_USER_ONLY
2314 MachineState *ms = MACHINE(qdev_get_machine());
2315 unsigned int smp_cpus = ms->smp.cpus;
2316 bool has_secure = cpu->has_el3 || arm_feature(env, ARM_FEATURE_M_SECURITY);
2317
2318 /*
2319 * We must set cs->num_ases to the final value before
2320 * the first call to cpu_address_space_init.
2321 */
2322 if (cpu->tag_memory != NULL) {
2323 cs->num_ases = 3 + has_secure;
2324 } else {
2325 cs->num_ases = 1 + has_secure;
2326 }
2327
2328 if (has_secure) {
2329 if (!cpu->secure_memory) {
2330 cpu->secure_memory = cs->memory;
2331 }
2332 cpu_address_space_init(cs, ARMASIdx_S, "cpu-secure-memory",
2333 cpu->secure_memory);
2334 }
2335
2336 if (cpu->tag_memory != NULL) {
2337 cpu_address_space_init(cs, ARMASIdx_TagNS, "cpu-tag-memory",
2338 cpu->tag_memory);
2339 if (has_secure) {
2340 cpu_address_space_init(cs, ARMASIdx_TagS, "cpu-tag-memory",
2341 cpu->secure_tag_memory);
2342 }
2343 }
2344
2345 cpu_address_space_init(cs, ARMASIdx_NS, "cpu-memory", cs->memory);
2346
2347 /* No core_count specified, default to smp_cpus. */
2348 if (cpu->core_count == -1) {
2349 cpu->core_count = smp_cpus;
2350 }
2351 #endif
2352
2353 if (tcg_enabled()) {
2354 int dcz_blocklen = 4 << cpu->dcz_blocksize;
2355
2356 /*
2357 * We only support DCZ blocklen that fits on one page.
2358 *
2359 * Architectually this is always true. However TARGET_PAGE_SIZE
2360 * is variable and, for compatibility with -machine virt-2.7,
2361 * is only 1KiB, as an artifact of legacy ARMv5 subpage support.
2362 * But even then, while the largest architectural DCZ blocklen
2363 * is 2KiB, no cpu actually uses such a large blocklen.
2364 */
2365 assert(dcz_blocklen <= TARGET_PAGE_SIZE);
2366
2367 /*
2368 * We only support DCZ blocksize >= 2*TAG_GRANULE, which is to say
2369 * both nibbles of each byte storing tag data may be written at once.
2370 * Since TAG_GRANULE is 16, this means that blocklen must be >= 32.
2371 */
2372 if (cpu_isar_feature(aa64_mte, cpu)) {
2373 assert(dcz_blocklen >= 2 * TAG_GRANULE);
2374 }
2375 }
2376
2377 qemu_init_vcpu(cs);
2378 cpu_reset(cs);
2379
2380 acc->parent_realize(dev, errp);
2381 }
2382
2383 static ObjectClass *arm_cpu_class_by_name(const char *cpu_model)
2384 {
2385 ObjectClass *oc;
2386 char *typename;
2387 char **cpuname;
2388 const char *cpunamestr;
2389
2390 cpuname = g_strsplit(cpu_model, ",", 1);
2391 cpunamestr = cpuname[0];
2392 #ifdef CONFIG_USER_ONLY
2393 /* For backwards compatibility usermode emulation allows "-cpu any",
2394 * which has the same semantics as "-cpu max".
2395 */
2396 if (!strcmp(cpunamestr, "any")) {
2397 cpunamestr = "max";
2398 }
2399 #endif
2400 typename = g_strdup_printf(ARM_CPU_TYPE_NAME("%s"), cpunamestr);
2401 oc = object_class_by_name(typename);
2402 g_strfreev(cpuname);
2403 g_free(typename);
2404 if (!oc || !object_class_dynamic_cast(oc, TYPE_ARM_CPU)) {
2405 return NULL;
2406 }
2407 return oc;
2408 }
2409
2410 static Property arm_cpu_properties[] = {
2411 DEFINE_PROP_UINT64("midr", ARMCPU, midr, 0),
2412 DEFINE_PROP_UINT64("mp-affinity", ARMCPU,
2413 mp_affinity, ARM64_AFFINITY_INVALID),
2414 DEFINE_PROP_INT32("node-id", ARMCPU, node_id, CPU_UNSET_NUMA_NODE_ID),
2415 DEFINE_PROP_INT32("core-count", ARMCPU, core_count, -1),
2416 DEFINE_PROP_END_OF_LIST()
2417 };
2418
2419 static const gchar *arm_gdb_arch_name(CPUState *cs)
2420 {
2421 ARMCPU *cpu = ARM_CPU(cs);
2422 CPUARMState *env = &cpu->env;
2423
2424 if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
2425 return "iwmmxt";
2426 }
2427 return "arm";
2428 }
2429
2430 #ifndef CONFIG_USER_ONLY
2431 #include "hw/core/sysemu-cpu-ops.h"
2432
2433 static const struct SysemuCPUOps arm_sysemu_ops = {
2434 .get_phys_page_attrs_debug = arm_cpu_get_phys_page_attrs_debug,
2435 .asidx_from_attrs = arm_asidx_from_attrs,
2436 .write_elf32_note = arm_cpu_write_elf32_note,
2437 .write_elf64_note = arm_cpu_write_elf64_note,
2438 .virtio_is_big_endian = arm_cpu_virtio_is_big_endian,
2439 .legacy_vmsd = &vmstate_arm_cpu,
2440 };
2441 #endif
2442
2443 #ifdef CONFIG_TCG
2444 static const struct TCGCPUOps arm_tcg_ops = {
2445 .initialize = arm_translate_init,
2446 .synchronize_from_tb = arm_cpu_synchronize_from_tb,
2447 .debug_excp_handler = arm_debug_excp_handler,
2448 .restore_state_to_opc = arm_restore_state_to_opc,
2449
2450 #ifdef CONFIG_USER_ONLY
2451 .record_sigsegv = arm_cpu_record_sigsegv,
2452 .record_sigbus = arm_cpu_record_sigbus,
2453 #else
2454 .tlb_fill = arm_cpu_tlb_fill,
2455 .cpu_exec_interrupt = arm_cpu_exec_interrupt,
2456 .do_interrupt = arm_cpu_do_interrupt,
2457 .do_transaction_failed = arm_cpu_do_transaction_failed,
2458 .do_unaligned_access = arm_cpu_do_unaligned_access,
2459 .adjust_watchpoint_address = arm_adjust_watchpoint_address,
2460 .debug_check_watchpoint = arm_debug_check_watchpoint,
2461 .debug_check_breakpoint = arm_debug_check_breakpoint,
2462 #endif /* !CONFIG_USER_ONLY */
2463 };
2464 #endif /* CONFIG_TCG */
2465
2466 static void arm_cpu_class_init(ObjectClass *oc, void *data)
2467 {
2468 ARMCPUClass *acc = ARM_CPU_CLASS(oc);
2469 CPUClass *cc = CPU_CLASS(acc);
2470 DeviceClass *dc = DEVICE_CLASS(oc);
2471 ResettableClass *rc = RESETTABLE_CLASS(oc);
2472
2473 device_class_set_parent_realize(dc, arm_cpu_realizefn,
2474 &acc->parent_realize);
2475
2476 device_class_set_props(dc, arm_cpu_properties);
2477
2478 resettable_class_set_parent_phases(rc, NULL, arm_cpu_reset_hold, NULL,
2479 &acc->parent_phases);
2480
2481 cc->class_by_name = arm_cpu_class_by_name;
2482 cc->has_work = arm_cpu_has_work;
2483 cc->dump_state = arm_cpu_dump_state;
2484 cc->set_pc = arm_cpu_set_pc;
2485 cc->get_pc = arm_cpu_get_pc;
2486 cc->gdb_read_register = arm_cpu_gdb_read_register;
2487 cc->gdb_write_register = arm_cpu_gdb_write_register;
2488 #ifndef CONFIG_USER_ONLY
2489 cc->sysemu_ops = &arm_sysemu_ops;
2490 #endif
2491 cc->gdb_num_core_regs = 26;
2492 cc->gdb_arch_name = arm_gdb_arch_name;
2493 cc->gdb_get_dynamic_xml = arm_gdb_get_dynamic_xml;
2494 cc->gdb_stop_before_watchpoint = true;
2495 cc->disas_set_info = arm_disas_set_info;
2496
2497 #ifdef CONFIG_TCG
2498 cc->tcg_ops = &arm_tcg_ops;
2499 #endif /* CONFIG_TCG */
2500 }
2501
2502 static void arm_cpu_instance_init(Object *obj)
2503 {
2504 ARMCPUClass *acc = ARM_CPU_GET_CLASS(obj);
2505
2506 acc->info->initfn(obj);
2507 arm_cpu_post_init(obj);
2508 }
2509
2510 static void cpu_register_class_init(ObjectClass *oc, void *data)
2511 {
2512 ARMCPUClass *acc = ARM_CPU_CLASS(oc);
2513 CPUClass *cc = CPU_CLASS(acc);
2514
2515 acc->info = data;
2516 cc->gdb_core_xml_file = "arm-core.xml";
2517 }
2518
2519 void arm_cpu_register(const ARMCPUInfo *info)
2520 {
2521 TypeInfo type_info = {
2522 .parent = TYPE_ARM_CPU,
2523 .instance_init = arm_cpu_instance_init,
2524 .class_init = info->class_init ?: cpu_register_class_init,
2525 .class_data = (void *)info,
2526 };
2527
2528 type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
2529 type_register(&type_info);
2530 g_free((void *)type_info.name);
2531 }
2532
2533 static const TypeInfo arm_cpu_type_info = {
2534 .name = TYPE_ARM_CPU,
2535 .parent = TYPE_CPU,
2536 .instance_size = sizeof(ARMCPU),
2537 .instance_align = __alignof__(ARMCPU),
2538 .instance_init = arm_cpu_initfn,
2539 .instance_finalize = arm_cpu_finalizefn,
2540 .abstract = true,
2541 .class_size = sizeof(ARMCPUClass),
2542 .class_init = arm_cpu_class_init,
2543 };
2544
2545 static void arm_cpu_register_types(void)
2546 {
2547 type_register_static(&arm_cpu_type_info);
2548 }
2549
2550 type_init(arm_cpu_register_types)