arm64: cpufeatures: Drop the ARM64_HYP_OFFSET_LOW feature flag
[linux-2.6-block.git] / arch / arm64 / include / asm / kvm_mmu.h
CommitLineData
37c43753
MZ
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#ifndef __ARM64_KVM_MMU_H__
19#define __ARM64_KVM_MMU_H__
20
21#include <asm/page.h>
22#include <asm/memory.h>
20475f78 23#include <asm/cpufeature.h>
37c43753
MZ
24
25/*
cedbb8b7 26 * As ARMv8.0 only has the TTBR0_EL2 register, we cannot express
37c43753
MZ
27 * "negative" addresses. This makes it impossible to directly share
28 * mappings with the kernel.
29 *
30 * Instead, give the HYP mode its own VA region at a fixed offset from
31 * the kernel by just masking the top bits (which are all ones for a
82a81bff 32 * kernel address). We need to find out how many bits to mask.
cedbb8b7 33 *
82a81bff
MZ
34 * We want to build a set of page tables that cover both parts of the
35 * idmap (the trampoline page used to initialize EL2), and our normal
36 * runtime VA space, at the same time.
37 *
38 * Given that the kernel uses VA_BITS for its entire address space,
39 * and that half of that space (VA_BITS - 1) is used for the linear
40 * mapping, we can also limit the EL2 space to (VA_BITS - 1).
41 *
42 * The main question is "Within the VA_BITS space, does EL2 use the
43 * top or the bottom half of that space to shadow the kernel's linear
44 * mapping?". As we need to idmap the trampoline page, this is
45 * determined by the range in which this page lives.
46 *
47 * If the page is in the bottom half, we have to use the top half. If
48 * the page is in the top half, we have to use the bottom half:
49 *
2077be67 50 * T = __pa_symbol(__hyp_idmap_text_start)
82a81bff
MZ
51 * if (T & BIT(VA_BITS - 1))
52 * HYP_VA_MIN = 0 //idmap in upper half
53 * else
54 * HYP_VA_MIN = 1 << (VA_BITS - 1)
55 * HYP_VA_MAX = HYP_VA_MIN + (1 << (VA_BITS - 1)) - 1
56 *
57 * This of course assumes that the trampoline page exists within the
58 * VA_BITS range. If it doesn't, then it means we're in the odd case
59 * where the kernel idmap (as well as HYP) uses more levels than the
60 * kernel runtime page tables (as seen when the kernel is configured
61 * for 4k pages, 39bits VA, and yet memory lives just above that
62 * limit, forcing the idmap to use 4 levels of page tables while the
63 * kernel itself only uses 3). In this particular case, it doesn't
64 * matter which side of VA_BITS we use, as we're guaranteed not to
65 * conflict with anything.
66 *
67 * When using VHE, there are no separate hyp mappings and all KVM
68 * functionality is already mapped as part of the main kernel
69 * mappings, and none of this applies in that case.
37c43753 70 */
d53d9bc6 71
37c43753
MZ
72#ifdef __ASSEMBLY__
73
cedbb8b7
MZ
74#include <asm/alternative.h>
75#include <asm/cpufeature.h>
76
37c43753
MZ
77/*
78 * Convert a kernel VA into a HYP VA.
79 * reg: VA to be converted.
fd81e6bf 80 *
2b4d1606
MZ
81 * The actual code generation takes place in kvm_update_va_mask, and
82 * the instructions below are only there to reserve the space and
83 * perform the register allocation (kvm_update_va_mask uses the
84 * specific registers encoded in the instructions).
37c43753
MZ
85 */
86.macro kern_hyp_va reg
2b4d1606
MZ
87alternative_cb kvm_update_va_mask
88 and \reg, \reg, #1
89alternative_cb_end
37c43753
MZ
90.endm
91
92#else
93
38f791a4 94#include <asm/pgalloc.h>
02f7760e 95#include <asm/cache.h>
37c43753 96#include <asm/cacheflush.h>
e4c5a685
AB
97#include <asm/mmu_context.h>
98#include <asm/pgtable.h>
37c43753 99
2b4d1606
MZ
100void kvm_update_va_mask(struct alt_instr *alt,
101 __le32 *origptr, __le32 *updptr, int nr_inst);
102
fd81e6bf
MZ
103static inline unsigned long __kern_hyp_va(unsigned long v)
104{
2b4d1606
MZ
105 asm volatile(ALTERNATIVE_CB("and %0, %0, #1\n",
106 kvm_update_va_mask)
107 : "+r" (v));
fd81e6bf
MZ
108 return v;
109}
110
94d0e598 111#define kern_hyp_va(v) ((typeof(v))(__kern_hyp_va((unsigned long)(v))))
37c43753
MZ
112
113/*
dbff124e 114 * We currently only support a 40bit IPA.
37c43753 115 */
dbff124e 116#define KVM_PHYS_SHIFT (40)
37c43753
MZ
117#define KVM_PHYS_SIZE (1UL << KVM_PHYS_SHIFT)
118#define KVM_PHYS_MASK (KVM_PHYS_SIZE - 1UL)
119
c0ef6326
SP
120#include <asm/stage2_pgtable.h>
121
c8dddecd 122int create_hyp_mappings(void *from, void *to, pgprot_t prot);
37c43753 123int create_hyp_io_mappings(void *from, void *to, phys_addr_t);
37c43753
MZ
124void free_hyp_pgds(void);
125
957db105 126void stage2_unmap_vm(struct kvm *kvm);
37c43753
MZ
127int kvm_alloc_stage2_pgd(struct kvm *kvm);
128void kvm_free_stage2_pgd(struct kvm *kvm);
129int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
c40f2f8f 130 phys_addr_t pa, unsigned long size, bool writable);
37c43753
MZ
131
132int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run);
133
134void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
135
136phys_addr_t kvm_mmu_get_httbr(void);
37c43753
MZ
137phys_addr_t kvm_get_idmap_vector(void);
138int kvm_mmu_init(void);
139void kvm_clear_hyp_idmap(void);
140
141#define kvm_set_pte(ptep, pte) set_pte(ptep, pte)
ad361f09 142#define kvm_set_pmd(pmdp, pmd) set_pmd(pmdp, pmd)
37c43753 143
06485053 144static inline pte_t kvm_s2pte_mkwrite(pte_t pte)
37c43753 145{
06485053
CM
146 pte_val(pte) |= PTE_S2_RDWR;
147 return pte;
37c43753
MZ
148}
149
06485053 150static inline pmd_t kvm_s2pmd_mkwrite(pmd_t pmd)
ad361f09 151{
06485053
CM
152 pmd_val(pmd) |= PMD_S2_RDWR;
153 return pmd;
ad361f09
CD
154}
155
d0e22b4a
MZ
156static inline pte_t kvm_s2pte_mkexec(pte_t pte)
157{
158 pte_val(pte) &= ~PTE_S2_XN;
159 return pte;
160}
161
162static inline pmd_t kvm_s2pmd_mkexec(pmd_t pmd)
163{
164 pmd_val(pmd) &= ~PMD_S2_XN;
165 return pmd;
166}
167
20a004e7 168static inline void kvm_set_s2pte_readonly(pte_t *ptep)
8199ed0e 169{
0966253d
CM
170 pteval_t old_pteval, pteval;
171
20a004e7 172 pteval = READ_ONCE(pte_val(*ptep));
0966253d
CM
173 do {
174 old_pteval = pteval;
175 pteval &= ~PTE_S2_RDWR;
176 pteval |= PTE_S2_RDONLY;
20a004e7 177 pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval);
0966253d 178 } while (pteval != old_pteval);
8199ed0e
MS
179}
180
20a004e7 181static inline bool kvm_s2pte_readonly(pte_t *ptep)
8199ed0e 182{
20a004e7 183 return (READ_ONCE(pte_val(*ptep)) & PTE_S2_RDWR) == PTE_S2_RDONLY;
8199ed0e
MS
184}
185
20a004e7 186static inline bool kvm_s2pte_exec(pte_t *ptep)
7a3796d2 187{
20a004e7 188 return !(READ_ONCE(pte_val(*ptep)) & PTE_S2_XN);
7a3796d2
MZ
189}
190
20a004e7 191static inline void kvm_set_s2pmd_readonly(pmd_t *pmdp)
8199ed0e 192{
20a004e7 193 kvm_set_s2pte_readonly((pte_t *)pmdp);
8199ed0e
MS
194}
195
20a004e7 196static inline bool kvm_s2pmd_readonly(pmd_t *pmdp)
8199ed0e 197{
20a004e7 198 return kvm_s2pte_readonly((pte_t *)pmdp);
38f791a4
CD
199}
200
20a004e7 201static inline bool kvm_s2pmd_exec(pmd_t *pmdp)
7a3796d2 202{
20a004e7 203 return !(READ_ONCE(pmd_val(*pmdp)) & PMD_S2_XN);
7a3796d2
MZ
204}
205
4f853a71
CD
206static inline bool kvm_page_empty(void *ptr)
207{
208 struct page *ptr_page = virt_to_page(ptr);
209 return page_count(ptr_page) == 1;
210}
211
66f877fa 212#define hyp_pte_table_empty(ptep) kvm_page_empty(ptep)
38f791a4
CD
213
214#ifdef __PAGETABLE_PMD_FOLDED
66f877fa 215#define hyp_pmd_table_empty(pmdp) (0)
38f791a4 216#else
66f877fa 217#define hyp_pmd_table_empty(pmdp) kvm_page_empty(pmdp)
38f791a4
CD
218#endif
219
220#ifdef __PAGETABLE_PUD_FOLDED
66f877fa 221#define hyp_pud_table_empty(pudp) (0)
4f853a71 222#else
66f877fa 223#define hyp_pud_table_empty(pudp) kvm_page_empty(pudp)
4f853a71 224#endif
4f853a71 225
37c43753
MZ
226struct kvm;
227
2d58b733
MZ
228#define kvm_flush_dcache_to_poc(a,l) __flush_dcache_area((a), (l))
229
230static inline bool vcpu_has_cache_enabled(struct kvm_vcpu *vcpu)
37c43753 231{
8d404c4c 232 return (vcpu_read_sys_reg(vcpu, SCTLR_EL1) & 0b101) == 0b101;
2d58b733
MZ
233}
234
17ab9d57 235static inline void __clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
2d58b733 236{
0d3e4d4f
MZ
237 void *va = page_address(pfn_to_page(pfn));
238
8f36ebaf 239 kvm_flush_dcache_to_poc(va, size);
a15f6939 240}
2d58b733 241
17ab9d57 242static inline void __invalidate_icache_guest_page(kvm_pfn_t pfn,
a15f6939
MZ
243 unsigned long size)
244{
87da236e 245 if (icache_is_aliasing()) {
37c43753
MZ
246 /* any kind of VIPT cache */
247 __flush_icache_all();
87da236e
WD
248 } else if (is_kernel_in_hyp_mode() || !icache_is_vpipt()) {
249 /* PIPT or VPIPT at EL2 (see comment in __kvm_tlb_flush_vmid_ipa) */
a15f6939
MZ
250 void *va = page_address(pfn_to_page(pfn));
251
4fee9473
MZ
252 invalidate_icache_range((unsigned long)va,
253 (unsigned long)va + size);
37c43753
MZ
254 }
255}
256
363ef89f
MZ
257static inline void __kvm_flush_dcache_pte(pte_t pte)
258{
259 struct page *page = pte_page(pte);
260 kvm_flush_dcache_to_poc(page_address(page), PAGE_SIZE);
261}
262
263static inline void __kvm_flush_dcache_pmd(pmd_t pmd)
264{
265 struct page *page = pmd_page(pmd);
266 kvm_flush_dcache_to_poc(page_address(page), PMD_SIZE);
267}
268
269static inline void __kvm_flush_dcache_pud(pud_t pud)
270{
271 struct page *page = pud_page(pud);
272 kvm_flush_dcache_to_poc(page_address(page), PUD_SIZE);
273}
274
2077be67 275#define kvm_virt_to_phys(x) __pa_symbol(x)
37c43753 276
3c1e7165
MZ
277void kvm_set_way_flush(struct kvm_vcpu *vcpu);
278void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled);
9d218a1f 279
e4c5a685
AB
280static inline bool __kvm_cpu_uses_extended_idmap(void)
281{
fa2a8445
KM
282 return __cpu_uses_extended_idmap_level();
283}
284
285static inline unsigned long __kvm_idmap_ptrs_per_pgd(void)
286{
287 return idmap_ptrs_per_pgd;
e4c5a685
AB
288}
289
19338304
KM
290/*
291 * Can't use pgd_populate here, because the extended idmap adds an extra level
292 * above CONFIG_PGTABLE_LEVELS (which is 2 or 3 if we're using the extended
293 * idmap), and pgd_populate is only available if CONFIG_PGTABLE_LEVELS = 4.
294 */
e4c5a685
AB
295static inline void __kvm_extend_hypmap(pgd_t *boot_hyp_pgd,
296 pgd_t *hyp_pgd,
297 pgd_t *merged_hyp_pgd,
298 unsigned long hyp_idmap_start)
299{
300 int idmap_idx;
75387b92 301 u64 pgd_addr;
e4c5a685
AB
302
303 /*
304 * Use the first entry to access the HYP mappings. It is
305 * guaranteed to be free, otherwise we wouldn't use an
306 * extended idmap.
307 */
308 VM_BUG_ON(pgd_val(merged_hyp_pgd[0]));
75387b92
KM
309 pgd_addr = __phys_to_pgd_val(__pa(hyp_pgd));
310 merged_hyp_pgd[0] = __pgd(pgd_addr | PMD_TYPE_TABLE);
e4c5a685
AB
311
312 /*
313 * Create another extended level entry that points to the boot HYP map,
314 * which contains an ID mapping of the HYP init code. We essentially
315 * merge the boot and runtime HYP maps by doing so, but they don't
316 * overlap anyway, so this is fine.
317 */
318 idmap_idx = hyp_idmap_start >> VA_BITS;
319 VM_BUG_ON(pgd_val(merged_hyp_pgd[idmap_idx]));
75387b92
KM
320 pgd_addr = __phys_to_pgd_val(__pa(boot_hyp_pgd));
321 merged_hyp_pgd[idmap_idx] = __pgd(pgd_addr | PMD_TYPE_TABLE);
e4c5a685
AB
322}
323
20475f78
VM
324static inline unsigned int kvm_get_vmid_bits(void)
325{
46823dd1 326 int reg = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
20475f78 327
28c5dcb2 328 return (cpuid_feature_extract_unsigned_field(reg, ID_AA64MMFR1_VMIDBITS_SHIFT) == 2) ? 16 : 8;
20475f78
VM
329}
330
6840bdd7
MZ
331#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
332#include <asm/mmu.h>
333
334static inline void *kvm_get_hyp_vector(void)
335{
336 struct bp_hardening_data *data = arm64_get_bp_hardening_data();
337 void *vect = kvm_ksym_ref(__kvm_hyp_vector);
338
339 if (data->fn) {
340 vect = __bp_harden_hyp_vecs_start +
341 data->hyp_vectors_slot * SZ_2K;
342
343 if (!has_vhe())
344 vect = lm_alias(vect);
345 }
346
347 return vect;
348}
349
350static inline int kvm_map_vectors(void)
351{
352 return create_hyp_mappings(kvm_ksym_ref(__bp_harden_hyp_vecs_start),
353 kvm_ksym_ref(__bp_harden_hyp_vecs_end),
354 PAGE_HYP_EXEC);
355}
356
357#else
358static inline void *kvm_get_hyp_vector(void)
359{
360 return kvm_ksym_ref(__kvm_hyp_vector);
361}
362
363static inline int kvm_map_vectors(void)
364{
365 return 0;
366}
367#endif
368
529c4b05
KM
369#define kvm_phys_to_vttbr(addr) phys_to_ttbr(addr)
370
37c43753
MZ
371#endif /* __ASSEMBLY__ */
372#endif /* __ARM64_KVM_MMU_H__ */