diff options
author | Justin Terry (VM) <juterry@microsoft.com> | 2018-01-22 13:07:48 -0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-02-07 14:09:26 +0100 |
commit | 812d49f2a3eed1f53d5a922461e81ea7e3581dd5 (patch) | |
tree | b97f7eb1254d9bc1abc42e6996d1f610c4b41e3f /target/i386/Makefile.objs | |
parent | 29b22c79bcacce7839209c7344948e8c305fa2d3 (diff) |
Introduce the WHPX impl
Implements the Windows Hypervisor Platform accelerator (WHPX) target. Which
acts as a hypervisor accelerator for QEMU on the Windows platform. This enables
QEMU much greater speed over the emulated x86_64 path's that are taken on
Windows today.
1. Adds support for vPartition management.
2. Adds support for vCPU management.
3. Adds support for MMIO/PortIO.
4. Registers the WHPX ACCEL_CLASS.
Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
Message-Id: <1516655269-1785-4-git-send-email-juterry@microsoft.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/Makefile.objs')
-rw-r--r-- | target/i386/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/i386/Makefile.objs b/target/i386/Makefile.objs index 44103a693b..f5c6ef20a7 100644 --- a/target/i386/Makefile.objs +++ b/target/i386/Makefile.objs @@ -14,3 +14,4 @@ ifdef CONFIG_DARWIN obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-darwin.o obj-$(CONFIG_HVF) += hvf/ endif +obj-$(CONFIG_WHPX) += whpx-all.o |