From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoffer Dall Subject: [PATCH v5.1 0/2] KVM: ARM: Rename KVM_SET_DEVICE_ADDRESS Date: Wed, 09 Jan 2013 11:26:03 -0500 Message-ID: <20130109162554.12103.38937.stgit@ubuntu> References: <20130108184116.46558.3558.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-vc0-f172.google.com ([209.85.220.172]:53884 "EHLO mail-vc0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932171Ab3AIQ0G (ORCPT ); Wed, 9 Jan 2013 11:26:06 -0500 Received: by mail-vc0-f172.google.com with SMTP id fw7so1774450vcb.3 for ; Wed, 09 Jan 2013 08:26:05 -0800 (PST) In-Reply-To: <20130108184116.46558.3558.stgit@ubuntu> Sender: kvm-owner@vger.kernel.org List-ID: Renames the KVM_SET_DEVICE_ADDRESS to KVM_ARM_SET_DEVICE_ADDR to make it obvious that this is ARM specific in lack of a better generic interface. Once we agree on a better interface the KVM/ARM code can also take advantage of that, but until then we don't want to hold up the KVM/ARM patches. A new complete series of these patches including this change can be pulled from: git://github.com/virtualopensystems/linux-kvm-arm.git kvm-arm-v15-devaddr-v2 -Christoffer --- Christoffer Dall (2): KVM: ARM: Introduce KVM_SET_DEVICE_ADDRESS ioctl ARM: KVM: VGIC accept vcpu and dist base addresses from user space Documentation/virtual/kvm/api.txt | 38 ++++++ arch/arm/include/asm/hardware/gic.h | 25 ++++ arch/arm/include/asm/kvm_host.h | 18 +++ arch/arm/include/asm/kvm_vgic.h | 89 +++++++++++++++ arch/arm/include/uapi/asm/kvm.h | 16 +++ arch/arm/kvm/Makefile | 1 arch/arm/kvm/arm.c | 92 +++++++++++++++- arch/arm/kvm/interrupts.S | 4 + arch/arm/kvm/mmio.c | 3 + arch/arm/kvm/vgic.c | 206 +++++++++++++++++++++++++++++++++++ include/uapi/linux/kvm.h | 8 + 11 files changed, 498 insertions(+), 2 deletions(-) create mode 100644 arch/arm/include/asm/kvm_vgic.h create mode 100644 arch/arm/kvm/vgic.c --