4 * Copyright (c) 2012 SUSE LINUX Products GmbH
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.
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.
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>
22 #include "internals.h"
23 #include "qemu-common.h"
24 #include "hw/qdev-properties.h"
25 #include "qapi/qmp/qerror.h"
26 #if !defined(CONFIG_USER_ONLY)
27 #include "hw/loader.h"
29 #include "hw/arm/arm.h"
30 #include "sysemu/sysemu.h"
31 #include "sysemu/kvm.h"
34 static void arm_cpu_set_pc(CPUState
*cs
, vaddr value
)
36 ARMCPU
*cpu
= ARM_CPU(cs
);
38 cpu
->env
.regs
[15] = value
;
41 static bool arm_cpu_has_work(CPUState
*cs
)
43 ARMCPU
*cpu
= ARM_CPU(cs
);
45 return !cpu
->powered_off
46 && cs
->interrupt_request
&
47 (CPU_INTERRUPT_FIQ
| CPU_INTERRUPT_HARD
48 | CPU_INTERRUPT_VFIQ
| CPU_INTERRUPT_VIRQ
49 | CPU_INTERRUPT_EXITTB
);
52 static void cp_reg_reset(gpointer key
, gpointer value
, gpointer opaque
)
54 /* Reset a single ARMCPRegInfo register */
55 ARMCPRegInfo
*ri
= value
;
58 if (ri
->type
& ARM_CP_SPECIAL
) {
63 ri
->resetfn(&cpu
->env
, ri
);
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).
72 if (!ri
->fieldoffset
) {
76 if (cpreg_field_is_64bit(ri
)) {
77 CPREG_FIELD64(&cpu
->env
, ri
) = ri
->resetvalue
;
79 CPREG_FIELD32(&cpu
->env
, ri
) = ri
->resetvalue
;
83 /* CPUClass::reset() */
84 static void arm_cpu_reset(CPUState
*s
)
86 ARMCPU
*cpu
= ARM_CPU(s
);
87 ARMCPUClass
*acc
= ARM_CPU_GET_CLASS(cpu
);
88 CPUARMState
*env
= &cpu
->env
;
92 memset(env
, 0, offsetof(CPUARMState
, features
));
93 g_hash_table_foreach(cpu
->cp_regs
, cp_reg_reset
, cpu
);
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
;
97 env
->vfp
.xregs
[ARM_VFP_MVFR2
] = cpu
->mvfr2
;
99 cpu
->powered_off
= cpu
->start_powered_off
;
100 s
->halted
= cpu
->start_powered_off
;
102 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
103 env
->iwmmxt
.cregs
[ARM_IWMMXT_wCID
] = 0x69051000 | 'Q';
106 if (arm_feature(env
, ARM_FEATURE_AARCH64
)) {
107 /* 64 bit CPUs always start in 64 bit mode */
109 #if defined(CONFIG_USER_ONLY)
110 env
->pstate
= PSTATE_MODE_EL0t
;
111 /* Userspace expects access to DC ZVA, CTL_EL0 and the cache ops */
112 env
->cp15
.sctlr_el
[1] |= SCTLR_UCT
| SCTLR_UCI
| SCTLR_DZE
;
113 /* and to the FP/Neon instructions */
114 env
->cp15
.c1_coproc
= deposit64(env
->cp15
.c1_coproc
, 20, 2, 3);
116 env
->pstate
= PSTATE_MODE_EL1h
;
117 env
->pc
= cpu
->rvbar
;
120 #if defined(CONFIG_USER_ONLY)
121 /* Userspace expects access to cp10 and cp11 for FP/Neon */
122 env
->cp15
.c1_coproc
= deposit64(env
->cp15
.c1_coproc
, 20, 4, 0xf);
126 #if defined(CONFIG_USER_ONLY)
127 env
->uncached_cpsr
= ARM_CPU_MODE_USR
;
128 /* For user mode we must enable access to coprocessors */
129 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 1 << 30;
130 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
131 env
->cp15
.c15_cpar
= 3;
132 } else if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
133 env
->cp15
.c15_cpar
= 1;
136 /* SVC mode with interrupts disabled. */
137 env
->uncached_cpsr
= ARM_CPU_MODE_SVC
;
138 env
->daif
= PSTATE_D
| PSTATE_A
| PSTATE_I
| PSTATE_F
;
139 /* On ARMv7-M the CPSR_I is the value of the PRIMASK register, and is
140 * clear at reset. Initial SP and PC are loaded from ROM.
143 uint32_t initial_msp
; /* Loaded from 0x0 */
144 uint32_t initial_pc
; /* Loaded from 0x4 */
147 env
->daif
&= ~PSTATE_I
;
150 /* Address zero is covered by ROM which hasn't yet been
151 * copied into physical memory.
153 initial_msp
= ldl_p(rom
);
154 initial_pc
= ldl_p(rom
+ 4);
156 /* Address zero not covered by a ROM blob, or the ROM blob
157 * is in non-modifiable memory and this is a second reset after
158 * it got copied into memory. In the latter case, rom_ptr
159 * will return a NULL pointer and we should use ldl_phys instead.
161 initial_msp
= ldl_phys(s
->as
, 0);
162 initial_pc
= ldl_phys(s
->as
, 4);
165 env
->regs
[13] = initial_msp
& 0xFFFFFFFC;
166 env
->regs
[15] = initial_pc
& ~1;
167 env
->thumb
= initial_pc
& 1;
170 /* AArch32 has a hard highvec setting of 0xFFFF0000. If we are currently
171 * executing as AArch32 then check if highvecs are enabled and
172 * adjust the PC accordingly.
174 if (A32_BANKED_CURRENT_REG_GET(env
, sctlr
) & SCTLR_V
) {
175 env
->regs
[15] = 0xFFFF0000;
178 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 0;
180 set_flush_to_zero(1, &env
->vfp
.standard_fp_status
);
181 set_flush_inputs_to_zero(1, &env
->vfp
.standard_fp_status
);
182 set_default_nan_mode(1, &env
->vfp
.standard_fp_status
);
183 set_float_detect_tininess(float_tininess_before_rounding
,
184 &env
->vfp
.fp_status
);
185 set_float_detect_tininess(float_tininess_before_rounding
,
186 &env
->vfp
.standard_fp_status
);
189 #ifndef CONFIG_USER_ONLY
191 kvm_arm_reset_vcpu(cpu
);
195 hw_breakpoint_update_all(cpu
);
196 hw_watchpoint_update_all(cpu
);
199 bool arm_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
201 CPUClass
*cc
= CPU_GET_CLASS(cs
);
204 if (interrupt_request
& CPU_INTERRUPT_FIQ
205 && arm_excp_unmasked(cs
, EXCP_FIQ
)) {
206 cs
->exception_index
= EXCP_FIQ
;
207 cc
->do_interrupt(cs
);
210 if (interrupt_request
& CPU_INTERRUPT_HARD
211 && arm_excp_unmasked(cs
, EXCP_IRQ
)) {
212 cs
->exception_index
= EXCP_IRQ
;
213 cc
->do_interrupt(cs
);
216 if (interrupt_request
& CPU_INTERRUPT_VIRQ
217 && arm_excp_unmasked(cs
, EXCP_VIRQ
)) {
218 cs
->exception_index
= EXCP_VIRQ
;
219 cc
->do_interrupt(cs
);
222 if (interrupt_request
& CPU_INTERRUPT_VFIQ
223 && arm_excp_unmasked(cs
, EXCP_VFIQ
)) {
224 cs
->exception_index
= EXCP_VFIQ
;
225 cc
->do_interrupt(cs
);
232 #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
233 static bool arm_v7m_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
235 CPUClass
*cc
= CPU_GET_CLASS(cs
);
236 ARMCPU
*cpu
= ARM_CPU(cs
);
237 CPUARMState
*env
= &cpu
->env
;
241 if (interrupt_request
& CPU_INTERRUPT_FIQ
242 && !(env
->daif
& PSTATE_F
)) {
243 cs
->exception_index
= EXCP_FIQ
;
244 cc
->do_interrupt(cs
);
247 /* ARMv7-M interrupt return works by loading a magic value
248 * into the PC. On real hardware the load causes the
249 * return to occur. The qemu implementation performs the
250 * jump normally, then does the exception return when the
251 * CPU tries to execute code at the magic address.
252 * This will cause the magic PC value to be pushed to
253 * the stack if an interrupt occurred at the wrong time.
254 * We avoid this by disabling interrupts when
255 * pc contains a magic address.
257 if (interrupt_request
& CPU_INTERRUPT_HARD
258 && !(env
->daif
& PSTATE_I
)
259 && (env
->regs
[15] < 0xfffffff0)) {
260 cs
->exception_index
= EXCP_IRQ
;
261 cc
->do_interrupt(cs
);
268 #ifndef CONFIG_USER_ONLY
269 static void arm_cpu_set_irq(void *opaque
, int irq
, int level
)
271 ARMCPU
*cpu
= opaque
;
272 CPUARMState
*env
= &cpu
->env
;
273 CPUState
*cs
= CPU(cpu
);
274 static const int mask
[] = {
275 [ARM_CPU_IRQ
] = CPU_INTERRUPT_HARD
,
276 [ARM_CPU_FIQ
] = CPU_INTERRUPT_FIQ
,
277 [ARM_CPU_VIRQ
] = CPU_INTERRUPT_VIRQ
,
278 [ARM_CPU_VFIQ
] = CPU_INTERRUPT_VFIQ
284 if (!arm_feature(env
, ARM_FEATURE_EL2
)) {
285 hw_error("%s: Virtual interrupt line %d with no EL2 support\n",
292 cpu_interrupt(cs
, mask
[irq
]);
294 cpu_reset_interrupt(cs
, mask
[irq
]);
298 hw_error("arm_cpu_set_irq: Bad interrupt line %d\n", irq
);
302 static void arm_cpu_kvm_set_irq(void *opaque
, int irq
, int level
)
305 ARMCPU
*cpu
= opaque
;
306 CPUState
*cs
= CPU(cpu
);
307 int kvm_irq
= KVM_ARM_IRQ_TYPE_CPU
<< KVM_ARM_IRQ_TYPE_SHIFT
;
311 kvm_irq
|= KVM_ARM_IRQ_CPU_IRQ
;
314 kvm_irq
|= KVM_ARM_IRQ_CPU_FIQ
;
317 hw_error("arm_cpu_kvm_set_irq: Bad interrupt line %d\n", irq
);
319 kvm_irq
|= cs
->cpu_index
<< KVM_ARM_IRQ_VCPU_SHIFT
;
320 kvm_set_irq(kvm_state
, kvm_irq
, level
? 1 : 0);
325 static inline void set_feature(CPUARMState
*env
, int feature
)
327 env
->features
|= 1ULL << feature
;
330 static void arm_cpu_initfn(Object
*obj
)
332 CPUState
*cs
= CPU(obj
);
333 ARMCPU
*cpu
= ARM_CPU(obj
);
336 cs
->env_ptr
= &cpu
->env
;
337 cpu_exec_init(&cpu
->env
);
338 cpu
->cp_regs
= g_hash_table_new_full(g_int_hash
, g_int_equal
,
341 #ifndef CONFIG_USER_ONLY
342 /* Our inbound IRQ and FIQ lines */
344 /* VIRQ and VFIQ are unused with KVM but we add them to maintain
345 * the same interface as non-KVM CPUs.
347 qdev_init_gpio_in(DEVICE(cpu
), arm_cpu_kvm_set_irq
, 4);
349 qdev_init_gpio_in(DEVICE(cpu
), arm_cpu_set_irq
, 4);
352 cpu
->gt_timer
[GTIMER_PHYS
] = timer_new(QEMU_CLOCK_VIRTUAL
, GTIMER_SCALE
,
353 arm_gt_ptimer_cb
, cpu
);
354 cpu
->gt_timer
[GTIMER_VIRT
] = timer_new(QEMU_CLOCK_VIRTUAL
, GTIMER_SCALE
,
355 arm_gt_vtimer_cb
, cpu
);
356 qdev_init_gpio_out(DEVICE(cpu
), cpu
->gt_timer_outputs
,
357 ARRAY_SIZE(cpu
->gt_timer_outputs
));
360 /* DTB consumers generally don't in fact care what the 'compatible'
361 * string is, so always provide some string and trust that a hypothetical
362 * picky DTB consumer will also provide a helpful error message.
364 cpu
->dtb_compatible
= "qemu,unknown";
365 cpu
->psci_version
= 1; /* By default assume PSCI v0.1 */
366 cpu
->kvm_target
= QEMU_KVM_ARM_TARGET_NONE
;
369 cpu
->psci_version
= 2; /* TCG implements PSCI 0.2 */
372 arm_translate_init();
377 static Property arm_cpu_reset_cbar_property
=
378 DEFINE_PROP_UINT64("reset-cbar", ARMCPU
, reset_cbar
, 0);
380 static Property arm_cpu_reset_hivecs_property
=
381 DEFINE_PROP_BOOL("reset-hivecs", ARMCPU
, reset_hivecs
, false);
383 static Property arm_cpu_rvbar_property
=
384 DEFINE_PROP_UINT64("rvbar", ARMCPU
, rvbar
, 0);
386 static void arm_cpu_post_init(Object
*obj
)
388 ARMCPU
*cpu
= ARM_CPU(obj
);
390 if (arm_feature(&cpu
->env
, ARM_FEATURE_CBAR
) ||
391 arm_feature(&cpu
->env
, ARM_FEATURE_CBAR_RO
)) {
392 qdev_property_add_static(DEVICE(obj
), &arm_cpu_reset_cbar_property
,
396 if (!arm_feature(&cpu
->env
, ARM_FEATURE_M
)) {
397 qdev_property_add_static(DEVICE(obj
), &arm_cpu_reset_hivecs_property
,
401 if (arm_feature(&cpu
->env
, ARM_FEATURE_AARCH64
)) {
402 qdev_property_add_static(DEVICE(obj
), &arm_cpu_rvbar_property
,
407 static void arm_cpu_finalizefn(Object
*obj
)
409 ARMCPU
*cpu
= ARM_CPU(obj
);
410 g_hash_table_destroy(cpu
->cp_regs
);
413 static void arm_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
415 CPUState
*cs
= CPU(dev
);
416 ARMCPU
*cpu
= ARM_CPU(dev
);
417 ARMCPUClass
*acc
= ARM_CPU_GET_CLASS(dev
);
418 CPUARMState
*env
= &cpu
->env
;
420 /* Some features automatically imply others: */
421 if (arm_feature(env
, ARM_FEATURE_V8
)) {
422 set_feature(env
, ARM_FEATURE_V7
);
423 set_feature(env
, ARM_FEATURE_ARM_DIV
);
424 set_feature(env
, ARM_FEATURE_LPAE
);
426 if (arm_feature(env
, ARM_FEATURE_V7
)) {
427 set_feature(env
, ARM_FEATURE_VAPA
);
428 set_feature(env
, ARM_FEATURE_THUMB2
);
429 set_feature(env
, ARM_FEATURE_MPIDR
);
430 if (!arm_feature(env
, ARM_FEATURE_M
)) {
431 set_feature(env
, ARM_FEATURE_V6K
);
433 set_feature(env
, ARM_FEATURE_V6
);
436 if (arm_feature(env
, ARM_FEATURE_V6K
)) {
437 set_feature(env
, ARM_FEATURE_V6
);
438 set_feature(env
, ARM_FEATURE_MVFR
);
440 if (arm_feature(env
, ARM_FEATURE_V6
)) {
441 set_feature(env
, ARM_FEATURE_V5
);
442 if (!arm_feature(env
, ARM_FEATURE_M
)) {
443 set_feature(env
, ARM_FEATURE_AUXCR
);
446 if (arm_feature(env
, ARM_FEATURE_V5
)) {
447 set_feature(env
, ARM_FEATURE_V4T
);
449 if (arm_feature(env
, ARM_FEATURE_M
)) {
450 set_feature(env
, ARM_FEATURE_THUMB_DIV
);
452 if (arm_feature(env
, ARM_FEATURE_ARM_DIV
)) {
453 set_feature(env
, ARM_FEATURE_THUMB_DIV
);
455 if (arm_feature(env
, ARM_FEATURE_VFP4
)) {
456 set_feature(env
, ARM_FEATURE_VFP3
);
457 set_feature(env
, ARM_FEATURE_VFP_FP16
);
459 if (arm_feature(env
, ARM_FEATURE_VFP3
)) {
460 set_feature(env
, ARM_FEATURE_VFP
);
462 if (arm_feature(env
, ARM_FEATURE_LPAE
)) {
463 set_feature(env
, ARM_FEATURE_V7MP
);
464 set_feature(env
, ARM_FEATURE_PXN
);
466 if (arm_feature(env
, ARM_FEATURE_CBAR_RO
)) {
467 set_feature(env
, ARM_FEATURE_CBAR
);
470 if (cpu
->reset_hivecs
) {
471 cpu
->reset_sctlr
|= (1 << 13);
474 register_cp_regs_for_features(cpu
);
475 arm_cpu_register_gdb_regs_for_features(cpu
);
477 init_cpreg_list(cpu
);
482 acc
->parent_realize(dev
, errp
);
485 static ObjectClass
*arm_cpu_class_by_name(const char *cpu_model
)
494 typename
= g_strdup_printf("%s-" TYPE_ARM_CPU
, cpu_model
);
495 oc
= object_class_by_name(typename
);
497 if (!oc
|| !object_class_dynamic_cast(oc
, TYPE_ARM_CPU
) ||
498 object_class_is_abstract(oc
)) {
504 /* CPU models. These are not needed for the AArch64 linux-user build. */
505 #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
507 static void arm926_initfn(Object
*obj
)
509 ARMCPU
*cpu
= ARM_CPU(obj
);
511 cpu
->dtb_compatible
= "arm,arm926";
512 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
513 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
514 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
515 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_TEST_CLEAN
);
516 cpu
->midr
= 0x41069265;
517 cpu
->reset_fpsid
= 0x41011090;
518 cpu
->ctr
= 0x1dd20d2;
519 cpu
->reset_sctlr
= 0x00090078;
522 static void arm946_initfn(Object
*obj
)
524 ARMCPU
*cpu
= ARM_CPU(obj
);
526 cpu
->dtb_compatible
= "arm,arm946";
527 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
528 set_feature(&cpu
->env
, ARM_FEATURE_MPU
);
529 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
530 cpu
->midr
= 0x41059461;
531 cpu
->ctr
= 0x0f004006;
532 cpu
->reset_sctlr
= 0x00000078;
535 static void arm1026_initfn(Object
*obj
)
537 ARMCPU
*cpu
= ARM_CPU(obj
);
539 cpu
->dtb_compatible
= "arm,arm1026";
540 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
541 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
542 set_feature(&cpu
->env
, ARM_FEATURE_AUXCR
);
543 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
544 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_TEST_CLEAN
);
545 cpu
->midr
= 0x4106a262;
546 cpu
->reset_fpsid
= 0x410110a0;
547 cpu
->ctr
= 0x1dd20d2;
548 cpu
->reset_sctlr
= 0x00090078;
549 cpu
->reset_auxcr
= 1;
551 /* The 1026 had an IFAR at c6,c0,0,1 rather than the ARMv6 c6,c0,0,2 */
552 ARMCPRegInfo ifar
= {
553 .name
= "IFAR", .cp
= 15, .crn
= 6, .crm
= 0, .opc1
= 0, .opc2
= 1,
555 .fieldoffset
= offsetof(CPUARMState
, cp15
.ifar_ns
),
558 define_one_arm_cp_reg(cpu
, &ifar
);
562 static void arm1136_r2_initfn(Object
*obj
)
564 ARMCPU
*cpu
= ARM_CPU(obj
);
565 /* What qemu calls "arm1136_r2" is actually the 1136 r0p2, ie an
566 * older core than plain "arm1136". In particular this does not
567 * have the v6K features.
568 * These ID register values are correct for 1136 but may be wrong
569 * for 1136_r2 (in particular r0p2 does not actually implement most
570 * of the ID registers).
573 cpu
->dtb_compatible
= "arm,arm1136";
574 set_feature(&cpu
->env
, ARM_FEATURE_V6
);
575 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
576 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
577 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
578 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
579 cpu
->midr
= 0x4107b362;
580 cpu
->reset_fpsid
= 0x410120b4;
581 cpu
->mvfr0
= 0x11111111;
582 cpu
->mvfr1
= 0x00000000;
583 cpu
->ctr
= 0x1dd20d2;
584 cpu
->reset_sctlr
= 0x00050078;
585 cpu
->id_pfr0
= 0x111;
589 cpu
->id_mmfr0
= 0x01130003;
590 cpu
->id_mmfr1
= 0x10030302;
591 cpu
->id_mmfr2
= 0x01222110;
592 cpu
->id_isar0
= 0x00140011;
593 cpu
->id_isar1
= 0x12002111;
594 cpu
->id_isar2
= 0x11231111;
595 cpu
->id_isar3
= 0x01102131;
596 cpu
->id_isar4
= 0x141;
597 cpu
->reset_auxcr
= 7;
600 static void arm1136_initfn(Object
*obj
)
602 ARMCPU
*cpu
= ARM_CPU(obj
);
604 cpu
->dtb_compatible
= "arm,arm1136";
605 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
606 set_feature(&cpu
->env
, ARM_FEATURE_V6
);
607 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
608 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
609 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
610 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
611 cpu
->midr
= 0x4117b363;
612 cpu
->reset_fpsid
= 0x410120b4;
613 cpu
->mvfr0
= 0x11111111;
614 cpu
->mvfr1
= 0x00000000;
615 cpu
->ctr
= 0x1dd20d2;
616 cpu
->reset_sctlr
= 0x00050078;
617 cpu
->id_pfr0
= 0x111;
621 cpu
->id_mmfr0
= 0x01130003;
622 cpu
->id_mmfr1
= 0x10030302;
623 cpu
->id_mmfr2
= 0x01222110;
624 cpu
->id_isar0
= 0x00140011;
625 cpu
->id_isar1
= 0x12002111;
626 cpu
->id_isar2
= 0x11231111;
627 cpu
->id_isar3
= 0x01102131;
628 cpu
->id_isar4
= 0x141;
629 cpu
->reset_auxcr
= 7;
632 static void arm1176_initfn(Object
*obj
)
634 ARMCPU
*cpu
= ARM_CPU(obj
);
636 cpu
->dtb_compatible
= "arm,arm1176";
637 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
638 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
639 set_feature(&cpu
->env
, ARM_FEATURE_VAPA
);
640 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
641 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
642 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
643 cpu
->midr
= 0x410fb767;
644 cpu
->reset_fpsid
= 0x410120b5;
645 cpu
->mvfr0
= 0x11111111;
646 cpu
->mvfr1
= 0x00000000;
647 cpu
->ctr
= 0x1dd20d2;
648 cpu
->reset_sctlr
= 0x00050078;
649 cpu
->id_pfr0
= 0x111;
653 cpu
->id_mmfr0
= 0x01130003;
654 cpu
->id_mmfr1
= 0x10030302;
655 cpu
->id_mmfr2
= 0x01222100;
656 cpu
->id_isar0
= 0x0140011;
657 cpu
->id_isar1
= 0x12002111;
658 cpu
->id_isar2
= 0x11231121;
659 cpu
->id_isar3
= 0x01102131;
660 cpu
->id_isar4
= 0x01141;
661 cpu
->reset_auxcr
= 7;
664 static void arm11mpcore_initfn(Object
*obj
)
666 ARMCPU
*cpu
= ARM_CPU(obj
);
668 cpu
->dtb_compatible
= "arm,arm11mpcore";
669 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
670 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
671 set_feature(&cpu
->env
, ARM_FEATURE_VAPA
);
672 set_feature(&cpu
->env
, ARM_FEATURE_MPIDR
);
673 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
674 cpu
->midr
= 0x410fb022;
675 cpu
->reset_fpsid
= 0x410120b4;
676 cpu
->mvfr0
= 0x11111111;
677 cpu
->mvfr1
= 0x00000000;
678 cpu
->ctr
= 0x1d192992; /* 32K icache 32K dcache */
679 cpu
->id_pfr0
= 0x111;
683 cpu
->id_mmfr0
= 0x01100103;
684 cpu
->id_mmfr1
= 0x10020302;
685 cpu
->id_mmfr2
= 0x01222000;
686 cpu
->id_isar0
= 0x00100011;
687 cpu
->id_isar1
= 0x12002111;
688 cpu
->id_isar2
= 0x11221011;
689 cpu
->id_isar3
= 0x01102131;
690 cpu
->id_isar4
= 0x141;
691 cpu
->reset_auxcr
= 1;
694 static void cortex_m3_initfn(Object
*obj
)
696 ARMCPU
*cpu
= ARM_CPU(obj
);
697 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
698 set_feature(&cpu
->env
, ARM_FEATURE_M
);
699 cpu
->midr
= 0x410fc231;
702 static void arm_v7m_class_init(ObjectClass
*oc
, void *data
)
704 CPUClass
*cc
= CPU_CLASS(oc
);
706 #ifndef CONFIG_USER_ONLY
707 cc
->do_interrupt
= arm_v7m_cpu_do_interrupt
;
710 cc
->cpu_exec_interrupt
= arm_v7m_cpu_exec_interrupt
;
713 static const ARMCPRegInfo cortexa8_cp_reginfo
[] = {
714 { .name
= "L2LOCKDOWN", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 0,
715 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
716 { .name
= "L2AUXCR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 2,
717 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
721 static void cortex_a8_initfn(Object
*obj
)
723 ARMCPU
*cpu
= ARM_CPU(obj
);
725 cpu
->dtb_compatible
= "arm,cortex-a8";
726 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
727 set_feature(&cpu
->env
, ARM_FEATURE_VFP3
);
728 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
729 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
730 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
731 cpu
->midr
= 0x410fc080;
732 cpu
->reset_fpsid
= 0x410330c0;
733 cpu
->mvfr0
= 0x11110222;
734 cpu
->mvfr1
= 0x00011100;
735 cpu
->ctr
= 0x82048004;
736 cpu
->reset_sctlr
= 0x00c50078;
737 cpu
->id_pfr0
= 0x1031;
739 cpu
->id_dfr0
= 0x400;
741 cpu
->id_mmfr0
= 0x31100003;
742 cpu
->id_mmfr1
= 0x20000000;
743 cpu
->id_mmfr2
= 0x01202000;
744 cpu
->id_mmfr3
= 0x11;
745 cpu
->id_isar0
= 0x00101111;
746 cpu
->id_isar1
= 0x12112111;
747 cpu
->id_isar2
= 0x21232031;
748 cpu
->id_isar3
= 0x11112131;
749 cpu
->id_isar4
= 0x00111142;
750 cpu
->dbgdidr
= 0x15141000;
751 cpu
->clidr
= (1 << 27) | (2 << 24) | 3;
752 cpu
->ccsidr
[0] = 0xe007e01a; /* 16k L1 dcache. */
753 cpu
->ccsidr
[1] = 0x2007e01a; /* 16k L1 icache. */
754 cpu
->ccsidr
[2] = 0xf0000000; /* No L2 icache. */
755 cpu
->reset_auxcr
= 2;
756 define_arm_cp_regs(cpu
, cortexa8_cp_reginfo
);
759 static const ARMCPRegInfo cortexa9_cp_reginfo
[] = {
760 /* power_control should be set to maximum latency. Again,
761 * default to 0 and set by private hook
763 { .name
= "A9_PWRCTL", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 0,
764 .access
= PL1_RW
, .resetvalue
= 0,
765 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_power_control
) },
766 { .name
= "A9_DIAG", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 1,
767 .access
= PL1_RW
, .resetvalue
= 0,
768 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_diagnostic
) },
769 { .name
= "A9_PWRDIAG", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 2,
770 .access
= PL1_RW
, .resetvalue
= 0,
771 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_power_diagnostic
) },
772 { .name
= "NEONBUSY", .cp
= 15, .crn
= 15, .crm
= 1, .opc1
= 0, .opc2
= 0,
773 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
774 /* TLB lockdown control */
775 { .name
= "TLB_LOCKR", .cp
= 15, .crn
= 15, .crm
= 4, .opc1
= 5, .opc2
= 2,
776 .access
= PL1_W
, .resetvalue
= 0, .type
= ARM_CP_NOP
},
777 { .name
= "TLB_LOCKW", .cp
= 15, .crn
= 15, .crm
= 4, .opc1
= 5, .opc2
= 4,
778 .access
= PL1_W
, .resetvalue
= 0, .type
= ARM_CP_NOP
},
779 { .name
= "TLB_VA", .cp
= 15, .crn
= 15, .crm
= 5, .opc1
= 5, .opc2
= 2,
780 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
781 { .name
= "TLB_PA", .cp
= 15, .crn
= 15, .crm
= 6, .opc1
= 5, .opc2
= 2,
782 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
783 { .name
= "TLB_ATTR", .cp
= 15, .crn
= 15, .crm
= 7, .opc1
= 5, .opc2
= 2,
784 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
788 static void cortex_a9_initfn(Object
*obj
)
790 ARMCPU
*cpu
= ARM_CPU(obj
);
792 cpu
->dtb_compatible
= "arm,cortex-a9";
793 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
794 set_feature(&cpu
->env
, ARM_FEATURE_VFP3
);
795 set_feature(&cpu
->env
, ARM_FEATURE_VFP_FP16
);
796 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
797 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
798 /* Note that A9 supports the MP extensions even for
799 * A9UP and single-core A9MP (which are both different
800 * and valid configurations; we don't model A9UP).
802 set_feature(&cpu
->env
, ARM_FEATURE_V7MP
);
803 set_feature(&cpu
->env
, ARM_FEATURE_CBAR
);
804 cpu
->midr
= 0x410fc090;
805 cpu
->reset_fpsid
= 0x41033090;
806 cpu
->mvfr0
= 0x11110222;
807 cpu
->mvfr1
= 0x01111111;
808 cpu
->ctr
= 0x80038003;
809 cpu
->reset_sctlr
= 0x00c50078;
810 cpu
->id_pfr0
= 0x1031;
812 cpu
->id_dfr0
= 0x000;
814 cpu
->id_mmfr0
= 0x00100103;
815 cpu
->id_mmfr1
= 0x20000000;
816 cpu
->id_mmfr2
= 0x01230000;
817 cpu
->id_mmfr3
= 0x00002111;
818 cpu
->id_isar0
= 0x00101111;
819 cpu
->id_isar1
= 0x13112111;
820 cpu
->id_isar2
= 0x21232041;
821 cpu
->id_isar3
= 0x11112131;
822 cpu
->id_isar4
= 0x00111142;
823 cpu
->dbgdidr
= 0x35141000;
824 cpu
->clidr
= (1 << 27) | (1 << 24) | 3;
825 cpu
->ccsidr
[0] = 0xe00fe019; /* 16k L1 dcache. */
826 cpu
->ccsidr
[1] = 0x200fe019; /* 16k L1 icache. */
827 define_arm_cp_regs(cpu
, cortexa9_cp_reginfo
);
830 #ifndef CONFIG_USER_ONLY
831 static uint64_t a15_l2ctlr_read(CPUARMState
*env
, const ARMCPRegInfo
*ri
)
833 /* Linux wants the number of processors from here.
834 * Might as well set the interrupt-controller bit too.
836 return ((smp_cpus
- 1) << 24) | (1 << 23);
840 static const ARMCPRegInfo cortexa15_cp_reginfo
[] = {
841 #ifndef CONFIG_USER_ONLY
842 { .name
= "L2CTLR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 2,
843 .access
= PL1_RW
, .resetvalue
= 0, .readfn
= a15_l2ctlr_read
,
844 .writefn
= arm_cp_write_ignore
, },
846 { .name
= "L2ECTLR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 3,
847 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
851 static void cortex_a15_initfn(Object
*obj
)
853 ARMCPU
*cpu
= ARM_CPU(obj
);
855 cpu
->dtb_compatible
= "arm,cortex-a15";
856 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
857 set_feature(&cpu
->env
, ARM_FEATURE_VFP4
);
858 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
859 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
860 set_feature(&cpu
->env
, ARM_FEATURE_ARM_DIV
);
861 set_feature(&cpu
->env
, ARM_FEATURE_GENERIC_TIMER
);
862 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
863 set_feature(&cpu
->env
, ARM_FEATURE_CBAR_RO
);
864 set_feature(&cpu
->env
, ARM_FEATURE_LPAE
);
865 cpu
->kvm_target
= QEMU_KVM_ARM_TARGET_CORTEX_A15
;
866 cpu
->midr
= 0x412fc0f1;
867 cpu
->reset_fpsid
= 0x410430f0;
868 cpu
->mvfr0
= 0x10110222;
869 cpu
->mvfr1
= 0x11111111;
870 cpu
->ctr
= 0x8444c004;
871 cpu
->reset_sctlr
= 0x00c50078;
872 cpu
->id_pfr0
= 0x00001131;
873 cpu
->id_pfr1
= 0x00011011;
874 cpu
->id_dfr0
= 0x02010555;
875 cpu
->id_afr0
= 0x00000000;
876 cpu
->id_mmfr0
= 0x10201105;
877 cpu
->id_mmfr1
= 0x20000000;
878 cpu
->id_mmfr2
= 0x01240000;
879 cpu
->id_mmfr3
= 0x02102211;
880 cpu
->id_isar0
= 0x02101110;
881 cpu
->id_isar1
= 0x13112111;
882 cpu
->id_isar2
= 0x21232041;
883 cpu
->id_isar3
= 0x11112131;
884 cpu
->id_isar4
= 0x10011142;
885 cpu
->dbgdidr
= 0x3515f021;
886 cpu
->clidr
= 0x0a200023;
887 cpu
->ccsidr
[0] = 0x701fe00a; /* 32K L1 dcache */
888 cpu
->ccsidr
[1] = 0x201fe00a; /* 32K L1 icache */
889 cpu
->ccsidr
[2] = 0x711fe07a; /* 4096K L2 unified cache */
890 define_arm_cp_regs(cpu
, cortexa15_cp_reginfo
);
893 static void ti925t_initfn(Object
*obj
)
895 ARMCPU
*cpu
= ARM_CPU(obj
);
896 set_feature(&cpu
->env
, ARM_FEATURE_V4T
);
897 set_feature(&cpu
->env
, ARM_FEATURE_OMAPCP
);
898 cpu
->midr
= ARM_CPUID_TI925T
;
899 cpu
->ctr
= 0x5109149;
900 cpu
->reset_sctlr
= 0x00000070;
903 static void sa1100_initfn(Object
*obj
)
905 ARMCPU
*cpu
= ARM_CPU(obj
);
907 cpu
->dtb_compatible
= "intel,sa1100";
908 set_feature(&cpu
->env
, ARM_FEATURE_STRONGARM
);
909 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
910 cpu
->midr
= 0x4401A11B;
911 cpu
->reset_sctlr
= 0x00000070;
914 static void sa1110_initfn(Object
*obj
)
916 ARMCPU
*cpu
= ARM_CPU(obj
);
917 set_feature(&cpu
->env
, ARM_FEATURE_STRONGARM
);
918 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
919 cpu
->midr
= 0x6901B119;
920 cpu
->reset_sctlr
= 0x00000070;
923 static void pxa250_initfn(Object
*obj
)
925 ARMCPU
*cpu
= ARM_CPU(obj
);
927 cpu
->dtb_compatible
= "marvell,xscale";
928 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
929 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
930 cpu
->midr
= 0x69052100;
931 cpu
->ctr
= 0xd172172;
932 cpu
->reset_sctlr
= 0x00000078;
935 static void pxa255_initfn(Object
*obj
)
937 ARMCPU
*cpu
= ARM_CPU(obj
);
939 cpu
->dtb_compatible
= "marvell,xscale";
940 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
941 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
942 cpu
->midr
= 0x69052d00;
943 cpu
->ctr
= 0xd172172;
944 cpu
->reset_sctlr
= 0x00000078;
947 static void pxa260_initfn(Object
*obj
)
949 ARMCPU
*cpu
= ARM_CPU(obj
);
951 cpu
->dtb_compatible
= "marvell,xscale";
952 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
953 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
954 cpu
->midr
= 0x69052903;
955 cpu
->ctr
= 0xd172172;
956 cpu
->reset_sctlr
= 0x00000078;
959 static void pxa261_initfn(Object
*obj
)
961 ARMCPU
*cpu
= ARM_CPU(obj
);
963 cpu
->dtb_compatible
= "marvell,xscale";
964 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
965 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
966 cpu
->midr
= 0x69052d05;
967 cpu
->ctr
= 0xd172172;
968 cpu
->reset_sctlr
= 0x00000078;
971 static void pxa262_initfn(Object
*obj
)
973 ARMCPU
*cpu
= ARM_CPU(obj
);
975 cpu
->dtb_compatible
= "marvell,xscale";
976 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
977 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
978 cpu
->midr
= 0x69052d06;
979 cpu
->ctr
= 0xd172172;
980 cpu
->reset_sctlr
= 0x00000078;
983 static void pxa270a0_initfn(Object
*obj
)
985 ARMCPU
*cpu
= ARM_CPU(obj
);
987 cpu
->dtb_compatible
= "marvell,xscale";
988 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
989 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
990 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
991 cpu
->midr
= 0x69054110;
992 cpu
->ctr
= 0xd172172;
993 cpu
->reset_sctlr
= 0x00000078;
996 static void pxa270a1_initfn(Object
*obj
)
998 ARMCPU
*cpu
= ARM_CPU(obj
);
1000 cpu
->dtb_compatible
= "marvell,xscale";
1001 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
1002 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
1003 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
1004 cpu
->midr
= 0x69054111;
1005 cpu
->ctr
= 0xd172172;
1006 cpu
->reset_sctlr
= 0x00000078;
1009 static void pxa270b0_initfn(Object
*obj
)
1011 ARMCPU
*cpu
= ARM_CPU(obj
);
1013 cpu
->dtb_compatible
= "marvell,xscale";
1014 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
1015 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
1016 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
1017 cpu
->midr
= 0x69054112;
1018 cpu
->ctr
= 0xd172172;
1019 cpu
->reset_sctlr
= 0x00000078;
1022 static void pxa270b1_initfn(Object
*obj
)
1024 ARMCPU
*cpu
= ARM_CPU(obj
);
1026 cpu
->dtb_compatible
= "marvell,xscale";
1027 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
1028 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
1029 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
1030 cpu
->midr
= 0x69054113;
1031 cpu
->ctr
= 0xd172172;
1032 cpu
->reset_sctlr
= 0x00000078;
1035 static void pxa270c0_initfn(Object
*obj
)
1037 ARMCPU
*cpu
= ARM_CPU(obj
);
1039 cpu
->dtb_compatible
= "marvell,xscale";
1040 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
1041 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
1042 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
1043 cpu
->midr
= 0x69054114;
1044 cpu
->ctr
= 0xd172172;
1045 cpu
->reset_sctlr
= 0x00000078;
1048 static void pxa270c5_initfn(Object
*obj
)
1050 ARMCPU
*cpu
= ARM_CPU(obj
);
1052 cpu
->dtb_compatible
= "marvell,xscale";
1053 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
1054 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
1055 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
1056 cpu
->midr
= 0x69054117;
1057 cpu
->ctr
= 0xd172172;
1058 cpu
->reset_sctlr
= 0x00000078;
1061 #ifdef CONFIG_USER_ONLY
1062 static void arm_any_initfn(Object
*obj
)
1064 ARMCPU
*cpu
= ARM_CPU(obj
);
1065 set_feature(&cpu
->env
, ARM_FEATURE_V8
);
1066 set_feature(&cpu
->env
, ARM_FEATURE_VFP4
);
1067 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
1068 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
1069 set_feature(&cpu
->env
, ARM_FEATURE_V8_AES
);
1070 set_feature(&cpu
->env
, ARM_FEATURE_V8_SHA1
);
1071 set_feature(&cpu
->env
, ARM_FEATURE_V8_SHA256
);
1072 set_feature(&cpu
->env
, ARM_FEATURE_V8_PMULL
);
1073 set_feature(&cpu
->env
, ARM_FEATURE_CRC
);
1074 cpu
->midr
= 0xffffffff;
1078 #endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
1080 typedef struct ARMCPUInfo
{
1082 void (*initfn
)(Object
*obj
);
1083 void (*class_init
)(ObjectClass
*oc
, void *data
);
1086 static const ARMCPUInfo arm_cpus
[] = {
1087 #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
1088 { .name
= "arm926", .initfn
= arm926_initfn
},
1089 { .name
= "arm946", .initfn
= arm946_initfn
},
1090 { .name
= "arm1026", .initfn
= arm1026_initfn
},
1091 /* What QEMU calls "arm1136-r2" is actually the 1136 r0p2, i.e. an
1092 * older core than plain "arm1136". In particular this does not
1093 * have the v6K features.
1095 { .name
= "arm1136-r2", .initfn
= arm1136_r2_initfn
},
1096 { .name
= "arm1136", .initfn
= arm1136_initfn
},
1097 { .name
= "arm1176", .initfn
= arm1176_initfn
},
1098 { .name
= "arm11mpcore", .initfn
= arm11mpcore_initfn
},
1099 { .name
= "cortex-m3", .initfn
= cortex_m3_initfn
,
1100 .class_init
= arm_v7m_class_init
},
1101 { .name
= "cortex-a8", .initfn
= cortex_a8_initfn
},
1102 { .name
= "cortex-a9", .initfn
= cortex_a9_initfn
},
1103 { .name
= "cortex-a15", .initfn
= cortex_a15_initfn
},
1104 { .name
= "ti925t", .initfn
= ti925t_initfn
},
1105 { .name
= "sa1100", .initfn
= sa1100_initfn
},
1106 { .name
= "sa1110", .initfn
= sa1110_initfn
},
1107 { .name
= "pxa250", .initfn
= pxa250_initfn
},
1108 { .name
= "pxa255", .initfn
= pxa255_initfn
},
1109 { .name
= "pxa260", .initfn
= pxa260_initfn
},
1110 { .name
= "pxa261", .initfn
= pxa261_initfn
},
1111 { .name
= "pxa262", .initfn
= pxa262_initfn
},
1112 /* "pxa270" is an alias for "pxa270-a0" */
1113 { .name
= "pxa270", .initfn
= pxa270a0_initfn
},
1114 { .name
= "pxa270-a0", .initfn
= pxa270a0_initfn
},
1115 { .name
= "pxa270-a1", .initfn
= pxa270a1_initfn
},
1116 { .name
= "pxa270-b0", .initfn
= pxa270b0_initfn
},
1117 { .name
= "pxa270-b1", .initfn
= pxa270b1_initfn
},
1118 { .name
= "pxa270-c0", .initfn
= pxa270c0_initfn
},
1119 { .name
= "pxa270-c5", .initfn
= pxa270c5_initfn
},
1120 #ifdef CONFIG_USER_ONLY
1121 { .name
= "any", .initfn
= arm_any_initfn
},
1127 static Property arm_cpu_properties
[] = {
1128 DEFINE_PROP_BOOL("start-powered-off", ARMCPU
, start_powered_off
, false),
1129 DEFINE_PROP_UINT32("psci-conduit", ARMCPU
, psci_conduit
, 0),
1130 DEFINE_PROP_UINT32("midr", ARMCPU
, midr
, 0),
1131 DEFINE_PROP_END_OF_LIST()
1134 static void arm_cpu_class_init(ObjectClass
*oc
, void *data
)
1136 ARMCPUClass
*acc
= ARM_CPU_CLASS(oc
);
1137 CPUClass
*cc
= CPU_CLASS(acc
);
1138 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1140 acc
->parent_realize
= dc
->realize
;
1141 dc
->realize
= arm_cpu_realizefn
;
1142 dc
->props
= arm_cpu_properties
;
1144 acc
->parent_reset
= cc
->reset
;
1145 cc
->reset
= arm_cpu_reset
;
1147 cc
->class_by_name
= arm_cpu_class_by_name
;
1148 cc
->has_work
= arm_cpu_has_work
;
1149 cc
->cpu_exec_interrupt
= arm_cpu_exec_interrupt
;
1150 cc
->dump_state
= arm_cpu_dump_state
;
1151 cc
->set_pc
= arm_cpu_set_pc
;
1152 cc
->gdb_read_register
= arm_cpu_gdb_read_register
;
1153 cc
->gdb_write_register
= arm_cpu_gdb_write_register
;
1154 #ifdef CONFIG_USER_ONLY
1155 cc
->handle_mmu_fault
= arm_cpu_handle_mmu_fault
;
1157 cc
->do_interrupt
= arm_cpu_do_interrupt
;
1158 cc
->get_phys_page_debug
= arm_cpu_get_phys_page_debug
;
1159 cc
->vmsd
= &vmstate_arm_cpu
;
1161 cc
->gdb_num_core_regs
= 26;
1162 cc
->gdb_core_xml_file
= "arm-core.xml";
1163 cc
->gdb_stop_before_watchpoint
= true;
1164 cc
->debug_excp_handler
= arm_debug_excp_handler
;
1167 static void cpu_register(const ARMCPUInfo
*info
)
1169 TypeInfo type_info
= {
1170 .parent
= TYPE_ARM_CPU
,
1171 .instance_size
= sizeof(ARMCPU
),
1172 .instance_init
= info
->initfn
,
1173 .class_size
= sizeof(ARMCPUClass
),
1174 .class_init
= info
->class_init
,
1177 type_info
.name
= g_strdup_printf("%s-" TYPE_ARM_CPU
, info
->name
);
1178 type_register(&type_info
);
1179 g_free((void *)type_info
.name
);
1182 static const TypeInfo arm_cpu_type_info
= {
1183 .name
= TYPE_ARM_CPU
,
1185 .instance_size
= sizeof(ARMCPU
),
1186 .instance_init
= arm_cpu_initfn
,
1187 .instance_post_init
= arm_cpu_post_init
,
1188 .instance_finalize
= arm_cpu_finalizefn
,
1190 .class_size
= sizeof(ARMCPUClass
),
1191 .class_init
= arm_cpu_class_init
,
1194 static void arm_cpu_register_types(void)
1196 const ARMCPUInfo
*info
= arm_cpus
;
1198 type_register_static(&arm_cpu_type_info
);
1200 while (info
->name
) {
1206 type_init(arm_cpu_register_types
)