All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Farman <farman@linux.ibm.com>
To: "Jason J. Herne" <jjherne@linux.ibm.com>,
	qemu-devel@nongnu.org, qemu-s390x@nongnu.org, cohuck@redhat.com,
	pasic@linux.ibm.com, alifm@linux.ibm.com, borntraeger@de.ibm.com
Subject: Re: [Qemu-devel] [qemu-s390x] [PATCH v3 16/16] s390-bios: dasd-ipl: Use control unit type to customize error data
Date: Mon, 4 Mar 2019 12:02:45 -0500	[thread overview]
Message-ID: <905bbcdb-4daf-c7bd-171c-3ebec7ca01f6@linux.ibm.com> (raw)
In-Reply-To: <1551466776-29123-17-git-send-email-jjherne@linux.ibm.com>



On 03/01/2019 01:59 PM, Jason J. Herne wrote:
> Propagate control unit type from main through the dasd ipl call chain.
> The control unit type can be used to determine if we are attempting to
> boot from a real dasd device. If something goes wrong we'll want to print
> detailed dasd sense data (for diagnostic use) but only if we're attempting
> to boot from a real dasd device.
> 
> Note: We also query and print the dasd sense data if we fail while
> attempting to determine the control unit type. In this case, we don't know
> if we're dealing with a real dasd device yet, but if we are, then the sense
> data may be useful for figuring out what went wrong. Since determining
> the control unit type is the very first thing we do with any real dasd device,
> this is our most likely point of failure.
> 
> Signed-off-by: Jason J. Herne <jjherne@linux.ibm.com>
> ---
>   pc-bios/s390-ccw/cio.c      | 16 ++++++++++------
>   pc-bios/s390-ccw/cio.h      |  6 ++++--
>   pc-bios/s390-ccw/dasd-ipl.c | 25 +++++++++++++------------
>   pc-bios/s390-ccw/dasd-ipl.h |  2 +-
>   pc-bios/s390-ccw/main.c     |  2 +-
>   pc-bios/s390-ccw/virtio.c   |  2 +-
>   6 files changed, 30 insertions(+), 23 deletions(-)
> 
> diff --git a/pc-bios/s390-ccw/cio.c b/pc-bios/s390-ccw/cio.c
> index c528bbf..593fb33 100644
> --- a/pc-bios/s390-ccw/cio.c
> +++ b/pc-bios/s390-ccw/cio.c
> @@ -54,14 +54,15 @@ uint16_t cu_type(SubChannelId schid)
>       sense_id_ccw.count = sizeof(sense_data);
>       sense_id_ccw.flags |= CCW_FLAG_SLI;
>   
> -    if (do_cio(schid, ptr2u32(&sense_id_ccw), CCW_FMT1)) {
> +    if (do_cio(schid, CU_TYPE_UNKNOWN, ptr2u32(&sense_id_ccw), CCW_FMT1)) {
>           panic("Failed to run SenseID CCw\n");
>       }
>   
>       return sense_data.cu_type;
>   }
>   
> -void basic_sense(SubChannelId schid, void *sense_data, uint16_t data_size)
> +void basic_sense(SubChannelId schid, uint16_t cutype, void *sense_data,
> +                 uint16_t data_size)
>   {
>       Ccw1 senseCcw;
>   
> @@ -69,7 +70,7 @@ void basic_sense(SubChannelId schid, void *sense_data, uint16_t data_size)
>       senseCcw.cda = ptr2u32(sense_data);
>       senseCcw.count = data_size;
>   
> -    if (do_cio(schid, ptr2u32(&senseCcw), CCW_FMT1)) {
> +    if (do_cio(schid, cutype, ptr2u32(&senseCcw), CCW_FMT1)) {
>           panic("Failed to run Basic Sense CCW\n");
>       }
>   }
> @@ -364,7 +365,7 @@ static int __do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt, Irb *irb)
>    *
>    * Returns non-zero on error.
>    */
> -int do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt)
> +int do_cio(SubChannelId schid, uint16_t cutype, uint32_t ccw_addr, int fmt)
>   {
>       Irb irb = {};
>       SenseDataEckdDasd sd;

Missed this one?  :)

diff --git a/pc-bios/s390-ccw/cio.c b/pc-bios/s390-ccw/cio.c
index 593fb33fbd..0bf551d313 100644
--- a/pc-bios/s390-ccw/cio.c
+++ b/pc-bios/s390-ccw/cio.c
@@ -393,7 +393,7 @@ int do_cio(SubChannelId schid, uint16_t cutype, 
uint32_t ccw_addr, int fmt)
           */
          if ((unit_check(&irb) || iface_ctrl_check(&irb)) && retries <= 
2) {
              if (unit_check(&irb)) {
-                basic_sense(schid, &sd, sizeof(sd));
+                basic_sense(schid, cutype, &sd, sizeof(sd));
              }
              retries++;
              continue;



> @@ -402,10 +403,13 @@ int do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt)
>           print_int("  ssid  ", schid.ssid);
>           print_int("  cssid ", schid.cssid);
>           print_int("  sch_no", schid.sch_no);
> +        print_int("  ctrl-unit type", cutype);
>           sclp_print("\n");
>           print_irb_err(&irb);
> -        basic_sense(schid, &sd, sizeof(sd));
> -        print_eckd_dasd_sense_data(&sd);
> +        if (cutype == CU_TYPE_DASD_3990 || cutype == CU_TYPE_UNKNOWN) {
> +            basic_sense(schid, cutype, &sd, sizeof(sd));
> +            print_eckd_dasd_sense_data(&sd);
> +        }
>           rc = -1;
>           break;
>       }
> diff --git a/pc-bios/s390-ccw/cio.h b/pc-bios/s390-ccw/cio.h
> index 053dc6b..bd39b9f 100644
> --- a/pc-bios/s390-ccw/cio.h
> +++ b/pc-bios/s390-ccw/cio.h
> @@ -256,6 +256,7 @@ struct ciw {
>       __u16 count;
>   };
>   
> +#define CU_TYPE_UNKNOWN         0x0000
>   #define CU_TYPE_VIRTIO          0x3832
>   #define CU_TYPE_DASD_3990       0x3990
>   
> @@ -357,8 +358,9 @@ typedef struct CcwSearchIdData {
>   int enable_mss_facility(void);
>   void enable_subchannel(SubChannelId schid);
>   uint16_t cu_type(SubChannelId schid);
> -void basic_sense(SubChannelId schid, void *sense_data, uint16_t data_size);
> -int do_cio(SubChannelId schid, uint32_t ccw_addr, int fmt);
> +void basic_sense(SubChannelId schid, uint16_t cutype, void *sense_data,
> +                 uint16_t data_size);
> +int do_cio(SubChannelId schid, uint16_t cutype, uint32_t ccw_addr, int fmt);
>   
>   /*
>    * Some S390 specific IO instructions as inline
> diff --git a/pc-bios/s390-ccw/dasd-ipl.c b/pc-bios/s390-ccw/dasd-ipl.c
> index 5a863f0..11afa46 100644
> --- a/pc-bios/s390-ccw/dasd-ipl.c
> +++ b/pc-bios/s390-ccw/dasd-ipl.c
> @@ -72,7 +72,8 @@ static bool dynamic_cp_fixup(uint32_t ccw_addr, uint32_t  *next_cpa)
>       return false;
>   }
>   
> -static int run_dynamic_ccw_program(SubChannelId schid, uint32_t cpa)
> +static int run_dynamic_ccw_program(SubChannelId schid, uint16_t cutype,
> +                                   uint32_t cpa)
>   {
>       bool has_next;
>       uint32_t next_cpa = 0;
> @@ -83,7 +84,7 @@ static int run_dynamic_ccw_program(SubChannelId schid, uint32_t cpa)
>   
>           print_int("executing ccw chain at ", cpa);
>           enable_prefixing();
> -        rc = do_cio(schid, cpa, CCW_FMT0);
> +        rc = do_cio(schid, cutype, cpa, CCW_FMT0);
>           disable_prefixing();
>   
>           if (rc) {
> @@ -106,9 +107,9 @@ static void make_readipl(void)
>       ccwIplRead->count = 0x18; /* Read 0x18 bytes of data */
>   }
>   
> -static void run_readipl(SubChannelId schid)
> +static void run_readipl(SubChannelId schid, uint16_t cutype)
>   {
> -    if (do_cio(schid, 0x00, CCW_FMT0)) {
> +    if (do_cio(schid, cutype, 0x00, CCW_FMT0)) {
>           panic("dasd-ipl: Failed to run Read IPL channel program");
>       }
>   }
> @@ -183,19 +184,19 @@ static void ipl1_fixup(void)
>       ccwSearchTic->cda = ptr2u32(ccwSearchID);
>   }
>   
> -static void run_ipl1(SubChannelId schid)
> +static void run_ipl1(SubChannelId schid, uint16_t cutype)
>    {
>       uint32_t startAddr = 0x08;
>   
> -    if (do_cio(schid, startAddr, CCW_FMT0)) {
> +    if (do_cio(schid, cutype, startAddr, CCW_FMT0)) {
>           panic("dasd-ipl: Failed to run IPL1 channel program");
>       }
>   }
>   
> -static void run_ipl2(SubChannelId schid, uint32_t addr)
> +static void run_ipl2(SubChannelId schid, uint16_t cutype, uint32_t addr)
>   {
>   
> -    if (run_dynamic_ccw_program(schid, addr)) {
> +    if (run_dynamic_ccw_program(schid, cutype, addr)) {
>           panic("dasd-ipl: Failed to run IPL2 channel program");
>       }
>   }
> @@ -222,13 +223,13 @@ static void lpsw(void *psw_addr)
>    * Limitations in QEMU's CCW support complicate the IPL process. Details can
>    * be found in docs/devel/s390-dasd-ipl.txt
>    */
> -void dasd_ipl(SubChannelId schid)
> +void dasd_ipl(SubChannelId schid, uint16_t cutype)
>   {
>       uint32_t ipl2_addr;
>   
>       /* Construct Read IPL CCW and run it to read IPL1 from boot disk */
>       make_readipl();
> -    run_readipl(schid);
> +    run_readipl(schid, cutype);
>       ipl2_addr = read_ipl2_addr();
>       check_ipl1();
>   
> @@ -237,13 +238,13 @@ void dasd_ipl(SubChannelId schid)
>        * to read IPL2 channel program from boot disk.
>        */
>       ipl1_fixup();
> -    run_ipl1(schid);
> +    run_ipl1(schid, cutype);
>       check_ipl2(ipl2_addr);
>   
>       /*
>        * Run IPL2 channel program to read operating system code from boot disk
>        * then transfer control to the guest operating system
>        */
> -    run_ipl2(schid, ipl2_addr);
> +    run_ipl2(schid, cutype, ipl2_addr);
>       lpsw(0);
>   }
> diff --git a/pc-bios/s390-ccw/dasd-ipl.h b/pc-bios/s390-ccw/dasd-ipl.h
> index 56bba82..8e699f4 100644
> --- a/pc-bios/s390-ccw/dasd-ipl.h
> +++ b/pc-bios/s390-ccw/dasd-ipl.h
> @@ -11,6 +11,6 @@
>   #ifndef DASD_IPL_H
>   #define DASD_IPL_H
>   
> -void dasd_ipl(SubChannelId schid);
> +void dasd_ipl(SubChannelId schid, uint16_t cutype);
>   
>   #endif /* DASD_IPL_H */
> diff --git a/pc-bios/s390-ccw/main.c b/pc-bios/s390-ccw/main.c
> index f5989f8..3eb6690 100644
> --- a/pc-bios/s390-ccw/main.c
> +++ b/pc-bios/s390-ccw/main.c
> @@ -210,7 +210,7 @@ int main(void)
>       cutype = cu_type(blk_schid);
>       switch (cutype) {
>       case CU_TYPE_DASD_3990:
> -        dasd_ipl(blk_schid); /* no return */
> +        dasd_ipl(blk_schid, cutype); /* no return */
>           break;
>       case CU_TYPE_VIRTIO:
>           virtio_setup();
> diff --git a/pc-bios/s390-ccw/virtio.c b/pc-bios/s390-ccw/virtio.c
> index 711daf5..4cd09eb 100644
> --- a/pc-bios/s390-ccw/virtio.c
> +++ b/pc-bios/s390-ccw/virtio.c
> @@ -103,7 +103,7 @@ static int run_ccw(VDev *vdev, int cmd, void *ptr, int len, bool sli)
>       }
>   
>       enable_subchannel(vdev->schid);
> -    return do_cio(vdev->schid, ptr2u32(&ccw), CCW_FMT1);
> +    return do_cio(vdev->schid, vdev->senseid.cu_type, ptr2u32(&ccw), CCW_FMT1);
>   }
>   
>   static void vring_init(VRing *vr, VqInfo *info)
> 

  reply	other threads:[~2019-03-04 17:03 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-01 18:59 [Qemu-devel] [PATCH v3 00/16] s390: vfio-ccw dasd ipl support Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 01/16] s390 vfio-ccw: Add bootindex property and IPLB data Jason J. Herne
2019-03-04 13:40   ` Cornelia Huck
2019-03-06 14:55     ` Jason J. Herne
2019-03-06 15:27       ` Cornelia Huck
2019-03-06 16:28         ` Jason J. Herne
2019-03-06 17:31           ` Cornelia Huck
2019-03-04 16:09   ` Farhan Ali
2019-03-06 15:16     ` Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 02/16] s390-bios: decouple cio setup from virtio Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 03/16] s390-bios: decouple common boot logic " Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 04/16] s390-bios: Extend find_dev() for non-virtio devices Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 05/16] s390-bios: Factor finding boot device out of virtio code path Jason J. Herne
2019-03-04 17:07   ` Cornelia Huck
2019-03-04 19:26     ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2019-03-05  8:38       ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 06/16] s390-bios: Clean up cio.h Jason J. Herne
2019-03-04 17:23   ` Cornelia Huck
2019-03-05  5:51   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2019-03-06 18:42     ` Jason J. Herne
2019-03-07  8:08       ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 07/16] s390-bios: Decouple channel i/o logic from virtio Jason J. Herne
2019-03-04 17:28   ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 08/16] s390-bios: Map low core memory Jason J. Herne
2019-03-04 17:46   ` Cornelia Huck
2019-03-05  6:27   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2019-03-06 19:28     ` Jason J. Herne
2019-03-07  8:11       ` Cornelia Huck
2019-03-06 19:42     ` Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 09/16] s390-bios: ptr2u32 and u32toptr Jason J. Herne
2019-03-05  7:22   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2019-03-07 14:11     ` Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 10/16] s390-bios: Support for running format-0/1 channel programs Jason J. Herne
2019-03-04 18:25   ` Cornelia Huck
2019-03-07 19:25     ` Jason J. Herne
2019-03-08  9:19       ` Cornelia Huck
2019-03-05  7:32   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 11/16] s390-bios: cio error handling Jason J. Herne
2019-03-04 18:35   ` Cornelia Huck
2019-03-07 19:31     ` Jason J. Herne
2019-03-08  9:21       ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 12/16] s390-bios: Refactor virtio to run channel programs via cio Jason J. Herne
2019-03-05 12:30   ` Cornelia Huck
2019-03-07 15:09     ` Jason J. Herne
2019-03-07 15:37       ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 13/16] s390-bios: Use control unit type to determine boot method Jason J. Herne
2019-03-05 12:27   ` Cornelia Huck
2019-03-07 16:27     ` Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 14/16] s390-bios: Add channel command codes/structs needed for dasd-ipl Jason J. Herne
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 15/16] s390-bios: Support booting from real dasd device Jason J. Herne
2019-03-05 13:03   ` Cornelia Huck
2019-03-01 18:59 ` [Qemu-devel] [PATCH v3 16/16] s390-bios: dasd-ipl: Use control unit type to customize error data Jason J. Herne
2019-03-04 17:02   ` Eric Farman [this message]
2019-03-07 14:38     ` [Qemu-devel] [qemu-s390x] " Jason J. Herne
2019-03-07 18:15       ` Eric Farman
2019-03-07 18:26         ` Jason J. Herne
2019-03-04 17:51   ` [Qemu-devel] " Cornelia Huck
2019-03-01 21:26 ` [Qemu-devel] [PATCH v3 00/16] s390: vfio-ccw dasd ipl support no-reply
2019-03-01 21:30 ` no-reply
2019-03-01 21:35 ` no-reply
2019-03-01 21:38 ` no-reply
2019-03-01 21:45 ` no-reply
2019-03-01 21:49 ` no-reply
2019-03-04 16:24 ` Cornelia Huck
2019-03-04 17:53   ` Christian Borntraeger
2019-03-04 17:28 ` no-reply
2019-03-04 17:51 ` no-reply
2019-03-05  5:55 ` no-reply
2019-03-05  7:30 ` no-reply
2019-03-05  8:42 ` no-reply
2019-03-05 13:08 ` no-reply

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=905bbcdb-4daf-c7bd-171c-3ebec7ca01f6@linux.ibm.com \
    --to=farman@linux.ibm.com \
    --cc=alifm@linux.ibm.com \
    --cc=borntraeger@de.ibm.com \
    --cc=cohuck@redhat.com \
    --cc=jjherne@linux.ibm.com \
    --cc=pasic@linux.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.