diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2016-01-05 21:40:51 +0300 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2016-02-29 21:34:13 +0300 |
commit | 89ef2b21ed2173e01995371261a9f9789bc1e47a (patch) | |
tree | a082baca9cc3ae93a67e840178757b16b49f1fc7 /arch/arm/kvm/hyp/Makefile | |
parent | 33280b4cd1dc0bc7df8d6d3bd1b64c377c9e44d9 (diff) | |
download | linux-89ef2b21ed2173e01995371261a9f9789bc1e47a.tar.xz |
ARM: KVM: Add guest entry code
Add the very minimal piece of code that is now required to jump
into the guest (and return from it). This code is only concerned
with save/restoring the USR registers (r0-r12+lr for the guest,
r4-r12+lr for the host), as everything else is dealt with in C
(VFP is another matter though).
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/kvm/hyp/Makefile')
-rw-r--r-- | arch/arm/kvm/hyp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kvm/hyp/Makefile b/arch/arm/kvm/hyp/Makefile index 173bd1dd77e7..c77969008665 100644 --- a/arch/arm/kvm/hyp/Makefile +++ b/arch/arm/kvm/hyp/Makefile @@ -8,3 +8,4 @@ obj-$(CONFIG_KVM_ARM_HOST) += timer-sr.o obj-$(CONFIG_KVM_ARM_HOST) += vgic-v2-sr.o obj-$(CONFIG_KVM_ARM_HOST) += vfp.o obj-$(CONFIG_KVM_ARM_HOST) += banked-sr.o +obj-$(CONFIG_KVM_ARM_HOST) += entry.o |