2 * Copyright (C) 2012,2013 - 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/assembler.h>
21 #include <asm/kvm_arm.h>
22 #include <asm/kvm_mmu.h>
23 #include <asm/pgtable-hwdef.h>
24 #include <asm/sysreg.h>
28 .pushsection .hyp.idmap.text, "ax"
33 ventry __invalid // Synchronous EL2t
34 ventry __invalid // IRQ EL2t
35 ventry __invalid // FIQ EL2t
36 ventry __invalid // Error EL2t
38 ventry __invalid // Synchronous EL2h
39 ventry __invalid // IRQ EL2h
40 ventry __invalid // FIQ EL2h
41 ventry __invalid // Error EL2h
43 ventry __do_hyp_init // Synchronous 64-bit EL1
44 ventry __invalid // IRQ 64-bit EL1
45 ventry __invalid // FIQ 64-bit EL1
46 ventry __invalid // Error 64-bit EL1
48 ventry __invalid // Synchronous 32-bit EL1
49 ventry __invalid // IRQ 32-bit EL1
50 ventry __invalid // FIQ 32-bit EL1
51 ventry __invalid // Error 32-bit EL1
62 /* Check for a stub HVC call */
63 cmp x0, #HVC_STUB_HCALL_NR
64 b.lo __kvm_handle_stub_hvc
76 * The ID map may be configured to use an extended virtual address
77 * range. This is only the case if system RAM is out of range for the
78 * currently configured page size and VA_BITS, in which case we will
79 * also need the extended virtual range for the HYP ID map, or we won't
80 * be able to enable the EL2 MMU.
82 * However, at EL2, there is only one TTBR register, and we can't switch
83 * between translation tables *and* update TCR_EL2.T0SZ at the same
84 * time. Bottom line: we need to use the extended range with *both* our
87 * So use the same T0SZ value we use for the ID map.
90 bfi x4, x5, TCR_T0SZ_OFFSET, TCR_TxSZ_WIDTH
93 * Set the PS bits in TCR_EL2.
95 tcr_compute_pa_size x4, #TCR_EL2_PS_SHIFT, x5, x6
103 /* Invalidate the stale TLBs from Bootloader */
108 * Preserve all the RES1 bits while setting the default flags,
109 * as well as the EE bit on BE. Drop the A flag since the compiler
110 * is allowed to generate unaligned accesses.
112 ldr x4, =(SCTLR_EL2_RES1 | (SCTLR_ELx_FLAGS & ~SCTLR_ELx_A))
113 CPU_BE( orr x4, x4, #SCTLR_ELx_EE)
117 /* Set the stack and new vectors */
123 /* copy tpidr_el1 into tpidr_el2 for use by HYP */
129 ENDPROC(__kvm_hyp_init)
131 ENTRY(__kvm_handle_stub_hvc)
132 cmp x0, #HVC_SOFT_RESTART
135 /* This is where we're about to jump, staying at EL2 */
137 mov x0, #(PSR_F_BIT | PSR_I_BIT | PSR_A_BIT | PSR_D_BIT | PSR_MODE_EL2h)
140 /* Shuffle the arguments, and don't come back */
146 1: cmp x0, #HVC_RESET_VECTORS
150 * Reset kvm back to the hyp stub. Do not clobber x0-x4 in
151 * case we coming via HVC_SOFT_RESTART.
154 ldr x6, =SCTLR_ELx_FLAGS
155 bic x5, x5, x6 // Clear SCTL_M and etc
156 pre_disable_mmu_workaround
160 /* Install stub vectors */
161 adr_l x5, __hyp_stub_vectors
166 1: /* Bad stub call */
167 ldr x0, =HVC_STUB_ERR
170 ENDPROC(__kvm_handle_stub_hvc)