]>
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. | |
da20aed1 | 61 | */ |
47a9b551 | 62 | lpcr &= ~(LPCR_VPM0 | LPCR_VPM1 | LPCR_ISL | LPCR_KBV | pcc->lpcr_pm); |
da20aed1 DG |
63 | lpcr |= LPCR_LPES0 | LPCR_LPES1; |
64 | ||
65 | /* Set RMLS to the max (ie, 16G) */ | |
66 | lpcr &= ~LPCR_RMLS; | |
67 | lpcr |= 1ull << LPCR_RMLS_SHIFT; | |
68 | ||
da20aed1 DG |
69 | ppc_store_lpcr(cpu, lpcr); |
70 | ||
71 | /* Set a full AMOR so guest can use the AMR as it sees fit */ | |
72 | env->spr[SPR_AMOR] = 0xffffffffffffffffull; | |
7388efaf DG |
73 | |
74 | spapr_cpu->vpa_addr = 0; | |
75 | spapr_cpu->slb_shadow_addr = 0; | |
76 | spapr_cpu->slb_shadow_size = 0; | |
77 | spapr_cpu->dtl_addr = 0; | |
78 | spapr_cpu->dtl_size = 0; | |
e2e4f641 DG |
79 | |
80 | spapr_caps_cpu_apply(SPAPR_MACHINE(qdev_get_machine()), cpu); | |
e5ca28ec DG |
81 | |
82 | kvm_check_mmu(cpu, &error_fatal); | |
afd10a0f BR |
83 | } |
84 | ||
84369f63 DG |
85 | void spapr_cpu_set_entry_state(PowerPCCPU *cpu, target_ulong nip, target_ulong r3) |
86 | { | |
47a9b551 | 87 | PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu); |
84369f63 DG |
88 | CPUPPCState *env = &cpu->env; |
89 | ||
90 | env->nip = nip; | |
91 | env->gpr[3] = r3; | |
a84f7179 | 92 | kvmppc_set_reg_ppc_online(cpu, 1); |
84369f63 | 93 | CPU(cpu)->halted = 0; |
47a9b551 DG |
94 | /* Enable Power-saving mode Exit Cause exceptions */ |
95 | ppc_store_lpcr(cpu, env->spr[SPR_LPCR] | pcc->lpcr_pm); | |
84369f63 DG |
96 | } |
97 | ||
94a94e4c BR |
98 | /* |
99 | * Return the sPAPR CPU core type for @model which essentially is the CPU | |
100 | * model specified with -cpu cmdline option. | |
101 | */ | |
2e9c10eb | 102 | const char *spapr_get_cpu_core_type(const char *cpu_type) |
94a94e4c | 103 | { |
2e9c10eb IM |
104 | int len = strlen(cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX); |
105 | char *core_type = g_strdup_printf(SPAPR_CPU_CORE_TYPE_NAME("%.*s"), | |
106 | len, cpu_type); | |
107 | ObjectClass *oc = object_class_by_name(core_type); | |
108 | ||
109 | g_free(core_type); | |
110 | if (!oc) { | |
111 | return NULL; | |
4babfaf0 TH |
112 | } |
113 | ||
2e9c10eb | 114 | return object_class_get_name(oc); |
94a94e4c BR |
115 | } |
116 | ||
7f9fe3f0 GK |
117 | static bool slb_shadow_needed(void *opaque) |
118 | { | |
ce2918cb | 119 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
120 | |
121 | return spapr_cpu->slb_shadow_addr != 0; | |
122 | } | |
123 | ||
124 | static const VMStateDescription vmstate_spapr_cpu_slb_shadow = { | |
125 | .name = "spapr_cpu/vpa/slb_shadow", | |
126 | .version_id = 1, | |
127 | .minimum_version_id = 1, | |
128 | .needed = slb_shadow_needed, | |
129 | .fields = (VMStateField[]) { | |
ce2918cb DG |
130 | VMSTATE_UINT64(slb_shadow_addr, SpaprCpuState), |
131 | VMSTATE_UINT64(slb_shadow_size, SpaprCpuState), | |
7f9fe3f0 GK |
132 | VMSTATE_END_OF_LIST() |
133 | } | |
134 | }; | |
135 | ||
136 | static bool dtl_needed(void *opaque) | |
137 | { | |
ce2918cb | 138 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
139 | |
140 | return spapr_cpu->dtl_addr != 0; | |
141 | } | |
142 | ||
143 | static const VMStateDescription vmstate_spapr_cpu_dtl = { | |
144 | .name = "spapr_cpu/vpa/dtl", | |
145 | .version_id = 1, | |
146 | .minimum_version_id = 1, | |
147 | .needed = dtl_needed, | |
148 | .fields = (VMStateField[]) { | |
ce2918cb DG |
149 | VMSTATE_UINT64(dtl_addr, SpaprCpuState), |
150 | VMSTATE_UINT64(dtl_size, SpaprCpuState), | |
7f9fe3f0 GK |
151 | VMSTATE_END_OF_LIST() |
152 | } | |
153 | }; | |
154 | ||
155 | static bool vpa_needed(void *opaque) | |
156 | { | |
ce2918cb | 157 | SpaprCpuState *spapr_cpu = opaque; |
7f9fe3f0 GK |
158 | |
159 | return spapr_cpu->vpa_addr != 0; | |
160 | } | |
161 | ||
162 | static const VMStateDescription vmstate_spapr_cpu_vpa = { | |
163 | .name = "spapr_cpu/vpa", | |
164 | .version_id = 1, | |
165 | .minimum_version_id = 1, | |
166 | .needed = vpa_needed, | |
167 | .fields = (VMStateField[]) { | |
ce2918cb | 168 | VMSTATE_UINT64(vpa_addr, SpaprCpuState), |
7f9fe3f0 GK |
169 | VMSTATE_END_OF_LIST() |
170 | }, | |
171 | .subsections = (const VMStateDescription * []) { | |
172 | &vmstate_spapr_cpu_slb_shadow, | |
173 | &vmstate_spapr_cpu_dtl, | |
174 | NULL | |
175 | } | |
176 | }; | |
177 | ||
b9402026 GK |
178 | static const VMStateDescription vmstate_spapr_cpu_state = { |
179 | .name = "spapr_cpu", | |
180 | .version_id = 1, | |
181 | .minimum_version_id = 1, | |
182 | .fields = (VMStateField[]) { | |
183 | VMSTATE_END_OF_LIST() | |
184 | }, | |
7f9fe3f0 GK |
185 | .subsections = (const VMStateDescription * []) { |
186 | &vmstate_spapr_cpu_vpa, | |
187 | NULL | |
188 | } | |
b9402026 GK |
189 | }; |
190 | ||
ce2918cb | 191 | static void spapr_unrealize_vcpu(PowerPCCPU *cpu, SpaprCpuCore *sc) |
cc71c776 BR |
192 | { |
193 | if (!sc->pre_3_0_migration) { | |
194 | vmstate_unregister(NULL, &vmstate_spapr_cpu_state, cpu->machine_data); | |
195 | } | |
196 | qemu_unregister_reset(spapr_cpu_reset, cpu); | |
a28b9a5a CLG |
197 | if (spapr_cpu_state(cpu)->icp) { |
198 | object_unparent(OBJECT(spapr_cpu_state(cpu)->icp)); | |
129dbe69 | 199 | } |
a28b9a5a CLG |
200 | if (spapr_cpu_state(cpu)->tctx) { |
201 | object_unparent(OBJECT(spapr_cpu_state(cpu)->tctx)); | |
129dbe69 | 202 | } |
cc71c776 BR |
203 | cpu_remove_sync(CPU(cpu)); |
204 | object_unparent(OBJECT(cpu)); | |
205 | } | |
206 | ||
207 | static void spapr_cpu_core_unrealize(DeviceState *dev, Error **errp) | |
208 | { | |
ce2918cb | 209 | SpaprCpuCore *sc = SPAPR_CPU_CORE(OBJECT(dev)); |
cc71c776 BR |
210 | CPUCore *cc = CPU_CORE(dev); |
211 | int i; | |
212 | ||
213 | for (i = 0; i < cc->nr_threads; i++) { | |
214 | spapr_unrealize_vcpu(sc->threads[i], sc); | |
215 | } | |
216 | g_free(sc->threads); | |
217 | } | |
218 | ||
ce2918cb DG |
219 | static void spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr, |
220 | SpaprCpuCore *sc, Error **errp) | |
3b542549 | 221 | { |
b1d40d6e | 222 | CPUPPCState *env = &cpu->env; |
cc71c776 | 223 | CPUState *cs = CPU(cpu); |
7093645a | 224 | Error *local_err = NULL; |
5bc8d26d | 225 | |
b1d40d6e | 226 | object_property_set_bool(OBJECT(cpu), true, "realized", &local_err); |
5bc8d26d | 227 | if (local_err) { |
c8a98293 | 228 | goto error; |
5bc8d26d | 229 | } |
3b542549 | 230 | |
b1d40d6e DG |
231 | /* Set time-base frequency to 512 MHz */ |
232 | cpu_ppc_tb_init(env, SPAPR_TIMEBASE_FREQ); | |
233 | ||
234 | cpu_ppc_set_vhyp(cpu, PPC_VIRTUAL_HYPERVISOR(spapr)); | |
235 | kvmppc_set_papr(cpu); | |
3b542549 | 236 | |
b1d40d6e DG |
237 | qemu_register_reset(spapr_cpu_reset, cpu); |
238 | spapr_cpu_reset(cpu); | |
239 | ||
8fa1f4ef | 240 | spapr->irq->cpu_intc_create(spapr, cpu, &local_err); |
f11235b9 | 241 | if (local_err) { |
9986ddec | 242 | goto error_unregister; |
3b542549 | 243 | } |
5bc8d26d | 244 | |
cc71c776 BR |
245 | if (!sc->pre_3_0_migration) { |
246 | vmstate_register(NULL, cs->cpu_index, &vmstate_spapr_cpu_state, | |
247 | cpu->machine_data); | |
248 | } | |
249 | ||
c8a98293 GK |
250 | return; |
251 | ||
9986ddec GK |
252 | error_unregister: |
253 | qemu_unregister_reset(spapr_cpu_reset, cpu); | |
254 | cpu_remove_sync(CPU(cpu)); | |
6595ab31 | 255 | error: |
c8a98293 | 256 | error_propagate(errp, local_err); |
3b542549 BR |
257 | } |
258 | ||
ce2918cb | 259 | static PowerPCCPU *spapr_create_vcpu(SpaprCpuCore *sc, int i, Error **errp) |
d9f0e34c | 260 | { |
ce2918cb | 261 | SpaprCpuCoreClass *scc = SPAPR_CPU_CORE_GET_CLASS(sc); |
d9f0e34c GK |
262 | CPUCore *cc = CPU_CORE(sc); |
263 | Object *obj; | |
264 | char *id; | |
265 | CPUState *cs; | |
266 | PowerPCCPU *cpu; | |
267 | Error *local_err = NULL; | |
268 | ||
269 | obj = object_new(scc->cpu_type); | |
270 | ||
271 | cs = CPU(obj); | |
272 | cpu = POWERPC_CPU(obj); | |
273 | cs->cpu_index = cc->core_id + i; | |
274 | spapr_set_vcpu_id(cpu, cs->cpu_index, &local_err); | |
275 | if (local_err) { | |
276 | goto err; | |
277 | } | |
278 | ||
279 | cpu->node_id = sc->node_id; | |
280 | ||
281 | id = g_strdup_printf("thread[%d]", i); | |
282 | object_property_add_child(OBJECT(sc), id, obj, &local_err); | |
283 | g_free(id); | |
284 | if (local_err) { | |
285 | goto err; | |
286 | } | |
287 | ||
ce2918cb | 288 | cpu->machine_data = g_new0(SpaprCpuState, 1); |
7388efaf | 289 | |
d9f0e34c GK |
290 | object_unref(obj); |
291 | return cpu; | |
292 | ||
293 | err: | |
294 | object_unref(obj); | |
295 | error_propagate(errp, local_err); | |
296 | return NULL; | |
297 | } | |
298 | ||
ce2918cb | 299 | static void spapr_delete_vcpu(PowerPCCPU *cpu, SpaprCpuCore *sc) |
d9f0e34c | 300 | { |
ce2918cb | 301 | SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu); |
7388efaf DG |
302 | |
303 | cpu->machine_data = NULL; | |
304 | g_free(spapr_cpu); | |
d9f0e34c GK |
305 | object_unparent(OBJECT(cpu)); |
306 | } | |
307 | ||
3b542549 BR |
308 | static void spapr_cpu_core_realize(DeviceState *dev, Error **errp) |
309 | { | |
e7cca3e9 GK |
310 | /* We don't use SPAPR_MACHINE() in order to exit gracefully if the user |
311 | * tries to add a sPAPR CPU core to a non-pseries machine. | |
312 | */ | |
ce2918cb DG |
313 | SpaprMachineState *spapr = |
314 | (SpaprMachineState *) object_dynamic_cast(qdev_get_machine(), | |
e7cca3e9 | 315 | TYPE_SPAPR_MACHINE); |
ce2918cb | 316 | SpaprCpuCore *sc = SPAPR_CPU_CORE(OBJECT(dev)); |
3b542549 | 317 | CPUCore *cc = CPU_CORE(OBJECT(dev)); |
3b542549 | 318 | Error *local_err = NULL; |
7093645a | 319 | int i, j; |
3b542549 | 320 | |
e7cca3e9 GK |
321 | if (!spapr) { |
322 | error_setg(errp, TYPE_SPAPR_CPU_CORE " needs a pseries machine"); | |
2363d5ee TH |
323 | return; |
324 | } | |
325 | ||
94ad93bd | 326 | sc->threads = g_new(PowerPCCPU *, cc->nr_threads); |
3b542549 | 327 | for (i = 0; i < cc->nr_threads; i++) { |
d9f0e34c | 328 | sc->threads[i] = spapr_create_vcpu(sc, i, &local_err); |
3b542549 BR |
329 | if (local_err) { |
330 | goto err; | |
331 | } | |
332 | } | |
7093645a BR |
333 | |
334 | for (j = 0; j < cc->nr_threads; j++) { | |
cc71c776 | 335 | spapr_realize_vcpu(sc->threads[j], spapr, sc, &local_err); |
7093645a | 336 | if (local_err) { |
9986ddec | 337 | goto err_unrealize; |
7093645a | 338 | } |
3b542549 | 339 | } |
7093645a | 340 | return; |
3b542549 | 341 | |
9986ddec GK |
342 | err_unrealize: |
343 | while (--j >= 0) { | |
cc71c776 | 344 | spapr_unrealize_vcpu(sc->threads[j], sc); |
9986ddec | 345 | } |
3b542549 | 346 | err: |
dde35bc9 | 347 | while (--i >= 0) { |
b9402026 | 348 | spapr_delete_vcpu(sc->threads[i], sc); |
3b542549 BR |
349 | } |
350 | g_free(sc->threads); | |
351 | error_propagate(errp, local_err); | |
352 | } | |
353 | ||
0b8497f0 | 354 | static Property spapr_cpu_core_properties[] = { |
ce2918cb DG |
355 | DEFINE_PROP_INT32("node-id", SpaprCpuCore, node_id, CPU_UNSET_NUMA_NODE_ID), |
356 | DEFINE_PROP_BOOL("pre-3.0-migration", SpaprCpuCore, pre_3_0_migration, | |
b9402026 | 357 | false), |
0b8497f0 IM |
358 | DEFINE_PROP_END_OF_LIST() |
359 | }; | |
360 | ||
5bbb2641 | 361 | static void spapr_cpu_core_class_init(ObjectClass *oc, void *data) |
3b542549 | 362 | { |
7ebaf795 | 363 | DeviceClass *dc = DEVICE_CLASS(oc); |
ce2918cb | 364 | SpaprCpuCoreClass *scc = SPAPR_CPU_CORE_CLASS(oc); |
7ebaf795 BR |
365 | |
366 | dc->realize = spapr_cpu_core_realize; | |
b1d40d6e | 367 | dc->unrealize = spapr_cpu_core_unrealize; |
0b8497f0 | 368 | dc->props = spapr_cpu_core_properties; |
b51d3c88 | 369 | scc->cpu_type = data; |
3b542549 BR |
370 | } |
371 | ||
44cd95e3 IM |
372 | #define DEFINE_SPAPR_CPU_CORE_TYPE(cpu_model) \ |
373 | { \ | |
374 | .parent = TYPE_SPAPR_CPU_CORE, \ | |
b51d3c88 | 375 | .class_data = (void *) POWERPC_CPU_TYPE_NAME(cpu_model), \ |
44cd95e3 IM |
376 | .class_init = spapr_cpu_core_class_init, \ |
377 | .name = SPAPR_CPU_CORE_TYPE_NAME(cpu_model), \ | |
3b542549 | 378 | } |
3b542549 | 379 | |
44cd95e3 IM |
380 | static const TypeInfo spapr_cpu_core_type_infos[] = { |
381 | { | |
382 | .name = TYPE_SPAPR_CPU_CORE, | |
383 | .parent = TYPE_CPU_CORE, | |
384 | .abstract = true, | |
ce2918cb DG |
385 | .instance_size = sizeof(SpaprCpuCore), |
386 | .class_size = sizeof(SpaprCpuCoreClass), | |
44cd95e3 IM |
387 | }, |
388 | DEFINE_SPAPR_CPU_CORE_TYPE("970_v2.2"), | |
389 | DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.0"), | |
390 | DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.1"), | |
391 | DEFINE_SPAPR_CPU_CORE_TYPE("power5+_v2.1"), | |
392 | DEFINE_SPAPR_CPU_CORE_TYPE("power7_v2.3"), | |
393 | DEFINE_SPAPR_CPU_CORE_TYPE("power7+_v2.1"), | |
394 | DEFINE_SPAPR_CPU_CORE_TYPE("power8_v2.0"), | |
395 | DEFINE_SPAPR_CPU_CORE_TYPE("power8e_v2.1"), | |
396 | DEFINE_SPAPR_CPU_CORE_TYPE("power8nvl_v1.0"), | |
397 | DEFINE_SPAPR_CPU_CORE_TYPE("power9_v1.0"), | |
398 | DEFINE_SPAPR_CPU_CORE_TYPE("power9_v2.0"), | |
5bbb2641 IM |
399 | #ifdef CONFIG_KVM |
400 | DEFINE_SPAPR_CPU_CORE_TYPE("host"), | |
401 | #endif | |
44cd95e3 IM |
402 | }; |
403 | ||
404 | DEFINE_TYPES(spapr_cpu_core_type_infos) |