]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - virt/kvm/iommu.c
arm: imx6: defconfig: update tx6 defconfigs
[karo-tx-linux.git] / virt / kvm / iommu.c
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
19  * Copyright 2010 Red Hat, Inc. and/or its affiliates.
20  *
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>
28 #include <linux/module.h>
29 #include <linux/pci.h>
30 #include <linux/stat.h>
31 #include <linux/dmar.h>
32 #include <linux/iommu.h>
33 #include <linux/intel-iommu.h>
34
35 static bool allow_unsafe_assigned_interrupts;
36 module_param_named(allow_unsafe_assigned_interrupts,
37                    allow_unsafe_assigned_interrupts, bool, S_IRUGO | S_IWUSR);
38 MODULE_PARM_DESC(allow_unsafe_assigned_interrupts,
39  "Enable device assignment on platforms without interrupt remapping support.");
40
41 static int kvm_iommu_unmap_memslots(struct kvm *kvm);
42 static void kvm_iommu_put_pages(struct kvm *kvm,
43                                 gfn_t base_gfn, unsigned long npages);
44
45 static pfn_t kvm_pin_pages(struct kvm_memory_slot *slot, gfn_t gfn,
46                            unsigned long size)
47 {
48         gfn_t end_gfn;
49         pfn_t pfn;
50
51         pfn     = gfn_to_pfn_memslot(slot, gfn);
52         end_gfn = gfn + (size >> PAGE_SHIFT);
53         gfn    += 1;
54
55         if (is_error_noslot_pfn(pfn))
56                 return pfn;
57
58         while (gfn < end_gfn)
59                 gfn_to_pfn_memslot(slot, gfn++);
60
61         return pfn;
62 }
63
64 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
65 {
66         gfn_t gfn, end_gfn;
67         pfn_t pfn;
68         int r = 0;
69         struct iommu_domain *domain = kvm->arch.iommu_domain;
70         int flags;
71
72         /* check if iommu exists and in use */
73         if (!domain)
74                 return 0;
75
76         gfn     = slot->base_gfn;
77         end_gfn = gfn + slot->npages;
78
79         flags = IOMMU_READ;
80         if (!(slot->flags & KVM_MEM_READONLY))
81                 flags |= IOMMU_WRITE;
82         if (kvm->arch.iommu_flags & KVM_IOMMU_CACHE_COHERENCY)
83                 flags |= IOMMU_CACHE;
84
85
86         while (gfn < end_gfn) {
87                 unsigned long page_size;
88
89                 /* Check if already mapped */
90                 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn))) {
91                         gfn += 1;
92                         continue;
93                 }
94
95                 /* Get the page size we could use to map */
96                 page_size = kvm_host_page_size(kvm, gfn);
97
98                 /* Make sure the page_size does not exceed the memslot */
99                 while ((gfn + (page_size >> PAGE_SHIFT)) > end_gfn)
100                         page_size >>= 1;
101
102                 /* Make sure gfn is aligned to the page size we want to map */
103                 while ((gfn << PAGE_SHIFT) & (page_size - 1))
104                         page_size >>= 1;
105
106                 /*
107                  * Pin all pages we are about to map in memory. This is
108                  * important because we unmap and unpin in 4kb steps later.
109                  */
110                 pfn = kvm_pin_pages(slot, gfn, page_size);
111                 if (is_error_noslot_pfn(pfn)) {
112                         gfn += 1;
113                         continue;
114                 }
115
116                 /* Map into IO address space */
117                 r = iommu_map(domain, gfn_to_gpa(gfn), pfn_to_hpa(pfn),
118                               page_size, flags);
119                 if (r) {
120                         printk(KERN_ERR "kvm_iommu_map_address:"
121                                "iommu failed to map pfn=%llx\n", pfn);
122                         goto unmap_pages;
123                 }
124
125                 gfn += page_size >> PAGE_SHIFT;
126
127
128         }
129
130         return 0;
131
132 unmap_pages:
133         kvm_iommu_put_pages(kvm, slot->base_gfn, gfn);
134         return r;
135 }
136
137 static int kvm_iommu_map_memslots(struct kvm *kvm)
138 {
139         int idx, r = 0;
140         struct kvm_memslots *slots;
141         struct kvm_memory_slot *memslot;
142
143         idx = srcu_read_lock(&kvm->srcu);
144         slots = kvm_memslots(kvm);
145
146         kvm_for_each_memslot(memslot, slots) {
147                 r = kvm_iommu_map_pages(kvm, memslot);
148                 if (r)
149                         break;
150         }
151         srcu_read_unlock(&kvm->srcu, idx);
152
153         return r;
154 }
155
156 int kvm_assign_device(struct kvm *kvm,
157                       struct kvm_assigned_dev_kernel *assigned_dev)
158 {
159         struct pci_dev *pdev = NULL;
160         struct iommu_domain *domain = kvm->arch.iommu_domain;
161         int r, last_flags;
162
163         /* check if iommu exists and in use */
164         if (!domain)
165                 return 0;
166
167         pdev = assigned_dev->dev;
168         if (pdev == NULL)
169                 return -ENODEV;
170
171         r = iommu_attach_device(domain, &pdev->dev);
172         if (r) {
173                 dev_err(&pdev->dev, "kvm assign device failed ret %d", r);
174                 return r;
175         }
176
177         last_flags = kvm->arch.iommu_flags;
178         if (iommu_domain_has_cap(kvm->arch.iommu_domain,
179                                  IOMMU_CAP_CACHE_COHERENCY))
180                 kvm->arch.iommu_flags |= KVM_IOMMU_CACHE_COHERENCY;
181
182         /* Check if need to update IOMMU page table for guest memory */
183         if ((last_flags ^ kvm->arch.iommu_flags) ==
184                         KVM_IOMMU_CACHE_COHERENCY) {
185                 kvm_iommu_unmap_memslots(kvm);
186                 r = kvm_iommu_map_memslots(kvm);
187                 if (r)
188                         goto out_unmap;
189         }
190
191         pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
192
193         dev_info(&pdev->dev, "kvm assign device\n");
194
195         return 0;
196 out_unmap:
197         kvm_iommu_unmap_memslots(kvm);
198         return r;
199 }
200
201 int kvm_deassign_device(struct kvm *kvm,
202                         struct kvm_assigned_dev_kernel *assigned_dev)
203 {
204         struct iommu_domain *domain = kvm->arch.iommu_domain;
205         struct pci_dev *pdev = NULL;
206
207         /* check if iommu exists and in use */
208         if (!domain)
209                 return 0;
210
211         pdev = assigned_dev->dev;
212         if (pdev == NULL)
213                 return -ENODEV;
214
215         iommu_detach_device(domain, &pdev->dev);
216
217         pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
218
219         dev_info(&pdev->dev, "kvm deassign device\n");
220
221         return 0;
222 }
223
224 int kvm_iommu_map_guest(struct kvm *kvm)
225 {
226         int r;
227
228         if (!iommu_present(&pci_bus_type)) {
229                 printk(KERN_ERR "%s: iommu not found\n", __func__);
230                 return -ENODEV;
231         }
232
233         mutex_lock(&kvm->slots_lock);
234
235         kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type);
236         if (!kvm->arch.iommu_domain) {
237                 r = -ENOMEM;
238                 goto out_unlock;
239         }
240
241         if (!allow_unsafe_assigned_interrupts &&
242             !iommu_domain_has_cap(kvm->arch.iommu_domain,
243                                   IOMMU_CAP_INTR_REMAP)) {
244                 printk(KERN_WARNING "%s: No interrupt remapping support,"
245                        " disallowing device assignment."
246                        " Re-enble with \"allow_unsafe_assigned_interrupts=1\""
247                        " module option.\n", __func__);
248                 iommu_domain_free(kvm->arch.iommu_domain);
249                 kvm->arch.iommu_domain = NULL;
250                 r = -EPERM;
251                 goto out_unlock;
252         }
253
254         r = kvm_iommu_map_memslots(kvm);
255         if (r)
256                 kvm_iommu_unmap_memslots(kvm);
257
258 out_unlock:
259         mutex_unlock(&kvm->slots_lock);
260         return r;
261 }
262
263 static void kvm_unpin_pages(struct kvm *kvm, pfn_t pfn, unsigned long npages)
264 {
265         unsigned long i;
266
267         for (i = 0; i < npages; ++i)
268                 kvm_release_pfn_clean(pfn + i);
269 }
270
271 static void kvm_iommu_put_pages(struct kvm *kvm,
272                                 gfn_t base_gfn, unsigned long npages)
273 {
274         struct iommu_domain *domain;
275         gfn_t end_gfn, gfn;
276         pfn_t pfn;
277         u64 phys;
278
279         domain  = kvm->arch.iommu_domain;
280         end_gfn = base_gfn + npages;
281         gfn     = base_gfn;
282
283         /* check if iommu exists and in use */
284         if (!domain)
285                 return;
286
287         while (gfn < end_gfn) {
288                 unsigned long unmap_pages;
289                 size_t size;
290
291                 /* Get physical address */
292                 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
293
294                 if (!phys) {
295                         gfn++;
296                         continue;
297                 }
298
299                 pfn  = phys >> PAGE_SHIFT;
300
301                 /* Unmap address from IO address space */
302                 size       = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
303                 unmap_pages = 1ULL << get_order(size);
304
305                 /* Unpin all pages we just unmapped to not leak any memory */
306                 kvm_unpin_pages(kvm, pfn, unmap_pages);
307
308                 gfn += unmap_pages;
309         }
310 }
311
312 void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
313 {
314         kvm_iommu_put_pages(kvm, slot->base_gfn, slot->npages);
315 }
316
317 static int kvm_iommu_unmap_memslots(struct kvm *kvm)
318 {
319         int idx;
320         struct kvm_memslots *slots;
321         struct kvm_memory_slot *memslot;
322
323         idx = srcu_read_lock(&kvm->srcu);
324         slots = kvm_memslots(kvm);
325
326         kvm_for_each_memslot(memslot, slots)
327                 kvm_iommu_unmap_pages(kvm, memslot);
328
329         srcu_read_unlock(&kvm->srcu, idx);
330
331         return 0;
332 }
333
334 int kvm_iommu_unmap_guest(struct kvm *kvm)
335 {
336         struct iommu_domain *domain = kvm->arch.iommu_domain;
337
338         /* check if iommu exists and in use */
339         if (!domain)
340                 return 0;
341
342         mutex_lock(&kvm->slots_lock);
343         kvm_iommu_unmap_memslots(kvm);
344         kvm->arch.iommu_domain = NULL;
345         mutex_unlock(&kvm->slots_lock);
346
347         iommu_domain_free(domain);
348         return 0;
349 }