Blame SOURCES/kvm-ppc-spapr-caps-Convert-cap-ibs-to-custom-spapr-cap.patch

37e7a1
From 150289beb689037a96b526a4a266da844ee572b8 Mon Sep 17 00:00:00 2001
37e7a1
From: Suraj Jitindar Singh <sursingh@redhat.com>
37e7a1
Date: Tue, 13 Mar 2018 05:21:35 +0100
37e7a1
Subject: [PATCH 13/17] ppc/spapr-caps: Convert cap-ibs to custom spapr-cap
37e7a1
37e7a1
RH-Author: Suraj Jitindar Singh <sursingh@redhat.com>
37e7a1
Message-id: <1520918499-27663-8-git-send-email-sursingh@redhat.com>
37e7a1
Patchwork-id: 79254
37e7a1
O-Subject: [RHEL7.5 qemu-kvm-rhev PATCH 07/11] ppc/spapr-caps: Convert cap-ibs to custom spapr-cap
37e7a1
Bugzilla: 1554957
37e7a1
RH-Acked-by: David Gibson <dgibson@redhat.com>
37e7a1
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
37e7a1
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
37e7a1
37e7a1
From: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
37e7a1
37e7a1
Convert cap-ibs (indirect branch speculation) to a custom spapr-cap
37e7a1
type.
37e7a1
37e7a1
All tristate caps have now been converted to custom spapr-caps, so
37e7a1
remove the remaining support for them.
37e7a1
37e7a1
Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
37e7a1
[dwg: Don't explicitly list "?"/help option, trust convention]
37e7a1
[dwg: Fold tristate removal into here, to not break bisect]
37e7a1
[dwg: Fix minor style problems]
37e7a1
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
37e7a1
37e7a1
(cherry picked from commit c76c0d3090136773219baad486c836c67ba9ea6d)
37e7a1
37e7a1
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1548919
37e7a1
37e7a1
Signed-off-by: Suraj Jitindar Singh <sursingh@redhat.com>
37e7a1
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
37e7a1
---
37e7a1
 hw/ppc/spapr_caps.c    | 90 ++++++++++++++------------------------------------
37e7a1
 hw/ppc/spapr_hcall.c   |  5 ++-
37e7a1
 include/hw/ppc/spapr.h |  5 ++-
37e7a1
 target/ppc/kvm.c       |  6 ++--
37e7a1
 4 files changed, 36 insertions(+), 70 deletions(-)
37e7a1
37e7a1
diff --git a/hw/ppc/spapr_caps.c b/hw/ppc/spapr_caps.c
37e7a1
index 8748692..da1f519 100644
37e7a1
--- a/hw/ppc/spapr_caps.c
37e7a1
+++ b/hw/ppc/spapr_caps.c
37e7a1
@@ -89,65 +89,6 @@ static void spapr_cap_set_bool(Object *obj, Visitor *v, const char *name,
37e7a1
     spapr->eff.caps[cap->index] = value ? SPAPR_CAP_ON : SPAPR_CAP_OFF;
37e7a1
 }
37e7a1
 
37e7a1
-static void spapr_cap_get_tristate(Object *obj, Visitor *v, const char *name,
37e7a1
-                                   void *opaque, Error **errp)
37e7a1
-{
37e7a1
-    sPAPRCapabilityInfo *cap = opaque;
37e7a1
-    sPAPRMachineState *spapr = SPAPR_MACHINE(obj);
37e7a1
-    char *val = NULL;
37e7a1
-    uint8_t value = spapr_get_cap(spapr, cap->index);
37e7a1
-
37e7a1
-    switch (value) {
37e7a1
-    case SPAPR_CAP_BROKEN:
37e7a1
-        val = g_strdup("broken");
37e7a1
-        break;
37e7a1
-    case SPAPR_CAP_WORKAROUND:
37e7a1
-        val = g_strdup("workaround");
37e7a1
-        break;
37e7a1
-    case SPAPR_CAP_FIXED:
37e7a1
-        val = g_strdup("fixed");
37e7a1
-        break;
37e7a1
-    default:
37e7a1
-        error_setg(errp, "Invalid value (%d) for cap-%s", value, cap->name);
37e7a1
-        return;
37e7a1
-    }
37e7a1
-
37e7a1
-    visit_type_str(v, name, &val, errp);
37e7a1
-    g_free(val);
37e7a1
-}
37e7a1
-
37e7a1
-static void spapr_cap_set_tristate(Object *obj, Visitor *v, const char *name,
37e7a1
-                                   void *opaque, Error **errp)
37e7a1
-{
37e7a1
-    sPAPRCapabilityInfo *cap = opaque;
37e7a1
-    sPAPRMachineState *spapr = SPAPR_MACHINE(obj);
37e7a1
-    char *val;
37e7a1
-    Error *local_err = NULL;
37e7a1
-    uint8_t value;
37e7a1
-
37e7a1
-    visit_type_str(v, name, &val, &local_err);
37e7a1
-    if (local_err) {
37e7a1
-        error_propagate(errp, local_err);
37e7a1
-        return;
37e7a1
-    }
37e7a1
-
37e7a1
-    if (!strcasecmp(val, "broken")) {
37e7a1
-        value = SPAPR_CAP_BROKEN;
37e7a1
-    } else if (!strcasecmp(val, "workaround")) {
37e7a1
-        value = SPAPR_CAP_WORKAROUND;
37e7a1
-    } else if (!strcasecmp(val, "fixed")) {
37e7a1
-        value = SPAPR_CAP_FIXED;
37e7a1
-    } else {
37e7a1
-        error_setg(errp, "Invalid capability mode \"%s\" for cap-%s", val,
37e7a1
-                   cap->name);
37e7a1
-        goto out;
37e7a1
-    }
37e7a1
-
37e7a1
-    spapr->cmd_line_caps[cap->index] = true;
37e7a1
-    spapr->eff.caps[cap->index] = value;
37e7a1
-out:
37e7a1
-    g_free(val);
37e7a1
-}
37e7a1
 
37e7a1
 static void  spapr_cap_get_string(Object *obj, Visitor *v, const char *name,
37e7a1
                                   void *opaque, Error **errp)
37e7a1
@@ -294,16 +235,31 @@ static void cap_safe_bounds_check_apply(sPAPRMachineState *spapr, uint8_t val,
37e7a1
     }
37e7a1
 }
37e7a1
 
37e7a1
+sPAPRCapPossible cap_ibs_possible = {
37e7a1
+    .num = 4,
37e7a1
+    /* Note workaround only maintained for compatibility */
37e7a1
+    .vals = {"broken", "workaround", "fixed-ibs", "fixed-ccd"},
37e7a1
+    .help = "broken - no protection, fixed-ibs - indirect branch serialisation,"
37e7a1
+            " fixed-ccd - cache count disabled",
37e7a1
+};
37e7a1
+
37e7a1
 static void cap_safe_indirect_branch_apply(sPAPRMachineState *spapr,
37e7a1
                                            uint8_t val, Error **errp)
37e7a1
 {
37e7a1
+    uint8_t kvm_val = kvmppc_get_cap_safe_indirect_branch();
37e7a1
+
37e7a1
     if (val == SPAPR_CAP_WORKAROUND) { /* Can only be Broken or Fixed */
37e7a1
-        error_setg(errp, "Requested safe indirect branch capability level \"workaround\" not valid, try cap-ibs=fixed");
37e7a1
+        error_setg(errp,
37e7a1
+"Requested safe indirect branch capability level \"workaround\" not valid, try cap-ibs=%s",
37e7a1
+                   cap_ibs_possible.vals[kvm_val]);
37e7a1
     } else if (tcg_enabled() && val) {
37e7a1
         /* TODO - for now only allow broken for TCG */
37e7a1
-        error_setg(errp, "Requested safe indirect branch capability level not supported by tcg, try a different value for cap-ibs");
37e7a1
-    } else if (kvm_enabled() && (val > kvmppc_get_cap_safe_indirect_branch())) {
37e7a1
-        error_setg(errp, "Requested safe indirect branch capability level not supported by kvm, try a different value for cap-ibs");
37e7a1
+        error_setg(errp,
37e7a1
+"Requested safe indirect branch capability level not supported by tcg, try a different value for cap-ibs");
37e7a1
+    } else if (kvm_enabled() && val && (val != kvm_val)) {
37e7a1
+        error_setg(errp,
37e7a1
+"Requested safe indirect branch capability level not supported by kvm, try cap-ibs=%s",
37e7a1
+                   cap_ibs_possible.vals[kvm_val]);
37e7a1
     }
37e7a1
 }
37e7a1
 
37e7a1
@@ -359,11 +315,13 @@ sPAPRCapabilityInfo capability_table[SPAPR_CAP_NUM] = {
37e7a1
     },
37e7a1
     [SPAPR_CAP_IBS] = {
37e7a1
         .name = "ibs",
37e7a1
-        .description = "Indirect Branch Serialisation (broken, fixed)",
37e7a1
+        .description =
37e7a1
+            "Indirect Branch Speculation (broken, fixed-ibs, fixed-ccd)",
37e7a1
         .index = SPAPR_CAP_IBS,
37e7a1
-        .get = spapr_cap_get_tristate,
37e7a1
-        .set = spapr_cap_set_tristate,
37e7a1
+        .get = spapr_cap_get_string,
37e7a1
+        .set = spapr_cap_set_string,
37e7a1
         .type = "string",
37e7a1
+        .possible = &cap_ibs_possible,
37e7a1
         .apply = cap_safe_indirect_branch_apply,
37e7a1
     },
37e7a1
 };
37e7a1
diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
37e7a1
index d3f811a..1a5dd7c 100644
37e7a1
--- a/hw/ppc/spapr_hcall.c
37e7a1
+++ b/hw/ppc/spapr_hcall.c
37e7a1
@@ -1670,7 +1670,10 @@ static target_ulong h_get_cpu_characteristics(PowerPCCPU *cpu,
37e7a1
     }
37e7a1
 
37e7a1
     switch (safe_indirect_branch) {
37e7a1
-    case SPAPR_CAP_FIXED:
37e7a1
+    case SPAPR_CAP_FIXED_CCD:
37e7a1
+        characteristics |= H_CPU_CHAR_CACHE_COUNT_DIS;
37e7a1
+        break;
37e7a1
+    case SPAPR_CAP_FIXED_IBS:
37e7a1
         characteristics |= H_CPU_CHAR_BCCTRL_SERIALISED;
37e7a1
         break;
37e7a1
     default: /* broken */
37e7a1
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
37e7a1
index 375b2ba..fb35008 100644
37e7a1
--- a/include/hw/ppc/spapr.h
37e7a1
+++ b/include/hw/ppc/spapr.h
37e7a1
@@ -75,10 +75,12 @@ typedef enum {
37e7a1
 /* Bool Caps */
37e7a1
 #define SPAPR_CAP_OFF                   0x00
37e7a1
 #define SPAPR_CAP_ON                    0x01
37e7a1
-/* Broken | Workaround | Fixed Caps */
37e7a1
+/* Custom Caps */
37e7a1
 #define SPAPR_CAP_BROKEN                0x00
37e7a1
 #define SPAPR_CAP_WORKAROUND            0x01
37e7a1
 #define SPAPR_CAP_FIXED                 0x02
37e7a1
+#define SPAPR_CAP_FIXED_IBS             0x02
37e7a1
+#define SPAPR_CAP_FIXED_CCD             0x03
37e7a1
 
37e7a1
 typedef struct sPAPRCapabilities sPAPRCapabilities;
37e7a1
 struct sPAPRCapabilities {
37e7a1
@@ -315,6 +317,7 @@ struct sPAPRMachineState {
37e7a1
 #define H_CPU_CHAR_L1D_THREAD_PRIV              PPC_BIT(4)
37e7a1
 #define H_CPU_CHAR_HON_BRANCH_HINTS             PPC_BIT(5)
37e7a1
 #define H_CPU_CHAR_THR_RECONF_TRIG              PPC_BIT(6)
37e7a1
+#define H_CPU_CHAR_CACHE_COUNT_DIS              PPC_BIT(7)
37e7a1
 #define H_CPU_BEHAV_FAVOUR_SECURITY             PPC_BIT(0)
37e7a1
 #define H_CPU_BEHAV_L1D_FLUSH_PR                PPC_BIT(1)
37e7a1
 #define H_CPU_BEHAV_BNDS_CHK_SPEC_BAR           PPC_BIT(2)
37e7a1
diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c
37e7a1
index 4383953..4cd6c92 100644
37e7a1
--- a/target/ppc/kvm.c
37e7a1
+++ b/target/ppc/kvm.c
37e7a1
@@ -2511,8 +2511,10 @@ static void kvmppc_get_cpu_characteristics(KVMState *s)
37e7a1
         cap_ppc_safe_bounds_check = 1;
37e7a1
     }
37e7a1
     /* Parse and set cap_ppc_safe_indirect_branch */
37e7a1
-    if (c.character & c.character_mask & H_CPU_CHAR_BCCTRL_SERIALISED) {
37e7a1
-        cap_ppc_safe_indirect_branch = 2;
37e7a1
+    if (c.character & c.character_mask & H_CPU_CHAR_CACHE_COUNT_DIS) {
37e7a1
+        cap_ppc_safe_indirect_branch = SPAPR_CAP_FIXED_CCD;
37e7a1
+    } else if (c.character & c.character_mask & H_CPU_CHAR_BCCTRL_SERIALISED) {
37e7a1
+        cap_ppc_safe_indirect_branch = SPAPR_CAP_FIXED_IBS;
37e7a1
     }
37e7a1
 }
37e7a1
 
37e7a1
-- 
37e7a1
1.8.3.1
37e7a1