d8575c6c02
When memory encryption is enabled, KVM_SEV_INIT command is used to initialize the platform. The command loads the SEV related persistent data from non-volatile storage and initializes the platform context. This command should be first issued before invoking any other guest commands provided by the SEV firmware. Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Richard Henderson <rth@twiddle.net> Cc: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Brijesh Singh <brijesh.singh@amd.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
20 lines
754 B
Makefile
20 lines
754 B
Makefile
obj-y += helper.o cpu.o gdbstub.o xsave_helper.o
|
|
obj-$(CONFIG_TCG) += translate.o
|
|
obj-$(CONFIG_TCG) += bpt_helper.o cc_helper.o excp_helper.o fpu_helper.o
|
|
obj-$(CONFIG_TCG) += int_helper.o mem_helper.o misc_helper.o mpx_helper.o
|
|
obj-$(CONFIG_TCG) += seg_helper.o smm_helper.o svm_helper.o
|
|
obj-$(CONFIG_SOFTMMU) += machine.o arch_memory_mapping.o arch_dump.o monitor.o
|
|
obj-$(CONFIG_KVM) += kvm.o hyperv.o
|
|
obj-$(CONFIG_SEV) += sev.o
|
|
obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
|
|
obj-$(call lnot,$(CONFIG_SEV)) += sev-stub.o
|
|
# HAX support
|
|
ifdef CONFIG_WIN32
|
|
obj-$(CONFIG_HAX) += hax-all.o hax-mem.o hax-windows.o
|
|
endif
|
|
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
|