xref: /openbmc/qemu/target/arm/cpu.c (revision 69ceea64bf565559a2b865ffb2a097d2caab805b)
1fcf5ef2aSThomas Huth /*
2fcf5ef2aSThomas Huth  * QEMU ARM CPU
3fcf5ef2aSThomas Huth  *
4fcf5ef2aSThomas Huth  * Copyright (c) 2012 SUSE LINUX Products GmbH
5fcf5ef2aSThomas Huth  *
6fcf5ef2aSThomas Huth  * This program is free software; you can redistribute it and/or
7fcf5ef2aSThomas Huth  * modify it under the terms of the GNU General Public License
8fcf5ef2aSThomas Huth  * as published by the Free Software Foundation; either version 2
9fcf5ef2aSThomas Huth  * of the License, or (at your option) any later version.
10fcf5ef2aSThomas Huth  *
11fcf5ef2aSThomas Huth  * This program is distributed in the hope that it will be useful,
12fcf5ef2aSThomas Huth  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13fcf5ef2aSThomas Huth  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14fcf5ef2aSThomas Huth  * GNU General Public License for more details.
15fcf5ef2aSThomas Huth  *
16fcf5ef2aSThomas Huth  * You should have received a copy of the GNU General Public License
17fcf5ef2aSThomas Huth  * along with this program; if not, see
18fcf5ef2aSThomas Huth  * <http://www.gnu.org/licenses/gpl-2.0.html>
19fcf5ef2aSThomas Huth  */
20fcf5ef2aSThomas Huth 
21fcf5ef2aSThomas Huth #include "qemu/osdep.h"
22fcf5ef2aSThomas Huth #include "qemu/error-report.h"
23fcf5ef2aSThomas Huth #include "qapi/error.h"
24fcf5ef2aSThomas Huth #include "cpu.h"
25fcf5ef2aSThomas Huth #include "internals.h"
26fcf5ef2aSThomas Huth #include "qemu-common.h"
27fcf5ef2aSThomas Huth #include "exec/exec-all.h"
28fcf5ef2aSThomas Huth #include "hw/qdev-properties.h"
29fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
30fcf5ef2aSThomas Huth #include "hw/loader.h"
31fcf5ef2aSThomas Huth #endif
32fcf5ef2aSThomas Huth #include "hw/arm/arm.h"
33fcf5ef2aSThomas Huth #include "sysemu/sysemu.h"
34b3946626SVincent Palatin #include "sysemu/hw_accel.h"
35fcf5ef2aSThomas Huth #include "kvm_arm.h"
36fcf5ef2aSThomas Huth 
37fcf5ef2aSThomas Huth static void arm_cpu_set_pc(CPUState *cs, vaddr value)
38fcf5ef2aSThomas Huth {
39fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
40fcf5ef2aSThomas Huth 
41fcf5ef2aSThomas Huth     cpu->env.regs[15] = value;
42fcf5ef2aSThomas Huth }
43fcf5ef2aSThomas Huth 
44fcf5ef2aSThomas Huth static bool arm_cpu_has_work(CPUState *cs)
45fcf5ef2aSThomas Huth {
46fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
47fcf5ef2aSThomas Huth 
48062ba099SAlex Bennée     return (cpu->power_state != PSCI_OFF)
49fcf5ef2aSThomas Huth         && cs->interrupt_request &
50fcf5ef2aSThomas Huth         (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD
51fcf5ef2aSThomas Huth          | CPU_INTERRUPT_VFIQ | CPU_INTERRUPT_VIRQ
52fcf5ef2aSThomas Huth          | CPU_INTERRUPT_EXITTB);
53fcf5ef2aSThomas Huth }
54fcf5ef2aSThomas Huth 
55fcf5ef2aSThomas Huth void arm_register_el_change_hook(ARMCPU *cpu, ARMELChangeHook *hook,
56fcf5ef2aSThomas Huth                                  void *opaque)
57fcf5ef2aSThomas Huth {
58fcf5ef2aSThomas Huth     /* We currently only support registering a single hook function */
59fcf5ef2aSThomas Huth     assert(!cpu->el_change_hook);
60fcf5ef2aSThomas Huth     cpu->el_change_hook = hook;
61fcf5ef2aSThomas Huth     cpu->el_change_hook_opaque = opaque;
62fcf5ef2aSThomas Huth }
63fcf5ef2aSThomas Huth 
64fcf5ef2aSThomas Huth static void cp_reg_reset(gpointer key, gpointer value, gpointer opaque)
65fcf5ef2aSThomas Huth {
66fcf5ef2aSThomas Huth     /* Reset a single ARMCPRegInfo register */
67fcf5ef2aSThomas Huth     ARMCPRegInfo *ri = value;
68fcf5ef2aSThomas Huth     ARMCPU *cpu = opaque;
69fcf5ef2aSThomas Huth 
70fcf5ef2aSThomas Huth     if (ri->type & (ARM_CP_SPECIAL | ARM_CP_ALIAS)) {
71fcf5ef2aSThomas Huth         return;
72fcf5ef2aSThomas Huth     }
73fcf5ef2aSThomas Huth 
74fcf5ef2aSThomas Huth     if (ri->resetfn) {
75fcf5ef2aSThomas Huth         ri->resetfn(&cpu->env, ri);
76fcf5ef2aSThomas Huth         return;
77fcf5ef2aSThomas Huth     }
78fcf5ef2aSThomas Huth 
79fcf5ef2aSThomas Huth     /* A zero offset is never possible as it would be regs[0]
80fcf5ef2aSThomas Huth      * so we use it to indicate that reset is being handled elsewhere.
81fcf5ef2aSThomas Huth      * This is basically only used for fields in non-core coprocessors
82fcf5ef2aSThomas Huth      * (like the pxa2xx ones).
83fcf5ef2aSThomas Huth      */
84fcf5ef2aSThomas Huth     if (!ri->fieldoffset) {
85fcf5ef2aSThomas Huth         return;
86fcf5ef2aSThomas Huth     }
87fcf5ef2aSThomas Huth 
88fcf5ef2aSThomas Huth     if (cpreg_field_is_64bit(ri)) {
89fcf5ef2aSThomas Huth         CPREG_FIELD64(&cpu->env, ri) = ri->resetvalue;
90fcf5ef2aSThomas Huth     } else {
91fcf5ef2aSThomas Huth         CPREG_FIELD32(&cpu->env, ri) = ri->resetvalue;
92fcf5ef2aSThomas Huth     }
93fcf5ef2aSThomas Huth }
94fcf5ef2aSThomas Huth 
95fcf5ef2aSThomas Huth static void cp_reg_check_reset(gpointer key, gpointer value,  gpointer opaque)
96fcf5ef2aSThomas Huth {
97fcf5ef2aSThomas Huth     /* Purely an assertion check: we've already done reset once,
98fcf5ef2aSThomas Huth      * so now check that running the reset for the cpreg doesn't
99fcf5ef2aSThomas Huth      * change its value. This traps bugs where two different cpregs
100fcf5ef2aSThomas Huth      * both try to reset the same state field but to different values.
101fcf5ef2aSThomas Huth      */
102fcf5ef2aSThomas Huth     ARMCPRegInfo *ri = value;
103fcf5ef2aSThomas Huth     ARMCPU *cpu = opaque;
104fcf5ef2aSThomas Huth     uint64_t oldvalue, newvalue;
105fcf5ef2aSThomas Huth 
106fcf5ef2aSThomas Huth     if (ri->type & (ARM_CP_SPECIAL | ARM_CP_ALIAS | ARM_CP_NO_RAW)) {
107fcf5ef2aSThomas Huth         return;
108fcf5ef2aSThomas Huth     }
109fcf5ef2aSThomas Huth 
110fcf5ef2aSThomas Huth     oldvalue = read_raw_cp_reg(&cpu->env, ri);
111fcf5ef2aSThomas Huth     cp_reg_reset(key, value, opaque);
112fcf5ef2aSThomas Huth     newvalue = read_raw_cp_reg(&cpu->env, ri);
113fcf5ef2aSThomas Huth     assert(oldvalue == newvalue);
114fcf5ef2aSThomas Huth }
115fcf5ef2aSThomas Huth 
116fcf5ef2aSThomas Huth /* CPUClass::reset() */
117fcf5ef2aSThomas Huth static void arm_cpu_reset(CPUState *s)
118fcf5ef2aSThomas Huth {
119fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(s);
120fcf5ef2aSThomas Huth     ARMCPUClass *acc = ARM_CPU_GET_CLASS(cpu);
121fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
122fcf5ef2aSThomas Huth 
123fcf5ef2aSThomas Huth     acc->parent_reset(s);
124fcf5ef2aSThomas Huth 
1251f5c00cfSAlex Bennée     memset(env, 0, offsetof(CPUARMState, end_reset_fields));
1261f5c00cfSAlex Bennée 
127fcf5ef2aSThomas Huth     g_hash_table_foreach(cpu->cp_regs, cp_reg_reset, cpu);
128fcf5ef2aSThomas Huth     g_hash_table_foreach(cpu->cp_regs, cp_reg_check_reset, cpu);
129fcf5ef2aSThomas Huth 
130fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_FPSID] = cpu->reset_fpsid;
131fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_MVFR0] = cpu->mvfr0;
132fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_MVFR1] = cpu->mvfr1;
133fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_MVFR2] = cpu->mvfr2;
134fcf5ef2aSThomas Huth 
135062ba099SAlex Bennée     cpu->power_state = cpu->start_powered_off ? PSCI_OFF : PSCI_ON;
136fcf5ef2aSThomas Huth     s->halted = cpu->start_powered_off;
137fcf5ef2aSThomas Huth 
138fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
139fcf5ef2aSThomas Huth         env->iwmmxt.cregs[ARM_IWMMXT_wCID] = 0x69051000 | 'Q';
140fcf5ef2aSThomas Huth     }
141fcf5ef2aSThomas Huth 
142fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_AARCH64)) {
143fcf5ef2aSThomas Huth         /* 64 bit CPUs always start in 64 bit mode */
144fcf5ef2aSThomas Huth         env->aarch64 = 1;
145fcf5ef2aSThomas Huth #if defined(CONFIG_USER_ONLY)
146fcf5ef2aSThomas Huth         env->pstate = PSTATE_MODE_EL0t;
147fcf5ef2aSThomas Huth         /* Userspace expects access to DC ZVA, CTL_EL0 and the cache ops */
148fcf5ef2aSThomas Huth         env->cp15.sctlr_el[1] |= SCTLR_UCT | SCTLR_UCI | SCTLR_DZE;
149fcf5ef2aSThomas Huth         /* and to the FP/Neon instructions */
150fcf5ef2aSThomas Huth         env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 2, 3);
151fcf5ef2aSThomas Huth #else
152fcf5ef2aSThomas Huth         /* Reset into the highest available EL */
153fcf5ef2aSThomas Huth         if (arm_feature(env, ARM_FEATURE_EL3)) {
154fcf5ef2aSThomas Huth             env->pstate = PSTATE_MODE_EL3h;
155fcf5ef2aSThomas Huth         } else if (arm_feature(env, ARM_FEATURE_EL2)) {
156fcf5ef2aSThomas Huth             env->pstate = PSTATE_MODE_EL2h;
157fcf5ef2aSThomas Huth         } else {
158fcf5ef2aSThomas Huth             env->pstate = PSTATE_MODE_EL1h;
159fcf5ef2aSThomas Huth         }
160fcf5ef2aSThomas Huth         env->pc = cpu->rvbar;
161fcf5ef2aSThomas Huth #endif
162fcf5ef2aSThomas Huth     } else {
163fcf5ef2aSThomas Huth #if defined(CONFIG_USER_ONLY)
164fcf5ef2aSThomas Huth         /* Userspace expects access to cp10 and cp11 for FP/Neon */
165fcf5ef2aSThomas Huth         env->cp15.cpacr_el1 = deposit64(env->cp15.cpacr_el1, 20, 4, 0xf);
166fcf5ef2aSThomas Huth #endif
167fcf5ef2aSThomas Huth     }
168fcf5ef2aSThomas Huth 
169fcf5ef2aSThomas Huth #if defined(CONFIG_USER_ONLY)
170fcf5ef2aSThomas Huth     env->uncached_cpsr = ARM_CPU_MODE_USR;
171fcf5ef2aSThomas Huth     /* For user mode we must enable access to coprocessors */
172fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_FPEXC] = 1 << 30;
173fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
174fcf5ef2aSThomas Huth         env->cp15.c15_cpar = 3;
175fcf5ef2aSThomas Huth     } else if (arm_feature(env, ARM_FEATURE_XSCALE)) {
176fcf5ef2aSThomas Huth         env->cp15.c15_cpar = 1;
177fcf5ef2aSThomas Huth     }
178fcf5ef2aSThomas Huth #else
179fcf5ef2aSThomas Huth     /* SVC mode with interrupts disabled.  */
180fcf5ef2aSThomas Huth     env->uncached_cpsr = ARM_CPU_MODE_SVC;
181fcf5ef2aSThomas Huth     env->daif = PSTATE_D | PSTATE_A | PSTATE_I | PSTATE_F;
182dc7abe4dSMichael Davidsaver 
183531c60a9SPeter Maydell     if (arm_feature(env, ARM_FEATURE_M)) {
184fcf5ef2aSThomas Huth         uint32_t initial_msp; /* Loaded from 0x0 */
185fcf5ef2aSThomas Huth         uint32_t initial_pc; /* Loaded from 0x4 */
186fcf5ef2aSThomas Huth         uint8_t *rom;
187fcf5ef2aSThomas Huth 
188dc7abe4dSMichael Davidsaver         /* For M profile we store FAULTMASK and PRIMASK in the
189dc7abe4dSMichael Davidsaver          * PSTATE F and I bits; these are both clear at reset.
190dc7abe4dSMichael Davidsaver          */
191dc7abe4dSMichael Davidsaver         env->daif &= ~(PSTATE_I | PSTATE_F);
1922c4da50dSPeter Maydell 
1932c4da50dSPeter Maydell         /* The reset value of this bit is IMPDEF, but ARM recommends
1942c4da50dSPeter Maydell          * that it resets to 1, so QEMU always does that rather than making
1952c4da50dSPeter Maydell          * it dependent on CPU model.
1962c4da50dSPeter Maydell          */
1972c4da50dSPeter Maydell         env->v7m.ccr = R_V7M_CCR_STKALIGN_MASK;
1982c4da50dSPeter Maydell 
199056f43dfSPeter Maydell         /* Unlike A/R profile, M profile defines the reset LR value */
200056f43dfSPeter Maydell         env->regs[14] = 0xffffffff;
201056f43dfSPeter Maydell 
202dc7abe4dSMichael Davidsaver         /* Load the initial SP and PC from the vector table at address 0 */
203fcf5ef2aSThomas Huth         rom = rom_ptr(0);
204fcf5ef2aSThomas Huth         if (rom) {
205fcf5ef2aSThomas Huth             /* Address zero is covered by ROM which hasn't yet been
206fcf5ef2aSThomas Huth              * copied into physical memory.
207fcf5ef2aSThomas Huth              */
208fcf5ef2aSThomas Huth             initial_msp = ldl_p(rom);
209fcf5ef2aSThomas Huth             initial_pc = ldl_p(rom + 4);
210fcf5ef2aSThomas Huth         } else {
211fcf5ef2aSThomas Huth             /* Address zero not covered by a ROM blob, or the ROM blob
212fcf5ef2aSThomas Huth              * is in non-modifiable memory and this is a second reset after
213fcf5ef2aSThomas Huth              * it got copied into memory. In the latter case, rom_ptr
214fcf5ef2aSThomas Huth              * will return a NULL pointer and we should use ldl_phys instead.
215fcf5ef2aSThomas Huth              */
216fcf5ef2aSThomas Huth             initial_msp = ldl_phys(s->as, 0);
217fcf5ef2aSThomas Huth             initial_pc = ldl_phys(s->as, 4);
218fcf5ef2aSThomas Huth         }
219fcf5ef2aSThomas Huth 
220fcf5ef2aSThomas Huth         env->regs[13] = initial_msp & 0xFFFFFFFC;
221fcf5ef2aSThomas Huth         env->regs[15] = initial_pc & ~1;
222fcf5ef2aSThomas Huth         env->thumb = initial_pc & 1;
223fcf5ef2aSThomas Huth     }
224fcf5ef2aSThomas Huth 
225fcf5ef2aSThomas Huth     /* AArch32 has a hard highvec setting of 0xFFFF0000.  If we are currently
226fcf5ef2aSThomas Huth      * executing as AArch32 then check if highvecs are enabled and
227fcf5ef2aSThomas Huth      * adjust the PC accordingly.
228fcf5ef2aSThomas Huth      */
229fcf5ef2aSThomas Huth     if (A32_BANKED_CURRENT_REG_GET(env, sctlr) & SCTLR_V) {
230fcf5ef2aSThomas Huth         env->regs[15] = 0xFFFF0000;
231fcf5ef2aSThomas Huth     }
232fcf5ef2aSThomas Huth 
233fcf5ef2aSThomas Huth     env->vfp.xregs[ARM_VFP_FPEXC] = 0;
234fcf5ef2aSThomas Huth #endif
235*69ceea64SPeter Maydell 
236*69ceea64SPeter Maydell     if (arm_feature(env, ARM_FEATURE_PMSA) &&
237*69ceea64SPeter Maydell         arm_feature(env, ARM_FEATURE_V7)) {
238*69ceea64SPeter Maydell         if (cpu->pmsav7_dregion > 0) {
239*69ceea64SPeter Maydell             memset(env->pmsav7.drbar, 0,
240*69ceea64SPeter Maydell                    sizeof(*env->pmsav7.drbar) * cpu->pmsav7_dregion);
241*69ceea64SPeter Maydell             memset(env->pmsav7.drsr, 0,
242*69ceea64SPeter Maydell                    sizeof(*env->pmsav7.drsr) * cpu->pmsav7_dregion);
243*69ceea64SPeter Maydell             memset(env->pmsav7.dracr, 0,
244*69ceea64SPeter Maydell                    sizeof(*env->pmsav7.dracr) * cpu->pmsav7_dregion);
245*69ceea64SPeter Maydell         }
246*69ceea64SPeter Maydell         env->pmsav7.rnr = 0;
247*69ceea64SPeter Maydell     }
248*69ceea64SPeter Maydell 
249fcf5ef2aSThomas Huth     set_flush_to_zero(1, &env->vfp.standard_fp_status);
250fcf5ef2aSThomas Huth     set_flush_inputs_to_zero(1, &env->vfp.standard_fp_status);
251fcf5ef2aSThomas Huth     set_default_nan_mode(1, &env->vfp.standard_fp_status);
252fcf5ef2aSThomas Huth     set_float_detect_tininess(float_tininess_before_rounding,
253fcf5ef2aSThomas Huth                               &env->vfp.fp_status);
254fcf5ef2aSThomas Huth     set_float_detect_tininess(float_tininess_before_rounding,
255fcf5ef2aSThomas Huth                               &env->vfp.standard_fp_status);
256fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
257fcf5ef2aSThomas Huth     if (kvm_enabled()) {
258fcf5ef2aSThomas Huth         kvm_arm_reset_vcpu(cpu);
259fcf5ef2aSThomas Huth     }
260fcf5ef2aSThomas Huth #endif
261fcf5ef2aSThomas Huth 
262fcf5ef2aSThomas Huth     hw_breakpoint_update_all(cpu);
263fcf5ef2aSThomas Huth     hw_watchpoint_update_all(cpu);
264fcf5ef2aSThomas Huth }
265fcf5ef2aSThomas Huth 
266fcf5ef2aSThomas Huth bool arm_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
267fcf5ef2aSThomas Huth {
268fcf5ef2aSThomas Huth     CPUClass *cc = CPU_GET_CLASS(cs);
269fcf5ef2aSThomas Huth     CPUARMState *env = cs->env_ptr;
270fcf5ef2aSThomas Huth     uint32_t cur_el = arm_current_el(env);
271fcf5ef2aSThomas Huth     bool secure = arm_is_secure(env);
272fcf5ef2aSThomas Huth     uint32_t target_el;
273fcf5ef2aSThomas Huth     uint32_t excp_idx;
274fcf5ef2aSThomas Huth     bool ret = false;
275fcf5ef2aSThomas Huth 
276fcf5ef2aSThomas Huth     if (interrupt_request & CPU_INTERRUPT_FIQ) {
277fcf5ef2aSThomas Huth         excp_idx = EXCP_FIQ;
278fcf5ef2aSThomas Huth         target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
279fcf5ef2aSThomas Huth         if (arm_excp_unmasked(cs, excp_idx, target_el)) {
280fcf5ef2aSThomas Huth             cs->exception_index = excp_idx;
281fcf5ef2aSThomas Huth             env->exception.target_el = target_el;
282fcf5ef2aSThomas Huth             cc->do_interrupt(cs);
283fcf5ef2aSThomas Huth             ret = true;
284fcf5ef2aSThomas Huth         }
285fcf5ef2aSThomas Huth     }
286fcf5ef2aSThomas Huth     if (interrupt_request & CPU_INTERRUPT_HARD) {
287fcf5ef2aSThomas Huth         excp_idx = EXCP_IRQ;
288fcf5ef2aSThomas Huth         target_el = arm_phys_excp_target_el(cs, excp_idx, cur_el, secure);
289fcf5ef2aSThomas Huth         if (arm_excp_unmasked(cs, excp_idx, target_el)) {
290fcf5ef2aSThomas Huth             cs->exception_index = excp_idx;
291fcf5ef2aSThomas Huth             env->exception.target_el = target_el;
292fcf5ef2aSThomas Huth             cc->do_interrupt(cs);
293fcf5ef2aSThomas Huth             ret = true;
294fcf5ef2aSThomas Huth         }
295fcf5ef2aSThomas Huth     }
296fcf5ef2aSThomas Huth     if (interrupt_request & CPU_INTERRUPT_VIRQ) {
297fcf5ef2aSThomas Huth         excp_idx = EXCP_VIRQ;
298fcf5ef2aSThomas Huth         target_el = 1;
299fcf5ef2aSThomas Huth         if (arm_excp_unmasked(cs, excp_idx, target_el)) {
300fcf5ef2aSThomas Huth             cs->exception_index = excp_idx;
301fcf5ef2aSThomas Huth             env->exception.target_el = target_el;
302fcf5ef2aSThomas Huth             cc->do_interrupt(cs);
303fcf5ef2aSThomas Huth             ret = true;
304fcf5ef2aSThomas Huth         }
305fcf5ef2aSThomas Huth     }
306fcf5ef2aSThomas Huth     if (interrupt_request & CPU_INTERRUPT_VFIQ) {
307fcf5ef2aSThomas Huth         excp_idx = EXCP_VFIQ;
308fcf5ef2aSThomas Huth         target_el = 1;
309fcf5ef2aSThomas Huth         if (arm_excp_unmasked(cs, excp_idx, target_el)) {
310fcf5ef2aSThomas Huth             cs->exception_index = excp_idx;
311fcf5ef2aSThomas Huth             env->exception.target_el = target_el;
312fcf5ef2aSThomas Huth             cc->do_interrupt(cs);
313fcf5ef2aSThomas Huth             ret = true;
314fcf5ef2aSThomas Huth         }
315fcf5ef2aSThomas Huth     }
316fcf5ef2aSThomas Huth 
317fcf5ef2aSThomas Huth     return ret;
318fcf5ef2aSThomas Huth }
319fcf5ef2aSThomas Huth 
320fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
321fcf5ef2aSThomas Huth static bool arm_v7m_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
322fcf5ef2aSThomas Huth {
323fcf5ef2aSThomas Huth     CPUClass *cc = CPU_GET_CLASS(cs);
324fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
325fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
326fcf5ef2aSThomas Huth     bool ret = false;
327fcf5ef2aSThomas Huth 
328f4e8e4edSPeter Maydell     /* ARMv7-M interrupt masking works differently than -A or -R.
3297ecdaa4aSPeter Maydell      * There is no FIQ/IRQ distinction. Instead of I and F bits
3307ecdaa4aSPeter Maydell      * masking FIQ and IRQ interrupts, an exception is taken only
3317ecdaa4aSPeter Maydell      * if it is higher priority than the current execution priority
3327ecdaa4aSPeter Maydell      * (which depends on state like BASEPRI, FAULTMASK and the
3337ecdaa4aSPeter Maydell      * currently active exception).
334fcf5ef2aSThomas Huth      */
335fcf5ef2aSThomas Huth     if (interrupt_request & CPU_INTERRUPT_HARD
336f4e8e4edSPeter Maydell         && (armv7m_nvic_can_take_pending_exception(env->nvic))) {
337fcf5ef2aSThomas Huth         cs->exception_index = EXCP_IRQ;
338fcf5ef2aSThomas Huth         cc->do_interrupt(cs);
339fcf5ef2aSThomas Huth         ret = true;
340fcf5ef2aSThomas Huth     }
341fcf5ef2aSThomas Huth     return ret;
342fcf5ef2aSThomas Huth }
343fcf5ef2aSThomas Huth #endif
344fcf5ef2aSThomas Huth 
345fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
346fcf5ef2aSThomas Huth static void arm_cpu_set_irq(void *opaque, int irq, int level)
347fcf5ef2aSThomas Huth {
348fcf5ef2aSThomas Huth     ARMCPU *cpu = opaque;
349fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
350fcf5ef2aSThomas Huth     CPUState *cs = CPU(cpu);
351fcf5ef2aSThomas Huth     static const int mask[] = {
352fcf5ef2aSThomas Huth         [ARM_CPU_IRQ] = CPU_INTERRUPT_HARD,
353fcf5ef2aSThomas Huth         [ARM_CPU_FIQ] = CPU_INTERRUPT_FIQ,
354fcf5ef2aSThomas Huth         [ARM_CPU_VIRQ] = CPU_INTERRUPT_VIRQ,
355fcf5ef2aSThomas Huth         [ARM_CPU_VFIQ] = CPU_INTERRUPT_VFIQ
356fcf5ef2aSThomas Huth     };
357fcf5ef2aSThomas Huth 
358fcf5ef2aSThomas Huth     switch (irq) {
359fcf5ef2aSThomas Huth     case ARM_CPU_VIRQ:
360fcf5ef2aSThomas Huth     case ARM_CPU_VFIQ:
361fcf5ef2aSThomas Huth         assert(arm_feature(env, ARM_FEATURE_EL2));
362fcf5ef2aSThomas Huth         /* fall through */
363fcf5ef2aSThomas Huth     case ARM_CPU_IRQ:
364fcf5ef2aSThomas Huth     case ARM_CPU_FIQ:
365fcf5ef2aSThomas Huth         if (level) {
366fcf5ef2aSThomas Huth             cpu_interrupt(cs, mask[irq]);
367fcf5ef2aSThomas Huth         } else {
368fcf5ef2aSThomas Huth             cpu_reset_interrupt(cs, mask[irq]);
369fcf5ef2aSThomas Huth         }
370fcf5ef2aSThomas Huth         break;
371fcf5ef2aSThomas Huth     default:
372fcf5ef2aSThomas Huth         g_assert_not_reached();
373fcf5ef2aSThomas Huth     }
374fcf5ef2aSThomas Huth }
375fcf5ef2aSThomas Huth 
376fcf5ef2aSThomas Huth static void arm_cpu_kvm_set_irq(void *opaque, int irq, int level)
377fcf5ef2aSThomas Huth {
378fcf5ef2aSThomas Huth #ifdef CONFIG_KVM
379fcf5ef2aSThomas Huth     ARMCPU *cpu = opaque;
380fcf5ef2aSThomas Huth     CPUState *cs = CPU(cpu);
381fcf5ef2aSThomas Huth     int kvm_irq = KVM_ARM_IRQ_TYPE_CPU << KVM_ARM_IRQ_TYPE_SHIFT;
382fcf5ef2aSThomas Huth 
383fcf5ef2aSThomas Huth     switch (irq) {
384fcf5ef2aSThomas Huth     case ARM_CPU_IRQ:
385fcf5ef2aSThomas Huth         kvm_irq |= KVM_ARM_IRQ_CPU_IRQ;
386fcf5ef2aSThomas Huth         break;
387fcf5ef2aSThomas Huth     case ARM_CPU_FIQ:
388fcf5ef2aSThomas Huth         kvm_irq |= KVM_ARM_IRQ_CPU_FIQ;
389fcf5ef2aSThomas Huth         break;
390fcf5ef2aSThomas Huth     default:
391fcf5ef2aSThomas Huth         g_assert_not_reached();
392fcf5ef2aSThomas Huth     }
393fcf5ef2aSThomas Huth     kvm_irq |= cs->cpu_index << KVM_ARM_IRQ_VCPU_SHIFT;
394fcf5ef2aSThomas Huth     kvm_set_irq(kvm_state, kvm_irq, level ? 1 : 0);
395fcf5ef2aSThomas Huth #endif
396fcf5ef2aSThomas Huth }
397fcf5ef2aSThomas Huth 
398fcf5ef2aSThomas Huth static bool arm_cpu_virtio_is_big_endian(CPUState *cs)
399fcf5ef2aSThomas Huth {
400fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
401fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
402fcf5ef2aSThomas Huth 
403fcf5ef2aSThomas Huth     cpu_synchronize_state(cs);
404fcf5ef2aSThomas Huth     return arm_cpu_data_is_big_endian(env);
405fcf5ef2aSThomas Huth }
406fcf5ef2aSThomas Huth 
407fcf5ef2aSThomas Huth #endif
408fcf5ef2aSThomas Huth 
409fcf5ef2aSThomas Huth static inline void set_feature(CPUARMState *env, int feature)
410fcf5ef2aSThomas Huth {
411fcf5ef2aSThomas Huth     env->features |= 1ULL << feature;
412fcf5ef2aSThomas Huth }
413fcf5ef2aSThomas Huth 
414fcf5ef2aSThomas Huth static inline void unset_feature(CPUARMState *env, int feature)
415fcf5ef2aSThomas Huth {
416fcf5ef2aSThomas Huth     env->features &= ~(1ULL << feature);
417fcf5ef2aSThomas Huth }
418fcf5ef2aSThomas Huth 
419fcf5ef2aSThomas Huth static int
420fcf5ef2aSThomas Huth print_insn_thumb1(bfd_vma pc, disassemble_info *info)
421fcf5ef2aSThomas Huth {
422fcf5ef2aSThomas Huth   return print_insn_arm(pc | 1, info);
423fcf5ef2aSThomas Huth }
424fcf5ef2aSThomas Huth 
425f7478a92SJulian Brown static int arm_read_memory_func(bfd_vma memaddr, bfd_byte *b,
426f7478a92SJulian Brown                                 int length, struct disassemble_info *info)
427f7478a92SJulian Brown {
428f7478a92SJulian Brown     assert(info->read_memory_inner_func);
429f7478a92SJulian Brown     assert((info->flags & INSN_ARM_BE32) == 0 || length == 2 || length == 4);
430f7478a92SJulian Brown 
431f7478a92SJulian Brown     if ((info->flags & INSN_ARM_BE32) != 0 && length == 2) {
432f7478a92SJulian Brown         assert(info->endian == BFD_ENDIAN_LITTLE);
433f7478a92SJulian Brown         return info->read_memory_inner_func(memaddr ^ 2, (bfd_byte *)b, 2,
434f7478a92SJulian Brown                                             info);
435f7478a92SJulian Brown     } else {
436f7478a92SJulian Brown         return info->read_memory_inner_func(memaddr, b, length, info);
437f7478a92SJulian Brown     }
438f7478a92SJulian Brown }
439f7478a92SJulian Brown 
440fcf5ef2aSThomas Huth static void arm_disas_set_info(CPUState *cpu, disassemble_info *info)
441fcf5ef2aSThomas Huth {
442fcf5ef2aSThomas Huth     ARMCPU *ac = ARM_CPU(cpu);
443fcf5ef2aSThomas Huth     CPUARMState *env = &ac->env;
444fcf5ef2aSThomas Huth 
445fcf5ef2aSThomas Huth     if (is_a64(env)) {
446fcf5ef2aSThomas Huth         /* We might not be compiled with the A64 disassembler
447fcf5ef2aSThomas Huth          * because it needs a C++ compiler. Leave print_insn
448fcf5ef2aSThomas Huth          * unset in this case to use the caller default behaviour.
449fcf5ef2aSThomas Huth          */
450fcf5ef2aSThomas Huth #if defined(CONFIG_ARM_A64_DIS)
451fcf5ef2aSThomas Huth         info->print_insn = print_insn_arm_a64;
452fcf5ef2aSThomas Huth #endif
453fcf5ef2aSThomas Huth     } else if (env->thumb) {
454fcf5ef2aSThomas Huth         info->print_insn = print_insn_thumb1;
455fcf5ef2aSThomas Huth     } else {
456fcf5ef2aSThomas Huth         info->print_insn = print_insn_arm;
457fcf5ef2aSThomas Huth     }
458fcf5ef2aSThomas Huth     if (bswap_code(arm_sctlr_b(env))) {
459fcf5ef2aSThomas Huth #ifdef TARGET_WORDS_BIGENDIAN
460fcf5ef2aSThomas Huth         info->endian = BFD_ENDIAN_LITTLE;
461fcf5ef2aSThomas Huth #else
462fcf5ef2aSThomas Huth         info->endian = BFD_ENDIAN_BIG;
463fcf5ef2aSThomas Huth #endif
464fcf5ef2aSThomas Huth     }
465f7478a92SJulian Brown     if (info->read_memory_inner_func == NULL) {
466f7478a92SJulian Brown         info->read_memory_inner_func = info->read_memory_func;
467f7478a92SJulian Brown         info->read_memory_func = arm_read_memory_func;
468f7478a92SJulian Brown     }
469f7478a92SJulian Brown     info->flags &= ~INSN_ARM_BE32;
470f7478a92SJulian Brown     if (arm_sctlr_b(env)) {
471f7478a92SJulian Brown         info->flags |= INSN_ARM_BE32;
472f7478a92SJulian Brown     }
473fcf5ef2aSThomas Huth }
474fcf5ef2aSThomas Huth 
47546de5913SIgor Mammedov uint64_t arm_cpu_mp_affinity(int idx, uint8_t clustersz)
47646de5913SIgor Mammedov {
47746de5913SIgor Mammedov     uint32_t Aff1 = idx / clustersz;
47846de5913SIgor Mammedov     uint32_t Aff0 = idx % clustersz;
47946de5913SIgor Mammedov     return (Aff1 << ARM_AFF1_SHIFT) | Aff0;
48046de5913SIgor Mammedov }
48146de5913SIgor Mammedov 
482fcf5ef2aSThomas Huth static void arm_cpu_initfn(Object *obj)
483fcf5ef2aSThomas Huth {
484fcf5ef2aSThomas Huth     CPUState *cs = CPU(obj);
485fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
486fcf5ef2aSThomas Huth     static bool inited;
487fcf5ef2aSThomas Huth 
488fcf5ef2aSThomas Huth     cs->env_ptr = &cpu->env;
489fcf5ef2aSThomas Huth     cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal,
490fcf5ef2aSThomas Huth                                          g_free, g_free);
491fcf5ef2aSThomas Huth 
492fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
493fcf5ef2aSThomas Huth     /* Our inbound IRQ and FIQ lines */
494fcf5ef2aSThomas Huth     if (kvm_enabled()) {
495fcf5ef2aSThomas Huth         /* VIRQ and VFIQ are unused with KVM but we add them to maintain
496fcf5ef2aSThomas Huth          * the same interface as non-KVM CPUs.
497fcf5ef2aSThomas Huth          */
498fcf5ef2aSThomas Huth         qdev_init_gpio_in(DEVICE(cpu), arm_cpu_kvm_set_irq, 4);
499fcf5ef2aSThomas Huth     } else {
500fcf5ef2aSThomas Huth         qdev_init_gpio_in(DEVICE(cpu), arm_cpu_set_irq, 4);
501fcf5ef2aSThomas Huth     }
502fcf5ef2aSThomas Huth 
503fcf5ef2aSThomas Huth     cpu->gt_timer[GTIMER_PHYS] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
504fcf5ef2aSThomas Huth                                                 arm_gt_ptimer_cb, cpu);
505fcf5ef2aSThomas Huth     cpu->gt_timer[GTIMER_VIRT] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
506fcf5ef2aSThomas Huth                                                 arm_gt_vtimer_cb, cpu);
507fcf5ef2aSThomas Huth     cpu->gt_timer[GTIMER_HYP] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
508fcf5ef2aSThomas Huth                                                 arm_gt_htimer_cb, cpu);
509fcf5ef2aSThomas Huth     cpu->gt_timer[GTIMER_SEC] = timer_new(QEMU_CLOCK_VIRTUAL, GTIMER_SCALE,
510fcf5ef2aSThomas Huth                                                 arm_gt_stimer_cb, cpu);
511fcf5ef2aSThomas Huth     qdev_init_gpio_out(DEVICE(cpu), cpu->gt_timer_outputs,
512fcf5ef2aSThomas Huth                        ARRAY_SIZE(cpu->gt_timer_outputs));
513aa1b3111SPeter Maydell 
514aa1b3111SPeter Maydell     qdev_init_gpio_out_named(DEVICE(cpu), &cpu->gicv3_maintenance_interrupt,
515aa1b3111SPeter Maydell                              "gicv3-maintenance-interrupt", 1);
516fcf5ef2aSThomas Huth #endif
517fcf5ef2aSThomas Huth 
518fcf5ef2aSThomas Huth     /* DTB consumers generally don't in fact care what the 'compatible'
519fcf5ef2aSThomas Huth      * string is, so always provide some string and trust that a hypothetical
520fcf5ef2aSThomas Huth      * picky DTB consumer will also provide a helpful error message.
521fcf5ef2aSThomas Huth      */
522fcf5ef2aSThomas Huth     cpu->dtb_compatible = "qemu,unknown";
523fcf5ef2aSThomas Huth     cpu->psci_version = 1; /* By default assume PSCI v0.1 */
524fcf5ef2aSThomas Huth     cpu->kvm_target = QEMU_KVM_ARM_TARGET_NONE;
525fcf5ef2aSThomas Huth 
526fcf5ef2aSThomas Huth     if (tcg_enabled()) {
527fcf5ef2aSThomas Huth         cpu->psci_version = 2; /* TCG implements PSCI 0.2 */
528fcf5ef2aSThomas Huth         if (!inited) {
529fcf5ef2aSThomas Huth             inited = true;
530fcf5ef2aSThomas Huth             arm_translate_init();
531fcf5ef2aSThomas Huth         }
532fcf5ef2aSThomas Huth     }
533fcf5ef2aSThomas Huth }
534fcf5ef2aSThomas Huth 
535fcf5ef2aSThomas Huth static Property arm_cpu_reset_cbar_property =
536fcf5ef2aSThomas Huth             DEFINE_PROP_UINT64("reset-cbar", ARMCPU, reset_cbar, 0);
537fcf5ef2aSThomas Huth 
538fcf5ef2aSThomas Huth static Property arm_cpu_reset_hivecs_property =
539fcf5ef2aSThomas Huth             DEFINE_PROP_BOOL("reset-hivecs", ARMCPU, reset_hivecs, false);
540fcf5ef2aSThomas Huth 
541fcf5ef2aSThomas Huth static Property arm_cpu_rvbar_property =
542fcf5ef2aSThomas Huth             DEFINE_PROP_UINT64("rvbar", ARMCPU, rvbar, 0);
543fcf5ef2aSThomas Huth 
544c25bd18aSPeter Maydell static Property arm_cpu_has_el2_property =
545c25bd18aSPeter Maydell             DEFINE_PROP_BOOL("has_el2", ARMCPU, has_el2, true);
546c25bd18aSPeter Maydell 
547fcf5ef2aSThomas Huth static Property arm_cpu_has_el3_property =
548fcf5ef2aSThomas Huth             DEFINE_PROP_BOOL("has_el3", ARMCPU, has_el3, true);
549fcf5ef2aSThomas Huth 
5503a062d57SJulian Brown static Property arm_cpu_cfgend_property =
5513a062d57SJulian Brown             DEFINE_PROP_BOOL("cfgend", ARMCPU, cfgend, false);
5523a062d57SJulian Brown 
553fcf5ef2aSThomas Huth /* use property name "pmu" to match other archs and virt tools */
554fcf5ef2aSThomas Huth static Property arm_cpu_has_pmu_property =
555fcf5ef2aSThomas Huth             DEFINE_PROP_BOOL("pmu", ARMCPU, has_pmu, true);
556fcf5ef2aSThomas Huth 
557fcf5ef2aSThomas Huth static Property arm_cpu_has_mpu_property =
558fcf5ef2aSThomas Huth             DEFINE_PROP_BOOL("has-mpu", ARMCPU, has_mpu, true);
559fcf5ef2aSThomas Huth 
5608d92e26bSPeter Maydell /* This is like DEFINE_PROP_UINT32 but it doesn't set the default value,
5618d92e26bSPeter Maydell  * because the CPU initfn will have already set cpu->pmsav7_dregion to
5628d92e26bSPeter Maydell  * the right value for that particular CPU type, and we don't want
5638d92e26bSPeter Maydell  * to override that with an incorrect constant value.
5648d92e26bSPeter Maydell  */
565fcf5ef2aSThomas Huth static Property arm_cpu_pmsav7_dregion_property =
5668d92e26bSPeter Maydell             DEFINE_PROP_UNSIGNED_NODEFAULT("pmsav7-dregion", ARMCPU,
5678d92e26bSPeter Maydell                                            pmsav7_dregion,
5688d92e26bSPeter Maydell                                            qdev_prop_uint32, uint32_t);
569fcf5ef2aSThomas Huth 
570fcf5ef2aSThomas Huth static void arm_cpu_post_init(Object *obj)
571fcf5ef2aSThomas Huth {
572fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
573fcf5ef2aSThomas Huth 
574790a1150SPeter Maydell     /* M profile implies PMSA. We have to do this here rather than
575790a1150SPeter Maydell      * in realize with the other feature-implication checks because
576790a1150SPeter Maydell      * we look at the PMSA bit to see if we should add some properties.
577790a1150SPeter Maydell      */
578790a1150SPeter Maydell     if (arm_feature(&cpu->env, ARM_FEATURE_M)) {
579790a1150SPeter Maydell         set_feature(&cpu->env, ARM_FEATURE_PMSA);
580790a1150SPeter Maydell     }
581790a1150SPeter Maydell 
582fcf5ef2aSThomas Huth     if (arm_feature(&cpu->env, ARM_FEATURE_CBAR) ||
583fcf5ef2aSThomas Huth         arm_feature(&cpu->env, ARM_FEATURE_CBAR_RO)) {
584fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_cbar_property,
585fcf5ef2aSThomas Huth                                  &error_abort);
586fcf5ef2aSThomas Huth     }
587fcf5ef2aSThomas Huth 
588fcf5ef2aSThomas Huth     if (!arm_feature(&cpu->env, ARM_FEATURE_M)) {
589fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_reset_hivecs_property,
590fcf5ef2aSThomas Huth                                  &error_abort);
591fcf5ef2aSThomas Huth     }
592fcf5ef2aSThomas Huth 
593fcf5ef2aSThomas Huth     if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
594fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_rvbar_property,
595fcf5ef2aSThomas Huth                                  &error_abort);
596fcf5ef2aSThomas Huth     }
597fcf5ef2aSThomas Huth 
598fcf5ef2aSThomas Huth     if (arm_feature(&cpu->env, ARM_FEATURE_EL3)) {
599fcf5ef2aSThomas Huth         /* Add the has_el3 state CPU property only if EL3 is allowed.  This will
600fcf5ef2aSThomas Huth          * prevent "has_el3" from existing on CPUs which cannot support EL3.
601fcf5ef2aSThomas Huth          */
602fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el3_property,
603fcf5ef2aSThomas Huth                                  &error_abort);
604fcf5ef2aSThomas Huth 
605fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
606fcf5ef2aSThomas Huth         object_property_add_link(obj, "secure-memory",
607fcf5ef2aSThomas Huth                                  TYPE_MEMORY_REGION,
608fcf5ef2aSThomas Huth                                  (Object **)&cpu->secure_memory,
609fcf5ef2aSThomas Huth                                  qdev_prop_allow_set_link_before_realize,
610fcf5ef2aSThomas Huth                                  OBJ_PROP_LINK_UNREF_ON_RELEASE,
611fcf5ef2aSThomas Huth                                  &error_abort);
612fcf5ef2aSThomas Huth #endif
613fcf5ef2aSThomas Huth     }
614fcf5ef2aSThomas Huth 
615c25bd18aSPeter Maydell     if (arm_feature(&cpu->env, ARM_FEATURE_EL2)) {
616c25bd18aSPeter Maydell         qdev_property_add_static(DEVICE(obj), &arm_cpu_has_el2_property,
617c25bd18aSPeter Maydell                                  &error_abort);
618c25bd18aSPeter Maydell     }
619c25bd18aSPeter Maydell 
620fcf5ef2aSThomas Huth     if (arm_feature(&cpu->env, ARM_FEATURE_PMU)) {
621fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_has_pmu_property,
622fcf5ef2aSThomas Huth                                  &error_abort);
623fcf5ef2aSThomas Huth     }
624fcf5ef2aSThomas Huth 
625452a0955SPeter Maydell     if (arm_feature(&cpu->env, ARM_FEATURE_PMSA)) {
626fcf5ef2aSThomas Huth         qdev_property_add_static(DEVICE(obj), &arm_cpu_has_mpu_property,
627fcf5ef2aSThomas Huth                                  &error_abort);
628fcf5ef2aSThomas Huth         if (arm_feature(&cpu->env, ARM_FEATURE_V7)) {
629fcf5ef2aSThomas Huth             qdev_property_add_static(DEVICE(obj),
630fcf5ef2aSThomas Huth                                      &arm_cpu_pmsav7_dregion_property,
631fcf5ef2aSThomas Huth                                      &error_abort);
632fcf5ef2aSThomas Huth         }
633fcf5ef2aSThomas Huth     }
634fcf5ef2aSThomas Huth 
6353a062d57SJulian Brown     qdev_property_add_static(DEVICE(obj), &arm_cpu_cfgend_property,
6363a062d57SJulian Brown                              &error_abort);
637fcf5ef2aSThomas Huth }
638fcf5ef2aSThomas Huth 
639fcf5ef2aSThomas Huth static void arm_cpu_finalizefn(Object *obj)
640fcf5ef2aSThomas Huth {
641fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
642fcf5ef2aSThomas Huth     g_hash_table_destroy(cpu->cp_regs);
643fcf5ef2aSThomas Huth }
644fcf5ef2aSThomas Huth 
645fcf5ef2aSThomas Huth static void arm_cpu_realizefn(DeviceState *dev, Error **errp)
646fcf5ef2aSThomas Huth {
647fcf5ef2aSThomas Huth     CPUState *cs = CPU(dev);
648fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(dev);
649fcf5ef2aSThomas Huth     ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev);
650fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
651fcf5ef2aSThomas Huth     int pagebits;
652fcf5ef2aSThomas Huth     Error *local_err = NULL;
653fcf5ef2aSThomas Huth 
654fcf5ef2aSThomas Huth     cpu_exec_realizefn(cs, &local_err);
655fcf5ef2aSThomas Huth     if (local_err != NULL) {
656fcf5ef2aSThomas Huth         error_propagate(errp, local_err);
657fcf5ef2aSThomas Huth         return;
658fcf5ef2aSThomas Huth     }
659fcf5ef2aSThomas Huth 
660fcf5ef2aSThomas Huth     /* Some features automatically imply others: */
661fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V8)) {
662fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_V7);
663fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_ARM_DIV);
664fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_LPAE);
665fcf5ef2aSThomas Huth     }
666fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V7)) {
667fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_VAPA);
668fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_THUMB2);
669fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_MPIDR);
670fcf5ef2aSThomas Huth         if (!arm_feature(env, ARM_FEATURE_M)) {
671fcf5ef2aSThomas Huth             set_feature(env, ARM_FEATURE_V6K);
672fcf5ef2aSThomas Huth         } else {
673fcf5ef2aSThomas Huth             set_feature(env, ARM_FEATURE_V6);
674fcf5ef2aSThomas Huth         }
67591db4642SCédric Le Goater 
67691db4642SCédric Le Goater         /* Always define VBAR for V7 CPUs even if it doesn't exist in
67791db4642SCédric Le Goater          * non-EL3 configs. This is needed by some legacy boards.
67891db4642SCédric Le Goater          */
67991db4642SCédric Le Goater         set_feature(env, ARM_FEATURE_VBAR);
680fcf5ef2aSThomas Huth     }
681fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V6K)) {
682fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_V6);
683fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_MVFR);
684fcf5ef2aSThomas Huth     }
685fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V6)) {
686fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_V5);
687fcf5ef2aSThomas Huth         if (!arm_feature(env, ARM_FEATURE_M)) {
688fcf5ef2aSThomas Huth             set_feature(env, ARM_FEATURE_AUXCR);
689fcf5ef2aSThomas Huth         }
690fcf5ef2aSThomas Huth     }
691fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V5)) {
692fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_V4T);
693fcf5ef2aSThomas Huth     }
694fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_M)) {
695fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_THUMB_DIV);
696fcf5ef2aSThomas Huth     }
697fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_ARM_DIV)) {
698fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_THUMB_DIV);
699fcf5ef2aSThomas Huth     }
700fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_VFP4)) {
701fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_VFP3);
702fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_VFP_FP16);
703fcf5ef2aSThomas Huth     }
704fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_VFP3)) {
705fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_VFP);
706fcf5ef2aSThomas Huth     }
707fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_LPAE)) {
708fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_V7MP);
709fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_PXN);
710fcf5ef2aSThomas Huth     }
711fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_CBAR_RO)) {
712fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_CBAR);
713fcf5ef2aSThomas Huth     }
714fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_THUMB2) &&
715fcf5ef2aSThomas Huth         !arm_feature(env, ARM_FEATURE_M)) {
716fcf5ef2aSThomas Huth         set_feature(env, ARM_FEATURE_THUMB_DSP);
717fcf5ef2aSThomas Huth     }
718fcf5ef2aSThomas Huth 
719fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_V7) &&
720fcf5ef2aSThomas Huth         !arm_feature(env, ARM_FEATURE_M) &&
721452a0955SPeter Maydell         !arm_feature(env, ARM_FEATURE_PMSA)) {
722fcf5ef2aSThomas Huth         /* v7VMSA drops support for the old ARMv5 tiny pages, so we
723fcf5ef2aSThomas Huth          * can use 4K pages.
724fcf5ef2aSThomas Huth          */
725fcf5ef2aSThomas Huth         pagebits = 12;
726fcf5ef2aSThomas Huth     } else {
727fcf5ef2aSThomas Huth         /* For CPUs which might have tiny 1K pages, or which have an
728fcf5ef2aSThomas Huth          * MPU and might have small region sizes, stick with 1K pages.
729fcf5ef2aSThomas Huth          */
730fcf5ef2aSThomas Huth         pagebits = 10;
731fcf5ef2aSThomas Huth     }
732fcf5ef2aSThomas Huth     if (!set_preferred_target_page_bits(pagebits)) {
733fcf5ef2aSThomas Huth         /* This can only ever happen for hotplugging a CPU, or if
734fcf5ef2aSThomas Huth          * the board code incorrectly creates a CPU which it has
735fcf5ef2aSThomas Huth          * promised via minimum_page_size that it will not.
736fcf5ef2aSThomas Huth          */
737fcf5ef2aSThomas Huth         error_setg(errp, "This CPU requires a smaller page size than the "
738fcf5ef2aSThomas Huth                    "system is using");
739fcf5ef2aSThomas Huth         return;
740fcf5ef2aSThomas Huth     }
741fcf5ef2aSThomas Huth 
742fcf5ef2aSThomas Huth     /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it.
743fcf5ef2aSThomas Huth      * We don't support setting cluster ID ([16..23]) (known as Aff2
744fcf5ef2aSThomas Huth      * in later ARM ARM versions), or any of the higher affinity level fields,
745fcf5ef2aSThomas Huth      * so these bits always RAZ.
746fcf5ef2aSThomas Huth      */
747fcf5ef2aSThomas Huth     if (cpu->mp_affinity == ARM64_AFFINITY_INVALID) {
74846de5913SIgor Mammedov         cpu->mp_affinity = arm_cpu_mp_affinity(cs->cpu_index,
74946de5913SIgor Mammedov                                                ARM_DEFAULT_CPUS_PER_CLUSTER);
750fcf5ef2aSThomas Huth     }
751fcf5ef2aSThomas Huth 
752fcf5ef2aSThomas Huth     if (cpu->reset_hivecs) {
753fcf5ef2aSThomas Huth             cpu->reset_sctlr |= (1 << 13);
754fcf5ef2aSThomas Huth     }
755fcf5ef2aSThomas Huth 
7563a062d57SJulian Brown     if (cpu->cfgend) {
7573a062d57SJulian Brown         if (arm_feature(&cpu->env, ARM_FEATURE_V7)) {
7583a062d57SJulian Brown             cpu->reset_sctlr |= SCTLR_EE;
7593a062d57SJulian Brown         } else {
7603a062d57SJulian Brown             cpu->reset_sctlr |= SCTLR_B;
7613a062d57SJulian Brown         }
7623a062d57SJulian Brown     }
7633a062d57SJulian Brown 
764fcf5ef2aSThomas Huth     if (!cpu->has_el3) {
765fcf5ef2aSThomas Huth         /* If the has_el3 CPU property is disabled then we need to disable the
766fcf5ef2aSThomas Huth          * feature.
767fcf5ef2aSThomas Huth          */
768fcf5ef2aSThomas Huth         unset_feature(env, ARM_FEATURE_EL3);
769fcf5ef2aSThomas Huth 
770fcf5ef2aSThomas Huth         /* Disable the security extension feature bits in the processor feature
771fcf5ef2aSThomas Huth          * registers as well. These are id_pfr1[7:4] and id_aa64pfr0[15:12].
772fcf5ef2aSThomas Huth          */
773fcf5ef2aSThomas Huth         cpu->id_pfr1 &= ~0xf0;
774fcf5ef2aSThomas Huth         cpu->id_aa64pfr0 &= ~0xf000;
775fcf5ef2aSThomas Huth     }
776fcf5ef2aSThomas Huth 
777c25bd18aSPeter Maydell     if (!cpu->has_el2) {
778c25bd18aSPeter Maydell         unset_feature(env, ARM_FEATURE_EL2);
779c25bd18aSPeter Maydell     }
780c25bd18aSPeter Maydell 
781d6f02ce3SWei Huang     if (!cpu->has_pmu) {
782fcf5ef2aSThomas Huth         unset_feature(env, ARM_FEATURE_PMU);
7832b3ffa92SWei Huang         cpu->id_aa64dfr0 &= ~0xf00;
784fcf5ef2aSThomas Huth     }
785fcf5ef2aSThomas Huth 
786fcf5ef2aSThomas Huth     if (!arm_feature(env, ARM_FEATURE_EL2)) {
787fcf5ef2aSThomas Huth         /* Disable the hypervisor feature bits in the processor feature
788fcf5ef2aSThomas Huth          * registers if we don't have EL2. These are id_pfr1[15:12] and
789fcf5ef2aSThomas Huth          * id_aa64pfr0_el1[11:8].
790fcf5ef2aSThomas Huth          */
791fcf5ef2aSThomas Huth         cpu->id_aa64pfr0 &= ~0xf00;
792fcf5ef2aSThomas Huth         cpu->id_pfr1 &= ~0xf000;
793fcf5ef2aSThomas Huth     }
794fcf5ef2aSThomas Huth 
795f50cd314SPeter Maydell     /* MPU can be configured out of a PMSA CPU either by setting has-mpu
796f50cd314SPeter Maydell      * to false or by setting pmsav7-dregion to 0.
797f50cd314SPeter Maydell      */
798fcf5ef2aSThomas Huth     if (!cpu->has_mpu) {
799f50cd314SPeter Maydell         cpu->pmsav7_dregion = 0;
800f50cd314SPeter Maydell     }
801f50cd314SPeter Maydell     if (cpu->pmsav7_dregion == 0) {
802f50cd314SPeter Maydell         cpu->has_mpu = false;
803fcf5ef2aSThomas Huth     }
804fcf5ef2aSThomas Huth 
805452a0955SPeter Maydell     if (arm_feature(env, ARM_FEATURE_PMSA) &&
806fcf5ef2aSThomas Huth         arm_feature(env, ARM_FEATURE_V7)) {
807fcf5ef2aSThomas Huth         uint32_t nr = cpu->pmsav7_dregion;
808fcf5ef2aSThomas Huth 
809fcf5ef2aSThomas Huth         if (nr > 0xff) {
810fcf5ef2aSThomas Huth             error_setg(errp, "PMSAv7 MPU #regions invalid %" PRIu32, nr);
811fcf5ef2aSThomas Huth             return;
812fcf5ef2aSThomas Huth         }
813fcf5ef2aSThomas Huth 
814fcf5ef2aSThomas Huth         if (nr) {
815fcf5ef2aSThomas Huth             env->pmsav7.drbar = g_new0(uint32_t, nr);
816fcf5ef2aSThomas Huth             env->pmsav7.drsr = g_new0(uint32_t, nr);
817fcf5ef2aSThomas Huth             env->pmsav7.dracr = g_new0(uint32_t, nr);
818fcf5ef2aSThomas Huth         }
819fcf5ef2aSThomas Huth     }
820fcf5ef2aSThomas Huth 
82191db4642SCédric Le Goater     if (arm_feature(env, ARM_FEATURE_EL3)) {
82291db4642SCédric Le Goater         set_feature(env, ARM_FEATURE_VBAR);
82391db4642SCédric Le Goater     }
82491db4642SCédric Le Goater 
825fcf5ef2aSThomas Huth     register_cp_regs_for_features(cpu);
826fcf5ef2aSThomas Huth     arm_cpu_register_gdb_regs_for_features(cpu);
827fcf5ef2aSThomas Huth 
828fcf5ef2aSThomas Huth     init_cpreg_list(cpu);
829fcf5ef2aSThomas Huth 
830fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
831fcf5ef2aSThomas Huth     if (cpu->has_el3) {
832fcf5ef2aSThomas Huth         cs->num_ases = 2;
833fcf5ef2aSThomas Huth     } else {
834fcf5ef2aSThomas Huth         cs->num_ases = 1;
835fcf5ef2aSThomas Huth     }
836fcf5ef2aSThomas Huth 
837fcf5ef2aSThomas Huth     if (cpu->has_el3) {
838fcf5ef2aSThomas Huth         AddressSpace *as;
839fcf5ef2aSThomas Huth 
840fcf5ef2aSThomas Huth         if (!cpu->secure_memory) {
841fcf5ef2aSThomas Huth             cpu->secure_memory = cs->memory;
842fcf5ef2aSThomas Huth         }
843fcf5ef2aSThomas Huth         as = address_space_init_shareable(cpu->secure_memory,
844fcf5ef2aSThomas Huth                                           "cpu-secure-memory");
845fcf5ef2aSThomas Huth         cpu_address_space_init(cs, as, ARMASIdx_S);
846fcf5ef2aSThomas Huth     }
847fcf5ef2aSThomas Huth     cpu_address_space_init(cs,
848fcf5ef2aSThomas Huth                            address_space_init_shareable(cs->memory,
849fcf5ef2aSThomas Huth                                                         "cpu-memory"),
850fcf5ef2aSThomas Huth                            ARMASIdx_NS);
851fcf5ef2aSThomas Huth #endif
852fcf5ef2aSThomas Huth 
853fcf5ef2aSThomas Huth     qemu_init_vcpu(cs);
854fcf5ef2aSThomas Huth     cpu_reset(cs);
855fcf5ef2aSThomas Huth 
856fcf5ef2aSThomas Huth     acc->parent_realize(dev, errp);
857fcf5ef2aSThomas Huth }
858fcf5ef2aSThomas Huth 
859fcf5ef2aSThomas Huth static ObjectClass *arm_cpu_class_by_name(const char *cpu_model)
860fcf5ef2aSThomas Huth {
861fcf5ef2aSThomas Huth     ObjectClass *oc;
862fcf5ef2aSThomas Huth     char *typename;
863fcf5ef2aSThomas Huth     char **cpuname;
864fcf5ef2aSThomas Huth 
865fcf5ef2aSThomas Huth     if (!cpu_model) {
866fcf5ef2aSThomas Huth         return NULL;
867fcf5ef2aSThomas Huth     }
868fcf5ef2aSThomas Huth 
869fcf5ef2aSThomas Huth     cpuname = g_strsplit(cpu_model, ",", 1);
870fcf5ef2aSThomas Huth     typename = g_strdup_printf("%s-" TYPE_ARM_CPU, cpuname[0]);
871fcf5ef2aSThomas Huth     oc = object_class_by_name(typename);
872fcf5ef2aSThomas Huth     g_strfreev(cpuname);
873fcf5ef2aSThomas Huth     g_free(typename);
874fcf5ef2aSThomas Huth     if (!oc || !object_class_dynamic_cast(oc, TYPE_ARM_CPU) ||
875fcf5ef2aSThomas Huth         object_class_is_abstract(oc)) {
876fcf5ef2aSThomas Huth         return NULL;
877fcf5ef2aSThomas Huth     }
878fcf5ef2aSThomas Huth     return oc;
879fcf5ef2aSThomas Huth }
880fcf5ef2aSThomas Huth 
881fcf5ef2aSThomas Huth /* CPU models. These are not needed for the AArch64 linux-user build. */
882fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
883fcf5ef2aSThomas Huth 
884fcf5ef2aSThomas Huth static void arm926_initfn(Object *obj)
885fcf5ef2aSThomas Huth {
886fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
887fcf5ef2aSThomas Huth 
888fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm926";
889fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
890fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
891fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
892fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN);
893fcf5ef2aSThomas Huth     cpu->midr = 0x41069265;
894fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x41011090;
895fcf5ef2aSThomas Huth     cpu->ctr = 0x1dd20d2;
896fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00090078;
897fcf5ef2aSThomas Huth }
898fcf5ef2aSThomas Huth 
899fcf5ef2aSThomas Huth static void arm946_initfn(Object *obj)
900fcf5ef2aSThomas Huth {
901fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
902fcf5ef2aSThomas Huth 
903fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm946";
904fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
905452a0955SPeter Maydell     set_feature(&cpu->env, ARM_FEATURE_PMSA);
906fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
907fcf5ef2aSThomas Huth     cpu->midr = 0x41059461;
908fcf5ef2aSThomas Huth     cpu->ctr = 0x0f004006;
909fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
910fcf5ef2aSThomas Huth }
911fcf5ef2aSThomas Huth 
912fcf5ef2aSThomas Huth static void arm1026_initfn(Object *obj)
913fcf5ef2aSThomas Huth {
914fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
915fcf5ef2aSThomas Huth 
916fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm1026";
917fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
918fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
919fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_AUXCR);
920fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
921fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_TEST_CLEAN);
922fcf5ef2aSThomas Huth     cpu->midr = 0x4106a262;
923fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410110a0;
924fcf5ef2aSThomas Huth     cpu->ctr = 0x1dd20d2;
925fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00090078;
926fcf5ef2aSThomas Huth     cpu->reset_auxcr = 1;
927fcf5ef2aSThomas Huth     {
928fcf5ef2aSThomas Huth         /* The 1026 had an IFAR at c6,c0,0,1 rather than the ARMv6 c6,c0,0,2 */
929fcf5ef2aSThomas Huth         ARMCPRegInfo ifar = {
930fcf5ef2aSThomas Huth             .name = "IFAR", .cp = 15, .crn = 6, .crm = 0, .opc1 = 0, .opc2 = 1,
931fcf5ef2aSThomas Huth             .access = PL1_RW,
932fcf5ef2aSThomas Huth             .fieldoffset = offsetof(CPUARMState, cp15.ifar_ns),
933fcf5ef2aSThomas Huth             .resetvalue = 0
934fcf5ef2aSThomas Huth         };
935fcf5ef2aSThomas Huth         define_one_arm_cp_reg(cpu, &ifar);
936fcf5ef2aSThomas Huth     }
937fcf5ef2aSThomas Huth }
938fcf5ef2aSThomas Huth 
939fcf5ef2aSThomas Huth static void arm1136_r2_initfn(Object *obj)
940fcf5ef2aSThomas Huth {
941fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
942fcf5ef2aSThomas Huth     /* What qemu calls "arm1136_r2" is actually the 1136 r0p2, ie an
943fcf5ef2aSThomas Huth      * older core than plain "arm1136". In particular this does not
944fcf5ef2aSThomas Huth      * have the v6K features.
945fcf5ef2aSThomas Huth      * These ID register values are correct for 1136 but may be wrong
946fcf5ef2aSThomas Huth      * for 1136_r2 (in particular r0p2 does not actually implement most
947fcf5ef2aSThomas Huth      * of the ID registers).
948fcf5ef2aSThomas Huth      */
949fcf5ef2aSThomas Huth 
950fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm1136";
951fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V6);
952fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
953fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
954fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
955fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
956fcf5ef2aSThomas Huth     cpu->midr = 0x4107b362;
957fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410120b4;
958fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11111111;
959fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x00000000;
960fcf5ef2aSThomas Huth     cpu->ctr = 0x1dd20d2;
961fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00050078;
962fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x111;
963fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x1;
964fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x2;
965fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x3;
966fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x01130003;
967fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x10030302;
968fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01222110;
969fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x00140011;
970fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x12002111;
971fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x11231111;
972fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x01102131;
973fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x141;
974fcf5ef2aSThomas Huth     cpu->reset_auxcr = 7;
975fcf5ef2aSThomas Huth }
976fcf5ef2aSThomas Huth 
977fcf5ef2aSThomas Huth static void arm1136_initfn(Object *obj)
978fcf5ef2aSThomas Huth {
979fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
980fcf5ef2aSThomas Huth 
981fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm1136";
982fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V6K);
983fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V6);
984fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
985fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
986fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
987fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
988fcf5ef2aSThomas Huth     cpu->midr = 0x4117b363;
989fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410120b4;
990fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11111111;
991fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x00000000;
992fcf5ef2aSThomas Huth     cpu->ctr = 0x1dd20d2;
993fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00050078;
994fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x111;
995fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x1;
996fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x2;
997fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x3;
998fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x01130003;
999fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x10030302;
1000fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01222110;
1001fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x00140011;
1002fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x12002111;
1003fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x11231111;
1004fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x01102131;
1005fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x141;
1006fcf5ef2aSThomas Huth     cpu->reset_auxcr = 7;
1007fcf5ef2aSThomas Huth }
1008fcf5ef2aSThomas Huth 
1009fcf5ef2aSThomas Huth static void arm1176_initfn(Object *obj)
1010fcf5ef2aSThomas Huth {
1011fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1012fcf5ef2aSThomas Huth 
1013fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm1176";
1014fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V6K);
1015fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
1016fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VAPA);
1017fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1018fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_DIRTY_REG);
1019fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CACHE_BLOCK_OPS);
1020fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_EL3);
1021fcf5ef2aSThomas Huth     cpu->midr = 0x410fb767;
1022fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410120b5;
1023fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11111111;
1024fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x00000000;
1025fcf5ef2aSThomas Huth     cpu->ctr = 0x1dd20d2;
1026fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00050078;
1027fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x111;
1028fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x11;
1029fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x33;
1030fcf5ef2aSThomas Huth     cpu->id_afr0 = 0;
1031fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x01130003;
1032fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x10030302;
1033fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01222100;
1034fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x0140011;
1035fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x12002111;
1036fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x11231121;
1037fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x01102131;
1038fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x01141;
1039fcf5ef2aSThomas Huth     cpu->reset_auxcr = 7;
1040fcf5ef2aSThomas Huth }
1041fcf5ef2aSThomas Huth 
1042fcf5ef2aSThomas Huth static void arm11mpcore_initfn(Object *obj)
1043fcf5ef2aSThomas Huth {
1044fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1045fcf5ef2aSThomas Huth 
1046fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,arm11mpcore";
1047fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V6K);
1048fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP);
1049fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VAPA);
1050fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_MPIDR);
1051fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1052fcf5ef2aSThomas Huth     cpu->midr = 0x410fb022;
1053fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410120b4;
1054fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11111111;
1055fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x00000000;
1056fcf5ef2aSThomas Huth     cpu->ctr = 0x1d192992; /* 32K icache 32K dcache */
1057fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x111;
1058fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x1;
1059fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0;
1060fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x2;
1061fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x01100103;
1062fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x10020302;
1063fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01222000;
1064fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x00100011;
1065fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x12002111;
1066fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x11221011;
1067fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x01102131;
1068fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x141;
1069fcf5ef2aSThomas Huth     cpu->reset_auxcr = 1;
1070fcf5ef2aSThomas Huth }
1071fcf5ef2aSThomas Huth 
1072fcf5ef2aSThomas Huth static void cortex_m3_initfn(Object *obj)
1073fcf5ef2aSThomas Huth {
1074fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1075fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1076fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_M);
1077fcf5ef2aSThomas Huth     cpu->midr = 0x410fc231;
10788d92e26bSPeter Maydell     cpu->pmsav7_dregion = 8;
1079fcf5ef2aSThomas Huth }
1080fcf5ef2aSThomas Huth 
1081fcf5ef2aSThomas Huth static void cortex_m4_initfn(Object *obj)
1082fcf5ef2aSThomas Huth {
1083fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1084fcf5ef2aSThomas Huth 
1085fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1086fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_M);
1087fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB_DSP);
1088fcf5ef2aSThomas Huth     cpu->midr = 0x410fc240; /* r0p0 */
10898d92e26bSPeter Maydell     cpu->pmsav7_dregion = 8;
1090fcf5ef2aSThomas Huth }
1091fcf5ef2aSThomas Huth static void arm_v7m_class_init(ObjectClass *oc, void *data)
1092fcf5ef2aSThomas Huth {
1093fcf5ef2aSThomas Huth     CPUClass *cc = CPU_CLASS(oc);
1094fcf5ef2aSThomas Huth 
1095fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
1096fcf5ef2aSThomas Huth     cc->do_interrupt = arm_v7m_cpu_do_interrupt;
1097fcf5ef2aSThomas Huth #endif
1098fcf5ef2aSThomas Huth 
1099fcf5ef2aSThomas Huth     cc->cpu_exec_interrupt = arm_v7m_cpu_exec_interrupt;
1100fcf5ef2aSThomas Huth }
1101fcf5ef2aSThomas Huth 
1102fcf5ef2aSThomas Huth static const ARMCPRegInfo cortexr5_cp_reginfo[] = {
1103fcf5ef2aSThomas Huth     /* Dummy the TCM region regs for the moment */
1104fcf5ef2aSThomas Huth     { .name = "ATCM", .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 0,
1105fcf5ef2aSThomas Huth       .access = PL1_RW, .type = ARM_CP_CONST },
1106fcf5ef2aSThomas Huth     { .name = "BTCM", .cp = 15, .opc1 = 0, .crn = 9, .crm = 1, .opc2 = 1,
1107fcf5ef2aSThomas Huth       .access = PL1_RW, .type = ARM_CP_CONST },
110895e9a242SLuc MICHEL     { .name = "DCACHE_INVAL", .cp = 15, .opc1 = 0, .crn = 15, .crm = 5,
110995e9a242SLuc MICHEL       .opc2 = 0, .access = PL1_W, .type = ARM_CP_NOP },
1110fcf5ef2aSThomas Huth     REGINFO_SENTINEL
1111fcf5ef2aSThomas Huth };
1112fcf5ef2aSThomas Huth 
1113fcf5ef2aSThomas Huth static void cortex_r5_initfn(Object *obj)
1114fcf5ef2aSThomas Huth {
1115fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1116fcf5ef2aSThomas Huth 
1117fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1118fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB_DIV);
1119fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_ARM_DIV);
1120fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7MP);
1121452a0955SPeter Maydell     set_feature(&cpu->env, ARM_FEATURE_PMSA);
1122fcf5ef2aSThomas Huth     cpu->midr = 0x411fc153; /* r1p3 */
1123fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x0131;
1124fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x001;
1125fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x010400;
1126fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x0;
1127fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x0210030;
1128fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x00000000;
1129fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01200000;
1130fcf5ef2aSThomas Huth     cpu->id_mmfr3 = 0x0211;
1131fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x2101111;
1132fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x13112111;
1133fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x21232141;
1134fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x01112131;
1135fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x0010142;
1136fcf5ef2aSThomas Huth     cpu->id_isar5 = 0x0;
1137fcf5ef2aSThomas Huth     cpu->mp_is_up = true;
11388d92e26bSPeter Maydell     cpu->pmsav7_dregion = 16;
1139fcf5ef2aSThomas Huth     define_arm_cp_regs(cpu, cortexr5_cp_reginfo);
1140fcf5ef2aSThomas Huth }
1141fcf5ef2aSThomas Huth 
1142fcf5ef2aSThomas Huth static const ARMCPRegInfo cortexa8_cp_reginfo[] = {
1143fcf5ef2aSThomas Huth     { .name = "L2LOCKDOWN", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 0,
1144fcf5ef2aSThomas Huth       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1145fcf5ef2aSThomas Huth     { .name = "L2AUXCR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2,
1146fcf5ef2aSThomas Huth       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1147fcf5ef2aSThomas Huth     REGINFO_SENTINEL
1148fcf5ef2aSThomas Huth };
1149fcf5ef2aSThomas Huth 
1150fcf5ef2aSThomas Huth static void cortex_a8_initfn(Object *obj)
1151fcf5ef2aSThomas Huth {
1152fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1153fcf5ef2aSThomas Huth 
1154fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,cortex-a8";
1155fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1156fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP3);
1157fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_NEON);
1158fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
1159fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1160fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_EL3);
1161fcf5ef2aSThomas Huth     cpu->midr = 0x410fc080;
1162fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410330c0;
1163fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11110222;
11640f194473SJulian Brown     cpu->mvfr1 = 0x00011111;
1165fcf5ef2aSThomas Huth     cpu->ctr = 0x82048004;
1166fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00c50078;
1167fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x1031;
1168fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x11;
1169fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x400;
1170fcf5ef2aSThomas Huth     cpu->id_afr0 = 0;
1171fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x31100003;
1172fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x20000000;
1173fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01202000;
1174fcf5ef2aSThomas Huth     cpu->id_mmfr3 = 0x11;
1175fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x00101111;
1176fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x12112111;
1177fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x21232031;
1178fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x11112131;
1179fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x00111142;
1180fcf5ef2aSThomas Huth     cpu->dbgdidr = 0x15141000;
1181fcf5ef2aSThomas Huth     cpu->clidr = (1 << 27) | (2 << 24) | 3;
1182fcf5ef2aSThomas Huth     cpu->ccsidr[0] = 0xe007e01a; /* 16k L1 dcache. */
1183fcf5ef2aSThomas Huth     cpu->ccsidr[1] = 0x2007e01a; /* 16k L1 icache. */
1184fcf5ef2aSThomas Huth     cpu->ccsidr[2] = 0xf0000000; /* No L2 icache. */
1185fcf5ef2aSThomas Huth     cpu->reset_auxcr = 2;
1186fcf5ef2aSThomas Huth     define_arm_cp_regs(cpu, cortexa8_cp_reginfo);
1187fcf5ef2aSThomas Huth }
1188fcf5ef2aSThomas Huth 
1189fcf5ef2aSThomas Huth static const ARMCPRegInfo cortexa9_cp_reginfo[] = {
1190fcf5ef2aSThomas Huth     /* power_control should be set to maximum latency. Again,
1191fcf5ef2aSThomas Huth      * default to 0 and set by private hook
1192fcf5ef2aSThomas Huth      */
1193fcf5ef2aSThomas Huth     { .name = "A9_PWRCTL", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 0,
1194fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0,
1195fcf5ef2aSThomas Huth       .fieldoffset = offsetof(CPUARMState, cp15.c15_power_control) },
1196fcf5ef2aSThomas Huth     { .name = "A9_DIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 1,
1197fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0,
1198fcf5ef2aSThomas Huth       .fieldoffset = offsetof(CPUARMState, cp15.c15_diagnostic) },
1199fcf5ef2aSThomas Huth     { .name = "A9_PWRDIAG", .cp = 15, .crn = 15, .crm = 0, .opc1 = 0, .opc2 = 2,
1200fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0,
1201fcf5ef2aSThomas Huth       .fieldoffset = offsetof(CPUARMState, cp15.c15_power_diagnostic) },
1202fcf5ef2aSThomas Huth     { .name = "NEONBUSY", .cp = 15, .crn = 15, .crm = 1, .opc1 = 0, .opc2 = 0,
1203fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
1204fcf5ef2aSThomas Huth     /* TLB lockdown control */
1205fcf5ef2aSThomas Huth     { .name = "TLB_LOCKR", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 2,
1206fcf5ef2aSThomas Huth       .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP },
1207fcf5ef2aSThomas Huth     { .name = "TLB_LOCKW", .cp = 15, .crn = 15, .crm = 4, .opc1 = 5, .opc2 = 4,
1208fcf5ef2aSThomas Huth       .access = PL1_W, .resetvalue = 0, .type = ARM_CP_NOP },
1209fcf5ef2aSThomas Huth     { .name = "TLB_VA", .cp = 15, .crn = 15, .crm = 5, .opc1 = 5, .opc2 = 2,
1210fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
1211fcf5ef2aSThomas Huth     { .name = "TLB_PA", .cp = 15, .crn = 15, .crm = 6, .opc1 = 5, .opc2 = 2,
1212fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
1213fcf5ef2aSThomas Huth     { .name = "TLB_ATTR", .cp = 15, .crn = 15, .crm = 7, .opc1 = 5, .opc2 = 2,
1214fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0, .type = ARM_CP_CONST },
1215fcf5ef2aSThomas Huth     REGINFO_SENTINEL
1216fcf5ef2aSThomas Huth };
1217fcf5ef2aSThomas Huth 
1218fcf5ef2aSThomas Huth static void cortex_a9_initfn(Object *obj)
1219fcf5ef2aSThomas Huth {
1220fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1221fcf5ef2aSThomas Huth 
1222fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,cortex-a9";
1223fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1224fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP3);
1225fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP_FP16);
1226fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_NEON);
1227fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
1228fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_EL3);
1229fcf5ef2aSThomas Huth     /* Note that A9 supports the MP extensions even for
1230fcf5ef2aSThomas Huth      * A9UP and single-core A9MP (which are both different
1231fcf5ef2aSThomas Huth      * and valid configurations; we don't model A9UP).
1232fcf5ef2aSThomas Huth      */
1233fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7MP);
1234fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CBAR);
1235fcf5ef2aSThomas Huth     cpu->midr = 0x410fc090;
1236fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x41033090;
1237fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x11110222;
1238fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x01111111;
1239fcf5ef2aSThomas Huth     cpu->ctr = 0x80038003;
1240fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00c50078;
1241fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x1031;
1242fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x11;
1243fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x000;
1244fcf5ef2aSThomas Huth     cpu->id_afr0 = 0;
1245fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x00100103;
1246fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x20000000;
1247fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01230000;
1248fcf5ef2aSThomas Huth     cpu->id_mmfr3 = 0x00002111;
1249fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x00101111;
1250fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x13112111;
1251fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x21232041;
1252fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x11112131;
1253fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x00111142;
1254fcf5ef2aSThomas Huth     cpu->dbgdidr = 0x35141000;
1255fcf5ef2aSThomas Huth     cpu->clidr = (1 << 27) | (1 << 24) | 3;
1256fcf5ef2aSThomas Huth     cpu->ccsidr[0] = 0xe00fe019; /* 16k L1 dcache. */
1257fcf5ef2aSThomas Huth     cpu->ccsidr[1] = 0x200fe019; /* 16k L1 icache. */
1258fcf5ef2aSThomas Huth     define_arm_cp_regs(cpu, cortexa9_cp_reginfo);
1259fcf5ef2aSThomas Huth }
1260fcf5ef2aSThomas Huth 
1261fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
1262fcf5ef2aSThomas Huth static uint64_t a15_l2ctlr_read(CPUARMState *env, const ARMCPRegInfo *ri)
1263fcf5ef2aSThomas Huth {
1264fcf5ef2aSThomas Huth     /* Linux wants the number of processors from here.
1265fcf5ef2aSThomas Huth      * Might as well set the interrupt-controller bit too.
1266fcf5ef2aSThomas Huth      */
1267fcf5ef2aSThomas Huth     return ((smp_cpus - 1) << 24) | (1 << 23);
1268fcf5ef2aSThomas Huth }
1269fcf5ef2aSThomas Huth #endif
1270fcf5ef2aSThomas Huth 
1271fcf5ef2aSThomas Huth static const ARMCPRegInfo cortexa15_cp_reginfo[] = {
1272fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
1273fcf5ef2aSThomas Huth     { .name = "L2CTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 2,
1274fcf5ef2aSThomas Huth       .access = PL1_RW, .resetvalue = 0, .readfn = a15_l2ctlr_read,
1275fcf5ef2aSThomas Huth       .writefn = arm_cp_write_ignore, },
1276fcf5ef2aSThomas Huth #endif
1277fcf5ef2aSThomas Huth     { .name = "L2ECTLR", .cp = 15, .crn = 9, .crm = 0, .opc1 = 1, .opc2 = 3,
1278fcf5ef2aSThomas Huth       .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
1279fcf5ef2aSThomas Huth     REGINFO_SENTINEL
1280fcf5ef2aSThomas Huth };
1281fcf5ef2aSThomas Huth 
1282fcf5ef2aSThomas Huth static void cortex_a7_initfn(Object *obj)
1283fcf5ef2aSThomas Huth {
1284fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1285fcf5ef2aSThomas Huth 
1286fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,cortex-a7";
1287fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1288fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP4);
1289fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_NEON);
1290fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
1291fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_ARM_DIV);
1292fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER);
1293fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1294fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CBAR_RO);
1295fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_LPAE);
1296fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_EL3);
1297fcf5ef2aSThomas Huth     cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A7;
1298fcf5ef2aSThomas Huth     cpu->midr = 0x410fc075;
1299fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x41023075;
1300fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x10110222;
1301fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x11111111;
1302fcf5ef2aSThomas Huth     cpu->ctr = 0x84448003;
1303fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00c50078;
1304fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x00001131;
1305fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x00011011;
1306fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x02010555;
1307fcf5ef2aSThomas Huth     cpu->pmceid0 = 0x00000000;
1308fcf5ef2aSThomas Huth     cpu->pmceid1 = 0x00000000;
1309fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x00000000;
1310fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x10101105;
1311fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x40000000;
1312fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01240000;
1313fcf5ef2aSThomas Huth     cpu->id_mmfr3 = 0x02102211;
1314fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x01101110;
1315fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x13112111;
1316fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x21232041;
1317fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x11112131;
1318fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x10011142;
1319fcf5ef2aSThomas Huth     cpu->dbgdidr = 0x3515f005;
1320fcf5ef2aSThomas Huth     cpu->clidr = 0x0a200023;
1321fcf5ef2aSThomas Huth     cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */
1322fcf5ef2aSThomas Huth     cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */
1323fcf5ef2aSThomas Huth     cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */
1324fcf5ef2aSThomas Huth     define_arm_cp_regs(cpu, cortexa15_cp_reginfo); /* Same as A15 */
1325fcf5ef2aSThomas Huth }
1326fcf5ef2aSThomas Huth 
1327fcf5ef2aSThomas Huth static void cortex_a15_initfn(Object *obj)
1328fcf5ef2aSThomas Huth {
1329fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1330fcf5ef2aSThomas Huth 
1331fcf5ef2aSThomas Huth     cpu->dtb_compatible = "arm,cortex-a15";
1332fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V7);
1333fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP4);
1334fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_NEON);
1335fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
1336fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_ARM_DIV);
1337fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER);
1338fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1339fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CBAR_RO);
1340fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_LPAE);
1341fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_EL3);
1342fcf5ef2aSThomas Huth     cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A15;
1343fcf5ef2aSThomas Huth     cpu->midr = 0x412fc0f1;
1344fcf5ef2aSThomas Huth     cpu->reset_fpsid = 0x410430f0;
1345fcf5ef2aSThomas Huth     cpu->mvfr0 = 0x10110222;
1346fcf5ef2aSThomas Huth     cpu->mvfr1 = 0x11111111;
1347fcf5ef2aSThomas Huth     cpu->ctr = 0x8444c004;
1348fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00c50078;
1349fcf5ef2aSThomas Huth     cpu->id_pfr0 = 0x00001131;
1350fcf5ef2aSThomas Huth     cpu->id_pfr1 = 0x00011011;
1351fcf5ef2aSThomas Huth     cpu->id_dfr0 = 0x02010555;
1352fcf5ef2aSThomas Huth     cpu->pmceid0 = 0x0000000;
1353fcf5ef2aSThomas Huth     cpu->pmceid1 = 0x00000000;
1354fcf5ef2aSThomas Huth     cpu->id_afr0 = 0x00000000;
1355fcf5ef2aSThomas Huth     cpu->id_mmfr0 = 0x10201105;
1356fcf5ef2aSThomas Huth     cpu->id_mmfr1 = 0x20000000;
1357fcf5ef2aSThomas Huth     cpu->id_mmfr2 = 0x01240000;
1358fcf5ef2aSThomas Huth     cpu->id_mmfr3 = 0x02102211;
1359fcf5ef2aSThomas Huth     cpu->id_isar0 = 0x02101110;
1360fcf5ef2aSThomas Huth     cpu->id_isar1 = 0x13112111;
1361fcf5ef2aSThomas Huth     cpu->id_isar2 = 0x21232041;
1362fcf5ef2aSThomas Huth     cpu->id_isar3 = 0x11112131;
1363fcf5ef2aSThomas Huth     cpu->id_isar4 = 0x10011142;
1364fcf5ef2aSThomas Huth     cpu->dbgdidr = 0x3515f021;
1365fcf5ef2aSThomas Huth     cpu->clidr = 0x0a200023;
1366fcf5ef2aSThomas Huth     cpu->ccsidr[0] = 0x701fe00a; /* 32K L1 dcache */
1367fcf5ef2aSThomas Huth     cpu->ccsidr[1] = 0x201fe00a; /* 32K L1 icache */
1368fcf5ef2aSThomas Huth     cpu->ccsidr[2] = 0x711fe07a; /* 4096K L2 unified cache */
1369fcf5ef2aSThomas Huth     define_arm_cp_regs(cpu, cortexa15_cp_reginfo);
1370fcf5ef2aSThomas Huth }
1371fcf5ef2aSThomas Huth 
1372fcf5ef2aSThomas Huth static void ti925t_initfn(Object *obj)
1373fcf5ef2aSThomas Huth {
1374fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1375fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V4T);
1376fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_OMAPCP);
1377fcf5ef2aSThomas Huth     cpu->midr = ARM_CPUID_TI925T;
1378fcf5ef2aSThomas Huth     cpu->ctr = 0x5109149;
1379fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000070;
1380fcf5ef2aSThomas Huth }
1381fcf5ef2aSThomas Huth 
1382fcf5ef2aSThomas Huth static void sa1100_initfn(Object *obj)
1383fcf5ef2aSThomas Huth {
1384fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1385fcf5ef2aSThomas Huth 
1386fcf5ef2aSThomas Huth     cpu->dtb_compatible = "intel,sa1100";
1387fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_STRONGARM);
1388fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1389fcf5ef2aSThomas Huth     cpu->midr = 0x4401A11B;
1390fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000070;
1391fcf5ef2aSThomas Huth }
1392fcf5ef2aSThomas Huth 
1393fcf5ef2aSThomas Huth static void sa1110_initfn(Object *obj)
1394fcf5ef2aSThomas Huth {
1395fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1396fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_STRONGARM);
1397fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_DUMMY_C15_REGS);
1398fcf5ef2aSThomas Huth     cpu->midr = 0x6901B119;
1399fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000070;
1400fcf5ef2aSThomas Huth }
1401fcf5ef2aSThomas Huth 
1402fcf5ef2aSThomas Huth static void pxa250_initfn(Object *obj)
1403fcf5ef2aSThomas Huth {
1404fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1405fcf5ef2aSThomas Huth 
1406fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1407fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1408fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1409fcf5ef2aSThomas Huth     cpu->midr = 0x69052100;
1410fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1411fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1412fcf5ef2aSThomas Huth }
1413fcf5ef2aSThomas Huth 
1414fcf5ef2aSThomas Huth static void pxa255_initfn(Object *obj)
1415fcf5ef2aSThomas Huth {
1416fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1417fcf5ef2aSThomas Huth 
1418fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1419fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1420fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1421fcf5ef2aSThomas Huth     cpu->midr = 0x69052d00;
1422fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1423fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1424fcf5ef2aSThomas Huth }
1425fcf5ef2aSThomas Huth 
1426fcf5ef2aSThomas Huth static void pxa260_initfn(Object *obj)
1427fcf5ef2aSThomas Huth {
1428fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1429fcf5ef2aSThomas Huth 
1430fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1431fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1432fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1433fcf5ef2aSThomas Huth     cpu->midr = 0x69052903;
1434fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1435fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1436fcf5ef2aSThomas Huth }
1437fcf5ef2aSThomas Huth 
1438fcf5ef2aSThomas Huth static void pxa261_initfn(Object *obj)
1439fcf5ef2aSThomas Huth {
1440fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1441fcf5ef2aSThomas Huth 
1442fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1443fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1444fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1445fcf5ef2aSThomas Huth     cpu->midr = 0x69052d05;
1446fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1447fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1448fcf5ef2aSThomas Huth }
1449fcf5ef2aSThomas Huth 
1450fcf5ef2aSThomas Huth static void pxa262_initfn(Object *obj)
1451fcf5ef2aSThomas Huth {
1452fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1453fcf5ef2aSThomas Huth 
1454fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1455fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1456fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1457fcf5ef2aSThomas Huth     cpu->midr = 0x69052d06;
1458fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1459fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1460fcf5ef2aSThomas Huth }
1461fcf5ef2aSThomas Huth 
1462fcf5ef2aSThomas Huth static void pxa270a0_initfn(Object *obj)
1463fcf5ef2aSThomas Huth {
1464fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1465fcf5ef2aSThomas Huth 
1466fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1467fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1468fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1469fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1470fcf5ef2aSThomas Huth     cpu->midr = 0x69054110;
1471fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1472fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1473fcf5ef2aSThomas Huth }
1474fcf5ef2aSThomas Huth 
1475fcf5ef2aSThomas Huth static void pxa270a1_initfn(Object *obj)
1476fcf5ef2aSThomas Huth {
1477fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1478fcf5ef2aSThomas Huth 
1479fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1480fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1481fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1482fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1483fcf5ef2aSThomas Huth     cpu->midr = 0x69054111;
1484fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1485fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1486fcf5ef2aSThomas Huth }
1487fcf5ef2aSThomas Huth 
1488fcf5ef2aSThomas Huth static void pxa270b0_initfn(Object *obj)
1489fcf5ef2aSThomas Huth {
1490fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1491fcf5ef2aSThomas Huth 
1492fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1493fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1494fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1495fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1496fcf5ef2aSThomas Huth     cpu->midr = 0x69054112;
1497fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1498fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1499fcf5ef2aSThomas Huth }
1500fcf5ef2aSThomas Huth 
1501fcf5ef2aSThomas Huth static void pxa270b1_initfn(Object *obj)
1502fcf5ef2aSThomas Huth {
1503fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1504fcf5ef2aSThomas Huth 
1505fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1506fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1507fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1508fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1509fcf5ef2aSThomas Huth     cpu->midr = 0x69054113;
1510fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1511fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1512fcf5ef2aSThomas Huth }
1513fcf5ef2aSThomas Huth 
1514fcf5ef2aSThomas Huth static void pxa270c0_initfn(Object *obj)
1515fcf5ef2aSThomas Huth {
1516fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1517fcf5ef2aSThomas Huth 
1518fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1519fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1520fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1521fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1522fcf5ef2aSThomas Huth     cpu->midr = 0x69054114;
1523fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1524fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1525fcf5ef2aSThomas Huth }
1526fcf5ef2aSThomas Huth 
1527fcf5ef2aSThomas Huth static void pxa270c5_initfn(Object *obj)
1528fcf5ef2aSThomas Huth {
1529fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1530fcf5ef2aSThomas Huth 
1531fcf5ef2aSThomas Huth     cpu->dtb_compatible = "marvell,xscale";
1532fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V5);
1533fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_XSCALE);
1534fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_IWMMXT);
1535fcf5ef2aSThomas Huth     cpu->midr = 0x69054117;
1536fcf5ef2aSThomas Huth     cpu->ctr = 0xd172172;
1537fcf5ef2aSThomas Huth     cpu->reset_sctlr = 0x00000078;
1538fcf5ef2aSThomas Huth }
1539fcf5ef2aSThomas Huth 
1540fcf5ef2aSThomas Huth #ifdef CONFIG_USER_ONLY
1541fcf5ef2aSThomas Huth static void arm_any_initfn(Object *obj)
1542fcf5ef2aSThomas Huth {
1543fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(obj);
1544fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V8);
1545fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_VFP4);
1546fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_NEON);
1547fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_THUMB2EE);
1548fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V8_AES);
1549fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V8_SHA1);
1550fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V8_SHA256);
1551fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_V8_PMULL);
1552fcf5ef2aSThomas Huth     set_feature(&cpu->env, ARM_FEATURE_CRC);
1553fcf5ef2aSThomas Huth     cpu->midr = 0xffffffff;
1554fcf5ef2aSThomas Huth }
1555fcf5ef2aSThomas Huth #endif
1556fcf5ef2aSThomas Huth 
1557fcf5ef2aSThomas Huth #endif /* !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64) */
1558fcf5ef2aSThomas Huth 
1559fcf5ef2aSThomas Huth typedef struct ARMCPUInfo {
1560fcf5ef2aSThomas Huth     const char *name;
1561fcf5ef2aSThomas Huth     void (*initfn)(Object *obj);
1562fcf5ef2aSThomas Huth     void (*class_init)(ObjectClass *oc, void *data);
1563fcf5ef2aSThomas Huth } ARMCPUInfo;
1564fcf5ef2aSThomas Huth 
1565fcf5ef2aSThomas Huth static const ARMCPUInfo arm_cpus[] = {
1566fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || !defined(TARGET_AARCH64)
1567fcf5ef2aSThomas Huth     { .name = "arm926",      .initfn = arm926_initfn },
1568fcf5ef2aSThomas Huth     { .name = "arm946",      .initfn = arm946_initfn },
1569fcf5ef2aSThomas Huth     { .name = "arm1026",     .initfn = arm1026_initfn },
1570fcf5ef2aSThomas Huth     /* What QEMU calls "arm1136-r2" is actually the 1136 r0p2, i.e. an
1571fcf5ef2aSThomas Huth      * older core than plain "arm1136". In particular this does not
1572fcf5ef2aSThomas Huth      * have the v6K features.
1573fcf5ef2aSThomas Huth      */
1574fcf5ef2aSThomas Huth     { .name = "arm1136-r2",  .initfn = arm1136_r2_initfn },
1575fcf5ef2aSThomas Huth     { .name = "arm1136",     .initfn = arm1136_initfn },
1576fcf5ef2aSThomas Huth     { .name = "arm1176",     .initfn = arm1176_initfn },
1577fcf5ef2aSThomas Huth     { .name = "arm11mpcore", .initfn = arm11mpcore_initfn },
1578fcf5ef2aSThomas Huth     { .name = "cortex-m3",   .initfn = cortex_m3_initfn,
1579fcf5ef2aSThomas Huth                              .class_init = arm_v7m_class_init },
1580fcf5ef2aSThomas Huth     { .name = "cortex-m4",   .initfn = cortex_m4_initfn,
1581fcf5ef2aSThomas Huth                              .class_init = arm_v7m_class_init },
1582fcf5ef2aSThomas Huth     { .name = "cortex-r5",   .initfn = cortex_r5_initfn },
1583fcf5ef2aSThomas Huth     { .name = "cortex-a7",   .initfn = cortex_a7_initfn },
1584fcf5ef2aSThomas Huth     { .name = "cortex-a8",   .initfn = cortex_a8_initfn },
1585fcf5ef2aSThomas Huth     { .name = "cortex-a9",   .initfn = cortex_a9_initfn },
1586fcf5ef2aSThomas Huth     { .name = "cortex-a15",  .initfn = cortex_a15_initfn },
1587fcf5ef2aSThomas Huth     { .name = "ti925t",      .initfn = ti925t_initfn },
1588fcf5ef2aSThomas Huth     { .name = "sa1100",      .initfn = sa1100_initfn },
1589fcf5ef2aSThomas Huth     { .name = "sa1110",      .initfn = sa1110_initfn },
1590fcf5ef2aSThomas Huth     { .name = "pxa250",      .initfn = pxa250_initfn },
1591fcf5ef2aSThomas Huth     { .name = "pxa255",      .initfn = pxa255_initfn },
1592fcf5ef2aSThomas Huth     { .name = "pxa260",      .initfn = pxa260_initfn },
1593fcf5ef2aSThomas Huth     { .name = "pxa261",      .initfn = pxa261_initfn },
1594fcf5ef2aSThomas Huth     { .name = "pxa262",      .initfn = pxa262_initfn },
1595fcf5ef2aSThomas Huth     /* "pxa270" is an alias for "pxa270-a0" */
1596fcf5ef2aSThomas Huth     { .name = "pxa270",      .initfn = pxa270a0_initfn },
1597fcf5ef2aSThomas Huth     { .name = "pxa270-a0",   .initfn = pxa270a0_initfn },
1598fcf5ef2aSThomas Huth     { .name = "pxa270-a1",   .initfn = pxa270a1_initfn },
1599fcf5ef2aSThomas Huth     { .name = "pxa270-b0",   .initfn = pxa270b0_initfn },
1600fcf5ef2aSThomas Huth     { .name = "pxa270-b1",   .initfn = pxa270b1_initfn },
1601fcf5ef2aSThomas Huth     { .name = "pxa270-c0",   .initfn = pxa270c0_initfn },
1602fcf5ef2aSThomas Huth     { .name = "pxa270-c5",   .initfn = pxa270c5_initfn },
1603fcf5ef2aSThomas Huth #ifdef CONFIG_USER_ONLY
1604fcf5ef2aSThomas Huth     { .name = "any",         .initfn = arm_any_initfn },
1605fcf5ef2aSThomas Huth #endif
1606fcf5ef2aSThomas Huth #endif
1607fcf5ef2aSThomas Huth     { .name = NULL }
1608fcf5ef2aSThomas Huth };
1609fcf5ef2aSThomas Huth 
1610fcf5ef2aSThomas Huth static Property arm_cpu_properties[] = {
1611fcf5ef2aSThomas Huth     DEFINE_PROP_BOOL("start-powered-off", ARMCPU, start_powered_off, false),
1612fcf5ef2aSThomas Huth     DEFINE_PROP_UINT32("psci-conduit", ARMCPU, psci_conduit, 0),
1613fcf5ef2aSThomas Huth     DEFINE_PROP_UINT32("midr", ARMCPU, midr, 0),
1614fcf5ef2aSThomas Huth     DEFINE_PROP_UINT64("mp-affinity", ARMCPU,
1615fcf5ef2aSThomas Huth                         mp_affinity, ARM64_AFFINITY_INVALID),
161615f8b142SIgor Mammedov     DEFINE_PROP_INT32("node-id", ARMCPU, node_id, CPU_UNSET_NUMA_NODE_ID),
1617fcf5ef2aSThomas Huth     DEFINE_PROP_END_OF_LIST()
1618fcf5ef2aSThomas Huth };
1619fcf5ef2aSThomas Huth 
1620fcf5ef2aSThomas Huth #ifdef CONFIG_USER_ONLY
1621fcf5ef2aSThomas Huth static int arm_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
1622fcf5ef2aSThomas Huth                                     int mmu_idx)
1623fcf5ef2aSThomas Huth {
1624fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
1625fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
1626fcf5ef2aSThomas Huth 
1627fcf5ef2aSThomas Huth     env->exception.vaddress = address;
1628fcf5ef2aSThomas Huth     if (rw == 2) {
1629fcf5ef2aSThomas Huth         cs->exception_index = EXCP_PREFETCH_ABORT;
1630fcf5ef2aSThomas Huth     } else {
1631fcf5ef2aSThomas Huth         cs->exception_index = EXCP_DATA_ABORT;
1632fcf5ef2aSThomas Huth     }
1633fcf5ef2aSThomas Huth     return 1;
1634fcf5ef2aSThomas Huth }
1635fcf5ef2aSThomas Huth #endif
1636fcf5ef2aSThomas Huth 
1637fcf5ef2aSThomas Huth static gchar *arm_gdb_arch_name(CPUState *cs)
1638fcf5ef2aSThomas Huth {
1639fcf5ef2aSThomas Huth     ARMCPU *cpu = ARM_CPU(cs);
1640fcf5ef2aSThomas Huth     CPUARMState *env = &cpu->env;
1641fcf5ef2aSThomas Huth 
1642fcf5ef2aSThomas Huth     if (arm_feature(env, ARM_FEATURE_IWMMXT)) {
1643fcf5ef2aSThomas Huth         return g_strdup("iwmmxt");
1644fcf5ef2aSThomas Huth     }
1645fcf5ef2aSThomas Huth     return g_strdup("arm");
1646fcf5ef2aSThomas Huth }
1647fcf5ef2aSThomas Huth 
1648fcf5ef2aSThomas Huth static void arm_cpu_class_init(ObjectClass *oc, void *data)
1649fcf5ef2aSThomas Huth {
1650fcf5ef2aSThomas Huth     ARMCPUClass *acc = ARM_CPU_CLASS(oc);
1651fcf5ef2aSThomas Huth     CPUClass *cc = CPU_CLASS(acc);
1652fcf5ef2aSThomas Huth     DeviceClass *dc = DEVICE_CLASS(oc);
1653fcf5ef2aSThomas Huth 
1654fcf5ef2aSThomas Huth     acc->parent_realize = dc->realize;
1655fcf5ef2aSThomas Huth     dc->realize = arm_cpu_realizefn;
1656fcf5ef2aSThomas Huth     dc->props = arm_cpu_properties;
1657fcf5ef2aSThomas Huth 
1658fcf5ef2aSThomas Huth     acc->parent_reset = cc->reset;
1659fcf5ef2aSThomas Huth     cc->reset = arm_cpu_reset;
1660fcf5ef2aSThomas Huth 
1661fcf5ef2aSThomas Huth     cc->class_by_name = arm_cpu_class_by_name;
1662fcf5ef2aSThomas Huth     cc->has_work = arm_cpu_has_work;
1663fcf5ef2aSThomas Huth     cc->cpu_exec_interrupt = arm_cpu_exec_interrupt;
1664fcf5ef2aSThomas Huth     cc->dump_state = arm_cpu_dump_state;
1665fcf5ef2aSThomas Huth     cc->set_pc = arm_cpu_set_pc;
1666fcf5ef2aSThomas Huth     cc->gdb_read_register = arm_cpu_gdb_read_register;
1667fcf5ef2aSThomas Huth     cc->gdb_write_register = arm_cpu_gdb_write_register;
1668fcf5ef2aSThomas Huth #ifdef CONFIG_USER_ONLY
1669fcf5ef2aSThomas Huth     cc->handle_mmu_fault = arm_cpu_handle_mmu_fault;
1670fcf5ef2aSThomas Huth #else
1671fcf5ef2aSThomas Huth     cc->do_interrupt = arm_cpu_do_interrupt;
1672fcf5ef2aSThomas Huth     cc->do_unaligned_access = arm_cpu_do_unaligned_access;
1673fcf5ef2aSThomas Huth     cc->get_phys_page_attrs_debug = arm_cpu_get_phys_page_attrs_debug;
1674fcf5ef2aSThomas Huth     cc->asidx_from_attrs = arm_asidx_from_attrs;
1675fcf5ef2aSThomas Huth     cc->vmsd = &vmstate_arm_cpu;
1676fcf5ef2aSThomas Huth     cc->virtio_is_big_endian = arm_cpu_virtio_is_big_endian;
1677fcf5ef2aSThomas Huth     cc->write_elf64_note = arm_cpu_write_elf64_note;
1678fcf5ef2aSThomas Huth     cc->write_elf32_note = arm_cpu_write_elf32_note;
1679fcf5ef2aSThomas Huth #endif
1680fcf5ef2aSThomas Huth     cc->gdb_num_core_regs = 26;
1681fcf5ef2aSThomas Huth     cc->gdb_core_xml_file = "arm-core.xml";
1682fcf5ef2aSThomas Huth     cc->gdb_arch_name = arm_gdb_arch_name;
1683fcf5ef2aSThomas Huth     cc->gdb_stop_before_watchpoint = true;
1684fcf5ef2aSThomas Huth     cc->debug_excp_handler = arm_debug_excp_handler;
1685fcf5ef2aSThomas Huth     cc->debug_check_watchpoint = arm_debug_check_watchpoint;
168640612000SJulian Brown #if !defined(CONFIG_USER_ONLY)
168740612000SJulian Brown     cc->adjust_watchpoint_address = arm_adjust_watchpoint_address;
168840612000SJulian Brown #endif
1689fcf5ef2aSThomas Huth 
1690fcf5ef2aSThomas Huth     cc->disas_set_info = arm_disas_set_info;
1691fcf5ef2aSThomas Huth }
1692fcf5ef2aSThomas Huth 
1693fcf5ef2aSThomas Huth static void cpu_register(const ARMCPUInfo *info)
1694fcf5ef2aSThomas Huth {
1695fcf5ef2aSThomas Huth     TypeInfo type_info = {
1696fcf5ef2aSThomas Huth         .parent = TYPE_ARM_CPU,
1697fcf5ef2aSThomas Huth         .instance_size = sizeof(ARMCPU),
1698fcf5ef2aSThomas Huth         .instance_init = info->initfn,
1699fcf5ef2aSThomas Huth         .class_size = sizeof(ARMCPUClass),
1700fcf5ef2aSThomas Huth         .class_init = info->class_init,
1701fcf5ef2aSThomas Huth     };
1702fcf5ef2aSThomas Huth 
1703fcf5ef2aSThomas Huth     type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
1704fcf5ef2aSThomas Huth     type_register(&type_info);
1705fcf5ef2aSThomas Huth     g_free((void *)type_info.name);
1706fcf5ef2aSThomas Huth }
1707fcf5ef2aSThomas Huth 
1708fcf5ef2aSThomas Huth static const TypeInfo arm_cpu_type_info = {
1709fcf5ef2aSThomas Huth     .name = TYPE_ARM_CPU,
1710fcf5ef2aSThomas Huth     .parent = TYPE_CPU,
1711fcf5ef2aSThomas Huth     .instance_size = sizeof(ARMCPU),
1712fcf5ef2aSThomas Huth     .instance_init = arm_cpu_initfn,
1713fcf5ef2aSThomas Huth     .instance_post_init = arm_cpu_post_init,
1714fcf5ef2aSThomas Huth     .instance_finalize = arm_cpu_finalizefn,
1715fcf5ef2aSThomas Huth     .abstract = true,
1716fcf5ef2aSThomas Huth     .class_size = sizeof(ARMCPUClass),
1717fcf5ef2aSThomas Huth     .class_init = arm_cpu_class_init,
1718fcf5ef2aSThomas Huth };
1719fcf5ef2aSThomas Huth 
1720fcf5ef2aSThomas Huth static void arm_cpu_register_types(void)
1721fcf5ef2aSThomas Huth {
1722fcf5ef2aSThomas Huth     const ARMCPUInfo *info = arm_cpus;
1723fcf5ef2aSThomas Huth 
1724fcf5ef2aSThomas Huth     type_register_static(&arm_cpu_type_info);
1725fcf5ef2aSThomas Huth 
1726fcf5ef2aSThomas Huth     while (info->name) {
1727fcf5ef2aSThomas Huth         cpu_register(info);
1728fcf5ef2aSThomas Huth         info++;
1729fcf5ef2aSThomas Huth     }
1730fcf5ef2aSThomas Huth }
1731fcf5ef2aSThomas Huth 
1732fcf5ef2aSThomas Huth type_init(arm_cpu_register_types)
1733