Blame SOURCES/kvm-spapr-Treat-Hardware-Transactional-Memory-HTM-as-an-.patch

4a2fec
From 423e8d79df3ef4548d74854a8feeee84cd5e159c Mon Sep 17 00:00:00 2001
4a2fec
From: David Gibson <dgibson@redhat.com>
4a2fec
Date: Fri, 19 Jan 2018 02:34:37 +0100
4a2fec
Subject: [PATCH 09/21] spapr: Treat Hardware Transactional Memory (HTM) as an
4a2fec
 optional capability
4a2fec
4a2fec
RH-Author: David Gibson <dgibson@redhat.com>
4a2fec
Message-id: <20180119023442.28577-3-dgibson@redhat.com>
4a2fec
Patchwork-id: 78670
4a2fec
O-Subject: [RHEL-7.5 qemu-kvm-rhev PATCH 2/7] spapr: Treat Hardware Transactional Memory (HTM) as an optional capability
4a2fec
Bugzilla: 1523414
4a2fec
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
4a2fec
RH-Acked-by: Thomas Huth <thuth@redhat.com>
4a2fec
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
4a2fec
4a2fec
From: David Gibson <david@gibson.dropbear.id.au>
4a2fec
4a2fec
This adds an spapr capability bit for Hardware Transactional Memory.  It is
4a2fec
enabled by default for pseries-2.11 and earlier machine types. with POWER8
4a2fec
or later CPUs (as it must be, since earlier qemu versions would implicitly
4a2fec
allow it).  However it is disabled by default for the latest pseries-2.12
4a2fec
machine type.
4a2fec
4a2fec
This means that with the latest machine type, HTM will not be available,
4a2fec
regardless of CPU, unless it is explicitly enabled on the command line.
4a2fec
That change is made on the basis that:
4a2fec
4a2fec
 * This way running with -M pseries,accel=tcg will start with whatever cpu
4a2fec
   and will provide the same guest visible model as with accel=kvm.
4a2fec
     - More specifically, this means existing make check tests don't have
4a2fec
       to be modified to use cap-htm=off in order to run with TCG
4a2fec
4a2fec
 * We hope to add a new "HTM without suspend" feature in the not too
4a2fec
   distant future which could work on both POWER8 and POWER9 cpus, and
4a2fec
   could be enabled by default.
4a2fec
4a2fec
 * Best guesses suggest that future POWER cpus may well only support the
4a2fec
   HTM-without-suspend model, not the (frankly, horribly overcomplicated)
4a2fec
   POWER8 style HTM with suspend.
4a2fec
4a2fec
 * Anecdotal evidence suggests problems with HTM being enabled when it
4a2fec
   wasn't wanted are more common than being missing when it was.
4a2fec
4a2fec
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4a2fec
Reviewed-by: Greg Kurz <groug@kaod.org>
4a2fec
(cherry picked from commit ee76a09fc72cfbfab2bb5529320ef7e460adffd8)
4a2fec
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
4a2fec
4a2fec
Conflicts:
4a2fec
	hw/ppc/spapr.c
4a2fec
4a2fec
Conflicts due to replacement of upstream machine types with downstream
4a2fec
ones.  Omitted original logic since it affects the 2.11 machine type
4a2fec
which isn't in downstream (even in comments).  Replaced with logic to
4a2fec
enable HTM capability only for pseries-rhel7.4.0 and earlier machine
4a2fec
types.
4a2fec
4a2fec
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1523414
4a2fec
4a2fec
Signed-off-by: David Gibson <dgibson@redhat.com>
4a2fec
---
4a2fec
 hw/ppc/spapr.c         | 13 ++++++++-----
4a2fec
 hw/ppc/spapr_caps.c    | 29 ++++++++++++++++++++++++++++-
4a2fec
 include/hw/ppc/spapr.h |  3 +++
4a2fec
 3 files changed, 39 insertions(+), 6 deletions(-)
4a2fec
4a2fec
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
4a2fec
index 7a4191d..2068a1f 100644
4a2fec
--- a/hw/ppc/spapr.c
4a2fec
+++ b/hw/ppc/spapr.c
4a2fec
@@ -253,7 +253,9 @@ static int spapr_fixup_cpu_numa_dt(void *fdt, int offset, PowerPCCPU *cpu)
4a2fec
 }
4a2fec
 
4a2fec
 /* Populate the "ibm,pa-features" property */
4a2fec
-static void spapr_populate_pa_features(PowerPCCPU *cpu, void *fdt, int offset,
4a2fec
+static void spapr_populate_pa_features(sPAPRMachineState *spapr,
4a2fec
+                                       PowerPCCPU *cpu,
4a2fec
+                                       void *fdt, int offset,
4a2fec
                                        bool legacy_guest)
4a2fec
 {
4a2fec
     CPUPPCState *env = &cpu->env;
4a2fec
@@ -318,7 +320,7 @@ static void spapr_populate_pa_features(PowerPCCPU *cpu, void *fdt, int offset,
4a2fec
          */
4a2fec
         pa_features[3] |= 0x20;
4a2fec
     }
4a2fec
-    if (kvmppc_has_cap_htm() && pa_size > 24) {
4a2fec
+    if (spapr_has_cap(spapr, SPAPR_CAP_HTM) && pa_size > 24) {
4a2fec
         pa_features[24] |= 0x80;    /* Transactional memory support */
4a2fec
     }
4a2fec
     if (legacy_guest && pa_size > 40) {
4a2fec
@@ -385,8 +387,8 @@ static int spapr_fixup_cpu_dt(void *fdt, sPAPRMachineState *spapr)
4a2fec
             return ret;
4a2fec
         }
4a2fec
 
4a2fec
-        spapr_populate_pa_features(cpu, fdt, offset,
4a2fec
-                                         spapr->cas_legacy_guest_workaround);
4a2fec
+        spapr_populate_pa_features(spapr, cpu, fdt, offset,
4a2fec
+                                   spapr->cas_legacy_guest_workaround);
4a2fec
     }
4a2fec
     return ret;
4a2fec
 }
4a2fec
@@ -582,7 +584,7 @@ static void spapr_populate_cpu_dt(CPUState *cs, void *fdt, int offset,
4a2fec
                           page_sizes_prop, page_sizes_prop_size)));
4a2fec
     }
4a2fec
 
4a2fec
-    spapr_populate_pa_features(cpu, fdt, offset, false);
4a2fec
+    spapr_populate_pa_features(spapr, cpu, fdt, offset, false);
4a2fec
 
4a2fec
     _FDT((fdt_setprop_cell(fdt, offset, "ibm,chip-id",
4a2fec
                            cs->cpu_index / vcpus_per_socket)));
4a2fec
@@ -4046,6 +4048,7 @@ static void spapr_machine_rhel740_class_options(MachineClass *mc)
4a2fec
     smc->has_power9_support = false;
4a2fec
     smc->pre_2_10_has_unused_icps = true;
4a2fec
     smc->resize_hpt_default = SPAPR_RESIZE_HPT_DISABLED;
4a2fec
+    smc->default_caps = spapr_caps(SPAPR_CAP_HTM);
4a2fec
 }
4a2fec
 
4a2fec
 DEFINE_SPAPR_MACHINE(rhel740, "rhel7.4.0", false);
4a2fec
diff --git a/hw/ppc/spapr_caps.c b/hw/ppc/spapr_caps.c
4a2fec
index 968ba7b..3b35b91 100644
4a2fec
--- a/hw/ppc/spapr_caps.c
4a2fec
+++ b/hw/ppc/spapr_caps.c
4a2fec
@@ -24,6 +24,10 @@
4a2fec
 #include "qemu/osdep.h"
4a2fec
 #include "qapi/error.h"
4a2fec
 #include "qapi/visitor.h"
4a2fec
+#include "sysemu/hw_accel.h"
4a2fec
+#include "target/ppc/cpu.h"
4a2fec
+#include "cpu-models.h"
4a2fec
+#include "kvm_ppc.h"
4a2fec
 
4a2fec
 #include "hw/ppc/spapr.h"
4a2fec
 
4a2fec
@@ -40,18 +44,41 @@ typedef struct sPAPRCapabilityInfo {
4a2fec
     void (*disallow)(sPAPRMachineState *spapr, Error **errp);
4a2fec
 } sPAPRCapabilityInfo;
4a2fec
 
4a2fec
+static void cap_htm_allow(sPAPRMachineState *spapr, Error **errp)
4a2fec
+{
4a2fec
+    if (tcg_enabled()) {
4a2fec
+        error_setg(errp,
4a2fec
+                   "No Transactional Memory support in TCG, try cap-htm=off");
4a2fec
+    } else if (kvm_enabled() && !kvmppc_has_cap_htm()) {
4a2fec
+        error_setg(errp,
4a2fec
+"KVM implementation does not support Transactional Memory, try cap-htm=off"
4a2fec
+            );
4a2fec
+    }
4a2fec
+}
4a2fec
+
4a2fec
 static sPAPRCapabilityInfo capability_table[] = {
4a2fec
+    {
4a2fec
+        .name = "htm",
4a2fec
+        .description = "Allow Hardware Transactional Memory (HTM)",
4a2fec
+        .flag = SPAPR_CAP_HTM,
4a2fec
+        .allow = cap_htm_allow,
4a2fec
+        /* TODO: add cap_htm_disallow */
4a2fec
+    },
4a2fec
 };
4a2fec
 
4a2fec
 static sPAPRCapabilities default_caps_with_cpu(sPAPRMachineState *spapr,
4a2fec
                                                CPUState *cs)
4a2fec
 {
4a2fec
     sPAPRMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
4a2fec
+    PowerPCCPU *cpu = POWERPC_CPU(cs);
4a2fec
     sPAPRCapabilities caps;
4a2fec
 
4a2fec
     caps = smc->default_caps;
4a2fec
 
4a2fec
-    /* TODO: clamp according to cpu model */
4a2fec
+    if (!ppc_check_compat(cpu, CPU_POWERPC_LOGICAL_2_07,
4a2fec
+                          0, spapr->max_compat_pvr)) {
4a2fec
+        caps.mask &= ~SPAPR_CAP_HTM;
4a2fec
+    }
4a2fec
 
4a2fec
     return caps;
4a2fec
 }
4a2fec
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
4a2fec
index 7267151..77dc3fb 100644
4a2fec
--- a/include/hw/ppc/spapr.h
4a2fec
+++ b/include/hw/ppc/spapr.h
4a2fec
@@ -54,6 +54,9 @@ typedef enum {
4a2fec
  * Capabilities
4a2fec
  */
4a2fec
 
4a2fec
+/* Hardware Transactional Memory */
4a2fec
+#define SPAPR_CAP_HTM               0x0000000000000001ULL
4a2fec
+
4a2fec
 typedef struct sPAPRCapabilities sPAPRCapabilities;
4a2fec
 struct sPAPRCapabilities {
4a2fec
     uint64_t mask;
4a2fec
-- 
4a2fec
1.8.3.1
4a2fec