public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
From: Janosch Frank <frankja@linux.ibm.com>
To: Pierre Morel <pmorel@linux.ibm.com>, kvm@vger.kernel.org
Cc: linux-s390@vger.kernel.org, david@redhat.com, thuth@redhat.com,
	cohuck@redhat.com, drjones@redhat.com
Subject: Re: [kvm-unit-tests PATCH v13 0/9] s390x: Testing the Channel Subsystem I/O
Date: Tue, 21 Jul 2020 15:11:53 +0200	[thread overview]
Message-ID: <3000fa45-2273-5ca3-f4fd-2aac5edf7c5a@linux.ibm.com> (raw)
In-Reply-To: <1594887809-10521-1-git-send-email-pmorel@linux.ibm.com>


[-- Attachment #1.1: Type: text/plain, Size: 3367 bytes --]

On 7/16/20 10:23 AM, Pierre Morel wrote:
> Hi All,
> 
> This new respin of the series add modifications to
> - patch 9: s390x: css: ssch/tsch with sense and interrupt
> Other patches did not change.
> 
> Recall:
> 
> Goal of the series is to have a framework to test Channel-Subsystem I/O with
> QEMU/KVM.
>   
> To be able to support interrupt for CSS I/O and for SCLP we need to modify
> the interrupt framework to allow re-entrant interruptions.
>   
> We add a registration for IRQ callbacks to the test program to define its own
> interrupt handler. We need to do special work under interrupt like acknowledging
> the interrupt.
>   
> This series presents three tests:
> - Enumeration:
>         The CSS is enumerated using the STSCH instruction recursively on all
>         potentially existing channels.
>         Keeping the first channel found as a reference for future use.
>         Checks STSCH
>  
> - Enable:
>         If the enumeration succeeded the tests enables the reference
>         channel with MSCH and verifies with STSCH that the channel is
>         effectively enabled, retrying a predefined count on failure
> 	to enable the channel
>         Checks MSCH       
>  
> - Sense:
>         If the channel is enabled this test sends a SENSE_ID command
>         to the reference channel, analyzing the answer and expecting
>         the Control unit type being 0x3832, a.k.a. virtio-ccw.
>         Checks SSCH(READ) and IO-IRQ
> 
> Note:
> - The following 5 patches are general usage and may be pulled first:
>   s390x: saving regs for interrupts
>   s390x: I/O interrupt registration
>   s390x: export the clock get_clock_ms() utility
>   s390x: clock and delays calculations
>   s390x: define function to wait for interrupt
> 
> - These 4 patches are really I/O oriented:
>   s390x: Library resources for CSS tests
>   s390x: css: stsch, enumeration test
>   s390x: css: msch, enable test
>   s390x: css: ssch/tsch with sense and interrupt
> 
> Regards,
> Pierre

Thanks, picked

> 
> Pierre Morel (9):
>   s390x: saving regs for interrupts
>   s390x: I/O interrupt registration
>   s390x: export the clock get_clock_ms() utility
>   s390x: clock and delays calculations
>   s390x: define function to wait for interrupt
>   s390x: Library resources for CSS tests
>   s390x: css: stsch, enumeration test
>   s390x: css: msch, enable test
>   s390x: css: ssch/tsch with sense and interrupt
> 
>  lib/s390x/asm/arch_def.h |  14 ++
>  lib/s390x/asm/time.h     |  50 ++++++
>  lib/s390x/css.h          | 294 +++++++++++++++++++++++++++++++++++
>  lib/s390x/css_dump.c     | 152 ++++++++++++++++++
>  lib/s390x/css_lib.c      | 323 +++++++++++++++++++++++++++++++++++++++
>  lib/s390x/interrupt.c    |  23 ++-
>  lib/s390x/interrupt.h    |   8 +
>  s390x/Makefile           |   3 +
>  s390x/css.c              | 150 ++++++++++++++++++
>  s390x/cstart64.S         |  41 ++++-
>  s390x/intercept.c        |  11 +-
>  s390x/unittests.cfg      |   4 +
>  12 files changed, 1060 insertions(+), 13 deletions(-)
>  create mode 100644 lib/s390x/asm/time.h
>  create mode 100644 lib/s390x/css.h
>  create mode 100644 lib/s390x/css_dump.c
>  create mode 100644 lib/s390x/css_lib.c
>  create mode 100644 lib/s390x/interrupt.h
>  create mode 100644 s390x/css.c
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      parent reply	other threads:[~2020-07-21 13:12 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-16  8:23 [kvm-unit-tests PATCH v13 0/9] s390x: Testing the Channel Subsystem I/O Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 1/9] s390x: saving regs for interrupts Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 2/9] s390x: I/O interrupt registration Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 3/9] s390x: export the clock get_clock_ms() utility Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 4/9] s390x: clock and delays calculations Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 5/9] s390x: define function to wait for interrupt Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 6/9] s390x: Library resources for CSS tests Pierre Morel
2020-07-16 11:15   ` Janosch Frank
2020-07-16 11:27     ` Pierre Morel
2020-07-16 11:31       ` Janosch Frank
2020-07-16 13:02         ` [PATCH v14 " Pierre Morel
2020-07-16 13:02           ` [PATCH v14 7/9] s390x: css: stsch, enumeration test Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 " Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 8/9] s390x: css: msch, enable test Pierre Morel
2020-07-16  8:23 ` [kvm-unit-tests PATCH v13 9/9] s390x: css: ssch/tsch with sense and interrupt Pierre Morel
2020-07-16  8:46   ` Thomas Huth
2020-07-16  8:58     ` Pierre Morel
2020-07-16 13:04     ` [PATCH v14 " Pierre Morel
2020-07-16  9:07   ` [kvm-unit-tests PATCH v13 " Cornelia Huck
2020-07-21 13:11 ` Janosch Frank [this message]

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=3000fa45-2273-5ca3-f4fd-2aac5edf7c5a@linux.ibm.com \
    --to=frankja@linux.ibm.com \
    --cc=cohuck@redhat.com \
    --cc=david@redhat.com \
    --cc=drjones@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=pmorel@linux.ibm.com \
    --cc=thuth@redhat.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox