From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38918) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvqNz-00080b-7j for qemu-devel@nongnu.org; Thu, 17 Jan 2013 09:24:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TvqNw-0007LJ-HA for qemu-devel@nongnu.org; Thu, 17 Jan 2013 09:24:07 -0500 Received: from e06smtp13.uk.ibm.com ([195.75.94.109]:60603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvqNw-0007KW-8o for qemu-devel@nongnu.org; Thu, 17 Jan 2013 09:24:04 -0500 Received: from /spool/local by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 17 Jan 2013 14:23:05 -0000 Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by b06cxnps4076.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r0HENofA19333214 for ; Thu, 17 Jan 2013 14:23:50 GMT Received: from d06av01.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r0HENwCv017791 for ; Thu, 17 Jan 2013 07:23:58 -0700 From: Cornelia Huck Date: Thu, 17 Jan 2013 15:23:45 +0100 Message-Id: <1358432637-42512-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PATCH v5 00/12] s390: channel I/O support in qemu. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel , KVM , linux-s390 Cc: Carsten Otte , Anthony Liguori , Gleb Natapov , Sebastian Ott , Marcelo Tosatti , Heiko Carstens , Alexander Graf , Christian Borntraeger , Martin Schwidefsky Hi, here's the latest incarnation of my channel I/O and virtio-ccw patchset for qemu, containing various changes over the last one. (Note that "s390: Add a hypercall registration interface." has already been posted: http://marc.info/?l=qemu-devel&m=135834160607372&w=2) Changes include: - Add various defines for magic constants. - Introduce helpers for various mapping stuff and use them. - Adapt virtio-ccw to QOM conventions. - Move the new s390-ccw-virtio machine into an extra file (and an extra patch). - Improve cpu handling during machine init (don't pass around env). Cornelia Huck (12): s390: Add a hypercall registration interface. s390: Lowcore mapping helper. s390: Add mapping helper functions. Update linux headers. s390: Channel I/O basic defintions. s390: I/O interrupt and machine check injection. s390: Add channel I/O instructions. s390: Virtual channel subsystem support. s390: Wire up channel I/O in kvm. s390: Add new channel I/O based virtio transport. s390-virtio: Factor out some initialization code. s390: Add s390-ccw-virtio machine. hw/s390-virtio.c | 240 ++++---- hw/s390-virtio.h | 28 + hw/s390x/Makefile.objs | 4 + hw/s390x/css.c | 1131 ++++++++++++++++++++++++++++++++++ hw/s390x/css.h | 92 +++ hw/s390x/s390-virtio-ccw.c | 141 +++++ hw/s390x/s390-virtio-hcall.c | 36 ++ hw/s390x/virtio-ccw.c | 906 +++++++++++++++++++++++++++ hw/s390x/virtio-ccw.h | 79 +++ linux-headers/asm-generic/kvm_para.h | 4 + linux-headers/asm-powerpc/kvm_para.h | 2 +- linux-headers/linux/kvm.h | 21 + target-s390x/Makefile.objs | 2 +- target-s390x/cpu.h | 257 +++++++- target-s390x/helper.c | 200 +++++- target-s390x/ioinst.c | 709 +++++++++++++++++++++ target-s390x/ioinst.h | 223 +++++++ target-s390x/kvm.c | 254 +++++++- target-s390x/misc_helper.c | 2 +- trace-events | 18 + 20 files changed, 4215 insertions(+), 134 deletions(-) create mode 100644 hw/s390-virtio.h create mode 100644 hw/s390x/css.c create mode 100644 hw/s390x/css.h create mode 100644 hw/s390x/s390-virtio-ccw.c create mode 100644 hw/s390x/s390-virtio-hcall.c create mode 100644 hw/s390x/virtio-ccw.c create mode 100644 hw/s390x/virtio-ccw.h create mode 100644 linux-headers/asm-generic/kvm_para.h create mode 100644 target-s390x/ioinst.c create mode 100644 target-s390x/ioinst.h -- 1.7.12.4