2016-06-10 00:59:01 +00:00
|
|
|
/*
|
|
|
|
* sPAPR CPU core device, acts as container of CPU thread devices.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Bharata B Rao <bharata@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
#include "hw/cpu/core.h"
|
|
|
|
#include "hw/ppc/spapr_cpu_core.h"
|
2016-10-11 06:56:52 +00:00
|
|
|
#include "target/ppc/cpu.h"
|
2016-06-10 00:59:01 +00:00
|
|
|
#include "hw/ppc/spapr.h"
|
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "qapi/error.h"
|
2016-06-22 17:11:19 +00:00
|
|
|
#include "sysemu/cpus.h"
|
2017-02-23 00:39:18 +00:00
|
|
|
#include "sysemu/kvm.h"
|
2016-10-11 06:56:52 +00:00
|
|
|
#include "target/ppc/kvm_ppc.h"
|
2016-06-10 00:59:02 +00:00
|
|
|
#include "hw/ppc/ppc.h"
|
2016-10-11 06:56:52 +00:00
|
|
|
#include "target/ppc/mmu-hash64.h"
|
2016-06-22 17:11:19 +00:00
|
|
|
#include "sysemu/numa.h"
|
2017-09-25 11:00:02 +00:00
|
|
|
#include "sysemu/hw_accel.h"
|
2017-02-23 00:39:18 +00:00
|
|
|
#include "qemu/error-report.h"
|
2016-06-10 00:59:02 +00:00
|
|
|
|
|
|
|
static void spapr_cpu_reset(void *opaque)
|
|
|
|
{
|
|
|
|
PowerPCCPU *cpu = opaque;
|
|
|
|
CPUState *cs = CPU(cpu);
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
|
|
|
cpu_reset(cs);
|
|
|
|
|
|
|
|
/* All CPUs start halted. CPU0 is unhalted from the machine level
|
|
|
|
* reset code and the rest are explicitly started up by the guest
|
|
|
|
* using an RTAS call */
|
|
|
|
cs->halted = 1;
|
|
|
|
|
|
|
|
env->spr[SPR_HIOR] = 0;
|
|
|
|
}
|
|
|
|
|
2016-06-10 00:59:05 +00:00
|
|
|
static void spapr_cpu_destroy(PowerPCCPU *cpu)
|
|
|
|
{
|
|
|
|
qemu_unregister_reset(spapr_cpu_reset, cpu);
|
|
|
|
}
|
|
|
|
|
2016-11-08 05:33:32 +00:00
|
|
|
static void spapr_cpu_init(sPAPRMachineState *spapr, PowerPCCPU *cpu,
|
|
|
|
Error **errp)
|
2016-06-10 00:59:02 +00:00
|
|
|
{
|
|
|
|
CPUPPCState *env = &cpu->env;
|
|
|
|
|
|
|
|
/* Set time-base frequency to 512 MHz */
|
|
|
|
cpu_ppc_tb_init(env, SPAPR_TIMEBASE_FREQ);
|
|
|
|
|
|
|
|
/* Enable PAPR mode in TCG or KVM */
|
2017-02-19 23:47:09 +00:00
|
|
|
cpu_ppc_set_papr(cpu, PPC_VIRTUAL_HYPERVISOR(spapr));
|
2016-06-10 00:59:02 +00:00
|
|
|
|
|
|
|
qemu_register_reset(spapr_cpu_reset, cpu);
|
2016-06-10 00:59:04 +00:00
|
|
|
spapr_cpu_reset(cpu);
|
2016-06-10 00:59:02 +00:00
|
|
|
}
|
2016-06-10 00:59:01 +00:00
|
|
|
|
2016-06-10 00:59:03 +00:00
|
|
|
/*
|
|
|
|
* Return the sPAPR CPU core type for @model which essentially is the CPU
|
|
|
|
* model specified with -cpu cmdline option.
|
|
|
|
*/
|
2017-10-09 19:51:05 +00:00
|
|
|
const char *spapr_get_cpu_core_type(const char *cpu_type)
|
2016-06-10 00:59:03 +00:00
|
|
|
{
|
2017-10-09 19:51:05 +00:00
|
|
|
int len = strlen(cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX);
|
|
|
|
char *core_type = g_strdup_printf(SPAPR_CPU_CORE_TYPE_NAME("%.*s"),
|
|
|
|
len, cpu_type);
|
|
|
|
ObjectClass *oc = object_class_by_name(core_type);
|
|
|
|
|
|
|
|
g_free(core_type);
|
|
|
|
if (!oc) {
|
|
|
|
return NULL;
|
2016-08-09 16:59:59 +00:00
|
|
|
}
|
|
|
|
|
2017-10-09 19:51:05 +00:00
|
|
|
return object_class_get_name(oc);
|
2016-06-10 00:59:03 +00:00
|
|
|
}
|
|
|
|
|
2017-02-03 10:51:57 +00:00
|
|
|
static void spapr_cpu_core_unrealizefn(DeviceState *dev, Error **errp)
|
2016-06-10 00:59:05 +00:00
|
|
|
{
|
|
|
|
sPAPRCPUCore *sc = SPAPR_CPU_CORE(OBJECT(dev));
|
|
|
|
CPUCore *cc = CPU_CORE(dev);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < cc->nr_threads; i++) {
|
2017-11-20 09:19:54 +00:00
|
|
|
Object *obj = OBJECT(sc->threads[i]);
|
2016-06-10 00:59:05 +00:00
|
|
|
DeviceState *dev = DEVICE(obj);
|
|
|
|
CPUState *cs = CPU(dev);
|
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
|
|
|
|
|
|
|
spapr_cpu_destroy(cpu);
|
2017-04-12 08:15:07 +00:00
|
|
|
object_unparent(cpu->intc);
|
2016-06-10 00:59:05 +00:00
|
|
|
cpu_remove_sync(cs);
|
|
|
|
object_unparent(obj);
|
|
|
|
}
|
2016-06-29 20:50:45 +00:00
|
|
|
g_free(sc->threads);
|
2016-06-10 00:59:05 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 06:51:21 +00:00
|
|
|
static void spapr_cpu_core_realize_child(Object *child,
|
|
|
|
sPAPRMachineState *spapr, Error **errp)
|
2016-06-10 00:59:01 +00:00
|
|
|
{
|
2016-07-01 05:14:39 +00:00
|
|
|
Error *local_err = NULL;
|
2016-06-10 00:59:01 +00:00
|
|
|
CPUState *cs = CPU(child);
|
|
|
|
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
2017-06-16 01:37:53 +00:00
|
|
|
Object *obj;
|
2017-04-03 07:45:58 +00:00
|
|
|
|
2017-06-08 13:42:59 +00:00
|
|
|
object_property_set_bool(child, true, "realized", &local_err);
|
2017-04-03 07:45:58 +00:00
|
|
|
if (local_err) {
|
2017-05-15 11:39:55 +00:00
|
|
|
goto error;
|
2017-04-03 07:45:58 +00:00
|
|
|
}
|
2016-06-10 00:59:01 +00:00
|
|
|
|
2017-06-08 13:42:59 +00:00
|
|
|
spapr_cpu_init(spapr, cpu, &local_err);
|
2016-06-29 20:50:32 +00:00
|
|
|
if (local_err) {
|
2017-05-15 11:39:55 +00:00
|
|
|
goto error;
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 13:42:59 +00:00
|
|
|
obj = object_new(spapr->icp_type);
|
|
|
|
object_property_add_child(child, "icp", obj, &error_abort);
|
|
|
|
object_unref(obj);
|
|
|
|
object_property_add_const_link(obj, ICP_PROP_XICS, OBJECT(spapr),
|
|
|
|
&error_abort);
|
|
|
|
object_property_add_const_link(obj, ICP_PROP_CPU, child, &error_abort);
|
|
|
|
object_property_set_bool(obj, true, "realized", &local_err);
|
2016-06-29 20:50:32 +00:00
|
|
|
if (local_err) {
|
2017-06-16 01:37:53 +00:00
|
|
|
goto free_icp;
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
2017-04-03 07:45:58 +00:00
|
|
|
|
2017-05-15 11:39:55 +00:00
|
|
|
return;
|
|
|
|
|
2017-06-16 01:37:53 +00:00
|
|
|
free_icp:
|
2017-05-15 11:39:55 +00:00
|
|
|
object_unparent(obj);
|
2017-06-16 01:37:53 +00:00
|
|
|
error:
|
2017-05-15 11:39:55 +00:00
|
|
|
error_propagate(errp, local_err);
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void spapr_cpu_core_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
2017-10-12 16:30:23 +00:00
|
|
|
/* We don't use SPAPR_MACHINE() in order to exit gracefully if the user
|
|
|
|
* tries to add a sPAPR CPU core to a non-pseries machine.
|
|
|
|
*/
|
|
|
|
sPAPRMachineState *spapr =
|
|
|
|
(sPAPRMachineState *) object_dynamic_cast(qdev_get_machine(),
|
|
|
|
TYPE_SPAPR_MACHINE);
|
2016-06-10 00:59:01 +00:00
|
|
|
sPAPRCPUCore *sc = SPAPR_CPU_CORE(OBJECT(dev));
|
2016-09-12 07:57:20 +00:00
|
|
|
sPAPRCPUCoreClass *scc = SPAPR_CPU_CORE_GET_CLASS(OBJECT(dev));
|
2016-06-10 00:59:01 +00:00
|
|
|
CPUCore *cc = CPU_CORE(OBJECT(dev));
|
|
|
|
Error *local_err = NULL;
|
2017-11-20 09:19:54 +00:00
|
|
|
Object *obj;
|
2016-07-01 05:14:39 +00:00
|
|
|
int i, j;
|
2016-06-10 00:59:01 +00:00
|
|
|
|
2017-10-12 16:30:23 +00:00
|
|
|
if (!spapr) {
|
|
|
|
error_setg(errp, TYPE_SPAPR_CPU_CORE " needs a pseries machine");
|
2017-08-24 03:52:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-20 09:19:54 +00:00
|
|
|
sc->threads = g_new(PowerPCCPU *, cc->nr_threads);
|
2016-06-10 00:59:01 +00:00
|
|
|
for (i = 0; i < cc->nr_threads; i++) {
|
|
|
|
char id[32];
|
2016-07-21 15:54:37 +00:00
|
|
|
CPUState *cs;
|
2017-05-30 16:24:00 +00:00
|
|
|
PowerPCCPU *cpu;
|
2016-07-21 15:54:37 +00:00
|
|
|
|
2017-11-20 09:19:54 +00:00
|
|
|
obj = object_new(scc->cpu_type);
|
2016-06-10 00:59:01 +00:00
|
|
|
|
2016-07-21 15:54:37 +00:00
|
|
|
cs = CPU(obj);
|
2017-11-20 09:19:54 +00:00
|
|
|
cpu = sc->threads[i] = POWERPC_CPU(obj);
|
2016-07-21 15:54:37 +00:00
|
|
|
cs->cpu_index = cc->core_id + i;
|
2017-08-31 06:38:46 +00:00
|
|
|
cpu->vcpu_id = (cc->core_id * spapr->vsmt / smp_threads) + i;
|
|
|
|
if (kvm_enabled() && !kvm_vcpu_id_is_valid(cpu->vcpu_id)) {
|
|
|
|
error_setg(&local_err, "Can't create CPU with id %d in KVM",
|
|
|
|
cpu->vcpu_id);
|
|
|
|
error_append_hint(&local_err, "Adjust the number of cpus to %d "
|
|
|
|
"or try to raise the number of threads per core\n",
|
|
|
|
cpu->vcpu_id * smp_threads / spapr->vsmt);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2017-02-24 09:26:56 +00:00
|
|
|
|
2017-05-10 11:29:53 +00:00
|
|
|
/* Set NUMA node for the threads belonged to core */
|
2017-05-30 16:24:00 +00:00
|
|
|
cpu->node_id = sc->node_id;
|
2017-02-24 09:26:56 +00:00
|
|
|
|
2016-06-10 00:59:01 +00:00
|
|
|
snprintf(id, sizeof(id), "thread[%d]", i);
|
|
|
|
object_property_add_child(OBJECT(sc), id, obj, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
goto err;
|
|
|
|
}
|
2016-06-29 20:50:20 +00:00
|
|
|
object_unref(obj);
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
2016-07-01 05:14:39 +00:00
|
|
|
|
|
|
|
for (j = 0; j < cc->nr_threads; j++) {
|
2017-11-20 09:19:54 +00:00
|
|
|
obj = OBJECT(sc->threads[j]);
|
2016-07-01 05:14:39 +00:00
|
|
|
|
2017-09-12 06:51:21 +00:00
|
|
|
spapr_cpu_core_realize_child(obj, spapr, &local_err);
|
2016-07-01 05:14:39 +00:00
|
|
|
if (local_err) {
|
|
|
|
goto err;
|
|
|
|
}
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
2016-07-01 05:14:39 +00:00
|
|
|
return;
|
2016-06-10 00:59:01 +00:00
|
|
|
|
|
|
|
err:
|
2016-06-27 16:28:15 +00:00
|
|
|
while (--i >= 0) {
|
2017-11-20 09:19:54 +00:00
|
|
|
obj = OBJECT(sc->threads[i]);
|
2016-06-10 00:59:01 +00:00
|
|
|
object_unparent(obj);
|
|
|
|
}
|
|
|
|
g_free(sc->threads);
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
}
|
|
|
|
|
2017-05-10 11:29:46 +00:00
|
|
|
static Property spapr_cpu_core_properties[] = {
|
|
|
|
DEFINE_PROP_INT32("node-id", sPAPRCPUCore, node_id, CPU_UNSET_NUMA_NODE_ID),
|
|
|
|
DEFINE_PROP_END_OF_LIST()
|
|
|
|
};
|
|
|
|
|
2017-10-09 19:51:02 +00:00
|
|
|
static void spapr_cpu_core_class_init(ObjectClass *oc, void *data)
|
2016-06-10 00:59:01 +00:00
|
|
|
{
|
2016-09-12 07:57:20 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
|
|
|
sPAPRCPUCoreClass *scc = SPAPR_CPU_CORE_CLASS(oc);
|
|
|
|
|
|
|
|
dc->realize = spapr_cpu_core_realize;
|
2017-02-03 10:51:57 +00:00
|
|
|
dc->unrealize = spapr_cpu_core_unrealizefn;
|
2017-05-10 11:29:46 +00:00
|
|
|
dc->props = spapr_cpu_core_properties;
|
2017-10-09 19:51:01 +00:00
|
|
|
scc->cpu_type = data;
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
|
|
|
|
2017-10-09 19:51:00 +00:00
|
|
|
#define DEFINE_SPAPR_CPU_CORE_TYPE(cpu_model) \
|
|
|
|
{ \
|
|
|
|
.parent = TYPE_SPAPR_CPU_CORE, \
|
2017-10-09 19:51:01 +00:00
|
|
|
.class_data = (void *) POWERPC_CPU_TYPE_NAME(cpu_model), \
|
2017-10-09 19:51:00 +00:00
|
|
|
.class_init = spapr_cpu_core_class_init, \
|
|
|
|
.name = SPAPR_CPU_CORE_TYPE_NAME(cpu_model), \
|
2016-06-10 00:59:01 +00:00
|
|
|
}
|
|
|
|
|
2017-10-09 19:51:00 +00:00
|
|
|
static const TypeInfo spapr_cpu_core_type_infos[] = {
|
|
|
|
{
|
|
|
|
.name = TYPE_SPAPR_CPU_CORE,
|
|
|
|
.parent = TYPE_CPU_CORE,
|
|
|
|
.abstract = true,
|
|
|
|
.instance_size = sizeof(sPAPRCPUCore),
|
|
|
|
.class_size = sizeof(sPAPRCPUCoreClass),
|
|
|
|
},
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("970_v2.2"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.0"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("970mp_v1.1"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power5+_v2.1"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power7_v2.3"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power7+_v2.1"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power8_v2.0"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power8e_v2.1"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power8nvl_v1.0"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power9_v1.0"),
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("power9_v2.0"),
|
2017-10-09 19:51:02 +00:00
|
|
|
#ifdef CONFIG_KVM
|
|
|
|
DEFINE_SPAPR_CPU_CORE_TYPE("host"),
|
|
|
|
#endif
|
2017-10-09 19:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TYPES(spapr_cpu_core_type_infos)
|