From patchwork Tue Mar 5 01:11:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 224901 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 04FBF2C033B for ; Tue, 5 Mar 2013 12:50:12 +1100 (EST) Received: from localhost ([::1]:55132 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCh18-0003Nj-7I for incoming@patchwork.ozlabs.org; Mon, 04 Mar 2013 20:50:10 -0500 Received: from eggs.gnu.org ([208.118.235.92]:59993) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCh0b-0003C5-Fo for qemu-devel@nongnu.org; Mon, 04 Mar 2013 20:49:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCh0W-0007X5-0U for qemu-devel@nongnu.org; Mon, 04 Mar 2013 20:49:37 -0500 Received: from 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.d.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1d0::1]:60938 helo=mnementh.archaic.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCh0V-0007VY-PK for qemu-devel@nongnu.org; Mon, 04 Mar 2013 20:49:31 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1UCgQN-000198-RM; Tue, 05 Mar 2013 01:12:11 +0000 From: Peter Maydell To: Aurelien Jarno , Blue Swirl Date: Tue, 5 Mar 2013 01:11:58 +0000 Message-Id: <1362445931-4383-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:8b0:1d0::1 Cc: Anthony Liguori , qemu-devel@nongnu.org, Paul Brook Subject: [Qemu-devel] [PULL 00/13] target-arm queue (feat.ARM KVM support) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Hi; here's a target-arm pullre. Major business here is the KVM support patchset, though there are a couple of SRS bugfixes too. Please pull. thanks -- PMM The following changes since commit 26135ead80fa1fd13e95c162dacfd06f2ba82981: target-mips: Fix accumulator selection for MIPS16 and microMIPS (2013-03-05 01:02:09 +0100) are available in the git repository at: git://git.linaro.org/people/pmaydell/qemu-arm.git target-arm.next for you to fetch changes up to ed4659d10fa2ec16ace367e4fffe6f7ced73112c: MAINTAINERS: add entry for ARM KVM guest cores (2013-03-05 00:45:43 +0000) ---------------------------------------------------------------- Christoffer Dall (1): ARM: KVM: Add support for KVM on ARM architecture Peter Maydell (12): target-arm: Factor out handling of SRS instruction target-arm: Don't decode RFE or SRS on M profile cores oslib-posix: Align to permit transparent hugepages on ARM Linux linux-headers: resync from mainline to add ARM KVM headers target-arm: Drop CPUARMState* argument from bank_number() ARM KVM: save and load VFP registers from kernel hw/arm_gic: Add presave/postload hooks hw/arm_gic: Convert ARM GIC classes to use init/realize target-arm: Use MemoryListener to identify GIC base address for KVM hw/kvm/arm_gic: Implement support for KVM in-kernel ARM GIC configure: Enable KVM on ARM MAINTAINERS: add entry for ARM KVM guest cores MAINTAINERS | 5 + configure | 2 +- hw/a15mpcore.c | 8 +- hw/arm/Makefile.objs | 1 + hw/arm_gic.c | 23 +- hw/arm_gic_common.c | 36 ++- hw/arm_gic_internal.h | 4 +- hw/arm_pic.c | 26 ++ hw/armv7m_nvic.c | 15 +- hw/kvm/arm_gic.c | 167 ++++++++++++ linux-headers/asm-arm/kvm.h | 180 +++++++++++++ linux-headers/asm-arm/kvm_para.h | 1 + linux-headers/asm-generic/kvm_para.h | 4 + linux-headers/linux/kvm.h | 17 ++ target-arm/Makefile.objs | 1 + target-arm/cpu.h | 1 + target-arm/helper.c | 13 +- target-arm/kvm.c | 493 ++++++++++++++++++++++++++++++++++ target-arm/kvm_arm.h | 32 +++ target-arm/translate.c | 141 +++++----- util/oslib-posix.c | 2 +- 21 files changed, 1064 insertions(+), 108 deletions(-) create mode 100644 hw/kvm/arm_gic.c create mode 100644 linux-headers/asm-arm/kvm.h create mode 100644 linux-headers/asm-arm/kvm_para.h create mode 100644 linux-headers/asm-generic/kvm_para.h create mode 100644 target-arm/kvm.c create mode 100644 target-arm/kvm_arm.h