xref: /openbmc/qemu/hw/ppc/spapr_cpu_core.c (revision 795c40b8)
1 /*
2  * sPAPR CPU core device, acts as container of CPU thread devices.
3  *
4  * Copyright (C) 2016 Bharata B Rao <bharata@linux.vnet.ibm.com>
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  */
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"
22 
23 static void spapr_cpu_reset(void *opaque)
24 {
25     sPAPRMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
26     PowerPCCPU *cpu = opaque;
27     CPUState *cs = CPU(cpu);
28     CPUPPCState *env = &cpu->env;
29 
30     cpu_reset(cs);
31 
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 */
35     cs->halted = 1;
36 
37     env->spr[SPR_HIOR] = 0;
38 
39     /*
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
42      * HPT
43      */
44     if (kvm_enabled()) {
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");
49             exit(1);
50         }
51     }
52 }
53 
54 static void spapr_cpu_destroy(PowerPCCPU *cpu)
55 {
56     sPAPRMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
57 
58     xics_cpu_destroy(XICS_FABRIC(spapr), cpu);
59     qemu_unregister_reset(spapr_cpu_reset, cpu);
60 }
61 
62 static void spapr_cpu_init(sPAPRMachineState *spapr, PowerPCCPU *cpu,
63                            Error **errp)
64 {
65     CPUPPCState *env = &cpu->env;
66 
67     /* Set time-base frequency to 512 MHz */
68     cpu_ppc_tb_init(env, SPAPR_TIMEBASE_FREQ);
69 
70     /* Enable PAPR mode in TCG or KVM */
71     cpu_ppc_set_papr(cpu, PPC_VIRTUAL_HYPERVISOR(spapr));
72 
73     if (cpu->max_compat) {
74         Error *local_err = NULL;
75 
76         ppc_set_compat(cpu, cpu->max_compat, &local_err);
77         if (local_err) {
78             error_propagate(errp, local_err);
79             return;
80         }
81     }
82 
83     qemu_register_reset(spapr_cpu_reset, cpu);
84     spapr_cpu_reset(cpu);
85 }
86 
87 /*
88  * Return the sPAPR CPU core type for @model which essentially is the CPU
89  * model specified with -cpu cmdline option.
90  */
91 char *spapr_get_cpu_core_type(const char *model)
92 {
93     char *core_type;
94     gchar **model_pieces = g_strsplit(model, ",", 2);
95 
96     core_type = g_strdup_printf("%s-%s", model_pieces[0], TYPE_SPAPR_CPU_CORE);
97 
98     /* Check whether it exists or whether we have to look up an alias name */
99     if (!object_class_by_name(core_type)) {
100         const char *realmodel;
101 
102         g_free(core_type);
103         core_type = NULL;
104         realmodel = ppc_cpu_lookup_alias(model_pieces[0]);
105         if (realmodel) {
106             core_type = spapr_get_cpu_core_type(realmodel);
107         }
108     }
109 
110     g_strfreev(model_pieces);
111     return core_type;
112 }
113 
114 static void spapr_cpu_core_unrealizefn(DeviceState *dev, Error **errp)
115 {
116     sPAPRCPUCore *sc = SPAPR_CPU_CORE(OBJECT(dev));
117     sPAPRCPUCoreClass *scc = SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev));
118     const char *typename = object_class_get_name(scc->cpu_class);
119     size_t size = object_type_get_instance_size(typename);
120     CPUCore *cc = CPU_CORE(dev);
121     int i;
122 
123     for (i = 0; i < cc->nr_threads; i++) {
124         void *obj = sc->threads + i * size;
125         DeviceState *dev = DEVICE(obj);
126         CPUState *cs = CPU(dev);
127         PowerPCCPU *cpu = POWERPC_CPU(cs);
128 
129         spapr_cpu_destroy(cpu);
130         object_unparent(cpu->intc);
131         cpu_remove_sync(cs);
132         object_unparent(obj);
133     }
134     g_free(sc->threads);
135 }
136 
137 static void spapr_cpu_core_realize_child(Object *child, Error **errp)
138 {
139     Error *local_err = NULL;
140     sPAPRMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
141     CPUState *cs = CPU(child);
142     PowerPCCPU *cpu = POWERPC_CPU(cs);
143     Object *obj;
144 
145     obj = object_new(spapr->icp_type);
146     object_property_add_child(OBJECT(cpu), "icp", obj, NULL);
147     object_property_add_const_link(obj, "xics", OBJECT(spapr), &error_abort);
148     object_property_set_bool(obj, true, "realized", &local_err);
149     if (local_err) {
150         error_propagate(errp, local_err);
151         return;
152     }
153 
154     object_property_set_bool(child, true, "realized", &local_err);
155     if (local_err) {
156         object_unparent(obj);
157         error_propagate(errp, local_err);
158         return;
159     }
160 
161     spapr_cpu_init(spapr, cpu, &local_err);
162     if (local_err) {
163         object_unparent(obj);
164         error_propagate(errp, local_err);
165         return;
166     }
167 
168     xics_cpu_setup(XICS_FABRIC(spapr), cpu, ICP(obj));
169 }
170 
171 static void spapr_cpu_core_realize(DeviceState *dev, Error **errp)
172 {
173     sPAPRCPUCore *sc = SPAPR_CPU_CORE(OBJECT(dev));
174     sPAPRCPUCoreClass *scc = SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev));
175     CPUCore *cc = CPU_CORE(OBJECT(dev));
176     const char *typename = object_class_get_name(scc->cpu_class);
177     size_t size = object_type_get_instance_size(typename);
178     Error *local_err = NULL;
179     void *obj;
180     int i, j;
181 
182     sc->threads = g_malloc0(size * cc->nr_threads);
183     for (i = 0; i < cc->nr_threads; i++) {
184         char id[32];
185         CPUState *cs;
186 
187         obj = sc->threads + i * size;
188 
189         object_initialize(obj, size, typename);
190         cs = CPU(obj);
191         cs->cpu_index = cc->core_id + i;
192 
193         /* Set NUMA node for the threads belonged to core  */
194         cs->numa_node = sc->node_id;
195 
196         snprintf(id, sizeof(id), "thread[%d]", i);
197         object_property_add_child(OBJECT(sc), id, obj, &local_err);
198         if (local_err) {
199             goto err;
200         }
201         object_unref(obj);
202     }
203 
204     for (j = 0; j < cc->nr_threads; j++) {
205         obj = sc->threads + j * size;
206 
207         spapr_cpu_core_realize_child(obj, &local_err);
208         if (local_err) {
209             goto err;
210         }
211     }
212     return;
213 
214 err:
215     while (--i >= 0) {
216         obj = sc->threads + i * size;
217         object_unparent(obj);
218     }
219     g_free(sc->threads);
220     error_propagate(errp, local_err);
221 }
222 
223 static const char *spapr_core_models[] = {
224     /* 970 */
225     "970_v2.2",
226 
227     /* 970MP variants */
228     "970MP_v1.0",
229     "970mp_v1.0",
230     "970MP_v1.1",
231     "970mp_v1.1",
232 
233     /* POWER5+ */
234     "POWER5+_v2.1",
235 
236     /* POWER7 */
237     "POWER7_v2.3",
238 
239     /* POWER7+ */
240     "POWER7+_v2.1",
241 
242     /* POWER8 */
243     "POWER8_v2.0",
244 
245     /* POWER8E */
246     "POWER8E_v2.1",
247 
248     /* POWER8NVL */
249     "POWER8NVL_v1.0",
250 
251     /* POWER9 */
252     "POWER9_v1.0",
253 };
254 
255 static Property spapr_cpu_core_properties[] = {
256     DEFINE_PROP_INT32("node-id", sPAPRCPUCore, node_id, CPU_UNSET_NUMA_NODE_ID),
257     DEFINE_PROP_END_OF_LIST()
258 };
259 
260 void spapr_cpu_core_class_init(ObjectClass *oc, void *data)
261 {
262     DeviceClass *dc = DEVICE_CLASS(oc);
263     sPAPRCPUCoreClass *scc = SPAPR_CPU_CORE_CLASS(oc);
264 
265     dc->realize = spapr_cpu_core_realize;
266     dc->unrealize = spapr_cpu_core_unrealizefn;
267     dc->props = spapr_cpu_core_properties;
268     scc->cpu_class = cpu_class_by_name(TYPE_POWERPC_CPU, data);
269     g_assert(scc->cpu_class);
270 }
271 
272 static const TypeInfo spapr_cpu_core_type_info = {
273     .name = TYPE_SPAPR_CPU_CORE,
274     .parent = TYPE_CPU_CORE,
275     .abstract = true,
276     .instance_size = sizeof(sPAPRCPUCore),
277     .class_size = sizeof(sPAPRCPUCoreClass),
278 };
279 
280 static void spapr_cpu_core_register_types(void)
281 {
282     int i;
283 
284     type_register_static(&spapr_cpu_core_type_info);
285 
286     for (i = 0; i < ARRAY_SIZE(spapr_core_models); i++) {
287         TypeInfo type_info = {
288             .parent = TYPE_SPAPR_CPU_CORE,
289             .instance_size = sizeof(sPAPRCPUCore),
290             .class_init = spapr_cpu_core_class_init,
291             .class_data = (void *) spapr_core_models[i],
292         };
293 
294         type_info.name = g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE,
295                                          spapr_core_models[i]);
296         type_register(&type_info);
297         g_free((void *)type_info.name);
298     }
299 }
300 
301 type_init(spapr_cpu_core_register_types)
302