Upgrade to 4.4.50-rt62
[kvmfornfv.git] / kernel / arch / arm64 / kvm / hyp-init.S
1 /*
2  * Copyright (C) 2012,2013 - ARM Ltd
3  * Author: Marc Zyngier <marc.zyngier@arm.com>
4  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 #include <linux/linkage.h>
19
20 #include <asm/assembler.h>
21 #include <asm/kvm_arm.h>
22 #include <asm/kvm_mmu.h>
23 #include <asm/pgtable-hwdef.h>
24
25         .text
26         .pushsection    .hyp.idmap.text, "ax"
27
28         .align  11
29
30 ENTRY(__kvm_hyp_init)
31         ventry  __invalid               // Synchronous EL2t
32         ventry  __invalid               // IRQ EL2t
33         ventry  __invalid               // FIQ EL2t
34         ventry  __invalid               // Error EL2t
35
36         ventry  __invalid               // Synchronous EL2h
37         ventry  __invalid               // IRQ EL2h
38         ventry  __invalid               // FIQ EL2h
39         ventry  __invalid               // Error EL2h
40
41         ventry  __do_hyp_init           // Synchronous 64-bit EL1
42         ventry  __invalid               // IRQ 64-bit EL1
43         ventry  __invalid               // FIQ 64-bit EL1
44         ventry  __invalid               // Error 64-bit EL1
45
46         ventry  __invalid               // Synchronous 32-bit EL1
47         ventry  __invalid               // IRQ 32-bit EL1
48         ventry  __invalid               // FIQ 32-bit EL1
49         ventry  __invalid               // Error 32-bit EL1
50
51 __invalid:
52         b       .
53
54         /*
55          * x0: HYP boot pgd
56          * x1: HYP pgd
57          * x2: HYP stack
58          * x3: HYP vectors
59          */
60 __do_hyp_init:
61
62         msr     ttbr0_el2, x0
63
64         mrs     x4, tcr_el1
65         ldr     x5, =TCR_EL2_MASK
66         and     x4, x4, x5
67         mov     x5, #TCR_EL2_RES1
68         orr     x4, x4, x5
69
70 #ifndef CONFIG_ARM64_VA_BITS_48
71         /*
72          * If we are running with VA_BITS < 48, we may be running with an extra
73          * level of translation in the ID map. This is only the case if system
74          * RAM is out of range for the currently configured page size and number
75          * of translation levels, in which case we will also need the extra
76          * level for the HYP ID map, or we won't be able to enable the EL2 MMU.
77          *
78          * However, at EL2, there is only one TTBR register, and we can't switch
79          * between translation tables *and* update TCR_EL2.T0SZ at the same
80          * time. Bottom line: we need the extra level in *both* our translation
81          * tables.
82          *
83          * So use the same T0SZ value we use for the ID map.
84          */
85         ldr_l   x5, idmap_t0sz
86         bfi     x4, x5, TCR_T0SZ_OFFSET, TCR_TxSZ_WIDTH
87 #endif
88         /*
89          * Read the PARange bits from ID_AA64MMFR0_EL1 and set the PS bits in
90          * TCR_EL2 and VTCR_EL2.
91          */
92         mrs     x5, ID_AA64MMFR0_EL1
93         bfi     x4, x5, #16, #3
94
95         msr     tcr_el2, x4
96
97         ldr     x4, =VTCR_EL2_FLAGS
98         bfi     x4, x5, #16, #3
99
100         msr     vtcr_el2, x4
101
102         mrs     x4, mair_el1
103         msr     mair_el2, x4
104         isb
105
106         /* Invalidate the stale TLBs from Bootloader */
107         tlbi    alle2
108         dsb     sy
109
110         mrs     x4, sctlr_el2
111         and     x4, x4, #SCTLR_EL2_EE   // preserve endianness of EL2
112         ldr     x5, =SCTLR_EL2_FLAGS
113         orr     x4, x4, x5
114         msr     sctlr_el2, x4
115         isb
116
117         /* Skip the trampoline dance if we merged the boot and runtime PGDs */
118         cmp     x0, x1
119         b.eq    merged
120
121         /* MMU is now enabled. Get ready for the trampoline dance */
122         ldr     x4, =TRAMPOLINE_VA
123         adr     x5, target
124         bfi     x4, x5, #0, #PAGE_SHIFT
125         br      x4
126
127 target: /* We're now in the trampoline code, switch page tables */
128         msr     ttbr0_el2, x1
129         isb
130
131         /* Invalidate the old TLBs */
132         tlbi    alle2
133         dsb     sy
134
135 merged:
136         /* Set the stack and new vectors */
137         kern_hyp_va     x2
138         mov     sp, x2
139         kern_hyp_va     x3
140         msr     vbar_el2, x3
141
142         /* Hello, World! */
143         eret
144 ENDPROC(__kvm_hyp_init)
145
146         .ltorg
147
148         .popsection