From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1e2F-0006sW-HP for qemu-devel@nongnu.org; Thu, 18 Dec 2014 11:34:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y1e27-0005NX-Tp for qemu-devel@nongnu.org; Thu, 18 Dec 2014 11:34:43 -0500 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:44954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1e27-0005JU-LW for qemu-devel@nongnu.org; Thu, 18 Dec 2014 11:34:35 -0500 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 18 Dec 2014 16:34:33 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 58E551B08051 for ; Thu, 18 Dec 2014 16:34:56 +0000 (GMT) Received: from d06av03.portsmouth.uk.ibm.com (d06av03.portsmouth.uk.ibm.com [9.149.37.213]) by b06cxnps4074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sBIGYVoS53608494 for ; Thu, 18 Dec 2014 16:34:31 GMT Received: from d06av03.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av03.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sBIGYUIT016686 for ; Thu, 18 Dec 2014 09:34:31 -0700 From: Cornelia Huck Date: Thu, 18 Dec 2014 17:34:20 +0100 Message-Id: <1418920467-24506-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PULL v2 0/7] s390x patches for 2.3 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: Cornelia Huck , borntraeger@de.ibm.com, jfrei@linux.vnet.ibm.com, qemu-devel@nongnu.org, agraf@suse.de Next try for s390x updates. The previous build failures should be fixed now. The following changes since commit 86b182ac0e0b44726d85598cbefb468ed22517fc: Merge remote-tracking branch 'remotes/xtensa/tags/20141217-xtensa' into staging (2014-12-17 17:31:26 +0000) are available in the git repository at: git://github.com/cohuck/qemu tags/s390x-20141218-v2 for you to fetch changes up to 312bf875ce90a588c12b0119dd4514aea4fad1d8: kvm: extend kvm_irqchip_add_msi_route to work on s390 (2014-12-18 15:33:24 +0100) ---------------------------------------------------------------- s390x patches for 2.3. Highlight is support for PCI devices on s390x. Otherwise, performance improvements (register sync) and small cleanups. ---------------------------------------------------------------- Cornelia Huck (1): s390x/ccw: fix oddity in machine class init David Hildenbrand (2): s390x/kvm: sync register support helper function s390x/kvm: avoid syscalls by syncing registers with kvm_run Frank Blaschka (3): s390: Add PCI bus support s390: implement pci instructions kvm: extend kvm_irqchip_add_msi_route to work on s390 Thomas Huth (1): s390x/css: Clean up unnecessary CONFIG_USER_ONLY wrappers MAINTAINERS | 2 + default-configs/s390x-softmmu.mak | 1 + hw/s390x/Makefile.objs | 1 + hw/s390x/css.c | 5 + hw/s390x/css.h | 1 + hw/s390x/s390-pci-bus.c | 591 +++++++++++++++++++++++++++ hw/s390x/s390-pci-bus.h | 251 ++++++++++++ hw/s390x/s390-pci-inst.c | 811 +++++++++++++++++++++++++++++++++++++ hw/s390x/s390-pci-inst.h | 288 +++++++++++++ hw/s390x/s390-virtio-ccw.c | 9 +- hw/s390x/sclp.c | 10 +- include/hw/s390x/sclp.h | 8 + include/sysemu/kvm.h | 4 + kvm-all.c | 7 + target-arm/kvm.c | 6 + target-i386/kvm.c | 6 + target-mips/kvm.c | 6 + target-ppc/kvm.c | 6 + target-s390x/cpu.h | 81 ---- target-s390x/ioinst.c | 52 +++ target-s390x/ioinst.h | 1 + target-s390x/kvm.c | 273 +++++++++++-- 22 files changed, 2305 insertions(+), 115 deletions(-) create mode 100644 hw/s390x/s390-pci-bus.c create mode 100644 hw/s390x/s390-pci-bus.h create mode 100644 hw/s390x/s390-pci-inst.c create mode 100644 hw/s390x/s390-pci-inst.h -- 1.7.9.5