]> Git Repo - qemu.git/blame - target-arm/cpu64.c
nbd: enable use of TLS with qemu-nbd server
[qemu.git] / target-arm / cpu64.c
CommitLineData
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"
d14d42f1
PM
22#include "cpu.h"
23#include "qemu-common.h"
24#if !defined(CONFIG_USER_ONLY)
25#include "hw/loader.h"
26#endif
27#include "hw/arm/arm.h"
28#include "sysemu/sysemu.h"
29#include "sysemu/kvm.h"
30
31static inline void set_feature(CPUARMState *env, int feature)
32{
33 env->features |= 1ULL << feature;
34}
35
fb8d6c24
GB
36static inline void unset_feature(CPUARMState *env, int feature)
37{
38 env->features &= ~(1ULL << feature);
39}
40
377a44ec 41#ifndef CONFIG_USER_ONLY
ee804264 42static uint64_t a57_a53_l2ctlr_read(CPUARMState *env, const ARMCPRegInfo *ri)
377a44ec
PM
43{
44 /* Number of processors is in [25:24]; otherwise we RAZ */
45 return (smp_cpus - 1) << 24;
46}
47#endif
48
ee804264 49static const ARMCPRegInfo cortex_a57_a53_cp_reginfo[] = {
377a44ec
PM
50#ifndef CONFIG_USER_ONLY
51 { .name = "L2CTLR_EL1", .state = ARM_CP_STATE_AA64,
52 .opc0 = 3, .opc1 = 1, .crn = 11, .crm = 0, .opc2 = 2,
ee804264 53 .access = PL1_RW, .readfn = a57_a53_l2ctlr_read,
377a44ec
PM
54 .writefn = arm_cp_write_ignore },
55 { .name = "L2CTLR",
56 .cp = 15, .opc1 = 1, .crn = 9, .crm = 0, .opc2 = 2,
ee804264 57 .access = PL1_RW, .readfn = a57_a53_l2ctlr_read,
377a44ec
PM
58 .writefn = arm_cp_write_ignore },
59#endif
60 { .name = "L2ECTLR_EL1", .state = ARM_CP_STATE_AA64,
61 .opc0 = 3, .opc1 = 1, .crn = 11, .crm = 0, .opc2 = 3,
62 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
63 { .name = "L2ECTLR",
64 .cp = 15, .opc1 = 1, .crn = 9, .crm = 0, .opc2 = 3,
65 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
66 { .name = "L2ACTLR", .state = ARM_CP_STATE_BOTH,
67 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 0, .opc2 = 0,
68 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
69 { .name = "CPUACTLR_EL1", .state = ARM_CP_STATE_AA64,
70 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 0,
71 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
72 { .name = "CPUACTLR",
73 .cp = 15, .opc1 = 0, .crm = 15,
74 .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
75 { .name = "CPUECTLR_EL1", .state = ARM_CP_STATE_AA64,
76 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 1,
77 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
78 { .name = "CPUECTLR",
79 .cp = 15, .opc1 = 1, .crm = 15,
80 .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
81 { .name = "CPUMERRSR_EL1", .state = ARM_CP_STATE_AA64,
82 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 2,
83 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
84 { .name = "CPUMERRSR",
85 .cp = 15, .opc1 = 2, .crm = 15,
86 .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
87 { .name = "L2MERRSR_EL1", .state = ARM_CP_STATE_AA64,
88 .opc0 = 3, .opc1 = 1, .crn = 15, .crm = 2, .opc2 = 3,
89 .access = PL1_RW, .type = ARM_CP_CONST, .resetvalue = 0 },
90 { .name = "L2MERRSR",
91 .cp = 15, .opc1 = 3, .crm = 15,
92 .access = PL1_RW, .type = ARM_CP_CONST | ARM_CP_64BIT, .resetvalue = 0 },
93 REGINFO_SENTINEL
94};
95
cb1fa941
PM
96static void aarch64_a57_initfn(Object *obj)
97{
98 ARMCPU *cpu = ARM_CPU(obj);
99
0458b7b5 100 cpu->dtb_compatible = "arm,cortex-a57";
cb1fa941
PM
101 set_feature(&cpu->env, ARM_FEATURE_V8);
102 set_feature(&cpu->env, ARM_FEATURE_VFP4);
cb1fa941
PM
103 set_feature(&cpu->env, ARM_FEATURE_NEON);
104 set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER);
105 set_feature(&cpu->env, ARM_FEATURE_AARCH64);
f318cec6 106 set_feature(&cpu->env, ARM_FEATURE_CBAR_RO);
25f748e3
PM
107 set_feature(&cpu->env, ARM_FEATURE_V8_AES);
108 set_feature(&cpu->env, ARM_FEATURE_V8_SHA1);
109 set_feature(&cpu->env, ARM_FEATURE_V8_SHA256);
110 set_feature(&cpu->env, ARM_FEATURE_V8_PMULL);
111 set_feature(&cpu->env, ARM_FEATURE_CRC);
3ad901bc 112 set_feature(&cpu->env, ARM_FEATURE_EL3);
cb1fa941
PM
113 cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A57;
114 cpu->midr = 0x411fd070;
13b72b2b 115 cpu->revidr = 0x00000000;
cb1fa941
PM
116 cpu->reset_fpsid = 0x41034070;
117 cpu->mvfr0 = 0x10110222;
118 cpu->mvfr1 = 0x12111111;
119 cpu->mvfr2 = 0x00000043;
120 cpu->ctr = 0x8444c004;
121 cpu->reset_sctlr = 0x00c50838;
122 cpu->id_pfr0 = 0x00000131;
123 cpu->id_pfr1 = 0x00011011;
124 cpu->id_dfr0 = 0x03010066;
125 cpu->id_afr0 = 0x00000000;
126 cpu->id_mmfr0 = 0x10101105;
127 cpu->id_mmfr1 = 0x40000000;
128 cpu->id_mmfr2 = 0x01260000;
129 cpu->id_mmfr3 = 0x02102211;
130 cpu->id_isar0 = 0x02101110;
131 cpu->id_isar1 = 0x13112111;
132 cpu->id_isar2 = 0x21232042;
133 cpu->id_isar3 = 0x01112131;
134 cpu->id_isar4 = 0x00011142;
c3796214 135 cpu->id_isar5 = 0x00011121;
cb1fa941
PM
136 cpu->id_aa64pfr0 = 0x00002222;
137 cpu->id_aa64dfr0 = 0x10305106;
c3796214 138 cpu->id_aa64isar0 = 0x00011120;
cb1fa941 139 cpu->id_aa64mmfr0 = 0x00001124;
48eb3ae6 140 cpu->dbgdidr = 0x3516d000;
cb1fa941
PM
141 cpu->clidr = 0x0a200023;
142 cpu->ccsidr[0] = 0x701fe00a; /* 32KB L1 dcache */
143 cpu->ccsidr[1] = 0x201fe012; /* 48KB L1 icache */
144 cpu->ccsidr[2] = 0x70ffe07a; /* 2048KB L2 cache */
145 cpu->dcz_blocksize = 4; /* 64 bytes */
ee804264 146 define_arm_cp_regs(cpu, cortex_a57_a53_cp_reginfo);
cb1fa941
PM
147}
148
e3531026
PC
149static void aarch64_a53_initfn(Object *obj)
150{
151 ARMCPU *cpu = ARM_CPU(obj);
152
153 cpu->dtb_compatible = "arm,cortex-a53";
154 set_feature(&cpu->env, ARM_FEATURE_V8);
155 set_feature(&cpu->env, ARM_FEATURE_VFP4);
156 set_feature(&cpu->env, ARM_FEATURE_NEON);
157 set_feature(&cpu->env, ARM_FEATURE_GENERIC_TIMER);
158 set_feature(&cpu->env, ARM_FEATURE_AARCH64);
159 set_feature(&cpu->env, ARM_FEATURE_CBAR_RO);
160 set_feature(&cpu->env, ARM_FEATURE_V8_AES);
161 set_feature(&cpu->env, ARM_FEATURE_V8_SHA1);
162 set_feature(&cpu->env, ARM_FEATURE_V8_SHA256);
163 set_feature(&cpu->env, ARM_FEATURE_V8_PMULL);
164 set_feature(&cpu->env, ARM_FEATURE_CRC);
3ad901bc 165 set_feature(&cpu->env, ARM_FEATURE_EL3);
7525465e 166 cpu->kvm_target = QEMU_KVM_ARM_TARGET_CORTEX_A53;
e3531026 167 cpu->midr = 0x410fd034;
13b72b2b 168 cpu->revidr = 0x00000000;
e3531026
PC
169 cpu->reset_fpsid = 0x41034070;
170 cpu->mvfr0 = 0x10110222;
171 cpu->mvfr1 = 0x12111111;
172 cpu->mvfr2 = 0x00000043;
173 cpu->ctr = 0x84448004; /* L1Ip = VIPT */
174 cpu->reset_sctlr = 0x00c50838;
175 cpu->id_pfr0 = 0x00000131;
176 cpu->id_pfr1 = 0x00011011;
177 cpu->id_dfr0 = 0x03010066;
178 cpu->id_afr0 = 0x00000000;
179 cpu->id_mmfr0 = 0x10101105;
180 cpu->id_mmfr1 = 0x40000000;
181 cpu->id_mmfr2 = 0x01260000;
182 cpu->id_mmfr3 = 0x02102211;
183 cpu->id_isar0 = 0x02101110;
184 cpu->id_isar1 = 0x13112111;
185 cpu->id_isar2 = 0x21232042;
186 cpu->id_isar3 = 0x01112131;
187 cpu->id_isar4 = 0x00011142;
188 cpu->id_isar5 = 0x00011121;
189 cpu->id_aa64pfr0 = 0x00002222;
190 cpu->id_aa64dfr0 = 0x10305106;
191 cpu->id_aa64isar0 = 0x00011120;
192 cpu->id_aa64mmfr0 = 0x00001122; /* 40 bit physical addr */
193 cpu->dbgdidr = 0x3516d000;
194 cpu->clidr = 0x0a200023;
195 cpu->ccsidr[0] = 0x700fe01a; /* 32KB L1 dcache */
196 cpu->ccsidr[1] = 0x201fe00a; /* 32KB L1 icache */
197 cpu->ccsidr[2] = 0x707fe07a; /* 1024KB L2 cache */
198 cpu->dcz_blocksize = 4; /* 64 bytes */
199 define_arm_cp_regs(cpu, cortex_a57_a53_cp_reginfo);
200}
201
d14d42f1
PM
202#ifdef CONFIG_USER_ONLY
203static void aarch64_any_initfn(Object *obj)
204{
205 ARMCPU *cpu = ARM_CPU(obj);
206
207 set_feature(&cpu->env, ARM_FEATURE_V8);
208 set_feature(&cpu->env, ARM_FEATURE_VFP4);
d14d42f1 209 set_feature(&cpu->env, ARM_FEATURE_NEON);
d14d42f1 210 set_feature(&cpu->env, ARM_FEATURE_AARCH64);
25f748e3
PM
211 set_feature(&cpu->env, ARM_FEATURE_V8_AES);
212 set_feature(&cpu->env, ARM_FEATURE_V8_SHA1);
213 set_feature(&cpu->env, ARM_FEATURE_V8_SHA256);
214 set_feature(&cpu->env, ARM_FEATURE_V8_PMULL);
215 set_feature(&cpu->env, ARM_FEATURE_CRC);
0e7b176a 216 cpu->ctr = 0x80038003; /* 32 byte I and D cacheline size, VIPT icache */
aca3f40b 217 cpu->dcz_blocksize = 7; /* 512 bytes */
d14d42f1
PM
218}
219#endif
220
221typedef struct ARMCPUInfo {
222 const char *name;
223 void (*initfn)(Object *obj);
224 void (*class_init)(ObjectClass *oc, void *data);
225} ARMCPUInfo;
226
227static const ARMCPUInfo aarch64_cpus[] = {
cb1fa941 228 { .name = "cortex-a57", .initfn = aarch64_a57_initfn },
e3531026 229 { .name = "cortex-a53", .initfn = aarch64_a53_initfn },
d14d42f1
PM
230#ifdef CONFIG_USER_ONLY
231 { .name = "any", .initfn = aarch64_any_initfn },
232#endif
83e6813a 233 { .name = NULL }
d14d42f1
PM
234};
235
fb8d6c24
GB
236static bool aarch64_cpu_get_aarch64(Object *obj, Error **errp)
237{
238 ARMCPU *cpu = ARM_CPU(obj);
239
240 return arm_feature(&cpu->env, ARM_FEATURE_AARCH64);
241}
242
243static void aarch64_cpu_set_aarch64(Object *obj, bool value, Error **errp)
244{
245 ARMCPU *cpu = ARM_CPU(obj);
246
247 /* At this time, this property is only allowed if KVM is enabled. This
248 * restriction allows us to avoid fixing up functionality that assumes a
249 * uniform execution state like do_interrupt.
250 */
251 if (!kvm_enabled()) {
252 error_setg(errp, "'aarch64' feature cannot be disabled "
253 "unless KVM is enabled");
254 return;
255 }
256
257 if (value == false) {
258 unset_feature(&cpu->env, ARM_FEATURE_AARCH64);
259 } else {
260 set_feature(&cpu->env, ARM_FEATURE_AARCH64);
261 }
262}
263
d14d42f1
PM
264static void aarch64_cpu_initfn(Object *obj)
265{
fb8d6c24
GB
266 object_property_add_bool(obj, "aarch64", aarch64_cpu_get_aarch64,
267 aarch64_cpu_set_aarch64, NULL);
268 object_property_set_description(obj, "aarch64",
269 "Set on/off to enable/disable aarch64 "
270 "execution state ",
271 NULL);
d14d42f1
PM
272}
273
274static void aarch64_cpu_finalizefn(Object *obj)
275{
276}
277
5ce4f357
AG
278static void aarch64_cpu_set_pc(CPUState *cs, vaddr value)
279{
280 ARMCPU *cpu = ARM_CPU(cs);
7633378d
PM
281 /* It's OK to look at env for the current mode here, because it's
282 * never possible for an AArch64 TB to chain to an AArch32 TB.
283 * (Otherwise we would need to use synchronize_from_tb instead.)
5ce4f357 284 */
7633378d
PM
285 if (is_a64(&cpu->env)) {
286 cpu->env.pc = value;
287 } else {
288 cpu->env.regs[15] = value;
289 }
5ce4f357
AG
290}
291
b3820e6c
DH
292static gchar *aarch64_gdb_arch_name(CPUState *cs)
293{
294 return g_strdup("aarch64");
295}
296
d14d42f1
PM
297static void aarch64_cpu_class_init(ObjectClass *oc, void *data)
298{
14ade10f
AG
299 CPUClass *cc = CPU_CLASS(oc);
300
e8925712 301 cc->cpu_exec_interrupt = arm_cpu_exec_interrupt;
5ce4f357 302 cc->set_pc = aarch64_cpu_set_pc;
96c04212
AG
303 cc->gdb_read_register = aarch64_cpu_gdb_read_register;
304 cc->gdb_write_register = aarch64_cpu_gdb_write_register;
305 cc->gdb_num_core_regs = 34;
306 cc->gdb_core_xml_file = "aarch64-core.xml";
b3820e6c 307 cc->gdb_arch_name = aarch64_gdb_arch_name;
d14d42f1
PM
308}
309
310static void aarch64_cpu_register(const ARMCPUInfo *info)
311{
312 TypeInfo type_info = {
313 .parent = TYPE_AARCH64_CPU,
314 .instance_size = sizeof(ARMCPU),
315 .instance_init = info->initfn,
316 .class_size = sizeof(ARMCPUClass),
317 .class_init = info->class_init,
318 };
319
320 type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
321 type_register(&type_info);
322 g_free((void *)type_info.name);
323}
324
325static const TypeInfo aarch64_cpu_type_info = {
326 .name = TYPE_AARCH64_CPU,
327 .parent = TYPE_ARM_CPU,
328 .instance_size = sizeof(ARMCPU),
329 .instance_init = aarch64_cpu_initfn,
330 .instance_finalize = aarch64_cpu_finalizefn,
331 .abstract = true,
332 .class_size = sizeof(AArch64CPUClass),
333 .class_init = aarch64_cpu_class_init,
334};
335
336static void aarch64_cpu_register_types(void)
337{
83e6813a 338 const ARMCPUInfo *info = aarch64_cpus;
d14d42f1
PM
339
340 type_register_static(&aarch64_cpu_type_info);
83e6813a
PM
341
342 while (info->name) {
343 aarch64_cpu_register(info);
344 info++;
d14d42f1
PM
345 }
346}
347
348type_init(aarch64_cpu_register_types)
This page took 0.192782 seconds and 4 git commands to generate.