77c23f
From f268cc7071ecb4322c03f3183acbcf90421da3c7 Mon Sep 17 00:00:00 2001
77c23f
From: Thomas Huth <thuth@redhat.com>
77c23f
Date: Fri, 29 May 2020 05:53:48 -0400
77c23f
Subject: [PATCH 06/42] s390x: Move clear reset
77c23f
MIME-Version: 1.0
77c23f
Content-Type: text/plain; charset=UTF-8
77c23f
Content-Transfer-Encoding: 8bit
77c23f
77c23f
RH-Author: Thomas Huth <thuth@redhat.com>
77c23f
Message-id: <20200529055420.16855-7-thuth@redhat.com>
77c23f
Patchwork-id: 97019
77c23f
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH v2 06/38] s390x: Move clear reset
77c23f
Bugzilla: 1828317
77c23f
RH-Acked-by: Claudio Imbrenda <cimbrend@redhat.com>
77c23f
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
77c23f
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
77c23f
RH-Acked-by: David Hildenbrand <david@redhat.com>
77c23f
77c23f
From: Janosch Frank <frankja@linux.ibm.com>
77c23f
77c23f
Let's also move the clear reset function into the reset handler.
77c23f
77c23f
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
77c23f
Message-Id: <20191127175046.4911-5-frankja@linux.ibm.com>
77c23f
Reviewed-by: David Hildenbrand <david@redhat.com>
77c23f
Reviewed-by: Thomas Huth <thuth@redhat.com>
77c23f
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
77c23f
(cherry picked from commit eb8adcc3e9e3b8405c104ede72cf9f3bb2a5e226)
77c23f
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
77c23f
---
77c23f
 target/s390x/cpu-qom.h |  1 +
77c23f
 target/s390x/cpu.c     | 58 +++++++++++++-----------------------------
77c23f
 2 files changed, 18 insertions(+), 41 deletions(-)
77c23f
77c23f
diff --git a/target/s390x/cpu-qom.h b/target/s390x/cpu-qom.h
77c23f
index 6f0a12042e..dbe5346ec9 100644
77c23f
--- a/target/s390x/cpu-qom.h
77c23f
+++ b/target/s390x/cpu-qom.h
77c23f
@@ -37,6 +37,7 @@ typedef struct S390CPUDef S390CPUDef;
77c23f
 typedef enum cpu_reset_type {
77c23f
     S390_CPU_RESET_NORMAL,
77c23f
     S390_CPU_RESET_INITIAL,
77c23f
+    S390_CPU_RESET_CLEAR,
77c23f
 } cpu_reset_type;
77c23f
 
77c23f
 /**
77c23f
diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c
77c23f
index ca62fe7685..bd39cb54b7 100644
77c23f
--- a/target/s390x/cpu.c
77c23f
+++ b/target/s390x/cpu.c
77c23f
@@ -94,6 +94,9 @@ static void s390_cpu_reset(CPUState *s, cpu_reset_type type)
77c23f
     s390_cpu_set_state(S390_CPU_STATE_STOPPED, cpu);
77c23f
 
77c23f
     switch (type) {
77c23f
+    case S390_CPU_RESET_CLEAR:
77c23f
+        memset(env, 0, offsetof(CPUS390XState, start_initial_reset_fields));
77c23f
+        /* fall through */
77c23f
     case S390_CPU_RESET_INITIAL:
77c23f
         /* initial reset does not clear everything! */
77c23f
         memset(&env->start_initial_reset_fields, 0,
77c23f
@@ -107,6 +110,14 @@ static void s390_cpu_reset(CPUState *s, cpu_reset_type type)
77c23f
         env->cregs[0] = CR0_RESET;
77c23f
         env->cregs[14] = CR14_RESET;
77c23f
 
77c23f
+#if defined(CONFIG_USER_ONLY)
77c23f
+        /* user mode should always be allowed to use the full FPU */
77c23f
+        env->cregs[0] |= CR0_AFP;
77c23f
+        if (s390_has_feat(S390_FEAT_VECTOR)) {
77c23f
+            env->cregs[0] |= CR0_VECTOR;
77c23f
+        }
77c23f
+#endif
77c23f
+
77c23f
         /* tininess for underflow is detected before rounding */
77c23f
         set_float_detect_tininess(float_tininess_before_rounding,
77c23f
                                   &env->fpu_status);
77c23f
@@ -125,46 +136,6 @@ static void s390_cpu_reset(CPUState *s, cpu_reset_type type)
77c23f
     }
77c23f
 }
77c23f
 
77c23f
-/* CPUClass:reset() */
77c23f
-static void s390_cpu_full_reset(CPUState *s)
77c23f
-{
77c23f
-    S390CPU *cpu = S390_CPU(s);
77c23f
-    S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
77c23f
-    CPUS390XState *env = &cpu->env;
77c23f
-
77c23f
-    scc->parent_reset(s);
77c23f
-    cpu->env.sigp_order = 0;
77c23f
-    s390_cpu_set_state(S390_CPU_STATE_STOPPED, cpu);
77c23f
-
77c23f
-    memset(env, 0, offsetof(CPUS390XState, end_reset_fields));
77c23f
-
77c23f
-    /* architectured initial values for CR 0 and 14 */
77c23f
-    env->cregs[0] = CR0_RESET;
77c23f
-    env->cregs[14] = CR14_RESET;
77c23f
-
77c23f
-#if defined(CONFIG_USER_ONLY)
77c23f
-    /* user mode should always be allowed to use the full FPU */
77c23f
-    env->cregs[0] |= CR0_AFP;
77c23f
-    if (s390_has_feat(S390_FEAT_VECTOR)) {
77c23f
-        env->cregs[0] |= CR0_VECTOR;
77c23f
-    }
77c23f
-#endif
77c23f
-
77c23f
-    /* architectured initial value for Breaking-Event-Address register */
77c23f
-    env->gbea = 1;
77c23f
-
77c23f
-    env->pfault_token = -1UL;
77c23f
-
77c23f
-    /* tininess for underflow is detected before rounding */
77c23f
-    set_float_detect_tininess(float_tininess_before_rounding,
77c23f
-                              &env->fpu_status);
77c23f
-
77c23f
-    /* Reset state inside the kernel that we cannot access yet from QEMU. */
77c23f
-    if (kvm_enabled()) {
77c23f
-        kvm_s390_reset_vcpu(cpu);
77c23f
-    }
77c23f
-}
77c23f
-
77c23f
 #if !defined(CONFIG_USER_ONLY)
77c23f
 static void s390_cpu_machine_reset_cb(void *opaque)
77c23f
 {
77c23f
@@ -456,6 +427,11 @@ static Property s390x_cpu_properties[] = {
77c23f
     DEFINE_PROP_END_OF_LIST()
77c23f
 };
77c23f
 
77c23f
+static void s390_cpu_reset_full(CPUState *s)
77c23f
+{
77c23f
+    return s390_cpu_reset(s, S390_CPU_RESET_CLEAR);
77c23f
+}
77c23f
+
77c23f
 static void s390_cpu_class_init(ObjectClass *oc, void *data)
77c23f
 {
77c23f
     S390CPUClass *scc = S390_CPU_CLASS(oc);
77c23f
@@ -472,7 +448,7 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
77c23f
     scc->load_normal = s390_cpu_load_normal;
77c23f
 #endif
77c23f
     scc->reset = s390_cpu_reset;
77c23f
-    cc->reset = s390_cpu_full_reset;
77c23f
+    cc->reset = s390_cpu_reset_full;
77c23f
     cc->class_by_name = s390_cpu_class_by_name,
77c23f
     cc->has_work = s390_cpu_has_work;
77c23f
 #ifdef CONFIG_TCG
77c23f
-- 
77c23f
2.27.0
77c23f