From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36940) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUxGg-0006dl-Ky for qemu-devel@nongnu.org; Tue, 01 Apr 2014 07:54:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WUxGa-0007TB-Cx for qemu-devel@nongnu.org; Tue, 01 Apr 2014 07:54:14 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:38370) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUxGa-0007Sj-3P for qemu-devel@nongnu.org; Tue, 01 Apr 2014 07:54:08 -0400 Received: by mail-pa0-f54.google.com with SMTP id lf10so9804555pab.27 for ; Tue, 01 Apr 2014 04:54:06 -0700 (PDT) From: Pranavkumar Sawargaonkar Date: Tue, 1 Apr 2014 17:23:46 +0530 Message-Id: <1396353232-3835-1-git-send-email-pranavkumar@linaro.org> Subject: [Qemu-devel] [RFC PATCH V2 0/6] PSCI v0.2 support for KVM ARM/ARM64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, patches@apm.com, kvmarm@list.cs.columbia.edu, christoffer.dall@linaro.org, Pranavkumar Sawargaonkar Recentely patches have been posted for in-kernel emulation of PSCI v0.2 http://www.spinics.net/lists/arm-kernel/msg305467.html This patchset adds the QEMU side changes for providing PSCI v0.2 to VM. ChangeLog: V2: - Rebase this patchset against v6 patchset for in-kernel PSCI v0.2 emulation (http://www.spinics.net/lists/arm-kernel/msg319037.html) - Handle KVM_EXIT_SYSTEM_EVENT in kvm-all.c:kvm_cpu_exec() - Drop change in kvm_arm_get_host_cpu_features() - Improve comments and description of kvm_arch_reset_vcpu() implementation V1: - Initial RFC patchset Pranavkumar Sawargaonkar (6): linux-headers: Update KVM headers from v3.14 kvm: Handle exit reason KVM_EXIT_SYSTEM_EVENT target-arm: Enable KVM_ARM_VCPU_PSCI_0_2 feature when possible target-arm: Implement kvm_arch_reset_vcpu() for KVM ARM64 target-arm: Provide PSCI v0.2 constants to generic QEMU code hw/arm/virt: Use PSCI v0.2 function IDs when kernel supports its hw/arm/virt.c | 28 ++++++++++++++---- kvm-all.c | 16 +++++++++++ linux-headers/asm-arm/kvm.h | 19 +++++++------ linux-headers/asm-arm64/kvm.h | 21 +++++++------- linux-headers/linux/kvm.h | 10 +++++++ linux-headers/linux/psci.h | 55 +++++++++++++++++++++++++++++++++++ target-arm/kvm-consts.h | 63 ++++++++++++++++++++++++++++++++++------- target-arm/kvm32.c | 5 +++- target-arm/kvm64.c | 9 +++++- 9 files changed, 189 insertions(+), 37 deletions(-) create mode 100644 linux-headers/linux/psci.h -- 1.7.9.5