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 return cs
->interrupt_request
&
44 (CPU_INTERRUPT_FIQ
| CPU_INTERRUPT_HARD
| CPU_INTERRUPT_EXITTB
);
47 static void cp_reg_reset(gpointer key
, gpointer value
, gpointer opaque
)
49 /* Reset a single ARMCPRegInfo register */
50 ARMCPRegInfo
*ri
= value
;
53 if (ri
->type
& ARM_CP_SPECIAL
) {
58 ri
->resetfn(&cpu
->env
, ri
);
62 /* A zero offset is never possible as it would be regs[0]
63 * so we use it to indicate that reset is being handled elsewhere.
64 * This is basically only used for fields in non-core coprocessors
65 * (like the pxa2xx ones).
67 if (!ri
->fieldoffset
) {
71 if (cpreg_field_is_64bit(ri
)) {
72 CPREG_FIELD64(&cpu
->env
, ri
) = ri
->resetvalue
;
74 CPREG_FIELD32(&cpu
->env
, ri
) = ri
->resetvalue
;
78 /* CPUClass::reset() */
79 static void arm_cpu_reset(CPUState
*s
)
81 ARMCPU
*cpu
= ARM_CPU(s
);
82 ARMCPUClass
*acc
= ARM_CPU_GET_CLASS(cpu
);
83 CPUARMState
*env
= &cpu
->env
;
87 memset(env
, 0, offsetof(CPUARMState
, features
));
88 g_hash_table_foreach(cpu
->cp_regs
, cp_reg_reset
, cpu
);
89 env
->vfp
.xregs
[ARM_VFP_FPSID
] = cpu
->reset_fpsid
;
90 env
->vfp
.xregs
[ARM_VFP_MVFR0
] = cpu
->mvfr0
;
91 env
->vfp
.xregs
[ARM_VFP_MVFR1
] = cpu
->mvfr1
;
92 env
->vfp
.xregs
[ARM_VFP_MVFR2
] = cpu
->mvfr2
;
94 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
95 env
->iwmmxt
.cregs
[ARM_IWMMXT_wCID
] = 0x69051000 | 'Q';
98 if (arm_feature(env
, ARM_FEATURE_AARCH64
)) {
99 /* 64 bit CPUs always start in 64 bit mode */
101 #if defined(CONFIG_USER_ONLY)
102 env
->pstate
= PSTATE_MODE_EL0t
;
103 /* Userspace expects access to CTL_EL0 and the cache ops */
104 env
->cp15
.c1_sys
|= SCTLR_UCT
| SCTLR_UCI
;
105 /* and to the FP/Neon instructions */
106 env
->cp15
.c1_coproc
= deposit64(env
->cp15
.c1_coproc
, 20, 2, 3);
108 env
->pstate
= PSTATE_MODE_EL1h
;
109 env
->pc
= cpu
->rvbar
;
112 #if defined(CONFIG_USER_ONLY)
113 /* Userspace expects access to cp10 and cp11 for FP/Neon */
114 env
->cp15
.c1_coproc
= deposit64(env
->cp15
.c1_coproc
, 20, 4, 0xf);
118 #if defined(CONFIG_USER_ONLY)
119 env
->uncached_cpsr
= ARM_CPU_MODE_USR
;
120 /* For user mode we must enable access to coprocessors */
121 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 1 << 30;
122 if (arm_feature(env
, ARM_FEATURE_IWMMXT
)) {
123 env
->cp15
.c15_cpar
= 3;
124 } else if (arm_feature(env
, ARM_FEATURE_XSCALE
)) {
125 env
->cp15
.c15_cpar
= 1;
128 /* SVC mode with interrupts disabled. */
129 env
->uncached_cpsr
= ARM_CPU_MODE_SVC
;
130 env
->daif
= PSTATE_D
| PSTATE_A
| PSTATE_I
| PSTATE_F
;
131 /* On ARMv7-M the CPSR_I is the value of the PRIMASK register, and is
132 clear at reset. Initial SP and PC are loaded from ROM. */
136 env
->daif
&= ~PSTATE_I
;
139 /* We should really use ldl_phys here, in case the guest
140 modified flash and reset itself. However images
141 loaded via -kernel have not been copied yet, so load the
142 values directly from there. */
143 env
->regs
[13] = ldl_p(rom
) & 0xFFFFFFFC;
146 env
->regs
[15] = pc
& ~1;
150 if (env
->cp15
.c1_sys
& SCTLR_V
) {
151 env
->regs
[15] = 0xFFFF0000;
154 env
->vfp
.xregs
[ARM_VFP_FPEXC
] = 0;
156 set_flush_to_zero(1, &env
->vfp
.standard_fp_status
);
157 set_flush_inputs_to_zero(1, &env
->vfp
.standard_fp_status
);
158 set_default_nan_mode(1, &env
->vfp
.standard_fp_status
);
159 set_float_detect_tininess(float_tininess_before_rounding
,
160 &env
->vfp
.fp_status
);
161 set_float_detect_tininess(float_tininess_before_rounding
,
162 &env
->vfp
.standard_fp_status
);
164 /* Reset is a state change for some CPUARMState fields which we
165 * bake assumptions about into translated code, so we need to
170 #ifndef CONFIG_USER_ONLY
172 kvm_arm_reset_vcpu(cpu
);
177 #ifndef CONFIG_USER_ONLY
178 static void arm_cpu_set_irq(void *opaque
, int irq
, int level
)
180 ARMCPU
*cpu
= opaque
;
181 CPUState
*cs
= CPU(cpu
);
186 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
188 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
193 cpu_interrupt(cs
, CPU_INTERRUPT_FIQ
);
195 cpu_reset_interrupt(cs
, CPU_INTERRUPT_FIQ
);
199 hw_error("arm_cpu_set_irq: Bad interrupt line %d\n", irq
);
203 static void arm_cpu_kvm_set_irq(void *opaque
, int irq
, int level
)
206 ARMCPU
*cpu
= opaque
;
207 CPUState
*cs
= CPU(cpu
);
208 int kvm_irq
= KVM_ARM_IRQ_TYPE_CPU
<< KVM_ARM_IRQ_TYPE_SHIFT
;
212 kvm_irq
|= KVM_ARM_IRQ_CPU_IRQ
;
215 kvm_irq
|= KVM_ARM_IRQ_CPU_FIQ
;
218 hw_error("arm_cpu_kvm_set_irq: Bad interrupt line %d\n", irq
);
220 kvm_irq
|= cs
->cpu_index
<< KVM_ARM_IRQ_VCPU_SHIFT
;
221 kvm_set_irq(kvm_state
, kvm_irq
, level
? 1 : 0);
226 static inline void set_feature(CPUARMState
*env
, int feature
)
228 env
->features
|= 1ULL << feature
;
231 static void arm_cpu_initfn(Object
*obj
)
233 CPUState
*cs
= CPU(obj
);
234 ARMCPU
*cpu
= ARM_CPU(obj
);
237 cs
->env_ptr
= &cpu
->env
;
238 cpu_exec_init(&cpu
->env
);
239 cpu
->cp_regs
= g_hash_table_new_full(g_int_hash
, g_int_equal
,
242 #ifndef CONFIG_USER_ONLY
243 /* Our inbound IRQ and FIQ lines */
245 qdev_init_gpio_in(DEVICE(cpu
), arm_cpu_kvm_set_irq
, 2);
247 qdev_init_gpio_in(DEVICE(cpu
), arm_cpu_set_irq
, 2);
250 cpu
->gt_timer
[GTIMER_PHYS
] = timer_new(QEMU_CLOCK_VIRTUAL
, GTIMER_SCALE
,
251 arm_gt_ptimer_cb
, cpu
);
252 cpu
->gt_timer
[GTIMER_VIRT
] = timer_new(QEMU_CLOCK_VIRTUAL
, GTIMER_SCALE
,
253 arm_gt_vtimer_cb
, cpu
);
254 qdev_init_gpio_out(DEVICE(cpu
), cpu
->gt_timer_outputs
,
255 ARRAY_SIZE(cpu
->gt_timer_outputs
));
258 /* DTB consumers generally don't in fact care what the 'compatible'
259 * string is, so always provide some string and trust that a hypothetical
260 * picky DTB consumer will also provide a helpful error message.
262 cpu
->dtb_compatible
= "qemu,unknown";
263 cpu
->psci_version
= 1; /* By default assume PSCI v0.1 */
264 cpu
->kvm_target
= QEMU_KVM_ARM_TARGET_NONE
;
266 if (tcg_enabled() && !inited
) {
268 arm_translate_init();
272 static Property arm_cpu_reset_cbar_property
=
273 DEFINE_PROP_UINT64("reset-cbar", ARMCPU
, reset_cbar
, 0);
275 static Property arm_cpu_reset_hivecs_property
=
276 DEFINE_PROP_BOOL("reset-hivecs", ARMCPU
, reset_hivecs
, false);
278 static Property arm_cpu_rvbar_property
=
279 DEFINE_PROP_UINT64("rvbar", ARMCPU
, rvbar
, 0);
281 static void arm_cpu_post_init(Object
*obj
)
283 ARMCPU
*cpu
= ARM_CPU(obj
);
285 if (arm_feature(&cpu
->env
, ARM_FEATURE_CBAR
) ||
286 arm_feature(&cpu
->env
, ARM_FEATURE_CBAR_RO
)) {
287 qdev_property_add_static(DEVICE(obj
), &arm_cpu_reset_cbar_property
,
291 if (!arm_feature(&cpu
->env
, ARM_FEATURE_M
)) {
292 qdev_property_add_static(DEVICE(obj
), &arm_cpu_reset_hivecs_property
,
296 if (arm_feature(&cpu
->env
, ARM_FEATURE_AARCH64
)) {
297 qdev_property_add_static(DEVICE(obj
), &arm_cpu_rvbar_property
,
302 static void arm_cpu_finalizefn(Object
*obj
)
304 ARMCPU
*cpu
= ARM_CPU(obj
);
305 g_hash_table_destroy(cpu
->cp_regs
);
308 static void arm_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
310 CPUState
*cs
= CPU(dev
);
311 ARMCPU
*cpu
= ARM_CPU(dev
);
312 ARMCPUClass
*acc
= ARM_CPU_GET_CLASS(dev
);
313 CPUARMState
*env
= &cpu
->env
;
315 /* Some features automatically imply others: */
316 if (arm_feature(env
, ARM_FEATURE_V8
)) {
317 set_feature(env
, ARM_FEATURE_V7
);
318 set_feature(env
, ARM_FEATURE_ARM_DIV
);
319 set_feature(env
, ARM_FEATURE_LPAE
);
321 if (arm_feature(env
, ARM_FEATURE_V7
)) {
322 set_feature(env
, ARM_FEATURE_VAPA
);
323 set_feature(env
, ARM_FEATURE_THUMB2
);
324 set_feature(env
, ARM_FEATURE_MPIDR
);
325 if (!arm_feature(env
, ARM_FEATURE_M
)) {
326 set_feature(env
, ARM_FEATURE_V6K
);
328 set_feature(env
, ARM_FEATURE_V6
);
331 if (arm_feature(env
, ARM_FEATURE_V6K
)) {
332 set_feature(env
, ARM_FEATURE_V6
);
333 set_feature(env
, ARM_FEATURE_MVFR
);
335 if (arm_feature(env
, ARM_FEATURE_V6
)) {
336 set_feature(env
, ARM_FEATURE_V5
);
337 if (!arm_feature(env
, ARM_FEATURE_M
)) {
338 set_feature(env
, ARM_FEATURE_AUXCR
);
341 if (arm_feature(env
, ARM_FEATURE_V5
)) {
342 set_feature(env
, ARM_FEATURE_V4T
);
344 if (arm_feature(env
, ARM_FEATURE_M
)) {
345 set_feature(env
, ARM_FEATURE_THUMB_DIV
);
347 if (arm_feature(env
, ARM_FEATURE_ARM_DIV
)) {
348 set_feature(env
, ARM_FEATURE_THUMB_DIV
);
350 if (arm_feature(env
, ARM_FEATURE_VFP4
)) {
351 set_feature(env
, ARM_FEATURE_VFP3
);
352 set_feature(env
, ARM_FEATURE_VFP_FP16
);
354 if (arm_feature(env
, ARM_FEATURE_VFP3
)) {
355 set_feature(env
, ARM_FEATURE_VFP
);
357 if (arm_feature(env
, ARM_FEATURE_LPAE
)) {
358 set_feature(env
, ARM_FEATURE_V7MP
);
359 set_feature(env
, ARM_FEATURE_PXN
);
361 if (arm_feature(env
, ARM_FEATURE_CBAR_RO
)) {
362 set_feature(env
, ARM_FEATURE_CBAR
);
365 if (cpu
->reset_hivecs
) {
366 cpu
->reset_sctlr
|= (1 << 13);
369 register_cp_regs_for_features(cpu
);
370 arm_cpu_register_gdb_regs_for_features(cpu
);
372 init_cpreg_list(cpu
);
377 acc
->parent_realize(dev
, errp
);
380 static ObjectClass
*arm_cpu_class_by_name(const char *cpu_model
)
389 typename
= g_strdup_printf("%s-" TYPE_ARM_CPU
, cpu_model
);
390 oc
= object_class_by_name(typename
);
392 if (!oc
|| !object_class_dynamic_cast(oc
, TYPE_ARM_CPU
) ||
393 object_class_is_abstract(oc
)) {
399 /* CPU models. These are not needed for the AArch64 linux-user build. */
400 #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
402 static void arm926_initfn(Object
*obj
)
404 ARMCPU
*cpu
= ARM_CPU(obj
);
406 cpu
->dtb_compatible
= "arm,arm926";
407 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
408 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
409 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
410 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_TEST_CLEAN
);
411 cpu
->midr
= 0x41069265;
412 cpu
->reset_fpsid
= 0x41011090;
413 cpu
->ctr
= 0x1dd20d2;
414 cpu
->reset_sctlr
= 0x00090078;
417 static void arm946_initfn(Object
*obj
)
419 ARMCPU
*cpu
= ARM_CPU(obj
);
421 cpu
->dtb_compatible
= "arm,arm946";
422 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
423 set_feature(&cpu
->env
, ARM_FEATURE_MPU
);
424 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
425 cpu
->midr
= 0x41059461;
426 cpu
->ctr
= 0x0f004006;
427 cpu
->reset_sctlr
= 0x00000078;
430 static void arm1026_initfn(Object
*obj
)
432 ARMCPU
*cpu
= ARM_CPU(obj
);
434 cpu
->dtb_compatible
= "arm,arm1026";
435 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
436 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
437 set_feature(&cpu
->env
, ARM_FEATURE_AUXCR
);
438 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
439 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_TEST_CLEAN
);
440 cpu
->midr
= 0x4106a262;
441 cpu
->reset_fpsid
= 0x410110a0;
442 cpu
->ctr
= 0x1dd20d2;
443 cpu
->reset_sctlr
= 0x00090078;
444 cpu
->reset_auxcr
= 1;
446 /* The 1026 had an IFAR at c6,c0,0,1 rather than the ARMv6 c6,c0,0,2 */
447 ARMCPRegInfo ifar
= {
448 .name
= "IFAR", .cp
= 15, .crn
= 6, .crm
= 0, .opc1
= 0, .opc2
= 1,
450 .fieldoffset
= offsetofhigh32(CPUARMState
, cp15
.far_el
[1]),
453 define_one_arm_cp_reg(cpu
, &ifar
);
457 static void arm1136_r2_initfn(Object
*obj
)
459 ARMCPU
*cpu
= ARM_CPU(obj
);
460 /* What qemu calls "arm1136_r2" is actually the 1136 r0p2, ie an
461 * older core than plain "arm1136". In particular this does not
462 * have the v6K features.
463 * These ID register values are correct for 1136 but may be wrong
464 * for 1136_r2 (in particular r0p2 does not actually implement most
465 * of the ID registers).
468 cpu
->dtb_compatible
= "arm,arm1136";
469 set_feature(&cpu
->env
, ARM_FEATURE_V6
);
470 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
471 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
472 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
473 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
474 cpu
->midr
= 0x4107b362;
475 cpu
->reset_fpsid
= 0x410120b4;
476 cpu
->mvfr0
= 0x11111111;
477 cpu
->mvfr1
= 0x00000000;
478 cpu
->ctr
= 0x1dd20d2;
479 cpu
->reset_sctlr
= 0x00050078;
480 cpu
->id_pfr0
= 0x111;
484 cpu
->id_mmfr0
= 0x01130003;
485 cpu
->id_mmfr1
= 0x10030302;
486 cpu
->id_mmfr2
= 0x01222110;
487 cpu
->id_isar0
= 0x00140011;
488 cpu
->id_isar1
= 0x12002111;
489 cpu
->id_isar2
= 0x11231111;
490 cpu
->id_isar3
= 0x01102131;
491 cpu
->id_isar4
= 0x141;
492 cpu
->reset_auxcr
= 7;
495 static void arm1136_initfn(Object
*obj
)
497 ARMCPU
*cpu
= ARM_CPU(obj
);
499 cpu
->dtb_compatible
= "arm,arm1136";
500 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
501 set_feature(&cpu
->env
, ARM_FEATURE_V6
);
502 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
503 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
504 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
505 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
506 cpu
->midr
= 0x4117b363;
507 cpu
->reset_fpsid
= 0x410120b4;
508 cpu
->mvfr0
= 0x11111111;
509 cpu
->mvfr1
= 0x00000000;
510 cpu
->ctr
= 0x1dd20d2;
511 cpu
->reset_sctlr
= 0x00050078;
512 cpu
->id_pfr0
= 0x111;
516 cpu
->id_mmfr0
= 0x01130003;
517 cpu
->id_mmfr1
= 0x10030302;
518 cpu
->id_mmfr2
= 0x01222110;
519 cpu
->id_isar0
= 0x00140011;
520 cpu
->id_isar1
= 0x12002111;
521 cpu
->id_isar2
= 0x11231111;
522 cpu
->id_isar3
= 0x01102131;
523 cpu
->id_isar4
= 0x141;
524 cpu
->reset_auxcr
= 7;
527 static void arm1176_initfn(Object
*obj
)
529 ARMCPU
*cpu
= ARM_CPU(obj
);
531 cpu
->dtb_compatible
= "arm,arm1176";
532 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
533 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
534 set_feature(&cpu
->env
, ARM_FEATURE_VAPA
);
535 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
536 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_DIRTY_REG
);
537 set_feature(&cpu
->env
, ARM_FEATURE_CACHE_BLOCK_OPS
);
538 cpu
->midr
= 0x410fb767;
539 cpu
->reset_fpsid
= 0x410120b5;
540 cpu
->mvfr0
= 0x11111111;
541 cpu
->mvfr1
= 0x00000000;
542 cpu
->ctr
= 0x1dd20d2;
543 cpu
->reset_sctlr
= 0x00050078;
544 cpu
->id_pfr0
= 0x111;
548 cpu
->id_mmfr0
= 0x01130003;
549 cpu
->id_mmfr1
= 0x10030302;
550 cpu
->id_mmfr2
= 0x01222100;
551 cpu
->id_isar0
= 0x0140011;
552 cpu
->id_isar1
= 0x12002111;
553 cpu
->id_isar2
= 0x11231121;
554 cpu
->id_isar3
= 0x01102131;
555 cpu
->id_isar4
= 0x01141;
556 cpu
->reset_auxcr
= 7;
559 static void arm11mpcore_initfn(Object
*obj
)
561 ARMCPU
*cpu
= ARM_CPU(obj
);
563 cpu
->dtb_compatible
= "arm,arm11mpcore";
564 set_feature(&cpu
->env
, ARM_FEATURE_V6K
);
565 set_feature(&cpu
->env
, ARM_FEATURE_VFP
);
566 set_feature(&cpu
->env
, ARM_FEATURE_VAPA
);
567 set_feature(&cpu
->env
, ARM_FEATURE_MPIDR
);
568 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
569 cpu
->midr
= 0x410fb022;
570 cpu
->reset_fpsid
= 0x410120b4;
571 cpu
->mvfr0
= 0x11111111;
572 cpu
->mvfr1
= 0x00000000;
573 cpu
->ctr
= 0x1d192992; /* 32K icache 32K dcache */
574 cpu
->id_pfr0
= 0x111;
578 cpu
->id_mmfr0
= 0x01100103;
579 cpu
->id_mmfr1
= 0x10020302;
580 cpu
->id_mmfr2
= 0x01222000;
581 cpu
->id_isar0
= 0x00100011;
582 cpu
->id_isar1
= 0x12002111;
583 cpu
->id_isar2
= 0x11221011;
584 cpu
->id_isar3
= 0x01102131;
585 cpu
->id_isar4
= 0x141;
586 cpu
->reset_auxcr
= 1;
589 static void cortex_m3_initfn(Object
*obj
)
591 ARMCPU
*cpu
= ARM_CPU(obj
);
592 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
593 set_feature(&cpu
->env
, ARM_FEATURE_M
);
594 cpu
->midr
= 0x410fc231;
597 static void arm_v7m_class_init(ObjectClass
*oc
, void *data
)
599 #ifndef CONFIG_USER_ONLY
600 CPUClass
*cc
= CPU_CLASS(oc
);
602 cc
->do_interrupt
= arm_v7m_cpu_do_interrupt
;
606 static const ARMCPRegInfo cortexa8_cp_reginfo
[] = {
607 { .name
= "L2LOCKDOWN", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 0,
608 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
609 { .name
= "L2AUXCR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 2,
610 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
614 static void cortex_a8_initfn(Object
*obj
)
616 ARMCPU
*cpu
= ARM_CPU(obj
);
618 cpu
->dtb_compatible
= "arm,cortex-a8";
619 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
620 set_feature(&cpu
->env
, ARM_FEATURE_VFP3
);
621 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
622 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
623 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
624 cpu
->midr
= 0x410fc080;
625 cpu
->reset_fpsid
= 0x410330c0;
626 cpu
->mvfr0
= 0x11110222;
627 cpu
->mvfr1
= 0x00011100;
628 cpu
->ctr
= 0x82048004;
629 cpu
->reset_sctlr
= 0x00c50078;
630 cpu
->id_pfr0
= 0x1031;
632 cpu
->id_dfr0
= 0x400;
634 cpu
->id_mmfr0
= 0x31100003;
635 cpu
->id_mmfr1
= 0x20000000;
636 cpu
->id_mmfr2
= 0x01202000;
637 cpu
->id_mmfr3
= 0x11;
638 cpu
->id_isar0
= 0x00101111;
639 cpu
->id_isar1
= 0x12112111;
640 cpu
->id_isar2
= 0x21232031;
641 cpu
->id_isar3
= 0x11112131;
642 cpu
->id_isar4
= 0x00111142;
643 cpu
->dbgdidr
= 0x15141000;
644 cpu
->clidr
= (1 << 27) | (2 << 24) | 3;
645 cpu
->ccsidr
[0] = 0xe007e01a; /* 16k L1 dcache. */
646 cpu
->ccsidr
[1] = 0x2007e01a; /* 16k L1 icache. */
647 cpu
->ccsidr
[2] = 0xf0000000; /* No L2 icache. */
648 cpu
->reset_auxcr
= 2;
649 define_arm_cp_regs(cpu
, cortexa8_cp_reginfo
);
652 static const ARMCPRegInfo cortexa9_cp_reginfo
[] = {
653 /* power_control should be set to maximum latency. Again,
654 * default to 0 and set by private hook
656 { .name
= "A9_PWRCTL", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 0,
657 .access
= PL1_RW
, .resetvalue
= 0,
658 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_power_control
) },
659 { .name
= "A9_DIAG", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 1,
660 .access
= PL1_RW
, .resetvalue
= 0,
661 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_diagnostic
) },
662 { .name
= "A9_PWRDIAG", .cp
= 15, .crn
= 15, .crm
= 0, .opc1
= 0, .opc2
= 2,
663 .access
= PL1_RW
, .resetvalue
= 0,
664 .fieldoffset
= offsetof(CPUARMState
, cp15
.c15_power_diagnostic
) },
665 { .name
= "NEONBUSY", .cp
= 15, .crn
= 15, .crm
= 1, .opc1
= 0, .opc2
= 0,
666 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
667 /* TLB lockdown control */
668 { .name
= "TLB_LOCKR", .cp
= 15, .crn
= 15, .crm
= 4, .opc1
= 5, .opc2
= 2,
669 .access
= PL1_W
, .resetvalue
= 0, .type
= ARM_CP_NOP
},
670 { .name
= "TLB_LOCKW", .cp
= 15, .crn
= 15, .crm
= 4, .opc1
= 5, .opc2
= 4,
671 .access
= PL1_W
, .resetvalue
= 0, .type
= ARM_CP_NOP
},
672 { .name
= "TLB_VA", .cp
= 15, .crn
= 15, .crm
= 5, .opc1
= 5, .opc2
= 2,
673 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
674 { .name
= "TLB_PA", .cp
= 15, .crn
= 15, .crm
= 6, .opc1
= 5, .opc2
= 2,
675 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
676 { .name
= "TLB_ATTR", .cp
= 15, .crn
= 15, .crm
= 7, .opc1
= 5, .opc2
= 2,
677 .access
= PL1_RW
, .resetvalue
= 0, .type
= ARM_CP_CONST
},
681 static void cortex_a9_initfn(Object
*obj
)
683 ARMCPU
*cpu
= ARM_CPU(obj
);
685 cpu
->dtb_compatible
= "arm,cortex-a9";
686 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
687 set_feature(&cpu
->env
, ARM_FEATURE_VFP3
);
688 set_feature(&cpu
->env
, ARM_FEATURE_VFP_FP16
);
689 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
690 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
691 /* Note that A9 supports the MP extensions even for
692 * A9UP and single-core A9MP (which are both different
693 * and valid configurations; we don't model A9UP).
695 set_feature(&cpu
->env
, ARM_FEATURE_V7MP
);
696 set_feature(&cpu
->env
, ARM_FEATURE_CBAR
);
697 cpu
->midr
= 0x410fc090;
698 cpu
->reset_fpsid
= 0x41033090;
699 cpu
->mvfr0
= 0x11110222;
700 cpu
->mvfr1
= 0x01111111;
701 cpu
->ctr
= 0x80038003;
702 cpu
->reset_sctlr
= 0x00c50078;
703 cpu
->id_pfr0
= 0x1031;
705 cpu
->id_dfr0
= 0x000;
707 cpu
->id_mmfr0
= 0x00100103;
708 cpu
->id_mmfr1
= 0x20000000;
709 cpu
->id_mmfr2
= 0x01230000;
710 cpu
->id_mmfr3
= 0x00002111;
711 cpu
->id_isar0
= 0x00101111;
712 cpu
->id_isar1
= 0x13112111;
713 cpu
->id_isar2
= 0x21232041;
714 cpu
->id_isar3
= 0x11112131;
715 cpu
->id_isar4
= 0x00111142;
716 cpu
->dbgdidr
= 0x35141000;
717 cpu
->clidr
= (1 << 27) | (1 << 24) | 3;
718 cpu
->ccsidr
[0] = 0xe00fe019; /* 16k L1 dcache. */
719 cpu
->ccsidr
[1] = 0x200fe019; /* 16k L1 icache. */
720 define_arm_cp_regs(cpu
, cortexa9_cp_reginfo
);
723 #ifndef CONFIG_USER_ONLY
724 static uint64_t a15_l2ctlr_read(CPUARMState
*env
, const ARMCPRegInfo
*ri
)
726 /* Linux wants the number of processors from here.
727 * Might as well set the interrupt-controller bit too.
729 return ((smp_cpus
- 1) << 24) | (1 << 23);
733 static const ARMCPRegInfo cortexa15_cp_reginfo
[] = {
734 #ifndef CONFIG_USER_ONLY
735 { .name
= "L2CTLR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 2,
736 .access
= PL1_RW
, .resetvalue
= 0, .readfn
= a15_l2ctlr_read
,
737 .writefn
= arm_cp_write_ignore
, },
739 { .name
= "L2ECTLR", .cp
= 15, .crn
= 9, .crm
= 0, .opc1
= 1, .opc2
= 3,
740 .access
= PL1_RW
, .type
= ARM_CP_CONST
, .resetvalue
= 0 },
744 static void cortex_a15_initfn(Object
*obj
)
746 ARMCPU
*cpu
= ARM_CPU(obj
);
748 cpu
->dtb_compatible
= "arm,cortex-a15";
749 set_feature(&cpu
->env
, ARM_FEATURE_V7
);
750 set_feature(&cpu
->env
, ARM_FEATURE_VFP4
);
751 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
752 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
753 set_feature(&cpu
->env
, ARM_FEATURE_ARM_DIV
);
754 set_feature(&cpu
->env
, ARM_FEATURE_GENERIC_TIMER
);
755 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
756 set_feature(&cpu
->env
, ARM_FEATURE_CBAR_RO
);
757 set_feature(&cpu
->env
, ARM_FEATURE_LPAE
);
758 cpu
->kvm_target
= QEMU_KVM_ARM_TARGET_CORTEX_A15
;
759 cpu
->midr
= 0x412fc0f1;
760 cpu
->reset_fpsid
= 0x410430f0;
761 cpu
->mvfr0
= 0x10110222;
762 cpu
->mvfr1
= 0x11111111;
763 cpu
->ctr
= 0x8444c004;
764 cpu
->reset_sctlr
= 0x00c50078;
765 cpu
->id_pfr0
= 0x00001131;
766 cpu
->id_pfr1
= 0x00011011;
767 cpu
->id_dfr0
= 0x02010555;
768 cpu
->id_afr0
= 0x00000000;
769 cpu
->id_mmfr0
= 0x10201105;
770 cpu
->id_mmfr1
= 0x20000000;
771 cpu
->id_mmfr2
= 0x01240000;
772 cpu
->id_mmfr3
= 0x02102211;
773 cpu
->id_isar0
= 0x02101110;
774 cpu
->id_isar1
= 0x13112111;
775 cpu
->id_isar2
= 0x21232041;
776 cpu
->id_isar3
= 0x11112131;
777 cpu
->id_isar4
= 0x10011142;
778 cpu
->dbgdidr
= 0x3515f021;
779 cpu
->clidr
= 0x0a200023;
780 cpu
->ccsidr
[0] = 0x701fe00a; /* 32K L1 dcache */
781 cpu
->ccsidr
[1] = 0x201fe00a; /* 32K L1 icache */
782 cpu
->ccsidr
[2] = 0x711fe07a; /* 4096K L2 unified cache */
783 define_arm_cp_regs(cpu
, cortexa15_cp_reginfo
);
786 static void ti925t_initfn(Object
*obj
)
788 ARMCPU
*cpu
= ARM_CPU(obj
);
789 set_feature(&cpu
->env
, ARM_FEATURE_V4T
);
790 set_feature(&cpu
->env
, ARM_FEATURE_OMAPCP
);
791 cpu
->midr
= ARM_CPUID_TI925T
;
792 cpu
->ctr
= 0x5109149;
793 cpu
->reset_sctlr
= 0x00000070;
796 static void sa1100_initfn(Object
*obj
)
798 ARMCPU
*cpu
= ARM_CPU(obj
);
800 cpu
->dtb_compatible
= "intel,sa1100";
801 set_feature(&cpu
->env
, ARM_FEATURE_STRONGARM
);
802 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
803 cpu
->midr
= 0x4401A11B;
804 cpu
->reset_sctlr
= 0x00000070;
807 static void sa1110_initfn(Object
*obj
)
809 ARMCPU
*cpu
= ARM_CPU(obj
);
810 set_feature(&cpu
->env
, ARM_FEATURE_STRONGARM
);
811 set_feature(&cpu
->env
, ARM_FEATURE_DUMMY_C15_REGS
);
812 cpu
->midr
= 0x6901B119;
813 cpu
->reset_sctlr
= 0x00000070;
816 static void pxa250_initfn(Object
*obj
)
818 ARMCPU
*cpu
= ARM_CPU(obj
);
820 cpu
->dtb_compatible
= "marvell,xscale";
821 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
822 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
823 cpu
->midr
= 0x69052100;
824 cpu
->ctr
= 0xd172172;
825 cpu
->reset_sctlr
= 0x00000078;
828 static void pxa255_initfn(Object
*obj
)
830 ARMCPU
*cpu
= ARM_CPU(obj
);
832 cpu
->dtb_compatible
= "marvell,xscale";
833 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
834 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
835 cpu
->midr
= 0x69052d00;
836 cpu
->ctr
= 0xd172172;
837 cpu
->reset_sctlr
= 0x00000078;
840 static void pxa260_initfn(Object
*obj
)
842 ARMCPU
*cpu
= ARM_CPU(obj
);
844 cpu
->dtb_compatible
= "marvell,xscale";
845 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
846 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
847 cpu
->midr
= 0x69052903;
848 cpu
->ctr
= 0xd172172;
849 cpu
->reset_sctlr
= 0x00000078;
852 static void pxa261_initfn(Object
*obj
)
854 ARMCPU
*cpu
= ARM_CPU(obj
);
856 cpu
->dtb_compatible
= "marvell,xscale";
857 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
858 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
859 cpu
->midr
= 0x69052d05;
860 cpu
->ctr
= 0xd172172;
861 cpu
->reset_sctlr
= 0x00000078;
864 static void pxa262_initfn(Object
*obj
)
866 ARMCPU
*cpu
= ARM_CPU(obj
);
868 cpu
->dtb_compatible
= "marvell,xscale";
869 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
870 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
871 cpu
->midr
= 0x69052d06;
872 cpu
->ctr
= 0xd172172;
873 cpu
->reset_sctlr
= 0x00000078;
876 static void pxa270a0_initfn(Object
*obj
)
878 ARMCPU
*cpu
= ARM_CPU(obj
);
880 cpu
->dtb_compatible
= "marvell,xscale";
881 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
882 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
883 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
884 cpu
->midr
= 0x69054110;
885 cpu
->ctr
= 0xd172172;
886 cpu
->reset_sctlr
= 0x00000078;
889 static void pxa270a1_initfn(Object
*obj
)
891 ARMCPU
*cpu
= ARM_CPU(obj
);
893 cpu
->dtb_compatible
= "marvell,xscale";
894 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
895 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
896 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
897 cpu
->midr
= 0x69054111;
898 cpu
->ctr
= 0xd172172;
899 cpu
->reset_sctlr
= 0x00000078;
902 static void pxa270b0_initfn(Object
*obj
)
904 ARMCPU
*cpu
= ARM_CPU(obj
);
906 cpu
->dtb_compatible
= "marvell,xscale";
907 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
908 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
909 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
910 cpu
->midr
= 0x69054112;
911 cpu
->ctr
= 0xd172172;
912 cpu
->reset_sctlr
= 0x00000078;
915 static void pxa270b1_initfn(Object
*obj
)
917 ARMCPU
*cpu
= ARM_CPU(obj
);
919 cpu
->dtb_compatible
= "marvell,xscale";
920 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
921 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
922 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
923 cpu
->midr
= 0x69054113;
924 cpu
->ctr
= 0xd172172;
925 cpu
->reset_sctlr
= 0x00000078;
928 static void pxa270c0_initfn(Object
*obj
)
930 ARMCPU
*cpu
= ARM_CPU(obj
);
932 cpu
->dtb_compatible
= "marvell,xscale";
933 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
934 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
935 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
936 cpu
->midr
= 0x69054114;
937 cpu
->ctr
= 0xd172172;
938 cpu
->reset_sctlr
= 0x00000078;
941 static void pxa270c5_initfn(Object
*obj
)
943 ARMCPU
*cpu
= ARM_CPU(obj
);
945 cpu
->dtb_compatible
= "marvell,xscale";
946 set_feature(&cpu
->env
, ARM_FEATURE_V5
);
947 set_feature(&cpu
->env
, ARM_FEATURE_XSCALE
);
948 set_feature(&cpu
->env
, ARM_FEATURE_IWMMXT
);
949 cpu
->midr
= 0x69054117;
950 cpu
->ctr
= 0xd172172;
951 cpu
->reset_sctlr
= 0x00000078;
954 #ifdef CONFIG_USER_ONLY
955 static void arm_any_initfn(Object
*obj
)
957 ARMCPU
*cpu
= ARM_CPU(obj
);
958 set_feature(&cpu
->env
, ARM_FEATURE_V8
);
959 set_feature(&cpu
->env
, ARM_FEATURE_VFP4
);
960 set_feature(&cpu
->env
, ARM_FEATURE_NEON
);
961 set_feature(&cpu
->env
, ARM_FEATURE_THUMB2EE
);
962 set_feature(&cpu
->env
, ARM_FEATURE_V8_AES
);
963 set_feature(&cpu
->env
, ARM_FEATURE_V8_SHA1
);
964 set_feature(&cpu
->env
, ARM_FEATURE_V8_SHA256
);
965 set_feature(&cpu
->env
, ARM_FEATURE_V8_PMULL
);
966 set_feature(&cpu
->env
, ARM_FEATURE_CRC
);
967 cpu
->midr
= 0xffffffff;
971 #endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
973 typedef struct ARMCPUInfo
{
975 void (*initfn
)(Object
*obj
);
976 void (*class_init
)(ObjectClass
*oc
, void *data
);
979 static const ARMCPUInfo arm_cpus
[] = {
980 #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
981 { .name
= "arm926", .initfn
= arm926_initfn
},
982 { .name
= "arm946", .initfn
= arm946_initfn
},
983 { .name
= "arm1026", .initfn
= arm1026_initfn
},
984 /* What QEMU calls "arm1136-r2" is actually the 1136 r0p2, i.e. an
985 * older core than plain "arm1136". In particular this does not
986 * have the v6K features.
988 { .name
= "arm1136-r2", .initfn
= arm1136_r2_initfn
},
989 { .name
= "arm1136", .initfn
= arm1136_initfn
},
990 { .name
= "arm1176", .initfn
= arm1176_initfn
},
991 { .name
= "arm11mpcore", .initfn
= arm11mpcore_initfn
},
992 { .name
= "cortex-m3", .initfn
= cortex_m3_initfn
,
993 .class_init
= arm_v7m_class_init
},
994 { .name
= "cortex-a8", .initfn
= cortex_a8_initfn
},
995 { .name
= "cortex-a9", .initfn
= cortex_a9_initfn
},
996 { .name
= "cortex-a15", .initfn
= cortex_a15_initfn
},
997 { .name
= "ti925t", .initfn
= ti925t_initfn
},
998 { .name
= "sa1100", .initfn
= sa1100_initfn
},
999 { .name
= "sa1110", .initfn
= sa1110_initfn
},
1000 { .name
= "pxa250", .initfn
= pxa250_initfn
},
1001 { .name
= "pxa255", .initfn
= pxa255_initfn
},
1002 { .name
= "pxa260", .initfn
= pxa260_initfn
},
1003 { .name
= "pxa261", .initfn
= pxa261_initfn
},
1004 { .name
= "pxa262", .initfn
= pxa262_initfn
},
1005 /* "pxa270" is an alias for "pxa270-a0" */
1006 { .name
= "pxa270", .initfn
= pxa270a0_initfn
},
1007 { .name
= "pxa270-a0", .initfn
= pxa270a0_initfn
},
1008 { .name
= "pxa270-a1", .initfn
= pxa270a1_initfn
},
1009 { .name
= "pxa270-b0", .initfn
= pxa270b0_initfn
},
1010 { .name
= "pxa270-b1", .initfn
= pxa270b1_initfn
},
1011 { .name
= "pxa270-c0", .initfn
= pxa270c0_initfn
},
1012 { .name
= "pxa270-c5", .initfn
= pxa270c5_initfn
},
1013 #ifdef CONFIG_USER_ONLY
1014 { .name
= "any", .initfn
= arm_any_initfn
},
1020 static Property arm_cpu_properties
[] = {
1021 DEFINE_PROP_BOOL("start-powered-off", ARMCPU
, start_powered_off
, false),
1022 DEFINE_PROP_UINT32("midr", ARMCPU
, midr
, 0),
1023 DEFINE_PROP_END_OF_LIST()
1026 static void arm_cpu_class_init(ObjectClass
*oc
, void *data
)
1028 ARMCPUClass
*acc
= ARM_CPU_CLASS(oc
);
1029 CPUClass
*cc
= CPU_CLASS(acc
);
1030 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1032 acc
->parent_realize
= dc
->realize
;
1033 dc
->realize
= arm_cpu_realizefn
;
1034 dc
->props
= arm_cpu_properties
;
1036 acc
->parent_reset
= cc
->reset
;
1037 cc
->reset
= arm_cpu_reset
;
1039 cc
->class_by_name
= arm_cpu_class_by_name
;
1040 cc
->has_work
= arm_cpu_has_work
;
1041 cc
->do_interrupt
= arm_cpu_do_interrupt
;
1042 cc
->dump_state
= arm_cpu_dump_state
;
1043 cc
->set_pc
= arm_cpu_set_pc
;
1044 cc
->gdb_read_register
= arm_cpu_gdb_read_register
;
1045 cc
->gdb_write_register
= arm_cpu_gdb_write_register
;
1046 #ifdef CONFIG_USER_ONLY
1047 cc
->handle_mmu_fault
= arm_cpu_handle_mmu_fault
;
1049 cc
->get_phys_page_debug
= arm_cpu_get_phys_page_debug
;
1050 cc
->vmsd
= &vmstate_arm_cpu
;
1052 cc
->gdb_num_core_regs
= 26;
1053 cc
->gdb_core_xml_file
= "arm-core.xml";
1056 static void cpu_register(const ARMCPUInfo
*info
)
1058 TypeInfo type_info
= {
1059 .parent
= TYPE_ARM_CPU
,
1060 .instance_size
= sizeof(ARMCPU
),
1061 .instance_init
= info
->initfn
,
1062 .class_size
= sizeof(ARMCPUClass
),
1063 .class_init
= info
->class_init
,
1066 type_info
.name
= g_strdup_printf("%s-" TYPE_ARM_CPU
, info
->name
);
1067 type_register(&type_info
);
1068 g_free((void *)type_info
.name
);
1071 static const TypeInfo arm_cpu_type_info
= {
1072 .name
= TYPE_ARM_CPU
,
1074 .instance_size
= sizeof(ARMCPU
),
1075 .instance_init
= arm_cpu_initfn
,
1076 .instance_post_init
= arm_cpu_post_init
,
1077 .instance_finalize
= arm_cpu_finalizefn
,
1079 .class_size
= sizeof(ARMCPUClass
),
1080 .class_init
= arm_cpu_class_init
,
1083 static void arm_cpu_register_types(void)
1085 const ARMCPUInfo
*info
= arm_cpus
;
1087 type_register_static(&arm_cpu_type_info
);
1089 while (info
->name
) {
1095 type_init(arm_cpu_register_types
)