From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:58705) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RI09a-0006J9-AL for qemu-devel@nongnu.org; Sun, 23 Oct 2011 11:40:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RI09Z-0006tR-0v for qemu-devel@nongnu.org; Sun, 23 Oct 2011 11:40:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38629) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RI09Y-0006tL-P2 for qemu-devel@nongnu.org; Sun, 23 Oct 2011 11:40:00 -0400 From: Vadim Rozenfeld Date: Sun, 23 Oct 2011 17:39:47 +0200 Message-Id: <1319384389-1389-1-git-send-email-vrozenfe@redhat.com> Subject: [Qemu-devel] [PATCH RFC v2 0/2] Initial support for Microsoft Hyper-V. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm@vger.kernel.org Cc: Kevin Wolf , Jan Kiszka , qemu-devel@nongnu.org, Vadim Rozenfeld , Paolo Bonzini , Avi Kivity With the following series of patches we are starting to implement some basic Microsoft Hyper-V Enlightenment functionality. This series is mostly about adding support for relaxed timing, spinlock, and virtual apic. For more Hyper-V related information please see: "Hypervisor Functional Specification v2.0: For Windows Server 2008 R2" at http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=18673 Changelog: v2->v1 - remove KVM_CAP_IRQCHIP ifdef, - remove CONFIG_HYPERV config option, - move KVM leaves to new location (0x40000100), - cosmetic changes. v0->v1 - move hyper-v parameters under cpu category, - move hyper-v stuff to target-i386 directory, - make CONFIG_HYPERV enabled by default for i386-softmmu and x86_64-softmmu configurations, - rearrange the patches from v0, - set HV_X64_MSR_HYPERCALL, HV_X64_MSR_GUEST_OS_ID, and HV_X64_MSR_APIC_ASSIST_PAGE to 0 on system reset. Vadim Rozenfeld (2): hyper-v: introduce Hyper-V support infrastructure. hyper-v: initialize Hyper-V CPUID leaves. Makefile.target | 2 + target-i386/cpuid.c | 14 +++++++++ target-i386/hyperv.c | 65 ++++++++++++++++++++++++++++++++++++++++++++ target-i386/hyperv.h | 37 +++++++++++++++++++++++++ target-i386/kvm.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++++- 5 files changed, 189 insertions(+), 2 deletions(-) create mode 100644 target-i386/hyperv.c create mode 100644 target-i386/hyperv.h -- 1.7.4.4