77c23f
From 0d1c0adf25a323be0663863ebe44a6aefb5f7baf Mon Sep 17 00:00:00 2001
77c23f
From: Thomas Huth <thuth@redhat.com>
77c23f
Date: Fri, 29 May 2020 05:53:47 -0400
77c23f
Subject: [PATCH 05/42] s390x: Move initial 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-6-thuth@redhat.com>
77c23f
Patchwork-id: 97024
77c23f
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH v2 05/38] s390x: Move initial 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 move the intial reset into the reset handler and cleanup
77c23f
afterwards.
77c23f
77c23f
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
77c23f
Reviewed-by: David Hildenbrand <david@redhat.com>
77c23f
Message-Id: <20191128083723.11937-1-frankja@linux.ibm.com>
77c23f
Reviewed-by: Thomas Huth <thuth@redhat.com>
77c23f
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
77c23f
(cherry picked from commit 81b9222358e5c8f666f0d86057c75e40531d804c)
77c23f
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
77c23f
---
77c23f
 target/s390x/cpu-qom.h |  2 +-
77c23f
 target/s390x/cpu.c     | 46 +++++++++++++++++-------------------------
77c23f
 target/s390x/cpu.h     |  2 +-
77c23f
 target/s390x/sigp.c    |  2 +-
77c23f
 4 files changed, 21 insertions(+), 31 deletions(-)
77c23f
77c23f
diff --git a/target/s390x/cpu-qom.h b/target/s390x/cpu-qom.h
77c23f
index f3b71bac67..6f0a12042e 100644
77c23f
--- a/target/s390x/cpu-qom.h
77c23f
+++ b/target/s390x/cpu-qom.h
77c23f
@@ -36,6 +36,7 @@ typedef struct S390CPUDef S390CPUDef;
77c23f
 
77c23f
 typedef enum cpu_reset_type {
77c23f
     S390_CPU_RESET_NORMAL,
77c23f
+    S390_CPU_RESET_INITIAL,
77c23f
 } cpu_reset_type;
77c23f
 
77c23f
 /**
77c23f
@@ -62,7 +63,6 @@ typedef struct S390CPUClass {
77c23f
     void (*parent_reset)(CPUState *cpu);
77c23f
     void (*load_normal)(CPUState *cpu);
77c23f
     void (*reset)(CPUState *cpu, cpu_reset_type type);
77c23f
-    void (*initial_cpu_reset)(CPUState *cpu);
77c23f
 } S390CPUClass;
77c23f
 
77c23f
 typedef struct S390CPU S390CPU;
77c23f
diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c
77c23f
index 67d6fbfa44..ca62fe7685 100644
77c23f
--- a/target/s390x/cpu.c
77c23f
+++ b/target/s390x/cpu.c
77c23f
@@ -94,6 +94,23 @@ 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_INITIAL:
77c23f
+        /* initial reset does not clear everything! */
77c23f
+        memset(&env->start_initial_reset_fields, 0,
77c23f
+               offsetof(CPUS390XState, end_reset_fields) -
77c23f
+               offsetof(CPUS390XState, start_initial_reset_fields));
77c23f
+
77c23f
+        /* architectured initial value for Breaking-Event-Address register */
77c23f
+        env->gbea = 1;
77c23f
+
77c23f
+        /* architectured initial values for CR 0 and 14 */
77c23f
+        env->cregs[0] = CR0_RESET;
77c23f
+        env->cregs[14] = CR14_RESET;
77c23f
+
77c23f
+        /* tininess for underflow is detected before rounding */
77c23f
+        set_float_detect_tininess(float_tininess_before_rounding,
77c23f
+                                  &env->fpu_status);
77c23f
+       /* fall through */
77c23f
     case S390_CPU_RESET_NORMAL:
77c23f
         env->pfault_token = -1UL;
77c23f
         env->bpbc = false;
77c23f
@@ -101,35 +118,9 @@ static void s390_cpu_reset(CPUState *s, cpu_reset_type type)
77c23f
     default:
77c23f
         g_assert_not_reached();
77c23f
     }
77c23f
-}
77c23f
-
77c23f
-/* S390CPUClass::initial_reset() */
77c23f
-static void s390_cpu_initial_reset(CPUState *s)
77c23f
-{
77c23f
-    S390CPU *cpu = S390_CPU(s);
77c23f
-    CPUS390XState *env = &cpu->env;
77c23f
-
77c23f
-    s390_cpu_reset(s, S390_CPU_RESET_NORMAL);
77c23f
-    /* initial reset does not clear everything! */
77c23f
-    memset(&env->start_initial_reset_fields, 0,
77c23f
-        offsetof(CPUS390XState, end_reset_fields) -
77c23f
-        offsetof(CPUS390XState, start_initial_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
-    /* 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
+    if (kvm_enabled() && type != S390_CPU_RESET_NORMAL) {
77c23f
         kvm_s390_reset_vcpu(cpu);
77c23f
     }
77c23f
 }
77c23f
@@ -481,7 +472,6 @@ 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
-    scc->initial_cpu_reset = s390_cpu_initial_reset;
77c23f
     cc->reset = s390_cpu_full_reset;
77c23f
     cc->class_by_name = s390_cpu_class_by_name,
77c23f
     cc->has_work = s390_cpu_has_work;
77c23f
diff --git a/target/s390x/cpu.h b/target/s390x/cpu.h
77c23f
index 18123dfd5b..d2af13b345 100644
77c23f
--- a/target/s390x/cpu.h
77c23f
+++ b/target/s390x/cpu.h
77c23f
@@ -748,7 +748,7 @@ static inline void s390_do_cpu_initial_reset(CPUState *cs, run_on_cpu_data arg)
77c23f
 {
77c23f
     S390CPUClass *scc = S390_CPU_GET_CLASS(cs);
77c23f
 
77c23f
-    scc->initial_cpu_reset(cs);
77c23f
+    scc->reset(cs, S390_CPU_RESET_INITIAL);
77c23f
 }
77c23f
 
77c23f
 static inline void s390_do_cpu_load_normal(CPUState *cs, run_on_cpu_data arg)
77c23f
diff --git a/target/s390x/sigp.c b/target/s390x/sigp.c
77c23f
index 850139b9cd..727875bb4a 100644
77c23f
--- a/target/s390x/sigp.c
77c23f
+++ b/target/s390x/sigp.c
77c23f
@@ -254,7 +254,7 @@ static void sigp_initial_cpu_reset(CPUState *cs, run_on_cpu_data arg)
77c23f
     SigpInfo *si = arg.host_ptr;
77c23f
 
77c23f
     cpu_synchronize_state(cs);
77c23f
-    scc->initial_cpu_reset(cs);
77c23f
+    scc->reset(cs, S390_CPU_RESET_INITIAL);
77c23f
     cpu_synchronize_post_reset(cs);
77c23f
     si->cc = SIGP_CC_ORDER_CODE_ACCEPTED;
77c23f
 }
77c23f
-- 
77c23f
2.27.0
77c23f