2 * Copyright (C) 2015 - ARM Ltd
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/linkage.h>
20 #include <asm/alternative.h>
21 #include <asm/assembler.h>
22 #include <asm/cpufeature.h>
23 #include <asm/kvm_arm.h>
24 #include <asm/kvm_asm.h>
25 #include <asm/kvm_mmu.h>
28 .pushsection .hyp.text, "ax"
32 * Shuffle the parameters before calling the function
33 * pointed to in x0. Assumes parameters in x[1,2,3].
47 * We used to rely on having an exception return to get
48 * an implicit isb. In the E2H case, we don't have it anymore.
49 * rather than changing all the leaf functions, just do it here
50 * before returning to the rest of the kernel.
54 ENDPROC(__vhe_hyp_call)
57 * Compute the idmap address of __kvm_hyp_reset based on the idmap
58 * start passed as a parameter, and jump there.
60 * x0: HYP phys_idmap_start
62 ENTRY(__kvm_hyp_teardown)
64 adr_l x3, __kvm_hyp_reset
66 /* insert __kvm_hyp_reset()s offset into phys_idmap_start */
67 bfi x4, x3, #0, #PAGE_SHIFT
69 ENDPROC(__kvm_hyp_teardown)
71 el1_sync: // Guest trapped into EL2
72 stp x0, x1, [sp, #-16]!
74 alternative_if_not ARM64_HAS_VIRT_HOST_EXTN
79 lsr x0, x1, #ESR_ELx_EC_SHIFT
81 cmp x0, #ESR_ELx_EC_HVC64
84 mrs x1, vttbr_el2 // If vttbr is valid, the 64bit guest
85 cbnz x1, el1_trap // called HVC
87 /* Here, we're pretty sure the host called HVC. */
90 cmp x0, #HVC_GET_VECTORS
97 * Perform the EL2 call
110 * We trap the first access to the FP/SIMD to save the host context
111 * and restore the guest context lazily.
112 * If FP/SIMD is not implemented, handle the trap and inject an
113 * undefined instruction exception to the guest.
115 alternative_if_not ARM64_HAS_NO_FPSIMD
116 cmp x0, #ESR_ELx_EC_FP_ASIMD
117 b.eq __fpsimd_guest_restore
118 alternative_else_nop_endif
121 mov x0, #ARM_EXCEPTION_TRAP
125 stp x0, x1, [sp, #-16]!
127 mov x0, #ARM_EXCEPTION_IRQ
131 stp x0, x1, [sp, #-16]!
133 mov x0, #ARM_EXCEPTION_EL1_SERROR
138 * Only two possibilities:
139 * 1) Either we come from the exit path, having just unmasked
140 * PSTATE.A: change the return code to an EL2 fault, and
141 * carry on, as we're already in a sane state to handle it.
142 * 2) Or we come from anywhere else, and that's a bug: we panic.
144 * For (1), x0 contains the original return code and x1 doesn't
145 * contain anything meaningful at that stage. We can reuse them
147 * For (2), who cares?
150 adr x1, abort_guest_exit_start
152 adr x1, abort_guest_exit_end
155 mov x0, #(1 << ARM_EXIT_WITH_SERROR_BIT)
158 ENTRY(__hyp_do_panic)
159 mov lr, #(PSR_F_BIT | PSR_I_BIT | PSR_A_BIT | PSR_D_BIT |\
165 ENDPROC(__hyp_do_panic)
167 .macro invalid_vector label, target = __hyp_panic
174 /* None of these should ever happen */
175 invalid_vector el2t_sync_invalid
176 invalid_vector el2t_irq_invalid
177 invalid_vector el2t_fiq_invalid
178 invalid_vector el2t_error_invalid
179 invalid_vector el2h_sync_invalid
180 invalid_vector el2h_irq_invalid
181 invalid_vector el2h_fiq_invalid
182 invalid_vector el1_sync_invalid
183 invalid_vector el1_irq_invalid
184 invalid_vector el1_fiq_invalid
190 ENTRY(__kvm_hyp_vector)
191 ventry el2t_sync_invalid // Synchronous EL2t
192 ventry el2t_irq_invalid // IRQ EL2t
193 ventry el2t_fiq_invalid // FIQ EL2t
194 ventry el2t_error_invalid // Error EL2t
196 ventry el2h_sync_invalid // Synchronous EL2h
197 ventry el2h_irq_invalid // IRQ EL2h
198 ventry el2h_fiq_invalid // FIQ EL2h
199 ventry el2_error // Error EL2h
201 ventry el1_sync // Synchronous 64-bit EL1
202 ventry el1_irq // IRQ 64-bit EL1
203 ventry el1_fiq_invalid // FIQ 64-bit EL1
204 ventry el1_error // Error 64-bit EL1
206 ventry el1_sync // Synchronous 32-bit EL1
207 ventry el1_irq // IRQ 32-bit EL1
208 ventry el1_fiq_invalid // FIQ 32-bit EL1
209 ventry el1_error // Error 32-bit EL1
210 ENDPROC(__kvm_hyp_vector)