]>
Commit | Line | Data |
---|---|---|
d14d42f1 PM |
1 | /* |
2 | * QEMU AArch64 CPU | |
3 | * | |
4 | * Copyright (c) 2013 Linaro Ltd | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU General Public License | |
8 | * as published by the Free Software Foundation; either version 2 | |
9 | * of the License, or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, see | |
18 | * <http://www.gnu.org/licenses/gpl-2.0.html> | |
19 | */ | |
20 | ||
74c21bd0 | 21 | #include "qemu/osdep.h" |
da34e65c | 22 | #include "qapi/error.h" |
d14d42f1 | 23 | #include "cpu.h" |
0b8fa32f | 24 | #include "qemu/module.h" |
d14d42f1 PM |
25 | #if !defined(CONFIG_USER_ONLY) |
26 | #include "hw/loader.h" | |
27 | #endif | |
d14d42f1 PM |
28 | #include "sysemu/sysemu.h" |
29 | #include "sysemu/kvm.h" | |
bab52d4b | 30 | #include "kvm_arm.h" |
adf92eab | 31 | #include "qapi/visitor.h" |
d14d42f1 PM |
32 | |
33 | static inline void set_feature(CPUARMState *env, int feature) | |
34 | { | |
35 | env->features |= 1ULL << feature; | |
36 | } | |
37 | ||
fb8d6c24 GB |
38 | static inline void unset_feature(CPUARMState *env, int feature) |
39 | { | |
40 | env->features &= ~(1ULL << feature); | |
41 | } | |
42 | ||
377a44ec | 43 | #ifndef CONFIG_USER_ONLY |
ee804264 | 44 | static uint64_t a57_a53_l2ctlr_read(CPUARMState *env, const ARMCPRegInfo *ri) |
377a44ec | 45 | { |
2fc0cc0e | 46 | ARMCPU *cpu = env_archcpu(env); |
f9a69711 AF |
47 | |
48 | /* Number of cores is in [25:24]; otherwise we RAZ */ | |
49 | return (cpu->core_count - 1) << 24; | |
377a44ec PM |
50 | } |
51 | #endif | |
52 | ||
f11b452b | 53 | static const ARMCPRegInfo cortex_a72_a57_a53_cp_reginfo[] = { |
377a44ec PM |
54 | #ifndef CONFIG_USER_ONLY |
55 | { .name = "L2CTLR_EL1", .state = ARM_CP_STATE_AA64, | |
56 | .opc0 = 3, .opc1 = 1, .crn = 11, .crm = 0, .opc2 = 2, | |
ee804264 | 57 | .access = PL1_RW, .readfn = a57_a53_l2ctlr_read, |
377a44ec PM |
58 | .writefn = arm_cp_write_ignore }, |
59 | { .name = "L2CTLR", | |
60 | .cp = 15, .opc1 = 1, .crn = 9, .crm = 0, .opc2 = 2, | |
ee804264 | 61 | .access = PL1_RW, .readfn = a57_a53_l2ctlr_read, |
377a44ec PM |
62 | .writefn = arm_cp_write_ignore }, |
63 | #endif | |
64 | { .name = "L2ECTLR_EL1", .state = ARM_CP_STATE_AA64, | |
65 | .opc0 = 3, .opc1 = 1, .crn = 11, .crm = 0, .opc2 = 3, | |
66 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
67 | { .name = "L2ECTLR", | |
68 | .cp = 15, .opc1 = 1, .crn = 9, .crm = 0, .opc2 = 3, | |
69 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
70 | { .name = "L2ACTLR", .state = ARM_CP_STATE_BOTH, | |
71 | .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 0, .opc2 = 0, | |
72 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
73 | { .name = "CPUACTLR_EL1", .state = ARM_CP_STATE_AA64, | |
74 | .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 0, | |
75 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
76 | { .name = "CPUACTLR", | |
77 | .cp = 15, .opc1 = 0, .crm = 15, | |
78 | .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 }, | |
79 | { .name = "CPUECTLR_EL1", .state = ARM_CP_STATE_AA64, | |
80 | .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 1, | |
81 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
82 | { .name = "CPUECTLR", | |
83 | .cp = 15, .opc1 = 1, .crm = 15, | |
84 | .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 }, | |
85 | { .name = "CPUMERRSR_EL1", .state = ARM_CP_STATE_AA64, | |
86 | .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 2, | |
87 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
88 | { .name = "CPUMERRSR", | |
89 | .cp = 15, .opc1 = 2, .crm = 15, | |
90 | .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 }, | |
91 | { .name = "L2MERRSR_EL1", .state = ARM_CP_STATE_AA64, | |
92 | .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 3, | |
93 | .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 }, | |
94 | { .name = "L2MERRSR", | |
95 | .cp = 15, .opc1 = 3, .crm = 15, | |
96 | .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 }, | |
97 | REGINFO_SENTINEL | |
98 | }; | |
99 | ||
cb1fa941 PM |
100 | static void aarch64_a57_initfn(Object *obj) |
101 | { | |
102 | ARMCPU *cpu = ARM_CPU(obj); | |
103 | ||
0458b7b5 | 104 | cpu->dtb_compatible = "arm,cortex-a57"; |
cb1fa941 PM |
105 | set_feature(&cpu->env, ARM_FEATURE_V8); |
106 | set_feature(&cpu->env, ARM_FEATURE_VFP4); | |
cb1fa941 PM |
107 | set_feature(&cpu->env, ARM_FEATURE_NEON); |
108 | set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | |
109 | set_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
f318cec6 | 110 | set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); |
c25bd18a | 111 | set_feature(&cpu->env, ARM_FEATURE_EL2); |
3ad901bc | 112 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
929e754d | 113 | set_feature(&cpu->env, ARM_FEATURE_PMU); |
cb1fa941 PM |
114 | cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A57; |
115 | cpu->midr = 0x411fd070; | |
13b72b2b | 116 | cpu->revidr = 0x00000000; |
cb1fa941 | 117 | cpu->reset_fpsid = 0x41034070; |
47576b94 RH |
118 | cpu->isar.mvfr0 = 0x10110222; |
119 | cpu->isar.mvfr1 = 0x12111111; | |
120 | cpu->isar.mvfr2 = 0x00000043; | |
cb1fa941 PM |
121 | cpu->ctr = 0x8444c004; |
122 | cpu->reset_sctlr = 0x00c50838; | |
123 | cpu->id_pfr0 = 0x00000131; | |
124 | cpu->id_pfr1 = 0x00011011; | |
125 | cpu->id_dfr0 = 0x03010066; | |
126 | cpu->id_afr0 = 0x00000000; | |
127 | cpu->id_mmfr0 = 0x10101105; | |
128 | cpu->id_mmfr1 = 0x40000000; | |
129 | cpu->id_mmfr2 = 0x01260000; | |
130 | cpu->id_mmfr3 = 0x02102211; | |
47576b94 RH |
131 | cpu->isar.id_isar0 = 0x02101110; |
132 | cpu->isar.id_isar1 = 0x13112111; | |
133 | cpu->isar.id_isar2 = 0x21232042; | |
134 | cpu->isar.id_isar3 = 0x01112131; | |
135 | cpu->isar.id_isar4 = 0x00011142; | |
136 | cpu->isar.id_isar5 = 0x00011121; | |
137 | cpu->isar.id_isar6 = 0; | |
138 | cpu->isar.id_aa64pfr0 = 0x00002222; | |
cb1fa941 | 139 | cpu->id_aa64dfr0 = 0x10305106; |
47576b94 | 140 | cpu->isar.id_aa64isar0 = 0x00011120; |
3dc91ddb | 141 | cpu->isar.id_aa64mmfr0 = 0x00001124; |
48eb3ae6 | 142 | cpu->dbgdidr = 0x3516d000; |
cb1fa941 PM |
143 | cpu->clidr = 0x0a200023; |
144 | cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | |
145 | cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | |
146 | cpu->ccsidr[2] = 0x70ffe07a; /* 2048KB L2 cache */ | |
147 | cpu->dcz_blocksize = 4; /* 64 bytes */ | |
e45868a3 PM |
148 | cpu->gic_num_lrs = 4; |
149 | cpu->gic_vpribits = 5; | |
150 | cpu->gic_vprebits = 5; | |
f11b452b | 151 | define_arm_cp_regs(cpu, cortex_a72_a57_a53_cp_reginfo); |
cb1fa941 PM |
152 | } |
153 | ||
e3531026 PC |
154 | static void aarch64_a53_initfn(Object *obj) |
155 | { | |
156 | ARMCPU *cpu = ARM_CPU(obj); | |
157 | ||
158 | cpu->dtb_compatible = "arm,cortex-a53"; | |
159 | set_feature(&cpu->env, ARM_FEATURE_V8); | |
160 | set_feature(&cpu->env, ARM_FEATURE_VFP4); | |
161 | set_feature(&cpu->env, ARM_FEATURE_NEON); | |
162 | set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | |
163 | set_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
164 | set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | |
c25bd18a | 165 | set_feature(&cpu->env, ARM_FEATURE_EL2); |
3ad901bc | 166 | set_feature(&cpu->env, ARM_FEATURE_EL3); |
929e754d | 167 | set_feature(&cpu->env, ARM_FEATURE_PMU); |
7525465e | 168 | cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A53; |
e3531026 | 169 | cpu->midr = 0x410fd034; |
13b72b2b | 170 | cpu->revidr = 0x00000000; |
e3531026 | 171 | cpu->reset_fpsid = 0x41034070; |
47576b94 RH |
172 | cpu->isar.mvfr0 = 0x10110222; |
173 | cpu->isar.mvfr1 = 0x12111111; | |
174 | cpu->isar.mvfr2 = 0x00000043; | |
e3531026 PC |
175 | cpu->ctr = 0x84448004; /* L1Ip = VIPT */ |
176 | cpu->reset_sctlr = 0x00c50838; | |
177 | cpu->id_pfr0 = 0x00000131; | |
178 | cpu->id_pfr1 = 0x00011011; | |
179 | cpu->id_dfr0 = 0x03010066; | |
180 | cpu->id_afr0 = 0x00000000; | |
181 | cpu->id_mmfr0 = 0x10101105; | |
182 | cpu->id_mmfr1 = 0x40000000; | |
183 | cpu->id_mmfr2 = 0x01260000; | |
184 | cpu->id_mmfr3 = 0x02102211; | |
47576b94 RH |
185 | cpu->isar.id_isar0 = 0x02101110; |
186 | cpu->isar.id_isar1 = 0x13112111; | |
187 | cpu->isar.id_isar2 = 0x21232042; | |
188 | cpu->isar.id_isar3 = 0x01112131; | |
189 | cpu->isar.id_isar4 = 0x00011142; | |
190 | cpu->isar.id_isar5 = 0x00011121; | |
191 | cpu->isar.id_isar6 = 0; | |
192 | cpu->isar.id_aa64pfr0 = 0x00002222; | |
e3531026 | 193 | cpu->id_aa64dfr0 = 0x10305106; |
47576b94 | 194 | cpu->isar.id_aa64isar0 = 0x00011120; |
3dc91ddb | 195 | cpu->isar.id_aa64mmfr0 = 0x00001122; /* 40 bit physical addr */ |
e3531026 PC |
196 | cpu->dbgdidr = 0x3516d000; |
197 | cpu->clidr = 0x0a200023; | |
198 | cpu->ccsidr[0] = 0x700fe01a; /* 32KB L1 dcache */ | |
199 | cpu->ccsidr[1] = 0x201fe00a; /* 32KB L1 icache */ | |
200 | cpu->ccsidr[2] = 0x707fe07a; /* 1024KB L2 cache */ | |
201 | cpu->dcz_blocksize = 4; /* 64 bytes */ | |
e45868a3 PM |
202 | cpu->gic_num_lrs = 4; |
203 | cpu->gic_vpribits = 5; | |
204 | cpu->gic_vprebits = 5; | |
f11b452b EI |
205 | define_arm_cp_regs(cpu, cortex_a72_a57_a53_cp_reginfo); |
206 | } | |
207 | ||
208 | static void aarch64_a72_initfn(Object *obj) | |
209 | { | |
210 | ARMCPU *cpu = ARM_CPU(obj); | |
211 | ||
212 | cpu->dtb_compatible = "arm,cortex-a72"; | |
213 | set_feature(&cpu->env, ARM_FEATURE_V8); | |
214 | set_feature(&cpu->env, ARM_FEATURE_VFP4); | |
215 | set_feature(&cpu->env, ARM_FEATURE_NEON); | |
216 | set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER); | |
217 | set_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
218 | set_feature(&cpu->env, ARM_FEATURE_CBAR_RO); | |
f11b452b EI |
219 | set_feature(&cpu->env, ARM_FEATURE_EL2); |
220 | set_feature(&cpu->env, ARM_FEATURE_EL3); | |
221 | set_feature(&cpu->env, ARM_FEATURE_PMU); | |
222 | cpu->midr = 0x410fd083; | |
223 | cpu->revidr = 0x00000000; | |
224 | cpu->reset_fpsid = 0x41034080; | |
47576b94 RH |
225 | cpu->isar.mvfr0 = 0x10110222; |
226 | cpu->isar.mvfr1 = 0x12111111; | |
227 | cpu->isar.mvfr2 = 0x00000043; | |
f11b452b EI |
228 | cpu->ctr = 0x8444c004; |
229 | cpu->reset_sctlr = 0x00c50838; | |
230 | cpu->id_pfr0 = 0x00000131; | |
231 | cpu->id_pfr1 = 0x00011011; | |
232 | cpu->id_dfr0 = 0x03010066; | |
233 | cpu->id_afr0 = 0x00000000; | |
234 | cpu->id_mmfr0 = 0x10201105; | |
235 | cpu->id_mmfr1 = 0x40000000; | |
236 | cpu->id_mmfr2 = 0x01260000; | |
237 | cpu->id_mmfr3 = 0x02102211; | |
47576b94 RH |
238 | cpu->isar.id_isar0 = 0x02101110; |
239 | cpu->isar.id_isar1 = 0x13112111; | |
240 | cpu->isar.id_isar2 = 0x21232042; | |
241 | cpu->isar.id_isar3 = 0x01112131; | |
242 | cpu->isar.id_isar4 = 0x00011142; | |
243 | cpu->isar.id_isar5 = 0x00011121; | |
244 | cpu->isar.id_aa64pfr0 = 0x00002222; | |
f11b452b | 245 | cpu->id_aa64dfr0 = 0x10305106; |
47576b94 | 246 | cpu->isar.id_aa64isar0 = 0x00011120; |
3dc91ddb | 247 | cpu->isar.id_aa64mmfr0 = 0x00001124; |
f11b452b EI |
248 | cpu->dbgdidr = 0x3516d000; |
249 | cpu->clidr = 0x0a200023; | |
250 | cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */ | |
251 | cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */ | |
252 | cpu->ccsidr[2] = 0x707fe07a; /* 1MB L2 cache */ | |
253 | cpu->dcz_blocksize = 4; /* 64 bytes */ | |
254 | cpu->gic_num_lrs = 4; | |
255 | cpu->gic_vpribits = 5; | |
256 | cpu->gic_vprebits = 5; | |
257 | define_arm_cp_regs(cpu, cortex_a72_a57_a53_cp_reginfo); | |
e3531026 PC |
258 | } |
259 | ||
adf92eab RH |
260 | static void cpu_max_get_sve_vq(Object *obj, Visitor *v, const char *name, |
261 | void *opaque, Error **errp) | |
262 | { | |
263 | ARMCPU *cpu = ARM_CPU(obj); | |
264 | visit_type_uint32(v, name, &cpu->sve_max_vq, errp); | |
265 | } | |
266 | ||
267 | static void cpu_max_set_sve_vq(Object *obj, Visitor *v, const char *name, | |
268 | void *opaque, Error **errp) | |
269 | { | |
270 | ARMCPU *cpu = ARM_CPU(obj); | |
271 | Error *err = NULL; | |
272 | ||
273 | visit_type_uint32(v, name, &cpu->sve_max_vq, &err); | |
274 | ||
275 | if (!err && (cpu->sve_max_vq == 0 || cpu->sve_max_vq > ARM_MAX_VQ)) { | |
276 | error_setg(&err, "unsupported SVE vector length"); | |
277 | error_append_hint(&err, "Valid sve-max-vq in range [1-%d]\n", | |
278 | ARM_MAX_VQ); | |
279 | } | |
280 | error_propagate(errp, err); | |
281 | } | |
282 | ||
bab52d4b PM |
283 | /* -cpu max: if KVM is enabled, like -cpu host (best possible with this host); |
284 | * otherwise, a CPU with as many features enabled as our emulation supports. | |
285 | * The version of '-cpu max' for qemu-system-arm is defined in cpu.c; | |
286 | * this only needs to handle 64 bits. | |
287 | */ | |
288 | static void aarch64_max_initfn(Object *obj) | |
289 | { | |
290 | ARMCPU *cpu = ARM_CPU(obj); | |
291 | ||
292 | if (kvm_enabled()) { | |
293 | kvm_arm_set_cpu_features_from_host(cpu); | |
294 | } else { | |
962fcbf2 RH |
295 | uint64_t t; |
296 | uint32_t u; | |
bab52d4b | 297 | aarch64_a57_initfn(obj); |
962fcbf2 RH |
298 | |
299 | t = cpu->isar.id_aa64isar0; | |
300 | t = FIELD_DP64(t, ID_AA64ISAR0, AES, 2); /* AES + PMULL */ | |
301 | t = FIELD_DP64(t, ID_AA64ISAR0, SHA1, 1); | |
302 | t = FIELD_DP64(t, ID_AA64ISAR0, SHA2, 2); /* SHA512 */ | |
303 | t = FIELD_DP64(t, ID_AA64ISAR0, CRC32, 1); | |
304 | t = FIELD_DP64(t, ID_AA64ISAR0, ATOMIC, 2); | |
305 | t = FIELD_DP64(t, ID_AA64ISAR0, RDM, 1); | |
306 | t = FIELD_DP64(t, ID_AA64ISAR0, SHA3, 1); | |
307 | t = FIELD_DP64(t, ID_AA64ISAR0, SM3, 1); | |
308 | t = FIELD_DP64(t, ID_AA64ISAR0, SM4, 1); | |
309 | t = FIELD_DP64(t, ID_AA64ISAR0, DP, 1); | |
991c0599 | 310 | t = FIELD_DP64(t, ID_AA64ISAR0, FHM, 1); |
5ef84f11 | 311 | t = FIELD_DP64(t, ID_AA64ISAR0, TS, 2); /* v8.5-CondM */ |
de390645 | 312 | t = FIELD_DP64(t, ID_AA64ISAR0, RNDR, 1); |
962fcbf2 RH |
313 | cpu->isar.id_aa64isar0 = t; |
314 | ||
315 | t = cpu->isar.id_aa64isar1; | |
6c1f6f27 | 316 | t = FIELD_DP64(t, ID_AA64ISAR1, JSCVT, 1); |
962fcbf2 | 317 | t = FIELD_DP64(t, ID_AA64ISAR1, FCMA, 1); |
1ce32e47 RH |
318 | t = FIELD_DP64(t, ID_AA64ISAR1, APA, 1); /* PAuth, architected only */ |
319 | t = FIELD_DP64(t, ID_AA64ISAR1, API, 0); | |
320 | t = FIELD_DP64(t, ID_AA64ISAR1, GPA, 1); | |
321 | t = FIELD_DP64(t, ID_AA64ISAR1, GPI, 0); | |
9888bd1e | 322 | t = FIELD_DP64(t, ID_AA64ISAR1, SB, 1); |
cb570bd3 | 323 | t = FIELD_DP64(t, ID_AA64ISAR1, SPECRES, 1); |
6bea2563 | 324 | t = FIELD_DP64(t, ID_AA64ISAR1, FRINTTS, 1); |
962fcbf2 RH |
325 | cpu->isar.id_aa64isar1 = t; |
326 | ||
cd208a1c RH |
327 | t = cpu->isar.id_aa64pfr0; |
328 | t = FIELD_DP64(t, ID_AA64PFR0, SVE, 1); | |
5763190f RH |
329 | t = FIELD_DP64(t, ID_AA64PFR0, FP, 1); |
330 | t = FIELD_DP64(t, ID_AA64PFR0, ADVSIMD, 1); | |
cd208a1c RH |
331 | cpu->isar.id_aa64pfr0 = t; |
332 | ||
a15daafa RH |
333 | t = cpu->isar.id_aa64pfr1; |
334 | t = FIELD_DP64(t, ID_AA64PFR1, BT, 1); | |
335 | cpu->isar.id_aa64pfr1 = t; | |
336 | ||
037c13c5 RH |
337 | t = cpu->isar.id_aa64mmfr1; |
338 | t = FIELD_DP64(t, ID_AA64MMFR1, HPDS, 1); /* HPD */ | |
2d7137c1 | 339 | t = FIELD_DP64(t, ID_AA64MMFR1, LO, 1); |
037c13c5 RH |
340 | cpu->isar.id_aa64mmfr1 = t; |
341 | ||
962fcbf2 RH |
342 | /* Replicate the same data to the 32-bit id registers. */ |
343 | u = cpu->isar.id_isar5; | |
344 | u = FIELD_DP32(u, ID_ISAR5, AES, 2); /* AES + PMULL */ | |
345 | u = FIELD_DP32(u, ID_ISAR5, SHA1, 1); | |
346 | u = FIELD_DP32(u, ID_ISAR5, SHA2, 1); | |
347 | u = FIELD_DP32(u, ID_ISAR5, CRC32, 1); | |
348 | u = FIELD_DP32(u, ID_ISAR5, RDM, 1); | |
349 | u = FIELD_DP32(u, ID_ISAR5, VCMA, 1); | |
350 | cpu->isar.id_isar5 = u; | |
351 | ||
352 | u = cpu->isar.id_isar6; | |
6c1f6f27 | 353 | u = FIELD_DP32(u, ID_ISAR6, JSCVT, 1); |
962fcbf2 | 354 | u = FIELD_DP32(u, ID_ISAR6, DP, 1); |
991c0599 | 355 | u = FIELD_DP32(u, ID_ISAR6, FHM, 1); |
9888bd1e | 356 | u = FIELD_DP32(u, ID_ISAR6, SB, 1); |
cb570bd3 | 357 | u = FIELD_DP32(u, ID_ISAR6, SPECRES, 1); |
962fcbf2 RH |
358 | cpu->isar.id_isar6 = u; |
359 | ||
5763190f RH |
360 | /* |
361 | * FIXME: We do not yet support ARMv8.2-fp16 for AArch32 yet, | |
362 | * so do not set MVFR1.FPHP. Strictly speaking this is not legal, | |
363 | * but it is also not legal to enable SVE without support for FP16, | |
364 | * and enabling SVE in system mode is more useful in the short term. | |
a0032cc5 | 365 | */ |
5763190f RH |
366 | |
367 | #ifdef CONFIG_USER_ONLY | |
a0032cc5 PM |
368 | /* For usermode -cpu max we can use a larger and more efficient DCZ |
369 | * blocksize since we don't have to follow what the hardware does. | |
bab52d4b | 370 | */ |
a0032cc5 PM |
371 | cpu->ctr = 0x80038003; /* 32 byte I and D cacheline size, VIPT icache */ |
372 | cpu->dcz_blocksize = 7; /* 512 bytes */ | |
373 | #endif | |
adf92eab RH |
374 | |
375 | cpu->sve_max_vq = ARM_MAX_VQ; | |
376 | object_property_add(obj, "sve-max-vq", "uint32", cpu_max_get_sve_vq, | |
377 | cpu_max_set_sve_vq, NULL, NULL, &error_fatal); | |
bab52d4b PM |
378 | } |
379 | } | |
380 | ||
51e5ef45 | 381 | struct ARMCPUInfo { |
d14d42f1 PM |
382 | const char *name; |
383 | void (*initfn)(Object *obj); | |
384 | void (*class_init)(ObjectClass *oc, void *data); | |
51e5ef45 | 385 | }; |
d14d42f1 PM |
386 | |
387 | static const ARMCPUInfo aarch64_cpus[] = { | |
cb1fa941 | 388 | { .name = "cortex-a57", .initfn = aarch64_a57_initfn }, |
e3531026 | 389 | { .name = "cortex-a53", .initfn = aarch64_a53_initfn }, |
f11b452b | 390 | { .name = "cortex-a72", .initfn = aarch64_a72_initfn }, |
bab52d4b | 391 | { .name = "max", .initfn = aarch64_max_initfn }, |
83e6813a | 392 | { .name = NULL } |
d14d42f1 PM |
393 | }; |
394 | ||
fb8d6c24 GB |
395 | static bool aarch64_cpu_get_aarch64(Object *obj, Error **errp) |
396 | { | |
397 | ARMCPU *cpu = ARM_CPU(obj); | |
398 | ||
399 | return arm_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
400 | } | |
401 | ||
402 | static void aarch64_cpu_set_aarch64(Object *obj, bool value, Error **errp) | |
403 | { | |
404 | ARMCPU *cpu = ARM_CPU(obj); | |
405 | ||
406 | /* At this time, this property is only allowed if KVM is enabled. This | |
407 | * restriction allows us to avoid fixing up functionality that assumes a | |
408 | * uniform execution state like do_interrupt. | |
409 | */ | |
410 | if (!kvm_enabled()) { | |
411 | error_setg(errp, "'aarch64' feature cannot be disabled " | |
412 | "unless KVM is enabled"); | |
413 | return; | |
414 | } | |
415 | ||
416 | if (value == false) { | |
417 | unset_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
418 | } else { | |
419 | set_feature(&cpu->env, ARM_FEATURE_AARCH64); | |
420 | } | |
421 | } | |
422 | ||
d14d42f1 PM |
423 | static void aarch64_cpu_initfn(Object *obj) |
424 | { | |
fb8d6c24 GB |
425 | object_property_add_bool(obj, "aarch64", aarch64_cpu_get_aarch64, |
426 | aarch64_cpu_set_aarch64, NULL); | |
427 | object_property_set_description(obj, "aarch64", | |
428 | "Set on/off to enable/disable aarch64 " | |
429 | "execution state ", | |
430 | NULL); | |
d14d42f1 PM |
431 | } |
432 | ||
433 | static void aarch64_cpu_finalizefn(Object *obj) | |
434 | { | |
435 | } | |
436 | ||
b3820e6c DH |
437 | static gchar *aarch64_gdb_arch_name(CPUState *cs) |
438 | { | |
439 | return g_strdup("aarch64"); | |
440 | } | |
441 | ||
d14d42f1 PM |
442 | static void aarch64_cpu_class_init(ObjectClass *oc, void *data) |
443 | { | |
14ade10f AG |
444 | CPUClass *cc = CPU_CLASS(oc); |
445 | ||
e8925712 | 446 | cc->cpu_exec_interrupt = arm_cpu_exec_interrupt; |
96c04212 AG |
447 | cc->gdb_read_register = aarch64_cpu_gdb_read_register; |
448 | cc->gdb_write_register = aarch64_cpu_gdb_write_register; | |
449 | cc->gdb_num_core_regs = 34; | |
450 | cc->gdb_core_xml_file = "aarch64-core.xml"; | |
b3820e6c | 451 | cc->gdb_arch_name = aarch64_gdb_arch_name; |
d14d42f1 PM |
452 | } |
453 | ||
51e5ef45 MAL |
454 | static void aarch64_cpu_instance_init(Object *obj) |
455 | { | |
456 | ARMCPUClass *acc = ARM_CPU_GET_CLASS(obj); | |
457 | ||
458 | acc->info->initfn(obj); | |
459 | arm_cpu_post_init(obj); | |
460 | } | |
461 | ||
462 | static void cpu_register_class_init(ObjectClass *oc, void *data) | |
463 | { | |
464 | ARMCPUClass *acc = ARM_CPU_CLASS(oc); | |
465 | ||
466 | acc->info = data; | |
467 | } | |
468 | ||
d14d42f1 PM |
469 | static void aarch64_cpu_register(const ARMCPUInfo *info) |
470 | { | |
471 | TypeInfo type_info = { | |
472 | .parent = TYPE_AARCH64_CPU, | |
473 | .instance_size = sizeof(ARMCPU), | |
51e5ef45 | 474 | .instance_init = aarch64_cpu_instance_init, |
d14d42f1 | 475 | .class_size = sizeof(ARMCPUClass), |
51e5ef45 MAL |
476 | .class_init = info->class_init ?: cpu_register_class_init, |
477 | .class_data = (void *)info, | |
d14d42f1 PM |
478 | }; |
479 | ||
480 | type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name); | |
481 | type_register(&type_info); | |
482 | g_free((void *)type_info.name); | |
483 | } | |
484 | ||
485 | static const TypeInfo aarch64_cpu_type_info = { | |
486 | .name = TYPE_AARCH64_CPU, | |
487 | .parent = TYPE_ARM_CPU, | |
488 | .instance_size = sizeof(ARMCPU), | |
489 | .instance_init = aarch64_cpu_initfn, | |
490 | .instance_finalize = aarch64_cpu_finalizefn, | |
491 | .abstract = true, | |
492 | .class_size = sizeof(AArch64CPUClass), | |
493 | .class_init = aarch64_cpu_class_init, | |
494 | }; | |
495 | ||
496 | static void aarch64_cpu_register_types(void) | |
497 | { | |
83e6813a | 498 | const ARMCPUInfo *info = aarch64_cpus; |
d14d42f1 PM |
499 | |
500 | type_register_static(&aarch64_cpu_type_info); | |
83e6813a PM |
501 | |
502 | while (info->name) { | |
503 | aarch64_cpu_register(info); | |
504 | info++; | |
d14d42f1 PM |
505 | } |
506 | } | |
507 | ||
508 | type_init(aarch64_cpu_register_types) |