From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55786) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScF0M-00089G-Ek for qemu-devel@nongnu.org; Wed, 06 Jun 2012 08:06:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScF0G-0001lH-4m for qemu-devel@nongnu.org; Wed, 06 Jun 2012 08:06:25 -0400 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:51297) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScF0F-0001kL-SO for qemu-devel@nongnu.org; Wed, 06 Jun 2012 08:06:20 -0400 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 6 Jun 2012 13:06:16 +0100 Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1407.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q56C5emv2363492 for ; Wed, 6 Jun 2012 13:05:40 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q56C5b4k001893 for ; Wed, 6 Jun 2012 06:05:39 -0600 From: Jens Freimann Date: Wed, 6 Jun 2012 14:05:15 +0200 Message-Id: <1338984323-21914-1-git-send-email-jfrei@de.ibm.com> Subject: [Qemu-devel] [PATCH 0/8] s390: SCLP console and misc List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Cornelia Huck , Jens Freimann , Heinz Graalfs , qemu-devel From: Jens Freimann Some patches for s390. The biggest chunk is the SCLP (console) implementation. Christian Borntraeger (3): s390: autodetect map private s390: stop target cpu on sigp initial reset s390: Cleanup sclp functions Heinz Graalfs (2): s390: sclp event facility and signal quiesce support via system_powerdown s390: Add SCLP vt220 console support Jens Freimann (2): s390: add new define for KVM_CAP_S390_COW s390: make kvm_stat work on s390 Nick Wang (1): s390: Fix the storage increment size calculation Makefile.target | 3 +- exec.c | 54 ++++-- hw/s390-event-facility.c | 441 ++++++++++++++++++++++++++++++++++++++++++ hw/s390-event-facility.h | 62 ++++++ hw/s390-sclp.c | 463 +++++++++++++++++++++++++++++++++++++++++++++ hw/s390-sclp.h | 148 +++++++++++++++ hw/s390-virtio.c | 17 +- kvm.h | 9 + linux-headers/linux/kvm.h | 1 + oslib-posix.c | 3 + scripts/kvm/kvm_stat | 26 ++- sysemu.h | 1 + target-s390x/cpu.h | 11 -- target-s390x/kvm.c | 12 +- target-s390x/op_helper.c | 48 ++--- vl.c | 41 ++++ 16 files changed, 1283 insertions(+), 57 deletions(-) create mode 100644 hw/s390-event-facility.c create mode 100644 hw/s390-event-facility.h create mode 100644 hw/s390-sclp.c create mode 100644 hw/s390-sclp.h -- 1.7.10.4