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 "qemu/error-report.h"
23 static void spapr_cpu_reset(void *opaque
)
25 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
26 PowerPCCPU
*cpu
= opaque
;
27 CPUState
*cs
= CPU(cpu
);
28 CPUPPCState
*env
= &cpu
->env
;
32 /* All CPUs start halted. CPU0 is unhalted from the machine level
33 * reset code and the rest are explicitly started up by the guest
34 * using an RTAS call */
37 env
->spr
[SPR_HIOR
] = 0;
40 * This is a hack for the benefit of KVM PR - it abuses the SDR1
41 * slot in kvm_sregs to communicate the userspace address of the
45 env
->spr
[SPR_SDR1
] = (target_ulong
)(uintptr_t)spapr
->htab
46 | (spapr
->htab_shift
- 18);
47 if (kvmppc_put_books_sregs(cpu
) < 0) {
48 error_report("Unable to update SDR1 in KVM");
54 static void spapr_cpu_destroy(PowerPCCPU
*cpu
)
56 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
58 xics_cpu_destroy(XICS_FABRIC(spapr
), cpu
);
59 qemu_unregister_reset(spapr_cpu_reset
, cpu
);
62 static void spapr_cpu_init(sPAPRMachineState
*spapr
, PowerPCCPU
*cpu
,
65 CPUPPCState
*env
= &cpu
->env
;
66 CPUState
*cs
= CPU(cpu
);
69 /* Set time-base frequency to 512 MHz */
70 cpu_ppc_tb_init(env
, SPAPR_TIMEBASE_FREQ
);
72 /* Enable PAPR mode in TCG or KVM */
73 cpu_ppc_set_papr(cpu
, PPC_VIRTUAL_HYPERVISOR(spapr
));
75 if (cpu
->max_compat
) {
76 Error
*local_err
= NULL
;
78 ppc_set_compat(cpu
, cpu
->max_compat
, &local_err
);
80 error_propagate(errp
, local_err
);
85 /* Set NUMA node for the added CPUs */
86 i
= numa_get_node_for_cpu(cs
->cpu_index
);
87 if (i
< nb_numa_nodes
) {
91 xics_cpu_setup(XICS_FABRIC(spapr
), cpu
);
93 qemu_register_reset(spapr_cpu_reset
, cpu
);
98 * Return the sPAPR CPU core type for @model which essentially is the CPU
99 * model specified with -cpu cmdline option.
101 char *spapr_get_cpu_core_type(const char *model
)
104 gchar
**model_pieces
= g_strsplit(model
, ",", 2);
106 core_type
= g_strdup_printf("%s-%s", model_pieces
[0], TYPE_SPAPR_CPU_CORE
);
108 /* Check whether it exists or whether we have to look up an alias name */
109 if (!object_class_by_name(core_type
)) {
110 const char *realmodel
;
114 realmodel
= ppc_cpu_lookup_alias(model_pieces
[0]);
116 core_type
= spapr_get_cpu_core_type(realmodel
);
120 g_strfreev(model_pieces
);
124 static void spapr_cpu_core_unrealizefn(DeviceState
*dev
, Error
**errp
)
126 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
127 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
128 const char *typename
= object_class_get_name(scc
->cpu_class
);
129 size_t size
= object_type_get_instance_size(typename
);
130 CPUCore
*cc
= CPU_CORE(dev
);
133 for (i
= 0; i
< cc
->nr_threads
; i
++) {
134 void *obj
= sc
->threads
+ i
* size
;
135 DeviceState
*dev
= DEVICE(obj
);
136 CPUState
*cs
= CPU(dev
);
137 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
139 spapr_cpu_destroy(cpu
);
141 object_unparent(obj
);
146 static void spapr_cpu_core_realize_child(Object
*child
, Error
**errp
)
148 Error
*local_err
= NULL
;
149 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
150 CPUState
*cs
= CPU(child
);
151 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
153 object_property_set_bool(child
, true, "realized", &local_err
);
155 error_propagate(errp
, local_err
);
159 spapr_cpu_init(spapr
, cpu
, &local_err
);
161 error_propagate(errp
, local_err
);
166 static void spapr_cpu_core_realize(DeviceState
*dev
, Error
**errp
)
168 sPAPRCPUCore
*sc
= SPAPR_CPU_CORE(OBJECT(dev
));
169 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev
));
170 CPUCore
*cc
= CPU_CORE(OBJECT(dev
));
171 const char *typename
= object_class_get_name(scc
->cpu_class
);
172 size_t size
= object_type_get_instance_size(typename
);
173 Error
*local_err
= NULL
;
177 sc
->threads
= g_malloc0(size
* cc
->nr_threads
);
178 for (i
= 0; i
< cc
->nr_threads
; i
++) {
182 obj
= sc
->threads
+ i
* size
;
184 object_initialize(obj
, size
, typename
);
186 cs
->cpu_index
= cc
->core_id
+ i
;
187 snprintf(id
, sizeof(id
), "thread[%d]", i
);
188 object_property_add_child(OBJECT(sc
), id
, obj
, &local_err
);
195 for (j
= 0; j
< cc
->nr_threads
; j
++) {
196 obj
= sc
->threads
+ j
* size
;
198 spapr_cpu_core_realize_child(obj
, &local_err
);
207 obj
= sc
->threads
+ i
* size
;
208 object_unparent(obj
);
211 error_propagate(errp
, local_err
);
214 static const char *spapr_core_models
[] = {
243 void spapr_cpu_core_class_init(ObjectClass
*oc
, void *data
)
245 DeviceClass
*dc
= DEVICE_CLASS(oc
);
246 sPAPRCPUCoreClass
*scc
= SPAPR_CPU_CORE_CLASS(oc
);
248 dc
->realize
= spapr_cpu_core_realize
;
249 dc
->unrealize
= spapr_cpu_core_unrealizefn
;
250 scc
->cpu_class
= cpu_class_by_name(TYPE_POWERPC_CPU
, data
);
251 g_assert(scc
->cpu_class
);
254 static const TypeInfo spapr_cpu_core_type_info
= {
255 .name
= TYPE_SPAPR_CPU_CORE
,
256 .parent
= TYPE_CPU_CORE
,
258 .instance_size
= sizeof(sPAPRCPUCore
),
259 .class_size
= sizeof(sPAPRCPUCoreClass
),
262 static void spapr_cpu_core_register_types(void)
266 type_register_static(&spapr_cpu_core_type_info
);
268 for (i
= 0; i
< ARRAY_SIZE(spapr_core_models
); i
++) {
269 TypeInfo type_info
= {
270 .parent
= TYPE_SPAPR_CPU_CORE
,
271 .instance_size
= sizeof(sPAPRCPUCore
),
272 .class_init
= spapr_cpu_core_class_init
,
273 .class_data
= (void *) spapr_core_models
[i
],
276 type_info
.name
= g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE
,
277 spapr_core_models
[i
]);
278 type_register(&type_info
);
279 g_free((void *)type_info
.name
);
283 type_init(spapr_cpu_core_register_types
)