From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1Wor-0007VE-Rt for qemu-devel@nongnu.org; Thu, 18 Dec 2014 03:52:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y1Woi-0000tz-Ra for qemu-devel@nongnu.org; Thu, 18 Dec 2014 03:52:25 -0500 Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:40969) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y1Woi-0000tR-HE for qemu-devel@nongnu.org; Thu, 18 Dec 2014 03:52:16 -0500 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 18 Dec 2014 08:52:14 -0000 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id A13FB2190063 for ; Thu, 18 Dec 2014 08:51:41 +0000 (GMT) Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by b06cxnps3074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sBI8qBfc58196072 for ; Thu, 18 Dec 2014 08:52:11 GMT Received: from d06av05.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sBI8qAfp032573 for ; Thu, 18 Dec 2014 01:52:11 -0700 From: Frank Blaschka Date: Thu, 18 Dec 2014 09:52:05 +0100 Message-Id: <1418892728-28678-1-git-send-email-blaschka@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 0/3 V2] add PCI support for the s390 platform List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: cornelia.huck@de.ibm.com, borntraeger@de.ibm.com, agraf@suse.de, peter.maydell@linaro.org, pbonzini@redhat.com Cc: Frank Blaschka , qemu-devel@nongnu.org This set of patches implemets PCI support for the s390 platform. Now it is possible to run virtio-net-pci and potentially all virtual pci devices conforming to s390 platform constrains. V1 added lot of feedback from Alex Graf fixed tons of endian issues V2 added couple of small improvments and code cleanup fixed build on 32-bit and non Linux added pci to maintainer file Please consider for integration into 2.3 Thanks, Frank Frank Blaschka (3): s390: Add PCI bus support s390: implement pci instructions kvm: extend kvm_irqchip_add_msi_route to work on s390 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 | 7 + 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/ioinst.c | 52 +++ target-s390x/ioinst.h | 1 + target-s390x/kvm.c | 179 +++++++++ 21 files changed, 2242 insertions(+), 1 deletion(-) 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.8.5.5