Blame SOURCES/kvm-s390x-Move-diagnose-308-subcodes-and-rcs-into-ipl.h.patch

902636
From c9eee8aeed39976293e0d857039fcf729b821e83 Mon Sep 17 00:00:00 2001
902636
From: Thomas Huth <thuth@redhat.com>
902636
Date: Fri, 29 May 2020 05:54:03 -0400
902636
Subject: [PATCH 21/42] s390x: Move diagnose 308 subcodes and rcs into ipl.h
902636
MIME-Version: 1.0
902636
Content-Type: text/plain; charset=UTF-8
902636
Content-Transfer-Encoding: 8bit
902636
902636
RH-Author: Thomas Huth <thuth@redhat.com>
902636
Message-id: <20200529055420.16855-22-thuth@redhat.com>
902636
Patchwork-id: 97032
902636
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH v2 21/38] s390x: Move diagnose 308 subcodes and rcs into ipl.h
902636
Bugzilla: 1828317
902636
RH-Acked-by: Claudio Imbrenda <cimbrend@redhat.com>
902636
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
902636
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
902636
RH-Acked-by: David Hildenbrand <david@redhat.com>
902636
902636
From: Janosch Frank <frankja@linux.ibm.com>
902636
902636
They are part of the IPL process, so let's put them into the ipl
902636
header.
902636
902636
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
902636
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
902636
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
902636
Reviewed-by: David Hildenbrand <david@redhat.com>
902636
Message-Id: <20200319131921.2367-2-frankja@linux.ibm.com>
902636
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
902636
(cherry picked from commit 9b39d29470e9dbef24ee842a44ea56bd92b855ea)
902636
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
902636
---
902636
 hw/s390x/ipl.h      | 11 +++++++++++
902636
 target/s390x/diag.c | 11 -----------
902636
 2 files changed, 11 insertions(+), 11 deletions(-)
902636
902636
diff --git a/hw/s390x/ipl.h b/hw/s390x/ipl.h
902636
index 3e44abe1c6..a5665e6bfd 100644
902636
--- a/hw/s390x/ipl.h
902636
+++ b/hw/s390x/ipl.h
902636
@@ -159,6 +159,17 @@ struct S390IPLState {
902636
 typedef struct S390IPLState S390IPLState;
902636
 QEMU_BUILD_BUG_MSG(offsetof(S390IPLState, iplb) & 3, "alignment of iplb wrong");
902636
 
902636
+#define DIAG_308_RC_OK              0x0001
902636
+#define DIAG_308_RC_NO_CONF         0x0102
902636
+#define DIAG_308_RC_INVALID         0x0402
902636
+
902636
+#define DIAG308_RESET_MOD_CLR       0
902636
+#define DIAG308_RESET_LOAD_NORM     1
902636
+#define DIAG308_LOAD_CLEAR          3
902636
+#define DIAG308_LOAD_NORMAL_DUMP    4
902636
+#define DIAG308_SET                 5
902636
+#define DIAG308_STORE               6
902636
+
902636
 #define S390_IPL_TYPE_FCP 0x00
902636
 #define S390_IPL_TYPE_CCW 0x02
902636
 #define S390_IPL_TYPE_QEMU_SCSI 0xff
902636
diff --git a/target/s390x/diag.c b/target/s390x/diag.c
902636
index 54e5670b3f..8aba6341f9 100644
902636
--- a/target/s390x/diag.c
902636
+++ b/target/s390x/diag.c
902636
@@ -49,17 +49,6 @@ int handle_diag_288(CPUS390XState *env, uint64_t r1, uint64_t r3)
902636
     return diag288_class->handle_timer(diag288, func, timeout);
902636
 }
902636
 
902636
-#define DIAG_308_RC_OK              0x0001
902636
-#define DIAG_308_RC_NO_CONF         0x0102
902636
-#define DIAG_308_RC_INVALID         0x0402
902636
-
902636
-#define DIAG308_RESET_MOD_CLR       0
902636
-#define DIAG308_RESET_LOAD_NORM     1
902636
-#define DIAG308_LOAD_CLEAR          3
902636
-#define DIAG308_LOAD_NORMAL_DUMP    4
902636
-#define DIAG308_SET                 5
902636
-#define DIAG308_STORE               6
902636
-
902636
 static int diag308_parm_check(CPUS390XState *env, uint64_t r1, uint64_t addr,
902636
                               uintptr_t ra, bool write)
902636
 {
902636
-- 
902636
2.27.0
902636