]>
Commit | Line | Data |
---|---|---|
3b542549 BR |
1 | /* |
2 | * sPAPR CPU core device, acts as container of CPU thread devices. | |
3 | * | |
4 | * Copyright (C) 2016 Bharata B Rao <[email protected]> | |
5 | * | |
6 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
7 | * See the COPYING file in the top-level directory. | |
8 | */ | |
e9808d09 | 9 | #include "qemu/osdep.h" |
3b542549 BR |
10 | #include "hw/cpu/core.h" |
11 | #include "hw/ppc/spapr_cpu_core.h" | |
fcf5ef2a | 12 | #include "target/ppc/cpu.h" |
3b542549 BR |
13 | #include "hw/ppc/spapr.h" |
14 | #include "hw/boards.h" | |
15 | #include "qapi/error.h" | |
a9c94277 | 16 | #include "sysemu/cpus.h" |
e57ca75c | 17 | #include "sysemu/kvm.h" |
fcf5ef2a | 18 | #include "target/ppc/kvm_ppc.h" |
afd10a0f | 19 | #include "hw/ppc/ppc.h" |
fcf5ef2a | 20 | #include "target/ppc/mmu-hash64.h" |
a9c94277 | 21 | #include "sysemu/numa.h" |
1ec26c75 | 22 | #include "sysemu/hw_accel.h" |
e57ca75c | 23 | #include "qemu/error-report.h" |
afd10a0f BR |
24 | |
25 | static void spapr_cpu_reset(void *opaque) | |
26 | { | |
afd10a0f BR |
27 | PowerPCCPU *cpu = opaque; |
28 | CPUState *cs = CPU(cpu); | |
29 | CPUPPCState *env = &cpu->env; | |
d6322252 | 30 | PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu); |
ce2918cb | 31 | SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu); |
da20aed1 | 32 | target_ulong lpcr; |
afd10a0f BR |
33 | |
34 | cpu_reset(cs); | |
35 | ||
36 | /* All CPUs start halted. CPU0 is unhalted from the machine level | |
37 | * reset code and the rest are explicitly started up by the guest | |
38 | * using an RTAS call */ | |
39 | cs->halted = 1; | |
40 | ||
b12a4efb JRZ |
41 | /* Set compatibility mode to match the boot CPU, which was either set |
42 | * by the machine reset code or by CAS. This should never fail. | |
43 | */ | |
44 | ppc_set_compat(cpu, POWERPC_CPU(first_cpu)->compat_pvr, &error_abort); | |
45 | ||
afd10a0f | 46 | env->spr[SPR_HIOR] = 0; |
d6322252 | 47 | |
da20aed1 DG |
48 | lpcr = env->spr[SPR_LPCR]; |
49 | ||
50 | /* Set emulated LPCR to not send interrupts to hypervisor. Note that | |
51 | * under KVM, the actual HW LPCR will be set differently by KVM itself, | |
52 | * the settings below ensure proper operations with TCG in absence of | |
53 | * a real hypervisor. | |
54 | * | |
55 | * Clearing VPM0 will also cause us to use RMOR in mmu-hash64.c for | |
56 | * real mode accesses, which thankfully defaults to 0 and isn't | |
57 | * accessible in guest mode. | |
47a9b551 DG |
58 | * |
59 | * Disable Power-saving mode Exit Cause exceptions for the CPU, so | |
60 | * we don't get spurious wakups before an RTAS start-cpu call. | |
70de0967 | 61 | * For the same reason, set PSSCR_EC. |
da20aed1 | 62 | */ |
47a9b551 | 63 | lpcr &= ~(LPCR_VPM0 | LPCR_VPM1 | LPCR_ISL | LPCR_KBV | pcc->lpcr_pm); |
da20aed1 | 64 | lpcr |= LPCR_LPES0 | LPCR_LPES1; |
70de0967 | 65 | env->spr[SPR_PSSCR] |= PSSCR_EC; |
da20aed1 DG |
66 | |
67 | /* Set RMLS to the max (ie, 16G) */ | |
68 | lpcr &= ~LPCR_RMLS; | |
69 | lpcr |= 1ull << LPCR_RMLS_SHIFT; | |
70 | ||
da20aed1 DG |
71 | ppc_store_lpcr(cpu, lpcr); |
72 | ||
73 | /* Set a full AMOR so guest can use the AMR as it sees fit */ | |
74 | env->spr[SPR_AMOR] = 0xffffffffffffffffull; | |
7388efaf DG |
75 | |
76 | spapr_cpu->vpa_addr = 0; | |
77 | spapr_cpu->slb_shadow_addr = 0; | |
78 | spapr_cpu->slb_shadow_size = 0; | |
79 | spapr_cpu->dtl_addr = 0; | |
80 | spapr_cpu->dtl_size = 0; | |
e2e4f641 DG |
81 | |
82 | spapr_caps_cpu_apply(SPAPR_MACHINE(qdev_get_machine()), cpu); | |
e5ca28ec DG |
83 | |
84 | kvm_check_mmu(cpu, &error_fatal); | |
afd10a0f BR |
85 | } |
86 | ||
84369f63 DG |
87 | void spapr_cpu_set_entry_state(PowerPCCPU *cpu, target_ulong nip, target_ulong r3) |
88 | { | |
47a9b551 | 89 | PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu); |
84369f63 DG |
90 | CPUPPCState *env = &cpu->env; |
91 | ||
92 | env->nip = nip; | |
93 | env->gpr[3] = r3; | |
a84f7179 | 94 | kvmppc_set_reg_ppc_online(cpu, 1); |
84369f63 | 95 | CPU(cpu)->halted = 0; |
47a9b551 DG |
96 | /* Enable Power-saving mode Exit Cause exceptions */ |
97 | ppc_store_lpcr(cpu, env->spr[SPR_LPCR] | pcc->lpcr_pm); | |
84369f63 DG |
98 | } |
99 | ||
94a94e4c BR |
100 | /* |
101 | * Return the sPAPR CPU core type for @model which essentially is the CPU | |
102 | * model specified with -cpu cmdline option. | |
103 | */ | |
2e9c10eb | 104 | const char *spapr_get_cpu_core_type(const char *cpu_type) |
94a94e4c | 105 | { |
2e9c10eb IM |
106 | int len = strlen(cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX); |
107 | char *core_type = g_strdup_printf(SPAPR_CPU_CORE_TYPE_NAME("%.*s"), | |
108 | len, cpu_type); | |
109 | ObjectClass *oc = object_class_by_name(core_type); | |
110 | ||
111 | g_free(core_type); | |
112 | if (!oc) { | |
113 | return NULL; | |
4babfaf0 TH |
114 | } |
115 | ||
2e9c10eb | 116 | return object_class_get_name(oc); |
94a94e4c BR |
117 | } |
118 | ||
7f9fe3f0 GK |
119 | static bool slb_shadow_needed(void *opaque) |
120 | { | |
ce2918cb | 121 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
122 | |
123 | return spapr_cpu->slb_shadow_addr != 0; | |
124 | } | |
125 | ||
126 | static const VMStateDescription vmstate_spapr_cpu_slb_shadow = { | |
127 | .name = "spapr_cpu/vpa/slb_shadow", | |
128 | .version_id = 1, | |
129 | .minimum_version_id = 1, | |
130 | .needed = slb_shadow_needed, | |
131 | .fields = (VMStateField[]) { | |
ce2918cb DG |
132 | VMSTATE_UINT64(slb_shadow_addr, SpaprCpuState), |
133 | VMSTATE_UINT64(slb_shadow_size, SpaprCpuState), | |
7f9fe3f0 GK |
134 | VMSTATE_END_OF_LIST() |
135 | } | |
136 | }; | |
137 | ||
138 | static bool dtl_needed(void *opaque) | |
139 | { | |
ce2918cb | 140 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
141 | |
142 | return spapr_cpu->dtl_addr != 0; | |
143 | } | |
144 | ||
145 | static const VMStateDescription vmstate_spapr_cpu_dtl = { | |
146 | .name = "spapr_cpu/vpa/dtl", | |
147 | .version_id = 1, | |
148 | .minimum_version_id = 1, | |
149 | .needed = dtl_needed, | |
150 | .fields = (VMStateField[]) { | |
ce2918cb DG |
151 | VMSTATE_UINT64(dtl_addr, SpaprCpuState), |
152 | VMSTATE_UINT64(dtl_size, SpaprCpuState), | |
7f9fe3f0 GK |
153 | VMSTATE_END_OF_LIST() |
154 | } | |
155 | }; | |
156 | ||
157 | static bool vpa_needed(void *opaque) | |
158 | { | |
ce2918cb | 159 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
160 | |
161 | return spapr_cpu->vpa_addr != 0; | |
162 | } | |
163 | ||
164 | static const VMStateDescription vmstate_spapr_cpu_vpa = { | |
165 | .name = "spapr_cpu/vpa", | |
166 | .version_id = 1, | |
167 | .minimum_version_id = 1, | |
168 | .needed = vpa_needed, | |
169 | .fields = (VMStateField[]) { | |
ce2918cb | 170 | VMSTATE_UINT64(vpa_addr, SpaprCpuState), |
7f9fe3f0 GK |
171 | VMSTATE_END_OF_LIST() |
172 | }, | |
173 | .subsections = (const VMStateDescription * []) { | |
174 | &vmstate_spapr_cpu_slb_shadow, | |
175 | &vmstate_spapr_cpu_dtl, | |
176 | NULL | |
177 | } | |
178 | }; | |
179 | ||
b9402026 GK |
180 | static const VMStateDescription vmstate_spapr_cpu_state = { |
181 | .name = "spapr_cpu", | |
182 | .version_id = 1, | |
183 | .minimum_version_id = 1, | |
184 | .fields = (VMStateField[]) { | |
185 | VMSTATE_END_OF_LIST() | |
186 | }, | |
7f9fe3f0 GK |
187 | .subsections = (const VMStateDescription * []) { |
188 | &vmstate_spapr_cpu_vpa, | |
189 | NULL | |
190 | } | |
b9402026 GK |
191 | }; |
192 | ||
ce2918cb | 193 | static void spapr_unrealize_vcpu(PowerPCCPU *cpu, SpaprCpuCore *sc) |
cc71c776 BR |
194 | { |
195 | if (!sc->pre_3_0_migration) { | |
196 | vmstate_unregister(NULL, &vmstate_spapr_cpu_state, cpu->machine_data); | |
197 | } | |
198 | qemu_unregister_reset(spapr_cpu_reset, cpu); | |
a28b9a5a CLG |
199 | if (spapr_cpu_state(cpu)->icp) { |
200 | object_unparent(OBJECT(spapr_cpu_state(cpu)->icp)); | |
129dbe69 | 201 | } |
a28b9a5a CLG |
202 | if (spapr_cpu_state(cpu)->tctx) { |
203 | object_unparent(OBJECT(spapr_cpu_state(cpu)->tctx)); | |
129dbe69 | 204 | } |
cc71c776 BR |
205 | cpu_remove_sync(CPU(cpu)); |
206 | object_unparent(OBJECT(cpu)); | |
207 | } | |
208 | ||
209 | static void spapr_cpu_core_unrealize(DeviceState *dev, Error **errp) | |
210 | { | |
ce2918cb | 211 | SpaprCpuCore *sc = SPAPR_CPU_CORE(OBJECT(dev)); |
cc71c776 BR |
212 | CPUCore *cc = CPU_CORE(dev); |
213 | int i; | |
214 | ||
215 | for (i = 0; i < cc->nr_threads; i++) { | |
216 | spapr_unrealize_vcpu(sc->threads[i], sc); | |
217 | } | |
218 | g_free(sc->threads); | |
219 | } | |
220 | ||
ce2918cb DG |
221 | static void spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr, |
222 | SpaprCpuCore *sc, Error **errp) | |
3b542549 | 223 | { |
b1d40d6e | 224 | CPUPPCState *env = &cpu->env; |
cc71c776 | 225 | CPUState *cs = CPU(cpu); |
7093645a | 226 | Error *local_err = NULL; |
5bc8d26d | 227 | |
b1d40d6e | 228 | object_property_set_bool(OBJECT(cpu), true, "realized", &local_err); |
5bc8d26d | 229 | if (local_err) { |
c8a98293 | 230 | goto error; |
5bc8d26d | 231 | } |
3b542549 | 232 | |
b1d40d6e DG |
233 | /* Set time-base frequency to 512 MHz */ |
234 | cpu_ppc_tb_init(env, SPAPR_TIMEBASE_FREQ); | |
235 | ||
236 | cpu_ppc_set_vhyp(cpu, PPC_VIRTUAL_HYPERVISOR(spapr)); | |
237 | kvmppc_set_papr(cpu); | |
3b542549 | 238 | |
b1d40d6e DG |
239 | qemu_register_reset(spapr_cpu_reset, cpu); |
240 | spapr_cpu_reset(cpu); | |
241 | ||
8fa1f4ef | 242 | spapr->irq->cpu_intc_create(spapr, cpu, &local_err); |
f11235b9 | 243 | if (local_err) { |
9986ddec | 244 | goto error_unregister; |
3b542549 | 245 | } |
5bc8d26d | 246 | |
cc71c776 BR |
247 | if (!sc->pre_3_0_migration) { |
248 | vmstate_register(NULL, cs->cpu_index, &vmstate_spapr_cpu_state, | |
249 | cpu->machine_data); | |
250 | } | |
251 | ||
c8a98293 GK |
252 | return; |
253 | ||
9986ddec GK |
254 | error_unregister: |
255 | qemu_unregister_reset(spapr_cpu_reset, cpu); | |
256 | cpu_remove_sync(CPU(cpu)); | |
6595ab31 | 257 | error: |
c8a98293 | 258 | error_propagate(errp, local_err); |
3b542549 BR |
259 | } |
260 | ||
ce2918cb | 261 | static PowerPCCPU *spapr_create_vcpu(SpaprCpuCore *sc, int i, Error **errp) |
d9f0e34c | 262 | { |
ce2918cb | 263 | SpaprCpuCoreClass *scc = SPAPR_CPU_CORE_GET_CLASS(sc); |
d9f0e34c GK |
264 | CPUCore *cc = CPU_CORE(sc); |
265 | Object *obj; | |
266 | char *id; | |
267 | CPUState *cs; | |
268 | PowerPCCPU *cpu; | |
269 | Error *local_err = NULL; | |
270 | ||
271 | obj = object_new(scc->cpu_type); | |
272 | ||
273 | cs = CPU(obj); | |
274 | cpu = POWERPC_CPU(obj); | |
275 | cs->cpu_index = cc->core_id + i; | |
276 | spapr_set_vcpu_id(cpu, cs->cpu_index, &local_err); | |
277 | if (local_err) { | |
278 | goto err; | |
279 | } | |
280 | ||
281 | cpu->node_id = sc->node_id; | |
282 | ||
283 | id = g_strdup_printf("thread[%d]", i); | |
284 | object_property_add_child(OBJECT(sc), id, obj, &local_err); | |
285 | g_free(id); | |
286 | if (local_err) { | |
287 | goto err; | |
288 | } | |
289 | ||
ce2918cb | 290 | cpu->machine_data = g_new0(SpaprCpuState, 1); |
7388efaf | 291 | |
d9f0e34c GK |
292 | object_unref(obj); |
293 | return cpu; | |
294 | ||
295 | err: | |
296 | object_unref(obj); | |
297 | error_propagate(errp, local_err); | |
298 | return NULL; | |
299 | } | |
300 | ||
ce2918cb | 301 | static void spapr_delete_vcpu(PowerPCCPU *cpu, SpaprCpuCore *sc) |
d9f0e34c | 302 | { |
ce2918cb | 303 | SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu); |
7388efaf DG |
304 | |
305 | cpu->machine_data = NULL; | |
306 | g_free(spapr_cpu); | |
d9f0e34c GK |
307 | object_unparent(OBJECT(cpu)); |
308 | } | |
309 | ||
3b542549 BR |
310 | static void spapr_cpu_core_realize(DeviceState *dev, Error **errp) |
311 | { | |
e7cca3e9 GK |
312 | /* We don't use SPAPR_MACHINE() in order to exit gracefully if the user |
313 | * tries to add a sPAPR CPU core to a non-pseries machine. | |
314 | */ | |
ce2918cb DG |
315 | SpaprMachineState *spapr = |
316 | (SpaprMachineState *) object_dynamic_cast(qdev_get_machine(), | |
e7cca3e9 | 317 | TYPE_SPAPR_MACHINE); |
ce2918cb | 318 | SpaprCpuCore *sc = SPAPR_CPU_CORE(OBJECT(dev)); |
3b542549 | 319 | CPUCore *cc = CPU_CORE(OBJECT(dev)); |
3b542549 | 320 | Error *local_err = NULL; |
7093645a | 321 | int i, j; |
3b542549 | 322 | |
e7cca3e9 GK |
323 | if (!spapr) { |
324 | error_setg(errp, TYPE_SPAPR_CPU_CORE " needs a pseries machine"); | |
2363d5ee TH |
325 | return; |
326 | } | |
327 | ||
94ad93bd | 328 | sc->threads = g_new(PowerPCCPU *, cc->nr_threads); |
3b542549 | 329 | for (i = 0; i < cc->nr_threads; i++) { |
d9f0e34c | 330 | sc->threads[i] = spapr_create_vcpu(sc, i, &local_err); |
3b542549 BR |
331 | if (local_err) { |
332 | goto err; | |
333 | } | |
334 | } | |
7093645a BR |
335 | |
336 | for (j = 0; j < cc->nr_threads; j++) { | |
cc71c776 | 337 | spapr_realize_vcpu(sc->threads[j], spapr, sc, &local_err); |
7093645a | 338 | if (local_err) { |
9986ddec | 339 | goto err_unrealize; |
7093645a | 340 | } |
3b542549 | 341 | } |
7093645a | 342 | return; |
3b542549 | 343 | |
9986ddec GK |
344 | err_unrealize: |
345 | while (--j >= 0) { | |
cc71c776 | 346 | spapr_unrealize_vcpu(sc->threads[j], sc); |
9986ddec | 347 | } |
3b542549 | 348 | err: |
dde35bc9 | 349 | while (--i >= 0) { |
b9402026 | 350 | spapr_delete_vcpu(sc->threads[i], sc); |
3b542549 BR |
351 | } |
352 | g_free(sc->threads); | |
353 | error_propagate(errp, local_err); | |
354 | } | |
355 | ||
0b8497f0 | 356 | static Property spapr_cpu_core_properties[] = { |
ce2918cb DG |
357 | DEFINE_PROP_INT32("node-id", SpaprCpuCore, node_id, CPU_UNSET_NUMA_NODE_ID), |
358 | DEFINE_PROP_BOOL("pre-3.0-migration", SpaprCpuCore, pre_3_0_migration, | |
b9402026 | 359 | false), |
0b8497f0 IM |
360 | DEFINE_PROP_END_OF_LIST() |
361 | }; | |
362 | ||
5bbb2641 | 363 | static void spapr_cpu_core_class_init(ObjectClass *oc, void *data) |
3b542549 | 364 | { |
7ebaf795 | 365 | DeviceClass *dc = DEVICE_CLASS(oc); |
ce2918cb | 366 | SpaprCpuCoreClass *scc = SPAPR_CPU_CORE_CLASS(oc); |
7ebaf795 BR |
367 | |
368 | dc->realize = spapr_cpu_core_realize; | |
b1d40d6e | 369 | dc->unrealize = spapr_cpu_core_unrealize; |
0b8497f0 | 370 | dc->props = spapr_cpu_core_properties; |
b51d3c88 | 371 | scc->cpu_type = data; |
3b542549 BR |
372 | } |
373 | ||
44cd95e3 IM |
374 | #define DEFINE_SPAPR_CPU_CORE_TYPE(cpu_model) \ |
375 | { \ | |
376 | .parent = TYPE_SPAPR_CPU_CORE, \ | |
b51d3c88 | 377 | .class_data = (void *) POWERPC_CPU_TYPE_NAME(cpu_model), \ |
44cd95e3 IM |
378 | .class_init = spapr_cpu_core_class_init, \ |
379 | .name = SPAPR_CPU_CORE_TYPE_NAME(cpu_model), \ | |
3b542549 | 380 | } |
3b542549 | 381 | |
44cd95e3 IM |
382 | static const TypeInfo spapr_cpu_core_type_infos[] = { |
383 | { | |
384 | .name = TYPE_SPAPR_CPU_CORE, | |
385 | .parent = TYPE_CPU_CORE, | |
386 | .abstract = true, | |
ce2918cb DG |
387 | .instance_size = sizeof(SpaprCpuCore), |
388 | .class_size = sizeof(SpaprCpuCoreClass), | |
44cd95e3 IM |
389 | }, |
390 | DEFINE_SPAPR_CPU_CORE_TYPE("970_v2.2"), | |
391 | DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.0"), | |
392 | DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.1"), | |
393 | DEFINE_SPAPR_CPU_CORE_TYPE("power5+_v2.1"), | |
394 | DEFINE_SPAPR_CPU_CORE_TYPE("power7_v2.3"), | |
395 | DEFINE_SPAPR_CPU_CORE_TYPE("power7+_v2.1"), | |
396 | DEFINE_SPAPR_CPU_CORE_TYPE("power8_v2.0"), | |
397 | DEFINE_SPAPR_CPU_CORE_TYPE("power8e_v2.1"), | |
398 | DEFINE_SPAPR_CPU_CORE_TYPE("power8nvl_v1.0"), | |
399 | DEFINE_SPAPR_CPU_CORE_TYPE("power9_v1.0"), | |
400 | DEFINE_SPAPR_CPU_CORE_TYPE("power9_v2.0"), | |
5bbb2641 IM |
401 | #ifdef CONFIG_KVM |
402 | DEFINE_SPAPR_CPU_CORE_TYPE("host"), | |
403 | #endif | |
44cd95e3 IM |
404 | }; |
405 | ||
406 | DEFINE_TYPES(spapr_cpu_core_type_infos) |