Merge branch 'fix/rt5645' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[deliverable/linux.git] / arch / x86 / kvm / iommu.c
CommitLineData
62c476c7
BAY
1/*
2 * Copyright (c) 2006, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Copyright (C) 2006-2008 Intel Corporation
18 * Copyright IBM Corporation, 2008
221d059d
AK
19 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
20 *
62c476c7
BAY
21 * Author: Allen M. Kay <allen.m.kay@intel.com>
22 * Author: Weidong Han <weidong.han@intel.com>
23 * Author: Ben-Ami Yassour <benami@il.ibm.com>
24 */
25
26#include <linux/list.h>
27#include <linux/kvm_host.h>
51441d43 28#include <linux/module.h>
62c476c7 29#include <linux/pci.h>
799fd8b2 30#include <linux/stat.h>
62c476c7 31#include <linux/dmar.h>
19de40a8 32#include <linux/iommu.h>
62c476c7 33#include <linux/intel-iommu.h>
c9eab58f 34#include "assigned-dev.h"
62c476c7 35
90ab5ee9 36static bool allow_unsafe_assigned_interrupts;
3f68b031
AW
37module_param_named(allow_unsafe_assigned_interrupts,
38 allow_unsafe_assigned_interrupts, bool, S_IRUGO | S_IWUSR);
39MODULE_PARM_DESC(allow_unsafe_assigned_interrupts,
40 "Enable device assignment on platforms without interrupt remapping support.");
41
62c476c7
BAY
42static int kvm_iommu_unmap_memslots(struct kvm *kvm);
43static void kvm_iommu_put_pages(struct kvm *kvm,
44 gfn_t base_gfn, unsigned long npages);
45
d5661048 46static pfn_t kvm_pin_pages(struct kvm_memory_slot *slot, gfn_t gfn,
3d32e4db 47 unsigned long npages)
fcd95807
JR
48{
49 gfn_t end_gfn;
50 pfn_t pfn;
51
d5661048 52 pfn = gfn_to_pfn_memslot(slot, gfn);
3d32e4db 53 end_gfn = gfn + npages;
fcd95807
JR
54 gfn += 1;
55
81c52c56 56 if (is_error_noslot_pfn(pfn))
fcd95807
JR
57 return pfn;
58
59 while (gfn < end_gfn)
d5661048 60 gfn_to_pfn_memslot(slot, gfn++);
fcd95807
JR
61
62 return pfn;
63}
64
350b8bdd
MT
65static void kvm_unpin_pages(struct kvm *kvm, pfn_t pfn, unsigned long npages)
66{
67 unsigned long i;
68
69 for (i = 0; i < npages; ++i)
70 kvm_release_pfn_clean(pfn + i);
71}
72
3ad26d81 73int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
62c476c7 74{
fcd95807 75 gfn_t gfn, end_gfn;
62c476c7 76 pfn_t pfn;
fcd95807 77 int r = 0;
19de40a8 78 struct iommu_domain *domain = kvm->arch.iommu_domain;
522c68c4 79 int flags;
62c476c7
BAY
80
81 /* check if iommu exists and in use */
82 if (!domain)
83 return 0;
84
fcd95807
JR
85 gfn = slot->base_gfn;
86 end_gfn = gfn + slot->npages;
87
d47510e2
AW
88 flags = IOMMU_READ;
89 if (!(slot->flags & KVM_MEM_READONLY))
90 flags |= IOMMU_WRITE;
d96eb2c6 91 if (!kvm->arch.iommu_noncoherent)
522c68c4
SY
92 flags |= IOMMU_CACHE;
93
fcd95807
JR
94
95 while (gfn < end_gfn) {
96 unsigned long page_size;
97
98 /* Check if already mapped */
99 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn))) {
100 gfn += 1;
101 continue;
102 }
103
104 /* Get the page size we could use to map */
105 page_size = kvm_host_page_size(kvm, gfn);
106
107 /* Make sure the page_size does not exceed the memslot */
108 while ((gfn + (page_size >> PAGE_SHIFT)) > end_gfn)
109 page_size >>= 1;
110
111 /* Make sure gfn is aligned to the page size we want to map */
112 while ((gfn << PAGE_SHIFT) & (page_size - 1))
113 page_size >>= 1;
114
27ef63c7
GE
115 /* Make sure hva is aligned to the page size we want to map */
116 while (__gfn_to_hva_memslot(slot, gfn) & (page_size - 1))
117 page_size >>= 1;
118
fcd95807
JR
119 /*
120 * Pin all pages we are about to map in memory. This is
121 * important because we unmap and unpin in 4kb steps later.
122 */
3d32e4db 123 pfn = kvm_pin_pages(slot, gfn, page_size >> PAGE_SHIFT);
81c52c56 124 if (is_error_noslot_pfn(pfn)) {
fcd95807 125 gfn += 1;
62c476c7 126 continue;
fcd95807 127 }
62c476c7 128
fcd95807
JR
129 /* Map into IO address space */
130 r = iommu_map(domain, gfn_to_gpa(gfn), pfn_to_hpa(pfn),
7d3002cc 131 page_size, flags);
e5fcfc82 132 if (r) {
260782bc 133 printk(KERN_ERR "kvm_iommu_map_address:"
5689cc53 134 "iommu failed to map pfn=%llx\n", pfn);
3d32e4db 135 kvm_unpin_pages(kvm, pfn, page_size >> PAGE_SHIFT);
62c476c7
BAY
136 goto unmap_pages;
137 }
fcd95807
JR
138
139 gfn += page_size >> PAGE_SHIFT;
140
128ca093 141 cond_resched();
62c476c7 142 }
fcd95807 143
62c476c7
BAY
144 return 0;
145
146unmap_pages:
350b8bdd 147 kvm_iommu_put_pages(kvm, slot->base_gfn, gfn - slot->base_gfn);
62c476c7
BAY
148 return r;
149}
150
151static int kvm_iommu_map_memslots(struct kvm *kvm)
152{
be6ba0f0 153 int idx, r = 0;
46a26bf5 154 struct kvm_memslots *slots;
be6ba0f0 155 struct kvm_memory_slot *memslot;
62c476c7 156
e0f0bbc5
AW
157 if (kvm->arch.iommu_noncoherent)
158 kvm_arch_register_noncoherent_dma(kvm);
159
95c87e2b 160 idx = srcu_read_lock(&kvm->srcu);
90d83dc3 161 slots = kvm_memslots(kvm);
46a26bf5 162
be6ba0f0
XG
163 kvm_for_each_memslot(memslot, slots) {
164 r = kvm_iommu_map_pages(kvm, memslot);
62c476c7
BAY
165 if (r)
166 break;
167 }
95c87e2b 168 srcu_read_unlock(&kvm->srcu, idx);
682edb4c 169
62c476c7
BAY
170 return r;
171}
172
c9eab58f 173int kvm_assign_device(struct kvm *kvm, struct pci_dev *pdev)
62c476c7 174{
19de40a8 175 struct iommu_domain *domain = kvm->arch.iommu_domain;
d96eb2c6
AW
176 int r;
177 bool noncoherent;
62c476c7 178
260782bc
WH
179 /* check if iommu exists and in use */
180 if (!domain)
181 return 0;
182
260782bc 183 if (pdev == NULL)
62c476c7 184 return -ENODEV;
260782bc 185
19de40a8 186 r = iommu_attach_device(domain, &pdev->dev);
260782bc 187 if (r) {
d151f63f 188 dev_err(&pdev->dev, "kvm assign device failed ret %d", r);
260782bc 189 return r;
62c476c7
BAY
190 }
191
ee5ba30f 192 noncoherent = !iommu_capable(&pci_bus_type, IOMMU_CAP_CACHE_COHERENCY);
522c68c4
SY
193
194 /* Check if need to update IOMMU page table for guest memory */
d96eb2c6 195 if (noncoherent != kvm->arch.iommu_noncoherent) {
522c68c4 196 kvm_iommu_unmap_memslots(kvm);
d96eb2c6 197 kvm->arch.iommu_noncoherent = noncoherent;
522c68c4
SY
198 r = kvm_iommu_map_memslots(kvm);
199 if (r)
200 goto out_unmap;
201 }
202
5544eb9b 203 kvm_arch_start_assignment(kvm);
ad0d217c 204 pci_set_dev_assigned(pdev);
6777829c 205
29242cb5 206 dev_info(&pdev->dev, "kvm assign device\n");
62c476c7 207
260782bc 208 return 0;
522c68c4
SY
209out_unmap:
210 kvm_iommu_unmap_memslots(kvm);
211 return r;
260782bc 212}
62c476c7 213
c9eab58f 214int kvm_deassign_device(struct kvm *kvm, struct pci_dev *pdev)
0a920356 215{
19de40a8 216 struct iommu_domain *domain = kvm->arch.iommu_domain;
0a920356
WH
217
218 /* check if iommu exists and in use */
219 if (!domain)
220 return 0;
221
0a920356
WH
222 if (pdev == NULL)
223 return -ENODEV;
224
19de40a8 225 iommu_detach_device(domain, &pdev->dev);
0a920356 226
ad0d217c 227 pci_clear_dev_assigned(pdev);
5544eb9b 228 kvm_arch_end_assignment(kvm);
6777829c 229
29242cb5 230 dev_info(&pdev->dev, "kvm deassign device\n");
0a920356
WH
231
232 return 0;
233}
234
260782bc
WH
235int kvm_iommu_map_guest(struct kvm *kvm)
236{
237 int r;
238
a1b60c1c 239 if (!iommu_present(&pci_bus_type)) {
19de40a8 240 printk(KERN_ERR "%s: iommu not found\n", __func__);
62c476c7
BAY
241 return -ENODEV;
242 }
243
21a1416a
AW
244 mutex_lock(&kvm->slots_lock);
245
905d66c1 246 kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type);
21a1416a
AW
247 if (!kvm->arch.iommu_domain) {
248 r = -ENOMEM;
249 goto out_unlock;
250 }
62c476c7 251
3f68b031 252 if (!allow_unsafe_assigned_interrupts &&
ee5ba30f 253 !iommu_capable(&pci_bus_type, IOMMU_CAP_INTR_REMAP)) {
3f68b031
AW
254 printk(KERN_WARNING "%s: No interrupt remapping support,"
255 " disallowing device assignment."
256 " Re-enble with \"allow_unsafe_assigned_interrupts=1\""
257 " module option.\n", __func__);
258 iommu_domain_free(kvm->arch.iommu_domain);
259 kvm->arch.iommu_domain = NULL;
21a1416a
AW
260 r = -EPERM;
261 goto out_unlock;
3f68b031
AW
262 }
263
62c476c7
BAY
264 r = kvm_iommu_map_memslots(kvm);
265 if (r)
21a1416a 266 kvm_iommu_unmap_memslots(kvm);
62c476c7 267
21a1416a
AW
268out_unlock:
269 mutex_unlock(&kvm->slots_lock);
62c476c7
BAY
270 return r;
271}
272
273static void kvm_iommu_put_pages(struct kvm *kvm,
260782bc 274 gfn_t base_gfn, unsigned long npages)
62c476c7 275{
fcd95807
JR
276 struct iommu_domain *domain;
277 gfn_t end_gfn, gfn;
62c476c7 278 pfn_t pfn;
260782bc
WH
279 u64 phys;
280
fcd95807
JR
281 domain = kvm->arch.iommu_domain;
282 end_gfn = base_gfn + npages;
283 gfn = base_gfn;
284
260782bc
WH
285 /* check if iommu exists and in use */
286 if (!domain)
287 return;
62c476c7 288
fcd95807
JR
289 while (gfn < end_gfn) {
290 unsigned long unmap_pages;
7d3002cc 291 size_t size;
fcd95807
JR
292
293 /* Get physical address */
19de40a8 294 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
16b854c8
XG
295
296 if (!phys) {
297 gfn++;
298 continue;
299 }
300
fcd95807
JR
301 pfn = phys >> PAGE_SHIFT;
302
303 /* Unmap address from IO address space */
7d3002cc
OBC
304 size = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
305 unmap_pages = 1ULL << get_order(size);
260782bc 306
fcd95807
JR
307 /* Unpin all pages we just unmapped to not leak any memory */
308 kvm_unpin_pages(kvm, pfn, unmap_pages);
309
310 gfn += unmap_pages;
128ca093
JR
311
312 cond_resched();
fcd95807 313 }
62c476c7
BAY
314}
315
32f6daad
AW
316void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
317{
318 kvm_iommu_put_pages(kvm, slot->base_gfn, slot->npages);
319}
320
62c476c7
BAY
321static int kvm_iommu_unmap_memslots(struct kvm *kvm)
322{
be6ba0f0 323 int idx;
46a26bf5 324 struct kvm_memslots *slots;
be6ba0f0 325 struct kvm_memory_slot *memslot;
46a26bf5 326
95c87e2b 327 idx = srcu_read_lock(&kvm->srcu);
90d83dc3 328 slots = kvm_memslots(kvm);
682edb4c 329
be6ba0f0 330 kvm_for_each_memslot(memslot, slots)
32f6daad 331 kvm_iommu_unmap_pages(kvm, memslot);
be6ba0f0 332
95c87e2b 333 srcu_read_unlock(&kvm->srcu, idx);
62c476c7 334
e0f0bbc5
AW
335 if (kvm->arch.iommu_noncoherent)
336 kvm_arch_unregister_noncoherent_dma(kvm);
337
62c476c7
BAY
338 return 0;
339}
340
341int kvm_iommu_unmap_guest(struct kvm *kvm)
342{
19de40a8 343 struct iommu_domain *domain = kvm->arch.iommu_domain;
62c476c7
BAY
344
345 /* check if iommu exists and in use */
346 if (!domain)
347 return 0;
348
21a1416a 349 mutex_lock(&kvm->slots_lock);
62c476c7 350 kvm_iommu_unmap_memslots(kvm);
21a1416a 351 kvm->arch.iommu_domain = NULL;
d96eb2c6 352 kvm->arch.iommu_noncoherent = false;
21a1416a
AW
353 mutex_unlock(&kvm->slots_lock);
354
19de40a8 355 iommu_domain_free(domain);
62c476c7
BAY
356 return 0;
357}
This page took 0.356839 seconds and 5 git commands to generate.