From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoffer Dall Subject: [PATCH v2 00/10] KVM/ARM vGIC support Date: Mon, 01 Oct 2012 05:12:50 -0400 Message-ID: <20121001091244.49503.96318.stgit@ubuntu> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit To: kvm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu Return-path: Received: from mail-qa0-f53.google.com ([209.85.216.53]:34242 "EHLO mail-qa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752445Ab2JAJMx (ORCPT ); Mon, 1 Oct 2012 05:12:53 -0400 Received: by qaas11 with SMTP id s11so1340769qaa.19 for ; Mon, 01 Oct 2012 02:12:52 -0700 (PDT) Sender: kvm-owner@vger.kernel.org List-ID: The following series implements support for the virtual generic interrupt controller architecture for KVM/ARM. This is an unmodified repost of the previously submitted series. This patch series can also be pulled from: git://github.com/virtualopensystems/linux-kvm-arm.git branch: kvm-arm-v12-vgic --- Marc Zyngier (10): ARM: KVM: Keep track of currently running vcpus ARM: KVM: Initial VGIC infrastructure support ARM: KVM: Initial VGIC MMIO support code ARM: KVM: VGIC distributor handling ARM: KVM: VGIC virtual CPU interface management ARM: KVM: VGIC interrupt injection ARM: KVM: VGIC control interface world switch ARM: KVM: VGIC initialisation code ARM: KVM: vgic: reduce the number of vcpu kick ARM: KVM: Add VGIC configuration option arch/arm/include/asm/kvm_arm.h | 12 arch/arm/include/asm/kvm_host.h | 16 + arch/arm/include/asm/kvm_vgic.h | 301 +++++++++++ arch/arm/kernel/asm-offsets.c | 12 arch/arm/kvm/Kconfig | 7 arch/arm/kvm/Makefile | 1 arch/arm/kvm/arm.c | 101 +++- arch/arm/kvm/interrupts.S | 4 arch/arm/kvm/interrupts_head.S | 68 ++ arch/arm/kvm/mmu.c | 3 arch/arm/kvm/vgic.c | 1115 +++++++++++++++++++++++++++++++++++++++ virt/kvm/kvm_main.c | 5 12 files changed, 1640 insertions(+), 5 deletions(-) create mode 100644 arch/arm/include/asm/kvm_vgic.h create mode 100644 arch/arm/kvm/vgic.c --