qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <dahi@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: ehabkost@redhat.com, jdenemar@redhat.com, imammedo@redhat.com,
	cornelia.huck@de.ibm.com, borntraeger@de.ibm.com,
	fiuczy@linux.vnet.ibm.com, mimu@linux.vnet.ibm.com
Subject: [Qemu-devel] [Patch v4 30/30] s390x/cpumodel: implement QMP interface "query-cpu-model-baseline"
Date: Mon,  5 Sep 2016 10:52:44 +0200	[thread overview]
Message-ID: <20160905085244.99980-31-dahi@linux.vnet.ibm.com> (raw)
In-Reply-To: <20160905085244.99980-1-dahi@linux.vnet.ibm.com>

Let's implement that interface by reusing our conversion code and
lookup code for CPU definitions.

In order to find a compatible CPU model, we first detect the maximum
possible CPU generation and then try to find a maximum model, satisfying
all base features (not exceeding the maximum generation).

Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
---
 qapi-schema.json          |  3 ++-
 target-s390x/cpu_models.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+), 1 deletion(-)

diff --git a/qapi-schema.json b/qapi-schema.json
index 955a2b9..c4f3674 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3283,7 +3283,8 @@
 #   global properties may affect expansion of CPU models. Using
 #   query-cpu-model-expansion while using these is not advised.
 #
-# Some architectures may not support baselining CPU models.
+# Some architectures may not support baselining CPU models. s390x supports
+# baselining CPU models.
 #
 # Returns: a CpuModelBaselineInfo. Returns an error if baselining CPU models is
 #          not supported, if a model cannot be used, if a model contains
diff --git a/target-s390x/cpu_models.c b/target-s390x/cpu_models.c
index 244626c..8607e04 100644
--- a/target-s390x/cpu_models.c
+++ b/target-s390x/cpu_models.c
@@ -534,6 +534,61 @@ CpuModelCompareInfo *arch_query_cpu_model_comparison(CpuModelInfo *infoa,
     }
     return compare_info;
 }
+
+CpuModelBaselineInfo *arch_query_cpu_model_baseline(CpuModelInfo *infoa,
+                                                    CpuModelInfo *infob,
+                                                    Error **errp)
+{
+    CpuModelBaselineInfo *baseline_info;
+    S390CPUModel modela, modelb, model;
+    uint16_t cpu_type;
+    uint8_t max_gen_ga;
+    uint8_t max_gen;
+
+    /* convert both models to our internal representation */
+    cpu_model_from_info(&modela, infoa, errp);
+    if (*errp) {
+        return NULL;
+    }
+
+    cpu_model_from_info(&modelb, infob, errp);
+    if (*errp) {
+        return NULL;
+    }
+
+    /* features both models support */
+    bitmap_and(model.features, modela.features, modelb.features, S390_FEAT_MAX);
+
+    /* detect the maximum model not regarding features */
+    if (modela.def->gen == modelb.def->gen) {
+        if (modela.def->type == modelb.def->type) {
+            cpu_type = modela.def->type;
+        } else {
+            cpu_type = 0;
+        }
+        max_gen = modela.def->gen;
+        max_gen_ga = MIN(modela.def->ec_ga, modelb.def->ec_ga);
+    } else if (modela.def->gen > modelb.def->gen) {
+        cpu_type = modelb.def->type;
+        max_gen = modelb.def->gen;
+        max_gen_ga = modelb.def->ec_ga;
+    } else {
+        cpu_type = modela.def->type;
+        max_gen = modela.def->gen;
+        max_gen_ga = modela.def->ec_ga;
+    }
+
+    model.def = s390_find_cpu_def(cpu_type, max_gen, max_gen_ga,
+                                  model.features);
+    /* strip off features not part of the max model */
+    bitmap_and(model.features, model.features, model.def->full_feat,
+               S390_FEAT_MAX);
+
+    baseline_info = g_malloc0(sizeof(*baseline_info));
+    baseline_info->model = g_malloc0(sizeof(*baseline_info->model));
+    cpu_info_from_model(baseline_info->model, &model, true);
+    return baseline_info;
+}
 #endif
 
 static void check_consistency(const S390CPUModel *model)
-- 
2.8.4

  parent reply	other threads:[~2016-09-05  8:53 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-05  8:52 [Qemu-devel] [Patch v4 00/30] s390x CPU models: exposing features David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 01/30] qmp: details about CPU definitions in query-cpu-definitions David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 02/30] s390x/cpumodel: "host" and "qemu" as CPU subclasses David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 03/30] s390x/cpumodel: expose CPU class properties David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 04/30] s390x/cpumodel: introduce CPU features David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 05/30] s390x/cpumodel: generate CPU feature lists for CPU models David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 06/30] s390x/cpumodel: generate CPU feature group lists David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 07/30] s390x/cpumodel: introduce CPU feature group definitions David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 08/30] s390x/cpumodel: register defined CPU models as subclasses David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 09/30] s390x/cpumodel: store the CPU model in the CPU instance David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 10/30] s390x/cpumodel: expose features and feature groups as properties David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 11/30] s390x/cpumodel: let the CPU model handle feature checks David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 12/30] s390x/cpumodel: check and apply the CPU model David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 13/30] s390x/sclp: factor out preparation of cpu entries David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 14/30] s390x/sclp: introduce sclp feature blocks David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 15/30] s390x/sclp: indicate sclp features David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 16/30] s390x/sclp: propagate the ibc val(lowest and unblocked ibc) David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 17/30] s390x/sclp: propagate the mha via sclp David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 18/30] s390x/sclp: propagate hmfai David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 19/30] linux-headers: update against kvm/next David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 20/30] s390x/kvm: allow runtime-instrumentation for "none" machine David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 21/30] s390x/kvm: implement CPU model support David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 22/30] s390x/kvm: disable host model for problematic compat machines David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 23/30] s390x/kvm: let the CPU model control CMM(A) David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 24/30] s390x/kvm: don't enable key wrapping if msa3 is disabled David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 25/30] qmp: add QMP interface "query-cpu-model-expansion" David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 26/30] qmp: add QMP interface "query-cpu-model-comparison" David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 27/30] qmp: add QMP interface "query-cpu-model-baseline" David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 28/30] s390x/cpumodel: implement QMP interface "query-cpu-model-expansion" David Hildenbrand
2016-09-05  8:52 ` [Qemu-devel] [Patch v4 29/30] s390x/cpumodel: implement QMP interface "query-cpu-model-comparison" David Hildenbrand
2016-09-05  8:52 ` David Hildenbrand [this message]
2016-09-05  9:13 ` [Qemu-devel] [Patch v4 00/30] s390x CPU models: exposing features Cornelia Huck
2016-09-05 10:11 ` no-reply
2016-09-05 14:22 ` Cornelia Huck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160905085244.99980-31-dahi@linux.vnet.ibm.com \
    --to=dahi@linux.vnet.ibm.com \
    --cc=borntraeger@de.ibm.com \
    --cc=cornelia.huck@de.ibm.com \
    --cc=ehabkost@redhat.com \
    --cc=fiuczy@linux.vnet.ibm.com \
    --cc=imammedo@redhat.com \
    --cc=jdenemar@redhat.com \
    --cc=mimu@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).