blob: 0988d9e04dd4c21dab8eae53205e92fafe809dfd [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Author: Christoffer Dall <c.dall@virtualopensystems.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, write to the Free Software
16 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -050018
19#include <linux/mman.h>
20#include <linux/kvm_host.h>
21#include <linux/io.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050022#include <trace/events/kvm.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050023#include <asm/pgalloc.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050024#include <asm/cacheflush.h>
Christoffer Dall342cd0a2013-01-20 18:28:06 -050025#include <asm/kvm_arm.h>
26#include <asm/kvm_mmu.h>
Christoffer Dall45e96ea2013-01-20 18:43:58 -050027#include <asm/kvm_mmio.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050028#include <asm/kvm_asm.h>
Christoffer Dall94f8e642013-01-20 18:28:12 -050029#include <asm/kvm_emulate.h>
Christoffer Dalld5d81842013-01-20 18:28:07 -050030
31#include "trace.h"
Christoffer Dall342cd0a2013-01-20 18:28:06 -050032
33extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[];
34
Marc Zyngier5a677ce2013-04-12 19:12:06 +010035static pgd_t *boot_hyp_pgd;
Marc Zyngier2fb41052013-04-12 19:12:03 +010036static pgd_t *hyp_pgd;
Christoffer Dall342cd0a2013-01-20 18:28:06 -050037static DEFINE_MUTEX(kvm_hyp_pgd_mutex);
38
Marc Zyngier5a677ce2013-04-12 19:12:06 +010039static void *init_bounce_page;
40static unsigned long hyp_idmap_start;
41static unsigned long hyp_idmap_end;
42static phys_addr_t hyp_idmap_vector;
43
Marc Zyngier48762762013-01-28 15:27:00 +000044static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa)
Christoffer Dalld5d81842013-01-20 18:28:07 -050045{
Marc Zyngierd4cb9df52013-05-14 12:11:34 +010046 /*
47 * This function also gets called when dealing with HYP page
48 * tables. As HYP doesn't have an associated struct kvm (and
49 * the HYP page tables are fairly static), we don't do
50 * anything there.
51 */
52 if (kvm)
53 kvm_call_hyp(__kvm_tlb_flush_vmid_ipa, kvm, ipa);
Christoffer Dalld5d81842013-01-20 18:28:07 -050054}
55
Christoffer Dalld5d81842013-01-20 18:28:07 -050056static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
57 int min, int max)
58{
59 void *page;
60
61 BUG_ON(max > KVM_NR_MEM_OBJS);
62 if (cache->nobjs >= min)
63 return 0;
64 while (cache->nobjs < max) {
65 page = (void *)__get_free_page(PGALLOC_GFP);
66 if (!page)
67 return -ENOMEM;
68 cache->objects[cache->nobjs++] = page;
69 }
70 return 0;
71}
72
73static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc)
74{
75 while (mc->nobjs)
76 free_page((unsigned long)mc->objects[--mc->nobjs]);
77}
78
79static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
80{
81 void *p;
82
83 BUG_ON(!mc || !mc->nobjs);
84 p = mc->objects[--mc->nobjs];
85 return p;
86}
87
Marc Zyngierce7fc742013-08-06 13:05:48 +010088static bool page_empty(void *ptr)
89{
90 struct page *ptr_page = virt_to_page(ptr);
91 return page_count(ptr_page) == 1;
92}
93
Marc Zyngierd4cb9df52013-05-14 12:11:34 +010094static void clear_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -050095{
Marc Zyngier4f728272013-04-12 19:12:05 +010096 pmd_t *pmd_table = pmd_offset(pud, 0);
97 pud_clear(pud);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +010098 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier4f728272013-04-12 19:12:05 +010099 pmd_free(NULL, pmd_table);
100 put_page(virt_to_page(pud));
101}
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500102
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100103static void clear_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100104{
105 pte_t *pte_table = pte_offset_kernel(pmd, 0);
106 pmd_clear(pmd);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100107 kvm_tlb_flush_vmid_ipa(kvm, addr);
Marc Zyngier4f728272013-04-12 19:12:05 +0100108 pte_free_kernel(NULL, pte_table);
109 put_page(virt_to_page(pmd));
110}
111
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100112static void clear_pte_entry(struct kvm *kvm, pte_t *pte, phys_addr_t addr)
Marc Zyngier4f728272013-04-12 19:12:05 +0100113{
114 if (pte_present(*pte)) {
115 kvm_set_pte(pte, __pte(0));
116 put_page(virt_to_page(pte));
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100117 kvm_tlb_flush_vmid_ipa(kvm, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500118 }
119}
120
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100121static void unmap_range(struct kvm *kvm, pgd_t *pgdp,
122 unsigned long long start, u64 size)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500123{
124 pgd_t *pgd;
125 pud_t *pud;
126 pmd_t *pmd;
Marc Zyngier4f728272013-04-12 19:12:05 +0100127 pte_t *pte;
128 unsigned long long addr = start, end = start + size;
Christoffer Dall3b180da2013-08-06 13:50:54 -0700129 u64 next;
Marc Zyngier000d3992013-03-05 02:43:17 +0000130
Marc Zyngier4f728272013-04-12 19:12:05 +0100131 while (addr < end) {
132 pgd = pgdp + pgd_index(addr);
133 pud = pud_offset(pgd, addr);
134 if (pud_none(*pud)) {
Christoffer Dall3b180da2013-08-06 13:50:54 -0700135 addr = pud_addr_end(addr, end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100136 continue;
137 }
Marc Zyngier000d3992013-03-05 02:43:17 +0000138
Marc Zyngier4f728272013-04-12 19:12:05 +0100139 pmd = pmd_offset(pud, addr);
140 if (pmd_none(*pmd)) {
Christoffer Dall3b180da2013-08-06 13:50:54 -0700141 addr = pmd_addr_end(addr, end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100142 continue;
143 }
Marc Zyngier000d3992013-03-05 02:43:17 +0000144
Marc Zyngier4f728272013-04-12 19:12:05 +0100145 pte = pte_offset_kernel(pmd, addr);
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100146 clear_pte_entry(kvm, pte, addr);
Christoffer Dall3b180da2013-08-06 13:50:54 -0700147 next = addr + PAGE_SIZE;
Marc Zyngier4f728272013-04-12 19:12:05 +0100148
149 /* If we emptied the pte, walk back up the ladder */
Marc Zyngierce7fc742013-08-06 13:05:48 +0100150 if (page_empty(pte)) {
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100151 clear_pmd_entry(kvm, pmd, addr);
Christoffer Dall3b180da2013-08-06 13:50:54 -0700152 next = pmd_addr_end(addr, end);
Marc Zyngierce7fc742013-08-06 13:05:48 +0100153 if (page_empty(pmd) && !page_empty(pud)) {
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100154 clear_pud_entry(kvm, pud, addr);
Christoffer Dall3b180da2013-08-06 13:50:54 -0700155 next = pud_addr_end(addr, end);
Marc Zyngier4f728272013-04-12 19:12:05 +0100156 }
157 }
158
Christoffer Dall3b180da2013-08-06 13:50:54 -0700159 addr = next;
Marc Zyngier4f728272013-04-12 19:12:05 +0100160 }
Marc Zyngier000d3992013-03-05 02:43:17 +0000161}
162
163/**
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100164 * free_boot_hyp_pgd - free HYP boot page tables
165 *
166 * Free the HYP boot page tables. The bounce page is also freed.
167 */
168void free_boot_hyp_pgd(void)
169{
170 mutex_lock(&kvm_hyp_pgd_mutex);
171
172 if (boot_hyp_pgd) {
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100173 unmap_range(NULL, boot_hyp_pgd, hyp_idmap_start, PAGE_SIZE);
174 unmap_range(NULL, boot_hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100175 kfree(boot_hyp_pgd);
176 boot_hyp_pgd = NULL;
177 }
178
179 if (hyp_pgd)
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100180 unmap_range(NULL, hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100181
182 kfree(init_bounce_page);
183 init_bounce_page = NULL;
184
185 mutex_unlock(&kvm_hyp_pgd_mutex);
186}
187
188/**
Marc Zyngier4f728272013-04-12 19:12:05 +0100189 * free_hyp_pgds - free Hyp-mode page tables
Marc Zyngier000d3992013-03-05 02:43:17 +0000190 *
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100191 * Assumes hyp_pgd is a page table used strictly in Hyp-mode and
192 * therefore contains either mappings in the kernel memory area (above
193 * PAGE_OFFSET), or device mappings in the vmalloc range (from
194 * VMALLOC_START to VMALLOC_END).
195 *
196 * boot_hyp_pgd should only map two pages for the init code.
Marc Zyngier000d3992013-03-05 02:43:17 +0000197 */
Marc Zyngier4f728272013-04-12 19:12:05 +0100198void free_hyp_pgds(void)
Marc Zyngier000d3992013-03-05 02:43:17 +0000199{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500200 unsigned long addr;
201
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100202 free_boot_hyp_pgd();
Marc Zyngier4f728272013-04-12 19:12:05 +0100203
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100204 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100205
Marc Zyngier4f728272013-04-12 19:12:05 +0100206 if (hyp_pgd) {
207 for (addr = PAGE_OFFSET; virt_addr_valid(addr); addr += PGDIR_SIZE)
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100208 unmap_range(NULL, hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE);
Marc Zyngier4f728272013-04-12 19:12:05 +0100209 for (addr = VMALLOC_START; is_vmalloc_addr((void*)addr); addr += PGDIR_SIZE)
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100210 unmap_range(NULL, hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE);
211
Marc Zyngier4f728272013-04-12 19:12:05 +0100212 kfree(hyp_pgd);
Marc Zyngierd157f4a2013-04-12 19:12:07 +0100213 hyp_pgd = NULL;
Marc Zyngier4f728272013-04-12 19:12:05 +0100214 }
215
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500216 mutex_unlock(&kvm_hyp_pgd_mutex);
217}
218
219static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100220 unsigned long end, unsigned long pfn,
221 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500222{
223 pte_t *pte;
224 unsigned long addr;
225
Marc Zyngier3562c762013-04-12 19:12:02 +0100226 addr = start;
227 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100228 pte = pte_offset_kernel(pmd, addr);
229 kvm_set_pte(pte, pfn_pte(pfn, prot));
Marc Zyngier4f728272013-04-12 19:12:05 +0100230 get_page(virt_to_page(pte));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100231 kvm_flush_dcache_to_poc(pte, sizeof(*pte));
Marc Zyngier6060df82013-04-12 19:12:01 +0100232 pfn++;
Marc Zyngier3562c762013-04-12 19:12:02 +0100233 } while (addr += PAGE_SIZE, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500234}
235
236static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start,
Marc Zyngier6060df82013-04-12 19:12:01 +0100237 unsigned long end, unsigned long pfn,
238 pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500239{
240 pmd_t *pmd;
241 pte_t *pte;
242 unsigned long addr, next;
243
Marc Zyngier3562c762013-04-12 19:12:02 +0100244 addr = start;
245 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100246 pmd = pmd_offset(pud, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500247
248 BUG_ON(pmd_sect(*pmd));
249
250 if (pmd_none(*pmd)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100251 pte = pte_alloc_one_kernel(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500252 if (!pte) {
253 kvm_err("Cannot allocate Hyp pte\n");
254 return -ENOMEM;
255 }
256 pmd_populate_kernel(NULL, pmd, pte);
Marc Zyngier4f728272013-04-12 19:12:05 +0100257 get_page(virt_to_page(pmd));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100258 kvm_flush_dcache_to_poc(pmd, sizeof(*pmd));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500259 }
260
261 next = pmd_addr_end(addr, end);
262
Marc Zyngier6060df82013-04-12 19:12:01 +0100263 create_hyp_pte_mappings(pmd, addr, next, pfn, prot);
264 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100265 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500266
267 return 0;
268}
269
Marc Zyngier6060df82013-04-12 19:12:01 +0100270static int __create_hyp_mappings(pgd_t *pgdp,
271 unsigned long start, unsigned long end,
272 unsigned long pfn, pgprot_t prot)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500273{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500274 pgd_t *pgd;
275 pud_t *pud;
276 pmd_t *pmd;
277 unsigned long addr, next;
278 int err = 0;
279
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500280 mutex_lock(&kvm_hyp_pgd_mutex);
Marc Zyngier3562c762013-04-12 19:12:02 +0100281 addr = start & PAGE_MASK;
282 end = PAGE_ALIGN(end);
283 do {
Marc Zyngier6060df82013-04-12 19:12:01 +0100284 pgd = pgdp + pgd_index(addr);
285 pud = pud_offset(pgd, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500286
287 if (pud_none_or_clear_bad(pud)) {
Marc Zyngier6060df82013-04-12 19:12:01 +0100288 pmd = pmd_alloc_one(NULL, addr);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500289 if (!pmd) {
290 kvm_err("Cannot allocate Hyp pmd\n");
291 err = -ENOMEM;
292 goto out;
293 }
294 pud_populate(NULL, pud, pmd);
Marc Zyngier4f728272013-04-12 19:12:05 +0100295 get_page(virt_to_page(pud));
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100296 kvm_flush_dcache_to_poc(pud, sizeof(*pud));
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500297 }
298
299 next = pgd_addr_end(addr, end);
Marc Zyngier6060df82013-04-12 19:12:01 +0100300 err = create_hyp_pmd_mappings(pud, addr, next, pfn, prot);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500301 if (err)
302 goto out;
Marc Zyngier6060df82013-04-12 19:12:01 +0100303 pfn += (next - addr) >> PAGE_SHIFT;
Marc Zyngier3562c762013-04-12 19:12:02 +0100304 } while (addr = next, addr != end);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500305out:
306 mutex_unlock(&kvm_hyp_pgd_mutex);
307 return err;
308}
309
310/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100311 * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500312 * @from: The virtual kernel start address of the range
313 * @to: The virtual kernel end address of the range (exclusive)
314 *
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100315 * The same virtual address as the kernel virtual address is also used
316 * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying
317 * physical pages.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500318 */
319int create_hyp_mappings(void *from, void *to)
320{
Marc Zyngier6060df82013-04-12 19:12:01 +0100321 unsigned long phys_addr = virt_to_phys(from);
322 unsigned long start = KERN_TO_HYP((unsigned long)from);
323 unsigned long end = KERN_TO_HYP((unsigned long)to);
324
325 /* Check for a valid kernel memory mapping */
326 if (!virt_addr_valid(from) || !virt_addr_valid(to - 1))
327 return -EINVAL;
328
329 return __create_hyp_mappings(hyp_pgd, start, end,
330 __phys_to_pfn(phys_addr), PAGE_HYP);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500331}
332
333/**
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100334 * create_hyp_io_mappings - duplicate a kernel IO mapping into Hyp mode
335 * @from: The kernel start VA of the range
336 * @to: The kernel end VA of the range (exclusive)
Marc Zyngier6060df82013-04-12 19:12:01 +0100337 * @phys_addr: The physical start address which gets mapped
Marc Zyngier06e8c3b2012-10-28 01:09:14 +0100338 *
339 * The resulting HYP VA is the same as the kernel VA, modulo
340 * HYP_PAGE_OFFSET.
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500341 */
Marc Zyngier6060df82013-04-12 19:12:01 +0100342int create_hyp_io_mappings(void *from, void *to, phys_addr_t phys_addr)
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500343{
Marc Zyngier6060df82013-04-12 19:12:01 +0100344 unsigned long start = KERN_TO_HYP((unsigned long)from);
345 unsigned long end = KERN_TO_HYP((unsigned long)to);
346
347 /* Check for a valid kernel IO mapping */
348 if (!is_vmalloc_addr(from) || !is_vmalloc_addr(to - 1))
349 return -EINVAL;
350
351 return __create_hyp_mappings(hyp_pgd, start, end,
352 __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE);
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500353}
354
Christoffer Dalld5d81842013-01-20 18:28:07 -0500355/**
356 * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation.
357 * @kvm: The KVM struct pointer for the VM.
358 *
359 * Allocates the 1st level table only of size defined by S2_PGD_ORDER (can
360 * support either full 40-bit input addresses or limited to 32-bit input
361 * addresses). Clears the allocated pages.
362 *
363 * Note we don't need locking here as this is only called when the VM is
364 * created, which can only be done once.
365 */
366int kvm_alloc_stage2_pgd(struct kvm *kvm)
367{
368 pgd_t *pgd;
369
370 if (kvm->arch.pgd != NULL) {
371 kvm_err("kvm_arch already initialized?\n");
372 return -EINVAL;
373 }
374
375 pgd = (pgd_t *)__get_free_pages(GFP_KERNEL, S2_PGD_ORDER);
376 if (!pgd)
377 return -ENOMEM;
378
Christoffer Dalld5d81842013-01-20 18:28:07 -0500379 memset(pgd, 0, PTRS_PER_S2_PGD * sizeof(pgd_t));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100380 kvm_clean_pgd(pgd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500381 kvm->arch.pgd = pgd;
382
383 return 0;
384}
385
Christoffer Dalld5d81842013-01-20 18:28:07 -0500386/**
387 * unmap_stage2_range -- Clear stage2 page table entries to unmap a range
388 * @kvm: The VM pointer
389 * @start: The intermediate physical base address of the range to unmap
390 * @size: The size of the area to unmap
391 *
392 * Clear a range of stage-2 mappings, lowering the various ref-counts. Must
393 * be called while holding mmu_lock (unless for freeing the stage2 pgd before
394 * destroying the VM), otherwise another faulting VCPU may come in and mess
395 * with things behind our backs.
396 */
397static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size)
398{
Marc Zyngierd4cb9df52013-05-14 12:11:34 +0100399 unmap_range(kvm, kvm->arch.pgd, start, size);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500400}
401
402/**
403 * kvm_free_stage2_pgd - free all stage-2 tables
404 * @kvm: The KVM struct pointer for the VM.
405 *
406 * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all
407 * underlying level-2 and level-3 tables before freeing the actual level-1 table
408 * and setting the struct pointer to NULL.
409 *
410 * Note we don't need locking here as this is only called when the VM is
411 * destroyed, which can only be done once.
412 */
413void kvm_free_stage2_pgd(struct kvm *kvm)
414{
415 if (kvm->arch.pgd == NULL)
416 return;
417
418 unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE);
419 free_pages((unsigned long)kvm->arch.pgd, S2_PGD_ORDER);
420 kvm->arch.pgd = NULL;
421}
422
423
424static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache,
425 phys_addr_t addr, const pte_t *new_pte, bool iomap)
426{
427 pgd_t *pgd;
428 pud_t *pud;
429 pmd_t *pmd;
430 pte_t *pte, old_pte;
431
432 /* Create 2nd stage page table mapping - Level 1 */
433 pgd = kvm->arch.pgd + pgd_index(addr);
434 pud = pud_offset(pgd, addr);
435 if (pud_none(*pud)) {
436 if (!cache)
437 return 0; /* ignore calls from kvm_set_spte_hva */
438 pmd = mmu_memory_cache_alloc(cache);
439 pud_populate(NULL, pud, pmd);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500440 get_page(virt_to_page(pud));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100441 }
442
443 pmd = pmd_offset(pud, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500444
445 /* Create 2nd stage page table mapping - Level 2 */
446 if (pmd_none(*pmd)) {
447 if (!cache)
448 return 0; /* ignore calls from kvm_set_spte_hva */
449 pte = mmu_memory_cache_alloc(cache);
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100450 kvm_clean_pte(pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500451 pmd_populate_kernel(NULL, pmd, pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500452 get_page(virt_to_page(pmd));
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100453 }
454
455 pte = pte_offset_kernel(pmd, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500456
457 if (iomap && pte_present(*pte))
458 return -EFAULT;
459
460 /* Create 2nd stage page table mapping - Level 3 */
461 old_pte = *pte;
462 kvm_set_pte(pte, *new_pte);
463 if (pte_present(old_pte))
Marc Zyngier48762762013-01-28 15:27:00 +0000464 kvm_tlb_flush_vmid_ipa(kvm, addr);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500465 else
466 get_page(virt_to_page(pte));
467
468 return 0;
469}
470
471/**
472 * kvm_phys_addr_ioremap - map a device range to guest IPA
473 *
474 * @kvm: The KVM pointer
475 * @guest_ipa: The IPA at which to insert the mapping
476 * @pa: The physical address of the device
477 * @size: The size of the mapping
478 */
479int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa,
480 phys_addr_t pa, unsigned long size)
481{
482 phys_addr_t addr, end;
483 int ret = 0;
484 unsigned long pfn;
485 struct kvm_mmu_memory_cache cache = { 0, };
486
487 end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK;
488 pfn = __phys_to_pfn(pa);
489
490 for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100491 pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE);
492 kvm_set_s2pte_writable(&pte);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500493
494 ret = mmu_topup_memory_cache(&cache, 2, 2);
495 if (ret)
496 goto out;
497 spin_lock(&kvm->mmu_lock);
498 ret = stage2_set_pte(kvm, &cache, addr, &pte, true);
499 spin_unlock(&kvm->mmu_lock);
500 if (ret)
501 goto out;
502
503 pfn++;
504 }
505
506out:
507 mmu_free_memory_cache(&cache);
508 return ret;
509}
510
Christoffer Dall94f8e642013-01-20 18:28:12 -0500511static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa,
512 gfn_t gfn, struct kvm_memory_slot *memslot,
513 unsigned long fault_status)
514{
515 pte_t new_pte;
516 pfn_t pfn;
517 int ret;
518 bool write_fault, writable;
519 unsigned long mmu_seq;
520 struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache;
521
Marc Zyngier7393b592012-09-17 19:27:09 +0100522 write_fault = kvm_is_write_fault(kvm_vcpu_get_hsr(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -0500523 if (fault_status == FSC_PERM && !write_fault) {
524 kvm_err("Unexpected L2 read permission error\n");
525 return -EFAULT;
526 }
527
528 /* We need minimum second+third level pages */
529 ret = mmu_topup_memory_cache(memcache, 2, KVM_NR_MEM_OBJS);
530 if (ret)
531 return ret;
532
533 mmu_seq = vcpu->kvm->mmu_notifier_seq;
534 /*
535 * Ensure the read of mmu_notifier_seq happens before we call
536 * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk
537 * the page we just got a reference to gets unmapped before we have a
538 * chance to grab the mmu_lock, which ensure that if the page gets
539 * unmapped afterwards, the call to kvm_unmap_hva will take it away
540 * from us again properly. This smp_rmb() interacts with the smp_wmb()
541 * in kvm_mmu_notifier_invalidate_<page|range_end>.
542 */
543 smp_rmb();
544
545 pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write_fault, &writable);
546 if (is_error_pfn(pfn))
547 return -EFAULT;
548
549 new_pte = pfn_pte(pfn, PAGE_S2);
550 coherent_icache_guest_page(vcpu->kvm, gfn);
551
552 spin_lock(&vcpu->kvm->mmu_lock);
553 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
554 goto out_unlock;
555 if (writable) {
Marc Zyngierc62ee2b2012-10-15 11:27:37 +0100556 kvm_set_s2pte_writable(&new_pte);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500557 kvm_set_pfn_dirty(pfn);
558 }
559 stage2_set_pte(vcpu->kvm, memcache, fault_ipa, &new_pte, false);
560
561out_unlock:
562 spin_unlock(&vcpu->kvm->mmu_lock);
563 kvm_release_pfn_clean(pfn);
564 return 0;
565}
566
567/**
568 * kvm_handle_guest_abort - handles all 2nd stage aborts
569 * @vcpu: the VCPU pointer
570 * @run: the kvm_run structure
571 *
572 * Any abort that gets to the host is almost guaranteed to be caused by a
573 * missing second stage translation table entry, which can mean that either the
574 * guest simply needs more memory and we must allocate an appropriate page or it
575 * can mean that the guest tried to access I/O memory, which is emulated by user
576 * space. The distinction is based on the IPA causing the fault and whether this
577 * memory region has been registered as standard RAM by user space.
578 */
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500579int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run)
580{
Christoffer Dall94f8e642013-01-20 18:28:12 -0500581 unsigned long fault_status;
582 phys_addr_t fault_ipa;
583 struct kvm_memory_slot *memslot;
584 bool is_iabt;
585 gfn_t gfn;
586 int ret, idx;
587
Marc Zyngier52d1dba2012-10-15 10:33:38 +0100588 is_iabt = kvm_vcpu_trap_is_iabt(vcpu);
Marc Zyngier7393b592012-09-17 19:27:09 +0100589 fault_ipa = kvm_vcpu_get_fault_ipa(vcpu);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500590
Marc Zyngier7393b592012-09-17 19:27:09 +0100591 trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu),
592 kvm_vcpu_get_hfar(vcpu), fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500593
594 /* Check the stage-2 fault is trans. fault or write fault */
Marc Zyngier1cc287d2012-09-18 14:14:35 +0100595 fault_status = kvm_vcpu_trap_get_fault(vcpu);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500596 if (fault_status != FSC_FAULT && fault_status != FSC_PERM) {
Marc Zyngier52d1dba2012-10-15 10:33:38 +0100597 kvm_err("Unsupported fault status: EC=%#x DFCS=%#lx\n",
598 kvm_vcpu_trap_get_class(vcpu), fault_status);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500599 return -EFAULT;
600 }
601
602 idx = srcu_read_lock(&vcpu->kvm->srcu);
603
604 gfn = fault_ipa >> PAGE_SHIFT;
605 if (!kvm_is_visible_gfn(vcpu->kvm, gfn)) {
606 if (is_iabt) {
607 /* Prefetch Abort on I/O address */
Marc Zyngier7393b592012-09-17 19:27:09 +0100608 kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu));
Christoffer Dall94f8e642013-01-20 18:28:12 -0500609 ret = 1;
610 goto out_unlock;
611 }
612
613 if (fault_status != FSC_FAULT) {
614 kvm_err("Unsupported fault status on io memory: %#lx\n",
615 fault_status);
616 ret = -EFAULT;
617 goto out_unlock;
618 }
619
Marc Zyngiercfe39502012-12-12 14:42:09 +0000620 /*
621 * The IPA is reported as [MAX:12], so we need to
622 * complement it with the bottom 12 bits from the
623 * faulting VA. This is always 12 bits, irrespective
624 * of the page size.
625 */
626 fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1);
Christoffer Dall45e96ea2013-01-20 18:43:58 -0500627 ret = io_mem_abort(vcpu, run, fault_ipa);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500628 goto out_unlock;
629 }
630
631 memslot = gfn_to_memslot(vcpu->kvm, gfn);
Christoffer Dall94f8e642013-01-20 18:28:12 -0500632
633 ret = user_mem_abort(vcpu, fault_ipa, gfn, memslot, fault_status);
634 if (ret == 0)
635 ret = 1;
636out_unlock:
637 srcu_read_unlock(&vcpu->kvm->srcu, idx);
638 return ret;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500639}
640
Christoffer Dalld5d81842013-01-20 18:28:07 -0500641static void handle_hva_to_gpa(struct kvm *kvm,
642 unsigned long start,
643 unsigned long end,
644 void (*handler)(struct kvm *kvm,
645 gpa_t gpa, void *data),
646 void *data)
647{
648 struct kvm_memslots *slots;
649 struct kvm_memory_slot *memslot;
650
651 slots = kvm_memslots(kvm);
652
653 /* we only care about the pages that the guest sees */
654 kvm_for_each_memslot(memslot, slots) {
655 unsigned long hva_start, hva_end;
656 gfn_t gfn, gfn_end;
657
658 hva_start = max(start, memslot->userspace_addr);
659 hva_end = min(end, memslot->userspace_addr +
660 (memslot->npages << PAGE_SHIFT));
661 if (hva_start >= hva_end)
662 continue;
663
664 /*
665 * {gfn(page) | page intersects with [hva_start, hva_end)} =
666 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
667 */
668 gfn = hva_to_gfn_memslot(hva_start, memslot);
669 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
670
671 for (; gfn < gfn_end; ++gfn) {
672 gpa_t gpa = gfn << PAGE_SHIFT;
673 handler(kvm, gpa, data);
674 }
675 }
676}
677
678static void kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, void *data)
679{
680 unmap_stage2_range(kvm, gpa, PAGE_SIZE);
Christoffer Dalld5d81842013-01-20 18:28:07 -0500681}
682
683int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
684{
685 unsigned long end = hva + PAGE_SIZE;
686
687 if (!kvm->arch.pgd)
688 return 0;
689
690 trace_kvm_unmap_hva(hva);
691 handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL);
692 return 0;
693}
694
695int kvm_unmap_hva_range(struct kvm *kvm,
696 unsigned long start, unsigned long end)
697{
698 if (!kvm->arch.pgd)
699 return 0;
700
701 trace_kvm_unmap_hva_range(start, end);
702 handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL);
703 return 0;
704}
705
706static void kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, void *data)
707{
708 pte_t *pte = (pte_t *)data;
709
710 stage2_set_pte(kvm, NULL, gpa, pte, false);
711}
712
713
714void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
715{
716 unsigned long end = hva + PAGE_SIZE;
717 pte_t stage2_pte;
718
719 if (!kvm->arch.pgd)
720 return;
721
722 trace_kvm_set_spte_hva(hva);
723 stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2);
724 handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte);
725}
726
727void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu)
728{
729 mmu_free_memory_cache(&vcpu->arch.mmu_page_cache);
730}
731
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500732phys_addr_t kvm_mmu_get_httbr(void)
733{
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500734 return virt_to_phys(hyp_pgd);
735}
736
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100737phys_addr_t kvm_mmu_get_boot_httbr(void)
738{
739 return virt_to_phys(boot_hyp_pgd);
740}
741
742phys_addr_t kvm_get_idmap_vector(void)
743{
744 return hyp_idmap_vector;
745}
746
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500747int kvm_mmu_init(void)
748{
Marc Zyngier2fb41052013-04-12 19:12:03 +0100749 int err;
750
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100751 hyp_idmap_start = virt_to_phys(__hyp_idmap_text_start);
752 hyp_idmap_end = virt_to_phys(__hyp_idmap_text_end);
753 hyp_idmap_vector = virt_to_phys(__kvm_hyp_init);
754
755 if ((hyp_idmap_start ^ hyp_idmap_end) & PAGE_MASK) {
756 /*
757 * Our init code is crossing a page boundary. Allocate
758 * a bounce page, copy the code over and use that.
759 */
760 size_t len = __hyp_idmap_text_end - __hyp_idmap_text_start;
761 phys_addr_t phys_base;
762
763 init_bounce_page = kmalloc(PAGE_SIZE, GFP_KERNEL);
764 if (!init_bounce_page) {
765 kvm_err("Couldn't allocate HYP init bounce page\n");
766 err = -ENOMEM;
767 goto out;
768 }
769
770 memcpy(init_bounce_page, __hyp_idmap_text_start, len);
771 /*
772 * Warning: the code we just copied to the bounce page
773 * must be flushed to the point of coherency.
774 * Otherwise, the data may be sitting in L2, and HYP
775 * mode won't be able to observe it as it runs with
776 * caches off at that point.
777 */
778 kvm_flush_dcache_to_poc(init_bounce_page, len);
779
780 phys_base = virt_to_phys(init_bounce_page);
781 hyp_idmap_vector += phys_base - hyp_idmap_start;
782 hyp_idmap_start = phys_base;
783 hyp_idmap_end = phys_base + len;
784
785 kvm_info("Using HYP init bounce page @%lx\n",
786 (unsigned long)phys_base);
787 }
788
Marc Zyngier2fb41052013-04-12 19:12:03 +0100789 hyp_pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL);
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100790 boot_hyp_pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL);
791 if (!hyp_pgd || !boot_hyp_pgd) {
Christoffer Dalld5d81842013-01-20 18:28:07 -0500792 kvm_err("Hyp mode PGD not allocated\n");
Marc Zyngier2fb41052013-04-12 19:12:03 +0100793 err = -ENOMEM;
794 goto out;
795 }
796
797 /* Create the idmap in the boot page tables */
798 err = __create_hyp_mappings(boot_hyp_pgd,
799 hyp_idmap_start, hyp_idmap_end,
800 __phys_to_pfn(hyp_idmap_start),
801 PAGE_HYP);
802
803 if (err) {
804 kvm_err("Failed to idmap %lx-%lx\n",
805 hyp_idmap_start, hyp_idmap_end);
806 goto out;
Christoffer Dalld5d81842013-01-20 18:28:07 -0500807 }
808
Marc Zyngier5a677ce2013-04-12 19:12:06 +0100809 /* Map the very same page at the trampoline VA */
810 err = __create_hyp_mappings(boot_hyp_pgd,
811 TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE,
812 __phys_to_pfn(hyp_idmap_start),
813 PAGE_HYP);
814 if (err) {
815 kvm_err("Failed to map trampoline @%lx into boot HYP pgd\n",
816 TRAMPOLINE_VA);
817 goto out;
818 }
819
820 /* Map the same page again into the runtime page tables */
821 err = __create_hyp_mappings(hyp_pgd,
822 TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE,
823 __phys_to_pfn(hyp_idmap_start),
824 PAGE_HYP);
825 if (err) {
826 kvm_err("Failed to map trampoline @%lx into runtime HYP pgd\n",
827 TRAMPOLINE_VA);
828 goto out;
829 }
830
Christoffer Dalld5d81842013-01-20 18:28:07 -0500831 return 0;
Marc Zyngier2fb41052013-04-12 19:12:03 +0100832out:
Marc Zyngier4f728272013-04-12 19:12:05 +0100833 free_hyp_pgds();
Marc Zyngier2fb41052013-04-12 19:12:03 +0100834 return err;
Christoffer Dall342cd0a2013-01-20 18:28:06 -0500835}