mirror of https://github.com/xemu-project/xemu.git
ppc: spapr: use generic cpu_model parsing
use generic cpu_model parsing introduced by
(6063d4c0f
vl.c: convert cpu_model to cpu type and set of global properties before machine_init())
it allows to:
* replace sPAPRMachineClass::tcg_default_cpu with
MachineClass::default_cpu_type
* drop cpu_parse_cpu_model() from hw/ppc/spapr.c and reuse
one in vl.c
* simplify spapr_get_cpu_core_type() by removing
not needed anymore recurrsion since alias look up
happens earlier at vl.c and spapr_get_cpu_core_type()
works only with resulted from that cpu type.
* spapr no more needs to parse/depend on being phased out
MachineState::cpu_model, all tha parsing done by generic
code and target specific callback.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
[dwg: Correct minor compile error]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
b918f885ae
commit
2e9c10eba0
|
@ -2129,7 +2129,7 @@ static void spapr_init_cpus(sPAPRMachineState *spapr)
|
||||||
{
|
{
|
||||||
MachineState *machine = MACHINE(spapr);
|
MachineState *machine = MACHINE(spapr);
|
||||||
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
||||||
char *type = spapr_get_cpu_core_type(machine->cpu_model);
|
const char *type = spapr_get_cpu_core_type(machine->cpu_type);
|
||||||
int smt = kvmppc_smt_threads();
|
int smt = kvmppc_smt_threads();
|
||||||
const CPUArchIdList *possible_cpus;
|
const CPUArchIdList *possible_cpus;
|
||||||
int boot_cores_nr = smp_cpus / smp_threads;
|
int boot_cores_nr = smp_cpus / smp_threads;
|
||||||
|
@ -2184,7 +2184,6 @@ static void spapr_init_cpus(sPAPRMachineState *spapr)
|
||||||
object_property_set_bool(core, true, "realized", &error_fatal);
|
object_property_set_bool(core, true, "realized", &error_fatal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
g_free(type);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void spapr_set_vsmt_mode(sPAPRMachineState *spapr, Error **errp)
|
static void spapr_set_vsmt_mode(sPAPRMachineState *spapr, Error **errp)
|
||||||
|
@ -2369,12 +2368,6 @@ static void ppc_spapr_init(MachineState *machine)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* init CPUs */
|
/* init CPUs */
|
||||||
if (machine->cpu_model == NULL) {
|
|
||||||
machine->cpu_model = kvm_enabled() ? "host" : smc->tcg_default_cpu;
|
|
||||||
}
|
|
||||||
|
|
||||||
cpu_parse_cpu_model(TYPE_POWERPC_CPU, machine->cpu_model);
|
|
||||||
|
|
||||||
spapr_set_vsmt_mode(spapr, &error_fatal);
|
spapr_set_vsmt_mode(spapr, &error_fatal);
|
||||||
|
|
||||||
spapr_init_cpus(spapr);
|
spapr_init_cpus(spapr);
|
||||||
|
@ -3277,7 +3270,7 @@ static void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
||||||
MachineClass *mc = MACHINE_GET_CLASS(hotplug_dev);
|
MachineClass *mc = MACHINE_GET_CLASS(hotplug_dev);
|
||||||
Error *local_err = NULL;
|
Error *local_err = NULL;
|
||||||
CPUCore *cc = CPU_CORE(dev);
|
CPUCore *cc = CPU_CORE(dev);
|
||||||
char *base_core_type = spapr_get_cpu_core_type(machine->cpu_model);
|
const char *base_core_type = spapr_get_cpu_core_type(machine->cpu_type);
|
||||||
const char *type = object_get_typename(OBJECT(dev));
|
const char *type = object_get_typename(OBJECT(dev));
|
||||||
CPUArchId *core_slot;
|
CPUArchId *core_slot;
|
||||||
int index;
|
int index;
|
||||||
|
@ -3323,7 +3316,6 @@ static void spapr_core_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
||||||
numa_cpu_pre_plug(core_slot, dev, &local_err);
|
numa_cpu_pre_plug(core_slot, dev, &local_err);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
g_free(base_core_type);
|
|
||||||
error_propagate(errp, local_err);
|
error_propagate(errp, local_err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3622,7 +3614,7 @@ static void spapr_machine_class_init(ObjectClass *oc, void *data)
|
||||||
hc->unplug_request = spapr_machine_device_unplug_request;
|
hc->unplug_request = spapr_machine_device_unplug_request;
|
||||||
|
|
||||||
smc->dr_lmb_enabled = true;
|
smc->dr_lmb_enabled = true;
|
||||||
smc->tcg_default_cpu = "power8_v2.0";
|
mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power8_v2.0");
|
||||||
mc->has_hotpluggable_cpus = true;
|
mc->has_hotpluggable_cpus = true;
|
||||||
smc->resize_hpt_default = SPAPR_RESIZE_HPT_ENABLED;
|
smc->resize_hpt_default = SPAPR_RESIZE_HPT_ENABLED;
|
||||||
fwc->get_dev_path = spapr_get_fw_dev_path;
|
fwc->get_dev_path = spapr_get_fw_dev_path;
|
||||||
|
@ -3868,7 +3860,7 @@ static void spapr_machine_2_7_class_options(MachineClass *mc)
|
||||||
sPAPRMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
sPAPRMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
||||||
|
|
||||||
spapr_machine_2_8_class_options(mc);
|
spapr_machine_2_8_class_options(mc);
|
||||||
smc->tcg_default_cpu = "power7_v2.3";
|
mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power7_v2.3");
|
||||||
SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_7);
|
SET_MACHINE_COMPAT(mc, SPAPR_COMPAT_2_7);
|
||||||
smc->phb_placement = phb_placement_2_7;
|
smc->phb_placement = phb_placement_2_7;
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,29 +61,19 @@ static void spapr_cpu_init(sPAPRMachineState *spapr, PowerPCCPU *cpu,
|
||||||
* Return the sPAPR CPU core type for @model which essentially is the CPU
|
* Return the sPAPR CPU core type for @model which essentially is the CPU
|
||||||
* model specified with -cpu cmdline option.
|
* model specified with -cpu cmdline option.
|
||||||
*/
|
*/
|
||||||
char *spapr_get_cpu_core_type(const char *model)
|
const char *spapr_get_cpu_core_type(const char *cpu_type)
|
||||||
{
|
{
|
||||||
char *core_type;
|
int len = strlen(cpu_type) - strlen(POWERPC_CPU_TYPE_SUFFIX);
|
||||||
gchar **model_pieces = g_strsplit(model, ",", 2);
|
char *core_type = g_strdup_printf(SPAPR_CPU_CORE_TYPE_NAME("%.*s"),
|
||||||
gchar *cpu_model = g_ascii_strdown(model_pieces[0], -1);
|
len, cpu_type);
|
||||||
g_strfreev(model_pieces);
|
ObjectClass *oc = object_class_by_name(core_type);
|
||||||
|
|
||||||
core_type = g_strdup_printf("%s-" TYPE_SPAPR_CPU_CORE, cpu_model);
|
|
||||||
|
|
||||||
/* Check whether it exists or whether we have to look up an alias name */
|
|
||||||
if (!object_class_by_name(core_type)) {
|
|
||||||
const char *realmodel;
|
|
||||||
|
|
||||||
g_free(core_type);
|
g_free(core_type);
|
||||||
core_type = NULL;
|
if (!oc) {
|
||||||
realmodel = ppc_cpu_lookup_alias(cpu_model);
|
return NULL;
|
||||||
if (realmodel) {
|
|
||||||
core_type = spapr_get_cpu_core_type(realmodel);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
g_free(cpu_model);
|
|
||||||
|
|
||||||
return core_type;
|
return object_class_get_name(oc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void spapr_cpu_core_unrealizefn(DeviceState *dev, Error **errp)
|
static void spapr_cpu_core_unrealizefn(DeviceState *dev, Error **errp)
|
||||||
|
|
|
@ -60,7 +60,6 @@ struct sPAPRMachineClass {
|
||||||
/*< public >*/
|
/*< public >*/
|
||||||
bool dr_lmb_enabled; /* enable dynamic-reconfig/hotplug of LMBs */
|
bool dr_lmb_enabled; /* enable dynamic-reconfig/hotplug of LMBs */
|
||||||
bool use_ohci_by_default; /* use USB-OHCI instead of XHCI */
|
bool use_ohci_by_default; /* use USB-OHCI instead of XHCI */
|
||||||
const char *tcg_default_cpu; /* which (TCG) CPU to simulate by default */
|
|
||||||
bool pre_2_10_has_unused_icps;
|
bool pre_2_10_has_unused_icps;
|
||||||
void (*phb_placement)(sPAPRMachineState *spapr, uint32_t index,
|
void (*phb_placement)(sPAPRMachineState *spapr, uint32_t index,
|
||||||
uint64_t *buid, hwaddr *pio,
|
uint64_t *buid, hwaddr *pio,
|
||||||
|
|
|
@ -37,5 +37,5 @@ typedef struct sPAPRCPUCoreClass {
|
||||||
const char *cpu_type;
|
const char *cpu_type;
|
||||||
} sPAPRCPUCoreClass;
|
} sPAPRCPUCoreClass;
|
||||||
|
|
||||||
char *spapr_get_cpu_core_type(const char *model);
|
const char *spapr_get_cpu_core_type(const char *cpu_type);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1278,7 +1278,6 @@ extern const struct VMStateDescription vmstate_ppc_cpu;
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
void ppc_translate_init(void);
|
void ppc_translate_init(void);
|
||||||
const char *ppc_cpu_lookup_alias(const char *alias);
|
|
||||||
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
/* you can call this signal handler from your SIGBUS and SIGSEGV
|
||||||
signal handlers to inform the virtual CPU of exceptions. non zero
|
signal handlers to inform the virtual CPU of exceptions. non zero
|
||||||
is returned if the signal was handled by the virtual CPU. */
|
is returned if the signal was handled by the virtual CPU. */
|
||||||
|
|
|
@ -123,7 +123,7 @@ static bool kvmppc_is_pr(KVMState *ks)
|
||||||
return kvm_vm_check_extension(ks, KVM_CAP_PPC_GET_PVINFO) != 0;
|
return kvm_vm_check_extension(ks, KVM_CAP_PPC_GET_PVINFO) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kvm_ppc_register_host_cpu_type(void);
|
static int kvm_ppc_register_host_cpu_type(MachineState *ms);
|
||||||
|
|
||||||
int kvm_arch_init(MachineState *ms, KVMState *s)
|
int kvm_arch_init(MachineState *ms, KVMState *s)
|
||||||
{
|
{
|
||||||
|
@ -163,7 +163,7 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
||||||
"VM to stall at times!\n");
|
"VM to stall at times!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
kvm_ppc_register_host_cpu_type();
|
kvm_ppc_register_host_cpu_type(ms);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -2487,12 +2487,13 @@ PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
|
||||||
return pvr_pcc;
|
return pvr_pcc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kvm_ppc_register_host_cpu_type(void)
|
static int kvm_ppc_register_host_cpu_type(MachineState *ms)
|
||||||
{
|
{
|
||||||
TypeInfo type_info = {
|
TypeInfo type_info = {
|
||||||
.name = TYPE_HOST_POWERPC_CPU,
|
.name = TYPE_HOST_POWERPC_CPU,
|
||||||
.class_init = kvmppc_host_cpu_class_init,
|
.class_init = kvmppc_host_cpu_class_init,
|
||||||
};
|
};
|
||||||
|
MachineClass *mc = MACHINE_GET_CLASS(ms);
|
||||||
PowerPCCPUClass *pvr_pcc;
|
PowerPCCPUClass *pvr_pcc;
|
||||||
ObjectClass *oc;
|
ObjectClass *oc;
|
||||||
DeviceClass *dc;
|
DeviceClass *dc;
|
||||||
|
@ -2504,6 +2505,10 @@ static int kvm_ppc_register_host_cpu_type(void)
|
||||||
}
|
}
|
||||||
type_info.parent = object_class_get_name(OBJECT_CLASS(pvr_pcc));
|
type_info.parent = object_class_get_name(OBJECT_CLASS(pvr_pcc));
|
||||||
type_register(&type_info);
|
type_register(&type_info);
|
||||||
|
if (object_dynamic_cast(OBJECT(ms), TYPE_SPAPR_MACHINE)) {
|
||||||
|
/* override TCG default cpu type with 'host' cpu model */
|
||||||
|
mc->default_cpu_type = TYPE_HOST_POWERPC_CPU;
|
||||||
|
}
|
||||||
|
|
||||||
oc = object_class_by_name(type_info.name);
|
oc = object_class_by_name(type_info.name);
|
||||||
g_assert(oc);
|
g_assert(oc);
|
||||||
|
|
|
@ -10060,7 +10060,7 @@ PowerPCCPUClass *ppc_cpu_class_by_pvr_mask(uint32_t pvr)
|
||||||
return pcc;
|
return pcc;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *ppc_cpu_lookup_alias(const char *alias)
|
static const char *ppc_cpu_lookup_alias(const char *alias)
|
||||||
{
|
{
|
||||||
int ai;
|
int ai;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue