be901e9b15
Implement the core of the world switch in C. Not everything is there yet, and there is nothing to re-enter the world switch either. But this already outlines the code structure well enough. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
12 lines
353 B
Makefile
12 lines
353 B
Makefile
#
|
|
# Makefile for Kernel-based Virtual Machine module, HYP part
|
|
#
|
|
|
|
obj-$(CONFIG_KVM_ARM_HOST) += vgic-v2-sr.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += vgic-v3-sr.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += timer-sr.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += entry.o
|
|
obj-$(CONFIG_KVM_ARM_HOST) += switch.o
|