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 28/30] s390x/cpumodel: implement QMP interface "query-cpu-model-expansion"
Date: Mon,  5 Sep 2016 10:52:42 +0200	[thread overview]
Message-ID: <20160905085244.99980-29-dahi@linux.vnet.ibm.com> (raw)
In-Reply-To: <20160905085244.99980-1-dahi@linux.vnet.ibm.com>

In order to expand CPU models, we create temporary cpus that handle the
feature/group parsing. Only CPU feature properties are expanded.

When converting the data structure back, we always fall back to the
static base CPU model, which is by definition migration-safe.

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 | 147 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 149 insertions(+), 1 deletion(-)

diff --git a/qapi-schema.json b/qapi-schema.json
index 44cc71e..b06135c 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3143,7 +3143,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 all expansion types.
+# Some architectures may not support all expansion types. s390x supports
+# "full" and "static".
 #
 # Returns: a CpuModelExpansionInfo. Returns an error if expanding CPU models is
 #          not supported, if the model cannot be expanded, if the model contains
diff --git a/target-s390x/cpu_models.c b/target-s390x/cpu_models.c
index 32431cb..125366a 100644
--- a/target-s390x/cpu_models.c
+++ b/target-s390x/cpu_models.c
@@ -16,6 +16,9 @@
 #include "qapi/error.h"
 #include "qapi/visitor.h"
 #include "qemu/error-report.h"
+#include "qapi/qmp/qerror.h"
+#include "qapi/qmp-input-visitor.h"
+#include "qapi/qmp/qbool.h"
 #ifndef CONFIG_USER_ONLY
 #include "sysemu/arch_init.h"
 #endif
@@ -303,6 +306,150 @@ CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
 
     return list;
 }
+
+static void cpu_model_from_info(S390CPUModel *model, const CpuModelInfo *info,
+                                Error **errp)
+{
+    const QDict *qdict = NULL;
+    const QDictEntry *e;
+    Visitor *visitor;
+    ObjectClass *oc;
+    S390CPU *cpu;
+    Object *obj;
+
+    if (info->props) {
+        qdict = qobject_to_qdict(info->props);
+        if (!qdict) {
+            error_setg(errp, QERR_INVALID_PARAMETER_TYPE, "props", "dict");
+            return;
+        }
+    }
+
+    oc = cpu_class_by_name(TYPE_S390_CPU, info->name);
+    if (!oc) {
+        error_setg(errp, "The CPU definition \'%s\' is unknown.", info->name);
+        return;
+    }
+    if (S390_CPU_CLASS(oc)->kvm_required && !kvm_enabled()) {
+        error_setg(errp, "The CPU definition '%s' requires KVM", info->name);
+        return;
+    }
+    obj = object_new(object_class_get_name(oc));
+    cpu = S390_CPU(obj);
+
+    if (!cpu->model) {
+        error_setg(errp, "Details about the host CPU model are not available, "
+                         "it cannot be used.");
+        object_unref(obj);
+        return;
+    }
+
+    if (qdict) {
+        visitor = qmp_input_visitor_new(info->props, true);
+        visit_start_struct(visitor, NULL, NULL, 0, errp);
+        if (*errp) {
+            object_unref(obj);
+            return;
+        }
+        for (e = qdict_first(qdict); e; e = qdict_next(qdict, e)) {
+            object_property_set(obj, visitor, e->key, errp);
+            if (*errp) {
+                break;
+            }
+        }
+        if (!*errp) {
+            visit_check_struct(visitor, errp);
+        }
+        visit_end_struct(visitor, NULL);
+        visit_free(visitor);
+        if (*errp) {
+            object_unref(obj);
+            return;
+        }
+    }
+
+    /* copy the model and throw the cpu away */
+    memcpy(model, cpu->model, sizeof(*model));
+    object_unref(obj);
+}
+
+static void qdict_add_disabled_feat(const char *name, void *opaque)
+{
+    qdict_put((QDict *) opaque, name, qbool_from_bool(false));
+}
+
+static void qdict_add_enabled_feat(const char *name, void *opaque)
+{
+    qdict_put((QDict *) opaque, name, qbool_from_bool(true));
+}
+
+/* convert S390CPUDef into a static CpuModelInfo */
+static void cpu_info_from_model(CpuModelInfo *info, const S390CPUModel *model,
+                                bool delta_changes)
+{
+    QDict *qdict = qdict_new();
+    S390FeatBitmap bitmap;
+
+    /* always fallback to the static base model */
+    info->name = g_strdup_printf("%s-base", model->def->name);
+
+    if (delta_changes) {
+        /* features deleted from the base feature set */
+        bitmap_andnot(bitmap, model->def->base_feat, model->features,
+                      S390_FEAT_MAX);
+        if (!bitmap_empty(bitmap, S390_FEAT_MAX)) {
+            s390_feat_bitmap_to_ascii(bitmap, qdict, qdict_add_disabled_feat);
+        }
+
+        /* features added to the base feature set */
+        bitmap_andnot(bitmap, model->features, model->def->base_feat,
+                      S390_FEAT_MAX);
+        if (!bitmap_empty(bitmap, S390_FEAT_MAX)) {
+            s390_feat_bitmap_to_ascii(bitmap, qdict, qdict_add_enabled_feat);
+        }
+    } else {
+        /* expand all features */
+        s390_feat_bitmap_to_ascii(model->features, qdict,
+                                  qdict_add_enabled_feat);
+        bitmap_complement(bitmap, model->features, S390_FEAT_MAX);
+        s390_feat_bitmap_to_ascii(bitmap, qdict, qdict_add_disabled_feat);
+    }
+
+    if (!qdict_size(qdict)) {
+        QDECREF(qdict);
+    } else {
+        info->props = QOBJECT(qdict);
+        info->has_props = true;
+    }
+}
+
+CpuModelExpansionInfo *arch_query_cpu_model_expansion(CpuModelExpansionType type,
+                                                      CpuModelInfo *model,
+                                                      Error **errp)
+{
+    CpuModelExpansionInfo *expansion_info = NULL;
+    S390CPUModel s390_model;
+    bool delta_changes = false;
+
+    /* convert it to our internal representation */
+    cpu_model_from_info(&s390_model, model, errp);
+    if (*errp) {
+        return NULL;
+    }
+
+    if (type == CPU_MODEL_EXPANSION_TYPE_STATIC) {
+        delta_changes = true;
+    } else if (type != CPU_MODEL_EXPANSION_TYPE_FULL) {
+        error_setg(errp, "The requested expansion type is not supported.");
+        return NULL;
+    }
+
+    /* convert it back to a static representation */
+    expansion_info = g_malloc0(sizeof(*expansion_info));
+    expansion_info->model = g_malloc0(sizeof(*expansion_info->model));
+    cpu_info_from_model(expansion_info->model, &s390_model, delta_changes);
+    return expansion_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 ` David Hildenbrand [this message]
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 ` [Qemu-devel] [Patch v4 30/30] s390x/cpumodel: implement QMP interface "query-cpu-model-baseline" David Hildenbrand
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-29-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).