mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 00:29:10 +07:00
56f7a44050
Add support for the MIPS Virtualization (VZ) ASE to the MIPS KVM build system. For now KVM can only be configured for T&E or VZ and not both, but the design of the user facing APIs support the possibility of having both available, so this could change in future. Note that support for various optional guest features (some of which can't be turned off) are implemented in immediately following commits, so although it should now be possible to build VZ support, it may not work yet on your hardware. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: "Radim Krčmář" <rkrcmar@redhat.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Cc: kvm@vger.kernel.org
24 lines
509 B
Makefile
24 lines
509 B
Makefile
# Makefile for KVM support for MIPS
|
|
#
|
|
|
|
common-objs-y = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o)
|
|
|
|
EXTRA_CFLAGS += -Ivirt/kvm -Iarch/mips/kvm
|
|
|
|
common-objs-$(CONFIG_CPU_HAS_MSA) += msa.o
|
|
|
|
kvm-objs := $(common-objs-y) mips.o emulate.o entry.o \
|
|
interrupt.o stats.o commpage.o \
|
|
fpu.o
|
|
kvm-objs += hypcall.o
|
|
kvm-objs += mmu.o
|
|
|
|
ifdef CONFIG_KVM_MIPS_VZ
|
|
kvm-objs += vz.o
|
|
else
|
|
kvm-objs += dyntrans.o
|
|
kvm-objs += trap_emul.o
|
|
endif
|
|
obj-$(CONFIG_KVM) += kvm.o
|
|
obj-y += callback.o tlb.o
|