From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44684) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHv0t-0004Nx-9U for qemu-devel@nongnu.org; Fri, 06 Sep 2013 08:19:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHv0k-00031l-0N for qemu-devel@nongnu.org; Fri, 06 Sep 2013 08:19:47 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:50993) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHv0j-00031X-Mn for qemu-devel@nongnu.org; Fri, 06 Sep 2013 08:19:37 -0400 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 6 Sep 2013 13:16:24 +0100 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 560181B0806E for ; Fri, 6 Sep 2013 13:19:35 +0100 (BST) Received: from d06av08.portsmouth.uk.ibm.com (d06av08.portsmouth.uk.ibm.com [9.149.37.249]) by b06cxnps4076.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r86CJMkn51052580 for ; Fri, 6 Sep 2013 12:19:23 GMT Received: from d06av08.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r86CJYO1030911 for ; Fri, 6 Sep 2013 06:19:34 -0600 From: Jens Freimann Date: Fri, 6 Sep 2013 14:19:28 +0200 Message-Id: <1378469970-62769-1-git-send-email-jfrei@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 0/2] s390x/kvm: implement floating interrupt controller List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christian Borntraeger , Cornelia Huck , Alexander Graf Cc: Jens Freimann , Thomas Huth , qemu-devel@nongnu.org, kvm@vger.kernel.org, Andreas Faerber This patchset enables the s390 floating interrupt controller kvm_device. It is used to * clear all pending floating interrupts in the kernel at device reset * inject/retrieve interrupts into the kernel (used for migration) Please note that the linux-headers changes are not yet merged by upstream Jens Freimann (2): linux-headers: update for s390 floating interrupt controller s390x/kvm: implement floating-interrupt controller device default-configs/s390x-softmmu.mak | 1 + hw/intc/Makefile.objs | 1 + hw/intc/s390_flic.c | 164 ++++++++++++++++++++++++++++++++++++++ hw/s390x/s390-virtio-ccw.c | 8 +- hw/s390x/s390-virtio.c | 2 + include/hw/s390x/s390_flic.h | 31 +++++++ linux-headers/asm-s390/kvm.h | 5 ++ linux-headers/linux/kvm.h | 65 +++++++++++++++ 8 files changed, 276 insertions(+), 1 deletion(-) create mode 100644 hw/intc/s390_flic.c create mode 100644 include/hw/s390x/s390_flic.h -- 1.8.3.4