]>
Commit | Line | Data |
---|---|---|
dec9c2d4 AF |
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 | ||
74c21bd0 | 21 | #include "qemu/osdep.h" |
86480615 | 22 | #include "qemu/qemu-print.h" |
a8d25326 | 23 | #include "qemu-common.h" |
181962fd | 24 | #include "target/arm/idau.h" |
0b8fa32f | 25 | #include "qemu/module.h" |
da34e65c | 26 | #include "qapi/error.h" |
f9f62e4c | 27 | #include "qapi/visitor.h" |
778c3a06 | 28 | #include "cpu.h" |
ccd38087 | 29 | #include "internals.h" |
63c91552 | 30 | #include "exec/exec-all.h" |
5de16430 | 31 | #include "hw/qdev-properties.h" |
3c30dd5a PM |
32 | #if !defined(CONFIG_USER_ONLY) |
33 | #include "hw/loader.h" | |
cc7d44c2 | 34 | #include "hw/boards.h" |
3c30dd5a | 35 | #endif |
9c17d615 | 36 | #include "sysemu/sysemu.h" |
14a48c1d | 37 | #include "sysemu/tcg.h" |
b3946626 | 38 | #include "sysemu/hw_accel.h" |
50a2c6e5 | 39 | #include "kvm_arm.h" |
110f6c70 | 40 | #include "disas/capstone.h" |
24f91e81 | 41 | #include "fpu/softfloat.h" |
dec9c2d4 | 42 | |
f45748f1 AF |
43 | static void arm_cpu_set_pc(CPUState *cs, vaddr value) |
44 | { | |
45 | ARMCPU *cpu = ARM_CPU(cs); | |
42f6ed91 JS |
46 | CPUARMState *env = &cpu->env; |
47 | ||
48 | if (is_a64(env)) { | |
49 | env->pc = value; | |
50 | env->thumb = 0; | |
51 | } else { | |
52 | env->regs[15] = value & ~1; | |
53 | env->thumb = value & 1; | |
54 | } | |
55 | } | |
f45748f1 | 56 | |
42f6ed91 JS |
57 | static void arm_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb) |
58 | { | |
59 | ARMCPU *cpu = ARM_CPU(cs); | |
60 | CPUARMState *env = &cpu->env; | |
61 | ||
62 | /* | |
63 | * It's OK to look at env for the current mode here, because it's | |
64 | * never possible for an AArch64 TB to chain to an AArch32 TB. | |
65 | */ | |
66 | if (is_a64(env)) { | |
67 | env->pc = tb->pc; | |
68 | } else { | |
69 | env->regs[15] = tb->pc; | |
70 | } | |
f45748f1 AF |
71 | } |
72 | ||
8c2e1b00 AF |
73 | static bool arm_cpu_has_work(CPUState *cs) |
74 | { | |
543486db RH |
75 | ARMCPU *cpu = ARM_CPU(cs); |
76 | ||
062ba099 | 77 | return (cpu->power_state != PSCI_OFF) |
543486db | 78 | && cs->interrupt_request & |
136e67e9 EI |
79 | (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD |
80 | | CPU_INTERRUPT_VFIQ | CPU_INTERRUPT_VIRQ | |
81 | | CPU_INTERRUPT_EXITTB); | |
8c2e1b00 AF |
82 | } |
83 | ||
b5c53d1b AL |
84 | void arm_register_pre_el_change_hook(ARMCPU *cpu, ARMELChangeHookFn *hook, |
85 | void *opaque) | |
86 | { | |
87 | ARMELChangeHook *entry = g_new0(ARMELChangeHook, 1); | |
88 | ||
89 | entry->hook = hook; | |
90 | entry->opaque = opaque; | |
91 | ||
92 | QLIST_INSERT_HEAD(&cpu->pre_el_change_hooks, entry, node); | |
93 | } | |
94 | ||
08267487 | 95 | void arm_register_el_change_hook(ARMCPU *cpu, ARMELChangeHookFn *hook, |
bd7d00fc PM |
96 | void *opaque) |
97 | { | |
08267487 AL |
98 | ARMELChangeHook *entry = g_new0(ARMELChangeHook, 1); |
99 | ||
100 | entry->hook = hook; | |
101 | entry->opaque = opaque; | |
102 | ||
103 | QLIST_INSERT_HEAD(&cpu->el_change_hooks, entry, node); | |
bd7d00fc PM |
104 | } |
105 | ||
4b6a83fb PM |
106 | static void cp_reg_reset(gpointer key, gpointer value, gpointer opaque) |
107 | { | |
108 | /* Reset a single ARMCPRegInfo register */ | |
109 | ARMCPRegInfo *ri = value; | |
110 | ARMCPU *cpu = opaque; | |
111 | ||
b061a82b | 112 | if (ri->type & (ARM_CP_SPECIAL | ARM_CP_ALIAS)) { |
4b6a83fb PM |
113 | return; |
114 | } | |
115 | ||
116 | if (ri->resetfn) { | |
117 | ri->resetfn(&cpu->env, ri); | |
118 | return; | |
119 | } | |
120 | ||
121 | /* A zero offset is never possible as it would be regs[0] | |
122 | * so we use it to indicate that reset is being handled elsewhere. | |
123 | * This is basically only used for fields in non-core coprocessors | |
124 | * (like the pxa2xx ones). | |
125 | */ | |
126 | if (!ri->fieldoffset) { | |
127 | return; | |
128 | } | |
129 | ||
67ed771d | 130 | if (cpreg_field_is_64bit(ri)) { |
4b6a83fb PM |
131 | CPREG_FIELD64(&cpu->env, ri) = ri->resetvalue; |
132 | } else { | |
133 | CPREG_FIELD32(&cpu->env, ri) = ri->resetvalue; | |
134 | } | |
135 | } | |
136 | ||
49a66191 PM |
137 | static void cp_reg_check_reset(gpointer key, gpointer value, gpointer opaque) |
138 | { | |
139 | /* Purely an assertion check: we've already done reset once, | |
140 | * so now check that running the reset for the cpreg doesn't | |
141 | * change its value. This traps bugs where two different cpregs | |
142 | * both try to reset the same state field but to different values. | |
143 | */ | |
144 | ARMCPRegInfo *ri = value; | |
145 | ARMCPU *cpu = opaque; | |
146 | uint64_t oldvalue, newvalue; | |
147 | ||
148 | if (ri->type & (ARM_CP_SPECIAL | ARM_CP_ALIAS | ARM_CP_NO_RAW)) { | |
149 | return; | |
150 | } | |
151 | ||
152 | oldvalue = read_raw_cp_reg(&cpu->env, ri); | |
153 | cp_reg_reset(key, value, opaque); | |
154 | newvalue = read_raw_cp_reg(&cpu->env, ri); | |
155 | assert(oldvalue == newvalue); | |
156 | } | |
157 | ||
781c67ca | 158 | static void arm_cpu_reset(DeviceState *dev) |
dec9c2d4 | 159 | { |
781c67ca | 160 | CPUState *s = CPU(dev); |
dec9c2d4 AF |
161 | ARMCPU *cpu = ARM_CPU(s); |
162 | ARMCPUClass *acc = ARM_CPU_GET_CLASS(cpu); | |
3c30dd5a | 163 | CPUARMState *env = &cpu->env; |
3c30dd5a | 164 | |
781c67ca | 165 | acc->parent_reset(dev); |
dec9c2d4 | 166 | |
1f5c00cf AB |
167 | memset(env, 0, offsetof(CPUARMState, end_reset_fields)); |
168 | ||
4b6a83fb | 169 | g_hash_table_foreach(cpu->cp_regs, cp_reg_reset, cpu); |
49a66191 PM |
170 | g_hash_table_foreach(cpu->cp_regs, cp_reg_check_reset, cpu); |
171 | ||
3c30dd5a | 172 | env->vfp.xregs[ARM_VFP_FPSID] = cpu->reset_fpsid; |
47576b94 RH |
173 | env->vfp.xregs[ARM_VFP_MVFR0] = cpu->isar.mvfr0; |
174 | env->vfp.xregs[ARM_VFP_MVFR1] = cpu->isar.mvfr1; | |
175 | env->vfp.xregs[ARM_VFP_MVFR2] = cpu->isar.mvfr2; | |
3c30dd5a | 176 | |
062ba099 | 177 | cpu->power_state = cpu->start_powered_off ? PSCI_OFF : PSCI_ON; |
543486db RH |
178 | s->halted = cpu->start_powered_off; |
179 | ||
3c30dd5a PM |
180 | if (arm_feature(env, ARM_FEATURE_IWMMXT)) { |
181 | env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q'; | |
182 | } | |
183 | ||
3926cc84 AG |
184 | if (arm_feature(env, ARM_FEATURE_AARCH64)) { |
185 | /* 64 bit CPUs always start in 64 bit mode */ | |
186 | env->aarch64 = 1; | |
d356312f PM |
187 | #if defined(CONFIG_USER_ONLY) |
188 | env->pstate = PSTATE_MODE_EL0t; | |
14e5f106 | 189 | /* Userspace expects access to DC ZVA, CTL_EL0 and the cache ops */ |
137feaa9 | 190 | env->cp15.sctlr_el[1] |= SCTLR_UCT | SCTLR_UCI | SCTLR_DZE; |
276c6e81 RH |
191 | /* Enable all PAC keys. */ |
192 | env->cp15.sctlr_el[1] |= (SCTLR_EnIA | SCTLR_EnIB | | |
193 | SCTLR_EnDA | SCTLR_EnDB); | |
8c6afa6a | 194 | /* and to the FP/Neon instructions */ |
7ebd5f2e | 195 | env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 2, 3); |
802ac0e1 RH |
196 | /* and to the SVE instructions */ |
197 | env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 16, 2, 3); | |
7b6a2198 AB |
198 | /* with reasonable vector length */ |
199 | if (cpu_isar_feature(aa64_sve, cpu)) { | |
200 | env->vfp.zcr_el[1] = MIN(cpu->sve_max_vq - 1, 3); | |
201 | } | |
f6a148fe RH |
202 | /* |
203 | * Enable TBI0 and TBI1. While the real kernel only enables TBI0, | |
204 | * turning on both here will produce smaller code and otherwise | |
205 | * make no difference to the user-level emulation. | |
206 | */ | |
207 | env->cp15.tcr_el[1].raw_tcr = (3ULL << 37); | |
d356312f | 208 | #else |
5097227c GB |
209 | /* Reset into the highest available EL */ |
210 | if (arm_feature(env, ARM_FEATURE_EL3)) { | |
211 | env->pstate = PSTATE_MODE_EL3h; | |
212 | } else if (arm_feature(env, ARM_FEATURE_EL2)) { | |
213 | env->pstate = PSTATE_MODE_EL2h; | |
214 | } else { | |
215 | env->pstate = PSTATE_MODE_EL1h; | |
216 | } | |
3933443e | 217 | env->pc = cpu->rvbar; |
8c6afa6a PM |
218 | #endif |
219 | } else { | |
220 | #if defined(CONFIG_USER_ONLY) | |
221 | /* Userspace expects access to cp10 and cp11 for FP/Neon */ | |
7ebd5f2e | 222 | env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 4, 0xf); |
d356312f | 223 | #endif |
3926cc84 AG |
224 | } |
225 | ||
3c30dd5a PM |
226 | #if defined(CONFIG_USER_ONLY) |
227 | env->uncached_cpsr = ARM_CPU_MODE_USR; | |
228 | /* For user mode we must enable access to coprocessors */ | |
229 | env->vfp.xregs[ARM_VFP_FPEXC] = 1 << 30; | |
230 | if (arm_feature(env, ARM_FEATURE_IWMMXT)) { | |
231 | env->cp15.c15_cpar = 3; | |
232 | } else if (arm_feature(env, ARM_FEATURE_XSCALE)) { | |
233 | env->cp15.c15_cpar = 1; | |
234 | } | |
235 | #else | |
060a65df PM |
236 | |
237 | /* | |
238 | * If the highest available EL is EL2, AArch32 will start in Hyp | |
239 | * mode; otherwise it starts in SVC. Note that if we start in | |
240 | * AArch64 then these values in the uncached_cpsr will be ignored. | |
241 | */ | |
242 | if (arm_feature(env, ARM_FEATURE_EL2) && | |
243 | !arm_feature(env, ARM_FEATURE_EL3)) { | |
244 | env->uncached_cpsr = ARM_CPU_MODE_HYP; | |
245 | } else { | |
246 | env->uncached_cpsr = ARM_CPU_MODE_SVC; | |
247 | } | |
4cc35614 | 248 | env->daif = PSTATE_D | PSTATE_A | PSTATE_I | PSTATE_F; |
dc7abe4d | 249 | |
531c60a9 | 250 | if (arm_feature(env, ARM_FEATURE_M)) { |
6e3cf5df MG |
251 | uint32_t initial_msp; /* Loaded from 0x0 */ |
252 | uint32_t initial_pc; /* Loaded from 0x4 */ | |
3c30dd5a | 253 | uint8_t *rom; |
38e2a77c | 254 | uint32_t vecbase; |
6e3cf5df | 255 | |
1e577cc7 PM |
256 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { |
257 | env->v7m.secure = true; | |
3b2e9344 PM |
258 | } else { |
259 | /* This bit resets to 0 if security is supported, but 1 if | |
260 | * it is not. The bit is not present in v7M, but we set it | |
261 | * here so we can avoid having to make checks on it conditional | |
262 | * on ARM_FEATURE_V8 (we don't let the guest see the bit). | |
263 | */ | |
264 | env->v7m.aircr = R_V7M_AIRCR_BFHFNMINS_MASK; | |
02ac2f7f PM |
265 | /* |
266 | * Set NSACR to indicate "NS access permitted to everything"; | |
267 | * this avoids having to have all the tests of it being | |
268 | * conditional on ARM_FEATURE_M_SECURITY. Note also that from | |
269 | * v8.1M the guest-visible value of NSACR in a CPU without the | |
270 | * Security Extension is 0xcff. | |
271 | */ | |
272 | env->v7m.nsacr = 0xcff; | |
1e577cc7 PM |
273 | } |
274 | ||
9d40cd8a | 275 | /* In v7M the reset value of this bit is IMPDEF, but ARM recommends |
2c4da50d | 276 | * that it resets to 1, so QEMU always does that rather than making |
9d40cd8a | 277 | * it dependent on CPU model. In v8M it is RES1. |
2c4da50d | 278 | */ |
9d40cd8a PM |
279 | env->v7m.ccr[M_REG_NS] = R_V7M_CCR_STKALIGN_MASK; |
280 | env->v7m.ccr[M_REG_S] = R_V7M_CCR_STKALIGN_MASK; | |
281 | if (arm_feature(env, ARM_FEATURE_V8)) { | |
282 | /* in v8M the NONBASETHRDENA bit [0] is RES1 */ | |
283 | env->v7m.ccr[M_REG_NS] |= R_V7M_CCR_NONBASETHRDENA_MASK; | |
284 | env->v7m.ccr[M_REG_S] |= R_V7M_CCR_NONBASETHRDENA_MASK; | |
285 | } | |
22ab3460 JS |
286 | if (!arm_feature(env, ARM_FEATURE_M_MAIN)) { |
287 | env->v7m.ccr[M_REG_NS] |= R_V7M_CCR_UNALIGN_TRP_MASK; | |
288 | env->v7m.ccr[M_REG_S] |= R_V7M_CCR_UNALIGN_TRP_MASK; | |
289 | } | |
2c4da50d | 290 | |
7fbc6a40 | 291 | if (cpu_isar_feature(aa32_vfp_simd, cpu)) { |
d33abe82 PM |
292 | env->v7m.fpccr[M_REG_NS] = R_V7M_FPCCR_ASPEN_MASK; |
293 | env->v7m.fpccr[M_REG_S] = R_V7M_FPCCR_ASPEN_MASK | | |
294 | R_V7M_FPCCR_LSPEN_MASK | R_V7M_FPCCR_S_MASK; | |
295 | } | |
056f43df PM |
296 | /* Unlike A/R profile, M profile defines the reset LR value */ |
297 | env->regs[14] = 0xffffffff; | |
298 | ||
38e2a77c PM |
299 | env->v7m.vecbase[M_REG_S] = cpu->init_svtor & 0xffffff80; |
300 | ||
301 | /* Load the initial SP and PC from offset 0 and 4 in the vector table */ | |
302 | vecbase = env->v7m.vecbase[env->v7m.secure]; | |
0f0f8b61 | 303 | rom = rom_ptr(vecbase, 8); |
3c30dd5a | 304 | if (rom) { |
6e3cf5df MG |
305 | /* Address zero is covered by ROM which hasn't yet been |
306 | * copied into physical memory. | |
307 | */ | |
308 | initial_msp = ldl_p(rom); | |
309 | initial_pc = ldl_p(rom + 4); | |
310 | } else { | |
311 | /* Address zero not covered by a ROM blob, or the ROM blob | |
312 | * is in non-modifiable memory and this is a second reset after | |
313 | * it got copied into memory. In the latter case, rom_ptr | |
314 | * will return a NULL pointer and we should use ldl_phys instead. | |
315 | */ | |
38e2a77c PM |
316 | initial_msp = ldl_phys(s->as, vecbase); |
317 | initial_pc = ldl_phys(s->as, vecbase + 4); | |
3c30dd5a | 318 | } |
6e3cf5df MG |
319 | |
320 | env->regs[13] = initial_msp & 0xFFFFFFFC; | |
321 | env->regs[15] = initial_pc & ~1; | |
322 | env->thumb = initial_pc & 1; | |
3c30dd5a | 323 | } |
387f9806 | 324 | |
137feaa9 FA |
325 | /* AArch32 has a hard highvec setting of 0xFFFF0000. If we are currently |
326 | * executing as AArch32 then check if highvecs are enabled and | |
327 | * adjust the PC accordingly. | |
328 | */ | |
329 | if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) { | |
34bf7744 | 330 | env->regs[15] = 0xFFFF0000; |
387f9806 AP |
331 | } |
332 | ||
dc3c4c14 PM |
333 | /* M profile requires that reset clears the exclusive monitor; |
334 | * A profile does not, but clearing it makes more sense than having it | |
335 | * set with an exclusive access on address zero. | |
336 | */ | |
337 | arm_clear_exclusive(env); | |
338 | ||
3c30dd5a | 339 | env->vfp.xregs[ARM_VFP_FPEXC] = 0; |
3c30dd5a | 340 | #endif |
69ceea64 | 341 | |
0e1a46bb | 342 | if (arm_feature(env, ARM_FEATURE_PMSA)) { |
69ceea64 | 343 | if (cpu->pmsav7_dregion > 0) { |
0e1a46bb | 344 | if (arm_feature(env, ARM_FEATURE_V8)) { |
62c58ee0 PM |
345 | memset(env->pmsav8.rbar[M_REG_NS], 0, |
346 | sizeof(*env->pmsav8.rbar[M_REG_NS]) | |
347 | * cpu->pmsav7_dregion); | |
348 | memset(env->pmsav8.rlar[M_REG_NS], 0, | |
349 | sizeof(*env->pmsav8.rlar[M_REG_NS]) | |
350 | * cpu->pmsav7_dregion); | |
351 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { | |
352 | memset(env->pmsav8.rbar[M_REG_S], 0, | |
353 | sizeof(*env->pmsav8.rbar[M_REG_S]) | |
354 | * cpu->pmsav7_dregion); | |
355 | memset(env->pmsav8.rlar[M_REG_S], 0, | |
356 | sizeof(*env->pmsav8.rlar[M_REG_S]) | |
357 | * cpu->pmsav7_dregion); | |
358 | } | |
0e1a46bb PM |
359 | } else if (arm_feature(env, ARM_FEATURE_V7)) { |
360 | memset(env->pmsav7.drbar, 0, | |
361 | sizeof(*env->pmsav7.drbar) * cpu->pmsav7_dregion); | |
362 | memset(env->pmsav7.drsr, 0, | |
363 | sizeof(*env->pmsav7.drsr) * cpu->pmsav7_dregion); | |
364 | memset(env->pmsav7.dracr, 0, | |
365 | sizeof(*env->pmsav7.dracr) * cpu->pmsav7_dregion); | |
366 | } | |
69ceea64 | 367 | } |
1bc04a88 PM |
368 | env->pmsav7.rnr[M_REG_NS] = 0; |
369 | env->pmsav7.rnr[M_REG_S] = 0; | |
4125e6fe PM |
370 | env->pmsav8.mair0[M_REG_NS] = 0; |
371 | env->pmsav8.mair0[M_REG_S] = 0; | |
372 | env->pmsav8.mair1[M_REG_NS] = 0; | |
373 | env->pmsav8.mair1[M_REG_S] = 0; | |
69ceea64 PM |
374 | } |
375 | ||
9901c576 PM |
376 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { |
377 | if (cpu->sau_sregion > 0) { | |
378 | memset(env->sau.rbar, 0, sizeof(*env->sau.rbar) * cpu->sau_sregion); | |
379 | memset(env->sau.rlar, 0, sizeof(*env->sau.rlar) * cpu->sau_sregion); | |
380 | } | |
381 | env->sau.rnr = 0; | |
382 | /* SAU_CTRL reset value is IMPDEF; we choose 0, which is what | |
383 | * the Cortex-M33 does. | |
384 | */ | |
385 | env->sau.ctrl = 0; | |
386 | } | |
387 | ||
3c30dd5a PM |
388 | set_flush_to_zero(1, &env->vfp.standard_fp_status); |
389 | set_flush_inputs_to_zero(1, &env->vfp.standard_fp_status); | |
390 | set_default_nan_mode(1, &env->vfp.standard_fp_status); | |
391 | set_float_detect_tininess(float_tininess_before_rounding, | |
392 | &env->vfp.fp_status); | |
393 | set_float_detect_tininess(float_tininess_before_rounding, | |
394 | &env->vfp.standard_fp_status); | |
bcc531f0 PM |
395 | set_float_detect_tininess(float_tininess_before_rounding, |
396 | &env->vfp.fp_status_f16); | |
50a2c6e5 PB |
397 | #ifndef CONFIG_USER_ONLY |
398 | if (kvm_enabled()) { | |
399 | kvm_arm_reset_vcpu(cpu); | |
400 | } | |
401 | #endif | |
9ee98ce8 | 402 | |
46747d15 | 403 | hw_breakpoint_update_all(cpu); |
9ee98ce8 | 404 | hw_watchpoint_update_all(cpu); |
a8a79c7a | 405 | arm_rebuild_hflags(env); |
dec9c2d4 AF |
406 | } |
407 | ||
310cedf3 | 408 | static inline bool arm_excp_unmasked(CPUState *cs, unsigned int excp_idx, |
be879556 RH |
409 | unsigned int target_el, |
410 | unsigned int cur_el, bool secure, | |
411 | uint64_t hcr_el2) | |
310cedf3 RH |
412 | { |
413 | CPUARMState *env = cs->env_ptr; | |
310cedf3 | 414 | bool pstate_unmasked; |
16e07f78 | 415 | bool unmasked = false; |
310cedf3 RH |
416 | |
417 | /* | |
418 | * Don't take exceptions if they target a lower EL. | |
419 | * This check should catch any exceptions that would not be taken | |
420 | * but left pending. | |
421 | */ | |
422 | if (cur_el > target_el) { | |
423 | return false; | |
424 | } | |
425 | ||
310cedf3 RH |
426 | switch (excp_idx) { |
427 | case EXCP_FIQ: | |
428 | pstate_unmasked = !(env->daif & PSTATE_F); | |
429 | break; | |
430 | ||
431 | case EXCP_IRQ: | |
432 | pstate_unmasked = !(env->daif & PSTATE_I); | |
433 | break; | |
434 | ||
435 | case EXCP_VFIQ: | |
436 | if (secure || !(hcr_el2 & HCR_FMO) || (hcr_el2 & HCR_TGE)) { | |
437 | /* VFIQs are only taken when hypervized and non-secure. */ | |
438 | return false; | |
439 | } | |
440 | return !(env->daif & PSTATE_F); | |
441 | case EXCP_VIRQ: | |
442 | if (secure || !(hcr_el2 & HCR_IMO) || (hcr_el2 & HCR_TGE)) { | |
443 | /* VIRQs are only taken when hypervized and non-secure. */ | |
444 | return false; | |
445 | } | |
446 | return !(env->daif & PSTATE_I); | |
447 | default: | |
448 | g_assert_not_reached(); | |
449 | } | |
450 | ||
451 | /* | |
452 | * Use the target EL, current execution state and SCR/HCR settings to | |
453 | * determine whether the corresponding CPSR bit is used to mask the | |
454 | * interrupt. | |
455 | */ | |
456 | if ((target_el > cur_el) && (target_el != 1)) { | |
457 | /* Exceptions targeting a higher EL may not be maskable */ | |
458 | if (arm_feature(env, ARM_FEATURE_AARCH64)) { | |
459 | /* | |
460 | * 64-bit masking rules are simple: exceptions to EL3 | |
461 | * can't be masked, and exceptions to EL2 can only be | |
462 | * masked from Secure state. The HCR and SCR settings | |
463 | * don't affect the masking logic, only the interrupt routing. | |
464 | */ | |
465 | if (target_el == 3 || !secure) { | |
16e07f78 | 466 | unmasked = true; |
310cedf3 RH |
467 | } |
468 | } else { | |
469 | /* | |
470 | * The old 32-bit-only environment has a more complicated | |
471 | * masking setup. HCR and SCR bits not only affect interrupt | |
472 | * routing but also change the behaviour of masking. | |
473 | */ | |
474 | bool hcr, scr; | |
475 | ||
476 | switch (excp_idx) { | |
477 | case EXCP_FIQ: | |
478 | /* | |
479 | * If FIQs are routed to EL3 or EL2 then there are cases where | |
480 | * we override the CPSR.F in determining if the exception is | |
481 | * masked or not. If neither of these are set then we fall back | |
482 | * to the CPSR.F setting otherwise we further assess the state | |
483 | * below. | |
484 | */ | |
485 | hcr = hcr_el2 & HCR_FMO; | |
486 | scr = (env->cp15.scr_el3 & SCR_FIQ); | |
487 | ||
488 | /* | |
489 | * When EL3 is 32-bit, the SCR.FW bit controls whether the | |
490 | * CPSR.F bit masks FIQ interrupts when taken in non-secure | |
491 | * state. If SCR.FW is set then FIQs can be masked by CPSR.F | |
492 | * when non-secure but only when FIQs are only routed to EL3. | |
493 | */ | |
494 | scr = scr && !((env->cp15.scr_el3 & SCR_FW) && !hcr); | |
495 | break; | |
496 | case EXCP_IRQ: | |
497 | /* | |
498 | * When EL3 execution state is 32-bit, if HCR.IMO is set then | |
499 | * we may override the CPSR.I masking when in non-secure state. | |
500 | * The SCR.IRQ setting has already been taken into consideration | |
501 | * when setting the target EL, so it does not have a further | |
502 | * affect here. | |
503 | */ | |
504 | hcr = hcr_el2 & HCR_IMO; | |
505 | scr = false; | |
506 | break; | |
507 | default: | |
508 | g_assert_not_reached(); | |
509 | } | |
510 | ||
511 | if ((scr || hcr) && !secure) { | |
16e07f78 | 512 | unmasked = true; |
310cedf3 RH |
513 | } |
514 | } | |
515 | } | |
516 | ||
517 | /* | |
518 | * The PSTATE bits only mask the interrupt if we have not overriden the | |
519 | * ability above. | |
520 | */ | |
521 | return unmasked || pstate_unmasked; | |
522 | } | |
523 | ||
e8925712 RH |
524 | bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request) |
525 | { | |
526 | CPUClass *cc = CPU_GET_CLASS(cs); | |
012a906b GB |
527 | CPUARMState *env = cs->env_ptr; |
528 | uint32_t cur_el = arm_current_el(env); | |
529 | bool secure = arm_is_secure(env); | |
be879556 | 530 | uint64_t hcr_el2 = arm_hcr_el2_eff(env); |
012a906b GB |
531 | uint32_t target_el; |
532 | uint32_t excp_idx; | |
d63d0ec5 RH |
533 | |
534 | /* The prioritization of interrupts is IMPLEMENTATION DEFINED. */ | |
e8925712 | 535 | |
012a906b GB |
536 | if (interrupt_request & CPU_INTERRUPT_FIQ) { |
537 | excp_idx = EXCP_FIQ; | |
538 | target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure); | |
be879556 RH |
539 | if (arm_excp_unmasked(cs, excp_idx, target_el, |
540 | cur_el, secure, hcr_el2)) { | |
d63d0ec5 | 541 | goto found; |
012a906b | 542 | } |
e8925712 | 543 | } |
012a906b GB |
544 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
545 | excp_idx = EXCP_IRQ; | |
546 | target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure); | |
be879556 RH |
547 | if (arm_excp_unmasked(cs, excp_idx, target_el, |
548 | cur_el, secure, hcr_el2)) { | |
d63d0ec5 | 549 | goto found; |
012a906b | 550 | } |
e8925712 | 551 | } |
012a906b GB |
552 | if (interrupt_request & CPU_INTERRUPT_VIRQ) { |
553 | excp_idx = EXCP_VIRQ; | |
554 | target_el = 1; | |
be879556 RH |
555 | if (arm_excp_unmasked(cs, excp_idx, target_el, |
556 | cur_el, secure, hcr_el2)) { | |
d63d0ec5 | 557 | goto found; |
012a906b | 558 | } |
136e67e9 | 559 | } |
012a906b GB |
560 | if (interrupt_request & CPU_INTERRUPT_VFIQ) { |
561 | excp_idx = EXCP_VFIQ; | |
562 | target_el = 1; | |
be879556 RH |
563 | if (arm_excp_unmasked(cs, excp_idx, target_el, |
564 | cur_el, secure, hcr_el2)) { | |
d63d0ec5 | 565 | goto found; |
012a906b | 566 | } |
136e67e9 | 567 | } |
d63d0ec5 | 568 | return false; |
e8925712 | 569 | |
d63d0ec5 RH |
570 | found: |
571 | cs->exception_index = excp_idx; | |
572 | env->exception.target_el = target_el; | |
573 | cc->do_interrupt(cs); | |
574 | return true; | |
e8925712 RH |
575 | } |
576 | ||
b5c633c5 PM |
577 | #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) |
578 | static bool arm_v7m_cpu_exec_interrupt(CPUState *cs, int interrupt_request) | |
579 | { | |
580 | CPUClass *cc = CPU_GET_CLASS(cs); | |
581 | ARMCPU *cpu = ARM_CPU(cs); | |
582 | CPUARMState *env = &cpu->env; | |
583 | bool ret = false; | |
584 | ||
f4e8e4ed | 585 | /* ARMv7-M interrupt masking works differently than -A or -R. |
7ecdaa4a PM |
586 | * There is no FIQ/IRQ distinction. Instead of I and F bits |
587 | * masking FIQ and IRQ interrupts, an exception is taken only | |
588 | * if it is higher priority than the current execution priority | |
589 | * (which depends on state like BASEPRI, FAULTMASK and the | |
590 | * currently active exception). | |
b5c633c5 PM |
591 | */ |
592 | if (interrupt_request & CPU_INTERRUPT_HARD | |
f4e8e4ed | 593 | && (armv7m_nvic_can_take_pending_exception(env->nvic))) { |
b5c633c5 PM |
594 | cs->exception_index = EXCP_IRQ; |
595 | cc->do_interrupt(cs); | |
596 | ret = true; | |
597 | } | |
598 | return ret; | |
599 | } | |
600 | #endif | |
601 | ||
89430fc6 PM |
602 | void arm_cpu_update_virq(ARMCPU *cpu) |
603 | { | |
604 | /* | |
605 | * Update the interrupt level for VIRQ, which is the logical OR of | |
606 | * the HCR_EL2.VI bit and the input line level from the GIC. | |
607 | */ | |
608 | CPUARMState *env = &cpu->env; | |
609 | CPUState *cs = CPU(cpu); | |
610 | ||
611 | bool new_state = (env->cp15.hcr_el2 & HCR_VI) || | |
612 | (env->irq_line_state & CPU_INTERRUPT_VIRQ); | |
613 | ||
614 | if (new_state != ((cs->interrupt_request & CPU_INTERRUPT_VIRQ) != 0)) { | |
615 | if (new_state) { | |
616 | cpu_interrupt(cs, CPU_INTERRUPT_VIRQ); | |
617 | } else { | |
618 | cpu_reset_interrupt(cs, CPU_INTERRUPT_VIRQ); | |
619 | } | |
620 | } | |
621 | } | |
622 | ||
623 | void arm_cpu_update_vfiq(ARMCPU *cpu) | |
624 | { | |
625 | /* | |
626 | * Update the interrupt level for VFIQ, which is the logical OR of | |
627 | * the HCR_EL2.VF bit and the input line level from the GIC. | |
628 | */ | |
629 | CPUARMState *env = &cpu->env; | |
630 | CPUState *cs = CPU(cpu); | |
631 | ||
632 | bool new_state = (env->cp15.hcr_el2 & HCR_VF) || | |
633 | (env->irq_line_state & CPU_INTERRUPT_VFIQ); | |
634 | ||
635 | if (new_state != ((cs->interrupt_request & CPU_INTERRUPT_VFIQ) != 0)) { | |
636 | if (new_state) { | |
637 | cpu_interrupt(cs, CPU_INTERRUPT_VFIQ); | |
638 | } else { | |
639 | cpu_reset_interrupt(cs, CPU_INTERRUPT_VFIQ); | |
640 | } | |
641 | } | |
642 | } | |
643 | ||
7c1840b6 PM |
644 | #ifndef CONFIG_USER_ONLY |
645 | static void arm_cpu_set_irq(void *opaque, int irq, int level) | |
646 | { | |
647 | ARMCPU *cpu = opaque; | |
136e67e9 | 648 | CPUARMState *env = &cpu->env; |
7c1840b6 | 649 | CPUState *cs = CPU(cpu); |
136e67e9 EI |
650 | static const int mask[] = { |
651 | [ARM_CPU_IRQ] = CPU_INTERRUPT_HARD, | |
652 | [ARM_CPU_FIQ] = CPU_INTERRUPT_FIQ, | |
653 | [ARM_CPU_VIRQ] = CPU_INTERRUPT_VIRQ, | |
654 | [ARM_CPU_VFIQ] = CPU_INTERRUPT_VFIQ | |
655 | }; | |
7c1840b6 | 656 | |
ed89f078 PM |
657 | if (level) { |
658 | env->irq_line_state |= mask[irq]; | |
659 | } else { | |
660 | env->irq_line_state &= ~mask[irq]; | |
661 | } | |
662 | ||
7c1840b6 | 663 | switch (irq) { |
136e67e9 | 664 | case ARM_CPU_VIRQ: |
89430fc6 PM |
665 | assert(arm_feature(env, ARM_FEATURE_EL2)); |
666 | arm_cpu_update_virq(cpu); | |
667 | break; | |
136e67e9 | 668 | case ARM_CPU_VFIQ: |
f128bf29 | 669 | assert(arm_feature(env, ARM_FEATURE_EL2)); |
89430fc6 PM |
670 | arm_cpu_update_vfiq(cpu); |
671 | break; | |
136e67e9 | 672 | case ARM_CPU_IRQ: |
7c1840b6 PM |
673 | case ARM_CPU_FIQ: |
674 | if (level) { | |
136e67e9 | 675 | cpu_interrupt(cs, mask[irq]); |
7c1840b6 | 676 | } else { |
136e67e9 | 677 | cpu_reset_interrupt(cs, mask[irq]); |
7c1840b6 PM |
678 | } |
679 | break; | |
680 | default: | |
8f6fd322 | 681 | g_assert_not_reached(); |
7c1840b6 PM |
682 | } |
683 | } | |
684 | ||
685 | static void arm_cpu_kvm_set_irq(void *opaque, int irq, int level) | |
686 | { | |
687 | #ifdef CONFIG_KVM | |
688 | ARMCPU *cpu = opaque; | |
ed89f078 | 689 | CPUARMState *env = &cpu->env; |
7c1840b6 | 690 | CPUState *cs = CPU(cpu); |
ed89f078 | 691 | uint32_t linestate_bit; |
f6530926 | 692 | int irq_id; |
7c1840b6 PM |
693 | |
694 | switch (irq) { | |
695 | case ARM_CPU_IRQ: | |
f6530926 | 696 | irq_id = KVM_ARM_IRQ_CPU_IRQ; |
ed89f078 | 697 | linestate_bit = CPU_INTERRUPT_HARD; |
7c1840b6 PM |
698 | break; |
699 | case ARM_CPU_FIQ: | |
f6530926 | 700 | irq_id = KVM_ARM_IRQ_CPU_FIQ; |
ed89f078 | 701 | linestate_bit = CPU_INTERRUPT_FIQ; |
7c1840b6 PM |
702 | break; |
703 | default: | |
8f6fd322 | 704 | g_assert_not_reached(); |
7c1840b6 | 705 | } |
ed89f078 PM |
706 | |
707 | if (level) { | |
708 | env->irq_line_state |= linestate_bit; | |
709 | } else { | |
710 | env->irq_line_state &= ~linestate_bit; | |
711 | } | |
f6530926 | 712 | kvm_arm_set_irq(cs->cpu_index, KVM_ARM_IRQ_TYPE_CPU, irq_id, !!level); |
7c1840b6 PM |
713 | #endif |
714 | } | |
84f2bed3 | 715 | |
ed50ff78 | 716 | static bool arm_cpu_virtio_is_big_endian(CPUState *cs) |
84f2bed3 PS |
717 | { |
718 | ARMCPU *cpu = ARM_CPU(cs); | |
719 | CPUARMState *env = &cpu->env; | |
84f2bed3 PS |
720 | |
721 | cpu_synchronize_state(cs); | |
ed50ff78 | 722 | return arm_cpu_data_is_big_endian(env); |
84f2bed3 PS |
723 | } |
724 | ||
7c1840b6 PM |
725 | #endif |
726 | ||
581be094 PM |
727 | static inline void set_feature(CPUARMState *env, int feature) |
728 | { | |
918f5dca | 729 | env->features |= 1ULL << feature; |
581be094 PM |
730 | } |
731 | ||
08828484 GB |
732 | static inline void unset_feature(CPUARMState *env, int feature) |
733 | { | |
734 | env->features &= ~(1ULL << feature); | |
735 | } | |
736 | ||
48440620 PC |
737 | static int |
738 | print_insn_thumb1(bfd_vma pc, disassemble_info *info) | |
739 | { | |
740 | return print_insn_arm(pc | 1, info); | |
741 | } | |
742 | ||
743 | static void arm_disas_set_info(CPUState *cpu, disassemble_info *info) | |
744 | { | |
745 | ARMCPU *ac = ARM_CPU(cpu); | |
746 | CPUARMState *env = &ac->env; | |
7bcdbf51 | 747 | bool sctlr_b; |
48440620 PC |
748 | |
749 | if (is_a64(env)) { | |
750 | /* We might not be compiled with the A64 disassembler | |
751 | * because it needs a C++ compiler. Leave print_insn | |
752 | * unset in this case to use the caller default behaviour. | |
753 | */ | |
754 | #if defined(CONFIG_ARM_A64_DIS) | |
755 | info->print_insn = print_insn_arm_a64; | |
756 | #endif | |
110f6c70 | 757 | info->cap_arch = CS_ARCH_ARM64; |
15fa1a0a RH |
758 | info->cap_insn_unit = 4; |
759 | info->cap_insn_split = 4; | |
48440620 | 760 | } else { |
110f6c70 RH |
761 | int cap_mode; |
762 | if (env->thumb) { | |
763 | info->print_insn = print_insn_thumb1; | |
15fa1a0a RH |
764 | info->cap_insn_unit = 2; |
765 | info->cap_insn_split = 4; | |
110f6c70 RH |
766 | cap_mode = CS_MODE_THUMB; |
767 | } else { | |
768 | info->print_insn = print_insn_arm; | |
15fa1a0a RH |
769 | info->cap_insn_unit = 4; |
770 | info->cap_insn_split = 4; | |
110f6c70 RH |
771 | cap_mode = CS_MODE_ARM; |
772 | } | |
773 | if (arm_feature(env, ARM_FEATURE_V8)) { | |
774 | cap_mode |= CS_MODE_V8; | |
775 | } | |
776 | if (arm_feature(env, ARM_FEATURE_M)) { | |
777 | cap_mode |= CS_MODE_MCLASS; | |
778 | } | |
779 | info->cap_arch = CS_ARCH_ARM; | |
780 | info->cap_mode = cap_mode; | |
48440620 | 781 | } |
7bcdbf51 RH |
782 | |
783 | sctlr_b = arm_sctlr_b(env); | |
784 | if (bswap_code(sctlr_b)) { | |
48440620 PC |
785 | #ifdef TARGET_WORDS_BIGENDIAN |
786 | info->endian = BFD_ENDIAN_LITTLE; | |
787 | #else | |
788 | info->endian = BFD_ENDIAN_BIG; | |
789 | #endif | |
790 | } | |
f7478a92 | 791 | info->flags &= ~INSN_ARM_BE32; |
7bcdbf51 RH |
792 | #ifndef CONFIG_USER_ONLY |
793 | if (sctlr_b) { | |
f7478a92 JB |
794 | info->flags |= INSN_ARM_BE32; |
795 | } | |
7bcdbf51 | 796 | #endif |
48440620 PC |
797 | } |
798 | ||
86480615 PMD |
799 | #ifdef TARGET_AARCH64 |
800 | ||
801 | static void aarch64_cpu_dump_state(CPUState *cs, FILE *f, int flags) | |
802 | { | |
803 | ARMCPU *cpu = ARM_CPU(cs); | |
804 | CPUARMState *env = &cpu->env; | |
805 | uint32_t psr = pstate_read(env); | |
806 | int i; | |
807 | int el = arm_current_el(env); | |
808 | const char *ns_status; | |
809 | ||
810 | qemu_fprintf(f, " PC=%016" PRIx64 " ", env->pc); | |
811 | for (i = 0; i < 32; i++) { | |
812 | if (i == 31) { | |
813 | qemu_fprintf(f, " SP=%016" PRIx64 "\n", env->xregs[i]); | |
814 | } else { | |
815 | qemu_fprintf(f, "X%02d=%016" PRIx64 "%s", i, env->xregs[i], | |
816 | (i + 2) % 3 ? " " : "\n"); | |
817 | } | |
818 | } | |
819 | ||
820 | if (arm_feature(env, ARM_FEATURE_EL3) && el != 3) { | |
821 | ns_status = env->cp15.scr_el3 & SCR_NS ? "NS " : "S "; | |
822 | } else { | |
823 | ns_status = ""; | |
824 | } | |
825 | qemu_fprintf(f, "PSTATE=%08x %c%c%c%c %sEL%d%c", | |
826 | psr, | |
827 | psr & PSTATE_N ? 'N' : '-', | |
828 | psr & PSTATE_Z ? 'Z' : '-', | |
829 | psr & PSTATE_C ? 'C' : '-', | |
830 | psr & PSTATE_V ? 'V' : '-', | |
831 | ns_status, | |
832 | el, | |
833 | psr & PSTATE_SP ? 'h' : 't'); | |
834 | ||
835 | if (cpu_isar_feature(aa64_bti, cpu)) { | |
836 | qemu_fprintf(f, " BTYPE=%d", (psr & PSTATE_BTYPE) >> 10); | |
837 | } | |
838 | if (!(flags & CPU_DUMP_FPU)) { | |
839 | qemu_fprintf(f, "\n"); | |
840 | return; | |
841 | } | |
842 | if (fp_exception_el(env, el) != 0) { | |
843 | qemu_fprintf(f, " FPU disabled\n"); | |
844 | return; | |
845 | } | |
846 | qemu_fprintf(f, " FPCR=%08x FPSR=%08x\n", | |
847 | vfp_get_fpcr(env), vfp_get_fpsr(env)); | |
848 | ||
849 | if (cpu_isar_feature(aa64_sve, cpu) && sve_exception_el(env, el) == 0) { | |
850 | int j, zcr_len = sve_zcr_len_for_el(env, el); | |
851 | ||
852 | for (i = 0; i <= FFR_PRED_NUM; i++) { | |
853 | bool eol; | |
854 | if (i == FFR_PRED_NUM) { | |
855 | qemu_fprintf(f, "FFR="); | |
856 | /* It's last, so end the line. */ | |
857 | eol = true; | |
858 | } else { | |
859 | qemu_fprintf(f, "P%02d=", i); | |
860 | switch (zcr_len) { | |
861 | case 0: | |
862 | eol = i % 8 == 7; | |
863 | break; | |
864 | case 1: | |
865 | eol = i % 6 == 5; | |
866 | break; | |
867 | case 2: | |
868 | case 3: | |
869 | eol = i % 3 == 2; | |
870 | break; | |
871 | default: | |
872 | /* More than one quadword per predicate. */ | |
873 | eol = true; | |
874 | break; | |
875 | } | |
876 | } | |
877 | for (j = zcr_len / 4; j >= 0; j--) { | |
878 | int digits; | |
879 | if (j * 4 + 4 <= zcr_len + 1) { | |
880 | digits = 16; | |
881 | } else { | |
882 | digits = (zcr_len % 4 + 1) * 4; | |
883 | } | |
884 | qemu_fprintf(f, "%0*" PRIx64 "%s", digits, | |
885 | env->vfp.pregs[i].p[j], | |
886 | j ? ":" : eol ? "\n" : " "); | |
887 | } | |
888 | } | |
889 | ||
890 | for (i = 0; i < 32; i++) { | |
891 | if (zcr_len == 0) { | |
892 | qemu_fprintf(f, "Z%02d=%016" PRIx64 ":%016" PRIx64 "%s", | |
893 | i, env->vfp.zregs[i].d[1], | |
894 | env->vfp.zregs[i].d[0], i & 1 ? "\n" : " "); | |
895 | } else if (zcr_len == 1) { | |
896 | qemu_fprintf(f, "Z%02d=%016" PRIx64 ":%016" PRIx64 | |
897 | ":%016" PRIx64 ":%016" PRIx64 "\n", | |
898 | i, env->vfp.zregs[i].d[3], env->vfp.zregs[i].d[2], | |
899 | env->vfp.zregs[i].d[1], env->vfp.zregs[i].d[0]); | |
900 | } else { | |
901 | for (j = zcr_len; j >= 0; j--) { | |
902 | bool odd = (zcr_len - j) % 2 != 0; | |
903 | if (j == zcr_len) { | |
904 | qemu_fprintf(f, "Z%02d[%x-%x]=", i, j, j - 1); | |
905 | } else if (!odd) { | |
906 | if (j > 0) { | |
907 | qemu_fprintf(f, " [%x-%x]=", j, j - 1); | |
908 | } else { | |
909 | qemu_fprintf(f, " [%x]=", j); | |
910 | } | |
911 | } | |
912 | qemu_fprintf(f, "%016" PRIx64 ":%016" PRIx64 "%s", | |
913 | env->vfp.zregs[i].d[j * 2 + 1], | |
914 | env->vfp.zregs[i].d[j * 2], | |
915 | odd || j == 0 ? "\n" : ":"); | |
916 | } | |
917 | } | |
918 | } | |
919 | } else { | |
920 | for (i = 0; i < 32; i++) { | |
921 | uint64_t *q = aa64_vfp_qreg(env, i); | |
922 | qemu_fprintf(f, "Q%02d=%016" PRIx64 ":%016" PRIx64 "%s", | |
923 | i, q[1], q[0], (i & 1 ? "\n" : " ")); | |
924 | } | |
925 | } | |
926 | } | |
927 | ||
928 | #else | |
929 | ||
930 | static inline void aarch64_cpu_dump_state(CPUState *cs, FILE *f, int flags) | |
931 | { | |
932 | g_assert_not_reached(); | |
933 | } | |
934 | ||
935 | #endif | |
936 | ||
937 | static void arm_cpu_dump_state(CPUState *cs, FILE *f, int flags) | |
938 | { | |
939 | ARMCPU *cpu = ARM_CPU(cs); | |
940 | CPUARMState *env = &cpu->env; | |
941 | int i; | |
942 | ||
943 | if (is_a64(env)) { | |
944 | aarch64_cpu_dump_state(cs, f, flags); | |
945 | return; | |
946 | } | |
947 | ||
948 | for (i = 0; i < 16; i++) { | |
949 | qemu_fprintf(f, "R%02d=%08x", i, env->regs[i]); | |
950 | if ((i % 4) == 3) { | |
951 | qemu_fprintf(f, "\n"); | |
952 | } else { | |
953 | qemu_fprintf(f, " "); | |
954 | } | |
955 | } | |
956 | ||
957 | if (arm_feature(env, ARM_FEATURE_M)) { | |
958 | uint32_t xpsr = xpsr_read(env); | |
959 | const char *mode; | |
960 | const char *ns_status = ""; | |
961 | ||
962 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { | |
963 | ns_status = env->v7m.secure ? "S " : "NS "; | |
964 | } | |
965 | ||
966 | if (xpsr & XPSR_EXCP) { | |
967 | mode = "handler"; | |
968 | } else { | |
969 | if (env->v7m.control[env->v7m.secure] & R_V7M_CONTROL_NPRIV_MASK) { | |
970 | mode = "unpriv-thread"; | |
971 | } else { | |
972 | mode = "priv-thread"; | |
973 | } | |
974 | } | |
975 | ||
976 | qemu_fprintf(f, "XPSR=%08x %c%c%c%c %c %s%s\n", | |
977 | xpsr, | |
978 | xpsr & XPSR_N ? 'N' : '-', | |
979 | xpsr & XPSR_Z ? 'Z' : '-', | |
980 | xpsr & XPSR_C ? 'C' : '-', | |
981 | xpsr & XPSR_V ? 'V' : '-', | |
982 | xpsr & XPSR_T ? 'T' : 'A', | |
983 | ns_status, | |
984 | mode); | |
985 | } else { | |
986 | uint32_t psr = cpsr_read(env); | |
987 | const char *ns_status = ""; | |
988 | ||
989 | if (arm_feature(env, ARM_FEATURE_EL3) && | |
990 | (psr & CPSR_M) != ARM_CPU_MODE_MON) { | |
991 | ns_status = env->cp15.scr_el3 & SCR_NS ? "NS " : "S "; | |
992 | } | |
993 | ||
994 | qemu_fprintf(f, "PSR=%08x %c%c%c%c %c %s%s%d\n", | |
995 | psr, | |
996 | psr & CPSR_N ? 'N' : '-', | |
997 | psr & CPSR_Z ? 'Z' : '-', | |
998 | psr & CPSR_C ? 'C' : '-', | |
999 | psr & CPSR_V ? 'V' : '-', | |
1000 | psr & CPSR_T ? 'T' : 'A', | |
1001 | ns_status, | |
1002 | aarch32_mode_name(psr), (psr & 0x10) ? 32 : 26); | |
1003 | } | |
1004 | ||
1005 | if (flags & CPU_DUMP_FPU) { | |
1006 | int numvfpregs = 0; | |
a6627f5f RH |
1007 | if (cpu_isar_feature(aa32_simd_r32, cpu)) { |
1008 | numvfpregs = 32; | |
7fbc6a40 | 1009 | } else if (cpu_isar_feature(aa32_vfp_simd, cpu)) { |
a6627f5f | 1010 | numvfpregs = 16; |
86480615 PMD |
1011 | } |
1012 | for (i = 0; i < numvfpregs; i++) { | |
1013 | uint64_t v = *aa32_vfp_dreg(env, i); | |
1014 | qemu_fprintf(f, "s%02d=%08x s%02d=%08x d%02d=%016" PRIx64 "\n", | |
1015 | i * 2, (uint32_t)v, | |
1016 | i * 2 + 1, (uint32_t)(v >> 32), | |
1017 | i, v); | |
1018 | } | |
1019 | qemu_fprintf(f, "FPSCR: %08x\n", vfp_get_fpscr(env)); | |
1020 | } | |
1021 | } | |
1022 | ||
46de5913 IM |
1023 | uint64_t arm_cpu_mp_affinity(int idx, uint8_t clustersz) |
1024 | { | |
1025 | uint32_t Aff1 = idx / clustersz; | |
1026 | uint32_t Aff0 = idx % clustersz; | |
1027 | return (Aff1 << ARM_AFF1_SHIFT) | Aff0; | |
1028 | } | |
1029 | ||
ac87e507 PM |
1030 | static void cpreg_hashtable_data_destroy(gpointer data) |
1031 | { | |
1032 | /* | |
1033 | * Destroy function for cpu->cp_regs hashtable data entries. | |
1034 | * We must free the name string because it was g_strdup()ed in | |
1035 | * add_cpreg_to_hashtable(). It's OK to cast away the 'const' | |
1036 | * from r->name because we know we definitely allocated it. | |
1037 | */ | |
1038 | ARMCPRegInfo *r = data; | |
1039 | ||
1040 | g_free((void *)r->name); | |
1041 | g_free(r); | |
1042 | } | |
1043 | ||
777dc784 PM |
1044 | static void arm_cpu_initfn(Object *obj) |
1045 | { | |
1046 | ARMCPU *cpu = ARM_CPU(obj); | |
1047 | ||
7506ed90 | 1048 | cpu_set_cpustate_pointers(cpu); |
4b6a83fb | 1049 | cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal, |
ac87e507 | 1050 | g_free, cpreg_hashtable_data_destroy); |
79614b78 | 1051 | |
b5c53d1b | 1052 | QLIST_INIT(&cpu->pre_el_change_hooks); |
08267487 AL |
1053 | QLIST_INIT(&cpu->el_change_hooks); |
1054 | ||
7c1840b6 PM |
1055 | #ifndef CONFIG_USER_ONLY |
1056 | /* Our inbound IRQ and FIQ lines */ | |
1057 | if (kvm_enabled()) { | |
136e67e9 EI |
1058 | /* VIRQ and VFIQ are unused with KVM but we add them to maintain |
1059 | * the same interface as non-KVM CPUs. | |
1060 | */ | |
1061 | qdev_init_gpio_in(DEVICE(cpu), arm_cpu_kvm_set_irq, 4); | |
7c1840b6 | 1062 | } else { |
136e67e9 | 1063 | qdev_init_gpio_in(DEVICE(cpu), arm_cpu_set_irq, 4); |
7c1840b6 | 1064 | } |
55d284af | 1065 | |
55d284af PM |
1066 | qdev_init_gpio_out(DEVICE(cpu), cpu->gt_timer_outputs, |
1067 | ARRAY_SIZE(cpu->gt_timer_outputs)); | |
aa1b3111 PM |
1068 | |
1069 | qdev_init_gpio_out_named(DEVICE(cpu), &cpu->gicv3_maintenance_interrupt, | |
1070 | "gicv3-maintenance-interrupt", 1); | |
07f48730 AJ |
1071 | qdev_init_gpio_out_named(DEVICE(cpu), &cpu->pmu_interrupt, |
1072 | "pmu-interrupt", 1); | |
7c1840b6 PM |
1073 | #endif |
1074 | ||
54d3e3f5 PM |
1075 | /* DTB consumers generally don't in fact care what the 'compatible' |
1076 | * string is, so always provide some string and trust that a hypothetical | |
1077 | * picky DTB consumer will also provide a helpful error message. | |
1078 | */ | |
1079 | cpu->dtb_compatible = "qemu,unknown"; | |
dd032e34 | 1080 | cpu->psci_version = 1; /* By default assume PSCI v0.1 */ |
3541addc | 1081 | cpu->kvm_target = QEMU_KVM_ARM_TARGET_NONE; |
54d3e3f5 | 1082 | |
98128601 RH |
1083 | if (tcg_enabled()) { |
1084 | cpu->psci_version = 2; /* TCG implements PSCI 0.2 */ | |
79614b78 | 1085 | } |
4b6a83fb PM |
1086 | } |
1087 | ||
96eec6b2 AJ |
1088 | static Property arm_cpu_gt_cntfrq_property = |
1089 | DEFINE_PROP_UINT64("cntfrq", ARMCPU, gt_cntfrq_hz, | |
1090 | NANOSECONDS_PER_SECOND / GTIMER_SCALE); | |
1091 | ||
07a5b0d2 | 1092 | static Property arm_cpu_reset_cbar_property = |
f318cec6 | 1093 | DEFINE_PROP_UINT64("reset-cbar", ARMCPU, reset_cbar, 0); |
07a5b0d2 | 1094 | |
68e0a40a AP |
1095 | static Property arm_cpu_reset_hivecs_property = |
1096 | DEFINE_PROP_BOOL("reset-hivecs", ARMCPU, reset_hivecs, false); | |
1097 | ||
3933443e PM |
1098 | static Property arm_cpu_rvbar_property = |
1099 | DEFINE_PROP_UINT64("rvbar", ARMCPU, rvbar, 0); | |
1100 | ||
45ca3a14 | 1101 | #ifndef CONFIG_USER_ONLY |
c25bd18a PM |
1102 | static Property arm_cpu_has_el2_property = |
1103 | DEFINE_PROP_BOOL("has_el2", ARMCPU, has_el2, true); | |
1104 | ||
51942aee GB |
1105 | static Property arm_cpu_has_el3_property = |
1106 | DEFINE_PROP_BOOL("has_el3", ARMCPU, has_el3, true); | |
45ca3a14 | 1107 | #endif |
51942aee | 1108 | |
3a062d57 JB |
1109 | static Property arm_cpu_cfgend_property = |
1110 | DEFINE_PROP_BOOL("cfgend", ARMCPU, cfgend, false); | |
1111 | ||
97a28b0e PM |
1112 | static Property arm_cpu_has_vfp_property = |
1113 | DEFINE_PROP_BOOL("vfp", ARMCPU, has_vfp, true); | |
1114 | ||
1115 | static Property arm_cpu_has_neon_property = | |
1116 | DEFINE_PROP_BOOL("neon", ARMCPU, has_neon, true); | |
1117 | ||
ea90db0a PM |
1118 | static Property arm_cpu_has_dsp_property = |
1119 | DEFINE_PROP_BOOL("dsp", ARMCPU, has_dsp, true); | |
1120 | ||
8f325f56 PC |
1121 | static Property arm_cpu_has_mpu_property = |
1122 | DEFINE_PROP_BOOL("has-mpu", ARMCPU, has_mpu, true); | |
1123 | ||
8d92e26b PM |
1124 | /* This is like DEFINE_PROP_UINT32 but it doesn't set the default value, |
1125 | * because the CPU initfn will have already set cpu->pmsav7_dregion to | |
1126 | * the right value for that particular CPU type, and we don't want | |
1127 | * to override that with an incorrect constant value. | |
1128 | */ | |
3281af81 | 1129 | static Property arm_cpu_pmsav7_dregion_property = |
8d92e26b PM |
1130 | DEFINE_PROP_UNSIGNED_NODEFAULT("pmsav7-dregion", ARMCPU, |
1131 | pmsav7_dregion, | |
1132 | qdev_prop_uint32, uint32_t); | |
3281af81 | 1133 | |
ae502508 AJ |
1134 | static bool arm_get_pmu(Object *obj, Error **errp) |
1135 | { | |
1136 | ARMCPU *cpu = ARM_CPU(obj); | |
1137 | ||
1138 | return cpu->has_pmu; | |
1139 | } | |
1140 | ||
1141 | static void arm_set_pmu(Object *obj, bool value, Error **errp) | |
1142 | { | |
1143 | ARMCPU *cpu = ARM_CPU(obj); | |
1144 | ||
1145 | if (value) { | |
1146 | if (kvm_enabled() && !kvm_arm_pmu_supported(CPU(cpu))) { | |
1147 | error_setg(errp, "'pmu' feature not supported by KVM on this host"); | |
1148 | return; | |
1149 | } | |
1150 | set_feature(&cpu->env, ARM_FEATURE_PMU); | |
1151 | } else { | |
1152 | unset_feature(&cpu->env, ARM_FEATURE_PMU); | |
1153 | } | |
1154 | cpu->has_pmu = value; | |
1155 | } | |
1156 | ||
7def8754 AJ |
1157 | unsigned int gt_cntfrq_period_ns(ARMCPU *cpu) |
1158 | { | |
96eec6b2 AJ |
1159 | /* |
1160 | * The exact approach to calculating guest ticks is: | |
1161 | * | |
1162 | * muldiv64(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), cpu->gt_cntfrq_hz, | |
1163 | * NANOSECONDS_PER_SECOND); | |
1164 | * | |
1165 | * We don't do that. Rather we intentionally use integer division | |
1166 | * truncation below and in the caller for the conversion of host monotonic | |
1167 | * time to guest ticks to provide the exact inverse for the semantics of | |
1168 | * the QEMUTimer scale factor. QEMUTimer's scale facter is an integer, so | |
1169 | * it loses precision when representing frequencies where | |
1170 | * `(NANOSECONDS_PER_SECOND % cpu->gt_cntfrq) > 0` holds. Failing to | |
1171 | * provide an exact inverse leads to scheduling timers with negative | |
1172 | * periods, which in turn leads to sticky behaviour in the guest. | |
1173 | * | |
1174 | * Finally, CNTFRQ is effectively capped at 1GHz to ensure our scale factor | |
1175 | * cannot become zero. | |
1176 | */ | |
7def8754 AJ |
1177 | return NANOSECONDS_PER_SECOND > cpu->gt_cntfrq_hz ? |
1178 | NANOSECONDS_PER_SECOND / cpu->gt_cntfrq_hz : 1; | |
1179 | } | |
1180 | ||
51e5ef45 | 1181 | void arm_cpu_post_init(Object *obj) |
07a5b0d2 PC |
1182 | { |
1183 | ARMCPU *cpu = ARM_CPU(obj); | |
07a5b0d2 | 1184 | |
790a1150 PM |
1185 | /* M profile implies PMSA. We have to do this here rather than |
1186 | * in realize with the other feature-implication checks because | |
1187 | * we look at the PMSA bit to see if we should add some properties. | |
1188 | */ | |
1189 | if (arm_feature(&cpu->env, ARM_FEATURE_M)) { | |
1190 | set_feature(&cpu->env, ARM_FEATURE_PMSA); | |
1191 | } | |
1192 | ||
f318cec6 PM |
1193 | if (arm_feature(&cpu->env, ARM_FEATURE_CBAR) || |
1194 | arm_feature(&cpu->env, ARM_FEATURE_CBAR_RO)) { | |
94d912d1 | 1195 | qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_cbar_property); |
07a5b0d2 | 1196 | } |
68e0a40a AP |
1197 | |
1198 | if (!arm_feature(&cpu->env, ARM_FEATURE_M)) { | |
94d912d1 | 1199 | qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_hivecs_property); |
68e0a40a | 1200 | } |
3933443e PM |
1201 | |
1202 | if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) { | |
94d912d1 | 1203 | qdev_property_add_static(DEVICE(obj), &arm_cpu_rvbar_property); |
3933443e | 1204 | } |
51942aee | 1205 | |
45ca3a14 | 1206 | #ifndef CONFIG_USER_ONLY |
51942aee GB |
1207 | if (arm_feature(&cpu->env, ARM_FEATURE_EL3)) { |
1208 | /* Add the has_el3 state CPU property only if EL3 is allowed. This will | |
1209 | * prevent "has_el3" from existing on CPUs which cannot support EL3. | |
1210 | */ | |
94d912d1 | 1211 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el3_property); |
9e273ef2 | 1212 | |
9e273ef2 PM |
1213 | object_property_add_link(obj, "secure-memory", |
1214 | TYPE_MEMORY_REGION, | |
1215 | (Object **)&cpu->secure_memory, | |
1216 | qdev_prop_allow_set_link_before_realize, | |
265b578c | 1217 | OBJ_PROP_LINK_STRONG, |
9e273ef2 | 1218 | &error_abort); |
51942aee | 1219 | } |
8f325f56 | 1220 | |
c25bd18a | 1221 | if (arm_feature(&cpu->env, ARM_FEATURE_EL2)) { |
94d912d1 | 1222 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el2_property); |
c25bd18a | 1223 | } |
45ca3a14 | 1224 | #endif |
c25bd18a | 1225 | |
929e754d | 1226 | if (arm_feature(&cpu->env, ARM_FEATURE_PMU)) { |
ae502508 AJ |
1227 | cpu->has_pmu = true; |
1228 | object_property_add_bool(obj, "pmu", arm_get_pmu, arm_set_pmu, | |
929e754d WH |
1229 | &error_abort); |
1230 | } | |
1231 | ||
97a28b0e PM |
1232 | /* |
1233 | * Allow user to turn off VFP and Neon support, but only for TCG -- | |
1234 | * KVM does not currently allow us to lie to the guest about its | |
1235 | * ID/feature registers, so the guest always sees what the host has. | |
1236 | */ | |
7d63183f RH |
1237 | if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64) |
1238 | ? cpu_isar_feature(aa64_fp_simd, cpu) | |
1239 | : cpu_isar_feature(aa32_vfp, cpu)) { | |
97a28b0e PM |
1240 | cpu->has_vfp = true; |
1241 | if (!kvm_enabled()) { | |
94d912d1 | 1242 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_vfp_property); |
97a28b0e PM |
1243 | } |
1244 | } | |
1245 | ||
1246 | if (arm_feature(&cpu->env, ARM_FEATURE_NEON)) { | |
1247 | cpu->has_neon = true; | |
1248 | if (!kvm_enabled()) { | |
94d912d1 | 1249 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_neon_property); |
97a28b0e PM |
1250 | } |
1251 | } | |
1252 | ||
ea90db0a PM |
1253 | if (arm_feature(&cpu->env, ARM_FEATURE_M) && |
1254 | arm_feature(&cpu->env, ARM_FEATURE_THUMB_DSP)) { | |
94d912d1 | 1255 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_dsp_property); |
ea90db0a PM |
1256 | } |
1257 | ||
452a0955 | 1258 | if (arm_feature(&cpu->env, ARM_FEATURE_PMSA)) { |
94d912d1 | 1259 | qdev_property_add_static(DEVICE(obj), &arm_cpu_has_mpu_property); |
3281af81 PC |
1260 | if (arm_feature(&cpu->env, ARM_FEATURE_V7)) { |
1261 | qdev_property_add_static(DEVICE(obj), | |
94d912d1 | 1262 | &arm_cpu_pmsav7_dregion_property); |
3281af81 | 1263 | } |
8f325f56 PC |
1264 | } |
1265 | ||
181962fd PM |
1266 | if (arm_feature(&cpu->env, ARM_FEATURE_M_SECURITY)) { |
1267 | object_property_add_link(obj, "idau", TYPE_IDAU_INTERFACE, &cpu->idau, | |
1268 | qdev_prop_allow_set_link_before_realize, | |
265b578c | 1269 | OBJ_PROP_LINK_STRONG, |
181962fd | 1270 | &error_abort); |
f9f62e4c PM |
1271 | /* |
1272 | * M profile: initial value of the Secure VTOR. We can't just use | |
1273 | * a simple DEFINE_PROP_UINT32 for this because we want to permit | |
1274 | * the property to be set after realize. | |
1275 | */ | |
64a7b8de FF |
1276 | object_property_add_uint32_ptr(obj, "init-svtor", |
1277 | &cpu->init_svtor, | |
1278 | OBJ_PROP_FLAG_READWRITE, &error_abort); | |
181962fd PM |
1279 | } |
1280 | ||
94d912d1 | 1281 | qdev_property_add_static(DEVICE(obj), &arm_cpu_cfgend_property); |
96eec6b2 AJ |
1282 | |
1283 | if (arm_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER)) { | |
94d912d1 | 1284 | qdev_property_add_static(DEVICE(cpu), &arm_cpu_gt_cntfrq_property); |
96eec6b2 | 1285 | } |
07a5b0d2 PC |
1286 | } |
1287 | ||
4b6a83fb PM |
1288 | static void arm_cpu_finalizefn(Object *obj) |
1289 | { | |
1290 | ARMCPU *cpu = ARM_CPU(obj); | |
08267487 AL |
1291 | ARMELChangeHook *hook, *next; |
1292 | ||
4b6a83fb | 1293 | g_hash_table_destroy(cpu->cp_regs); |
08267487 | 1294 | |
b5c53d1b AL |
1295 | QLIST_FOREACH_SAFE(hook, &cpu->pre_el_change_hooks, node, next) { |
1296 | QLIST_REMOVE(hook, node); | |
1297 | g_free(hook); | |
1298 | } | |
08267487 AL |
1299 | QLIST_FOREACH_SAFE(hook, &cpu->el_change_hooks, node, next) { |
1300 | QLIST_REMOVE(hook, node); | |
1301 | g_free(hook); | |
1302 | } | |
4e7beb0c AL |
1303 | #ifndef CONFIG_USER_ONLY |
1304 | if (cpu->pmu_timer) { | |
1305 | timer_del(cpu->pmu_timer); | |
1306 | timer_deinit(cpu->pmu_timer); | |
1307 | timer_free(cpu->pmu_timer); | |
1308 | } | |
1309 | #endif | |
777dc784 PM |
1310 | } |
1311 | ||
0df9142d AJ |
1312 | void arm_cpu_finalize_features(ARMCPU *cpu, Error **errp) |
1313 | { | |
1314 | Error *local_err = NULL; | |
1315 | ||
1316 | if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) { | |
1317 | arm_cpu_sve_finalize(cpu, &local_err); | |
1318 | if (local_err != NULL) { | |
1319 | error_propagate(errp, local_err); | |
1320 | return; | |
1321 | } | |
1322 | } | |
1323 | } | |
1324 | ||
14969266 | 1325 | static void arm_cpu_realizefn(DeviceState *dev, Error **errp) |
581be094 | 1326 | { |
14a10fc3 | 1327 | CPUState *cs = CPU(dev); |
14969266 AF |
1328 | ARMCPU *cpu = ARM_CPU(dev); |
1329 | ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev); | |
581be094 | 1330 | CPUARMState *env = &cpu->env; |
e97da98f | 1331 | int pagebits; |
ce5b1bbf | 1332 | Error *local_err = NULL; |
0f8d06f1 | 1333 | bool no_aa32 = false; |
ce5b1bbf | 1334 | |
c4487d76 PM |
1335 | /* If we needed to query the host kernel for the CPU features |
1336 | * then it's possible that might have failed in the initfn, but | |
1337 | * this is the first point where we can report it. | |
1338 | */ | |
1339 | if (cpu->host_cpu_probe_failed) { | |
1340 | if (!kvm_enabled()) { | |
1341 | error_setg(errp, "The 'host' CPU type can only be used with KVM"); | |
1342 | } else { | |
1343 | error_setg(errp, "Failed to retrieve host CPU features"); | |
1344 | } | |
1345 | return; | |
1346 | } | |
1347 | ||
95f87565 PM |
1348 | #ifndef CONFIG_USER_ONLY |
1349 | /* The NVIC and M-profile CPU are two halves of a single piece of | |
1350 | * hardware; trying to use one without the other is a command line | |
1351 | * error and will result in segfaults if not caught here. | |
1352 | */ | |
1353 | if (arm_feature(env, ARM_FEATURE_M)) { | |
1354 | if (!env->nvic) { | |
1355 | error_setg(errp, "This board cannot be used with Cortex-M CPUs"); | |
1356 | return; | |
1357 | } | |
1358 | } else { | |
1359 | if (env->nvic) { | |
1360 | error_setg(errp, "This board can only be used with Cortex-M CPUs"); | |
1361 | return; | |
1362 | } | |
1363 | } | |
397cd31f | 1364 | |
96eec6b2 AJ |
1365 | { |
1366 | uint64_t scale; | |
1367 | ||
1368 | if (arm_feature(env, ARM_FEATURE_GENERIC_TIMER)) { | |
1369 | if (!cpu->gt_cntfrq_hz) { | |
1370 | error_setg(errp, "Invalid CNTFRQ: %"PRId64"Hz", | |
1371 | cpu->gt_cntfrq_hz); | |
1372 | return; | |
1373 | } | |
1374 | scale = gt_cntfrq_period_ns(cpu); | |
1375 | } else { | |
1376 | scale = GTIMER_SCALE; | |
1377 | } | |
1378 | ||
1379 | cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, scale, | |
1380 | arm_gt_ptimer_cb, cpu); | |
1381 | cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, | |
1382 | arm_gt_vtimer_cb, cpu); | |
1383 | cpu->gt_timer[GTIMER_HYP] = timer_new(QEMU_CLOCK_VIRTUAL, scale, | |
1384 | arm_gt_htimer_cb, cpu); | |
1385 | cpu->gt_timer[GTIMER_SEC] = timer_new(QEMU_CLOCK_VIRTUAL, scale, | |
1386 | arm_gt_stimer_cb, cpu); | |
8c94b071 RH |
1387 | cpu->gt_timer[GTIMER_HYPVIRT] = timer_new(QEMU_CLOCK_VIRTUAL, scale, |
1388 | arm_gt_hvtimer_cb, cpu); | |
96eec6b2 | 1389 | } |
95f87565 PM |
1390 | #endif |
1391 | ||
ce5b1bbf LV |
1392 | cpu_exec_realizefn(cs, &local_err); |
1393 | if (local_err != NULL) { | |
1394 | error_propagate(errp, local_err); | |
1395 | return; | |
1396 | } | |
14969266 | 1397 | |
0df9142d AJ |
1398 | arm_cpu_finalize_features(cpu, &local_err); |
1399 | if (local_err != NULL) { | |
1400 | error_propagate(errp, local_err); | |
1401 | return; | |
1402 | } | |
1403 | ||
97a28b0e PM |
1404 | if (arm_feature(env, ARM_FEATURE_AARCH64) && |
1405 | cpu->has_vfp != cpu->has_neon) { | |
1406 | /* | |
1407 | * This is an architectural requirement for AArch64; AArch32 is | |
1408 | * more flexible and permits VFP-no-Neon and Neon-no-VFP. | |
1409 | */ | |
1410 | error_setg(errp, | |
1411 | "AArch64 CPUs must have both VFP and Neon or neither"); | |
1412 | return; | |
1413 | } | |
1414 | ||
1415 | if (!cpu->has_vfp) { | |
1416 | uint64_t t; | |
1417 | uint32_t u; | |
1418 | ||
97a28b0e PM |
1419 | t = cpu->isar.id_aa64isar1; |
1420 | t = FIELD_DP64(t, ID_AA64ISAR1, JSCVT, 0); | |
1421 | cpu->isar.id_aa64isar1 = t; | |
1422 | ||
1423 | t = cpu->isar.id_aa64pfr0; | |
1424 | t = FIELD_DP64(t, ID_AA64PFR0, FP, 0xf); | |
1425 | cpu->isar.id_aa64pfr0 = t; | |
1426 | ||
1427 | u = cpu->isar.id_isar6; | |
1428 | u = FIELD_DP32(u, ID_ISAR6, JSCVT, 0); | |
1429 | cpu->isar.id_isar6 = u; | |
1430 | ||
1431 | u = cpu->isar.mvfr0; | |
1432 | u = FIELD_DP32(u, MVFR0, FPSP, 0); | |
1433 | u = FIELD_DP32(u, MVFR0, FPDP, 0); | |
1434 | u = FIELD_DP32(u, MVFR0, FPTRAP, 0); | |
1435 | u = FIELD_DP32(u, MVFR0, FPDIVIDE, 0); | |
1436 | u = FIELD_DP32(u, MVFR0, FPSQRT, 0); | |
1437 | u = FIELD_DP32(u, MVFR0, FPSHVEC, 0); | |
1438 | u = FIELD_DP32(u, MVFR0, FPROUND, 0); | |
1439 | cpu->isar.mvfr0 = u; | |
1440 | ||
1441 | u = cpu->isar.mvfr1; | |
1442 | u = FIELD_DP32(u, MVFR1, FPFTZ, 0); | |
1443 | u = FIELD_DP32(u, MVFR1, FPDNAN, 0); | |
1444 | u = FIELD_DP32(u, MVFR1, FPHP, 0); | |
1445 | cpu->isar.mvfr1 = u; | |
1446 | ||
1447 | u = cpu->isar.mvfr2; | |
1448 | u = FIELD_DP32(u, MVFR2, FPMISC, 0); | |
1449 | cpu->isar.mvfr2 = u; | |
1450 | } | |
1451 | ||
1452 | if (!cpu->has_neon) { | |
1453 | uint64_t t; | |
1454 | uint32_t u; | |
1455 | ||
1456 | unset_feature(env, ARM_FEATURE_NEON); | |
1457 | ||
1458 | t = cpu->isar.id_aa64isar0; | |
1459 | t = FIELD_DP64(t, ID_AA64ISAR0, DP, 0); | |
1460 | cpu->isar.id_aa64isar0 = t; | |
1461 | ||
1462 | t = cpu->isar.id_aa64isar1; | |
1463 | t = FIELD_DP64(t, ID_AA64ISAR1, FCMA, 0); | |
1464 | cpu->isar.id_aa64isar1 = t; | |
1465 | ||
1466 | t = cpu->isar.id_aa64pfr0; | |
1467 | t = FIELD_DP64(t, ID_AA64PFR0, ADVSIMD, 0xf); | |
1468 | cpu->isar.id_aa64pfr0 = t; | |
1469 | ||
1470 | u = cpu->isar.id_isar5; | |
1471 | u = FIELD_DP32(u, ID_ISAR5, RDM, 0); | |
1472 | u = FIELD_DP32(u, ID_ISAR5, VCMA, 0); | |
1473 | cpu->isar.id_isar5 = u; | |
1474 | ||
1475 | u = cpu->isar.id_isar6; | |
1476 | u = FIELD_DP32(u, ID_ISAR6, DP, 0); | |
1477 | u = FIELD_DP32(u, ID_ISAR6, FHM, 0); | |
1478 | cpu->isar.id_isar6 = u; | |
1479 | ||
1480 | u = cpu->isar.mvfr1; | |
1481 | u = FIELD_DP32(u, MVFR1, SIMDLS, 0); | |
1482 | u = FIELD_DP32(u, MVFR1, SIMDINT, 0); | |
1483 | u = FIELD_DP32(u, MVFR1, SIMDSP, 0); | |
1484 | u = FIELD_DP32(u, MVFR1, SIMDHP, 0); | |
97a28b0e PM |
1485 | cpu->isar.mvfr1 = u; |
1486 | ||
1487 | u = cpu->isar.mvfr2; | |
1488 | u = FIELD_DP32(u, MVFR2, SIMDMISC, 0); | |
1489 | cpu->isar.mvfr2 = u; | |
1490 | } | |
1491 | ||
1492 | if (!cpu->has_neon && !cpu->has_vfp) { | |
1493 | uint64_t t; | |
1494 | uint32_t u; | |
1495 | ||
1496 | t = cpu->isar.id_aa64isar0; | |
1497 | t = FIELD_DP64(t, ID_AA64ISAR0, FHM, 0); | |
1498 | cpu->isar.id_aa64isar0 = t; | |
1499 | ||
1500 | t = cpu->isar.id_aa64isar1; | |
1501 | t = FIELD_DP64(t, ID_AA64ISAR1, FRINTTS, 0); | |
1502 | cpu->isar.id_aa64isar1 = t; | |
1503 | ||
1504 | u = cpu->isar.mvfr0; | |
1505 | u = FIELD_DP32(u, MVFR0, SIMDREG, 0); | |
1506 | cpu->isar.mvfr0 = u; | |
c52881bb RH |
1507 | |
1508 | /* Despite the name, this field covers both VFP and Neon */ | |
1509 | u = cpu->isar.mvfr1; | |
1510 | u = FIELD_DP32(u, MVFR1, SIMDFMAC, 0); | |
1511 | cpu->isar.mvfr1 = u; | |
97a28b0e PM |
1512 | } |
1513 | ||
ea90db0a PM |
1514 | if (arm_feature(env, ARM_FEATURE_M) && !cpu->has_dsp) { |
1515 | uint32_t u; | |
1516 | ||
1517 | unset_feature(env, ARM_FEATURE_THUMB_DSP); | |
1518 | ||
1519 | u = cpu->isar.id_isar1; | |
1520 | u = FIELD_DP32(u, ID_ISAR1, EXTEND, 1); | |
1521 | cpu->isar.id_isar1 = u; | |
1522 | ||
1523 | u = cpu->isar.id_isar2; | |
1524 | u = FIELD_DP32(u, ID_ISAR2, MULTU, 1); | |
1525 | u = FIELD_DP32(u, ID_ISAR2, MULTS, 1); | |
1526 | cpu->isar.id_isar2 = u; | |
1527 | ||
1528 | u = cpu->isar.id_isar3; | |
1529 | u = FIELD_DP32(u, ID_ISAR3, SIMD, 1); | |
1530 | u = FIELD_DP32(u, ID_ISAR3, SATURATE, 0); | |
1531 | cpu->isar.id_isar3 = u; | |
1532 | } | |
1533 | ||
581be094 | 1534 | /* Some features automatically imply others: */ |
81e69fb0 | 1535 | if (arm_feature(env, ARM_FEATURE_V8)) { |
5256df88 RH |
1536 | if (arm_feature(env, ARM_FEATURE_M)) { |
1537 | set_feature(env, ARM_FEATURE_V7); | |
1538 | } else { | |
1539 | set_feature(env, ARM_FEATURE_V7VE); | |
1540 | } | |
5110e683 | 1541 | } |
0f8d06f1 RH |
1542 | |
1543 | /* | |
1544 | * There exist AArch64 cpus without AArch32 support. When KVM | |
1545 | * queries ID_ISAR0_EL1 on such a host, the value is UNKNOWN. | |
1546 | * Similarly, we cannot check ID_AA64PFR0 without AArch64 support. | |
8f4821d7 PM |
1547 | * As a general principle, we also do not make ID register |
1548 | * consistency checks anywhere unless using TCG, because only | |
1549 | * for TCG would a consistency-check failure be a QEMU bug. | |
0f8d06f1 RH |
1550 | */ |
1551 | if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) { | |
1552 | no_aa32 = !cpu_isar_feature(aa64_aa32, cpu); | |
1553 | } | |
1554 | ||
5110e683 AL |
1555 | if (arm_feature(env, ARM_FEATURE_V7VE)) { |
1556 | /* v7 Virtualization Extensions. In real hardware this implies | |
1557 | * EL2 and also the presence of the Security Extensions. | |
1558 | * For QEMU, for backwards-compatibility we implement some | |
1559 | * CPUs or CPU configs which have no actual EL2 or EL3 but do | |
1560 | * include the various other features that V7VE implies. | |
1561 | * Presence of EL2 itself is ARM_FEATURE_EL2, and of the | |
1562 | * Security Extensions is ARM_FEATURE_EL3. | |
1563 | */ | |
873b73c0 PM |
1564 | assert(!tcg_enabled() || no_aa32 || |
1565 | cpu_isar_feature(aa32_arm_div, cpu)); | |
81e69fb0 | 1566 | set_feature(env, ARM_FEATURE_LPAE); |
5110e683 | 1567 | set_feature(env, ARM_FEATURE_V7); |
81e69fb0 | 1568 | } |
581be094 PM |
1569 | if (arm_feature(env, ARM_FEATURE_V7)) { |
1570 | set_feature(env, ARM_FEATURE_VAPA); | |
1571 | set_feature(env, ARM_FEATURE_THUMB2); | |
81bdde9d | 1572 | set_feature(env, ARM_FEATURE_MPIDR); |
581be094 PM |
1573 | if (!arm_feature(env, ARM_FEATURE_M)) { |
1574 | set_feature(env, ARM_FEATURE_V6K); | |
1575 | } else { | |
1576 | set_feature(env, ARM_FEATURE_V6); | |
1577 | } | |
91db4642 CLG |
1578 | |
1579 | /* Always define VBAR for V7 CPUs even if it doesn't exist in | |
1580 | * non-EL3 configs. This is needed by some legacy boards. | |
1581 | */ | |
1582 | set_feature(env, ARM_FEATURE_VBAR); | |
581be094 PM |
1583 | } |
1584 | if (arm_feature(env, ARM_FEATURE_V6K)) { | |
1585 | set_feature(env, ARM_FEATURE_V6); | |
1586 | set_feature(env, ARM_FEATURE_MVFR); | |
1587 | } | |
1588 | if (arm_feature(env, ARM_FEATURE_V6)) { | |
1589 | set_feature(env, ARM_FEATURE_V5); | |
1590 | if (!arm_feature(env, ARM_FEATURE_M)) { | |
873b73c0 PM |
1591 | assert(!tcg_enabled() || no_aa32 || |
1592 | cpu_isar_feature(aa32_jazelle, cpu)); | |
581be094 PM |
1593 | set_feature(env, ARM_FEATURE_AUXCR); |
1594 | } | |
1595 | } | |
1596 | if (arm_feature(env, ARM_FEATURE_V5)) { | |
1597 | set_feature(env, ARM_FEATURE_V4T); | |
1598 | } | |
de9b05b8 | 1599 | if (arm_feature(env, ARM_FEATURE_LPAE)) { |
bdcc150d | 1600 | set_feature(env, ARM_FEATURE_V7MP); |
de9b05b8 PM |
1601 | set_feature(env, ARM_FEATURE_PXN); |
1602 | } | |
f318cec6 PM |
1603 | if (arm_feature(env, ARM_FEATURE_CBAR_RO)) { |
1604 | set_feature(env, ARM_FEATURE_CBAR); | |
1605 | } | |
62b44f05 AR |
1606 | if (arm_feature(env, ARM_FEATURE_THUMB2) && |
1607 | !arm_feature(env, ARM_FEATURE_M)) { | |
1608 | set_feature(env, ARM_FEATURE_THUMB_DSP); | |
1609 | } | |
2ceb98c0 | 1610 | |
ea7ac69d PM |
1611 | /* |
1612 | * We rely on no XScale CPU having VFP so we can use the same bits in the | |
1613 | * TB flags field for VECSTRIDE and XSCALE_CPAR. | |
1614 | */ | |
7d63183f RH |
1615 | assert(arm_feature(&cpu->env, ARM_FEATURE_AARCH64) || |
1616 | !cpu_isar_feature(aa32_vfp_simd, cpu) || | |
1617 | !arm_feature(env, ARM_FEATURE_XSCALE)); | |
ea7ac69d | 1618 | |
e97da98f PM |
1619 | if (arm_feature(env, ARM_FEATURE_V7) && |
1620 | !arm_feature(env, ARM_FEATURE_M) && | |
452a0955 | 1621 | !arm_feature(env, ARM_FEATURE_PMSA)) { |
e97da98f PM |
1622 | /* v7VMSA drops support for the old ARMv5 tiny pages, so we |
1623 | * can use 4K pages. | |
1624 | */ | |
1625 | pagebits = 12; | |
1626 | } else { | |
1627 | /* For CPUs which might have tiny 1K pages, or which have an | |
1628 | * MPU and might have small region sizes, stick with 1K pages. | |
1629 | */ | |
1630 | pagebits = 10; | |
1631 | } | |
1632 | if (!set_preferred_target_page_bits(pagebits)) { | |
1633 | /* This can only ever happen for hotplugging a CPU, or if | |
1634 | * the board code incorrectly creates a CPU which it has | |
1635 | * promised via minimum_page_size that it will not. | |
1636 | */ | |
1637 | error_setg(errp, "This CPU requires a smaller page size than the " | |
1638 | "system is using"); | |
1639 | return; | |
1640 | } | |
1641 | ||
ce5b1bbf LV |
1642 | /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it. |
1643 | * We don't support setting cluster ID ([16..23]) (known as Aff2 | |
1644 | * in later ARM ARM versions), or any of the higher affinity level fields, | |
1645 | * so these bits always RAZ. | |
1646 | */ | |
1647 | if (cpu->mp_affinity == ARM64_AFFINITY_INVALID) { | |
46de5913 IM |
1648 | cpu->mp_affinity = arm_cpu_mp_affinity(cs->cpu_index, |
1649 | ARM_DEFAULT_CPUS_PER_CLUSTER); | |
ce5b1bbf LV |
1650 | } |
1651 | ||
68e0a40a AP |
1652 | if (cpu->reset_hivecs) { |
1653 | cpu->reset_sctlr |= (1 << 13); | |
1654 | } | |
1655 | ||
3a062d57 JB |
1656 | if (cpu->cfgend) { |
1657 | if (arm_feature(&cpu->env, ARM_FEATURE_V7)) { | |
1658 | cpu->reset_sctlr |= SCTLR_EE; | |
1659 | } else { | |
1660 | cpu->reset_sctlr |= SCTLR_B; | |
1661 | } | |
1662 | } | |
1663 | ||
51942aee GB |
1664 | if (!cpu->has_el3) { |
1665 | /* If the has_el3 CPU property is disabled then we need to disable the | |
1666 | * feature. | |
1667 | */ | |
1668 | unset_feature(env, ARM_FEATURE_EL3); | |
1669 | ||
1670 | /* Disable the security extension feature bits in the processor feature | |
3d5c84ff | 1671 | * registers as well. These are id_pfr1[7:4] and id_aa64pfr0[15:12]. |
51942aee GB |
1672 | */ |
1673 | cpu->id_pfr1 &= ~0xf0; | |
47576b94 | 1674 | cpu->isar.id_aa64pfr0 &= ~0xf000; |
51942aee GB |
1675 | } |
1676 | ||
c25bd18a PM |
1677 | if (!cpu->has_el2) { |
1678 | unset_feature(env, ARM_FEATURE_EL2); | |
1679 | } | |
1680 | ||
d6f02ce3 | 1681 | if (!cpu->has_pmu) { |
929e754d | 1682 | unset_feature(env, ARM_FEATURE_PMU); |
57a4a11b AL |
1683 | } |
1684 | if (arm_feature(env, ARM_FEATURE_PMU)) { | |
bf8d0969 | 1685 | pmu_init(cpu); |
57a4a11b AL |
1686 | |
1687 | if (!kvm_enabled()) { | |
1688 | arm_register_pre_el_change_hook(cpu, &pmu_pre_el_change, 0); | |
1689 | arm_register_el_change_hook(cpu, &pmu_post_el_change, 0); | |
1690 | } | |
4e7beb0c AL |
1691 | |
1692 | #ifndef CONFIG_USER_ONLY | |
1693 | cpu->pmu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, arm_pmu_timer_cb, | |
1694 | cpu); | |
1695 | #endif | |
57a4a11b | 1696 | } else { |
2a609df8 PM |
1697 | cpu->isar.id_aa64dfr0 = |
1698 | FIELD_DP64(cpu->isar.id_aa64dfr0, ID_AA64DFR0, PMUVER, 0); | |
a6179538 | 1699 | cpu->isar.id_dfr0 = FIELD_DP32(cpu->isar.id_dfr0, ID_DFR0, PERFMON, 0); |
57a4a11b AL |
1700 | cpu->pmceid0 = 0; |
1701 | cpu->pmceid1 = 0; | |
929e754d WH |
1702 | } |
1703 | ||
3c2f7bb3 PM |
1704 | if (!arm_feature(env, ARM_FEATURE_EL2)) { |
1705 | /* Disable the hypervisor feature bits in the processor feature | |
1706 | * registers if we don't have EL2. These are id_pfr1[15:12] and | |
1707 | * id_aa64pfr0_el1[11:8]. | |
1708 | */ | |
47576b94 | 1709 | cpu->isar.id_aa64pfr0 &= ~0xf00; |
3c2f7bb3 PM |
1710 | cpu->id_pfr1 &= ~0xf000; |
1711 | } | |
1712 | ||
f50cd314 PM |
1713 | /* MPU can be configured out of a PMSA CPU either by setting has-mpu |
1714 | * to false or by setting pmsav7-dregion to 0. | |
1715 | */ | |
8f325f56 | 1716 | if (!cpu->has_mpu) { |
f50cd314 PM |
1717 | cpu->pmsav7_dregion = 0; |
1718 | } | |
1719 | if (cpu->pmsav7_dregion == 0) { | |
1720 | cpu->has_mpu = false; | |
8f325f56 PC |
1721 | } |
1722 | ||
452a0955 | 1723 | if (arm_feature(env, ARM_FEATURE_PMSA) && |
3281af81 PC |
1724 | arm_feature(env, ARM_FEATURE_V7)) { |
1725 | uint32_t nr = cpu->pmsav7_dregion; | |
1726 | ||
1727 | if (nr > 0xff) { | |
9af9e0fe | 1728 | error_setg(errp, "PMSAv7 MPU #regions invalid %" PRIu32, nr); |
3281af81 PC |
1729 | return; |
1730 | } | |
6cb0b013 PC |
1731 | |
1732 | if (nr) { | |
0e1a46bb PM |
1733 | if (arm_feature(env, ARM_FEATURE_V8)) { |
1734 | /* PMSAv8 */ | |
62c58ee0 PM |
1735 | env->pmsav8.rbar[M_REG_NS] = g_new0(uint32_t, nr); |
1736 | env->pmsav8.rlar[M_REG_NS] = g_new0(uint32_t, nr); | |
1737 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { | |
1738 | env->pmsav8.rbar[M_REG_S] = g_new0(uint32_t, nr); | |
1739 | env->pmsav8.rlar[M_REG_S] = g_new0(uint32_t, nr); | |
1740 | } | |
0e1a46bb PM |
1741 | } else { |
1742 | env->pmsav7.drbar = g_new0(uint32_t, nr); | |
1743 | env->pmsav7.drsr = g_new0(uint32_t, nr); | |
1744 | env->pmsav7.dracr = g_new0(uint32_t, nr); | |
1745 | } | |
6cb0b013 | 1746 | } |
3281af81 PC |
1747 | } |
1748 | ||
9901c576 PM |
1749 | if (arm_feature(env, ARM_FEATURE_M_SECURITY)) { |
1750 | uint32_t nr = cpu->sau_sregion; | |
1751 | ||
1752 | if (nr > 0xff) { | |
1753 | error_setg(errp, "v8M SAU #regions invalid %" PRIu32, nr); | |
1754 | return; | |
1755 | } | |
1756 | ||
1757 | if (nr) { | |
1758 | env->sau.rbar = g_new0(uint32_t, nr); | |
1759 | env->sau.rlar = g_new0(uint32_t, nr); | |
1760 | } | |
1761 | } | |
1762 | ||
91db4642 CLG |
1763 | if (arm_feature(env, ARM_FEATURE_EL3)) { |
1764 | set_feature(env, ARM_FEATURE_VBAR); | |
1765 | } | |
1766 | ||
2ceb98c0 | 1767 | register_cp_regs_for_features(cpu); |
14969266 AF |
1768 | arm_cpu_register_gdb_regs_for_features(cpu); |
1769 | ||
721fae12 PM |
1770 | init_cpreg_list(cpu); |
1771 | ||
9e273ef2 | 1772 | #ifndef CONFIG_USER_ONLY |
cc7d44c2 LX |
1773 | MachineState *ms = MACHINE(qdev_get_machine()); |
1774 | unsigned int smp_cpus = ms->smp.cpus; | |
1775 | ||
1d2091bc | 1776 | if (cpu->has_el3 || arm_feature(env, ARM_FEATURE_M_SECURITY)) { |
1d2091bc PM |
1777 | cs->num_ases = 2; |
1778 | ||
9e273ef2 PM |
1779 | if (!cpu->secure_memory) { |
1780 | cpu->secure_memory = cs->memory; | |
1781 | } | |
80ceb07a PX |
1782 | cpu_address_space_init(cs, ARMASIdx_S, "cpu-secure-memory", |
1783 | cpu->secure_memory); | |
1d2091bc PM |
1784 | } else { |
1785 | cs->num_ases = 1; | |
9e273ef2 | 1786 | } |
80ceb07a | 1787 | cpu_address_space_init(cs, ARMASIdx_NS, "cpu-memory", cs->memory); |
f9a69711 AF |
1788 | |
1789 | /* No core_count specified, default to smp_cpus. */ | |
1790 | if (cpu->core_count == -1) { | |
1791 | cpu->core_count = smp_cpus; | |
1792 | } | |
9e273ef2 PM |
1793 | #endif |
1794 | ||
14a10fc3 | 1795 | qemu_init_vcpu(cs); |
00d0f7cb | 1796 | cpu_reset(cs); |
14969266 AF |
1797 | |
1798 | acc->parent_realize(dev, errp); | |
581be094 PM |
1799 | } |
1800 | ||
5900d6b2 AF |
1801 | static ObjectClass *arm_cpu_class_by_name(const char *cpu_model) |
1802 | { | |
1803 | ObjectClass *oc; | |
51492fd1 | 1804 | char *typename; |
fb8d6c24 | 1805 | char **cpuname; |
a0032cc5 | 1806 | const char *cpunamestr; |
5900d6b2 | 1807 | |
fb8d6c24 | 1808 | cpuname = g_strsplit(cpu_model, ",", 1); |
a0032cc5 PM |
1809 | cpunamestr = cpuname[0]; |
1810 | #ifdef CONFIG_USER_ONLY | |
1811 | /* For backwards compatibility usermode emulation allows "-cpu any", | |
1812 | * which has the same semantics as "-cpu max". | |
1813 | */ | |
1814 | if (!strcmp(cpunamestr, "any")) { | |
1815 | cpunamestr = "max"; | |
1816 | } | |
1817 | #endif | |
1818 | typename = g_strdup_printf(ARM_CPU_TYPE_NAME("%s"), cpunamestr); | |
51492fd1 | 1819 | oc = object_class_by_name(typename); |
fb8d6c24 | 1820 | g_strfreev(cpuname); |
51492fd1 | 1821 | g_free(typename); |
245fb54d AF |
1822 | if (!oc || !object_class_dynamic_cast(oc, TYPE_ARM_CPU) || |
1823 | object_class_is_abstract(oc)) { | |
5900d6b2 AF |
1824 | return NULL; |
1825 | } | |
1826 | return oc; | |
1827 | } | |
1828 | ||
15ee776b PM |
1829 | /* CPU models. These are not needed for the AArch64 linux-user build. */ |
1830 | #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) | |
1831 | ||
777dc784 PM |
1832 | static void arm926_initfn(Object *obj) |
1833 | { | |
1834 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
1835 | |
1836 | cpu->dtb_compatible = "arm,arm926"; | |
581be094 | 1837 | set_feature(&cpu->env, ARM_FEATURE_V5); |
c4804214 PM |
1838 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
1839 | set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN); | |
b2d06f96 | 1840 | cpu->midr = 0x41069265; |
325b3cef | 1841 | cpu->reset_fpsid = 0x41011090; |
64e1671f | 1842 | cpu->ctr = 0x1dd20d2; |
0ca7e01c | 1843 | cpu->reset_sctlr = 0x00090078; |
09cbd501 RH |
1844 | |
1845 | /* | |
1846 | * ARMv5 does not have the ID_ISAR registers, but we can still | |
1847 | * set the field to indicate Jazelle support within QEMU. | |
1848 | */ | |
1849 | cpu->isar.id_isar1 = FIELD_DP32(cpu->isar.id_isar1, ID_ISAR1, JAZELLE, 1); | |
cb7cef8b | 1850 | /* |
9eb4f589 RH |
1851 | * Similarly, we need to set MVFR0 fields to enable vfp and short vector |
1852 | * support even though ARMv5 doesn't have this register. | |
cb7cef8b PM |
1853 | */ |
1854 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPSHVEC, 1); | |
9eb4f589 | 1855 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPSP, 1); |
cb7cef8b | 1856 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPDP, 1); |
777dc784 PM |
1857 | } |
1858 | ||
1859 | static void arm946_initfn(Object *obj) | |
1860 | { | |
1861 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
1862 | |
1863 | cpu->dtb_compatible = "arm,arm946"; | |
581be094 | 1864 | set_feature(&cpu->env, ARM_FEATURE_V5); |
452a0955 | 1865 | set_feature(&cpu->env, ARM_FEATURE_PMSA); |
c4804214 | 1866 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
b2d06f96 | 1867 | cpu->midr = 0x41059461; |
64e1671f | 1868 | cpu->ctr = 0x0f004006; |
0ca7e01c | 1869 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
1870 | } |
1871 | ||
1872 | static void arm1026_initfn(Object *obj) | |
1873 | { | |
1874 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
1875 | |
1876 | cpu->dtb_compatible = "arm,arm1026"; | |
581be094 | 1877 | set_feature(&cpu->env, ARM_FEATURE_V5); |
581be094 | 1878 | set_feature(&cpu->env, ARM_FEATURE_AUXCR); |
c4804214 PM |
1879 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
1880 | set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN); | |
b2d06f96 | 1881 | cpu->midr = 0x4106a262; |
325b3cef | 1882 | cpu->reset_fpsid = 0x410110a0; |
64e1671f | 1883 | cpu->ctr = 0x1dd20d2; |
0ca7e01c | 1884 | cpu->reset_sctlr = 0x00090078; |
2771db27 | 1885 | cpu->reset_auxcr = 1; |
09cbd501 RH |
1886 | |
1887 | /* | |
1888 | * ARMv5 does not have the ID_ISAR registers, but we can still | |
1889 | * set the field to indicate Jazelle support within QEMU. | |
1890 | */ | |
1891 | cpu->isar.id_isar1 = FIELD_DP32(cpu->isar.id_isar1, ID_ISAR1, JAZELLE, 1); | |
cb7cef8b | 1892 | /* |
9eb4f589 RH |
1893 | * Similarly, we need to set MVFR0 fields to enable vfp and short vector |
1894 | * support even though ARMv5 doesn't have this register. | |
cb7cef8b PM |
1895 | */ |
1896 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPSHVEC, 1); | |
9eb4f589 | 1897 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPSP, 1); |
cb7cef8b | 1898 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPDP, 1); |
09cbd501 | 1899 | |
06d76f31 PM |
1900 | { |
1901 | /* The 1026 had an IFAR at c6,c0,0,1 rather than the ARMv6 c6,c0,0,2 */ | |
1902 | ARMCPRegInfo ifar = { | |
1903 | .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1, | |
1904 | .access = PL1_RW, | |
b848ce2b | 1905 | .fieldoffset = offsetof(CPUARMState, cp15.ifar_ns), |
06d76f31 PM |
1906 | .resetvalue = 0 |
1907 | }; | |
1908 | define_one_arm_cp_reg(cpu, &ifar); | |
1909 | } | |
777dc784 PM |
1910 | } |
1911 | ||
1912 | static void arm1136_r2_initfn(Object *obj) | |
1913 | { | |
1914 | ARMCPU *cpu = ARM_CPU(obj); | |
2e4d7e3e PM |
1915 | /* What qemu calls "arm1136_r2" is actually the 1136 r0p2, ie an |
1916 | * older core than plain "arm1136". In particular this does not | |
1917 | * have the v6K features. | |
1918 | * These ID register values are correct for 1136 but may be wrong | |
1919 | * for 1136_r2 (in particular r0p2 does not actually implement most | |
1920 | * of the ID registers). | |
1921 | */ | |
54d3e3f5 PM |
1922 | |
1923 | cpu->dtb_compatible = "arm,arm1136"; | |
581be094 | 1924 | set_feature(&cpu->env, ARM_FEATURE_V6); |
c4804214 PM |
1925 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
1926 | set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG); | |
1927 | set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS); | |
b2d06f96 | 1928 | cpu->midr = 0x4107b362; |
325b3cef | 1929 | cpu->reset_fpsid = 0x410120b4; |
47576b94 RH |
1930 | cpu->isar.mvfr0 = 0x11111111; |
1931 | cpu->isar.mvfr1 = 0x00000000; | |
64e1671f | 1932 | cpu->ctr = 0x1dd20d2; |
0ca7e01c | 1933 | cpu->reset_sctlr = 0x00050078; |
2e4d7e3e PM |
1934 | cpu->id_pfr0 = 0x111; |
1935 | cpu->id_pfr1 = 0x1; | |
a6179538 | 1936 | cpu->isar.id_dfr0 = 0x2; |
2e4d7e3e | 1937 | cpu->id_afr0 = 0x3; |
10054016 PM |
1938 | cpu->isar.id_mmfr0 = 0x01130003; |
1939 | cpu->isar.id_mmfr1 = 0x10030302; | |
1940 | cpu->isar.id_mmfr2 = 0x01222110; | |
47576b94 RH |
1941 | cpu->isar.id_isar0 = 0x00140011; |
1942 | cpu->isar.id_isar1 = 0x12002111; | |
1943 | cpu->isar.id_isar2 = 0x11231111; | |
1944 | cpu->isar.id_isar3 = 0x01102131; | |
1945 | cpu->isar.id_isar4 = 0x141; | |
2771db27 | 1946 | cpu->reset_auxcr = 7; |
777dc784 PM |
1947 | } |
1948 | ||
1949 | static void arm1136_initfn(Object *obj) | |
1950 | { | |
1951 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
1952 | |
1953 | cpu->dtb_compatible = "arm,arm1136"; | |
581be094 PM |
1954 | set_feature(&cpu->env, ARM_FEATURE_V6K); |
1955 | set_feature(&cpu->env, ARM_FEATURE_V6); | |
c4804214 PM |
1956 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
1957 | set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG); | |
1958 | set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS); | |
b2d06f96 | 1959 | cpu->midr = 0x4117b363; |
325b3cef | 1960 | cpu->reset_fpsid = 0x410120b4; |
47576b94 RH |
1961 | cpu->isar.mvfr0 = 0x11111111; |
1962 | cpu->isar.mvfr1 = 0x00000000; | |
64e1671f | 1963 | cpu->ctr = 0x1dd20d2; |
0ca7e01c | 1964 | cpu->reset_sctlr = 0x00050078; |
2e4d7e3e PM |
1965 | cpu->id_pfr0 = 0x111; |
1966 | cpu->id_pfr1 = 0x1; | |
a6179538 | 1967 | cpu->isar.id_dfr0 = 0x2; |
2e4d7e3e | 1968 | cpu->id_afr0 = 0x3; |
10054016 PM |
1969 | cpu->isar.id_mmfr0 = 0x01130003; |
1970 | cpu->isar.id_mmfr1 = 0x10030302; | |
1971 | cpu->isar.id_mmfr2 = 0x01222110; | |
47576b94 RH |
1972 | cpu->isar.id_isar0 = 0x00140011; |
1973 | cpu->isar.id_isar1 = 0x12002111; | |
1974 | cpu->isar.id_isar2 = 0x11231111; | |
1975 | cpu->isar.id_isar3 = 0x01102131; | |
1976 | cpu->isar.id_isar4 = 0x141; | |
2771db27 | 1977 | cpu->reset_auxcr = 7; |
777dc784 PM |
1978 | } |
1979 | ||
1980 | static void arm1176_initfn(Object *obj) | |
1981 | { | |
1982 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
1983 | |
1984 | cpu->dtb_compatible = "arm,arm1176"; | |
581be094 | 1985 | set_feature(&cpu->env, ARM_FEATURE_V6K); |
581be094 | 1986 | set_feature(&cpu->env, ARM_FEATURE_VAPA); |
c4804214 PM |
1987 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
1988 | set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG); | |
1989 | set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS); | |
c0ccb02d | 1990 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
b2d06f96 | 1991 | cpu->midr = 0x410fb767; |
325b3cef | 1992 | cpu->reset_fpsid = 0x410120b5; |
47576b94 RH |
1993 | cpu->isar.mvfr0 = 0x11111111; |
1994 | cpu->isar.mvfr1 = 0x00000000; | |
64e1671f | 1995 | cpu->ctr = 0x1dd20d2; |
0ca7e01c | 1996 | cpu->reset_sctlr = 0x00050078; |
2e4d7e3e PM |
1997 | cpu->id_pfr0 = 0x111; |
1998 | cpu->id_pfr1 = 0x11; | |
a6179538 | 1999 | cpu->isar.id_dfr0 = 0x33; |
2e4d7e3e | 2000 | cpu->id_afr0 = 0; |
10054016 PM |
2001 | cpu->isar.id_mmfr0 = 0x01130003; |
2002 | cpu->isar.id_mmfr1 = 0x10030302; | |
2003 | cpu->isar.id_mmfr2 = 0x01222100; | |
47576b94 RH |
2004 | cpu->isar.id_isar0 = 0x0140011; |
2005 | cpu->isar.id_isar1 = 0x12002111; | |
2006 | cpu->isar.id_isar2 = 0x11231121; | |
2007 | cpu->isar.id_isar3 = 0x01102131; | |
2008 | cpu->isar.id_isar4 = 0x01141; | |
2771db27 | 2009 | cpu->reset_auxcr = 7; |
777dc784 PM |
2010 | } |
2011 | ||
2012 | static void arm11mpcore_initfn(Object *obj) | |
2013 | { | |
2014 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2015 | |
2016 | cpu->dtb_compatible = "arm,arm11mpcore"; | |
581be094 | 2017 | set_feature(&cpu->env, ARM_FEATURE_V6K); |
581be094 | 2018 | set_feature(&cpu->env, ARM_FEATURE_VAPA); |
81bdde9d | 2019 | set_feature(&cpu->env, ARM_FEATURE_MPIDR); |
c4804214 | 2020 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
b2d06f96 | 2021 | cpu->midr = 0x410fb022; |
325b3cef | 2022 | cpu->reset_fpsid = 0x410120b4; |
47576b94 RH |
2023 | cpu->isar.mvfr0 = 0x11111111; |
2024 | cpu->isar.mvfr1 = 0x00000000; | |
200bf596 | 2025 | cpu->ctr = 0x1d192992; /* 32K icache 32K dcache */ |
2e4d7e3e PM |
2026 | cpu->id_pfr0 = 0x111; |
2027 | cpu->id_pfr1 = 0x1; | |
a6179538 | 2028 | cpu->isar.id_dfr0 = 0; |
2e4d7e3e | 2029 | cpu->id_afr0 = 0x2; |
10054016 PM |
2030 | cpu->isar.id_mmfr0 = 0x01100103; |
2031 | cpu->isar.id_mmfr1 = 0x10020302; | |
2032 | cpu->isar.id_mmfr2 = 0x01222000; | |
47576b94 RH |
2033 | cpu->isar.id_isar0 = 0x00100011; |
2034 | cpu->isar.id_isar1 = 0x12002111; | |
2035 | cpu->isar.id_isar2 = 0x11221011; | |
2036 | cpu->isar.id_isar3 = 0x01102131; | |
2037 | cpu->isar.id_isar4 = 0x141; | |
2771db27 | 2038 | cpu->reset_auxcr = 1; |
777dc784 PM |
2039 | } |
2040 | ||
191776b9 SH |
2041 | static void cortex_m0_initfn(Object *obj) |
2042 | { | |
2043 | ARMCPU *cpu = ARM_CPU(obj); | |
2044 | set_feature(&cpu->env, ARM_FEATURE_V6); | |
2045 | set_feature(&cpu->env, ARM_FEATURE_M); | |
2046 | ||
2047 | cpu->midr = 0x410cc200; | |
2048 | } | |
2049 | ||
777dc784 PM |
2050 | static void cortex_m3_initfn(Object *obj) |
2051 | { | |
2052 | ARMCPU *cpu = ARM_CPU(obj); | |
581be094 PM |
2053 | set_feature(&cpu->env, ARM_FEATURE_V7); |
2054 | set_feature(&cpu->env, ARM_FEATURE_M); | |
cc2ae7c9 | 2055 | set_feature(&cpu->env, ARM_FEATURE_M_MAIN); |
b2d06f96 | 2056 | cpu->midr = 0x410fc231; |
8d92e26b | 2057 | cpu->pmsav7_dregion = 8; |
5a53e2c1 PM |
2058 | cpu->id_pfr0 = 0x00000030; |
2059 | cpu->id_pfr1 = 0x00000200; | |
a6179538 | 2060 | cpu->isar.id_dfr0 = 0x00100000; |
5a53e2c1 | 2061 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2062 | cpu->isar.id_mmfr0 = 0x00000030; |
2063 | cpu->isar.id_mmfr1 = 0x00000000; | |
2064 | cpu->isar.id_mmfr2 = 0x00000000; | |
2065 | cpu->isar.id_mmfr3 = 0x00000000; | |
47576b94 RH |
2066 | cpu->isar.id_isar0 = 0x01141110; |
2067 | cpu->isar.id_isar1 = 0x02111000; | |
2068 | cpu->isar.id_isar2 = 0x21112231; | |
2069 | cpu->isar.id_isar3 = 0x01111110; | |
2070 | cpu->isar.id_isar4 = 0x01310102; | |
2071 | cpu->isar.id_isar5 = 0x00000000; | |
2072 | cpu->isar.id_isar6 = 0x00000000; | |
777dc784 PM |
2073 | } |
2074 | ||
ba890a9b AR |
2075 | static void cortex_m4_initfn(Object *obj) |
2076 | { | |
2077 | ARMCPU *cpu = ARM_CPU(obj); | |
2078 | ||
2079 | set_feature(&cpu->env, ARM_FEATURE_V7); | |
2080 | set_feature(&cpu->env, ARM_FEATURE_M); | |
cc2ae7c9 | 2081 | set_feature(&cpu->env, ARM_FEATURE_M_MAIN); |
ba890a9b AR |
2082 | set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP); |
2083 | cpu->midr = 0x410fc240; /* r0p0 */ | |
8d92e26b | 2084 | cpu->pmsav7_dregion = 8; |
14fd0c31 PM |
2085 | cpu->isar.mvfr0 = 0x10110021; |
2086 | cpu->isar.mvfr1 = 0x11000011; | |
2087 | cpu->isar.mvfr2 = 0x00000000; | |
5a53e2c1 PM |
2088 | cpu->id_pfr0 = 0x00000030; |
2089 | cpu->id_pfr1 = 0x00000200; | |
a6179538 | 2090 | cpu->isar.id_dfr0 = 0x00100000; |
5a53e2c1 | 2091 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2092 | cpu->isar.id_mmfr0 = 0x00000030; |
2093 | cpu->isar.id_mmfr1 = 0x00000000; | |
2094 | cpu->isar.id_mmfr2 = 0x00000000; | |
2095 | cpu->isar.id_mmfr3 = 0x00000000; | |
47576b94 RH |
2096 | cpu->isar.id_isar0 = 0x01141110; |
2097 | cpu->isar.id_isar1 = 0x02111000; | |
2098 | cpu->isar.id_isar2 = 0x21112231; | |
2099 | cpu->isar.id_isar3 = 0x01111110; | |
2100 | cpu->isar.id_isar4 = 0x01310102; | |
2101 | cpu->isar.id_isar5 = 0x00000000; | |
2102 | cpu->isar.id_isar6 = 0x00000000; | |
ba890a9b | 2103 | } |
9901c576 | 2104 | |
cf7beda5 CL |
2105 | static void cortex_m7_initfn(Object *obj) |
2106 | { | |
2107 | ARMCPU *cpu = ARM_CPU(obj); | |
2108 | ||
2109 | set_feature(&cpu->env, ARM_FEATURE_V7); | |
2110 | set_feature(&cpu->env, ARM_FEATURE_M); | |
2111 | set_feature(&cpu->env, ARM_FEATURE_M_MAIN); | |
2112 | set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP); | |
cf7beda5 CL |
2113 | cpu->midr = 0x411fc272; /* r1p2 */ |
2114 | cpu->pmsav7_dregion = 8; | |
2115 | cpu->isar.mvfr0 = 0x10110221; | |
2116 | cpu->isar.mvfr1 = 0x12000011; | |
2117 | cpu->isar.mvfr2 = 0x00000040; | |
2118 | cpu->id_pfr0 = 0x00000030; | |
2119 | cpu->id_pfr1 = 0x00000200; | |
a6179538 | 2120 | cpu->isar.id_dfr0 = 0x00100000; |
cf7beda5 | 2121 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2122 | cpu->isar.id_mmfr0 = 0x00100030; |
2123 | cpu->isar.id_mmfr1 = 0x00000000; | |
2124 | cpu->isar.id_mmfr2 = 0x01000000; | |
2125 | cpu->isar.id_mmfr3 = 0x00000000; | |
cf7beda5 CL |
2126 | cpu->isar.id_isar0 = 0x01101110; |
2127 | cpu->isar.id_isar1 = 0x02112000; | |
2128 | cpu->isar.id_isar2 = 0x20232231; | |
2129 | cpu->isar.id_isar3 = 0x01111131; | |
2130 | cpu->isar.id_isar4 = 0x01310132; | |
2131 | cpu->isar.id_isar5 = 0x00000000; | |
2132 | cpu->isar.id_isar6 = 0x00000000; | |
2133 | } | |
2134 | ||
c7b26382 PM |
2135 | static void cortex_m33_initfn(Object *obj) |
2136 | { | |
2137 | ARMCPU *cpu = ARM_CPU(obj); | |
2138 | ||
2139 | set_feature(&cpu->env, ARM_FEATURE_V8); | |
2140 | set_feature(&cpu->env, ARM_FEATURE_M); | |
cc2ae7c9 | 2141 | set_feature(&cpu->env, ARM_FEATURE_M_MAIN); |
c7b26382 PM |
2142 | set_feature(&cpu->env, ARM_FEATURE_M_SECURITY); |
2143 | set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP); | |
2144 | cpu->midr = 0x410fd213; /* r0p3 */ | |
2145 | cpu->pmsav7_dregion = 16; | |
2146 | cpu->sau_sregion = 8; | |
14fd0c31 PM |
2147 | cpu->isar.mvfr0 = 0x10110021; |
2148 | cpu->isar.mvfr1 = 0x11000011; | |
2149 | cpu->isar.mvfr2 = 0x00000040; | |
c7b26382 PM |
2150 | cpu->id_pfr0 = 0x00000030; |
2151 | cpu->id_pfr1 = 0x00000210; | |
a6179538 | 2152 | cpu->isar.id_dfr0 = 0x00200000; |
c7b26382 | 2153 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2154 | cpu->isar.id_mmfr0 = 0x00101F40; |
2155 | cpu->isar.id_mmfr1 = 0x00000000; | |
2156 | cpu->isar.id_mmfr2 = 0x01000000; | |
2157 | cpu->isar.id_mmfr3 = 0x00000000; | |
47576b94 RH |
2158 | cpu->isar.id_isar0 = 0x01101110; |
2159 | cpu->isar.id_isar1 = 0x02212000; | |
2160 | cpu->isar.id_isar2 = 0x20232232; | |
2161 | cpu->isar.id_isar3 = 0x01111131; | |
2162 | cpu->isar.id_isar4 = 0x01310132; | |
2163 | cpu->isar.id_isar5 = 0x00000000; | |
2164 | cpu->isar.id_isar6 = 0x00000000; | |
c7b26382 PM |
2165 | cpu->clidr = 0x00000000; |
2166 | cpu->ctr = 0x8000c000; | |
2167 | } | |
2168 | ||
e6f010cc AF |
2169 | static void arm_v7m_class_init(ObjectClass *oc, void *data) |
2170 | { | |
51e5ef45 | 2171 | ARMCPUClass *acc = ARM_CPU_CLASS(oc); |
e6f010cc AF |
2172 | CPUClass *cc = CPU_CLASS(oc); |
2173 | ||
51e5ef45 | 2174 | acc->info = data; |
b5c633c5 | 2175 | #ifndef CONFIG_USER_ONLY |
e6f010cc AF |
2176 | cc->do_interrupt = arm_v7m_cpu_do_interrupt; |
2177 | #endif | |
b5c633c5 PM |
2178 | |
2179 | cc->cpu_exec_interrupt = arm_v7m_cpu_exec_interrupt; | |
e6f010cc AF |
2180 | } |
2181 | ||
d6a6b13e PC |
2182 | static const ARMCPRegInfo cortexr5_cp_reginfo[] = { |
2183 | /* Dummy the TCM region regs for the moment */ | |
2184 | { .name = "ATCM", .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 0, | |
2185 | .access = PL1_RW, .type = ARM_CP_CONST }, | |
2186 | { .name = "BTCM", .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 1, | |
2187 | .access = PL1_RW, .type = ARM_CP_CONST }, | |
95e9a242 LM |
2188 | { .name = "DCACHE_INVAL", .cp = 15, .opc1 = 0, .crn = 15, .crm = 5, |
2189 | .opc2 = 0, .access = PL1_W, .type = ARM_CP_NOP }, | |
d6a6b13e PC |
2190 | REGINFO_SENTINEL |
2191 | }; | |
2192 | ||
2193 | static void cortex_r5_initfn(Object *obj) | |
2194 | { | |
2195 | ARMCPU *cpu = ARM_CPU(obj); | |
2196 | ||
2197 | set_feature(&cpu->env, ARM_FEATURE_V7); | |
d6a6b13e | 2198 | set_feature(&cpu->env, ARM_FEATURE_V7MP); |
452a0955 | 2199 | set_feature(&cpu->env, ARM_FEATURE_PMSA); |
90f67158 | 2200 | set_feature(&cpu->env, ARM_FEATURE_PMU); |
d6a6b13e PC |
2201 | cpu->midr = 0x411fc153; /* r1p3 */ |
2202 | cpu->id_pfr0 = 0x0131; | |
2203 | cpu->id_pfr1 = 0x001; | |
a6179538 | 2204 | cpu->isar.id_dfr0 = 0x010400; |
d6a6b13e | 2205 | cpu->id_afr0 = 0x0; |
10054016 PM |
2206 | cpu->isar.id_mmfr0 = 0x0210030; |
2207 | cpu->isar.id_mmfr1 = 0x00000000; | |
2208 | cpu->isar.id_mmfr2 = 0x01200000; | |
2209 | cpu->isar.id_mmfr3 = 0x0211; | |
47576b94 RH |
2210 | cpu->isar.id_isar0 = 0x02101111; |
2211 | cpu->isar.id_isar1 = 0x13112111; | |
2212 | cpu->isar.id_isar2 = 0x21232141; | |
2213 | cpu->isar.id_isar3 = 0x01112131; | |
2214 | cpu->isar.id_isar4 = 0x0010142; | |
2215 | cpu->isar.id_isar5 = 0x0; | |
2216 | cpu->isar.id_isar6 = 0x0; | |
d6a6b13e | 2217 | cpu->mp_is_up = true; |
8d92e26b | 2218 | cpu->pmsav7_dregion = 16; |
d6a6b13e PC |
2219 | define_arm_cp_regs(cpu, cortexr5_cp_reginfo); |
2220 | } | |
2221 | ||
ebac5458 EI |
2222 | static void cortex_r5f_initfn(Object *obj) |
2223 | { | |
2224 | ARMCPU *cpu = ARM_CPU(obj); | |
2225 | ||
2226 | cortex_r5_initfn(obj); | |
3de79d33 PM |
2227 | cpu->isar.mvfr0 = 0x10110221; |
2228 | cpu->isar.mvfr1 = 0x00000011; | |
ebac5458 EI |
2229 | } |
2230 | ||
34f90529 PM |
2231 | static const ARMCPRegInfo cortexa8_cp_reginfo[] = { |
2232 | { .name = "L2LOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 0, | |
2233 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
2234 | { .name = "L2AUXCR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2, | |
2235 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
2236 | REGINFO_SENTINEL | |
2237 | }; | |
2238 | ||
777dc784 PM |
2239 | static void cortex_a8_initfn(Object *obj) |
2240 | { | |
2241 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2242 | |
2243 | cpu->dtb_compatible = "arm,cortex-a8"; | |
581be094 | 2244 | set_feature(&cpu->env, ARM_FEATURE_V7); |
581be094 PM |
2245 | set_feature(&cpu->env, ARM_FEATURE_NEON); |
2246 | set_feature(&cpu->env, ARM_FEATURE_THUMB2EE); | |
c4804214 | 2247 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
c0ccb02d | 2248 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
b2d06f96 | 2249 | cpu->midr = 0x410fc080; |
325b3cef | 2250 | cpu->reset_fpsid = 0x410330c0; |
47576b94 RH |
2251 | cpu->isar.mvfr0 = 0x11110222; |
2252 | cpu->isar.mvfr1 = 0x00011111; | |
64e1671f | 2253 | cpu->ctr = 0x82048004; |
0ca7e01c | 2254 | cpu->reset_sctlr = 0x00c50078; |
2e4d7e3e PM |
2255 | cpu->id_pfr0 = 0x1031; |
2256 | cpu->id_pfr1 = 0x11; | |
a6179538 | 2257 | cpu->isar.id_dfr0 = 0x400; |
2e4d7e3e | 2258 | cpu->id_afr0 = 0; |
10054016 PM |
2259 | cpu->isar.id_mmfr0 = 0x31100003; |
2260 | cpu->isar.id_mmfr1 = 0x20000000; | |
2261 | cpu->isar.id_mmfr2 = 0x01202000; | |
2262 | cpu->isar.id_mmfr3 = 0x11; | |
47576b94 RH |
2263 | cpu->isar.id_isar0 = 0x00101111; |
2264 | cpu->isar.id_isar1 = 0x12112111; | |
2265 | cpu->isar.id_isar2 = 0x21232031; | |
2266 | cpu->isar.id_isar3 = 0x11112131; | |
2267 | cpu->isar.id_isar4 = 0x00111142; | |
4426d361 | 2268 | cpu->isar.dbgdidr = 0x15141000; |
85df3786 PM |
2269 | cpu->clidr = (1 << 27) | (2 << 24) | 3; |
2270 | cpu->ccsidr[0] = 0xe007e01a; /* 16k L1 dcache. */ | |
2271 | cpu->ccsidr[1] = 0x2007e01a; /* 16k L1 icache. */ | |
2272 | cpu->ccsidr[2] = 0xf0000000; /* No L2 icache. */ | |
2771db27 | 2273 | cpu->reset_auxcr = 2; |
34f90529 | 2274 | define_arm_cp_regs(cpu, cortexa8_cp_reginfo); |
777dc784 PM |
2275 | } |
2276 | ||
1047b9d7 PM |
2277 | static const ARMCPRegInfo cortexa9_cp_reginfo[] = { |
2278 | /* power_control should be set to maximum latency. Again, | |
2279 | * default to 0 and set by private hook | |
2280 | */ | |
2281 | { .name = "A9_PWRCTL", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0, | |
2282 | .access = PL1_RW, .resetvalue = 0, | |
2283 | .fieldoffset = offsetof(CPUARMState, cp15.c15_power_control) }, | |
2284 | { .name = "A9_DIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 1, | |
2285 | .access = PL1_RW, .resetvalue = 0, | |
2286 | .fieldoffset = offsetof(CPUARMState, cp15.c15_diagnostic) }, | |
2287 | { .name = "A9_PWRDIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 2, | |
2288 | .access = PL1_RW, .resetvalue = 0, | |
2289 | .fieldoffset = offsetof(CPUARMState, cp15.c15_power_diagnostic) }, | |
2290 | { .name = "NEONBUSY", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0, | |
2291 | .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST }, | |
2292 | /* TLB lockdown control */ | |
2293 | { .name = "TLB_LOCKR", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 2, | |
2294 | .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP }, | |
2295 | { .name = "TLB_LOCKW", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 4, | |
2296 | .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP }, | |
2297 | { .name = "TLB_VA", .cp = 15, .crn = 15, .crm = 5, .opc1 = 5, .opc2 = 2, | |
2298 | .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST }, | |
2299 | { .name = "TLB_PA", .cp = 15, .crn = 15, .crm = 6, .opc1 = 5, .opc2 = 2, | |
2300 | .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST }, | |
2301 | { .name = "TLB_ATTR", .cp = 15, .crn = 15, .crm = 7, .opc1 = 5, .opc2 = 2, | |
2302 | .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST }, | |
2303 | REGINFO_SENTINEL | |
2304 | }; | |
2305 | ||
777dc784 PM |
2306 | static void cortex_a9_initfn(Object *obj) |
2307 | { | |
2308 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2309 | |
2310 | cpu->dtb_compatible = "arm,cortex-a9"; | |
581be094 | 2311 | set_feature(&cpu->env, ARM_FEATURE_V7); |
581be094 PM |
2312 | set_feature(&cpu->env, ARM_FEATURE_NEON); |
2313 | set_feature(&cpu->env, ARM_FEATURE_THUMB2EE); | |
c0ccb02d | 2314 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
581be094 PM |
2315 | /* Note that A9 supports the MP extensions even for |
2316 | * A9UP and single-core A9MP (which are both different | |
2317 | * and valid configurations; we don't model A9UP). | |
2318 | */ | |
2319 | set_feature(&cpu->env, ARM_FEATURE_V7MP); | |
d8ba780b | 2320 | set_feature(&cpu->env, ARM_FEATURE_CBAR); |
b2d06f96 | 2321 | cpu->midr = 0x410fc090; |
325b3cef | 2322 | cpu->reset_fpsid = 0x41033090; |
47576b94 RH |
2323 | cpu->isar.mvfr0 = 0x11110222; |
2324 | cpu->isar.mvfr1 = 0x01111111; | |
64e1671f | 2325 | cpu->ctr = 0x80038003; |
0ca7e01c | 2326 | cpu->reset_sctlr = 0x00c50078; |
2e4d7e3e PM |
2327 | cpu->id_pfr0 = 0x1031; |
2328 | cpu->id_pfr1 = 0x11; | |
a6179538 | 2329 | cpu->isar.id_dfr0 = 0x000; |
2e4d7e3e | 2330 | cpu->id_afr0 = 0; |
10054016 PM |
2331 | cpu->isar.id_mmfr0 = 0x00100103; |
2332 | cpu->isar.id_mmfr1 = 0x20000000; | |
2333 | cpu->isar.id_mmfr2 = 0x01230000; | |
2334 | cpu->isar.id_mmfr3 = 0x00002111; | |
47576b94 RH |
2335 | cpu->isar.id_isar0 = 0x00101111; |
2336 | cpu->isar.id_isar1 = 0x13112111; | |
2337 | cpu->isar.id_isar2 = 0x21232041; | |
2338 | cpu->isar.id_isar3 = 0x11112131; | |
2339 | cpu->isar.id_isar4 = 0x00111142; | |
4426d361 | 2340 | cpu->isar.dbgdidr = 0x35141000; |
85df3786 | 2341 | cpu->clidr = (1 << 27) | (1 << 24) | 3; |
f7838b52 PC |
2342 | cpu->ccsidr[0] = 0xe00fe019; /* 16k L1 dcache. */ |
2343 | cpu->ccsidr[1] = 0x200fe019; /* 16k L1 icache. */ | |
d8ba780b | 2344 | define_arm_cp_regs(cpu, cortexa9_cp_reginfo); |
777dc784 PM |
2345 | } |
2346 | ||
34f90529 | 2347 | #ifndef CONFIG_USER_ONLY |
c4241c7d | 2348 | static uint64_t a15_l2ctlr_read(CPUARMState *env, const ARMCPRegInfo *ri) |
34f90529 | 2349 | { |
cc7d44c2 LX |
2350 | MachineState *ms = MACHINE(qdev_get_machine()); |
2351 | ||
34f90529 PM |
2352 | /* Linux wants the number of processors from here. |
2353 | * Might as well set the interrupt-controller bit too. | |
2354 | */ | |
cc7d44c2 | 2355 | return ((ms->smp.cpus - 1) << 24) | (1 << 23); |
34f90529 PM |
2356 | } |
2357 | #endif | |
2358 | ||
2359 | static const ARMCPRegInfo cortexa15_cp_reginfo[] = { | |
2360 | #ifndef CONFIG_USER_ONLY | |
2361 | { .name = "L2CTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2, | |
2362 | .access = PL1_RW, .resetvalue = 0, .readfn = a15_l2ctlr_read, | |
2363 | .writefn = arm_cp_write_ignore, }, | |
2364 | #endif | |
2365 | { .name = "L2ECTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 3, | |
2366 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
2367 | REGINFO_SENTINEL | |
2368 | }; | |
2369 | ||
dcf578ed AY |
2370 | static void cortex_a7_initfn(Object *obj) |
2371 | { | |
2372 | ARMCPU *cpu = ARM_CPU(obj); | |
2373 | ||
2374 | cpu->dtb_compatible = "arm,cortex-a7"; | |
5110e683 | 2375 | set_feature(&cpu->env, ARM_FEATURE_V7VE); |
dcf578ed AY |
2376 | set_feature(&cpu->env, ARM_FEATURE_NEON); |
2377 | set_feature(&cpu->env, ARM_FEATURE_THUMB2EE); | |
dcf578ed AY |
2378 | set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); |
2379 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); | |
2380 | set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | |
436c0cbb | 2381 | set_feature(&cpu->env, ARM_FEATURE_EL2); |
dcf578ed | 2382 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
a46118fc | 2383 | set_feature(&cpu->env, ARM_FEATURE_PMU); |
dcf578ed AY |
2384 | cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A7; |
2385 | cpu->midr = 0x410fc075; | |
2386 | cpu->reset_fpsid = 0x41023075; | |
47576b94 RH |
2387 | cpu->isar.mvfr0 = 0x10110222; |
2388 | cpu->isar.mvfr1 = 0x11111111; | |
dcf578ed AY |
2389 | cpu->ctr = 0x84448003; |
2390 | cpu->reset_sctlr = 0x00c50078; | |
2391 | cpu->id_pfr0 = 0x00001131; | |
2392 | cpu->id_pfr1 = 0x00011011; | |
a6179538 | 2393 | cpu->isar.id_dfr0 = 0x02010555; |
dcf578ed | 2394 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2395 | cpu->isar.id_mmfr0 = 0x10101105; |
2396 | cpu->isar.id_mmfr1 = 0x40000000; | |
2397 | cpu->isar.id_mmfr2 = 0x01240000; | |
2398 | cpu->isar.id_mmfr3 = 0x02102211; | |
37bdda89 RH |
2399 | /* a7_mpcore_r0p5_trm, page 4-4 gives 0x01101110; but |
2400 | * table 4-41 gives 0x02101110, which includes the arm div insns. | |
2401 | */ | |
47576b94 RH |
2402 | cpu->isar.id_isar0 = 0x02101110; |
2403 | cpu->isar.id_isar1 = 0x13112111; | |
2404 | cpu->isar.id_isar2 = 0x21232041; | |
2405 | cpu->isar.id_isar3 = 0x11112131; | |
2406 | cpu->isar.id_isar4 = 0x10011142; | |
4426d361 | 2407 | cpu->isar.dbgdidr = 0x3515f005; |
dcf578ed AY |
2408 | cpu->clidr = 0x0a200023; |
2409 | cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */ | |
2410 | cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */ | |
2411 | cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */ | |
2412 | define_arm_cp_regs(cpu, cortexa15_cp_reginfo); /* Same as A15 */ | |
2413 | } | |
2414 | ||
777dc784 PM |
2415 | static void cortex_a15_initfn(Object *obj) |
2416 | { | |
2417 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2418 | |
2419 | cpu->dtb_compatible = "arm,cortex-a15"; | |
5110e683 | 2420 | set_feature(&cpu->env, ARM_FEATURE_V7VE); |
581be094 PM |
2421 | set_feature(&cpu->env, ARM_FEATURE_NEON); |
2422 | set_feature(&cpu->env, ARM_FEATURE_THUMB2EE); | |
581be094 | 2423 | set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); |
c4804214 | 2424 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
c29f9a0a | 2425 | set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); |
436c0cbb | 2426 | set_feature(&cpu->env, ARM_FEATURE_EL2); |
c0ccb02d | 2427 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
a46118fc | 2428 | set_feature(&cpu->env, ARM_FEATURE_PMU); |
3541addc | 2429 | cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A15; |
b2d06f96 | 2430 | cpu->midr = 0x412fc0f1; |
325b3cef | 2431 | cpu->reset_fpsid = 0x410430f0; |
47576b94 RH |
2432 | cpu->isar.mvfr0 = 0x10110222; |
2433 | cpu->isar.mvfr1 = 0x11111111; | |
64e1671f | 2434 | cpu->ctr = 0x8444c004; |
0ca7e01c | 2435 | cpu->reset_sctlr = 0x00c50078; |
2e4d7e3e PM |
2436 | cpu->id_pfr0 = 0x00001131; |
2437 | cpu->id_pfr1 = 0x00011011; | |
a6179538 | 2438 | cpu->isar.id_dfr0 = 0x02010555; |
2e4d7e3e | 2439 | cpu->id_afr0 = 0x00000000; |
10054016 PM |
2440 | cpu->isar.id_mmfr0 = 0x10201105; |
2441 | cpu->isar.id_mmfr1 = 0x20000000; | |
2442 | cpu->isar.id_mmfr2 = 0x01240000; | |
2443 | cpu->isar.id_mmfr3 = 0x02102211; | |
47576b94 RH |
2444 | cpu->isar.id_isar0 = 0x02101110; |
2445 | cpu->isar.id_isar1 = 0x13112111; | |
2446 | cpu->isar.id_isar2 = 0x21232041; | |
2447 | cpu->isar.id_isar3 = 0x11112131; | |
2448 | cpu->isar.id_isar4 = 0x10011142; | |
4426d361 | 2449 | cpu->isar.dbgdidr = 0x3515f021; |
85df3786 PM |
2450 | cpu->clidr = 0x0a200023; |
2451 | cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */ | |
2452 | cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */ | |
2453 | cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */ | |
34f90529 | 2454 | define_arm_cp_regs(cpu, cortexa15_cp_reginfo); |
777dc784 PM |
2455 | } |
2456 | ||
2457 | static void ti925t_initfn(Object *obj) | |
2458 | { | |
2459 | ARMCPU *cpu = ARM_CPU(obj); | |
581be094 PM |
2460 | set_feature(&cpu->env, ARM_FEATURE_V4T); |
2461 | set_feature(&cpu->env, ARM_FEATURE_OMAPCP); | |
777dc784 | 2462 | cpu->midr = ARM_CPUID_TI925T; |
64e1671f | 2463 | cpu->ctr = 0x5109149; |
0ca7e01c | 2464 | cpu->reset_sctlr = 0x00000070; |
777dc784 PM |
2465 | } |
2466 | ||
2467 | static void sa1100_initfn(Object *obj) | |
2468 | { | |
2469 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2470 | |
2471 | cpu->dtb_compatible = "intel,sa1100"; | |
581be094 | 2472 | set_feature(&cpu->env, ARM_FEATURE_STRONGARM); |
c4804214 | 2473 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
b2d06f96 | 2474 | cpu->midr = 0x4401A11B; |
0ca7e01c | 2475 | cpu->reset_sctlr = 0x00000070; |
777dc784 PM |
2476 | } |
2477 | ||
2478 | static void sa1110_initfn(Object *obj) | |
2479 | { | |
2480 | ARMCPU *cpu = ARM_CPU(obj); | |
581be094 | 2481 | set_feature(&cpu->env, ARM_FEATURE_STRONGARM); |
c4804214 | 2482 | set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS); |
b2d06f96 | 2483 | cpu->midr = 0x6901B119; |
0ca7e01c | 2484 | cpu->reset_sctlr = 0x00000070; |
777dc784 PM |
2485 | } |
2486 | ||
2487 | static void pxa250_initfn(Object *obj) | |
2488 | { | |
2489 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2490 | |
2491 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2492 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2493 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
b2d06f96 | 2494 | cpu->midr = 0x69052100; |
64e1671f | 2495 | cpu->ctr = 0xd172172; |
0ca7e01c | 2496 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2497 | } |
2498 | ||
2499 | static void pxa255_initfn(Object *obj) | |
2500 | { | |
2501 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2502 | |
2503 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2504 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2505 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
b2d06f96 | 2506 | cpu->midr = 0x69052d00; |
64e1671f | 2507 | cpu->ctr = 0xd172172; |
0ca7e01c | 2508 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2509 | } |
2510 | ||
2511 | static void pxa260_initfn(Object *obj) | |
2512 | { | |
2513 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2514 | |
2515 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2516 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2517 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
b2d06f96 | 2518 | cpu->midr = 0x69052903; |
64e1671f | 2519 | cpu->ctr = 0xd172172; |
0ca7e01c | 2520 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2521 | } |
2522 | ||
2523 | static void pxa261_initfn(Object *obj) | |
2524 | { | |
2525 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2526 | |
2527 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2528 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2529 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
b2d06f96 | 2530 | cpu->midr = 0x69052d05; |
64e1671f | 2531 | cpu->ctr = 0xd172172; |
0ca7e01c | 2532 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2533 | } |
2534 | ||
2535 | static void pxa262_initfn(Object *obj) | |
2536 | { | |
2537 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2538 | |
2539 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2540 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2541 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
b2d06f96 | 2542 | cpu->midr = 0x69052d06; |
64e1671f | 2543 | cpu->ctr = 0xd172172; |
0ca7e01c | 2544 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2545 | } |
2546 | ||
2547 | static void pxa270a0_initfn(Object *obj) | |
2548 | { | |
2549 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2550 | |
2551 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2552 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2553 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2554 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2555 | cpu->midr = 0x69054110; |
64e1671f | 2556 | cpu->ctr = 0xd172172; |
0ca7e01c | 2557 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2558 | } |
2559 | ||
2560 | static void pxa270a1_initfn(Object *obj) | |
2561 | { | |
2562 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2563 | |
2564 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2565 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2566 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2567 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2568 | cpu->midr = 0x69054111; |
64e1671f | 2569 | cpu->ctr = 0xd172172; |
0ca7e01c | 2570 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2571 | } |
2572 | ||
2573 | static void pxa270b0_initfn(Object *obj) | |
2574 | { | |
2575 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2576 | |
2577 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2578 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2579 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2580 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2581 | cpu->midr = 0x69054112; |
64e1671f | 2582 | cpu->ctr = 0xd172172; |
0ca7e01c | 2583 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2584 | } |
2585 | ||
2586 | static void pxa270b1_initfn(Object *obj) | |
2587 | { | |
2588 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2589 | |
2590 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2591 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2592 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2593 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2594 | cpu->midr = 0x69054113; |
64e1671f | 2595 | cpu->ctr = 0xd172172; |
0ca7e01c | 2596 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2597 | } |
2598 | ||
2599 | static void pxa270c0_initfn(Object *obj) | |
2600 | { | |
2601 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2602 | |
2603 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2604 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2605 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2606 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2607 | cpu->midr = 0x69054114; |
64e1671f | 2608 | cpu->ctr = 0xd172172; |
0ca7e01c | 2609 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2610 | } |
2611 | ||
2612 | static void pxa270c5_initfn(Object *obj) | |
2613 | { | |
2614 | ARMCPU *cpu = ARM_CPU(obj); | |
54d3e3f5 PM |
2615 | |
2616 | cpu->dtb_compatible = "marvell,xscale"; | |
581be094 PM |
2617 | set_feature(&cpu->env, ARM_FEATURE_V5); |
2618 | set_feature(&cpu->env, ARM_FEATURE_XSCALE); | |
2619 | set_feature(&cpu->env, ARM_FEATURE_IWMMXT); | |
b2d06f96 | 2620 | cpu->midr = 0x69054117; |
64e1671f | 2621 | cpu->ctr = 0xd172172; |
0ca7e01c | 2622 | cpu->reset_sctlr = 0x00000078; |
777dc784 PM |
2623 | } |
2624 | ||
bab52d4b PM |
2625 | #ifndef TARGET_AARCH64 |
2626 | /* -cpu max: if KVM is enabled, like -cpu host (best possible with this host); | |
2627 | * otherwise, a CPU with as many features enabled as our emulation supports. | |
2628 | * The version of '-cpu max' for qemu-system-aarch64 is defined in cpu64.c; | |
2629 | * this only needs to handle 32 bits. | |
2630 | */ | |
2631 | static void arm_max_initfn(Object *obj) | |
2632 | { | |
2633 | ARMCPU *cpu = ARM_CPU(obj); | |
2634 | ||
2635 | if (kvm_enabled()) { | |
2636 | kvm_arm_set_cpu_features_from_host(cpu); | |
dea101a1 | 2637 | kvm_arm_add_vcpu_properties(obj); |
bab52d4b PM |
2638 | } else { |
2639 | cortex_a15_initfn(obj); | |
973751fd PM |
2640 | |
2641 | /* old-style VFP short-vector support */ | |
2642 | cpu->isar.mvfr0 = FIELD_DP32(cpu->isar.mvfr0, MVFR0, FPSHVEC, 1); | |
2643 | ||
a0032cc5 PM |
2644 | #ifdef CONFIG_USER_ONLY |
2645 | /* We don't set these in system emulation mode for the moment, | |
962fcbf2 RH |
2646 | * since we don't correctly set (all of) the ID registers to |
2647 | * advertise them. | |
bab52d4b | 2648 | */ |
a0032cc5 | 2649 | set_feature(&cpu->env, ARM_FEATURE_V8); |
962fcbf2 RH |
2650 | { |
2651 | uint32_t t; | |
2652 | ||
2653 | t = cpu->isar.id_isar5; | |
2654 | t = FIELD_DP32(t, ID_ISAR5, AES, 2); | |
2655 | t = FIELD_DP32(t, ID_ISAR5, SHA1, 1); | |
2656 | t = FIELD_DP32(t, ID_ISAR5, SHA2, 1); | |
2657 | t = FIELD_DP32(t, ID_ISAR5, CRC32, 1); | |
2658 | t = FIELD_DP32(t, ID_ISAR5, RDM, 1); | |
2659 | t = FIELD_DP32(t, ID_ISAR5, VCMA, 1); | |
2660 | cpu->isar.id_isar5 = t; | |
2661 | ||
2662 | t = cpu->isar.id_isar6; | |
6c1f6f27 | 2663 | t = FIELD_DP32(t, ID_ISAR6, JSCVT, 1); |
962fcbf2 | 2664 | t = FIELD_DP32(t, ID_ISAR6, DP, 1); |
991c0599 | 2665 | t = FIELD_DP32(t, ID_ISAR6, FHM, 1); |
9888bd1e | 2666 | t = FIELD_DP32(t, ID_ISAR6, SB, 1); |
cb570bd3 | 2667 | t = FIELD_DP32(t, ID_ISAR6, SPECRES, 1); |
962fcbf2 | 2668 | cpu->isar.id_isar6 = t; |
ab638a32 | 2669 | |
45b1a243 AB |
2670 | t = cpu->isar.mvfr1; |
2671 | t = FIELD_DP32(t, MVFR1, FPHP, 2); /* v8.0 FP support */ | |
2672 | cpu->isar.mvfr1 = t; | |
2673 | ||
c8877d0f RH |
2674 | t = cpu->isar.mvfr2; |
2675 | t = FIELD_DP32(t, MVFR2, SIMDMISC, 3); /* SIMD MaxNum */ | |
2676 | t = FIELD_DP32(t, MVFR2, FPMISC, 4); /* FP MaxNum */ | |
2677 | cpu->isar.mvfr2 = t; | |
2678 | ||
10054016 | 2679 | t = cpu->isar.id_mmfr3; |
e0fe7309 | 2680 | t = FIELD_DP32(t, ID_MMFR3, PAN, 2); /* ATS1E1 */ |
10054016 | 2681 | cpu->isar.id_mmfr3 = t; |
e0fe7309 | 2682 | |
10054016 | 2683 | t = cpu->isar.id_mmfr4; |
ab638a32 | 2684 | t = FIELD_DP32(t, ID_MMFR4, HPDS, 1); /* AA32HPD */ |
f6287c24 | 2685 | t = FIELD_DP32(t, ID_MMFR4, AC2, 1); /* ACTLR2, HACTLR2 */ |
41a4bf1f | 2686 | t = FIELD_DP32(t, ID_MMFR4, CNP, 1); /* TTCNP */ |
10054016 | 2687 | cpu->isar.id_mmfr4 = t; |
962fcbf2 | 2688 | } |
bab52d4b | 2689 | #endif |
a0032cc5 | 2690 | } |
777dc784 | 2691 | } |
f5f6d38b | 2692 | #endif |
777dc784 | 2693 | |
15ee776b PM |
2694 | #endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */ |
2695 | ||
51e5ef45 | 2696 | struct ARMCPUInfo { |
777dc784 PM |
2697 | const char *name; |
2698 | void (*initfn)(Object *obj); | |
e6f010cc | 2699 | void (*class_init)(ObjectClass *oc, void *data); |
51e5ef45 | 2700 | }; |
777dc784 PM |
2701 | |
2702 | static const ARMCPUInfo arm_cpus[] = { | |
15ee776b | 2703 | #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) |
777dc784 PM |
2704 | { .name = "arm926", .initfn = arm926_initfn }, |
2705 | { .name = "arm946", .initfn = arm946_initfn }, | |
2706 | { .name = "arm1026", .initfn = arm1026_initfn }, | |
2707 | /* What QEMU calls "arm1136-r2" is actually the 1136 r0p2, i.e. an | |
2708 | * older core than plain "arm1136". In particular this does not | |
2709 | * have the v6K features. | |
2710 | */ | |
2711 | { .name = "arm1136-r2", .initfn = arm1136_r2_initfn }, | |
2712 | { .name = "arm1136", .initfn = arm1136_initfn }, | |
2713 | { .name = "arm1176", .initfn = arm1176_initfn }, | |
2714 | { .name = "arm11mpcore", .initfn = arm11mpcore_initfn }, | |
191776b9 SH |
2715 | { .name = "cortex-m0", .initfn = cortex_m0_initfn, |
2716 | .class_init = arm_v7m_class_init }, | |
e6f010cc AF |
2717 | { .name = "cortex-m3", .initfn = cortex_m3_initfn, |
2718 | .class_init = arm_v7m_class_init }, | |
ba890a9b AR |
2719 | { .name = "cortex-m4", .initfn = cortex_m4_initfn, |
2720 | .class_init = arm_v7m_class_init }, | |
cf7beda5 CL |
2721 | { .name = "cortex-m7", .initfn = cortex_m7_initfn, |
2722 | .class_init = arm_v7m_class_init }, | |
c7b26382 PM |
2723 | { .name = "cortex-m33", .initfn = cortex_m33_initfn, |
2724 | .class_init = arm_v7m_class_init }, | |
d6a6b13e | 2725 | { .name = "cortex-r5", .initfn = cortex_r5_initfn }, |
ebac5458 | 2726 | { .name = "cortex-r5f", .initfn = cortex_r5f_initfn }, |
dcf578ed | 2727 | { .name = "cortex-a7", .initfn = cortex_a7_initfn }, |
777dc784 PM |
2728 | { .name = "cortex-a8", .initfn = cortex_a8_initfn }, |
2729 | { .name = "cortex-a9", .initfn = cortex_a9_initfn }, | |
2730 | { .name = "cortex-a15", .initfn = cortex_a15_initfn }, | |
2731 | { .name = "ti925t", .initfn = ti925t_initfn }, | |
2732 | { .name = "sa1100", .initfn = sa1100_initfn }, | |
2733 | { .name = "sa1110", .initfn = sa1110_initfn }, | |
2734 | { .name = "pxa250", .initfn = pxa250_initfn }, | |
2735 | { .name = "pxa255", .initfn = pxa255_initfn }, | |
2736 | { .name = "pxa260", .initfn = pxa260_initfn }, | |
2737 | { .name = "pxa261", .initfn = pxa261_initfn }, | |
2738 | { .name = "pxa262", .initfn = pxa262_initfn }, | |
2739 | /* "pxa270" is an alias for "pxa270-a0" */ | |
2740 | { .name = "pxa270", .initfn = pxa270a0_initfn }, | |
2741 | { .name = "pxa270-a0", .initfn = pxa270a0_initfn }, | |
2742 | { .name = "pxa270-a1", .initfn = pxa270a1_initfn }, | |
2743 | { .name = "pxa270-b0", .initfn = pxa270b0_initfn }, | |
2744 | { .name = "pxa270-b1", .initfn = pxa270b1_initfn }, | |
2745 | { .name = "pxa270-c0", .initfn = pxa270c0_initfn }, | |
2746 | { .name = "pxa270-c5", .initfn = pxa270c5_initfn }, | |
bab52d4b PM |
2747 | #ifndef TARGET_AARCH64 |
2748 | { .name = "max", .initfn = arm_max_initfn }, | |
2749 | #endif | |
f5f6d38b | 2750 | #ifdef CONFIG_USER_ONLY |
a0032cc5 | 2751 | { .name = "any", .initfn = arm_max_initfn }, |
f5f6d38b | 2752 | #endif |
15ee776b | 2753 | #endif |
83e6813a | 2754 | { .name = NULL } |
777dc784 PM |
2755 | }; |
2756 | ||
5de16430 PM |
2757 | static Property arm_cpu_properties[] = { |
2758 | DEFINE_PROP_BOOL("start-powered-off", ARMCPU, start_powered_off, false), | |
98128601 | 2759 | DEFINE_PROP_UINT32("psci-conduit", ARMCPU, psci_conduit, 0), |
51a9b04b | 2760 | DEFINE_PROP_UINT32("midr", ARMCPU, midr, 0), |
ce5b1bbf LV |
2761 | DEFINE_PROP_UINT64("mp-affinity", ARMCPU, |
2762 | mp_affinity, ARM64_AFFINITY_INVALID), | |
15f8b142 | 2763 | DEFINE_PROP_INT32("node-id", ARMCPU, node_id, CPU_UNSET_NUMA_NODE_ID), |
f9a69711 | 2764 | DEFINE_PROP_INT32("core-count", ARMCPU, core_count, -1), |
5de16430 PM |
2765 | DEFINE_PROP_END_OF_LIST() |
2766 | }; | |
2767 | ||
b3820e6c DH |
2768 | static gchar *arm_gdb_arch_name(CPUState *cs) |
2769 | { | |
2770 | ARMCPU *cpu = ARM_CPU(cs); | |
2771 | CPUARMState *env = &cpu->env; | |
2772 | ||
2773 | if (arm_feature(env, ARM_FEATURE_IWMMXT)) { | |
2774 | return g_strdup("iwmmxt"); | |
2775 | } | |
2776 | return g_strdup("arm"); | |
2777 | } | |
2778 | ||
dec9c2d4 AF |
2779 | static void arm_cpu_class_init(ObjectClass *oc, void *data) |
2780 | { | |
2781 | ARMCPUClass *acc = ARM_CPU_CLASS(oc); | |
2782 | CPUClass *cc = CPU_CLASS(acc); | |
14969266 AF |
2783 | DeviceClass *dc = DEVICE_CLASS(oc); |
2784 | ||
bf853881 PMD |
2785 | device_class_set_parent_realize(dc, arm_cpu_realizefn, |
2786 | &acc->parent_realize); | |
dec9c2d4 | 2787 | |
4f67d30b | 2788 | device_class_set_props(dc, arm_cpu_properties); |
781c67ca | 2789 | device_class_set_parent_reset(dc, arm_cpu_reset, &acc->parent_reset); |
5900d6b2 AF |
2790 | |
2791 | cc->class_by_name = arm_cpu_class_by_name; | |
8c2e1b00 | 2792 | cc->has_work = arm_cpu_has_work; |
e8925712 | 2793 | cc->cpu_exec_interrupt = arm_cpu_exec_interrupt; |
878096ee | 2794 | cc->dump_state = arm_cpu_dump_state; |
f45748f1 | 2795 | cc->set_pc = arm_cpu_set_pc; |
42f6ed91 | 2796 | cc->synchronize_from_tb = arm_cpu_synchronize_from_tb; |
5b50e790 AF |
2797 | cc->gdb_read_register = arm_cpu_gdb_read_register; |
2798 | cc->gdb_write_register = arm_cpu_gdb_write_register; | |
7350d553 | 2799 | #ifndef CONFIG_USER_ONLY |
0adf7d3c | 2800 | cc->do_interrupt = arm_cpu_do_interrupt; |
0faea0c7 | 2801 | cc->get_phys_page_attrs_debug = arm_cpu_get_phys_page_attrs_debug; |
017518c1 | 2802 | cc->asidx_from_attrs = arm_asidx_from_attrs; |
00b941e5 | 2803 | cc->vmsd = &vmstate_arm_cpu; |
ed50ff78 | 2804 | cc->virtio_is_big_endian = arm_cpu_virtio_is_big_endian; |
da2b9140 AJ |
2805 | cc->write_elf64_note = arm_cpu_write_elf64_note; |
2806 | cc->write_elf32_note = arm_cpu_write_elf32_note; | |
00b941e5 | 2807 | #endif |
a0e372f0 | 2808 | cc->gdb_num_core_regs = 26; |
5b24c641 | 2809 | cc->gdb_core_xml_file = "arm-core.xml"; |
b3820e6c | 2810 | cc->gdb_arch_name = arm_gdb_arch_name; |
200bf5b7 | 2811 | cc->gdb_get_dynamic_xml = arm_gdb_get_dynamic_xml; |
2472b6c0 | 2812 | cc->gdb_stop_before_watchpoint = true; |
48440620 | 2813 | cc->disas_set_info = arm_disas_set_info; |
74d7fc7f | 2814 | #ifdef CONFIG_TCG |
55c3ceef | 2815 | cc->tcg_initialize = arm_translate_init; |
7350d553 | 2816 | cc->tlb_fill = arm_cpu_tlb_fill; |
9dd5cca4 PMD |
2817 | cc->debug_excp_handler = arm_debug_excp_handler; |
2818 | cc->debug_check_watchpoint = arm_debug_check_watchpoint; | |
e21b551c PMD |
2819 | #if !defined(CONFIG_USER_ONLY) |
2820 | cc->do_unaligned_access = arm_cpu_do_unaligned_access; | |
2821 | cc->do_transaction_failed = arm_cpu_do_transaction_failed; | |
9dd5cca4 | 2822 | cc->adjust_watchpoint_address = arm_adjust_watchpoint_address; |
e21b551c | 2823 | #endif /* CONFIG_TCG && !CONFIG_USER_ONLY */ |
74d7fc7f | 2824 | #endif |
dec9c2d4 AF |
2825 | } |
2826 | ||
86f0a186 PM |
2827 | #ifdef CONFIG_KVM |
2828 | static void arm_host_initfn(Object *obj) | |
2829 | { | |
2830 | ARMCPU *cpu = ARM_CPU(obj); | |
2831 | ||
2832 | kvm_arm_set_cpu_features_from_host(cpu); | |
87014c6b AJ |
2833 | if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) { |
2834 | aarch64_add_sve_properties(obj); | |
2835 | } | |
dea101a1 | 2836 | kvm_arm_add_vcpu_properties(obj); |
51e5ef45 | 2837 | arm_cpu_post_init(obj); |
86f0a186 PM |
2838 | } |
2839 | ||
2840 | static const TypeInfo host_arm_cpu_type_info = { | |
2841 | .name = TYPE_ARM_HOST_CPU, | |
2842 | #ifdef TARGET_AARCH64 | |
2843 | .parent = TYPE_AARCH64_CPU, | |
2844 | #else | |
2845 | .parent = TYPE_ARM_CPU, | |
2846 | #endif | |
2847 | .instance_init = arm_host_initfn, | |
2848 | }; | |
2849 | ||
2850 | #endif | |
2851 | ||
51e5ef45 MAL |
2852 | static void arm_cpu_instance_init(Object *obj) |
2853 | { | |
2854 | ARMCPUClass *acc = ARM_CPU_GET_CLASS(obj); | |
2855 | ||
2856 | acc->info->initfn(obj); | |
2857 | arm_cpu_post_init(obj); | |
2858 | } | |
2859 | ||
2860 | static void cpu_register_class_init(ObjectClass *oc, void *data) | |
2861 | { | |
2862 | ARMCPUClass *acc = ARM_CPU_CLASS(oc); | |
2863 | ||
2864 | acc->info = data; | |
2865 | } | |
2866 | ||
777dc784 PM |
2867 | static void cpu_register(const ARMCPUInfo *info) |
2868 | { | |
2869 | TypeInfo type_info = { | |
777dc784 PM |
2870 | .parent = TYPE_ARM_CPU, |
2871 | .instance_size = sizeof(ARMCPU), | |
51e5ef45 | 2872 | .instance_init = arm_cpu_instance_init, |
777dc784 | 2873 | .class_size = sizeof(ARMCPUClass), |
51e5ef45 MAL |
2874 | .class_init = info->class_init ?: cpu_register_class_init, |
2875 | .class_data = (void *)info, | |
777dc784 PM |
2876 | }; |
2877 | ||
51492fd1 | 2878 | type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name); |
918fd083 | 2879 | type_register(&type_info); |
51492fd1 | 2880 | g_free((void *)type_info.name); |
777dc784 PM |
2881 | } |
2882 | ||
dec9c2d4 AF |
2883 | static const TypeInfo arm_cpu_type_info = { |
2884 | .name = TYPE_ARM_CPU, | |
2885 | .parent = TYPE_CPU, | |
2886 | .instance_size = sizeof(ARMCPU), | |
777dc784 | 2887 | .instance_init = arm_cpu_initfn, |
4b6a83fb | 2888 | .instance_finalize = arm_cpu_finalizefn, |
777dc784 | 2889 | .abstract = true, |
dec9c2d4 AF |
2890 | .class_size = sizeof(ARMCPUClass), |
2891 | .class_init = arm_cpu_class_init, | |
2892 | }; | |
2893 | ||
181962fd PM |
2894 | static const TypeInfo idau_interface_type_info = { |
2895 | .name = TYPE_IDAU_INTERFACE, | |
2896 | .parent = TYPE_INTERFACE, | |
2897 | .class_size = sizeof(IDAUInterfaceClass), | |
2898 | }; | |
2899 | ||
dec9c2d4 AF |
2900 | static void arm_cpu_register_types(void) |
2901 | { | |
83e6813a | 2902 | const ARMCPUInfo *info = arm_cpus; |
777dc784 | 2903 | |
dec9c2d4 | 2904 | type_register_static(&arm_cpu_type_info); |
181962fd | 2905 | type_register_static(&idau_interface_type_info); |
83e6813a PM |
2906 | |
2907 | while (info->name) { | |
2908 | cpu_register(info); | |
2909 | info++; | |
777dc784 | 2910 | } |
86f0a186 PM |
2911 | |
2912 | #ifdef CONFIG_KVM | |
2913 | type_register_static(&host_arm_cpu_type_info); | |
2914 | #endif | |
dec9c2d4 AF |
2915 | } |
2916 | ||
2917 | type_init(arm_cpu_register_types) |