]> git.proxmox.com Git - mirror_qemu.git/blame - target-arm/cpu.c
target-arm: Do not reset sysregs marked as ALIAS
[mirror_qemu.git] / target-arm / cpu.c
CommitLineData
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
778c3a06 21#include "cpu.h"
ccd38087 22#include "internals.h"
dec9c2d4 23#include "qemu-common.h"
5de16430 24#include "hw/qdev-properties.h"
07a5b0d2 25#include "qapi/qmp/qerror.h"
3c30dd5a
PM
26#if !defined(CONFIG_USER_ONLY)
27#include "hw/loader.h"
28#endif
7c1840b6 29#include "hw/arm/arm.h"
9c17d615 30#include "sysemu/sysemu.h"
7c1840b6 31#include "sysemu/kvm.h"
50a2c6e5 32#include "kvm_arm.h"
dec9c2d4 33
f45748f1
AF
34static void arm_cpu_set_pc(CPUState *cs, vaddr value)
35{
36 ARMCPU *cpu = ARM_CPU(cs);
37
38 cpu->env.regs[15] = value;
39}
40
8c2e1b00
AF
41static bool arm_cpu_has_work(CPUState *cs)
42{
543486db
RH
43 ARMCPU *cpu = ARM_CPU(cs);
44
45 return !cpu->powered_off
46 && cs->interrupt_request &
136e67e9
EI
47 (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD
48 | CPU_INTERRUPT_VFIQ | CPU_INTERRUPT_VIRQ
49 | CPU_INTERRUPT_EXITTB);
8c2e1b00
AF
50}
51
4b6a83fb
PM
52static void cp_reg_reset(gpointer key, gpointer value, gpointer opaque)
53{
54 /* Reset a single ARMCPRegInfo register */
55 ARMCPRegInfo *ri = value;
56 ARMCPU *cpu = opaque;
57
b061a82b 58 if (ri->type & (ARM_CP_SPECIAL | ARM_CP_ALIAS)) {
4b6a83fb
PM
59 return;
60 }
61
62 if (ri->resetfn) {
63 ri->resetfn(&cpu->env, ri);
64 return;
65 }
66
67 /* A zero offset is never possible as it would be regs[0]
68 * so we use it to indicate that reset is being handled elsewhere.
69 * This is basically only used for fields in non-core coprocessors
70 * (like the pxa2xx ones).
71 */
72 if (!ri->fieldoffset) {
73 return;
74 }
75
67ed771d 76 if (cpreg_field_is_64bit(ri)) {
4b6a83fb
PM
77 CPREG_FIELD64(&cpu->env, ri) = ri->resetvalue;
78 } else {
79 CPREG_FIELD32(&cpu->env, ri) = ri->resetvalue;
80 }
81}
82
dec9c2d4
AF
83/* CPUClass::reset() */
84static void arm_cpu_reset(CPUState *s)
85{
86 ARMCPU *cpu = ARM_CPU(s);
87 ARMCPUClass *acc = ARM_CPU_GET_CLASS(cpu);
3c30dd5a 88 CPUARMState *env = &cpu->env;
3c30dd5a 89
dec9c2d4
AF
90 acc->parent_reset(s);
91
f0c3c505 92 memset(env, 0, offsetof(CPUARMState, features));
4b6a83fb 93 g_hash_table_foreach(cpu->cp_regs, cp_reg_reset, cpu);
3c30dd5a
PM
94 env->vfp.xregs[ARM_VFP_FPSID] = cpu->reset_fpsid;
95 env->vfp.xregs[ARM_VFP_MVFR0] = cpu->mvfr0;
96 env->vfp.xregs[ARM_VFP_MVFR1] = cpu->mvfr1;
a50c0f51 97 env->vfp.xregs[ARM_VFP_MVFR2] = cpu->mvfr2;
3c30dd5a 98
543486db
RH
99 cpu->powered_off = cpu->start_powered_off;
100 s->halted = cpu->start_powered_off;
101
3c30dd5a
PM
102 if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
103 env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q';
104 }
105
3926cc84
AG
106 if (arm_feature(env, ARM_FEATURE_AARCH64)) {
107 /* 64 bit CPUs always start in 64 bit mode */
108 env->aarch64 = 1;
d356312f
PM
109#if defined(CONFIG_USER_ONLY)
110 env->pstate = PSTATE_MODE_EL0t;
14e5f106 111 /* Userspace expects access to DC ZVA, CTL_EL0 and the cache ops */
137feaa9 112 env->cp15.sctlr_el[1] |= SCTLR_UCT | SCTLR_UCI | SCTLR_DZE;
8c6afa6a 113 /* and to the FP/Neon instructions */
7ebd5f2e 114 env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 2, 3);
d356312f 115#else
5097227c
GB
116 /* Reset into the highest available EL */
117 if (arm_feature(env, ARM_FEATURE_EL3)) {
118 env->pstate = PSTATE_MODE_EL3h;
119 } else if (arm_feature(env, ARM_FEATURE_EL2)) {
120 env->pstate = PSTATE_MODE_EL2h;
121 } else {
122 env->pstate = PSTATE_MODE_EL1h;
123 }
3933443e 124 env->pc = cpu->rvbar;
8c6afa6a
PM
125#endif
126 } else {
127#if defined(CONFIG_USER_ONLY)
128 /* Userspace expects access to cp10 and cp11 for FP/Neon */
7ebd5f2e 129 env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 4, 0xf);
d356312f 130#endif
3926cc84
AG
131 }
132
3c30dd5a
PM
133#if defined(CONFIG_USER_ONLY)
134 env->uncached_cpsr = ARM_CPU_MODE_USR;
135 /* For user mode we must enable access to coprocessors */
136 env->vfp.xregs[ARM_VFP_FPEXC] = 1 << 30;
137 if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
138 env->cp15.c15_cpar = 3;
139 } else if (arm_feature(env, ARM_FEATURE_XSCALE)) {
140 env->cp15.c15_cpar = 1;
141 }
142#else
143 /* SVC mode with interrupts disabled. */
4cc35614
PM
144 env->uncached_cpsr = ARM_CPU_MODE_SVC;
145 env->daif = PSTATE_D | PSTATE_A | PSTATE_I | PSTATE_F;
3c30dd5a 146 /* On ARMv7-M the CPSR_I is the value of the PRIMASK register, and is
6e3cf5df
MG
147 * clear at reset. Initial SP and PC are loaded from ROM.
148 */
3c30dd5a 149 if (IS_M(env)) {
6e3cf5df
MG
150 uint32_t initial_msp; /* Loaded from 0x0 */
151 uint32_t initial_pc; /* Loaded from 0x4 */
3c30dd5a 152 uint8_t *rom;
6e3cf5df 153
4cc35614 154 env->daif &= ~PSTATE_I;
3c30dd5a
PM
155 rom = rom_ptr(0);
156 if (rom) {
6e3cf5df
MG
157 /* Address zero is covered by ROM which hasn't yet been
158 * copied into physical memory.
159 */
160 initial_msp = ldl_p(rom);
161 initial_pc = ldl_p(rom + 4);
162 } else {
163 /* Address zero not covered by a ROM blob, or the ROM blob
164 * is in non-modifiable memory and this is a second reset after
165 * it got copied into memory. In the latter case, rom_ptr
166 * will return a NULL pointer and we should use ldl_phys instead.
167 */
168 initial_msp = ldl_phys(s->as, 0);
169 initial_pc = ldl_phys(s->as, 4);
3c30dd5a 170 }
6e3cf5df
MG
171
172 env->regs[13] = initial_msp & 0xFFFFFFFC;
173 env->regs[15] = initial_pc & ~1;
174 env->thumb = initial_pc & 1;
3c30dd5a 175 }
387f9806 176
137feaa9
FA
177 /* AArch32 has a hard highvec setting of 0xFFFF0000. If we are currently
178 * executing as AArch32 then check if highvecs are enabled and
179 * adjust the PC accordingly.
180 */
181 if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
34bf7744 182 env->regs[15] = 0xFFFF0000;
387f9806
AP
183 }
184
3c30dd5a 185 env->vfp.xregs[ARM_VFP_FPEXC] = 0;
3c30dd5a
PM
186#endif
187 set_flush_to_zero(1, &env->vfp.standard_fp_status);
188 set_flush_inputs_to_zero(1, &env->vfp.standard_fp_status);
189 set_default_nan_mode(1, &env->vfp.standard_fp_status);
190 set_float_detect_tininess(float_tininess_before_rounding,
191 &env->vfp.fp_status);
192 set_float_detect_tininess(float_tininess_before_rounding,
193 &env->vfp.standard_fp_status);
00c8cb0a 194 tlb_flush(s, 1);
50a2c6e5
PB
195
196#ifndef CONFIG_USER_ONLY
197 if (kvm_enabled()) {
198 kvm_arm_reset_vcpu(cpu);
199 }
200#endif
9ee98ce8 201
46747d15 202 hw_breakpoint_update_all(cpu);
9ee98ce8 203 hw_watchpoint_update_all(cpu);
dec9c2d4
AF
204}
205
e8925712
RH
206bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
207{
208 CPUClass *cc = CPU_GET_CLASS(cs);
012a906b
GB
209 CPUARMState *env = cs->env_ptr;
210 uint32_t cur_el = arm_current_el(env);
211 bool secure = arm_is_secure(env);
212 uint32_t target_el;
213 uint32_t excp_idx;
e8925712
RH
214 bool ret = false;
215
012a906b
GB
216 if (interrupt_request & CPU_INTERRUPT_FIQ) {
217 excp_idx = EXCP_FIQ;
218 target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
219 if (arm_excp_unmasked(cs, excp_idx, target_el)) {
220 cs->exception_index = excp_idx;
221 env->exception.target_el = target_el;
222 cc->do_interrupt(cs);
223 ret = true;
224 }
e8925712 225 }
012a906b
GB
226 if (interrupt_request & CPU_INTERRUPT_HARD) {
227 excp_idx = EXCP_IRQ;
228 target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
229 if (arm_excp_unmasked(cs, excp_idx, target_el)) {
230 cs->exception_index = excp_idx;
231 env->exception.target_el = target_el;
232 cc->do_interrupt(cs);
233 ret = true;
234 }
e8925712 235 }
012a906b
GB
236 if (interrupt_request & CPU_INTERRUPT_VIRQ) {
237 excp_idx = EXCP_VIRQ;
238 target_el = 1;
239 if (arm_excp_unmasked(cs, excp_idx, target_el)) {
240 cs->exception_index = excp_idx;
241 env->exception.target_el = target_el;
242 cc->do_interrupt(cs);
243 ret = true;
244 }
136e67e9 245 }
012a906b
GB
246 if (interrupt_request & CPU_INTERRUPT_VFIQ) {
247 excp_idx = EXCP_VFIQ;
248 target_el = 1;
249 if (arm_excp_unmasked(cs, excp_idx, target_el)) {
250 cs->exception_index = excp_idx;
251 env->exception.target_el = target_el;
252 cc->do_interrupt(cs);
253 ret = true;
254 }
136e67e9 255 }
e8925712
RH
256
257 return ret;
258}
259
b5c633c5
PM
260#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
261static bool arm_v7m_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
262{
263 CPUClass *cc = CPU_GET_CLASS(cs);
264 ARMCPU *cpu = ARM_CPU(cs);
265 CPUARMState *env = &cpu->env;
266 bool ret = false;
267
268
269 if (interrupt_request & CPU_INTERRUPT_FIQ
270 && !(env->daif & PSTATE_F)) {
271 cs->exception_index = EXCP_FIQ;
272 cc->do_interrupt(cs);
273 ret = true;
274 }
275 /* ARMv7-M interrupt return works by loading a magic value
276 * into the PC. On real hardware the load causes the
277 * return to occur. The qemu implementation performs the
278 * jump normally, then does the exception return when the
279 * CPU tries to execute code at the magic address.
280 * This will cause the magic PC value to be pushed to
281 * the stack if an interrupt occurred at the wrong time.
282 * We avoid this by disabling interrupts when
283 * pc contains a magic address.
284 */
285 if (interrupt_request & CPU_INTERRUPT_HARD
286 && !(env->daif & PSTATE_I)
287 && (env->regs[15] < 0xfffffff0)) {
288 cs->exception_index = EXCP_IRQ;
289 cc->do_interrupt(cs);
290 ret = true;
291 }
292 return ret;
293}
294#endif
295
7c1840b6
PM
296#ifndef CONFIG_USER_ONLY
297static void arm_cpu_set_irq(void *opaque, int irq, int level)
298{
299 ARMCPU *cpu = opaque;
136e67e9 300 CPUARMState *env = &cpu->env;
7c1840b6 301 CPUState *cs = CPU(cpu);
136e67e9
EI
302 static const int mask[] = {
303 [ARM_CPU_IRQ] = CPU_INTERRUPT_HARD,
304 [ARM_CPU_FIQ] = CPU_INTERRUPT_FIQ,
305 [ARM_CPU_VIRQ] = CPU_INTERRUPT_VIRQ,
306 [ARM_CPU_VFIQ] = CPU_INTERRUPT_VFIQ
307 };
7c1840b6
PM
308
309 switch (irq) {
136e67e9
EI
310 case ARM_CPU_VIRQ:
311 case ARM_CPU_VFIQ:
312 if (!arm_feature(env, ARM_FEATURE_EL2)) {
313 hw_error("%s: Virtual interrupt line %d with no EL2 support\n",
314 __func__, irq);
7c1840b6 315 }
136e67e9
EI
316 /* fall through */
317 case ARM_CPU_IRQ:
7c1840b6
PM
318 case ARM_CPU_FIQ:
319 if (level) {
136e67e9 320 cpu_interrupt(cs, mask[irq]);
7c1840b6 321 } else {
136e67e9 322 cpu_reset_interrupt(cs, mask[irq]);
7c1840b6
PM
323 }
324 break;
325 default:
326 hw_error("arm_cpu_set_irq: Bad interrupt line %d\n", irq);
327 }
328}
329
330static void arm_cpu_kvm_set_irq(void *opaque, int irq, int level)
331{
332#ifdef CONFIG_KVM
333 ARMCPU *cpu = opaque;
334 CPUState *cs = CPU(cpu);
335 int kvm_irq = KVM_ARM_IRQ_TYPE_CPU << KVM_ARM_IRQ_TYPE_SHIFT;
336
337 switch (irq) {
338 case ARM_CPU_IRQ:
339 kvm_irq |= KVM_ARM_IRQ_CPU_IRQ;
340 break;
341 case ARM_CPU_FIQ:
342 kvm_irq |= KVM_ARM_IRQ_CPU_FIQ;
343 break;
344 default:
345 hw_error("arm_cpu_kvm_set_irq: Bad interrupt line %d\n", irq);
346 }
347 kvm_irq |= cs->cpu_index << KVM_ARM_IRQ_VCPU_SHIFT;
348 kvm_set_irq(kvm_state, kvm_irq, level ? 1 : 0);
349#endif
350}
84f2bed3
PS
351
352static bool arm_cpu_is_big_endian(CPUState *cs)
353{
354 ARMCPU *cpu = ARM_CPU(cs);
355 CPUARMState *env = &cpu->env;
356 int cur_el;
357
358 cpu_synchronize_state(cs);
359
360 /* In 32bit guest endianness is determined by looking at CPSR's E bit */
361 if (!is_a64(env)) {
362 return (env->uncached_cpsr & CPSR_E) ? 1 : 0;
363 }
364
365 cur_el = arm_current_el(env);
366
367 if (cur_el == 0) {
368 return (env->cp15.sctlr_el[1] & SCTLR_E0E) != 0;
369 }
370
371 return (env->cp15.sctlr_el[cur_el] & SCTLR_EE) != 0;
372}
373
7c1840b6
PM
374#endif
375
581be094
PM
376static inline void set_feature(CPUARMState *env, int feature)
377{
918f5dca 378 env->features |= 1ULL << feature;
581be094
PM
379}
380
08828484
GB
381static inline void unset_feature(CPUARMState *env, int feature)
382{
383 env->features &= ~(1ULL << feature);
384}
385
eb5e1d3c
PF
386#define ARM_CPUS_PER_CLUSTER 8
387
777dc784
PM
388static void arm_cpu_initfn(Object *obj)
389{
c05efcb1 390 CPUState *cs = CPU(obj);
777dc784 391 ARMCPU *cpu = ARM_CPU(obj);
79614b78 392 static bool inited;
eb5e1d3c 393 uint32_t Aff1, Aff0;
777dc784 394
c05efcb1 395 cs->env_ptr = &cpu->env;
777dc784 396 cpu_exec_init(&cpu->env);
4b6a83fb
PM
397 cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal,
398 g_free, g_free);
79614b78 399
eb5e1d3c
PF
400 /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it.
401 * We don't support setting cluster ID ([16..23]) (known as Aff2
402 * in later ARM ARM versions), or any of the higher affinity level fields,
403 * so these bits always RAZ.
404 */
405 Aff1 = cs->cpu_index / ARM_CPUS_PER_CLUSTER;
406 Aff0 = cs->cpu_index % ARM_CPUS_PER_CLUSTER;
407 cpu->mp_affinity = (Aff1 << 8) | Aff0;
408
7c1840b6
PM
409#ifndef CONFIG_USER_ONLY
410 /* Our inbound IRQ and FIQ lines */
411 if (kvm_enabled()) {
136e67e9
EI
412 /* VIRQ and VFIQ are unused with KVM but we add them to maintain
413 * the same interface as non-KVM CPUs.
414 */
415 qdev_init_gpio_in(DEVICE(cpu), arm_cpu_kvm_set_irq, 4);
7c1840b6 416 } else {
136e67e9 417 qdev_init_gpio_in(DEVICE(cpu), arm_cpu_set_irq, 4);
7c1840b6 418 }
55d284af 419
bc72ad67 420 cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
55d284af 421 arm_gt_ptimer_cb, cpu);
bc72ad67 422 cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
55d284af
PM
423 arm_gt_vtimer_cb, cpu);
424 qdev_init_gpio_out(DEVICE(cpu), cpu->gt_timer_outputs,
425 ARRAY_SIZE(cpu->gt_timer_outputs));
7c1840b6
PM
426#endif
427
54d3e3f5
PM
428 /* DTB consumers generally don't in fact care what the 'compatible'
429 * string is, so always provide some string and trust that a hypothetical
430 * picky DTB consumer will also provide a helpful error message.
431 */
432 cpu->dtb_compatible = "qemu,unknown";
dd032e34 433 cpu->psci_version = 1; /* By default assume PSCI v0.1 */
3541addc 434 cpu->kvm_target = QEMU_KVM_ARM_TARGET_NONE;
54d3e3f5 435
98128601
RH
436 if (tcg_enabled()) {
437 cpu->psci_version = 2; /* TCG implements PSCI 0.2 */
438 if (!inited) {
439 inited = true;
440 arm_translate_init();
441 }
79614b78 442 }
4b6a83fb
PM
443}
444
07a5b0d2 445static Property arm_cpu_reset_cbar_property =
f318cec6 446 DEFINE_PROP_UINT64("reset-cbar", ARMCPU, reset_cbar, 0);
07a5b0d2 447
68e0a40a
AP
448static Property arm_cpu_reset_hivecs_property =
449 DEFINE_PROP_BOOL("reset-hivecs", ARMCPU, reset_hivecs, false);
450
3933443e
PM
451static Property arm_cpu_rvbar_property =
452 DEFINE_PROP_UINT64("rvbar", ARMCPU, rvbar, 0);
453
51942aee
GB
454static Property arm_cpu_has_el3_property =
455 DEFINE_PROP_BOOL("has_el3", ARMCPU, has_el3, true);
456
8f325f56
PC
457static Property arm_cpu_has_mpu_property =
458 DEFINE_PROP_BOOL("has-mpu", ARMCPU, has_mpu, true);
459
07a5b0d2
PC
460static void arm_cpu_post_init(Object *obj)
461{
462 ARMCPU *cpu = ARM_CPU(obj);
07a5b0d2 463
f318cec6
PM
464 if (arm_feature(&cpu->env, ARM_FEATURE_CBAR) ||
465 arm_feature(&cpu->env, ARM_FEATURE_CBAR_RO)) {
07a5b0d2 466 qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_cbar_property,
5433a0a8 467 &error_abort);
07a5b0d2 468 }
68e0a40a
AP
469
470 if (!arm_feature(&cpu->env, ARM_FEATURE_M)) {
471 qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_hivecs_property,
5433a0a8 472 &error_abort);
68e0a40a 473 }
3933443e
PM
474
475 if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
476 qdev_property_add_static(DEVICE(obj), &arm_cpu_rvbar_property,
477 &error_abort);
478 }
51942aee
GB
479
480 if (arm_feature(&cpu->env, ARM_FEATURE_EL3)) {
481 /* Add the has_el3 state CPU property only if EL3 is allowed. This will
482 * prevent "has_el3" from existing on CPUs which cannot support EL3.
483 */
484 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el3_property,
485 &error_abort);
486 }
8f325f56
PC
487
488 if (arm_feature(&cpu->env, ARM_FEATURE_MPU)) {
489 qdev_property_add_static(DEVICE(obj), &arm_cpu_has_mpu_property,
490 &error_abort);
491 }
492
07a5b0d2
PC
493}
494
4b6a83fb
PM
495static void arm_cpu_finalizefn(Object *obj)
496{
497 ARMCPU *cpu = ARM_CPU(obj);
498 g_hash_table_destroy(cpu->cp_regs);
777dc784
PM
499}
500
14969266 501static void arm_cpu_realizefn(DeviceState *dev, Error **errp)
581be094 502{
14a10fc3 503 CPUState *cs = CPU(dev);
14969266
AF
504 ARMCPU *cpu = ARM_CPU(dev);
505 ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev);
581be094 506 CPUARMState *env = &cpu->env;
14969266 507
581be094 508 /* Some features automatically imply others: */
81e69fb0
MR
509 if (arm_feature(env, ARM_FEATURE_V8)) {
510 set_feature(env, ARM_FEATURE_V7);
511 set_feature(env, ARM_FEATURE_ARM_DIV);
512 set_feature(env, ARM_FEATURE_LPAE);
513 }
581be094
PM
514 if (arm_feature(env, ARM_FEATURE_V7)) {
515 set_feature(env, ARM_FEATURE_VAPA);
516 set_feature(env, ARM_FEATURE_THUMB2);
81bdde9d 517 set_feature(env, ARM_FEATURE_MPIDR);
581be094
PM
518 if (!arm_feature(env, ARM_FEATURE_M)) {
519 set_feature(env, ARM_FEATURE_V6K);
520 } else {
521 set_feature(env, ARM_FEATURE_V6);
522 }
523 }
524 if (arm_feature(env, ARM_FEATURE_V6K)) {
525 set_feature(env, ARM_FEATURE_V6);
526 set_feature(env, ARM_FEATURE_MVFR);
527 }
528 if (arm_feature(env, ARM_FEATURE_V6)) {
529 set_feature(env, ARM_FEATURE_V5);
530 if (!arm_feature(env, ARM_FEATURE_M)) {
531 set_feature(env, ARM_FEATURE_AUXCR);
532 }
533 }
534 if (arm_feature(env, ARM_FEATURE_V5)) {
535 set_feature(env, ARM_FEATURE_V4T);
536 }
537 if (arm_feature(env, ARM_FEATURE_M)) {
538 set_feature(env, ARM_FEATURE_THUMB_DIV);
539 }
540 if (arm_feature(env, ARM_FEATURE_ARM_DIV)) {
541 set_feature(env, ARM_FEATURE_THUMB_DIV);
542 }
543 if (arm_feature(env, ARM_FEATURE_VFP4)) {
544 set_feature(env, ARM_FEATURE_VFP3);
da5141fc 545 set_feature(env, ARM_FEATURE_VFP_FP16);
581be094
PM
546 }
547 if (arm_feature(env, ARM_FEATURE_VFP3)) {
548 set_feature(env, ARM_FEATURE_VFP);
549 }
de9b05b8 550 if (arm_feature(env, ARM_FEATURE_LPAE)) {
bdcc150d 551 set_feature(env, ARM_FEATURE_V7MP);
de9b05b8
PM
552 set_feature(env, ARM_FEATURE_PXN);
553 }
f318cec6
PM
554 if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
555 set_feature(env, ARM_FEATURE_CBAR);
556 }
62b44f05
AR
557 if (arm_feature(env, ARM_FEATURE_THUMB2) &&
558 !arm_feature(env, ARM_FEATURE_M)) {
559 set_feature(env, ARM_FEATURE_THUMB_DSP);
560 }
2ceb98c0 561
68e0a40a
AP
562 if (cpu->reset_hivecs) {
563 cpu->reset_sctlr |= (1 << 13);
564 }
565
51942aee
GB
566 if (!cpu->has_el3) {
567 /* If the has_el3 CPU property is disabled then we need to disable the
568 * feature.
569 */
570 unset_feature(env, ARM_FEATURE_EL3);
571
572 /* Disable the security extension feature bits in the processor feature
3d5c84ff 573 * registers as well. These are id_pfr1[7:4] and id_aa64pfr0[15:12].
51942aee
GB
574 */
575 cpu->id_pfr1 &= ~0xf0;
3d5c84ff 576 cpu->id_aa64pfr0 &= ~0xf000;
51942aee
GB
577 }
578
8f325f56
PC
579 if (!cpu->has_mpu) {
580 unset_feature(env, ARM_FEATURE_MPU);
581 }
582
2ceb98c0 583 register_cp_regs_for_features(cpu);
14969266
AF
584 arm_cpu_register_gdb_regs_for_features(cpu);
585
721fae12
PM
586 init_cpreg_list(cpu);
587
14a10fc3 588 qemu_init_vcpu(cs);
00d0f7cb 589 cpu_reset(cs);
14969266
AF
590
591 acc->parent_realize(dev, errp);
581be094
PM
592}
593
5900d6b2
AF
594static ObjectClass *arm_cpu_class_by_name(const char *cpu_model)
595{
596 ObjectClass *oc;
51492fd1 597 char *typename;
fb8d6c24 598 char **cpuname;
5900d6b2
AF
599
600 if (!cpu_model) {
601 return NULL;
602 }
603
fb8d6c24
GB
604 cpuname = g_strsplit(cpu_model, ",", 1);
605 typename = g_strdup_printf("%s-" TYPE_ARM_CPU, cpuname[0]);
51492fd1 606 oc = object_class_by_name(typename);
fb8d6c24 607 g_strfreev(cpuname);
51492fd1 608 g_free(typename);
245fb54d
AF
609 if (!oc || !object_class_dynamic_cast(oc, TYPE_ARM_CPU) ||
610 object_class_is_abstract(oc)) {
5900d6b2
AF
611 return NULL;
612 }
613 return oc;
614}
615
15ee776b
PM
616/* CPU models. These are not needed for the AArch64 linux-user build. */
617#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
618
777dc784
PM
619static void arm926_initfn(Object *obj)
620{
621 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
622
623 cpu->dtb_compatible = "arm,arm926";
581be094
PM
624 set_feature(&cpu->env, ARM_FEATURE_V5);
625 set_feature(&cpu->env, ARM_FEATURE_VFP);
c4804214
PM
626 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
627 set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN);
b2d06f96 628 cpu->midr = 0x41069265;
325b3cef 629 cpu->reset_fpsid = 0x41011090;
64e1671f 630 cpu->ctr = 0x1dd20d2;
0ca7e01c 631 cpu->reset_sctlr = 0x00090078;
777dc784
PM
632}
633
634static void arm946_initfn(Object *obj)
635{
636 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
637
638 cpu->dtb_compatible = "arm,arm946";
581be094
PM
639 set_feature(&cpu->env, ARM_FEATURE_V5);
640 set_feature(&cpu->env, ARM_FEATURE_MPU);
c4804214 641 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
b2d06f96 642 cpu->midr = 0x41059461;
64e1671f 643 cpu->ctr = 0x0f004006;
0ca7e01c 644 cpu->reset_sctlr = 0x00000078;
777dc784
PM
645}
646
647static void arm1026_initfn(Object *obj)
648{
649 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
650
651 cpu->dtb_compatible = "arm,arm1026";
581be094
PM
652 set_feature(&cpu->env, ARM_FEATURE_V5);
653 set_feature(&cpu->env, ARM_FEATURE_VFP);
654 set_feature(&cpu->env, ARM_FEATURE_AUXCR);
c4804214
PM
655 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
656 set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN);
b2d06f96 657 cpu->midr = 0x4106a262;
325b3cef 658 cpu->reset_fpsid = 0x410110a0;
64e1671f 659 cpu->ctr = 0x1dd20d2;
0ca7e01c 660 cpu->reset_sctlr = 0x00090078;
2771db27 661 cpu->reset_auxcr = 1;
06d76f31
PM
662 {
663 /* The 1026 had an IFAR at c6,c0,0,1 rather than the ARMv6 c6,c0,0,2 */
664 ARMCPRegInfo ifar = {
665 .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1,
666 .access = PL1_RW,
b848ce2b 667 .fieldoffset = offsetof(CPUARMState, cp15.ifar_ns),
06d76f31
PM
668 .resetvalue = 0
669 };
670 define_one_arm_cp_reg(cpu, &ifar);
671 }
777dc784
PM
672}
673
674static void arm1136_r2_initfn(Object *obj)
675{
676 ARMCPU *cpu = ARM_CPU(obj);
2e4d7e3e
PM
677 /* What qemu calls "arm1136_r2" is actually the 1136 r0p2, ie an
678 * older core than plain "arm1136". In particular this does not
679 * have the v6K features.
680 * These ID register values are correct for 1136 but may be wrong
681 * for 1136_r2 (in particular r0p2 does not actually implement most
682 * of the ID registers).
683 */
54d3e3f5
PM
684
685 cpu->dtb_compatible = "arm,arm1136";
581be094
PM
686 set_feature(&cpu->env, ARM_FEATURE_V6);
687 set_feature(&cpu->env, ARM_FEATURE_VFP);
c4804214
PM
688 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
689 set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
690 set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
b2d06f96 691 cpu->midr = 0x4107b362;
325b3cef 692 cpu->reset_fpsid = 0x410120b4;
bd35c355
PM
693 cpu->mvfr0 = 0x11111111;
694 cpu->mvfr1 = 0x00000000;
64e1671f 695 cpu->ctr = 0x1dd20d2;
0ca7e01c 696 cpu->reset_sctlr = 0x00050078;
2e4d7e3e
PM
697 cpu->id_pfr0 = 0x111;
698 cpu->id_pfr1 = 0x1;
699 cpu->id_dfr0 = 0x2;
700 cpu->id_afr0 = 0x3;
701 cpu->id_mmfr0 = 0x01130003;
702 cpu->id_mmfr1 = 0x10030302;
703 cpu->id_mmfr2 = 0x01222110;
704 cpu->id_isar0 = 0x00140011;
705 cpu->id_isar1 = 0x12002111;
706 cpu->id_isar2 = 0x11231111;
707 cpu->id_isar3 = 0x01102131;
708 cpu->id_isar4 = 0x141;
2771db27 709 cpu->reset_auxcr = 7;
777dc784
PM
710}
711
712static void arm1136_initfn(Object *obj)
713{
714 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
715
716 cpu->dtb_compatible = "arm,arm1136";
581be094
PM
717 set_feature(&cpu->env, ARM_FEATURE_V6K);
718 set_feature(&cpu->env, ARM_FEATURE_V6);
719 set_feature(&cpu->env, ARM_FEATURE_VFP);
c4804214
PM
720 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
721 set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
722 set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
b2d06f96 723 cpu->midr = 0x4117b363;
325b3cef 724 cpu->reset_fpsid = 0x410120b4;
bd35c355
PM
725 cpu->mvfr0 = 0x11111111;
726 cpu->mvfr1 = 0x00000000;
64e1671f 727 cpu->ctr = 0x1dd20d2;
0ca7e01c 728 cpu->reset_sctlr = 0x00050078;
2e4d7e3e
PM
729 cpu->id_pfr0 = 0x111;
730 cpu->id_pfr1 = 0x1;
731 cpu->id_dfr0 = 0x2;
732 cpu->id_afr0 = 0x3;
733 cpu->id_mmfr0 = 0x01130003;
734 cpu->id_mmfr1 = 0x10030302;
735 cpu->id_mmfr2 = 0x01222110;
736 cpu->id_isar0 = 0x00140011;
737 cpu->id_isar1 = 0x12002111;
738 cpu->id_isar2 = 0x11231111;
739 cpu->id_isar3 = 0x01102131;
740 cpu->id_isar4 = 0x141;
2771db27 741 cpu->reset_auxcr = 7;
777dc784
PM
742}
743
744static void arm1176_initfn(Object *obj)
745{
746 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
747
748 cpu->dtb_compatible = "arm,arm1176";
581be094
PM
749 set_feature(&cpu->env, ARM_FEATURE_V6K);
750 set_feature(&cpu->env, ARM_FEATURE_VFP);
751 set_feature(&cpu->env, ARM_FEATURE_VAPA);
c4804214
PM
752 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
753 set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
754 set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
c0ccb02d 755 set_feature(&cpu->env, ARM_FEATURE_EL3);
b2d06f96 756 cpu->midr = 0x410fb767;
325b3cef 757 cpu->reset_fpsid = 0x410120b5;
bd35c355
PM
758 cpu->mvfr0 = 0x11111111;
759 cpu->mvfr1 = 0x00000000;
64e1671f 760 cpu->ctr = 0x1dd20d2;
0ca7e01c 761 cpu->reset_sctlr = 0x00050078;
2e4d7e3e
PM
762 cpu->id_pfr0 = 0x111;
763 cpu->id_pfr1 = 0x11;
764 cpu->id_dfr0 = 0x33;
765 cpu->id_afr0 = 0;
766 cpu->id_mmfr0 = 0x01130003;
767 cpu->id_mmfr1 = 0x10030302;
768 cpu->id_mmfr2 = 0x01222100;
769 cpu->id_isar0 = 0x0140011;
770 cpu->id_isar1 = 0x12002111;
771 cpu->id_isar2 = 0x11231121;
772 cpu->id_isar3 = 0x01102131;
773 cpu->id_isar4 = 0x01141;
2771db27 774 cpu->reset_auxcr = 7;
777dc784
PM
775}
776
777static void arm11mpcore_initfn(Object *obj)
778{
779 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
780
781 cpu->dtb_compatible = "arm,arm11mpcore";
581be094
PM
782 set_feature(&cpu->env, ARM_FEATURE_V6K);
783 set_feature(&cpu->env, ARM_FEATURE_VFP);
784 set_feature(&cpu->env, ARM_FEATURE_VAPA);
81bdde9d 785 set_feature(&cpu->env, ARM_FEATURE_MPIDR);
c4804214 786 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
b2d06f96 787 cpu->midr = 0x410fb022;
325b3cef 788 cpu->reset_fpsid = 0x410120b4;
bd35c355
PM
789 cpu->mvfr0 = 0x11111111;
790 cpu->mvfr1 = 0x00000000;
200bf596 791 cpu->ctr = 0x1d192992; /* 32K icache 32K dcache */
2e4d7e3e
PM
792 cpu->id_pfr0 = 0x111;
793 cpu->id_pfr1 = 0x1;
794 cpu->id_dfr0 = 0;
795 cpu->id_afr0 = 0x2;
796 cpu->id_mmfr0 = 0x01100103;
797 cpu->id_mmfr1 = 0x10020302;
798 cpu->id_mmfr2 = 0x01222000;
799 cpu->id_isar0 = 0x00100011;
800 cpu->id_isar1 = 0x12002111;
801 cpu->id_isar2 = 0x11221011;
802 cpu->id_isar3 = 0x01102131;
803 cpu->id_isar4 = 0x141;
2771db27 804 cpu->reset_auxcr = 1;
777dc784
PM
805}
806
807static void cortex_m3_initfn(Object *obj)
808{
809 ARMCPU *cpu = ARM_CPU(obj);
581be094
PM
810 set_feature(&cpu->env, ARM_FEATURE_V7);
811 set_feature(&cpu->env, ARM_FEATURE_M);
b2d06f96 812 cpu->midr = 0x410fc231;
777dc784
PM
813}
814
ba890a9b
AR
815static void cortex_m4_initfn(Object *obj)
816{
817 ARMCPU *cpu = ARM_CPU(obj);
818
819 set_feature(&cpu->env, ARM_FEATURE_V7);
820 set_feature(&cpu->env, ARM_FEATURE_M);
821 set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP);
822 cpu->midr = 0x410fc240; /* r0p0 */
823}
e6f010cc
AF
824static void arm_v7m_class_init(ObjectClass *oc, void *data)
825{
e6f010cc
AF
826 CPUClass *cc = CPU_CLASS(oc);
827
b5c633c5 828#ifndef CONFIG_USER_ONLY
e6f010cc
AF
829 cc->do_interrupt = arm_v7m_cpu_do_interrupt;
830#endif
b5c633c5
PM
831
832 cc->cpu_exec_interrupt = arm_v7m_cpu_exec_interrupt;
e6f010cc
AF
833}
834
34f90529
PM
835static const ARMCPRegInfo cortexa8_cp_reginfo[] = {
836 { .name = "L2LOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 0,
837 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
838 { .name = "L2AUXCR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2,
839 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
840 REGINFO_SENTINEL
841};
842
777dc784
PM
843static void cortex_a8_initfn(Object *obj)
844{
845 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
846
847 cpu->dtb_compatible = "arm,cortex-a8";
581be094
PM
848 set_feature(&cpu->env, ARM_FEATURE_V7);
849 set_feature(&cpu->env, ARM_FEATURE_VFP3);
850 set_feature(&cpu->env, ARM_FEATURE_NEON);
851 set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
c4804214 852 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
c0ccb02d 853 set_feature(&cpu->env, ARM_FEATURE_EL3);
b2d06f96 854 cpu->midr = 0x410fc080;
325b3cef 855 cpu->reset_fpsid = 0x410330c0;
bd35c355
PM
856 cpu->mvfr0 = 0x11110222;
857 cpu->mvfr1 = 0x00011100;
64e1671f 858 cpu->ctr = 0x82048004;
0ca7e01c 859 cpu->reset_sctlr = 0x00c50078;
2e4d7e3e
PM
860 cpu->id_pfr0 = 0x1031;
861 cpu->id_pfr1 = 0x11;
862 cpu->id_dfr0 = 0x400;
863 cpu->id_afr0 = 0;
864 cpu->id_mmfr0 = 0x31100003;
865 cpu->id_mmfr1 = 0x20000000;
866 cpu->id_mmfr2 = 0x01202000;
867 cpu->id_mmfr3 = 0x11;
868 cpu->id_isar0 = 0x00101111;
869 cpu->id_isar1 = 0x12112111;
870 cpu->id_isar2 = 0x21232031;
871 cpu->id_isar3 = 0x11112131;
872 cpu->id_isar4 = 0x00111142;
48eb3ae6 873 cpu->dbgdidr = 0x15141000;
85df3786
PM
874 cpu->clidr = (1 << 27) | (2 << 24) | 3;
875 cpu->ccsidr[0] = 0xe007e01a; /* 16k L1 dcache. */
876 cpu->ccsidr[1] = 0x2007e01a; /* 16k L1 icache. */
877 cpu->ccsidr[2] = 0xf0000000; /* No L2 icache. */
2771db27 878 cpu->reset_auxcr = 2;
34f90529 879 define_arm_cp_regs(cpu, cortexa8_cp_reginfo);
777dc784
PM
880}
881
1047b9d7
PM
882static const ARMCPRegInfo cortexa9_cp_reginfo[] = {
883 /* power_control should be set to maximum latency. Again,
884 * default to 0 and set by private hook
885 */
886 { .name = "A9_PWRCTL", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0,
887 .access = PL1_RW, .resetvalue = 0,
888 .fieldoffset = offsetof(CPUARMState, cp15.c15_power_control) },
889 { .name = "A9_DIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 1,
890 .access = PL1_RW, .resetvalue = 0,
891 .fieldoffset = offsetof(CPUARMState, cp15.c15_diagnostic) },
892 { .name = "A9_PWRDIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 2,
893 .access = PL1_RW, .resetvalue = 0,
894 .fieldoffset = offsetof(CPUARMState, cp15.c15_power_diagnostic) },
895 { .name = "NEONBUSY", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0,
896 .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
897 /* TLB lockdown control */
898 { .name = "TLB_LOCKR", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 2,
899 .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP },
900 { .name = "TLB_LOCKW", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 4,
901 .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP },
902 { .name = "TLB_VA", .cp = 15, .crn = 15, .crm = 5, .opc1 = 5, .opc2 = 2,
903 .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
904 { .name = "TLB_PA", .cp = 15, .crn = 15, .crm = 6, .opc1 = 5, .opc2 = 2,
905 .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
906 { .name = "TLB_ATTR", .cp = 15, .crn = 15, .crm = 7, .opc1 = 5, .opc2 = 2,
907 .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
908 REGINFO_SENTINEL
909};
910
777dc784
PM
911static void cortex_a9_initfn(Object *obj)
912{
913 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
914
915 cpu->dtb_compatible = "arm,cortex-a9";
581be094
PM
916 set_feature(&cpu->env, ARM_FEATURE_V7);
917 set_feature(&cpu->env, ARM_FEATURE_VFP3);
918 set_feature(&cpu->env, ARM_FEATURE_VFP_FP16);
919 set_feature(&cpu->env, ARM_FEATURE_NEON);
920 set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
c0ccb02d 921 set_feature(&cpu->env, ARM_FEATURE_EL3);
581be094
PM
922 /* Note that A9 supports the MP extensions even for
923 * A9UP and single-core A9MP (which are both different
924 * and valid configurations; we don't model A9UP).
925 */
926 set_feature(&cpu->env, ARM_FEATURE_V7MP);
d8ba780b 927 set_feature(&cpu->env, ARM_FEATURE_CBAR);
b2d06f96 928 cpu->midr = 0x410fc090;
325b3cef 929 cpu->reset_fpsid = 0x41033090;
bd35c355
PM
930 cpu->mvfr0 = 0x11110222;
931 cpu->mvfr1 = 0x01111111;
64e1671f 932 cpu->ctr = 0x80038003;
0ca7e01c 933 cpu->reset_sctlr = 0x00c50078;
2e4d7e3e
PM
934 cpu->id_pfr0 = 0x1031;
935 cpu->id_pfr1 = 0x11;
936 cpu->id_dfr0 = 0x000;
937 cpu->id_afr0 = 0;
938 cpu->id_mmfr0 = 0x00100103;
939 cpu->id_mmfr1 = 0x20000000;
940 cpu->id_mmfr2 = 0x01230000;
941 cpu->id_mmfr3 = 0x00002111;
942 cpu->id_isar0 = 0x00101111;
943 cpu->id_isar1 = 0x13112111;
944 cpu->id_isar2 = 0x21232041;
945 cpu->id_isar3 = 0x11112131;
946 cpu->id_isar4 = 0x00111142;
48eb3ae6 947 cpu->dbgdidr = 0x35141000;
85df3786 948 cpu->clidr = (1 << 27) | (1 << 24) | 3;
f7838b52
PC
949 cpu->ccsidr[0] = 0xe00fe019; /* 16k L1 dcache. */
950 cpu->ccsidr[1] = 0x200fe019; /* 16k L1 icache. */
d8ba780b 951 define_arm_cp_regs(cpu, cortexa9_cp_reginfo);
777dc784
PM
952}
953
34f90529 954#ifndef CONFIG_USER_ONLY
c4241c7d 955static uint64_t a15_l2ctlr_read(CPUARMState *env, const ARMCPRegInfo *ri)
34f90529
PM
956{
957 /* Linux wants the number of processors from here.
958 * Might as well set the interrupt-controller bit too.
959 */
c4241c7d 960 return ((smp_cpus - 1) << 24) | (1 << 23);
34f90529
PM
961}
962#endif
963
964static const ARMCPRegInfo cortexa15_cp_reginfo[] = {
965#ifndef CONFIG_USER_ONLY
966 { .name = "L2CTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2,
967 .access = PL1_RW, .resetvalue = 0, .readfn = a15_l2ctlr_read,
968 .writefn = arm_cp_write_ignore, },
969#endif
970 { .name = "L2ECTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 3,
971 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
972 REGINFO_SENTINEL
973};
974
777dc784
PM
975static void cortex_a15_initfn(Object *obj)
976{
977 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
978
979 cpu->dtb_compatible = "arm,cortex-a15";
581be094
PM
980 set_feature(&cpu->env, ARM_FEATURE_V7);
981 set_feature(&cpu->env, ARM_FEATURE_VFP4);
581be094
PM
982 set_feature(&cpu->env, ARM_FEATURE_NEON);
983 set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
984 set_feature(&cpu->env, ARM_FEATURE_ARM_DIV);
581be094 985 set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER);
c4804214 986 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
c29f9a0a 987 set_feature(&cpu->env, ARM_FEATURE_CBAR_RO);
de9b05b8 988 set_feature(&cpu->env, ARM_FEATURE_LPAE);
c0ccb02d 989 set_feature(&cpu->env, ARM_FEATURE_EL3);
3541addc 990 cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A15;
b2d06f96 991 cpu->midr = 0x412fc0f1;
325b3cef 992 cpu->reset_fpsid = 0x410430f0;
bd35c355
PM
993 cpu->mvfr0 = 0x10110222;
994 cpu->mvfr1 = 0x11111111;
64e1671f 995 cpu->ctr = 0x8444c004;
0ca7e01c 996 cpu->reset_sctlr = 0x00c50078;
2e4d7e3e
PM
997 cpu->id_pfr0 = 0x00001131;
998 cpu->id_pfr1 = 0x00011011;
999 cpu->id_dfr0 = 0x02010555;
1000 cpu->id_afr0 = 0x00000000;
1001 cpu->id_mmfr0 = 0x10201105;
1002 cpu->id_mmfr1 = 0x20000000;
1003 cpu->id_mmfr2 = 0x01240000;
1004 cpu->id_mmfr3 = 0x02102211;
1005 cpu->id_isar0 = 0x02101110;
1006 cpu->id_isar1 = 0x13112111;
1007 cpu->id_isar2 = 0x21232041;
1008 cpu->id_isar3 = 0x11112131;
1009 cpu->id_isar4 = 0x10011142;
48eb3ae6 1010 cpu->dbgdidr = 0x3515f021;
85df3786
PM
1011 cpu->clidr = 0x0a200023;
1012 cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */
1013 cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */
1014 cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */
34f90529 1015 define_arm_cp_regs(cpu, cortexa15_cp_reginfo);
777dc784
PM
1016}
1017
1018static void ti925t_initfn(Object *obj)
1019{
1020 ARMCPU *cpu = ARM_CPU(obj);
581be094
PM
1021 set_feature(&cpu->env, ARM_FEATURE_V4T);
1022 set_feature(&cpu->env, ARM_FEATURE_OMAPCP);
777dc784 1023 cpu->midr = ARM_CPUID_TI925T;
64e1671f 1024 cpu->ctr = 0x5109149;
0ca7e01c 1025 cpu->reset_sctlr = 0x00000070;
777dc784
PM
1026}
1027
1028static void sa1100_initfn(Object *obj)
1029{
1030 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1031
1032 cpu->dtb_compatible = "intel,sa1100";
581be094 1033 set_feature(&cpu->env, ARM_FEATURE_STRONGARM);
c4804214 1034 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
b2d06f96 1035 cpu->midr = 0x4401A11B;
0ca7e01c 1036 cpu->reset_sctlr = 0x00000070;
777dc784
PM
1037}
1038
1039static void sa1110_initfn(Object *obj)
1040{
1041 ARMCPU *cpu = ARM_CPU(obj);
581be094 1042 set_feature(&cpu->env, ARM_FEATURE_STRONGARM);
c4804214 1043 set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
b2d06f96 1044 cpu->midr = 0x6901B119;
0ca7e01c 1045 cpu->reset_sctlr = 0x00000070;
777dc784
PM
1046}
1047
1048static void pxa250_initfn(Object *obj)
1049{
1050 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1051
1052 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1053 set_feature(&cpu->env, ARM_FEATURE_V5);
1054 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
b2d06f96 1055 cpu->midr = 0x69052100;
64e1671f 1056 cpu->ctr = 0xd172172;
0ca7e01c 1057 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1058}
1059
1060static void pxa255_initfn(Object *obj)
1061{
1062 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1063
1064 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1065 set_feature(&cpu->env, ARM_FEATURE_V5);
1066 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
b2d06f96 1067 cpu->midr = 0x69052d00;
64e1671f 1068 cpu->ctr = 0xd172172;
0ca7e01c 1069 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1070}
1071
1072static void pxa260_initfn(Object *obj)
1073{
1074 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1075
1076 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1077 set_feature(&cpu->env, ARM_FEATURE_V5);
1078 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
b2d06f96 1079 cpu->midr = 0x69052903;
64e1671f 1080 cpu->ctr = 0xd172172;
0ca7e01c 1081 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1082}
1083
1084static void pxa261_initfn(Object *obj)
1085{
1086 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1087
1088 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1089 set_feature(&cpu->env, ARM_FEATURE_V5);
1090 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
b2d06f96 1091 cpu->midr = 0x69052d05;
64e1671f 1092 cpu->ctr = 0xd172172;
0ca7e01c 1093 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1094}
1095
1096static void pxa262_initfn(Object *obj)
1097{
1098 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1099
1100 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1101 set_feature(&cpu->env, ARM_FEATURE_V5);
1102 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
b2d06f96 1103 cpu->midr = 0x69052d06;
64e1671f 1104 cpu->ctr = 0xd172172;
0ca7e01c 1105 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1106}
1107
1108static void pxa270a0_initfn(Object *obj)
1109{
1110 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1111
1112 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1113 set_feature(&cpu->env, ARM_FEATURE_V5);
1114 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1115 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1116 cpu->midr = 0x69054110;
64e1671f 1117 cpu->ctr = 0xd172172;
0ca7e01c 1118 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1119}
1120
1121static void pxa270a1_initfn(Object *obj)
1122{
1123 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1124
1125 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1126 set_feature(&cpu->env, ARM_FEATURE_V5);
1127 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1128 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1129 cpu->midr = 0x69054111;
64e1671f 1130 cpu->ctr = 0xd172172;
0ca7e01c 1131 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1132}
1133
1134static void pxa270b0_initfn(Object *obj)
1135{
1136 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1137
1138 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1139 set_feature(&cpu->env, ARM_FEATURE_V5);
1140 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1141 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1142 cpu->midr = 0x69054112;
64e1671f 1143 cpu->ctr = 0xd172172;
0ca7e01c 1144 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1145}
1146
1147static void pxa270b1_initfn(Object *obj)
1148{
1149 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1150
1151 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1152 set_feature(&cpu->env, ARM_FEATURE_V5);
1153 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1154 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1155 cpu->midr = 0x69054113;
64e1671f 1156 cpu->ctr = 0xd172172;
0ca7e01c 1157 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1158}
1159
1160static void pxa270c0_initfn(Object *obj)
1161{
1162 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1163
1164 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1165 set_feature(&cpu->env, ARM_FEATURE_V5);
1166 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1167 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1168 cpu->midr = 0x69054114;
64e1671f 1169 cpu->ctr = 0xd172172;
0ca7e01c 1170 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1171}
1172
1173static void pxa270c5_initfn(Object *obj)
1174{
1175 ARMCPU *cpu = ARM_CPU(obj);
54d3e3f5
PM
1176
1177 cpu->dtb_compatible = "marvell,xscale";
581be094
PM
1178 set_feature(&cpu->env, ARM_FEATURE_V5);
1179 set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1180 set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
b2d06f96 1181 cpu->midr = 0x69054117;
64e1671f 1182 cpu->ctr = 0xd172172;
0ca7e01c 1183 cpu->reset_sctlr = 0x00000078;
777dc784
PM
1184}
1185
f5f6d38b 1186#ifdef CONFIG_USER_ONLY
777dc784
PM
1187static void arm_any_initfn(Object *obj)
1188{
1189 ARMCPU *cpu = ARM_CPU(obj);
81e69fb0 1190 set_feature(&cpu->env, ARM_FEATURE_V8);
581be094 1191 set_feature(&cpu->env, ARM_FEATURE_VFP4);
581be094
PM
1192 set_feature(&cpu->env, ARM_FEATURE_NEON);
1193 set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
25f748e3
PM
1194 set_feature(&cpu->env, ARM_FEATURE_V8_AES);
1195 set_feature(&cpu->env, ARM_FEATURE_V8_SHA1);
1196 set_feature(&cpu->env, ARM_FEATURE_V8_SHA256);
1197 set_feature(&cpu->env, ARM_FEATURE_V8_PMULL);
eb0ecd5a 1198 set_feature(&cpu->env, ARM_FEATURE_CRC);
b2d06f96 1199 cpu->midr = 0xffffffff;
777dc784 1200}
f5f6d38b 1201#endif
777dc784 1202
15ee776b
PM
1203#endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
1204
777dc784
PM
1205typedef struct ARMCPUInfo {
1206 const char *name;
1207 void (*initfn)(Object *obj);
e6f010cc 1208 void (*class_init)(ObjectClass *oc, void *data);
777dc784
PM
1209} ARMCPUInfo;
1210
1211static const ARMCPUInfo arm_cpus[] = {
15ee776b 1212#if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
777dc784
PM
1213 { .name = "arm926", .initfn = arm926_initfn },
1214 { .name = "arm946", .initfn = arm946_initfn },
1215 { .name = "arm1026", .initfn = arm1026_initfn },
1216 /* What QEMU calls "arm1136-r2" is actually the 1136 r0p2, i.e. an
1217 * older core than plain "arm1136". In particular this does not
1218 * have the v6K features.
1219 */
1220 { .name = "arm1136-r2", .initfn = arm1136_r2_initfn },
1221 { .name = "arm1136", .initfn = arm1136_initfn },
1222 { .name = "arm1176", .initfn = arm1176_initfn },
1223 { .name = "arm11mpcore", .initfn = arm11mpcore_initfn },
e6f010cc
AF
1224 { .name = "cortex-m3", .initfn = cortex_m3_initfn,
1225 .class_init = arm_v7m_class_init },
ba890a9b
AR
1226 { .name = "cortex-m4", .initfn = cortex_m4_initfn,
1227 .class_init = arm_v7m_class_init },
777dc784
PM
1228 { .name = "cortex-a8", .initfn = cortex_a8_initfn },
1229 { .name = "cortex-a9", .initfn = cortex_a9_initfn },
1230 { .name = "cortex-a15", .initfn = cortex_a15_initfn },
1231 { .name = "ti925t", .initfn = ti925t_initfn },
1232 { .name = "sa1100", .initfn = sa1100_initfn },
1233 { .name = "sa1110", .initfn = sa1110_initfn },
1234 { .name = "pxa250", .initfn = pxa250_initfn },
1235 { .name = "pxa255", .initfn = pxa255_initfn },
1236 { .name = "pxa260", .initfn = pxa260_initfn },
1237 { .name = "pxa261", .initfn = pxa261_initfn },
1238 { .name = "pxa262", .initfn = pxa262_initfn },
1239 /* "pxa270" is an alias for "pxa270-a0" */
1240 { .name = "pxa270", .initfn = pxa270a0_initfn },
1241 { .name = "pxa270-a0", .initfn = pxa270a0_initfn },
1242 { .name = "pxa270-a1", .initfn = pxa270a1_initfn },
1243 { .name = "pxa270-b0", .initfn = pxa270b0_initfn },
1244 { .name = "pxa270-b1", .initfn = pxa270b1_initfn },
1245 { .name = "pxa270-c0", .initfn = pxa270c0_initfn },
1246 { .name = "pxa270-c5", .initfn = pxa270c5_initfn },
f5f6d38b 1247#ifdef CONFIG_USER_ONLY
777dc784 1248 { .name = "any", .initfn = arm_any_initfn },
f5f6d38b 1249#endif
15ee776b 1250#endif
83e6813a 1251 { .name = NULL }
777dc784
PM
1252};
1253
5de16430
PM
1254static Property arm_cpu_properties[] = {
1255 DEFINE_PROP_BOOL("start-powered-off", ARMCPU, start_powered_off, false),
98128601 1256 DEFINE_PROP_UINT32("psci-conduit", ARMCPU, psci_conduit, 0),
51a9b04b 1257 DEFINE_PROP_UINT32("midr", ARMCPU, midr, 0),
5de16430
PM
1258 DEFINE_PROP_END_OF_LIST()
1259};
1260
8c6084bf
PM
1261#ifdef CONFIG_USER_ONLY
1262static int arm_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
1263 int mmu_idx)
1264{
1265 ARMCPU *cpu = ARM_CPU(cs);
1266 CPUARMState *env = &cpu->env;
1267
1268 env->exception.vaddress = address;
1269 if (rw == 2) {
1270 cs->exception_index = EXCP_PREFETCH_ABORT;
1271 } else {
1272 cs->exception_index = EXCP_DATA_ABORT;
1273 }
1274 return 1;
1275}
1276#endif
1277
dec9c2d4
AF
1278static void arm_cpu_class_init(ObjectClass *oc, void *data)
1279{
1280 ARMCPUClass *acc = ARM_CPU_CLASS(oc);
1281 CPUClass *cc = CPU_CLASS(acc);
14969266
AF
1282 DeviceClass *dc = DEVICE_CLASS(oc);
1283
1284 acc->parent_realize = dc->realize;
1285 dc->realize = arm_cpu_realizefn;
5de16430 1286 dc->props = arm_cpu_properties;
dec9c2d4
AF
1287
1288 acc->parent_reset = cc->reset;
1289 cc->reset = arm_cpu_reset;
5900d6b2
AF
1290
1291 cc->class_by_name = arm_cpu_class_by_name;
8c2e1b00 1292 cc->has_work = arm_cpu_has_work;
e8925712 1293 cc->cpu_exec_interrupt = arm_cpu_exec_interrupt;
878096ee 1294 cc->dump_state = arm_cpu_dump_state;
f45748f1 1295 cc->set_pc = arm_cpu_set_pc;
5b50e790
AF
1296 cc->gdb_read_register = arm_cpu_gdb_read_register;
1297 cc->gdb_write_register = arm_cpu_gdb_write_register;
7510454e
AF
1298#ifdef CONFIG_USER_ONLY
1299 cc->handle_mmu_fault = arm_cpu_handle_mmu_fault;
1300#else
0adf7d3c 1301 cc->do_interrupt = arm_cpu_do_interrupt;
00b941e5
AF
1302 cc->get_phys_page_debug = arm_cpu_get_phys_page_debug;
1303 cc->vmsd = &vmstate_arm_cpu;
84f2bed3 1304 cc->virtio_is_big_endian = arm_cpu_is_big_endian;
00b941e5 1305#endif
a0e372f0 1306 cc->gdb_num_core_regs = 26;
5b24c641 1307 cc->gdb_core_xml_file = "arm-core.xml";
2472b6c0 1308 cc->gdb_stop_before_watchpoint = true;
3ff6fc91 1309 cc->debug_excp_handler = arm_debug_excp_handler;
dec9c2d4
AF
1310}
1311
777dc784
PM
1312static void cpu_register(const ARMCPUInfo *info)
1313{
1314 TypeInfo type_info = {
777dc784
PM
1315 .parent = TYPE_ARM_CPU,
1316 .instance_size = sizeof(ARMCPU),
1317 .instance_init = info->initfn,
1318 .class_size = sizeof(ARMCPUClass),
e6f010cc 1319 .class_init = info->class_init,
777dc784
PM
1320 };
1321
51492fd1 1322 type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
918fd083 1323 type_register(&type_info);
51492fd1 1324 g_free((void *)type_info.name);
777dc784
PM
1325}
1326
dec9c2d4
AF
1327static const TypeInfo arm_cpu_type_info = {
1328 .name = TYPE_ARM_CPU,
1329 .parent = TYPE_CPU,
1330 .instance_size = sizeof(ARMCPU),
777dc784 1331 .instance_init = arm_cpu_initfn,
07a5b0d2 1332 .instance_post_init = arm_cpu_post_init,
4b6a83fb 1333 .instance_finalize = arm_cpu_finalizefn,
777dc784 1334 .abstract = true,
dec9c2d4
AF
1335 .class_size = sizeof(ARMCPUClass),
1336 .class_init = arm_cpu_class_init,
1337};
1338
1339static void arm_cpu_register_types(void)
1340{
83e6813a 1341 const ARMCPUInfo *info = arm_cpus;
777dc784 1342
dec9c2d4 1343 type_register_static(&arm_cpu_type_info);
83e6813a
PM
1344
1345 while (info->name) {
1346 cpu_register(info);
1347 info++;
777dc784 1348 }
dec9c2d4
AF
1349}
1350
1351type_init(arm_cpu_register_types)