|
|
b697b4 |
From 2d595bc1744fc764ef506fd6ed6555f267d01ea4 Mon Sep 17 00:00:00 2001
|
|
|
a83cc2 |
From: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
Date: Fri, 19 Oct 2018 13:27:13 +0200
|
|
|
a83cc2 |
Subject: Add ppc64 machine types
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Adding changes to add RHEL machine types for ppc64 architecture.
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
77609c |
|
|
|
b697b4 |
Rebase notes (6.2.0 rc1):
|
|
|
b697b4 |
- Fixed rebase conflict relicts
|
|
|
b697b4 |
- Update machine type compat for 6.2 (from MR 66)
|
|
|
77609c |
|
|
|
77609c |
Merged patches (6.1.0):
|
|
|
b697b4 |
- c438c25ac3 redhat: Define pseries-rhel8.5.0 machine type
|
|
|
77609c |
- a3995e2eff Remove RHEL 7.0.0 machine type (only ppc64 changes)
|
|
|
77609c |
- ad3190a79b Remove RHEL 7.1.0 machine type (only ppc64 changes)
|
|
|
77609c |
- 84bbe15d4e Remove RHEL 7.2.0 machine type (only ppc64 changes)
|
|
|
77609c |
- 0215eb3356 Remove RHEL 7.3.0 machine types (only ppc64 changes)
|
|
|
77609c |
- af69d1ca6e Remove RHEL 7.4.0 machine types (only ppc64 changes)
|
|
|
77609c |
- 8f7a74ab78 Remove RHEL 7.5.0 machine types (only ppc64 changes)
|
|
|
a83cc2 |
---
|
|
|
b697b4 |
hw/ppc/spapr.c | 243 ++++++++++++++++++++++++++++++++++++++++
|
|
|
77609c |
hw/ppc/spapr_cpu_core.c | 13 +++
|
|
|
a83cc2 |
include/hw/ppc/spapr.h | 4 +
|
|
|
77609c |
target/ppc/compat.c | 13 ++-
|
|
|
a83cc2 |
target/ppc/cpu.h | 1 +
|
|
|
b697b4 |
target/ppc/kvm.c | 27 +++++
|
|
|
77609c |
target/ppc/kvm_ppc.h | 13 +++
|
|
|
b697b4 |
7 files changed, 313 insertions(+), 1 deletion(-)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
|
|
|
b697b4 |
index 3b5fd749be..f4bb5f15f0 100644
|
|
|
a83cc2 |
--- a/hw/ppc/spapr.c
|
|
|
a83cc2 |
+++ b/hw/ppc/spapr.c
|
|
|
b697b4 |
@@ -1593,6 +1593,9 @@ static void spapr_machine_reset(MachineState *machine)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
pef_kvm_reset(machine->cgs, &error_fatal);
|
|
|
a83cc2 |
spapr_caps_apply(spapr);
|
|
|
a83cc2 |
+ if (spapr->svm_allowed) {
|
|
|
a83cc2 |
+ kvmppc_svm_allow(&error_fatal);
|
|
|
a83cc2 |
+ }
|
|
|
a83cc2 |
|
|
|
a83cc2 |
first_ppc_cpu = POWERPC_CPU(first_cpu);
|
|
|
a83cc2 |
if (kvm_enabled() && kvmppc_has_cap_mmu_radix() &&
|
|
|
b697b4 |
@@ -3288,6 +3291,20 @@ static void spapr_set_host_serial(Object *obj, const char *value, Error **errp)
|
|
|
a83cc2 |
spapr->host_serial = g_strdup(value);
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+static bool spapr_get_svm_allowed(Object *obj, Error **errp)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineState *spapr = SPAPR_MACHINE(obj);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ return spapr->svm_allowed;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_set_svm_allowed(Object *obj, bool value, Error **errp)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineState *spapr = SPAPR_MACHINE(obj);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr->svm_allowed = value;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
static void spapr_instance_init(Object *obj)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
SpaprMachineState *spapr = SPAPR_MACHINE(obj);
|
|
|
b697b4 |
@@ -3366,6 +3383,12 @@ static void spapr_instance_init(Object *obj)
|
|
|
a83cc2 |
spapr_get_host_serial, spapr_set_host_serial);
|
|
|
a83cc2 |
object_property_set_description(obj, "host-serial",
|
|
|
a83cc2 |
"Host serial number to advertise in guest device tree");
|
|
|
a83cc2 |
+ object_property_add_bool(obj, "x-svm-allowed",
|
|
|
a83cc2 |
+ spapr_get_svm_allowed,
|
|
|
a83cc2 |
+ spapr_set_svm_allowed);
|
|
|
a83cc2 |
+ object_property_set_description(obj, "x-svm-allowed",
|
|
|
a83cc2 |
+ "Allow the guest to become a Secure Guest"
|
|
|
a83cc2 |
+ " (experimental only)");
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
static void spapr_machine_finalizefn(Object *obj)
|
|
|
b697b4 |
@@ -4614,6 +4637,7 @@ static void spapr_machine_class_init(ObjectClass *oc, void *data)
|
|
|
77609c |
vmc->client_architecture_support = spapr_vof_client_architecture_support;
|
|
|
77609c |
vmc->quiesce = spapr_vof_quiesce;
|
|
|
77609c |
vmc->setprop = spapr_vof_setprop;
|
|
|
a83cc2 |
+ smc->has_power9_support = true;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
static const TypeInfo spapr_machine_info = {
|
|
|
b697b4 |
@@ -4665,6 +4689,7 @@ static void spapr_machine_latest_class_options(MachineClass *mc)
|
|
|
a83cc2 |
} \
|
|
|
a83cc2 |
type_init(spapr_machine_register_##suffix)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+#if 0 /* Disabled for Red Hat Enterprise Linux */
|
|
|
a83cc2 |
/*
|
|
|
b697b4 |
* pseries-6.2
|
|
|
a83cc2 |
*/
|
|
|
b697b4 |
@@ -4781,6 +4806,7 @@ static void spapr_machine_4_1_class_options(MachineClass *mc)
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
DEFINE_SPAPR_MACHINE(4_1, "4.1", false);
|
|
|
a83cc2 |
+#endif
|
|
|
a83cc2 |
|
|
|
a83cc2 |
/*
|
|
|
a83cc2 |
* pseries-4.0
|
|
|
b697b4 |
@@ -4800,6 +4826,8 @@ static bool phb_placement_4_0(SpaprMachineState *spapr, uint32_t index,
|
|
|
a83cc2 |
*nv2atsd = 0;
|
|
|
a83cc2 |
return true;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+#if 0 /* Disabled for Red Hat Enterprise Linux */
|
|
|
a83cc2 |
static void spapr_machine_4_0_class_options(MachineClass *mc)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
b697b4 |
@@ -5127,6 +5155,221 @@ static void spapr_machine_2_1_class_options(MachineClass *mc)
|
|
|
a83cc2 |
compat_props_add(mc->compat_props, hw_compat_2_1, hw_compat_2_1_len);
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
DEFINE_SPAPR_MACHINE(2_1, "2.1", false);
|
|
|
a83cc2 |
+#endif
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel_default_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ /*
|
|
|
a83cc2 |
+ * Defaults for the latest behaviour inherited from the base class
|
|
|
a83cc2 |
+ * can be overriden here for all pseries-rhel* machines.
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* Maximum supported VCPU count */
|
|
|
a83cc2 |
+ mc->max_cpus = 384;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
77609c |
+ * pseries-rhel8.5.0
|
|
|
77609c |
+ * like pseries-6.0
|
|
|
77609c |
+ */
|
|
|
77609c |
+
|
|
|
77609c |
+static void spapr_machine_rhel850_class_options(MachineClass *mc)
|
|
|
77609c |
+{
|
|
|
b697b4 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
b697b4 |
+
|
|
|
77609c |
+ /* The default machine type must apply the RHEL specific defaults */
|
|
|
77609c |
+ spapr_machine_rhel_default_class_options(mc);
|
|
|
b697b4 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_5,
|
|
|
b697b4 |
+ hw_compat_rhel_8_5_len);
|
|
|
b697b4 |
+ smc->pre_6_2_numa_affinity = true;
|
|
|
b697b4 |
+ mc->smp_props.prefer_sockets = true;
|
|
|
77609c |
+}
|
|
|
77609c |
+
|
|
|
77609c |
+DEFINE_SPAPR_MACHINE(rhel850, "rhel8.5.0", true);
|
|
|
77609c |
+
|
|
|
77609c |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel8.4.0
|
|
|
a83cc2 |
+ * like pseries-5.2
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel840_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
77609c |
+ spapr_machine_rhel850_class_options(mc);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_4,
|
|
|
a83cc2 |
+ hw_compat_rhel_8_4_len);
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
77609c |
+DEFINE_SPAPR_MACHINE(rhel840, "rhel8.4.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel8.3.0
|
|
|
a83cc2 |
+ * like pseries-5.1
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel830_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel840_class_options(mc);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_3,
|
|
|
a83cc2 |
+ hw_compat_rhel_8_3_len);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from pseries-5.1 */
|
|
|
a83cc2 |
+ smc->pre_5_2_numa_associativity = true;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel830, "rhel8.3.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel8.2.0
|
|
|
a83cc2 |
+ * like pseries-4.2 + pseries-5.0
|
|
|
a83cc2 |
+ * except SPAPR_CAP_CCF_ASSIST that has been backported to pseries-rhel8.1.0
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel820_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+ /* from pseries-5.0 */
|
|
|
a83cc2 |
+ static GlobalProperty compat[] = {
|
|
|
a83cc2 |
+ { TYPE_SPAPR_PCI_HOST_BRIDGE, "pre-5.1-associativity", "on" },
|
|
|
a83cc2 |
+ };
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel830_class_options(mc);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_2,
|
|
|
a83cc2 |
+ hw_compat_rhel_8_2_len);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from pseries-4.2 */
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_FWNMI] = SPAPR_CAP_OFF;
|
|
|
a83cc2 |
+ smc->rma_limit = 16 * GiB;
|
|
|
a83cc2 |
+ mc->nvdimm_supported = false;
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from pseries-5.0 */
|
|
|
a83cc2 |
+ mc->numa_mem_supported = true;
|
|
|
a83cc2 |
+ smc->pre_5_1_assoc_refpoints = true;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel820, "rhel8.2.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel8.1.0
|
|
|
a83cc2 |
+ * like pseries-4.1
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel810_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+ static GlobalProperty compat[] = {
|
|
|
a83cc2 |
+ /* Only allow 4kiB and 64kiB IOMMU pagesizes */
|
|
|
a83cc2 |
+ { TYPE_SPAPR_PCI_HOST_BRIDGE, "pgsz", "0x11000" },
|
|
|
a83cc2 |
+ };
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel820_class_options(mc);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from pseries-4.1 */
|
|
|
a83cc2 |
+ smc->linux_pci_probe = false;
|
|
|
a83cc2 |
+ smc->smp_threads_vsmt = false;
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_1,
|
|
|
a83cc2 |
+ hw_compat_rhel_8_1_len);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, compat, G_N_ELEMENTS(compat));
|
|
|
b697b4 |
+
|
|
|
a83cc2 |
+ /* from pseries-4.2 */
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_CCF_ASSIST] = SPAPR_CAP_OFF;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel810, "rhel8.1.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel8.0.0
|
|
|
a83cc2 |
+ * like pseries-3.1 and pseries-4.0
|
|
|
a83cc2 |
+ * except SPAPR_CAP_CFPC, SPAPR_CAP_SBBC and SPAPR_CAP_IBS
|
|
|
a83cc2 |
+ * that have been backported to pseries-rhel8.0.0
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel800_class_options(MachineClass *mc)
|
|
|
b697b4 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel810_class_options(mc);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_8_0,
|
|
|
a83cc2 |
+ hw_compat_rhel_8_0_len);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* pseries-4.0 */
|
|
|
a83cc2 |
+ smc->phb_placement = phb_placement_4_0;
|
|
|
a83cc2 |
+ smc->irq = &spapr_irq_xics;
|
|
|
a83cc2 |
+ smc->pre_4_1_migration = true;
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* pseries-3.1 */
|
|
|
a83cc2 |
+ mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power8_v2.0");
|
|
|
a83cc2 |
+ smc->update_dt_enabled = false;
|
|
|
a83cc2 |
+ smc->dr_phb_enabled = false;
|
|
|
a83cc2 |
+ smc->broken_host_serial_model = true;
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_LARGE_DECREMENTER] = SPAPR_CAP_OFF;
|
|
|
b697b4 |
+}
|
|
|
b697b4 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel800, "rhel8.0.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel7.6.0
|
|
|
a83cc2 |
+ * like spapr_compat_2_12 and spapr_compat_3_0
|
|
|
a83cc2 |
+ * spapr_compat_0 is empty
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+GlobalProperty spapr_compat_rhel7_6[] = {
|
|
|
a83cc2 |
+ { TYPE_POWERPC_CPU, "pre-3.0-migration", "on" },
|
|
|
a83cc2 |
+ { TYPE_SPAPR_CPU_CORE, "pre-3.0-migration", "on" },
|
|
|
a83cc2 |
+};
|
|
|
a83cc2 |
+const size_t spapr_compat_rhel7_6_len = G_N_ELEMENTS(spapr_compat_rhel7_6);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel760_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel800_class_options(mc);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, hw_compat_rhel_7_6, hw_compat_rhel_7_6_len);
|
|
|
a83cc2 |
+ compat_props_add(mc->compat_props, spapr_compat_rhel7_6, spapr_compat_rhel7_6_len);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from spapr_machine_3_0_class_options() */
|
|
|
a83cc2 |
+ smc->legacy_irq_allocation = true;
|
|
|
a83cc2 |
+ smc->nr_xirqs = 0x400;
|
|
|
a83cc2 |
+ smc->irq = &spapr_irq_xics_legacy;
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* from spapr_machine_2_12_class_options() */
|
|
|
a83cc2 |
+ /* We depend on kvm_enabled() to choose a default value for the
|
|
|
a83cc2 |
+ * hpt-max-page-size capability. Of course we can't do it here
|
|
|
a83cc2 |
+ * because this is too early and the HW accelerator isn't initialzed
|
|
|
a83cc2 |
+ * yet. Postpone this to machine init (see default_caps_with_cpu()).
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_HPT_MAXPAGESIZE] = 0;
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ /* SPAPR_CAP_WORKAROUND enabled in pseries-rhel800 by
|
|
|
a83cc2 |
+ * f21757edc554
|
|
|
a83cc2 |
+ * "Enable mitigations by default for pseries-4.0 machine type")
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_BROKEN;
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_BROKEN;
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_BROKEN;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel760, "rhel7.6.0", false);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+/*
|
|
|
a83cc2 |
+ * pseries-rhel7.6.0-sxxm
|
|
|
a83cc2 |
+ *
|
|
|
a83cc2 |
+ * pseries-rhel7.6.0 with speculative execution exploit mitigations enabled by default
|
|
|
a83cc2 |
+ */
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static void spapr_machine_rhel760sxxm_class_options(MachineClass *mc)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_CLASS(mc);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ spapr_machine_rhel760_class_options(mc);
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_CFPC] = SPAPR_CAP_WORKAROUND;
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_SBBC] = SPAPR_CAP_WORKAROUND;
|
|
|
a83cc2 |
+ smc->default_caps.caps[SPAPR_CAP_IBS] = SPAPR_CAP_FIXED_CCD;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+DEFINE_SPAPR_MACHINE(rhel760sxxm, "rhel7.6.0-sxxm", false);
|
|
|
b697b4 |
|
|
|
b697b4 |
static void spapr_machine_register_types(void)
|
|
|
b697b4 |
{
|
|
|
a83cc2 |
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c
|
|
|
b697b4 |
index 8ba34f6a1d..78eca1c04a 100644
|
|
|
a83cc2 |
--- a/hw/ppc/spapr_cpu_core.c
|
|
|
a83cc2 |
+++ b/hw/ppc/spapr_cpu_core.c
|
|
|
a83cc2 |
@@ -24,6 +24,7 @@
|
|
|
a83cc2 |
#include "sysemu/reset.h"
|
|
|
a83cc2 |
#include "sysemu/hw_accel.h"
|
|
|
a83cc2 |
#include "qemu/error-report.h"
|
|
|
a83cc2 |
+#include "cpu-models.h"
|
|
|
a83cc2 |
|
|
|
a83cc2 |
static void spapr_reset_vcpu(PowerPCCPU *cpu)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
@@ -250,6 +251,7 @@ static bool spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
CPUPPCState *env = &cpu->env;
|
|
|
a83cc2 |
CPUState *cs = CPU(cpu);
|
|
|
a83cc2 |
+ SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
|
|
a83cc2 |
|
|
|
a83cc2 |
if (!qdev_realize(DEVICE(cpu), NULL, errp)) {
|
|
|
a83cc2 |
return false;
|
|
|
a83cc2 |
@@ -261,6 +263,17 @@ static bool spapr_realize_vcpu(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|
|
a83cc2 |
cpu_ppc_set_vhyp(cpu, PPC_VIRTUAL_HYPERVISOR(spapr));
|
|
|
a83cc2 |
kvmppc_set_papr(cpu);
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+ if (!smc->has_power9_support &&
|
|
|
a83cc2 |
+ (((spapr->max_compat_pvr &&
|
|
|
a83cc2 |
+ ppc_compat_cmp(spapr->max_compat_pvr,
|
|
|
a83cc2 |
+ CPU_POWERPC_LOGICAL_3_00) >= 0)) ||
|
|
|
a83cc2 |
+ (!spapr->max_compat_pvr &&
|
|
|
a83cc2 |
+ ppc_check_compat(cpu, CPU_POWERPC_LOGICAL_3_00, 0, 0)))) {
|
|
|
a83cc2 |
+ error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
|
|
|
a83cc2 |
+ "POWER9 CPU is not supported by this machine class");
|
|
|
a83cc2 |
+ return false;
|
|
|
a83cc2 |
+ }
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
if (spapr_irq_cpu_intc_create(spapr, cpu, errp) < 0) {
|
|
|
a83cc2 |
qdev_unrealize(DEVICE(cpu));
|
|
|
a83cc2 |
return false;
|
|
|
a83cc2 |
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
|
|
|
b697b4 |
index ee7504b976..fcd5bf9302 100644
|
|
|
a83cc2 |
--- a/include/hw/ppc/spapr.h
|
|
|
a83cc2 |
+++ b/include/hw/ppc/spapr.h
|
|
|
b697b4 |
@@ -154,6 +154,7 @@ struct SpaprMachineClass {
|
|
|
a83cc2 |
bool pre_5_2_numa_associativity;
|
|
|
b697b4 |
bool pre_6_2_numa_affinity;
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+ bool has_power9_support;
|
|
|
a83cc2 |
bool (*phb_placement)(SpaprMachineState *spapr, uint32_t index,
|
|
|
a83cc2 |
uint64_t *buid, hwaddr *pio,
|
|
|
a83cc2 |
hwaddr *mmio32, hwaddr *mmio64,
|
|
|
b697b4 |
@@ -238,6 +239,9 @@ struct SpaprMachineState {
|
|
|
77609c |
/* Set by -boot */
|
|
|
77609c |
char *boot_device;
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+ /* Secure Guest support via x-svm-allowed */
|
|
|
a83cc2 |
+ bool svm_allowed;
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
/*< public >*/
|
|
|
a83cc2 |
char *kvm_type;
|
|
|
a83cc2 |
char *host_model;
|
|
|
a83cc2 |
diff --git a/target/ppc/compat.c b/target/ppc/compat.c
|
|
|
a83cc2 |
index 7949a24f5a..f207a9ba01 100644
|
|
|
a83cc2 |
--- a/target/ppc/compat.c
|
|
|
a83cc2 |
+++ b/target/ppc/compat.c
|
|
|
a83cc2 |
@@ -114,8 +114,19 @@ static const CompatInfo *compat_by_pvr(uint32_t pvr)
|
|
|
a83cc2 |
return NULL;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+long ppc_compat_cmp(uint32_t pvr1, uint32_t pvr2)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ const CompatInfo *compat1 = compat_by_pvr(pvr1);
|
|
|
a83cc2 |
+ const CompatInfo *compat2 = compat_by_pvr(pvr2);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ g_assert(compat1);
|
|
|
a83cc2 |
+ g_assert(compat2);
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ return compat1 - compat2;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
static bool pcc_compat(PowerPCCPUClass *pcc, uint32_t compat_pvr,
|
|
|
a83cc2 |
- uint32_t min_compat_pvr, uint32_t max_compat_pvr)
|
|
|
a83cc2 |
+ uint32_t min_compat_pvr, uint32_t max_compat_pvr)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
const CompatInfo *compat = compat_by_pvr(compat_pvr);
|
|
|
a83cc2 |
const CompatInfo *min = compat_by_pvr(min_compat_pvr);
|
|
|
a83cc2 |
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
|
|
|
b697b4 |
index e946da5f3a..23e8b76c85 100644
|
|
|
a83cc2 |
--- a/target/ppc/cpu.h
|
|
|
a83cc2 |
+++ b/target/ppc/cpu.h
|
|
|
b697b4 |
@@ -1401,6 +1401,7 @@ static inline int cpu_mmu_index(CPUPPCState *env, bool ifetch)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
/* Compatibility modes */
|
|
|
a83cc2 |
#if defined(TARGET_PPC64)
|
|
|
a83cc2 |
+long ppc_compat_cmp(uint32_t pvr1, uint32_t pvr2);
|
|
|
a83cc2 |
bool ppc_check_compat(PowerPCCPU *cpu, uint32_t compat_pvr,
|
|
|
a83cc2 |
uint32_t min_compat_pvr, uint32_t max_compat_pvr);
|
|
|
a83cc2 |
bool ppc_type_check_compat(const char *cputype, uint32_t compat_pvr,
|
|
|
a83cc2 |
diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c
|
|
|
b697b4 |
index dc93b99189..154888cce5 100644
|
|
|
a83cc2 |
--- a/target/ppc/kvm.c
|
|
|
a83cc2 |
+++ b/target/ppc/kvm.c
|
|
|
77609c |
@@ -90,6 +90,7 @@ static int cap_ppc_nested_kvm_hv;
|
|
|
a83cc2 |
static int cap_large_decr;
|
|
|
a83cc2 |
static int cap_fwnmi;
|
|
|
77609c |
static int cap_rpt_invalidate;
|
|
|
a83cc2 |
+static int cap_ppc_secure_guest;
|
|
|
a83cc2 |
|
|
|
a83cc2 |
static uint32_t debug_inst_opcode;
|
|
|
a83cc2 |
|
|
|
77609c |
@@ -137,6 +138,7 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
|
|
a83cc2 |
cap_resize_hpt = kvm_vm_check_extension(s, KVM_CAP_SPAPR_RESIZE_HPT);
|
|
|
a83cc2 |
kvmppc_get_cpu_characteristics(s);
|
|
|
a83cc2 |
cap_ppc_nested_kvm_hv = kvm_vm_check_extension(s, KVM_CAP_PPC_NESTED_HV);
|
|
|
a83cc2 |
+ cap_ppc_secure_guest = kvm_vm_check_extension(s, KVM_CAP_PPC_SECURE_GUEST);
|
|
|
a83cc2 |
cap_large_decr = kvmppc_get_dec_bits();
|
|
|
a83cc2 |
cap_fwnmi = kvm_vm_check_extension(s, KVM_CAP_PPC_FWNMI);
|
|
|
a83cc2 |
/*
|
|
|
b697b4 |
@@ -2563,6 +2565,16 @@ int kvmppc_has_cap_rpt_invalidate(void)
|
|
|
b697b4 |
return cap_rpt_invalidate;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+bool kvmppc_has_cap_secure_guest(void)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ return !!cap_ppc_secure_guest;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+int kvmppc_enable_cap_secure_guest(void)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ return kvm_vm_enable_cap(kvm_state, KVM_CAP_PPC_SECURE_GUEST, 0, 1);
|
|
|
b697b4 |
+}
|
|
|
b697b4 |
+
|
|
|
a83cc2 |
PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void)
|
|
|
b697b4 |
{
|
|
|
b697b4 |
uint32_t host_pvr = mfpvr();
|
|
|
b697b4 |
@@ -2959,3 +2971,18 @@ bool kvm_arch_cpu_check_are_resettable(void)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
return true;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+void kvmppc_svm_allow(Error **errp)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ if (!kvm_enabled()) {
|
|
|
a83cc2 |
+ error_setg(errp, "No PEF support in tcg, try x-svm-allowed=off");
|
|
|
a83cc2 |
+ return;
|
|
|
a83cc2 |
+ }
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+ if (!kvmppc_has_cap_secure_guest()) {
|
|
|
a83cc2 |
+ error_setg(errp, "KVM implementation does not support secure guests, "
|
|
|
a83cc2 |
+ "try x-svm-allowed=off");
|
|
|
a83cc2 |
+ } else if (kvmppc_enable_cap_secure_guest() < 0) {
|
|
|
a83cc2 |
+ error_setg(errp, "Error enabling x-svm-allowed, try x-svm-allowed=off");
|
|
|
a83cc2 |
+ }
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
diff --git a/target/ppc/kvm_ppc.h b/target/ppc/kvm_ppc.h
|
|
|
77609c |
index ee9325bf9a..20dbb95989 100644
|
|
|
a83cc2 |
--- a/target/ppc/kvm_ppc.h
|
|
|
a83cc2 |
+++ b/target/ppc/kvm_ppc.h
|
|
|
77609c |
@@ -40,6 +40,7 @@ int kvmppc_booke_watchdog_enable(PowerPCCPU *cpu);
|
|
|
a83cc2 |
target_ulong kvmppc_configure_v3_mmu(PowerPCCPU *cpu,
|
|
|
a83cc2 |
bool radix, bool gtse,
|
|
|
a83cc2 |
uint64_t proc_tbl);
|
|
|
a83cc2 |
+void kvmppc_svm_allow(Error **errp);
|
|
|
a83cc2 |
#ifndef CONFIG_USER_ONLY
|
|
|
a83cc2 |
bool kvmppc_spapr_use_multitce(void);
|
|
|
a83cc2 |
int kvmppc_spapr_enable_inkernel_multitce(void);
|
|
|
77609c |
@@ -74,6 +75,8 @@ int kvmppc_get_cap_large_decr(void);
|
|
|
a83cc2 |
int kvmppc_enable_cap_large_decr(PowerPCCPU *cpu, int enable);
|
|
|
77609c |
int kvmppc_has_cap_rpt_invalidate(void);
|
|
|
a83cc2 |
int kvmppc_enable_hwrng(void);
|
|
|
a83cc2 |
+bool kvmppc_has_cap_secure_guest(void);
|
|
|
a83cc2 |
+int kvmppc_enable_cap_secure_guest(void);
|
|
|
a83cc2 |
int kvmppc_put_books_sregs(PowerPCCPU *cpu);
|
|
|
a83cc2 |
PowerPCCPUClass *kvm_ppc_get_host_cpu_class(void);
|
|
|
a83cc2 |
void kvmppc_check_papr_resize_hpt(Error **errp);
|
|
|
77609c |
@@ -393,6 +396,16 @@ static inline int kvmppc_has_cap_rpt_invalidate(void)
|
|
|
77609c |
return false;
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+static inline bool kvmppc_has_cap_secure_guest(void)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ return false;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
+static inline int kvmppc_enable_cap_secure_guest(void)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ return -1;
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
static inline int kvmppc_enable_hwrng(void)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
return -1;
|
|
|
a83cc2 |
--
|
|
|
a83cc2 |
2.27.0
|
|
|
a83cc2 |
|