837556b8d0
This is the rebase to qemu-kvm-4.0.0, based on qemu-kvm-3.1.0-23 commits
415 lines
13 KiB
Diff
415 lines
13 KiB
Diff
From 373a3f8f11227ba6bce10dab17ddfb6caffc75cf Mon Sep 17 00:00:00 2001
|
|
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
Date: Fri, 19 Oct 2018 13:27:13 +0200
|
|
Subject: Add ppc64 machine types
|
|
|
|
Adding changes to add RHEL machine types for ppc64 architecture.
|
|
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
|
Rebase changes (weekly-190111):
|
|
- remove instance options and use upstream solution
|
|
- Use upstream compat handling
|
|
- Replace SPAPR_PCI_2_7_MMIO_WIN_SIZE with value (changed upstream)
|
|
|
|
Rebase changes (weekly-190104):
|
|
- re-add handling of instance_options (removed upstream)
|
|
- Use p8 as default for rhel machine types (p9 default upstream)
|
|
|
|
Rebase changes (weekly-190315):
|
|
- sPAPRMachineClass renamed to SpaprMachineClass (upstream)
|
|
|
|
Merged patches (weekly-190104):
|
|
- 467d59a redhat: define pseries-rhel8.0.0 machine type
|
|
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
hw/ppc/spapr.c | 252 ++++++++++++++++++++++++++++++++++++++++
|
|
hw/ppc/spapr_cpu_core.c | 13 +++
|
|
include/hw/ppc/spapr.h | 1 +
|
|
target/ppc/compat.c | 13 ++-
|
|
target/ppc/cpu.h | 1 +
|
|
5 files changed, 279 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
|
|
index b52b82d298..daa59203ea 100644
|
|
--- a/hw/ppc/spapr.c
|
|
+++ b/hw/ppc/spapr.c
|
|
@@ -4300,6 +4300,7 @@ static void spapr_machine_class_init(ObjectClass *oc, void *data)
|
|
spapr_caps_add_properties(smc, &error_abort);
|
|
smc->irq = &spapr_irq_xics;
|
|
smc->dr_phb_enabled = true;
|
|
+ smc->has_power9_support = true;
|
|
}
|
|
|
|
static const TypeInfo spapr_machine_info = {
|
|
@@ -4344,6 +4345,7 @@ static const TypeInfo spapr_machine_info = {
|
|
} \
|
|
type_init(spapr_machine_register_##suffix)
|
|
|
|
+#if 0 /* Disabled for Red Hat Enterprise Linux */
|
|
/*
|
|
* pseries-4.0
|
|
*/
|
|
@@ -4499,6 +4501,7 @@ DEFINE_SPAPR_MACHINE(2_8, "2.8", false);
|
|
/*
|
|
* pseries-2.7
|
|
*/
|
|
+#endif
|
|
|
|
static void phb_placement_2_7(SpaprMachineState *spapr, uint32_t index,
|
|
uint64_t *buid, hwaddr *pio,
|
|
@@ -4549,6 +4552,7 @@ static void phb_placement_2_7(SpaprMachineState *spapr, uint32_t index,
|
|
*/
|
|
}
|
|
|
|
+#if 0 /* Disabled for Red Hat Enterprise Linux */
|
|
static void spapr_machine_2_7_class_options(MachineClass *mc)
|
|
{
|
|
SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
@@ -4663,6 +4667,254 @@ static void spapr_machine_2_1_class_options(MachineClass *mc)
|
|
compat_props_add(mc->compat_props, hw_compat_2_1, hw_compat_2_1_len);
|
|
}
|
|
DEFINE_SPAPR_MACHINE(2_1, "2.1", false);
|
|
+#endif
|
|
+
|
|
+/*
|
|
+ * pseries-rhel8.0.0
|
|
+ */
|
|
+
|
|
+static void spapr_machine_rhel800_class_options(MachineClass *mc)
|
|
+{
|
|
+ /* Defaults for the latest behaviour inherited from the base class */
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel800, "rhel8.0.0", true);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.6.0
|
|
+ * like spapr_compat_2_12 and spapr_compat_3_0
|
|
+ * spapr_compat_0 is empty
|
|
+ */
|
|
+GlobalProperty spapr_compat_rhel7_6[] = {
|
|
+ {
|
|
+ .driver = TYPE_POWERPC_CPU,
|
|
+ .property = "pre-3.0-migration",
|
|
+ .value = "on",
|
|
+ },
|
|
+ {
|
|
+ .driver = TYPE_SPAPR_CPU_CORE,
|
|
+ .property = "pre-3.0-migration",
|
|
+ .value = "on",
|
|
+ },
|
|
+};
|
|
+const size_t spapr_compat_rhel7_6_len = G_N_ELEMENTS(spapr_compat_rhel7_6);
|
|
+
|
|
+
|
|
+static void spapr_machine_rhel760_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel800_class_options(mc);
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_6, hw_compat_rhel_7_6_len);
|
|
+ compat_props_add(mc->compat_props, spapr_compat_rhel7_6, spapr_compat_rhel7_6_len);
|
|
+
|
|
+ /* from spapr_machine_3_0_class_options() */
|
|
+ smc->legacy_irq_allocation = true;
|
|
+ smc->irq = &spapr_irq_xics_legacy;
|
|
+
|
|
+ /* from spapr_machine_2_12_class_options() */
|
|
+ /* We depend on kvm_enabled() to choose a default value for the
|
|
+ * hpt-max-page-size capability. Of course we can't do it here
|
|
+ * because this is too early and the HW accelerator isn't initialzed
|
|
+ * yet. Postpone this to machine init (see default_caps_with_cpu()).
|
|
+ */
|
|
+ smc->default_caps.caps[SPAPR_CAP_HPT_MAXPAGESIZE] = 0;
|
|
+ /* Defaults for the latest behaviour inherited from the base class */
|
|
+ mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power8_v2.0");
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel760, "rhel7.6.0", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.6.0-sxxm
|
|
+ *
|
|
+ * pseries-rhel7.6.0 with speculative execution exploit mitigations enabled by default
|
|
+ */
|
|
+
|
|
+static void spapr_machine_rhel760sxxm_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel760_class_options(mc);
|
|
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_FIXED_CCD;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel760sxxm, "rhel7.6.0-sxxm", false);
|
|
+
|
|
+static void spapr_machine_rhel750_class_options(MachineClass *mc)
|
|
+{
|
|
+ spapr_machine_rhel760_class_options(mc);
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_5, hw_compat_rhel_7_5_len);
|
|
+
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel750, "rhel7.5.0", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.5.0-sxxm
|
|
+ *
|
|
+ * pseries-rhel7.5.0 with speculative execution exploit mitigations enabled by default
|
|
+ */
|
|
+
|
|
+static void spapr_machine_rhel750sxxm_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel750_class_options(mc);
|
|
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_FIXED_CCD;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel750sxxm, "rhel7.5.0-sxxm", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.4.0
|
|
+ * like spapr_compat_2_9
|
|
+ */
|
|
+GlobalProperty spapr_compat_rhel7_4[] = {
|
|
+ {
|
|
+ .driver = TYPE_POWERPC_CPU,
|
|
+ .property = "pre-2.10-migration",
|
|
+ .value = "on",
|
|
+ },
|
|
+};
|
|
+const size_t spapr_compat_rhel7_4_len = G_N_ELEMENTS(spapr_compat_rhel7_4);
|
|
+
|
|
+static void spapr_machine_rhel740_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel750_class_options(mc);
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_4, hw_compat_rhel_7_4_len);
|
|
+ compat_props_add(mc->compat_props, spapr_compat_rhel7_4, spapr_compat_rhel7_4_len);
|
|
+ mc->numa_auto_assign_ram = numa_legacy_auto_assign_ram;
|
|
+ smc->has_power9_support = false;
|
|
+ smc->pre_2_10_has_unused_icps = true;
|
|
+ smc->resize_hpt_default = SPAPR_RESIZE_HPT_DISABLED;
|
|
+ smc->default_caps.caps[SPAPR_CAP_HTM] = SPAPR_CAP_ON;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel740, "rhel7.4.0", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.4.0-sxxm
|
|
+ *
|
|
+ * pseries-rhel7.4.0 with speculative execution exploit mitigations enabled by default
|
|
+ */
|
|
+
|
|
+static void spapr_machine_rhel740sxxm_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel740_class_options(mc);
|
|
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_FIXED_CCD;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel740sxxm, "rhel7.4.0-sxxm", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.3.0
|
|
+ * like spapr_compat_2_6/_2_7/_2_8 but "ddw" has been backported to RHEL7_3
|
|
+ */
|
|
+GlobalProperty spapr_compat_rhel7_3[] = {
|
|
+ {
|
|
+ .driver = TYPE_SPAPR_PCI_HOST_BRIDGE,
|
|
+ .property = "mem_win_size",
|
|
+ .value = "0xf80000000",
|
|
+ },
|
|
+ {
|
|
+ .driver = TYPE_SPAPR_PCI_HOST_BRIDGE,
|
|
+ .property = "mem64_win_size",
|
|
+ .value = "0",
|
|
+ },
|
|
+ {
|
|
+ .driver = TYPE_POWERPC_CPU,
|
|
+ .property = "pre-2.8-migration",
|
|
+ .value = "on",
|
|
+ },
|
|
+ {
|
|
+ .driver = TYPE_SPAPR_PCI_HOST_BRIDGE,
|
|
+ .property = "pre-2.8-migration",
|
|
+ .value = "on",
|
|
+ },
|
|
+ {
|
|
+ .driver = TYPE_SPAPR_PCI_HOST_BRIDGE,
|
|
+ .property = "pcie-extended-configuration-space",
|
|
+ .value = "off",
|
|
+ },
|
|
+};
|
|
+const size_t spapr_compat_rhel7_3_len = G_N_ELEMENTS(spapr_compat_rhel7_3);
|
|
+
|
|
+static void spapr_machine_rhel730_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel740_class_options(mc);
|
|
+ mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power7_v2.3");
|
|
+ mc->default_machine_opts = "modern-hotplug-events=off";
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_3, hw_compat_rhel_7_3_len);
|
|
+ compat_props_add(mc->compat_props, spapr_compat_rhel7_3, spapr_compat_rhel7_3_len);
|
|
+
|
|
+ smc->phb_placement = phb_placement_2_7;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel730, "rhel7.3.0", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.3.0-sxxm
|
|
+ *
|
|
+ * pseries-rhel7.3.0 with speculative execution exploit mitigations enabled by default
|
|
+ */
|
|
+
|
|
+static void spapr_machine_rhel730sxxm_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel730_class_options(mc);
|
|
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_WORKAROUND;
|
|
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_FIXED_CCD;
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel730sxxm, "rhel7.3.0-sxxm", false);
|
|
+
|
|
+/*
|
|
+ * pseries-rhel7.2.0
|
|
+ */
|
|
+/* Should be like spapr_compat_2_5 + 2_4 + 2_3, but "dynamic-reconfiguration"
|
|
+ * has been backported to RHEL7_2 so we don't need it here.
|
|
+ */
|
|
+
|
|
+GlobalProperty spapr_compat_rhel7_2[] = {
|
|
+ {
|
|
+ .driver = "spapr-vlan",
|
|
+ .property = "use-rx-buffer-pools",
|
|
+ .value = "off",
|
|
+ },{
|
|
+ .driver = TYPE_SPAPR_PCI_HOST_BRIDGE,
|
|
+ .property = "ddw",
|
|
+ .value = "off",
|
|
+ },
|
|
+};
|
|
+const size_t spapr_compat_rhel7_2_len = G_N_ELEMENTS(spapr_compat_rhel7_2);
|
|
+
|
|
+static void spapr_machine_rhel720_class_options(MachineClass *mc)
|
|
+{
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
+
|
|
+ spapr_machine_rhel730_class_options(mc);
|
|
+ smc->use_ohci_by_default = true;
|
|
+ mc->has_hotpluggable_cpus = NULL;
|
|
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_2, hw_compat_rhel_7_2_len);
|
|
+ compat_props_add(mc->compat_props, spapr_compat_rhel7_2, spapr_compat_rhel7_2_len);
|
|
+}
|
|
+
|
|
+DEFINE_SPAPR_MACHINE(rhel720, "rhel7.2.0", false);
|
|
|
|
static void spapr_machine_register_types(void)
|
|
{
|
|
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c
|
|
index c664969b5b..7556debbef 100644
|
|
--- a/hw/ppc/spapr_cpu_core.c
|
|
+++ b/hw/ppc/spapr_cpu_core.c
|
|
@@ -21,6 +21,7 @@
|
|
#include "sysemu/numa.h"
|
|
#include "sysemu/hw_accel.h"
|
|
#include "qemu/error-report.h"
|
|
+#include "cpu-models.h"
|
|
|
|
static void spapr_cpu_reset(void *opaque)
|
|
{
|
|
@@ -222,6 +223,7 @@ static void spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|
CPUPPCState *env = &cpu->env;
|
|
CPUState *cs = CPU(cpu);
|
|
Error *local_err = NULL;
|
|
+ SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
|
|
|
object_property_set_bool(OBJECT(cpu), true, "realized", &local_err);
|
|
if (local_err) {
|
|
@@ -234,6 +236,17 @@ static void spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|
cpu_ppc_set_vhyp(cpu, PPC_VIRTUAL_HYPERVISOR(spapr));
|
|
kvmppc_set_papr(cpu);
|
|
|
|
+ if (!smc->has_power9_support &&
|
|
+ (((spapr->max_compat_pvr &&
|
|
+ ppc_compat_cmp(spapr->max_compat_pvr,
|
|
+ CPU_POWERPC_LOGICAL_3_00) >= 0)) ||
|
|
+ (!spapr->max_compat_pvr &&
|
|
+ ppc_check_compat(cpu, CPU_POWERPC_LOGICAL_3_00, 0, 0)))) {
|
|
+ error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
+ "POWER9 CPU is not supported by this machine class");
|
|
+ return;
|
|
+ }
|
|
+
|
|
qemu_register_reset(spapr_cpu_reset, cpu);
|
|
spapr_cpu_reset(cpu);
|
|
|
|
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
|
|
index 5ea8081041..8737516ada 100644
|
|
--- a/include/hw/ppc/spapr.h
|
|
+++ b/include/hw/ppc/spapr.h
|
|
@@ -120,6 +120,7 @@ struct SpaprMachineClass {
|
|
bool legacy_irq_allocation;
|
|
bool broken_host_serial_model; /* present real host info to the guest */
|
|
|
|
+ bool has_power9_support;
|
|
void (*phb_placement)(SpaprMachineState *spapr, uint32_t index,
|
|
uint64_t *buid, hwaddr *pio,
|
|
hwaddr *mmio32, hwaddr *mmio64,
|
|
diff --git a/target/ppc/compat.c b/target/ppc/compat.c
|
|
index 7de4bf3122..3e2e35342d 100644
|
|
--- a/target/ppc/compat.c
|
|
+++ b/target/ppc/compat.c
|
|
@@ -105,8 +105,19 @@ static const CompatInfo *compat_by_pvr(uint32_t pvr)
|
|
return NULL;
|
|
}
|
|
|
|
+long ppc_compat_cmp(uint32_t pvr1, uint32_t pvr2)
|
|
+{
|
|
+ const CompatInfo *compat1 = compat_by_pvr(pvr1);
|
|
+ const CompatInfo *compat2 = compat_by_pvr(pvr2);
|
|
+
|
|
+ g_assert(compat1);
|
|
+ g_assert(compat2);
|
|
+
|
|
+ return compat1 - compat2;
|
|
+}
|
|
+
|
|
static bool pcc_compat(PowerPCCPUClass *pcc, uint32_t compat_pvr,
|
|
- uint32_t min_compat_pvr, uint32_t max_compat_pvr)
|
|
+ uint32_t min_compat_pvr, uint32_t max_compat_pvr)
|
|
{
|
|
const CompatInfo *compat = compat_by_pvr(compat_pvr);
|
|
const CompatInfo *min = compat_by_pvr(min_compat_pvr);
|
|
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
|
|
index 0707177584..60cc41fd53 100644
|
|
--- a/target/ppc/cpu.h
|
|
+++ b/target/ppc/cpu.h
|
|
@@ -1381,6 +1381,7 @@ static inline int cpu_mmu_index (CPUPPCState *env, bool ifetch)
|
|
|
|
/* Compatibility modes */
|
|
#if defined(TARGET_PPC64)
|
|
+long ppc_compat_cmp(uint32_t pvr1, uint32_t pvr2);
|
|
bool ppc_check_compat(PowerPCCPU *cpu, uint32_t compat_pvr,
|
|
uint32_t min_compat_pvr, uint32_t max_compat_pvr);
|
|
bool ppc_type_check_compat(const char *cputype, uint32_t compat_pvr,
|
|
--
|
|
2.20.1
|
|
|