2 * sPAPR CPU core device, acts as container of CPU thread devices.
4 * Copyright (C) 2016 Bharata B Rao <bharata@linux.vnet.ibm.com>
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.
9 #include "hw/cpu/core.h"
10 #include "hw/ppc/spapr_cpu_core.h"
11 #include "target-ppc/cpu.h"
12 #include "hw/ppc/spapr.h"
13 #include "hw/boards.h"
14 #include "qapi/error.h"
15 #include "sysemu/cpus.h"
16 #include "target-ppc/kvm_ppc.h"
17 #include "hw/ppc/ppc.h"
18 #include "target-ppc/mmu-hash64.h"
19 #include "sysemu/numa.h"
21 static void spapr_cpu_reset(void *opaque
)
23 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
24 PowerPCCPU
*cpu
= opaque
;
25 CPUState
*cs
= CPU(cpu
);
26 CPUPPCState
*env
= &cpu
->env
;
30 /* All CPUs start halted. CPU0 is unhalted from the machine level
31 * reset code and the rest are explicitly started up by the guest
32 * using an RTAS call */
35 env
->spr
[SPR_HIOR
] = 0;
37 ppc_hash64_set_external_hpt(cpu
, spapr
->htab
, spapr
->htab_shift
,
41 static void spapr_cpu_destroy(PowerPCCPU
*cpu
)
43 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
45 xics_cpu_destroy(spapr
->xics
, cpu
);
46 qemu_unregister_reset(spapr_cpu_reset
, cpu
);
49 void spapr_cpu_init(sPAPRMachineState
*spapr
, PowerPCCPU
*cpu
, Error
**errp
)
51 CPUPPCState
*env
= &cpu
->env
;
52 CPUState
*cs
= CPU(cpu
);
55 /* Set time-base frequency to 512 MHz */
56 cpu_ppc_tb_init(env
, SPAPR_TIMEBASE_FREQ
);
58 /* Enable PAPR mode in TCG or KVM */
59 cpu_ppc_set_papr(cpu
);
61 if (cpu
->max_compat
) {
62 Error
*local_err
= NULL
;
64 ppc_set_compat(cpu
, cpu
->max_compat
, &local_err
);
66 error_propagate(errp
, local_err
);
71 /* Set NUMA node for the added CPUs */
72 i
= numa_get_node_for_cpu(cs
->cpu_index
);
73 if (i
< nb_numa_nodes
) {
77 xics_cpu_setup(spapr
->xics
, cpu
);
79 qemu_register_reset(spapr_cpu_reset
, cpu
);
84 * Return the sPAPR CPU core type for @model which essentially is the CPU
85 * model specified with -cpu cmdline option.
87 char *spapr_get_cpu_core_type(const char *model
)
90 gchar
**model_pieces
= g_strsplit(model
, ",", 2);
92 core_type
= g_strdup_printf("%s-%s", model_pieces
[0], TYPE_SPAPR_CPU_CORE
);
94 /* Check whether it exists or whether we have to look up an alias name */
95 if (!object_class_by_name(core_type
)) {
96 const char *realmodel
;
100 realmodel
= ppc_cpu_lookup_alias(model_pieces
[0]);
102 core_type
= spapr_get_cpu_core_type(realmodel
);
106 g_strfreev(model_pieces
);
110 static void spapr_core_release(DeviceState
*dev
, void *opaque
)
112 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
113 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
114 const char *typename
= object_class_get_name(scc
->cpu_class
);
115 size_t size
= object_type_get_instance_size(typename
);
116 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
117 CPUCore
*cc
= CPU_CORE(dev
);
120 for (i
= 0; i
< cc
->nr_threads
; i
++) {
121 void *obj
= sc
->threads
+ i
* size
;
122 DeviceState
*dev
= DEVICE(obj
);
123 CPUState
*cs
= CPU(dev
);
124 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
126 spapr_cpu_destroy(cpu
);
128 object_unparent(obj
);
131 spapr
->cores
[cc
->core_id
/ smp_threads
] = NULL
;
134 object_unparent(OBJECT(dev
));
137 void spapr_core_unplug(HotplugHandler
*hotplug_dev
, DeviceState
*dev
,
140 CPUCore
*cc
= CPU_CORE(dev
);
141 int smt
= kvmppc_smt_threads();
142 int index
= cc
->core_id
/ smp_threads
;
143 sPAPRDRConnector
*drc
=
144 spapr_dr_connector_by_id(SPAPR_DR_CONNECTOR_TYPE_CPU
, index
* smt
);
145 sPAPRDRConnectorClass
*drck
;
146 Error
*local_err
= NULL
;
149 error_setg(errp
, "Boot CPU core may not be unplugged");
155 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
156 drck
->detach(drc
, dev
, spapr_core_release
, NULL
, &local_err
);
158 error_propagate(errp
, local_err
);
162 spapr_hotplug_req_remove_by_index(drc
);
165 void spapr_core_plug(HotplugHandler
*hotplug_dev
, DeviceState
*dev
,
168 sPAPRMachineState
*spapr
= SPAPR_MACHINE(OBJECT(hotplug_dev
));
169 sPAPRCPUCore
*core
= SPAPR_CPU_CORE(OBJECT(dev
));
170 CPUCore
*cc
= CPU_CORE(dev
);
171 CPUState
*cs
= CPU(core
->threads
);
172 sPAPRDRConnector
*drc
;
173 sPAPRDRConnectorClass
*drck
;
174 Error
*local_err
= NULL
;
177 int index
= cc
->core_id
/ smp_threads
;
178 int smt
= kvmppc_smt_threads();
180 drc
= spapr_dr_connector_by_id(SPAPR_DR_CONNECTOR_TYPE_CPU
, index
* smt
);
181 spapr
->cores
[index
] = OBJECT(dev
);
186 * Setup CPU DT entries only for hotplugged CPUs. For boot time or
187 * coldplugged CPUs DT entries are setup in spapr_finalize_fdt().
189 if (dev
->hotplugged
) {
190 fdt
= spapr_populate_hotplug_cpu_dt(cs
, &fdt_offset
, spapr
);
193 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
194 drck
->attach(drc
, dev
, fdt
, fdt_offset
, !dev
->hotplugged
, &local_err
);
197 spapr
->cores
[index
] = NULL
;
198 error_propagate(errp
, local_err
);
202 if (dev
->hotplugged
) {
204 * Send hotplug notification interrupt to the guest only in case
205 * of hotplugged CPUs.
207 spapr_hotplug_req_add_by_index(drc
);
210 * Set the right DRC states for cold plugged CPU.
212 drck
->set_allocation_state(drc
, SPAPR_DR_ALLOCATION_STATE_USABLE
);
213 drck
->set_isolation_state(drc
, SPAPR_DR_ISOLATION_STATE_UNISOLATED
);
217 void spapr_core_pre_plug(HotplugHandler
*hotplug_dev
, DeviceState
*dev
,
220 MachineState
*machine
= MACHINE(OBJECT(hotplug_dev
));
221 MachineClass
*mc
= MACHINE_GET_CLASS(hotplug_dev
);
222 sPAPRMachineState
*spapr
= SPAPR_MACHINE(OBJECT(hotplug_dev
));
223 int spapr_max_cores
= max_cpus
/ smp_threads
;
225 Error
*local_err
= NULL
;
226 CPUCore
*cc
= CPU_CORE(dev
);
227 char *base_core_type
= spapr_get_cpu_core_type(machine
->cpu_model
);
228 const char *type
= object_get_typename(OBJECT(dev
));
230 if (!mc
->query_hotpluggable_cpus
) {
231 error_setg(&local_err
, "CPU hotplug not supported for this machine");
235 if (strcmp(base_core_type
, type
)) {
236 error_setg(&local_err
, "CPU core type should be %s", base_core_type
);
240 if (cc
->nr_threads
!= smp_threads
) {
241 error_setg(&local_err
, "threads must be %d", smp_threads
);
245 if (cc
->core_id
% smp_threads
) {
246 error_setg(&local_err
, "invalid core id %d", cc
->core_id
);
250 index
= cc
->core_id
/ smp_threads
;
251 if (index
< 0 || index
>= spapr_max_cores
) {
252 error_setg(&local_err
, "core id %d out of range", cc
->core_id
);
256 if (spapr
->cores
[index
]) {
257 error_setg(&local_err
, "core %d already populated", cc
->core_id
);
262 g_free(base_core_type
);
263 error_propagate(errp
, local_err
);
266 static void spapr_cpu_core_realize_child(Object
*child
, Error
**errp
)
268 Error
*local_err
= NULL
;
269 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
270 CPUState
*cs
= CPU(child
);
271 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
273 object_property_set_bool(child
, true, "realized", &local_err
);
275 error_propagate(errp
, local_err
);
279 spapr_cpu_init(spapr
, cpu
, &local_err
);
281 error_propagate(errp
, local_err
);
286 static void spapr_cpu_core_realize(DeviceState
*dev
, Error
**errp
)
288 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
289 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
290 CPUCore
*cc
= CPU_CORE(OBJECT(dev
));
291 const char *typename
= object_class_get_name(scc
->cpu_class
);
292 size_t size
= object_type_get_instance_size(typename
);
293 Error
*local_err
= NULL
;
297 sc
->threads
= g_malloc0(size
* cc
->nr_threads
);
298 for (i
= 0; i
< cc
->nr_threads
; i
++) {
302 obj
= sc
->threads
+ i
* size
;
304 object_initialize(obj
, size
, typename
);
306 cs
->cpu_index
= cc
->core_id
+ i
;
307 snprintf(id
, sizeof(id
), "thread[%d]", i
);
308 object_property_add_child(OBJECT(sc
), id
, obj
, &local_err
);
315 for (j
= 0; j
< cc
->nr_threads
; j
++) {
316 obj
= sc
->threads
+ j
* size
;
318 spapr_cpu_core_realize_child(obj
, &local_err
);
327 obj
= sc
->threads
+ i
* size
;
328 object_unparent(obj
);
331 error_propagate(errp
, local_err
);
334 static const char *spapr_core_models
[] = {
363 void spapr_cpu_core_class_init(ObjectClass
*oc
, void *data
)
365 DeviceClass
*dc
= DEVICE_CLASS(oc
);
366 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_CLASS(oc
);
368 dc
->realize
= spapr_cpu_core_realize
;
369 scc
->cpu_class
= cpu_class_by_name(TYPE_POWERPC_CPU
, data
);
370 g_assert(scc
->cpu_class
);
373 static const TypeInfo spapr_cpu_core_type_info
= {
374 .name
= TYPE_SPAPR_CPU_CORE
,
375 .parent
= TYPE_CPU_CORE
,
377 .instance_size
= sizeof(sPAPRCPUCore
),
378 .class_size
= sizeof(sPAPRCPUCoreClass
),
381 static void spapr_cpu_core_register_types(void)
385 type_register_static(&spapr_cpu_core_type_info
);
387 for (i
= 0; i
< ARRAY_SIZE(spapr_core_models
); i
++) {
388 TypeInfo type_info
= {
389 .parent
= TYPE_SPAPR_CPU_CORE
,
390 .instance_size
= sizeof(sPAPRCPUCore
),
391 .class_init
= spapr_cpu_core_class_init
,
392 .class_data
= (void *) spapr_core_models
[i
],
395 type_info
.name
= g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE
,
396 spapr_core_models
[i
]);
397 type_register(&type_info
);
398 g_free((void *)type_info
.name
);
402 type_init(spapr_cpu_core_register_types
)