Christoffer Dall | 749cf76c | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 1 | /* |
| 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 Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 18 | |
| 19 | #include <linux/mman.h> |
| 20 | #include <linux/kvm_host.h> |
| 21 | #include <linux/io.h> |
Christoffer Dall | 45e96ea | 2013-01-20 18:43:58 -0500 | [diff] [blame] | 22 | #include <trace/events/kvm.h> |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 23 | #include <asm/pgalloc.h> |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 24 | #include <asm/cacheflush.h> |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 25 | #include <asm/kvm_arm.h> |
| 26 | #include <asm/kvm_mmu.h> |
Christoffer Dall | 45e96ea | 2013-01-20 18:43:58 -0500 | [diff] [blame] | 27 | #include <asm/kvm_mmio.h> |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 28 | #include <asm/kvm_asm.h> |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 29 | #include <asm/kvm_emulate.h> |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 30 | |
| 31 | #include "trace.h" |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 32 | |
| 33 | extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[]; |
| 34 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 35 | static pgd_t *boot_hyp_pgd; |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 36 | static pgd_t *hyp_pgd; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 37 | static DEFINE_MUTEX(kvm_hyp_pgd_mutex); |
| 38 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 39 | static void *init_bounce_page; |
| 40 | static unsigned long hyp_idmap_start; |
| 41 | static unsigned long hyp_idmap_end; |
| 42 | static phys_addr_t hyp_idmap_vector; |
| 43 | |
Marc Zyngier | 4876276 | 2013-01-28 15:27:00 +0000 | [diff] [blame] | 44 | static void kvm_tlb_flush_vmid_ipa(struct kvm *kvm, phys_addr_t ipa) |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 45 | { |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 46 | /* |
| 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 Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 54 | } |
| 55 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 56 | static 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 | |
| 73 | static 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 | |
| 79 | static 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 Zyngier | 979acd5 | 2013-08-06 13:05:48 +0100 | [diff] [blame] | 88 | static 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 Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 94 | static void clear_pud_entry(struct kvm *kvm, pud_t *pud, phys_addr_t addr) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 95 | { |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 96 | pmd_t *pmd_table = pmd_offset(pud, 0); |
| 97 | pud_clear(pud); |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 98 | kvm_tlb_flush_vmid_ipa(kvm, addr); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 99 | pmd_free(NULL, pmd_table); |
| 100 | put_page(virt_to_page(pud)); |
| 101 | } |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 102 | |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 103 | static void clear_pmd_entry(struct kvm *kvm, pmd_t *pmd, phys_addr_t addr) |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 104 | { |
| 105 | pte_t *pte_table = pte_offset_kernel(pmd, 0); |
| 106 | pmd_clear(pmd); |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 107 | kvm_tlb_flush_vmid_ipa(kvm, addr); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 108 | pte_free_kernel(NULL, pte_table); |
| 109 | put_page(virt_to_page(pmd)); |
| 110 | } |
| 111 | |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 112 | static void clear_pte_entry(struct kvm *kvm, pte_t *pte, phys_addr_t addr) |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 113 | { |
| 114 | if (pte_present(*pte)) { |
| 115 | kvm_set_pte(pte, __pte(0)); |
| 116 | put_page(virt_to_page(pte)); |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 117 | kvm_tlb_flush_vmid_ipa(kvm, addr); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 121 | static void unmap_range(struct kvm *kvm, pgd_t *pgdp, |
| 122 | unsigned long long start, u64 size) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 123 | { |
| 124 | pgd_t *pgd; |
| 125 | pud_t *pud; |
| 126 | pmd_t *pmd; |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 127 | pte_t *pte; |
| 128 | unsigned long long addr = start, end = start + size; |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 129 | u64 next; |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 130 | |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 131 | while (addr < end) { |
| 132 | pgd = pgdp + pgd_index(addr); |
| 133 | pud = pud_offset(pgd, addr); |
| 134 | if (pud_none(*pud)) { |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 135 | addr = pud_addr_end(addr, end); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 136 | continue; |
| 137 | } |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 138 | |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 139 | pmd = pmd_offset(pud, addr); |
| 140 | if (pmd_none(*pmd)) { |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 141 | addr = pmd_addr_end(addr, end); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 142 | continue; |
| 143 | } |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 144 | |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 145 | pte = pte_offset_kernel(pmd, addr); |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 146 | clear_pte_entry(kvm, pte, addr); |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 147 | next = addr + PAGE_SIZE; |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 148 | |
| 149 | /* If we emptied the pte, walk back up the ladder */ |
Marc Zyngier | 979acd5 | 2013-08-06 13:05:48 +0100 | [diff] [blame] | 150 | if (page_empty(pte)) { |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 151 | clear_pmd_entry(kvm, pmd, addr); |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 152 | next = pmd_addr_end(addr, end); |
Marc Zyngier | 979acd5 | 2013-08-06 13:05:48 +0100 | [diff] [blame] | 153 | if (page_empty(pmd) && !page_empty(pud)) { |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 154 | clear_pud_entry(kvm, pud, addr); |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 155 | next = pud_addr_end(addr, end); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
Christoffer Dall | d3840b2 | 2013-08-06 13:50:54 -0700 | [diff] [blame] | 159 | addr = next; |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 160 | } |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /** |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 164 | * free_boot_hyp_pgd - free HYP boot page tables |
| 165 | * |
| 166 | * Free the HYP boot page tables. The bounce page is also freed. |
| 167 | */ |
| 168 | void free_boot_hyp_pgd(void) |
| 169 | { |
| 170 | mutex_lock(&kvm_hyp_pgd_mutex); |
| 171 | |
| 172 | if (boot_hyp_pgd) { |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 173 | unmap_range(NULL, boot_hyp_pgd, hyp_idmap_start, PAGE_SIZE); |
| 174 | unmap_range(NULL, boot_hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE); |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 175 | kfree(boot_hyp_pgd); |
| 176 | boot_hyp_pgd = NULL; |
| 177 | } |
| 178 | |
| 179 | if (hyp_pgd) |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 180 | unmap_range(NULL, hyp_pgd, TRAMPOLINE_VA, PAGE_SIZE); |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 181 | |
| 182 | kfree(init_bounce_page); |
| 183 | init_bounce_page = NULL; |
| 184 | |
| 185 | mutex_unlock(&kvm_hyp_pgd_mutex); |
| 186 | } |
| 187 | |
| 188 | /** |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 189 | * free_hyp_pgds - free Hyp-mode page tables |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 190 | * |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 191 | * 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 Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 197 | */ |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 198 | void free_hyp_pgds(void) |
Marc Zyngier | 000d399 | 2013-03-05 02:43:17 +0000 | [diff] [blame] | 199 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 200 | unsigned long addr; |
| 201 | |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 202 | free_boot_hyp_pgd(); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 203 | |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 204 | mutex_lock(&kvm_hyp_pgd_mutex); |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 205 | |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 206 | if (hyp_pgd) { |
| 207 | for (addr = PAGE_OFFSET; virt_addr_valid(addr); addr += PGDIR_SIZE) |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 208 | unmap_range(NULL, hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 209 | for (addr = VMALLOC_START; is_vmalloc_addr((void*)addr); addr += PGDIR_SIZE) |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 210 | unmap_range(NULL, hyp_pgd, KERN_TO_HYP(addr), PGDIR_SIZE); |
| 211 | |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 212 | kfree(hyp_pgd); |
Marc Zyngier | d157f4a | 2013-04-12 19:12:07 +0100 | [diff] [blame] | 213 | hyp_pgd = NULL; |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 214 | } |
| 215 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 216 | mutex_unlock(&kvm_hyp_pgd_mutex); |
| 217 | } |
| 218 | |
| 219 | static void create_hyp_pte_mappings(pmd_t *pmd, unsigned long start, |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 220 | unsigned long end, unsigned long pfn, |
| 221 | pgprot_t prot) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 222 | { |
| 223 | pte_t *pte; |
| 224 | unsigned long addr; |
| 225 | |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 226 | addr = start; |
| 227 | do { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 228 | pte = pte_offset_kernel(pmd, addr); |
| 229 | kvm_set_pte(pte, pfn_pte(pfn, prot)); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 230 | get_page(virt_to_page(pte)); |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 231 | kvm_flush_dcache_to_poc(pte, sizeof(*pte)); |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 232 | pfn++; |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 233 | } while (addr += PAGE_SIZE, addr != end); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | static int create_hyp_pmd_mappings(pud_t *pud, unsigned long start, |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 237 | unsigned long end, unsigned long pfn, |
| 238 | pgprot_t prot) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 239 | { |
| 240 | pmd_t *pmd; |
| 241 | pte_t *pte; |
| 242 | unsigned long addr, next; |
| 243 | |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 244 | addr = start; |
| 245 | do { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 246 | pmd = pmd_offset(pud, addr); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 247 | |
| 248 | BUG_ON(pmd_sect(*pmd)); |
| 249 | |
| 250 | if (pmd_none(*pmd)) { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 251 | pte = pte_alloc_one_kernel(NULL, addr); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 252 | if (!pte) { |
| 253 | kvm_err("Cannot allocate Hyp pte\n"); |
| 254 | return -ENOMEM; |
| 255 | } |
| 256 | pmd_populate_kernel(NULL, pmd, pte); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 257 | get_page(virt_to_page(pmd)); |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 258 | kvm_flush_dcache_to_poc(pmd, sizeof(*pmd)); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | next = pmd_addr_end(addr, end); |
| 262 | |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 263 | create_hyp_pte_mappings(pmd, addr, next, pfn, prot); |
| 264 | pfn += (next - addr) >> PAGE_SHIFT; |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 265 | } while (addr = next, addr != end); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 270 | static int __create_hyp_mappings(pgd_t *pgdp, |
| 271 | unsigned long start, unsigned long end, |
| 272 | unsigned long pfn, pgprot_t prot) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 273 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 274 | pgd_t *pgd; |
| 275 | pud_t *pud; |
| 276 | pmd_t *pmd; |
| 277 | unsigned long addr, next; |
| 278 | int err = 0; |
| 279 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 280 | mutex_lock(&kvm_hyp_pgd_mutex); |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 281 | addr = start & PAGE_MASK; |
| 282 | end = PAGE_ALIGN(end); |
| 283 | do { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 284 | pgd = pgdp + pgd_index(addr); |
| 285 | pud = pud_offset(pgd, addr); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 286 | |
| 287 | if (pud_none_or_clear_bad(pud)) { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 288 | pmd = pmd_alloc_one(NULL, addr); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 289 | if (!pmd) { |
| 290 | kvm_err("Cannot allocate Hyp pmd\n"); |
| 291 | err = -ENOMEM; |
| 292 | goto out; |
| 293 | } |
| 294 | pud_populate(NULL, pud, pmd); |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 295 | get_page(virt_to_page(pud)); |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 296 | kvm_flush_dcache_to_poc(pud, sizeof(*pud)); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | next = pgd_addr_end(addr, end); |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 300 | err = create_hyp_pmd_mappings(pud, addr, next, pfn, prot); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 301 | if (err) |
| 302 | goto out; |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 303 | pfn += (next - addr) >> PAGE_SHIFT; |
Marc Zyngier | 3562c76 | 2013-04-12 19:12:02 +0100 | [diff] [blame] | 304 | } while (addr = next, addr != end); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 305 | out: |
| 306 | mutex_unlock(&kvm_hyp_pgd_mutex); |
| 307 | return err; |
| 308 | } |
| 309 | |
Christoffer Dall | 40c2729 | 2013-11-15 13:14:12 -0800 | [diff] [blame^] | 310 | static phys_addr_t kvm_kaddr_to_phys(void *kaddr) |
| 311 | { |
| 312 | if (!is_vmalloc_addr(kaddr)) { |
| 313 | BUG_ON(!virt_addr_valid(kaddr)); |
| 314 | return __pa(kaddr); |
| 315 | } else { |
| 316 | return page_to_phys(vmalloc_to_page(kaddr)) + |
| 317 | offset_in_page(kaddr); |
| 318 | } |
| 319 | } |
| 320 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 321 | /** |
Marc Zyngier | 06e8c3b | 2012-10-28 01:09:14 +0100 | [diff] [blame] | 322 | * create_hyp_mappings - duplicate a kernel virtual address range in Hyp mode |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 323 | * @from: The virtual kernel start address of the range |
| 324 | * @to: The virtual kernel end address of the range (exclusive) |
| 325 | * |
Marc Zyngier | 06e8c3b | 2012-10-28 01:09:14 +0100 | [diff] [blame] | 326 | * The same virtual address as the kernel virtual address is also used |
| 327 | * in Hyp-mode mapping (modulo HYP_PAGE_OFFSET) to the same underlying |
| 328 | * physical pages. |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 329 | */ |
| 330 | int create_hyp_mappings(void *from, void *to) |
| 331 | { |
Christoffer Dall | 40c2729 | 2013-11-15 13:14:12 -0800 | [diff] [blame^] | 332 | phys_addr_t phys_addr; |
| 333 | unsigned long virt_addr; |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 334 | unsigned long start = KERN_TO_HYP((unsigned long)from); |
| 335 | unsigned long end = KERN_TO_HYP((unsigned long)to); |
| 336 | |
Christoffer Dall | 40c2729 | 2013-11-15 13:14:12 -0800 | [diff] [blame^] | 337 | start = start & PAGE_MASK; |
| 338 | end = PAGE_ALIGN(end); |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 339 | |
Christoffer Dall | 40c2729 | 2013-11-15 13:14:12 -0800 | [diff] [blame^] | 340 | for (virt_addr = start; virt_addr < end; virt_addr += PAGE_SIZE) { |
| 341 | int err; |
| 342 | |
| 343 | phys_addr = kvm_kaddr_to_phys(from + virt_addr - start); |
| 344 | err = __create_hyp_mappings(hyp_pgd, virt_addr, |
| 345 | virt_addr + PAGE_SIZE, |
| 346 | __phys_to_pfn(phys_addr), |
| 347 | PAGE_HYP); |
| 348 | if (err) |
| 349 | return err; |
| 350 | } |
| 351 | |
| 352 | return 0; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | /** |
Marc Zyngier | 06e8c3b | 2012-10-28 01:09:14 +0100 | [diff] [blame] | 356 | * create_hyp_io_mappings - duplicate a kernel IO mapping into Hyp mode |
| 357 | * @from: The kernel start VA of the range |
| 358 | * @to: The kernel end VA of the range (exclusive) |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 359 | * @phys_addr: The physical start address which gets mapped |
Marc Zyngier | 06e8c3b | 2012-10-28 01:09:14 +0100 | [diff] [blame] | 360 | * |
| 361 | * The resulting HYP VA is the same as the kernel VA, modulo |
| 362 | * HYP_PAGE_OFFSET. |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 363 | */ |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 364 | int create_hyp_io_mappings(void *from, void *to, phys_addr_t phys_addr) |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 365 | { |
Marc Zyngier | 6060df8 | 2013-04-12 19:12:01 +0100 | [diff] [blame] | 366 | unsigned long start = KERN_TO_HYP((unsigned long)from); |
| 367 | unsigned long end = KERN_TO_HYP((unsigned long)to); |
| 368 | |
| 369 | /* Check for a valid kernel IO mapping */ |
| 370 | if (!is_vmalloc_addr(from) || !is_vmalloc_addr(to - 1)) |
| 371 | return -EINVAL; |
| 372 | |
| 373 | return __create_hyp_mappings(hyp_pgd, start, end, |
| 374 | __phys_to_pfn(phys_addr), PAGE_HYP_DEVICE); |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 375 | } |
| 376 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 377 | /** |
| 378 | * kvm_alloc_stage2_pgd - allocate level-1 table for stage-2 translation. |
| 379 | * @kvm: The KVM struct pointer for the VM. |
| 380 | * |
| 381 | * Allocates the 1st level table only of size defined by S2_PGD_ORDER (can |
| 382 | * support either full 40-bit input addresses or limited to 32-bit input |
| 383 | * addresses). Clears the allocated pages. |
| 384 | * |
| 385 | * Note we don't need locking here as this is only called when the VM is |
| 386 | * created, which can only be done once. |
| 387 | */ |
| 388 | int kvm_alloc_stage2_pgd(struct kvm *kvm) |
| 389 | { |
| 390 | pgd_t *pgd; |
| 391 | |
| 392 | if (kvm->arch.pgd != NULL) { |
| 393 | kvm_err("kvm_arch already initialized?\n"); |
| 394 | return -EINVAL; |
| 395 | } |
| 396 | |
| 397 | pgd = (pgd_t *)__get_free_pages(GFP_KERNEL, S2_PGD_ORDER); |
| 398 | if (!pgd) |
| 399 | return -ENOMEM; |
| 400 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 401 | memset(pgd, 0, PTRS_PER_S2_PGD * sizeof(pgd_t)); |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 402 | kvm_clean_pgd(pgd); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 403 | kvm->arch.pgd = pgd; |
| 404 | |
| 405 | return 0; |
| 406 | } |
| 407 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 408 | /** |
| 409 | * unmap_stage2_range -- Clear stage2 page table entries to unmap a range |
| 410 | * @kvm: The VM pointer |
| 411 | * @start: The intermediate physical base address of the range to unmap |
| 412 | * @size: The size of the area to unmap |
| 413 | * |
| 414 | * Clear a range of stage-2 mappings, lowering the various ref-counts. Must |
| 415 | * be called while holding mmu_lock (unless for freeing the stage2 pgd before |
| 416 | * destroying the VM), otherwise another faulting VCPU may come in and mess |
| 417 | * with things behind our backs. |
| 418 | */ |
| 419 | static void unmap_stage2_range(struct kvm *kvm, phys_addr_t start, u64 size) |
| 420 | { |
Marc Zyngier | d4cb9df5 | 2013-05-14 12:11:34 +0100 | [diff] [blame] | 421 | unmap_range(kvm, kvm->arch.pgd, start, size); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | /** |
| 425 | * kvm_free_stage2_pgd - free all stage-2 tables |
| 426 | * @kvm: The KVM struct pointer for the VM. |
| 427 | * |
| 428 | * Walks the level-1 page table pointed to by kvm->arch.pgd and frees all |
| 429 | * underlying level-2 and level-3 tables before freeing the actual level-1 table |
| 430 | * and setting the struct pointer to NULL. |
| 431 | * |
| 432 | * Note we don't need locking here as this is only called when the VM is |
| 433 | * destroyed, which can only be done once. |
| 434 | */ |
| 435 | void kvm_free_stage2_pgd(struct kvm *kvm) |
| 436 | { |
| 437 | if (kvm->arch.pgd == NULL) |
| 438 | return; |
| 439 | |
| 440 | unmap_stage2_range(kvm, 0, KVM_PHYS_SIZE); |
| 441 | free_pages((unsigned long)kvm->arch.pgd, S2_PGD_ORDER); |
| 442 | kvm->arch.pgd = NULL; |
| 443 | } |
| 444 | |
| 445 | |
| 446 | static int stage2_set_pte(struct kvm *kvm, struct kvm_mmu_memory_cache *cache, |
| 447 | phys_addr_t addr, const pte_t *new_pte, bool iomap) |
| 448 | { |
| 449 | pgd_t *pgd; |
| 450 | pud_t *pud; |
| 451 | pmd_t *pmd; |
| 452 | pte_t *pte, old_pte; |
| 453 | |
| 454 | /* Create 2nd stage page table mapping - Level 1 */ |
| 455 | pgd = kvm->arch.pgd + pgd_index(addr); |
| 456 | pud = pud_offset(pgd, addr); |
| 457 | if (pud_none(*pud)) { |
| 458 | if (!cache) |
| 459 | return 0; /* ignore calls from kvm_set_spte_hva */ |
| 460 | pmd = mmu_memory_cache_alloc(cache); |
| 461 | pud_populate(NULL, pud, pmd); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 462 | get_page(virt_to_page(pud)); |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | pmd = pmd_offset(pud, addr); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 466 | |
| 467 | /* Create 2nd stage page table mapping - Level 2 */ |
| 468 | if (pmd_none(*pmd)) { |
| 469 | if (!cache) |
| 470 | return 0; /* ignore calls from kvm_set_spte_hva */ |
| 471 | pte = mmu_memory_cache_alloc(cache); |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 472 | kvm_clean_pte(pte); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 473 | pmd_populate_kernel(NULL, pmd, pte); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 474 | get_page(virt_to_page(pmd)); |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | pte = pte_offset_kernel(pmd, addr); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 478 | |
| 479 | if (iomap && pte_present(*pte)) |
| 480 | return -EFAULT; |
| 481 | |
| 482 | /* Create 2nd stage page table mapping - Level 3 */ |
| 483 | old_pte = *pte; |
| 484 | kvm_set_pte(pte, *new_pte); |
| 485 | if (pte_present(old_pte)) |
Marc Zyngier | 4876276 | 2013-01-28 15:27:00 +0000 | [diff] [blame] | 486 | kvm_tlb_flush_vmid_ipa(kvm, addr); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 487 | else |
| 488 | get_page(virt_to_page(pte)); |
| 489 | |
| 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | /** |
| 494 | * kvm_phys_addr_ioremap - map a device range to guest IPA |
| 495 | * |
| 496 | * @kvm: The KVM pointer |
| 497 | * @guest_ipa: The IPA at which to insert the mapping |
| 498 | * @pa: The physical address of the device |
| 499 | * @size: The size of the mapping |
| 500 | */ |
| 501 | int kvm_phys_addr_ioremap(struct kvm *kvm, phys_addr_t guest_ipa, |
| 502 | phys_addr_t pa, unsigned long size) |
| 503 | { |
| 504 | phys_addr_t addr, end; |
| 505 | int ret = 0; |
| 506 | unsigned long pfn; |
| 507 | struct kvm_mmu_memory_cache cache = { 0, }; |
| 508 | |
| 509 | end = (guest_ipa + size + PAGE_SIZE - 1) & PAGE_MASK; |
| 510 | pfn = __phys_to_pfn(pa); |
| 511 | |
| 512 | for (addr = guest_ipa; addr < end; addr += PAGE_SIZE) { |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 513 | pte_t pte = pfn_pte(pfn, PAGE_S2_DEVICE); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 514 | |
| 515 | ret = mmu_topup_memory_cache(&cache, 2, 2); |
| 516 | if (ret) |
| 517 | goto out; |
| 518 | spin_lock(&kvm->mmu_lock); |
| 519 | ret = stage2_set_pte(kvm, &cache, addr, &pte, true); |
| 520 | spin_unlock(&kvm->mmu_lock); |
| 521 | if (ret) |
| 522 | goto out; |
| 523 | |
| 524 | pfn++; |
| 525 | } |
| 526 | |
| 527 | out: |
| 528 | mmu_free_memory_cache(&cache); |
| 529 | return ret; |
| 530 | } |
| 531 | |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 532 | static int user_mem_abort(struct kvm_vcpu *vcpu, phys_addr_t fault_ipa, |
| 533 | gfn_t gfn, struct kvm_memory_slot *memslot, |
| 534 | unsigned long fault_status) |
| 535 | { |
| 536 | pte_t new_pte; |
| 537 | pfn_t pfn; |
| 538 | int ret; |
| 539 | bool write_fault, writable; |
| 540 | unsigned long mmu_seq; |
| 541 | struct kvm_mmu_memory_cache *memcache = &vcpu->arch.mmu_page_cache; |
| 542 | |
Marc Zyngier | 7393b59 | 2012-09-17 19:27:09 +0100 | [diff] [blame] | 543 | write_fault = kvm_is_write_fault(kvm_vcpu_get_hsr(vcpu)); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 544 | if (fault_status == FSC_PERM && !write_fault) { |
| 545 | kvm_err("Unexpected L2 read permission error\n"); |
| 546 | return -EFAULT; |
| 547 | } |
| 548 | |
| 549 | /* We need minimum second+third level pages */ |
| 550 | ret = mmu_topup_memory_cache(memcache, 2, KVM_NR_MEM_OBJS); |
| 551 | if (ret) |
| 552 | return ret; |
| 553 | |
| 554 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
| 555 | /* |
| 556 | * Ensure the read of mmu_notifier_seq happens before we call |
| 557 | * gfn_to_pfn_prot (which calls get_user_pages), so that we don't risk |
| 558 | * the page we just got a reference to gets unmapped before we have a |
| 559 | * chance to grab the mmu_lock, which ensure that if the page gets |
| 560 | * unmapped afterwards, the call to kvm_unmap_hva will take it away |
| 561 | * from us again properly. This smp_rmb() interacts with the smp_wmb() |
| 562 | * in kvm_mmu_notifier_invalidate_<page|range_end>. |
| 563 | */ |
| 564 | smp_rmb(); |
| 565 | |
| 566 | pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write_fault, &writable); |
| 567 | if (is_error_pfn(pfn)) |
| 568 | return -EFAULT; |
| 569 | |
| 570 | new_pte = pfn_pte(pfn, PAGE_S2); |
| 571 | coherent_icache_guest_page(vcpu->kvm, gfn); |
| 572 | |
| 573 | spin_lock(&vcpu->kvm->mmu_lock); |
| 574 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
| 575 | goto out_unlock; |
| 576 | if (writable) { |
Marc Zyngier | c62ee2b | 2012-10-15 11:27:37 +0100 | [diff] [blame] | 577 | kvm_set_s2pte_writable(&new_pte); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 578 | kvm_set_pfn_dirty(pfn); |
| 579 | } |
| 580 | stage2_set_pte(vcpu->kvm, memcache, fault_ipa, &new_pte, false); |
| 581 | |
| 582 | out_unlock: |
| 583 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 584 | kvm_release_pfn_clean(pfn); |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * kvm_handle_guest_abort - handles all 2nd stage aborts |
| 590 | * @vcpu: the VCPU pointer |
| 591 | * @run: the kvm_run structure |
| 592 | * |
| 593 | * Any abort that gets to the host is almost guaranteed to be caused by a |
| 594 | * missing second stage translation table entry, which can mean that either the |
| 595 | * guest simply needs more memory and we must allocate an appropriate page or it |
| 596 | * can mean that the guest tried to access I/O memory, which is emulated by user |
| 597 | * space. The distinction is based on the IPA causing the fault and whether this |
| 598 | * memory region has been registered as standard RAM by user space. |
| 599 | */ |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 600 | int kvm_handle_guest_abort(struct kvm_vcpu *vcpu, struct kvm_run *run) |
| 601 | { |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 602 | unsigned long fault_status; |
| 603 | phys_addr_t fault_ipa; |
| 604 | struct kvm_memory_slot *memslot; |
| 605 | bool is_iabt; |
| 606 | gfn_t gfn; |
| 607 | int ret, idx; |
| 608 | |
Marc Zyngier | 52d1dba | 2012-10-15 10:33:38 +0100 | [diff] [blame] | 609 | is_iabt = kvm_vcpu_trap_is_iabt(vcpu); |
Marc Zyngier | 7393b59 | 2012-09-17 19:27:09 +0100 | [diff] [blame] | 610 | fault_ipa = kvm_vcpu_get_fault_ipa(vcpu); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 611 | |
Marc Zyngier | 7393b59 | 2012-09-17 19:27:09 +0100 | [diff] [blame] | 612 | trace_kvm_guest_fault(*vcpu_pc(vcpu), kvm_vcpu_get_hsr(vcpu), |
| 613 | kvm_vcpu_get_hfar(vcpu), fault_ipa); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 614 | |
| 615 | /* Check the stage-2 fault is trans. fault or write fault */ |
Marc Zyngier | 1cc287d | 2012-09-18 14:14:35 +0100 | [diff] [blame] | 616 | fault_status = kvm_vcpu_trap_get_fault(vcpu); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 617 | if (fault_status != FSC_FAULT && fault_status != FSC_PERM) { |
Marc Zyngier | 52d1dba | 2012-10-15 10:33:38 +0100 | [diff] [blame] | 618 | kvm_err("Unsupported fault status: EC=%#x DFCS=%#lx\n", |
| 619 | kvm_vcpu_trap_get_class(vcpu), fault_status); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 620 | return -EFAULT; |
| 621 | } |
| 622 | |
| 623 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 624 | |
| 625 | gfn = fault_ipa >> PAGE_SHIFT; |
| 626 | if (!kvm_is_visible_gfn(vcpu->kvm, gfn)) { |
| 627 | if (is_iabt) { |
| 628 | /* Prefetch Abort on I/O address */ |
Marc Zyngier | 7393b59 | 2012-09-17 19:27:09 +0100 | [diff] [blame] | 629 | kvm_inject_pabt(vcpu, kvm_vcpu_get_hfar(vcpu)); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 630 | ret = 1; |
| 631 | goto out_unlock; |
| 632 | } |
| 633 | |
| 634 | if (fault_status != FSC_FAULT) { |
| 635 | kvm_err("Unsupported fault status on io memory: %#lx\n", |
| 636 | fault_status); |
| 637 | ret = -EFAULT; |
| 638 | goto out_unlock; |
| 639 | } |
| 640 | |
Marc Zyngier | cfe3950 | 2012-12-12 14:42:09 +0000 | [diff] [blame] | 641 | /* |
| 642 | * The IPA is reported as [MAX:12], so we need to |
| 643 | * complement it with the bottom 12 bits from the |
| 644 | * faulting VA. This is always 12 bits, irrespective |
| 645 | * of the page size. |
| 646 | */ |
| 647 | fault_ipa |= kvm_vcpu_get_hfar(vcpu) & ((1 << 12) - 1); |
Christoffer Dall | 45e96ea | 2013-01-20 18:43:58 -0500 | [diff] [blame] | 648 | ret = io_mem_abort(vcpu, run, fault_ipa); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 649 | goto out_unlock; |
| 650 | } |
| 651 | |
| 652 | memslot = gfn_to_memslot(vcpu->kvm, gfn); |
Christoffer Dall | 94f8e64 | 2013-01-20 18:28:12 -0500 | [diff] [blame] | 653 | |
| 654 | ret = user_mem_abort(vcpu, fault_ipa, gfn, memslot, fault_status); |
| 655 | if (ret == 0) |
| 656 | ret = 1; |
| 657 | out_unlock: |
| 658 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 659 | return ret; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 660 | } |
| 661 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 662 | static void handle_hva_to_gpa(struct kvm *kvm, |
| 663 | unsigned long start, |
| 664 | unsigned long end, |
| 665 | void (*handler)(struct kvm *kvm, |
| 666 | gpa_t gpa, void *data), |
| 667 | void *data) |
| 668 | { |
| 669 | struct kvm_memslots *slots; |
| 670 | struct kvm_memory_slot *memslot; |
| 671 | |
| 672 | slots = kvm_memslots(kvm); |
| 673 | |
| 674 | /* we only care about the pages that the guest sees */ |
| 675 | kvm_for_each_memslot(memslot, slots) { |
| 676 | unsigned long hva_start, hva_end; |
| 677 | gfn_t gfn, gfn_end; |
| 678 | |
| 679 | hva_start = max(start, memslot->userspace_addr); |
| 680 | hva_end = min(end, memslot->userspace_addr + |
| 681 | (memslot->npages << PAGE_SHIFT)); |
| 682 | if (hva_start >= hva_end) |
| 683 | continue; |
| 684 | |
| 685 | /* |
| 686 | * {gfn(page) | page intersects with [hva_start, hva_end)} = |
| 687 | * {gfn_start, gfn_start+1, ..., gfn_end-1}. |
| 688 | */ |
| 689 | gfn = hva_to_gfn_memslot(hva_start, memslot); |
| 690 | gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot); |
| 691 | |
| 692 | for (; gfn < gfn_end; ++gfn) { |
| 693 | gpa_t gpa = gfn << PAGE_SHIFT; |
| 694 | handler(kvm, gpa, data); |
| 695 | } |
| 696 | } |
| 697 | } |
| 698 | |
| 699 | static void kvm_unmap_hva_handler(struct kvm *kvm, gpa_t gpa, void *data) |
| 700 | { |
| 701 | unmap_stage2_range(kvm, gpa, PAGE_SIZE); |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | int kvm_unmap_hva(struct kvm *kvm, unsigned long hva) |
| 705 | { |
| 706 | unsigned long end = hva + PAGE_SIZE; |
| 707 | |
| 708 | if (!kvm->arch.pgd) |
| 709 | return 0; |
| 710 | |
| 711 | trace_kvm_unmap_hva(hva); |
| 712 | handle_hva_to_gpa(kvm, hva, end, &kvm_unmap_hva_handler, NULL); |
| 713 | return 0; |
| 714 | } |
| 715 | |
| 716 | int kvm_unmap_hva_range(struct kvm *kvm, |
| 717 | unsigned long start, unsigned long end) |
| 718 | { |
| 719 | if (!kvm->arch.pgd) |
| 720 | return 0; |
| 721 | |
| 722 | trace_kvm_unmap_hva_range(start, end); |
| 723 | handle_hva_to_gpa(kvm, start, end, &kvm_unmap_hva_handler, NULL); |
| 724 | return 0; |
| 725 | } |
| 726 | |
| 727 | static void kvm_set_spte_handler(struct kvm *kvm, gpa_t gpa, void *data) |
| 728 | { |
| 729 | pte_t *pte = (pte_t *)data; |
| 730 | |
| 731 | stage2_set_pte(kvm, NULL, gpa, pte, false); |
| 732 | } |
| 733 | |
| 734 | |
| 735 | void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte) |
| 736 | { |
| 737 | unsigned long end = hva + PAGE_SIZE; |
| 738 | pte_t stage2_pte; |
| 739 | |
| 740 | if (!kvm->arch.pgd) |
| 741 | return; |
| 742 | |
| 743 | trace_kvm_set_spte_hva(hva); |
| 744 | stage2_pte = pfn_pte(pte_pfn(pte), PAGE_S2); |
| 745 | handle_hva_to_gpa(kvm, hva, end, &kvm_set_spte_handler, &stage2_pte); |
| 746 | } |
| 747 | |
| 748 | void kvm_mmu_free_memory_caches(struct kvm_vcpu *vcpu) |
| 749 | { |
| 750 | mmu_free_memory_cache(&vcpu->arch.mmu_page_cache); |
| 751 | } |
| 752 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 753 | phys_addr_t kvm_mmu_get_httbr(void) |
| 754 | { |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 755 | return virt_to_phys(hyp_pgd); |
| 756 | } |
| 757 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 758 | phys_addr_t kvm_mmu_get_boot_httbr(void) |
| 759 | { |
| 760 | return virt_to_phys(boot_hyp_pgd); |
| 761 | } |
| 762 | |
| 763 | phys_addr_t kvm_get_idmap_vector(void) |
| 764 | { |
| 765 | return hyp_idmap_vector; |
| 766 | } |
| 767 | |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 768 | int kvm_mmu_init(void) |
| 769 | { |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 770 | int err; |
| 771 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 772 | hyp_idmap_start = virt_to_phys(__hyp_idmap_text_start); |
| 773 | hyp_idmap_end = virt_to_phys(__hyp_idmap_text_end); |
| 774 | hyp_idmap_vector = virt_to_phys(__kvm_hyp_init); |
| 775 | |
| 776 | if ((hyp_idmap_start ^ hyp_idmap_end) & PAGE_MASK) { |
| 777 | /* |
| 778 | * Our init code is crossing a page boundary. Allocate |
| 779 | * a bounce page, copy the code over and use that. |
| 780 | */ |
| 781 | size_t len = __hyp_idmap_text_end - __hyp_idmap_text_start; |
| 782 | phys_addr_t phys_base; |
| 783 | |
| 784 | init_bounce_page = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 785 | if (!init_bounce_page) { |
| 786 | kvm_err("Couldn't allocate HYP init bounce page\n"); |
| 787 | err = -ENOMEM; |
| 788 | goto out; |
| 789 | } |
| 790 | |
| 791 | memcpy(init_bounce_page, __hyp_idmap_text_start, len); |
| 792 | /* |
| 793 | * Warning: the code we just copied to the bounce page |
| 794 | * must be flushed to the point of coherency. |
| 795 | * Otherwise, the data may be sitting in L2, and HYP |
| 796 | * mode won't be able to observe it as it runs with |
| 797 | * caches off at that point. |
| 798 | */ |
| 799 | kvm_flush_dcache_to_poc(init_bounce_page, len); |
| 800 | |
| 801 | phys_base = virt_to_phys(init_bounce_page); |
| 802 | hyp_idmap_vector += phys_base - hyp_idmap_start; |
| 803 | hyp_idmap_start = phys_base; |
| 804 | hyp_idmap_end = phys_base + len; |
| 805 | |
| 806 | kvm_info("Using HYP init bounce page @%lx\n", |
| 807 | (unsigned long)phys_base); |
| 808 | } |
| 809 | |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 810 | hyp_pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL); |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 811 | boot_hyp_pgd = kzalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL); |
| 812 | if (!hyp_pgd || !boot_hyp_pgd) { |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 813 | kvm_err("Hyp mode PGD not allocated\n"); |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 814 | err = -ENOMEM; |
| 815 | goto out; |
| 816 | } |
| 817 | |
| 818 | /* Create the idmap in the boot page tables */ |
| 819 | err = __create_hyp_mappings(boot_hyp_pgd, |
| 820 | hyp_idmap_start, hyp_idmap_end, |
| 821 | __phys_to_pfn(hyp_idmap_start), |
| 822 | PAGE_HYP); |
| 823 | |
| 824 | if (err) { |
| 825 | kvm_err("Failed to idmap %lx-%lx\n", |
| 826 | hyp_idmap_start, hyp_idmap_end); |
| 827 | goto out; |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 828 | } |
| 829 | |
Marc Zyngier | 5a677ce | 2013-04-12 19:12:06 +0100 | [diff] [blame] | 830 | /* Map the very same page at the trampoline VA */ |
| 831 | err = __create_hyp_mappings(boot_hyp_pgd, |
| 832 | TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE, |
| 833 | __phys_to_pfn(hyp_idmap_start), |
| 834 | PAGE_HYP); |
| 835 | if (err) { |
| 836 | kvm_err("Failed to map trampoline @%lx into boot HYP pgd\n", |
| 837 | TRAMPOLINE_VA); |
| 838 | goto out; |
| 839 | } |
| 840 | |
| 841 | /* Map the same page again into the runtime page tables */ |
| 842 | err = __create_hyp_mappings(hyp_pgd, |
| 843 | TRAMPOLINE_VA, TRAMPOLINE_VA + PAGE_SIZE, |
| 844 | __phys_to_pfn(hyp_idmap_start), |
| 845 | PAGE_HYP); |
| 846 | if (err) { |
| 847 | kvm_err("Failed to map trampoline @%lx into runtime HYP pgd\n", |
| 848 | TRAMPOLINE_VA); |
| 849 | goto out; |
| 850 | } |
| 851 | |
Christoffer Dall | d5d8184 | 2013-01-20 18:28:07 -0500 | [diff] [blame] | 852 | return 0; |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 853 | out: |
Marc Zyngier | 4f72827 | 2013-04-12 19:12:05 +0100 | [diff] [blame] | 854 | free_hyp_pgds(); |
Marc Zyngier | 2fb4105 | 2013-04-12 19:12:03 +0100 | [diff] [blame] | 855 | return err; |
Christoffer Dall | 342cd0a | 2013-01-20 18:28:06 -0500 | [diff] [blame] | 856 | } |