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 "sysemu/kvm.h"
17 #include "target/ppc/kvm_ppc.h"
18 #include "hw/ppc/ppc.h"
19 #include "target/ppc/mmu-hash64.h"
20 #include "sysemu/numa.h"
21 #include "sysemu/hw_accel.h"
22 #include "qemu/error-report.h"
24 void spapr_cpu_parse_features(sPAPRMachineState
*spapr
)
27 * Backwards compatibility hack:
29 * CPUs had a "compat=" property which didn't make sense for
30 * anything except pseries. It was replaced by "max-cpu-compat"
31 * machine option. This supports old command lines like
32 * -cpu POWER8,compat=power7
33 * By stripping the compat option and applying it to the machine
34 * before passing it on to the cpu level parser.
38 gchar
*compat_str
= NULL
;
40 inpieces
= g_strsplit(MACHINE(spapr
)->cpu_model
, ",", 0);
42 /* inpieces[0] is the actual model string */
46 if (g_str_has_prefix(inpieces
[i
], "compat=")) {
47 /* in case of multiple compat= options */
49 compat_str
= inpieces
[i
];
55 /* Excise compat options from list */
56 inpieces
[j
] = inpieces
[i
];
60 char *val
= compat_str
+ strlen("compat=");
61 gchar
*newprops
= g_strjoinv(",", inpieces
);
63 object_property_set_str(OBJECT(spapr
), val
, "max-cpu-compat",
66 ppc_cpu_parse_features(newprops
);
69 ppc_cpu_parse_features(MACHINE(spapr
)->cpu_model
);
75 static void spapr_cpu_reset(void *opaque
)
77 PowerPCCPU
*cpu
= opaque
;
78 CPUState
*cs
= CPU(cpu
);
79 CPUPPCState
*env
= &cpu
->env
;
83 /* All CPUs start halted. CPU0 is unhalted from the machine level
84 * reset code and the rest are explicitly started up by the guest
85 * using an RTAS call */
88 env
->spr
[SPR_HIOR
] = 0;
91 static void spapr_cpu_destroy(PowerPCCPU
*cpu
)
93 qemu_unregister_reset(spapr_cpu_reset
, cpu
);
96 static void spapr_cpu_init(sPAPRMachineState
*spapr
, PowerPCCPU
*cpu
,
99 CPUPPCState
*env
= &cpu
->env
;
101 /* Set time-base frequency to 512 MHz */
102 cpu_ppc_tb_init(env
, SPAPR_TIMEBASE_FREQ
);
104 /* Enable PAPR mode in TCG or KVM */
105 cpu_ppc_set_papr(cpu
, PPC_VIRTUAL_HYPERVISOR(spapr
));
107 qemu_register_reset(spapr_cpu_reset
, cpu
);
108 spapr_cpu_reset(cpu
);
112 * Return the sPAPR CPU core type for @model which essentially is the CPU
113 * model specified with -cpu cmdline option.
115 char *spapr_get_cpu_core_type(const char *model
)
118 gchar
**model_pieces
= g_strsplit(model
, ",", 2);
119 gchar
*cpu_model
= g_ascii_strdown(model_pieces
[0], -1);
120 g_strfreev(model_pieces
);
122 core_type
= g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE
, cpu_model
);
124 /* Check whether it exists or whether we have to look up an alias name */
125 if (!object_class_by_name(core_type
)) {
126 const char *realmodel
;
130 realmodel
= ppc_cpu_lookup_alias(cpu_model
);
132 core_type
= spapr_get_cpu_core_type(realmodel
);
140 static void spapr_cpu_core_unrealizefn(DeviceState
*dev
, Error
**errp
)
142 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
143 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
144 const char *typename
= object_class_get_name(scc
->cpu_class
);
145 size_t size
= object_type_get_instance_size(typename
);
146 CPUCore
*cc
= CPU_CORE(dev
);
149 for (i
= 0; i
< cc
->nr_threads
; i
++) {
150 void *obj
= sc
->threads
+ i
* size
;
151 DeviceState
*dev
= DEVICE(obj
);
152 CPUState
*cs
= CPU(dev
);
153 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
155 spapr_cpu_destroy(cpu
);
156 object_unparent(cpu
->intc
);
158 object_unparent(obj
);
163 static void spapr_cpu_core_realize_child(Object
*child
,
164 sPAPRMachineState
*spapr
, Error
**errp
)
166 Error
*local_err
= NULL
;
167 CPUState
*cs
= CPU(child
);
168 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
171 object_property_set_bool(child
, true, "realized", &local_err
);
176 spapr_cpu_init(spapr
, cpu
, &local_err
);
181 obj
= object_new(spapr
->icp_type
);
182 object_property_add_child(child
, "icp", obj
, &error_abort
);
184 object_property_add_const_link(obj
, ICP_PROP_XICS
, OBJECT(spapr
),
186 object_property_add_const_link(obj
, ICP_PROP_CPU
, child
, &error_abort
);
187 object_property_set_bool(obj
, true, "realized", &local_err
);
195 object_unparent(obj
);
197 error_propagate(errp
, local_err
);
200 static void spapr_cpu_core_realize(DeviceState
*dev
, Error
**errp
)
202 sPAPRMachineState
*spapr
;
203 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
204 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
205 CPUCore
*cc
= CPU_CORE(OBJECT(dev
));
206 const char *typename
= object_class_get_name(scc
->cpu_class
);
207 size_t size
= object_type_get_instance_size(typename
);
208 Error
*local_err
= NULL
;
212 spapr
= (sPAPRMachineState
*) qdev_get_machine();
213 if (!object_dynamic_cast((Object
*) spapr
, TYPE_SPAPR_MACHINE
)) {
214 error_setg(errp
, "spapr-cpu-core needs a pseries machine");
218 sc
->threads
= g_malloc0(size
* cc
->nr_threads
);
219 for (i
= 0; i
< cc
->nr_threads
; i
++) {
224 obj
= sc
->threads
+ i
* size
;
226 object_initialize(obj
, size
, typename
);
228 cpu
= POWERPC_CPU(cs
);
229 cs
->cpu_index
= cc
->core_id
+ i
;
230 cpu
->vcpu_id
= (cc
->core_id
* spapr
->vsmt
/ smp_threads
) + i
;
231 if (kvm_enabled() && !kvm_vcpu_id_is_valid(cpu
->vcpu_id
)) {
232 error_setg(&local_err
, "Can't create CPU with id %d in KVM",
234 error_append_hint(&local_err
, "Adjust the number of cpus to %d "
235 "or try to raise the number of threads per core\n",
236 cpu
->vcpu_id
* smp_threads
/ spapr
->vsmt
);
241 /* Set NUMA node for the threads belonged to core */
242 cpu
->node_id
= sc
->node_id
;
244 snprintf(id
, sizeof(id
), "thread[%d]", i
);
245 object_property_add_child(OBJECT(sc
), id
, obj
, &local_err
);
252 for (j
= 0; j
< cc
->nr_threads
; j
++) {
253 obj
= sc
->threads
+ j
* size
;
255 spapr_cpu_core_realize_child(obj
, spapr
, &local_err
);
264 obj
= sc
->threads
+ i
* size
;
265 object_unparent(obj
);
268 error_propagate(errp
, local_err
);
271 static const char *spapr_core_models
[] = {
301 static Property spapr_cpu_core_properties
[] = {
302 DEFINE_PROP_INT32("node-id", sPAPRCPUCore
, node_id
, CPU_UNSET_NUMA_NODE_ID
),
303 DEFINE_PROP_END_OF_LIST()
306 void spapr_cpu_core_class_init(ObjectClass
*oc
, void *data
)
308 DeviceClass
*dc
= DEVICE_CLASS(oc
);
309 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_CLASS(oc
);
311 dc
->realize
= spapr_cpu_core_realize
;
312 dc
->unrealize
= spapr_cpu_core_unrealizefn
;
313 dc
->props
= spapr_cpu_core_properties
;
314 scc
->cpu_class
= cpu_class_by_name(TYPE_POWERPC_CPU
, data
);
315 g_assert(scc
->cpu_class
);
318 static const TypeInfo spapr_cpu_core_type_info
= {
319 .name
= TYPE_SPAPR_CPU_CORE
,
320 .parent
= TYPE_CPU_CORE
,
322 .instance_size
= sizeof(sPAPRCPUCore
),
323 .class_size
= sizeof(sPAPRCPUCoreClass
),
326 static void spapr_cpu_core_register_types(void)
330 type_register_static(&spapr_cpu_core_type_info
);
332 for (i
= 0; i
< ARRAY_SIZE(spapr_core_models
); i
++) {
333 TypeInfo type_info
= {
334 .parent
= TYPE_SPAPR_CPU_CORE
,
335 .instance_size
= sizeof(sPAPRCPUCore
),
336 .class_init
= spapr_cpu_core_class_init
,
337 .class_data
= (void *) spapr_core_models
[i
],
340 type_info
.name
= g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE
,
341 spapr_core_models
[i
]);
342 type_register(&type_info
);
343 g_free((void *)type_info
.name
);
347 type_init(spapr_cpu_core_register_types
)