blob: eb04437d50fa00947c5e173f67646bf95e22a97a [file] [log] [blame]
Marc Zyngier37c43752012-12-10 15:35:24 +00001/*
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>
Vladimir Murzin20475f72015-11-16 11:28:18 +000023#include <asm/cpufeature.h>
Marc Zyngier37c43752012-12-10 15:35:24 +000024
25/*
Marc Zyngiercedbb8b72015-01-29 13:50:34 +000026 * As ARMv8.0 only has the TTBR0_EL2 register, we cannot express
Marc Zyngier37c43752012-12-10 15:35:24 +000027 * "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
Marc Zyngier82a81bf2016-06-30 18:40:34 +010032 * kernel address). We need to find out how many bits to mask.
Marc Zyngiercedbb8b72015-01-29 13:50:34 +000033 *
Marc Zyngier82a81bf2016-06-30 18:40:34 +010034 * 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 *
Laura Abbott2077be62017-01-10 13:35:49 -080050 * T = __pa_symbol(__hyp_idmap_text_start)
Marc Zyngier82a81bf2016-06-30 18:40:34 +010051 * 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.
Marc Zyngier37c43752012-12-10 15:35:24 +000070 */
Marc Zyngierd53d9bc62016-06-30 18:40:39 +010071
Marc Zyngier37c43752012-12-10 15:35:24 +000072#ifdef __ASSEMBLY__
73
Marc Zyngiercedbb8b72015-01-29 13:50:34 +000074#include <asm/alternative.h>
75#include <asm/cpufeature.h>
76
Marc Zyngier37c43752012-12-10 15:35:24 +000077/*
78 * Convert a kernel VA into a HYP VA.
79 * reg: VA to be converted.
Marc Zyngierfd81e6b2016-06-30 18:40:40 +010080 *
Marc Zyngier2b4d1602017-12-03 17:36:55 +000081 * 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).
Marc Zyngier37c43752012-12-10 15:35:24 +000085 */
86.macro kern_hyp_va reg
Marc Zyngier2b4d1602017-12-03 17:36:55 +000087alternative_cb kvm_update_va_mask
Marc Zyngiered57cac2017-12-03 18:22:49 +000088 and \reg, \reg, #1 /* mask with va_mask */
89 ror \reg, \reg, #1 /* rotate to the first tag bit */
90 add \reg, \reg, #0 /* insert the low 12 bits of the tag */
91 add \reg, \reg, #0, lsl 12 /* insert the top 12 bits of the tag */
92 ror \reg, \reg, #63 /* rotate back */
Marc Zyngier2b4d1602017-12-03 17:36:55 +000093alternative_cb_end
Marc Zyngier37c43752012-12-10 15:35:24 +000094.endm
95
96#else
97
Christoffer Dall38f791a2014-10-10 12:14:28 +020098#include <asm/pgalloc.h>
Will Deacon02f77602017-03-10 20:32:23 +000099#include <asm/cache.h>
Marc Zyngier37c43752012-12-10 15:35:24 +0000100#include <asm/cacheflush.h>
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000101#include <asm/mmu_context.h>
102#include <asm/pgtable.h>
Marc Zyngier37c43752012-12-10 15:35:24 +0000103
Marc Zyngier2b4d1602017-12-03 17:36:55 +0000104void kvm_update_va_mask(struct alt_instr *alt,
105 __le32 *origptr, __le32 *updptr, int nr_inst);
106
Marc Zyngierfd81e6b2016-06-30 18:40:40 +0100107static inline unsigned long __kern_hyp_va(unsigned long v)
108{
Marc Zyngiered57cac2017-12-03 18:22:49 +0000109 asm volatile(ALTERNATIVE_CB("and %0, %0, #1\n"
110 "ror %0, %0, #1\n"
111 "add %0, %0, #0\n"
112 "add %0, %0, #0, lsl 12\n"
113 "ror %0, %0, #63\n",
Marc Zyngier2b4d1602017-12-03 17:36:55 +0000114 kvm_update_va_mask)
115 : "+r" (v));
Marc Zyngierfd81e6b2016-06-30 18:40:40 +0100116 return v;
117}
118
Marc Zyngier94d0e592016-10-18 18:37:49 +0100119#define kern_hyp_va(v) ((typeof(v))(__kern_hyp_va((unsigned long)(v))))
Marc Zyngier37c43752012-12-10 15:35:24 +0000120
121/*
Marc Zyngier44a497a2017-12-03 19:28:56 +0000122 * Obtain the PC-relative address of a kernel symbol
123 * s: symbol
124 *
125 * The goal of this macro is to return a symbol's address based on a
126 * PC-relative computation, as opposed to a loading the VA from a
127 * constant pool or something similar. This works well for HYP, as an
128 * absolute VA is guaranteed to be wrong. Only use this if trying to
129 * obtain the address of a symbol (i.e. not something you obtained by
130 * following a pointer).
131 */
132#define hyp_symbol_addr(s) \
133 ({ \
134 typeof(s) *addr; \
135 asm("adrp %0, %1\n" \
136 "add %0, %0, :lo12:%1\n" \
137 : "=r" (addr) : "S" (&s)); \
138 addr; \
139 })
140
141/*
Joel Schoppdbff1242014-07-09 11:17:04 -0500142 * We currently only support a 40bit IPA.
Marc Zyngier37c43752012-12-10 15:35:24 +0000143 */
Joel Schoppdbff1242014-07-09 11:17:04 -0500144#define KVM_PHYS_SHIFT (40)
Marc Zyngier37c43752012-12-10 15:35:24 +0000145#define KVM_PHYS_SIZE (1UL << KVM_PHYS_SHIFT)
146#define KVM_PHYS_MASK (KVM_PHYS_SIZE - 1UL)
147
Suzuki K Poulosec0ef6322016-03-22 14:16:52 +0000148#include <asm/stage2_pgtable.h>
149
Marc Zyngierc8dddec2016-06-13 15:00:45 +0100150int create_hyp_mappings(void *from, void *to, pgprot_t prot);
Marc Zyngier807a3782017-12-04 16:26:09 +0000151int create_hyp_io_mappings(phys_addr_t phys_addr, size_t size,
Marc Zyngier1bb32a42017-12-04 16:43:23 +0000152 void __iomem **kaddr,
153 void __iomem **haddr);
Marc Zyngierdc2e4632018-02-13 11:00:29 +0000154int create_hyp_exec_mappings(phys_addr_t phys_addr, size_t size,
155 void **haddr);
Marc Zyngier37c43752012-12-10 15:35:24 +0000156void free_hyp_pgds(void);
157
Christoffer Dall957db102014-11-27 10:35:03 +0100158void stage2_unmap_vm(struct kvm *kvm);
Marc Zyngier37c43752012-12-10 15:35:24 +0000159int kvm_alloc_stage2_pgd(struct kvm *kvm);
160void kvm_free_stage2_pgd(struct kvm *kvm);
161int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
Ard Biesheuvelc40f2f82014-09-17 14:56:18 -0700162 phys_addr_t pa, unsigned long size, bool writable);
Marc Zyngier37c43752012-12-10 15:35:24 +0000163
164int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run);
165
166void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu);
167
168phys_addr_t kvm_mmu_get_httbr(void);
Marc Zyngier37c43752012-12-10 15:35:24 +0000169phys_addr_t kvm_get_idmap_vector(void);
170int kvm_mmu_init(void);
171void kvm_clear_hyp_idmap(void);
172
173#define kvm_set_pte(ptep, pte) set_pte(ptep, pte)
Christoffer Dallad361f02012-11-01 17:14:45 +0100174#define kvm_set_pmd(pmdp, pmd) set_pmd(pmdp, pmd)
Marc Zyngier37c43752012-12-10 15:35:24 +0000175
Catalin Marinas06485052016-04-13 17:57:37 +0100176static inline pte_t kvm_s2pte_mkwrite(pte_t pte)
Marc Zyngier37c43752012-12-10 15:35:24 +0000177{
Catalin Marinas06485052016-04-13 17:57:37 +0100178 pte_val(pte) |= PTE_S2_RDWR;
179 return pte;
Marc Zyngier37c43752012-12-10 15:35:24 +0000180}
181
Catalin Marinas06485052016-04-13 17:57:37 +0100182static inline pmd_t kvm_s2pmd_mkwrite(pmd_t pmd)
Christoffer Dallad361f02012-11-01 17:14:45 +0100183{
Catalin Marinas06485052016-04-13 17:57:37 +0100184 pmd_val(pmd) |= PMD_S2_RDWR;
185 return pmd;
Christoffer Dallad361f02012-11-01 17:14:45 +0100186}
187
Marc Zyngierd0e22b42017-10-23 17:11:19 +0100188static inline pte_t kvm_s2pte_mkexec(pte_t pte)
189{
190 pte_val(pte) &= ~PTE_S2_XN;
191 return pte;
192}
193
194static inline pmd_t kvm_s2pmd_mkexec(pmd_t pmd)
195{
196 pmd_val(pmd) &= ~PMD_S2_XN;
197 return pmd;
198}
199
Will Deacon20a004e2018-02-15 11:14:56 +0000200static inline void kvm_set_s2pte_readonly(pte_t *ptep)
Mario Smarduch8199ed02015-01-15 15:58:59 -0800201{
Catalin Marinas09662532017-07-06 11:46:39 +0100202 pteval_t old_pteval, pteval;
Catalin Marinas06485052016-04-13 17:57:37 +0100203
Will Deacon20a004e2018-02-15 11:14:56 +0000204 pteval = READ_ONCE(pte_val(*ptep));
Catalin Marinas09662532017-07-06 11:46:39 +0100205 do {
206 old_pteval = pteval;
207 pteval &= ~PTE_S2_RDWR;
208 pteval |= PTE_S2_RDONLY;
Will Deacon20a004e2018-02-15 11:14:56 +0000209 pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval);
Catalin Marinas09662532017-07-06 11:46:39 +0100210 } while (pteval != old_pteval);
Mario Smarduch8199ed02015-01-15 15:58:59 -0800211}
212
Will Deacon20a004e2018-02-15 11:14:56 +0000213static inline bool kvm_s2pte_readonly(pte_t *ptep)
Mario Smarduch8199ed02015-01-15 15:58:59 -0800214{
Will Deacon20a004e2018-02-15 11:14:56 +0000215 return (READ_ONCE(pte_val(*ptep)) & PTE_S2_RDWR) == PTE_S2_RDONLY;
Mario Smarduch8199ed02015-01-15 15:58:59 -0800216}
217
Will Deacon20a004e2018-02-15 11:14:56 +0000218static inline bool kvm_s2pte_exec(pte_t *ptep)
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100219{
Will Deacon20a004e2018-02-15 11:14:56 +0000220 return !(READ_ONCE(pte_val(*ptep)) & PTE_S2_XN);
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100221}
222
Will Deacon20a004e2018-02-15 11:14:56 +0000223static inline void kvm_set_s2pmd_readonly(pmd_t *pmdp)
Mario Smarduch8199ed02015-01-15 15:58:59 -0800224{
Will Deacon20a004e2018-02-15 11:14:56 +0000225 kvm_set_s2pte_readonly((pte_t *)pmdp);
Mario Smarduch8199ed02015-01-15 15:58:59 -0800226}
227
Will Deacon20a004e2018-02-15 11:14:56 +0000228static inline bool kvm_s2pmd_readonly(pmd_t *pmdp)
Mario Smarduch8199ed02015-01-15 15:58:59 -0800229{
Will Deacon20a004e2018-02-15 11:14:56 +0000230 return kvm_s2pte_readonly((pte_t *)pmdp);
Christoffer Dall38f791a2014-10-10 12:14:28 +0200231}
232
Will Deacon20a004e2018-02-15 11:14:56 +0000233static inline bool kvm_s2pmd_exec(pmd_t *pmdp)
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100234{
Will Deacon20a004e2018-02-15 11:14:56 +0000235 return !(READ_ONCE(pmd_val(*pmdp)) & PMD_S2_XN);
Marc Zyngier7a3796d2017-10-23 17:11:21 +0100236}
237
Christoffer Dall4f853a72014-05-09 23:31:31 +0200238static inline bool kvm_page_empty(void *ptr)
239{
240 struct page *ptr_page = virt_to_page(ptr);
241 return page_count(ptr_page) == 1;
242}
243
Suzuki K Poulose66f877f2016-03-22 17:20:28 +0000244#define hyp_pte_table_empty(ptep) kvm_page_empty(ptep)
Christoffer Dall38f791a2014-10-10 12:14:28 +0200245
246#ifdef __PAGETABLE_PMD_FOLDED
Suzuki K Poulose66f877f2016-03-22 17:20:28 +0000247#define hyp_pmd_table_empty(pmdp) (0)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200248#else
Suzuki K Poulose66f877f2016-03-22 17:20:28 +0000249#define hyp_pmd_table_empty(pmdp) kvm_page_empty(pmdp)
Christoffer Dall4f853a72014-05-09 23:31:31 +0200250#endif
Christoffer Dall38f791a2014-10-10 12:14:28 +0200251
252#ifdef __PAGETABLE_PUD_FOLDED
Suzuki K Poulose66f877f2016-03-22 17:20:28 +0000253#define hyp_pud_table_empty(pudp) (0)
Christoffer Dall38f791a2014-10-10 12:14:28 +0200254#else
Suzuki K Poulose66f877f2016-03-22 17:20:28 +0000255#define hyp_pud_table_empty(pudp) kvm_page_empty(pudp)
Christoffer Dall38f791a2014-10-10 12:14:28 +0200256#endif
Christoffer Dall4f853a72014-05-09 23:31:31 +0200257
Marc Zyngier37c43752012-12-10 15:35:24 +0000258struct kvm;
259
Marc Zyngier2d58b732014-01-14 19:13:10 +0000260#define kvm_flush_dcache_to_poc(a,l) __flush_dcache_area((a), (l))
261
262static inline bool vcpu_has_cache_enabled(struct kvm_vcpu *vcpu)
Marc Zyngier37c43752012-12-10 15:35:24 +0000263{
Christoffer Dall8d404c42016-03-16 15:38:53 +0100264 return (vcpu_read_sys_reg(vcpu, SCTLR_EL1) & 0b101) == 0b101;
Marc Zyngier2d58b732014-01-14 19:13:10 +0000265}
266
Marc Zyngier17ab9d52017-10-23 17:11:22 +0100267static inline void __clean_dcache_guest_page(kvm_pfn_t pfn, unsigned long size)
Marc Zyngier2d58b732014-01-14 19:13:10 +0000268{
Marc Zyngier0d3e4d42015-01-05 21:13:24 +0000269 void *va = page_address(pfn_to_page(pfn));
270
Marc Zyngier8f36eba2017-01-25 12:29:59 +0000271 kvm_flush_dcache_to_poc(va, size);
Marc Zyngiera15f6932017-10-23 17:11:15 +0100272}
Marc Zyngier2d58b732014-01-14 19:13:10 +0000273
Marc Zyngier17ab9d52017-10-23 17:11:22 +0100274static inline void __invalidate_icache_guest_page(kvm_pfn_t pfn,
Marc Zyngiera15f6932017-10-23 17:11:15 +0100275 unsigned long size)
276{
Will Deacon87da2362017-03-10 20:32:25 +0000277 if (icache_is_aliasing()) {
Marc Zyngier37c43752012-12-10 15:35:24 +0000278 /* any kind of VIPT cache */
279 __flush_icache_all();
Will Deacon87da2362017-03-10 20:32:25 +0000280 } else if (is_kernel_in_hyp_mode() || !icache_is_vpipt()) {
281 /* PIPT or VPIPT at EL2 (see comment in __kvm_tlb_flush_vmid_ipa) */
Marc Zyngiera15f6932017-10-23 17:11:15 +0100282 void *va = page_address(pfn_to_page(pfn));
283
Marc Zyngier4fee9472017-10-23 17:11:16 +0100284 invalidate_icache_range((unsigned long)va,
285 (unsigned long)va + size);
Marc Zyngier37c43752012-12-10 15:35:24 +0000286 }
287}
288
Marc Zyngier363ef892014-12-19 16:48:06 +0000289static inline void __kvm_flush_dcache_pte(pte_t pte)
290{
291 struct page *page = pte_page(pte);
292 kvm_flush_dcache_to_poc(page_address(page), PAGE_SIZE);
293}
294
295static inline void __kvm_flush_dcache_pmd(pmd_t pmd)
296{
297 struct page *page = pmd_page(pmd);
298 kvm_flush_dcache_to_poc(page_address(page), PMD_SIZE);
299}
300
301static inline void __kvm_flush_dcache_pud(pud_t pud)
302{
303 struct page *page = pud_page(pud);
304 kvm_flush_dcache_to_poc(page_address(page), PUD_SIZE);
305}
306
Laura Abbott2077be62017-01-10 13:35:49 -0800307#define kvm_virt_to_phys(x) __pa_symbol(x)
Marc Zyngier37c43752012-12-10 15:35:24 +0000308
Marc Zyngier3c1e7162014-12-19 16:05:31 +0000309void kvm_set_way_flush(struct kvm_vcpu *vcpu);
310void kvm_toggle_cache(struct kvm_vcpu *vcpu, bool was_enabled);
Marc Zyngier9d218a12014-01-15 12:50:23 +0000311
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000312static inline bool __kvm_cpu_uses_extended_idmap(void)
313{
Kristina Martsenkofa2a8442017-12-13 17:07:24 +0000314 return __cpu_uses_extended_idmap_level();
315}
316
317static inline unsigned long __kvm_idmap_ptrs_per_pgd(void)
318{
319 return idmap_ptrs_per_pgd;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000320}
321
Kristina Martsenko19338302017-12-13 17:07:20 +0000322/*
323 * Can't use pgd_populate here, because the extended idmap adds an extra level
324 * above CONFIG_PGTABLE_LEVELS (which is 2 or 3 if we're using the extended
325 * idmap), and pgd_populate is only available if CONFIG_PGTABLE_LEVELS = 4.
326 */
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000327static inline void __kvm_extend_hypmap(pgd_t *boot_hyp_pgd,
328 pgd_t *hyp_pgd,
329 pgd_t *merged_hyp_pgd,
330 unsigned long hyp_idmap_start)
331{
332 int idmap_idx;
Kristina Martsenko75387b92017-12-13 17:07:21 +0000333 u64 pgd_addr;
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000334
335 /*
336 * Use the first entry to access the HYP mappings. It is
337 * guaranteed to be free, otherwise we wouldn't use an
338 * extended idmap.
339 */
340 VM_BUG_ON(pgd_val(merged_hyp_pgd[0]));
Kristina Martsenko75387b92017-12-13 17:07:21 +0000341 pgd_addr = __phys_to_pgd_val(__pa(hyp_pgd));
342 merged_hyp_pgd[0] = __pgd(pgd_addr | PMD_TYPE_TABLE);
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000343
344 /*
345 * Create another extended level entry that points to the boot HYP map,
346 * which contains an ID mapping of the HYP init code. We essentially
347 * merge the boot and runtime HYP maps by doing so, but they don't
348 * overlap anyway, so this is fine.
349 */
350 idmap_idx = hyp_idmap_start >> VA_BITS;
351 VM_BUG_ON(pgd_val(merged_hyp_pgd[idmap_idx]));
Kristina Martsenko75387b92017-12-13 17:07:21 +0000352 pgd_addr = __phys_to_pgd_val(__pa(boot_hyp_pgd));
353 merged_hyp_pgd[idmap_idx] = __pgd(pgd_addr | PMD_TYPE_TABLE);
Ard Biesheuvele4c5a682015-03-19 16:42:28 +0000354}
355
Vladimir Murzin20475f72015-11-16 11:28:18 +0000356static inline unsigned int kvm_get_vmid_bits(void)
357{
Dave Martin46823dd2017-03-23 15:14:39 +0000358 int reg = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1);
Vladimir Murzin20475f72015-11-16 11:28:18 +0000359
Suzuki K Poulose28c5dcb2016-01-26 10:58:16 +0000360 return (cpuid_feature_extract_unsigned_field(reg, ID_AA64MMFR1_VMIDBITS_SHIFT) == 2) ? 16 : 8;
Vladimir Murzin20475f72015-11-16 11:28:18 +0000361}
362
Marc Zyngier6840bdd2018-01-03 16:38:35 +0000363#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
364#include <asm/mmu.h>
365
366static inline void *kvm_get_hyp_vector(void)
367{
368 struct bp_hardening_data *data = arm64_get_bp_hardening_data();
369 void *vect = kvm_ksym_ref(__kvm_hyp_vector);
370
371 if (data->fn) {
372 vect = __bp_harden_hyp_vecs_start +
373 data->hyp_vectors_slot * SZ_2K;
374
375 if (!has_vhe())
376 vect = lm_alias(vect);
377 }
378
Marc Zyngier3c5e8122018-02-12 16:50:19 +0000379 vect = kern_hyp_va(vect);
Marc Zyngier6840bdd2018-01-03 16:38:35 +0000380 return vect;
381}
382
383static inline int kvm_map_vectors(void)
384{
Marc Zyngier4340ba82018-03-14 13:28:50 +0000385 return 0;
Marc Zyngier6840bdd2018-01-03 16:38:35 +0000386}
387
388#else
389static inline void *kvm_get_hyp_vector(void)
390{
Marc Zyngier3c5e8122018-02-12 16:50:19 +0000391 return kern_hyp_va(kvm_ksym_ref(__kvm_hyp_vector));
Marc Zyngier6840bdd2018-01-03 16:38:35 +0000392}
393
394static inline int kvm_map_vectors(void)
395{
396 return 0;
397}
398#endif
399
Kristina Martsenko529c4b02017-12-13 17:07:18 +0000400#define kvm_phys_to_vttbr(addr) phys_to_ttbr(addr)
401
Marc Zyngier37c43752012-12-10 15:35:24 +0000402#endif /* __ASSEMBLY__ */
403#endif /* __ARM64_KVM_MMU_H__ */