yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-s390-bios-Support-for-running-format-0-1-channel-pro.patch

4ec855
From 363d844cccb965c9eb0e0e6b5ca100e9532a2f0a Mon Sep 17 00:00:00 2001
4ec855
From: Thomas Huth <thuth@redhat.com>
4ec855
Date: Mon, 14 Oct 2019 10:06:37 +0100
4ec855
Subject: [PATCH 12/21] s390-bios: Support for running format-0/1 channel
4ec855
 programs
4ec855
4ec855
RH-Author: Thomas Huth <thuth@redhat.com>
4ec855
Message-id: <20191014100645.22862-10-thuth@redhat.com>
4ec855
Patchwork-id: 91783
4ec855
O-Subject: [RHEL-8.2.0 qemu-kvm PATCH v2 09/17] s390-bios: Support for running format-0/1 channel programs
4ec855
Bugzilla: 1664376
4ec855
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
4ec855
RH-Acked-by: David Hildenbrand <david@redhat.com>
4ec855
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
4ec855
4ec855
From: "Jason J. Herne" <jjherne@linux.ibm.com>
4ec855
4ec855
Introduce a library function for executing format-0 and format-1
4ec855
channel programs and waiting for their completion before continuing
4ec855
execution.
4ec855
4ec855
Add cu_type() to channel io library. This will be used to query control
4ec855
unit type which is used to determine if we are booting a virtio device or a
4ec855
real dasd device.
4ec855
4ec855
Signed-off-by: Jason J. Herne <jjherne@linux.ibm.com>
4ec855
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
4ec855
Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
4ec855
Message-Id: <1554388475-18329-9-git-send-email-jjherne@linux.ibm.com>
4ec855
Signed-off-by: Thomas Huth <thuth@redhat.com>
4ec855
(cherry picked from commit 3083a1bbb8716e9052fe375f68f330107ee13127)
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
---
4ec855
 pc-bios/s390-ccw/cio.c      | 144 ++++++++++++++++++++++++++++++++++++++++++++
4ec855
 pc-bios/s390-ccw/cio.h      | 130 ++++++++++++++++++++++++++++++++++++++-
4ec855
 pc-bios/s390-ccw/s390-ccw.h |   1 +
4ec855
 pc-bios/s390-ccw/start.S    |  29 +++++++++
4ec855
 4 files changed, 301 insertions(+), 3 deletions(-)
4ec855
4ec855
diff --git a/pc-bios/s390-ccw/cio.c b/pc-bios/s390-ccw/cio.c
4ec855
index 87c6b34..c43e50b 100644
4ec855
--- a/pc-bios/s390-ccw/cio.c
4ec855
+++ b/pc-bios/s390-ccw/cio.c
4ec855
@@ -13,10 +13,14 @@
4ec855
 
4ec855
 #include "libc.h"
4ec855
 #include "s390-ccw.h"
4ec855
+#include "s390-arch.h"
4ec855
+#include "helper.h"
4ec855
 #include "cio.h"
4ec855
 
4ec855
 static char chsc_page[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE)));
4ec855
 
4ec855
+static int __do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt, Irb *irb);
4ec855
+
4ec855
 int enable_mss_facility(void)
4ec855
 {
4ec855
     int ret;
4ec855
@@ -42,3 +46,143 @@ void enable_subchannel(SubChannelId schid)
4ec855
     schib.pmcw.ena = 1;
4ec855
     msch(schid, &schib);
4ec855
 }
4ec855
+
4ec855
+uint16_t cu_type(SubChannelId schid)
4ec855
+{
4ec855
+    Ccw1 sense_id_ccw;
4ec855
+    SenseId sense_data;
4ec855
+
4ec855
+    sense_id_ccw.cmd_code = CCW_CMD_SENSE_ID;
4ec855
+    sense_id_ccw.cda = ptr2u32(&sense_data);
4ec855
+    sense_id_ccw.count = sizeof(sense_data);
4ec855
+    sense_id_ccw.flags |= CCW_FLAG_SLI;
4ec855
+
4ec855
+    if (do_cio(schid, CU_TYPE_UNKNOWN, ptr2u32(&sense_id_ccw), CCW_FMT1)) {
4ec855
+        panic("Failed to run SenseID CCw\n");
4ec855
+    }
4ec855
+
4ec855
+    return sense_data.cu_type;
4ec855
+}
4ec855
+
4ec855
+int basic_sense(SubChannelId schid, uint16_t cutype, void *sense_data,
4ec855
+                 uint16_t data_size)
4ec855
+{
4ec855
+    Ccw1 senseCcw;
4ec855
+    Irb irb;
4ec855
+
4ec855
+    senseCcw.cmd_code = CCW_CMD_BASIC_SENSE;
4ec855
+    senseCcw.cda = ptr2u32(sense_data);
4ec855
+    senseCcw.count = data_size;
4ec855
+
4ec855
+    return __do_cio(schid, ptr2u32(&senseCcw), CCW_FMT1, &irb);
4ec855
+}
4ec855
+
4ec855
+static bool irb_error(Irb *irb)
4ec855
+{
4ec855
+    if (irb->scsw.cstat) {
4ec855
+        return true;
4ec855
+    }
4ec855
+    return irb->scsw.dstat != (SCSW_DSTAT_DEVEND | SCSW_DSTAT_CHEND);
4ec855
+}
4ec855
+
4ec855
+/*
4ec855
+ * Handles executing ssch, tsch and returns the irb obtained from tsch.
4ec855
+ * Returns 0 on success, -1 if unexpected status pending and we need to retry,
4ec855
+ * otherwise returns condition code from ssch/tsch for error cases.
4ec855
+ */
4ec855
+static int __do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt, Irb *irb)
4ec855
+{
4ec855
+    CmdOrb orb = {};
4ec855
+    int rc;
4ec855
+
4ec855
+    IPL_assert(fmt == 0 || fmt == 1, "Invalid ccw format");
4ec855
+
4ec855
+    /* ccw_addr must be <= 24 bits and point to at least one whole ccw. */
4ec855
+    if (fmt == 0) {
4ec855
+        IPL_assert(ccw_addr <= 0xFFFFFF - 8, "Invalid ccw address");
4ec855
+    }
4ec855
+
4ec855
+    orb.fmt = fmt;
4ec855
+    orb.pfch = 1;  /* QEMU's cio implementation requires prefetch */
4ec855
+    orb.c64 = 1;   /* QEMU's cio implementation requires 64-bit idaws */
4ec855
+    orb.lpm = 0xFF; /* All paths allowed */
4ec855
+    orb.cpa = ccw_addr;
4ec855
+
4ec855
+    rc = ssch(schid, &orb;;
4ec855
+    if (rc == 1 || rc == 2) {
4ec855
+        /* Subchannel status pending or busy. Eat status and ask for retry. */
4ec855
+        tsch(schid, irb);
4ec855
+        return -1;
4ec855
+    }
4ec855
+    if (rc) {
4ec855
+        print_int("ssch failed with cc=", rc);
4ec855
+        return rc;
4ec855
+    }
4ec855
+
4ec855
+    consume_io_int();
4ec855
+
4ec855
+    /* collect status */
4ec855
+    rc = tsch(schid, irb);
4ec855
+    if (rc) {
4ec855
+        print_int("tsch failed with cc=", rc);
4ec855
+    }
4ec855
+
4ec855
+    return rc;
4ec855
+}
4ec855
+
4ec855
+/*
4ec855
+ * Executes a channel program at a given subchannel. The request to run the
4ec855
+ * channel program is sent to the subchannel, we then wait for the interrupt
4ec855
+ * signaling completion of the I/O operation(s) performed by the channel
4ec855
+ * program. Lastly we verify that the i/o operation completed without error and
4ec855
+ * that the interrupt we received was for the subchannel used to run the
4ec855
+ * channel program.
4ec855
+ *
4ec855
+ * Note: This function assumes it is running in an environment where no other
4ec855
+ * cpus are generating or receiving I/O interrupts. So either run it in a
4ec855
+ * single-cpu environment or make sure all other cpus are not doing I/O and
4ec855
+ * have I/O interrupts masked off. We also assume that only one device is
4ec855
+ * active (generating i/o interrupts).
4ec855
+ *
4ec855
+ * Returns non-zero on error.
4ec855
+ */
4ec855
+int do_cio(SubChannelId schid, uint16_t cutype, uint32_t ccw_addr, int fmt)
4ec855
+{
4ec855
+    Irb irb = {};
4ec855
+    SenseDataEckdDasd sd;
4ec855
+    int rc, retries = 0;
4ec855
+
4ec855
+    while (true) {
4ec855
+        rc = __do_cio(schid, ccw_addr, fmt, &irb);
4ec855
+
4ec855
+        if (rc == -1) {
4ec855
+            retries++;
4ec855
+            continue;
4ec855
+        }
4ec855
+        if (rc) {
4ec855
+            /* ssch/tsch error. Message already reported by __do_cio */
4ec855
+            break;
4ec855
+        }
4ec855
+
4ec855
+        if (!irb_error(&irb)) {
4ec855
+            break;
4ec855
+        }
4ec855
+
4ec855
+        /*
4ec855
+         * Unexpected unit check, or interface-control-check. Use sense to
4ec855
+         * clear (unit check only) then retry.
4ec855
+         */
4ec855
+        if ((unit_check(&irb) || iface_ctrl_check(&irb)) && retries <= 2) {
4ec855
+            if (unit_check(&irb)) {
4ec855
+                basic_sense(schid, cutype, &sd, sizeof(sd));
4ec855
+            }
4ec855
+            retries++;
4ec855
+            continue;
4ec855
+        }
4ec855
+
4ec855
+        rc = -1;
4ec855
+        break;
4ec855
+    }
4ec855
+
4ec855
+    return rc;
4ec855
+}
4ec855
diff --git a/pc-bios/s390-ccw/cio.h b/pc-bios/s390-ccw/cio.h
4ec855
index 218fd96..1637e32 100644
4ec855
--- a/pc-bios/s390-ccw/cio.h
4ec855
+++ b/pc-bios/s390-ccw/cio.h
4ec855
@@ -70,9 +70,46 @@ struct scsw {
4ec855
     __u16 count;
4ec855
 } __attribute__ ((packed));
4ec855
 
4ec855
-#define SCSW_FCTL_CLEAR_FUNC 0x1000
4ec855
-#define SCSW_FCTL_HALT_FUNC 0x2000
4ec855
+/* Function Control */
4ec855
 #define SCSW_FCTL_START_FUNC 0x4000
4ec855
+#define SCSW_FCTL_HALT_FUNC 0x2000
4ec855
+#define SCSW_FCTL_CLEAR_FUNC 0x1000
4ec855
+
4ec855
+/* Activity Control */
4ec855
+#define SCSW_ACTL_RESUME_PEND   0x0800
4ec855
+#define SCSW_ACTL_START_PEND    0x0400
4ec855
+#define SCSW_ACTL_HALT_PEND     0x0200
4ec855
+#define SCSW_ACTL_CLEAR_PEND    0x0100
4ec855
+#define SCSW_ACTL_CH_ACTIVE     0x0080
4ec855
+#define SCSW_ACTL_DEV_ACTIVE    0x0040
4ec855
+#define SCSW_ACTL_SUSPENDED     0x0020
4ec855
+
4ec855
+/* Status Control */
4ec855
+#define SCSW_SCTL_ALERT         0x0010
4ec855
+#define SCSW_SCTL_INTERMED      0x0008
4ec855
+#define SCSW_SCTL_PRIMARY       0x0004
4ec855
+#define SCSW_SCTL_SECONDARY     0x0002
4ec855
+#define SCSW_SCTL_STATUS_PEND   0x0001
4ec855
+
4ec855
+/* SCSW Device Status Flags */
4ec855
+#define SCSW_DSTAT_ATTN     0x80
4ec855
+#define SCSW_DSTAT_STATMOD  0x40
4ec855
+#define SCSW_DSTAT_CUEND    0x20
4ec855
+#define SCSW_DSTAT_BUSY     0x10
4ec855
+#define SCSW_DSTAT_CHEND    0x08
4ec855
+#define SCSW_DSTAT_DEVEND   0x04
4ec855
+#define SCSW_DSTAT_UCHK     0x02
4ec855
+#define SCSW_DSTAT_UEXCP    0x01
4ec855
+
4ec855
+/* SCSW Subchannel Status Flags */
4ec855
+#define SCSW_CSTAT_PCINT    0x80
4ec855
+#define SCSW_CSTAT_BADLEN   0x40
4ec855
+#define SCSW_CSTAT_PROGCHK  0x20
4ec855
+#define SCSW_CSTAT_PROTCHK  0x10
4ec855
+#define SCSW_CSTAT_CHDCHK   0x08
4ec855
+#define SCSW_CSTAT_CHCCHK   0x04
4ec855
+#define SCSW_CSTAT_ICCHK    0x02
4ec855
+#define SCSW_CSTAT_CHAINCHK 0x01
4ec855
 
4ec855
 /*
4ec855
  * subchannel information block
4ec855
@@ -127,7 +164,23 @@ struct tpi_info {
4ec855
     __u32 reserved4:12;
4ec855
 } __attribute__ ((packed, aligned(4)));
4ec855
 
4ec855
-/* channel command word (type 1) */
4ec855
+/* channel command word (format 0) */
4ec855
+typedef struct ccw0 {
4ec855
+    __u8 cmd_code;
4ec855
+    __u32 cda:24;
4ec855
+    __u32 chainData:1;
4ec855
+    __u32 chain:1;
4ec855
+    __u32 sli:1;
4ec855
+    __u32 skip:1;
4ec855
+    __u32 pci:1;
4ec855
+    __u32 ida:1;
4ec855
+    __u32 suspend:1;
4ec855
+    __u32 mida:1;
4ec855
+    __u8 reserved;
4ec855
+    __u16 count;
4ec855
+} __attribute__ ((packed, aligned(8))) Ccw0;
4ec855
+
4ec855
+/* channel command word (format 1) */
4ec855
 typedef struct ccw1 {
4ec855
     __u8 cmd_code;
4ec855
     __u8 flags;
4ec855
@@ -135,6 +188,10 @@ typedef struct ccw1 {
4ec855
     __u32 cda;
4ec855
 } __attribute__ ((packed, aligned(8))) Ccw1;
4ec855
 
4ec855
+/* do_cio() CCW formats */
4ec855
+#define CCW_FMT0                 0x00
4ec855
+#define CCW_FMT1                 0x01
4ec855
+
4ec855
 #define CCW_FLAG_DC              0x80
4ec855
 #define CCW_FLAG_CC              0x40
4ec855
 #define CCW_FLAG_SLI             0x20
4ec855
@@ -190,6 +247,11 @@ struct ciw {
4ec855
     __u16 count;
4ec855
 };
4ec855
 
4ec855
+#define CU_TYPE_UNKNOWN         0x0000
4ec855
+#define CU_TYPE_DASD_2107       0x2107
4ec855
+#define CU_TYPE_VIRTIO          0x3832
4ec855
+#define CU_TYPE_DASD_3990       0x3990
4ec855
+
4ec855
 /*
4ec855
  * sense-id response buffer layout
4ec855
  */
4ec855
@@ -205,6 +267,64 @@ typedef struct senseid {
4ec855
     struct ciw ciw[62];
4ec855
 }  __attribute__ ((packed, aligned(4))) SenseId;
4ec855
 
4ec855
+/*
4ec855
+ * architected values for first sense byte - common_status. Bits 0-5 of this
4ec855
+ * field are common to all device types.
4ec855
+ */
4ec855
+#define SNS_STAT0_CMD_REJECT         0x80
4ec855
+#define SNS_STAT0_INTERVENTION_REQ   0x40
4ec855
+#define SNS_STAT0_BUS_OUT_CHECK      0x20
4ec855
+#define SNS_STAT0_EQUIPMENT_CHECK    0x10
4ec855
+#define SNS_STAT0_DATA_CHECK         0x08
4ec855
+#define SNS_STAT0_OVERRUN            0x04
4ec855
+#define SNS_STAT0_INCOMPL_DOMAIN     0x01
4ec855
+
4ec855
+/* ECKD DASD status[0] byte */
4ec855
+#define SNS_STAT1_PERM_ERR           0x80
4ec855
+#define SNS_STAT1_INV_TRACK_FORMAT   0x40
4ec855
+#define SNS_STAT1_EOC                0x20
4ec855
+#define SNS_STAT1_MESSAGE_TO_OPER    0x10
4ec855
+#define SNS_STAT1_NO_REC_FOUND       0x08
4ec855
+#define SNS_STAT1_FILE_PROTECTED     0x04
4ec855
+#define SNS_STAT1_WRITE_INHIBITED    0x02
4ec855
+#define SNS_STAT1_IMPRECISE_END      0x01
4ec855
+
4ec855
+/* ECKD DASD status[1] byte */
4ec855
+#define SNS_STAT2_REQ_INH_WRITE      0x80
4ec855
+#define SNS_STAT2_CORRECTABLE        0x40
4ec855
+#define SNS_STAT2_FIRST_LOG_ERR      0x20
4ec855
+#define SNS_STAT2_ENV_DATA_PRESENT   0x10
4ec855
+#define SNS_STAT2_IMPRECISE_END      0x04
4ec855
+
4ec855
+/* ECKD DASD 24-byte Sense fmt_msg codes */
4ec855
+#define SENSE24_FMT_PROG_SYS    0x0
4ec855
+#define SENSE24_FMT_EQUIPMENT   0x2
4ec855
+#define SENSE24_FMT_CONTROLLER  0x3
4ec855
+#define SENSE24_FMT_MISC        0xF
4ec855
+
4ec855
+/* basic sense response buffer layout */
4ec855
+typedef struct SenseDataEckdDasd {
4ec855
+    uint8_t common_status;
4ec855
+    uint8_t status[2];
4ec855
+    uint8_t res_count;
4ec855
+    uint8_t phys_drive_id;
4ec855
+    uint8_t low_cyl_addr;
4ec855
+    uint8_t head_high_cyl_addr;
4ec855
+    uint8_t fmt_msg;
4ec855
+    uint64_t fmt_dependent_info[2];
4ec855
+    uint8_t reserved;
4ec855
+    uint8_t program_action_code;
4ec855
+    uint16_t config_info;
4ec855
+    uint8_t mcode_hicyl;
4ec855
+    uint8_t cyl_head_addr[3];
4ec855
+}  __attribute__ ((packed, aligned(4))) SenseDataEckdDasd;
4ec855
+
4ec855
+#define ECKD_SENSE24_GET_FMT(sd)     (sd->fmt_msg & 0xF0 >> 4)
4ec855
+#define ECKD_SENSE24_GET_MSG(sd)     (sd->fmt_msg & 0x0F)
4ec855
+
4ec855
+#define unit_check(irb)         ((irb)->scsw.dstat & SCSW_DSTAT_UCHK)
4ec855
+#define iface_ctrl_check(irb)   ((irb)->scsw.cstat & SCSW_CSTAT_ICCHK)
4ec855
+
4ec855
 /* interruption response block */
4ec855
 typedef struct irb {
4ec855
     struct scsw scsw;
4ec855
@@ -215,6 +335,10 @@ typedef struct irb {
4ec855
 
4ec855
 int enable_mss_facility(void);
4ec855
 void enable_subchannel(SubChannelId schid);
4ec855
+uint16_t cu_type(SubChannelId schid);
4ec855
+int basic_sense(SubChannelId schid, uint16_t cutype, void *sense_data,
4ec855
+                 uint16_t data_size);
4ec855
+int do_cio(SubChannelId schid, uint16_t cutype, uint32_t ccw_addr, int fmt);
4ec855
 
4ec855
 /*
4ec855
  * Some S390 specific IO instructions as inline
4ec855
diff --git a/pc-bios/s390-ccw/s390-ccw.h b/pc-bios/s390-ccw/s390-ccw.h
4ec855
index b39ee5d..11bce7d 100644
4ec855
--- a/pc-bios/s390-ccw/s390-ccw.h
4ec855
+++ b/pc-bios/s390-ccw/s390-ccw.h
4ec855
@@ -52,6 +52,7 @@ typedef unsigned long long __u64;
4ec855
 /* start.s */
4ec855
 void disabled_wait(void);
4ec855
 void consume_sclp_int(void);
4ec855
+void consume_io_int(void);
4ec855
 
4ec855
 /* main.c */
4ec855
 void panic(const char *string);
4ec855
diff --git a/pc-bios/s390-ccw/start.S b/pc-bios/s390-ccw/start.S
4ec855
index eb8d024..fe2a4c3 100644
4ec855
--- a/pc-bios/s390-ccw/start.S
4ec855
+++ b/pc-bios/s390-ccw/start.S
4ec855
@@ -71,6 +71,26 @@ consume_sclp_int:
4ec855
         larl %r1, enabled_wait_psw
4ec855
         lpswe 0(%r1)
4ec855
 
4ec855
+/*
4ec855
+ * void consume_io_int(void)
4ec855
+ *
4ec855
+ * eats one I/O interrupt
4ec855
+ */
4ec855
+        .globl consume_io_int
4ec855
+consume_io_int:
4ec855
+        /* enable I/O interrupts in cr6 */
4ec855
+        stctg %c6,%c6,0(%r15)
4ec855
+        oi    4(%r15), 0xff
4ec855
+        lctlg %c6,%c6,0(%r15)
4ec855
+        /* prepare i/o call handler */
4ec855
+        larl  %r1, io_new_code
4ec855
+        stg   %r1, 0x1f8
4ec855
+        larl  %r1, io_new_mask
4ec855
+        mvc   0x1f0(8),0(%r1)
4ec855
+        /* load enabled wait PSW */
4ec855
+        larl  %r1, enabled_wait_psw
4ec855
+        lpswe 0(%r1)
4ec855
+
4ec855
 external_new_code:
4ec855
         /* disable service interrupts in cr0 */
4ec855
         stctg 0,0,0(15)
4ec855
@@ -78,6 +98,13 @@ external_new_code:
4ec855
         lctlg 0,0,0(15)
4ec855
         br 14
4ec855
 
4ec855
+io_new_code:
4ec855
+        /* disable I/O interrupts in cr6 */
4ec855
+        stctg %c6,%c6,0(%r15)
4ec855
+        ni    4(%r15), 0x00
4ec855
+        lctlg %c6,%c6,0(%r15)
4ec855
+        br    %r14
4ec855
+
4ec855
         .align  8
4ec855
 disabled_wait_psw:
4ec855
         .quad   0x0002000180000000,0x0000000000000000
4ec855
@@ -85,3 +112,5 @@ enabled_wait_psw:
4ec855
         .quad   0x0302000180000000,0x0000000000000000
4ec855
 external_new_mask:
4ec855
         .quad   0x0000000180000000
4ec855
+io_new_mask:
4ec855
+        .quad   0x0000000180000000
4ec855
-- 
4ec855
1.8.3.1
4ec855