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