Commit fb1b4e01 authored by Marc Zyngier's avatar Marc Zyngier Committed by Christoffer Dall

arm64: KVM: Implement HVC_RESET_VECTORS stub hypercall in the init code

In order to restore HYP mode to its original condition, KVM currently
implements __kvm_hyp_reset(). As we're moving towards a hyp-stub
defined API, it becomes necessary to implement HVC_RESET_VECTORS.

This patch adds the HVC_RESET_VECTORS hypercall to the KVM init
code, which so far lacked any form of hypercall support.
Acked-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
Reviewed-by: default avatarJames Morse <james.morse@arm.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
Signed-off-by: default avatarChristoffer Dall <cdall@linaro.org>
parent fd0e0c61
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <asm/kvm_mmu.h> #include <asm/kvm_mmu.h>
#include <asm/pgtable-hwdef.h> #include <asm/pgtable-hwdef.h>
#include <asm/sysreg.h> #include <asm/sysreg.h>
#include <asm/virt.h>
.text .text
.pushsection .hyp.idmap.text, "ax" .pushsection .hyp.idmap.text, "ax"
...@@ -58,6 +59,9 @@ __invalid: ...@@ -58,6 +59,9 @@ __invalid:
* x2: HYP vectors * x2: HYP vectors
*/ */
__do_hyp_init: __do_hyp_init:
/* Check for a stub HVC call */
cmp x0, #HVC_STUB_HCALL_NR
b.lo __kvm_handle_stub_hvc
msr ttbr0_el2, x0 msr ttbr0_el2, x0
...@@ -119,6 +123,9 @@ __do_hyp_init: ...@@ -119,6 +123,9 @@ __do_hyp_init:
eret eret
ENDPROC(__kvm_hyp_init) ENDPROC(__kvm_hyp_init)
ENTRY(__kvm_handle_stub_hvc)
cmp x0, #HVC_RESET_VECTORS
b.ne 1f
/* /*
* Reset kvm back to the hyp stub. * Reset kvm back to the hyp stub.
*/ */
...@@ -133,9 +140,15 @@ ENTRY(__kvm_hyp_reset) ...@@ -133,9 +140,15 @@ ENTRY(__kvm_hyp_reset)
/* Install stub vectors */ /* Install stub vectors */
adr_l x0, __hyp_stub_vectors adr_l x0, __hyp_stub_vectors
msr vbar_el2, x0 msr vbar_el2, x0
b exit
1: /* Bad stub call */
ldr x0, =HVC_STUB_ERR
exit:
eret eret
ENDPROC(__kvm_hyp_reset) ENDPROC(__kvm_hyp_reset)
ENDPROC(__kvm_handle_stub_hvc)
.ltorg .ltorg
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment