blob: 97a818992d6ddcd16d62d29db693b131445cd0b7 [file] [log] [blame]
David Woodhouse8a94ade2015-03-24 14:54:56 +00001/*
2 * Copyright © 2015 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 * Authors: David Woodhouse <dwmw2@infradead.org>
14 */
15
16#include <linux/intel-iommu.h>
David Woodhouse2f26e0a2015-09-09 11:40:47 +010017#include <linux/mmu_notifier.h>
18#include <linux/sched.h>
19#include <linux/slab.h>
20#include <linux/intel-svm.h>
21#include <linux/rculist.h>
22#include <linux/pci.h>
23#include <linux/pci-ats.h>
David Woodhousea222a7f2015-10-07 23:35:18 +010024#include <linux/dmar.h>
25#include <linux/interrupt.h>
26
27static irqreturn_t prq_event_thread(int irq, void *d);
David Woodhouse2f26e0a2015-09-09 11:40:47 +010028
29struct pasid_entry {
30 u64 val;
31};
David Woodhouse8a94ade2015-03-24 14:54:56 +000032
David Woodhouse907fea32015-10-13 14:11:13 +010033struct pasid_state_entry {
34 u64 val;
35};
36
David Woodhouse8a94ade2015-03-24 14:54:56 +000037int intel_svm_alloc_pasid_tables(struct intel_iommu *iommu)
38{
39 struct page *pages;
40 int order;
41
42 order = ecap_pss(iommu->ecap) + 7 - PAGE_SHIFT;
43 if (order < 0)
44 order = 0;
45
46 pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order);
47 if (!pages) {
48 pr_warn("IOMMU: %s: Failed to allocate PASID table\n",
49 iommu->name);
50 return -ENOMEM;
51 }
52 iommu->pasid_table = page_address(pages);
53 pr_info("%s: Allocated order %d PASID table.\n", iommu->name, order);
54
55 if (ecap_dis(iommu->ecap)) {
56 pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, order);
57 if (pages)
58 iommu->pasid_state_table = page_address(pages);
59 else
60 pr_warn("IOMMU: %s: Failed to allocate PASID state table\n",
61 iommu->name);
62 }
63
David Woodhouse2f26e0a2015-09-09 11:40:47 +010064 idr_init(&iommu->pasid_idr);
65
David Woodhouse8a94ade2015-03-24 14:54:56 +000066 return 0;
67}
68
69int intel_svm_free_pasid_tables(struct intel_iommu *iommu)
70{
71 int order;
72
73 order = ecap_pss(iommu->ecap) + 7 - PAGE_SHIFT;
74 if (order < 0)
75 order = 0;
76
77 if (iommu->pasid_table) {
78 free_pages((unsigned long)iommu->pasid_table, order);
79 iommu->pasid_table = NULL;
80 }
81 if (iommu->pasid_state_table) {
82 free_pages((unsigned long)iommu->pasid_state_table, order);
83 iommu->pasid_state_table = NULL;
84 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +010085 idr_destroy(&iommu->pasid_idr);
David Woodhouse8a94ade2015-03-24 14:54:56 +000086 return 0;
87}
David Woodhouse2f26e0a2015-09-09 11:40:47 +010088
David Woodhousea222a7f2015-10-07 23:35:18 +010089#define PRQ_ORDER 0
90
91int intel_svm_enable_prq(struct intel_iommu *iommu)
92{
93 struct page *pages;
94 int irq, ret;
95
96 pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, PRQ_ORDER);
97 if (!pages) {
98 pr_warn("IOMMU: %s: Failed to allocate page request queue\n",
99 iommu->name);
100 return -ENOMEM;
101 }
102 iommu->prq = page_address(pages);
103
104 irq = dmar_alloc_hwirq(DMAR_UNITS_SUPPORTED + iommu->seq_id, iommu->node, iommu);
105 if (irq <= 0) {
106 pr_err("IOMMU: %s: Failed to create IRQ vector for page request queue\n",
107 iommu->name);
108 ret = -EINVAL;
109 err:
110 free_pages((unsigned long)iommu->prq, PRQ_ORDER);
111 iommu->prq = NULL;
112 return ret;
113 }
114 iommu->pr_irq = irq;
115
116 snprintf(iommu->prq_name, sizeof(iommu->prq_name), "dmar%d-prq", iommu->seq_id);
117
118 ret = request_threaded_irq(irq, NULL, prq_event_thread, IRQF_ONESHOT,
119 iommu->prq_name, iommu);
120 if (ret) {
121 pr_err("IOMMU: %s: Failed to request IRQ for page request queue\n",
122 iommu->name);
123 dmar_free_hwirq(irq);
124 goto err;
125 }
126 dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
127 dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
128 dmar_writeq(iommu->reg + DMAR_PQA_REG, virt_to_phys(iommu->prq) | PRQ_ORDER);
129
130 return 0;
131}
132
133int intel_svm_finish_prq(struct intel_iommu *iommu)
134{
135 dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
136 dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
137 dmar_writeq(iommu->reg + DMAR_PQA_REG, 0ULL);
138
139 free_irq(iommu->pr_irq, iommu);
140 dmar_free_hwirq(iommu->pr_irq);
141 iommu->pr_irq = 0;
142
143 free_pages((unsigned long)iommu->prq, PRQ_ORDER);
144 iommu->prq = NULL;
145
146 return 0;
147}
148
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100149static void intel_flush_svm_range_dev (struct intel_svm *svm, struct intel_svm_dev *sdev,
David Woodhouse5d52f482015-10-20 15:52:13 +0100150 unsigned long address, unsigned long pages, int ih, int gl)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100151{
152 struct qi_desc desc;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100153
David Woodhouse5d52f482015-10-20 15:52:13 +0100154 if (pages == -1) {
David Woodhousee0349922015-10-16 19:36:53 +0100155 /* For global kernel pages we have to flush them in *all* PASIDs
156 * because that's the only option the hardware gives us. Despite
157 * the fact that they are actually only accessible through one. */
158 if (gl)
159 desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
160 QI_EIOTLB_GRAN(QI_GRAN_ALL_ALL) | QI_EIOTLB_TYPE;
161 else
162 desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
163 QI_EIOTLB_GRAN(QI_GRAN_NONG_PASID) | QI_EIOTLB_TYPE;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100164 desc.high = 0;
165 } else {
David Woodhouse5d52f482015-10-20 15:52:13 +0100166 int mask = ilog2(__roundup_pow_of_two(pages));
167
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100168 desc.low = QI_EIOTLB_PASID(svm->pasid) | QI_EIOTLB_DID(sdev->did) |
169 QI_EIOTLB_GRAN(QI_GRAN_PSI_PASID) | QI_EIOTLB_TYPE;
David Woodhousee0349922015-10-16 19:36:53 +0100170 desc.high = QI_EIOTLB_ADDR(address) | QI_EIOTLB_GL(gl) |
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100171 QI_EIOTLB_IH(ih) | QI_EIOTLB_AM(mask);
172 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100173 qi_submit_sync(&desc, svm->iommu);
174
175 if (sdev->dev_iotlb) {
176 desc.low = QI_DEV_EIOTLB_PASID(svm->pasid) | QI_DEV_EIOTLB_SID(sdev->sid) |
177 QI_DEV_EIOTLB_QDEP(sdev->qdep) | QI_DEIOTLB_TYPE;
David Woodhouse5d52f482015-10-20 15:52:13 +0100178 if (pages == -1) {
179 desc.high = QI_DEV_EIOTLB_ADDR(-1ULL >> 1) | QI_DEV_EIOTLB_SIZE;
180 } else if (pages > 1) {
181 /* The least significant zero bit indicates the size. So,
182 * for example, an "address" value of 0x12345f000 will
183 * flush from 0x123440000 to 0x12347ffff (256KiB). */
184 unsigned long last = address + ((unsigned long)(pages - 1) << VTD_PAGE_SHIFT);
185 unsigned long mask = __rounddown_pow_of_two(address ^ last);;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100186
David Woodhouse5d52f482015-10-20 15:52:13 +0100187 desc.high = QI_DEV_EIOTLB_ADDR((address & ~mask) | (mask - 1)) | QI_DEV_EIOTLB_SIZE;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100188 } else {
189 desc.high = QI_DEV_EIOTLB_ADDR(address);
190 }
191 qi_submit_sync(&desc, svm->iommu);
192 }
193}
194
195static void intel_flush_svm_range(struct intel_svm *svm, unsigned long address,
David Woodhouse5d52f482015-10-20 15:52:13 +0100196 unsigned long pages, int ih, int gl)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100197{
198 struct intel_svm_dev *sdev;
199
David Woodhouse907fea32015-10-13 14:11:13 +0100200 /* Try deferred invalidate if available */
201 if (svm->iommu->pasid_state_table &&
202 !cmpxchg64(&svm->iommu->pasid_state_table[svm->pasid].val, 0, 1ULL << 63))
203 return;
204
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100205 rcu_read_lock();
206 list_for_each_entry_rcu(sdev, &svm->devs, list)
David Woodhousee0349922015-10-16 19:36:53 +0100207 intel_flush_svm_range_dev(svm, sdev, address, pages, ih, gl);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100208 rcu_read_unlock();
209}
210
211static void intel_change_pte(struct mmu_notifier *mn, struct mm_struct *mm,
212 unsigned long address, pte_t pte)
213{
214 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
215
David Woodhousee0349922015-10-16 19:36:53 +0100216 intel_flush_svm_range(svm, address, 1, 1, 0);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100217}
218
219static void intel_invalidate_page(struct mmu_notifier *mn, struct mm_struct *mm,
220 unsigned long address)
221{
222 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
223
David Woodhousee0349922015-10-16 19:36:53 +0100224 intel_flush_svm_range(svm, address, 1, 1, 0);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100225}
226
227/* Pages have been freed at this point */
228static void intel_invalidate_range(struct mmu_notifier *mn,
229 struct mm_struct *mm,
230 unsigned long start, unsigned long end)
231{
232 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
233
234 intel_flush_svm_range(svm, start,
David Woodhousee0349922015-10-16 19:36:53 +0100235 (end - start + PAGE_SIZE - 1) >> VTD_PAGE_SHIFT, 0, 0);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100236}
237
238
David Woodhouse5a10ba22015-10-24 21:06:39 +0200239static void intel_flush_pasid_dev(struct intel_svm *svm, struct intel_svm_dev *sdev, int pasid)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100240{
241 struct qi_desc desc;
242
243 desc.high = 0;
David Woodhouse5a10ba22015-10-24 21:06:39 +0200244 desc.low = QI_PC_TYPE | QI_PC_DID(sdev->did) | QI_PC_PASID_SEL | QI_PC_PASID(pasid);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100245
246 qi_submit_sync(&desc, svm->iommu);
247}
248
249static void intel_mm_release(struct mmu_notifier *mn, struct mm_struct *mm)
250{
251 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
David Woodhousee57e58b2016-01-12 19:18:06 +0000252 struct intel_svm_dev *sdev;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100253
David Woodhousee57e58b2016-01-12 19:18:06 +0000254 /* This might end up being called from exit_mmap(), *before* the page
255 * tables are cleared. And __mmu_notifier_release() will delete us from
256 * the list of notifiers so that our invalidate_range() callback doesn't
257 * get called when the page tables are cleared. So we need to protect
258 * against hardware accessing those page tables.
259 *
260 * We do it by clearing the entry in the PASID table and then flushing
261 * the IOTLB and the PASID table caches. This might upset hardware;
262 * perhaps we'll want to point the PASID to a dummy PGD (like the zero
263 * page) so that we end up taking a fault that the hardware really
264 * *has* to handle gracefully without affecting other processes.
265 */
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100266 svm->iommu->pasid_table[svm->pasid].val = 0;
David Woodhousee57e58b2016-01-12 19:18:06 +0000267 wmb();
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100268
David Woodhousee57e58b2016-01-12 19:18:06 +0000269 rcu_read_lock();
270 list_for_each_entry_rcu(sdev, &svm->devs, list) {
271 intel_flush_pasid_dev(svm, sdev, svm->pasid);
272 intel_flush_svm_range_dev(svm, sdev, 0, -1, 0, !svm->mm);
273 }
274 rcu_read_unlock();
275
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100276}
277
278static const struct mmu_notifier_ops intel_mmuops = {
279 .release = intel_mm_release,
280 .change_pte = intel_change_pte,
281 .invalidate_page = intel_invalidate_page,
282 .invalidate_range = intel_invalidate_range,
283};
284
285static DEFINE_MUTEX(pasid_mutex);
286
David Woodhouse0204a492015-10-13 17:18:10 +0100287int intel_svm_bind_mm(struct device *dev, int *pasid, int flags, struct svm_dev_ops *ops)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100288{
289 struct intel_iommu *iommu = intel_svm_device_to_iommu(dev);
290 struct intel_svm_dev *sdev;
291 struct intel_svm *svm = NULL;
David Woodhouse5cec7532015-10-15 15:52:15 +0100292 struct mm_struct *mm = NULL;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100293 int pasid_max;
294 int ret;
295
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100296 if (WARN_ON(!iommu))
297 return -EINVAL;
298
299 if (dev_is_pci(dev)) {
300 pasid_max = pci_max_pasids(to_pci_dev(dev));
301 if (pasid_max < 0)
302 return -EINVAL;
303 } else
304 pasid_max = 1 << 20;
305
David Woodhouse5cec7532015-10-15 15:52:15 +0100306 if ((flags & SVM_FLAG_SUPERVISOR_MODE)) {
307 if (!ecap_srs(iommu->ecap))
308 return -EINVAL;
309 } else if (pasid) {
310 mm = get_task_mm(current);
311 BUG_ON(!mm);
312 }
313
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100314 mutex_lock(&pasid_mutex);
David Woodhouse569e4f72015-10-15 13:59:14 +0100315 if (pasid && !(flags & SVM_FLAG_PRIVATE_PASID)) {
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100316 int i;
317
318 idr_for_each_entry(&iommu->pasid_idr, svm, i) {
David Woodhouse5cec7532015-10-15 15:52:15 +0100319 if (svm->mm != mm ||
David Woodhouse569e4f72015-10-15 13:59:14 +0100320 (svm->flags & SVM_FLAG_PRIVATE_PASID))
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100321 continue;
322
323 if (svm->pasid >= pasid_max) {
324 dev_warn(dev,
325 "Limited PASID width. Cannot use existing PASID %d\n",
326 svm->pasid);
327 ret = -ENOSPC;
328 goto out;
329 }
330
331 list_for_each_entry(sdev, &svm->devs, list) {
332 if (dev == sdev->dev) {
David Woodhouse0204a492015-10-13 17:18:10 +0100333 if (sdev->ops != ops) {
334 ret = -EBUSY;
335 goto out;
336 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100337 sdev->users++;
338 goto success;
339 }
340 }
341
342 break;
343 }
344 }
345
346 sdev = kzalloc(sizeof(*sdev), GFP_KERNEL);
347 if (!sdev) {
348 ret = -ENOMEM;
349 goto out;
350 }
351 sdev->dev = dev;
352
353 ret = intel_iommu_enable_pasid(iommu, sdev);
354 if (ret || !pasid) {
355 /* If they don't actually want to assign a PASID, this is
356 * just an enabling check/preparation. */
357 kfree(sdev);
358 goto out;
359 }
360 /* Finish the setup now we know we're keeping it */
361 sdev->users = 1;
David Woodhouse0204a492015-10-13 17:18:10 +0100362 sdev->ops = ops;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100363 init_rcu_head(&sdev->rcu);
364
365 if (!svm) {
366 svm = kzalloc(sizeof(*svm), GFP_KERNEL);
367 if (!svm) {
368 ret = -ENOMEM;
369 kfree(sdev);
370 goto out;
371 }
372 svm->iommu = iommu;
373
374 if (pasid_max > 2 << ecap_pss(iommu->ecap))
375 pasid_max = 2 << ecap_pss(iommu->ecap);
376
David Woodhouse5a10ba22015-10-24 21:06:39 +0200377 /* Do not use PASID 0 in caching mode (virtualised IOMMU) */
378 ret = idr_alloc(&iommu->pasid_idr, svm,
379 !!cap_caching_mode(iommu->cap),
380 pasid_max - 1, GFP_KERNEL);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100381 if (ret < 0) {
382 kfree(svm);
383 goto out;
384 }
385 svm->pasid = ret;
386 svm->notifier.ops = &intel_mmuops;
David Woodhouse5cec7532015-10-15 15:52:15 +0100387 svm->mm = mm;
David Woodhouse569e4f72015-10-15 13:59:14 +0100388 svm->flags = flags;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100389 INIT_LIST_HEAD_RCU(&svm->devs);
390 ret = -ENOMEM;
David Woodhouse5cec7532015-10-15 15:52:15 +0100391 if (mm) {
392 ret = mmu_notifier_register(&svm->notifier, mm);
393 if (ret) {
394 idr_remove(&svm->iommu->pasid_idr, svm->pasid);
395 kfree(svm);
396 kfree(sdev);
397 goto out;
398 }
399 iommu->pasid_table[svm->pasid].val = (u64)__pa(mm->pgd) | 1;
David Woodhouse5cec7532015-10-15 15:52:15 +0100400 } else
401 iommu->pasid_table[svm->pasid].val = (u64)__pa(init_mm.pgd) | 1 | (1ULL << 11);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100402 wmb();
David Woodhouse5a10ba22015-10-24 21:06:39 +0200403 /* In caching mode, we still have to flush with PASID 0 when
404 * a PASID table entry becomes present. Not entirely clear
405 * *why* that would be the case — surely we could just issue
406 * a flush with the PASID value that we've changed? The PASID
407 * is the index into the table, after all. It's not like domain
408 * IDs in the case of the equivalent context-entry change in
409 * caching mode. And for that matter it's not entirely clear why
410 * a VMM would be in the business of caching the PASID table
411 * anyway. Surely that can be left entirely to the guest? */
412 if (cap_caching_mode(iommu->cap))
413 intel_flush_pasid_dev(svm, sdev, 0);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100414 }
415 list_add_rcu(&sdev->list, &svm->devs);
416
417 success:
418 *pasid = svm->pasid;
419 ret = 0;
420 out:
421 mutex_unlock(&pasid_mutex);
David Woodhouse5cec7532015-10-15 15:52:15 +0100422 if (mm)
423 mmput(mm);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100424 return ret;
425}
426EXPORT_SYMBOL_GPL(intel_svm_bind_mm);
427
428int intel_svm_unbind_mm(struct device *dev, int pasid)
429{
430 struct intel_svm_dev *sdev;
431 struct intel_iommu *iommu;
432 struct intel_svm *svm;
433 int ret = -EINVAL;
434
435 mutex_lock(&pasid_mutex);
436 iommu = intel_svm_device_to_iommu(dev);
437 if (!iommu || !iommu->pasid_table)
438 goto out;
439
440 svm = idr_find(&iommu->pasid_idr, pasid);
441 if (!svm)
442 goto out;
443
444 list_for_each_entry(sdev, &svm->devs, list) {
445 if (dev == sdev->dev) {
446 ret = 0;
447 sdev->users--;
448 if (!sdev->users) {
449 list_del_rcu(&sdev->list);
450 /* Flush the PASID cache and IOTLB for this device.
451 * Note that we do depend on the hardware *not* using
452 * the PASID any more. Just as we depend on other
453 * devices never using PASIDs that they have no right
454 * to use. We have a *shared* PASID table, because it's
455 * large and has to be physically contiguous. So it's
456 * hard to be as defensive as we might like. */
David Woodhouse5a10ba22015-10-24 21:06:39 +0200457 intel_flush_pasid_dev(svm, sdev, svm->pasid);
David Woodhousee0349922015-10-16 19:36:53 +0100458 intel_flush_svm_range_dev(svm, sdev, 0, -1, 0, !svm->mm);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100459 kfree_rcu(sdev, rcu);
460
461 if (list_empty(&svm->devs)) {
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100462
463 idr_remove(&svm->iommu->pasid_idr, svm->pasid);
David Woodhouse5cec7532015-10-15 15:52:15 +0100464 if (svm->mm)
David Woodhousee57e58b2016-01-12 19:18:06 +0000465 mmu_notifier_unregister(&svm->notifier, svm->mm);
466
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100467 /* We mandate that no page faults may be outstanding
468 * for the PASID when intel_svm_unbind_mm() is called.
469 * If that is not obeyed, subtle errors will happen.
470 * Let's make them less subtle... */
471 memset(svm, 0x6b, sizeof(*svm));
472 kfree(svm);
473 }
474 }
475 break;
476 }
477 }
478 out:
479 mutex_unlock(&pasid_mutex);
480
481 return ret;
482}
483EXPORT_SYMBOL_GPL(intel_svm_unbind_mm);
David Woodhousea222a7f2015-10-07 23:35:18 +0100484
485/* Page request queue descriptor */
486struct page_req_dsc {
487 u64 srr:1;
488 u64 bof:1;
489 u64 pasid_present:1;
490 u64 lpig:1;
491 u64 pasid:20;
492 u64 bus:8;
493 u64 private:23;
494 u64 prg_index:9;
495 u64 rd_req:1;
496 u64 wr_req:1;
497 u64 exe_req:1;
498 u64 priv_req:1;
499 u64 devfn:8;
500 u64 addr:52;
501};
502
503#define PRQ_RING_MASK ((0x1000 << PRQ_ORDER) - 0x10)
Joerg Roedel7f8312a2015-11-17 16:11:39 +0100504
505static bool access_error(struct vm_area_struct *vma, struct page_req_dsc *req)
506{
507 unsigned long requested = 0;
508
509 if (req->exe_req)
510 requested |= VM_EXEC;
511
512 if (req->rd_req)
513 requested |= VM_READ;
514
515 if (req->wr_req)
516 requested |= VM_WRITE;
517
518 return (requested & ~vma->vm_flags) != 0;
519}
520
David Woodhousea222a7f2015-10-07 23:35:18 +0100521static irqreturn_t prq_event_thread(int irq, void *d)
522{
523 struct intel_iommu *iommu = d;
524 struct intel_svm *svm = NULL;
525 int head, tail, handled = 0;
526
527 tail = dmar_readq(iommu->reg + DMAR_PQT_REG) & PRQ_RING_MASK;
528 head = dmar_readq(iommu->reg + DMAR_PQH_REG) & PRQ_RING_MASK;
529 while (head != tail) {
David Woodhouse0204a492015-10-13 17:18:10 +0100530 struct intel_svm_dev *sdev;
David Woodhousea222a7f2015-10-07 23:35:18 +0100531 struct vm_area_struct *vma;
532 struct page_req_dsc *req;
533 struct qi_desc resp;
534 int ret, result;
535 u64 address;
536
537 handled = 1;
538
539 req = &iommu->prq[head / sizeof(*req)];
540
541 result = QI_RESP_FAILURE;
David Woodhouse7f92a2e2015-10-16 17:22:31 +0100542 address = (u64)req->addr << VTD_PAGE_SHIFT;
David Woodhousea222a7f2015-10-07 23:35:18 +0100543 if (!req->pasid_present) {
544 pr_err("%s: Page request without PASID: %08llx %08llx\n",
545 iommu->name, ((unsigned long long *)req)[0],
546 ((unsigned long long *)req)[1]);
547 goto bad_req;
548 }
549
550 if (!svm || svm->pasid != req->pasid) {
551 rcu_read_lock();
552 svm = idr_find(&iommu->pasid_idr, req->pasid);
553 /* It *can't* go away, because the driver is not permitted
554 * to unbind the mm while any page faults are outstanding.
555 * So we only need RCU to protect the internal idr code. */
556 rcu_read_unlock();
557
558 if (!svm) {
559 pr_err("%s: Page request for invalid PASID %d: %08llx %08llx\n",
560 iommu->name, req->pasid, ((unsigned long long *)req)[0],
561 ((unsigned long long *)req)[1]);
David Woodhouse26322ab2015-10-15 21:12:56 +0100562 goto no_pasid;
David Woodhousea222a7f2015-10-07 23:35:18 +0100563 }
564 }
565
566 result = QI_RESP_INVALID;
David Woodhouse5cec7532015-10-15 15:52:15 +0100567 /* Since we're using init_mm.pgd directly, we should never take
568 * any faults on kernel addresses. */
569 if (!svm->mm)
570 goto bad_req;
David Woodhousee57e58b2016-01-12 19:18:06 +0000571 /* If the mm is already defunct, don't handle faults. */
572 if (!atomic_inc_not_zero(&svm->mm->mm_users))
573 goto bad_req;
David Woodhousea222a7f2015-10-07 23:35:18 +0100574 down_read(&svm->mm->mmap_sem);
575 vma = find_extend_vma(svm->mm, address);
576 if (!vma || address < vma->vm_start)
577 goto invalid;
578
Joerg Roedel7f8312a2015-11-17 16:11:39 +0100579 if (access_error(vma, req))
580 goto invalid;
581
David Woodhousea222a7f2015-10-07 23:35:18 +0100582 ret = handle_mm_fault(svm->mm, vma, address,
583 req->wr_req ? FAULT_FLAG_WRITE : 0);
584 if (ret & VM_FAULT_ERROR)
585 goto invalid;
586
587 result = QI_RESP_SUCCESS;
588 invalid:
589 up_read(&svm->mm->mmap_sem);
David Woodhousee57e58b2016-01-12 19:18:06 +0000590 mmput(svm->mm);
David Woodhousea222a7f2015-10-07 23:35:18 +0100591 bad_req:
592 /* Accounting for major/minor faults? */
David Woodhouse0204a492015-10-13 17:18:10 +0100593 rcu_read_lock();
594 list_for_each_entry_rcu(sdev, &svm->devs, list) {
Dan Carpenter3c7c2f32015-10-17 08:18:47 +0300595 if (sdev->sid == PCI_DEVID(req->bus, req->devfn))
David Woodhouse0204a492015-10-13 17:18:10 +0100596 break;
597 }
598 /* Other devices can go away, but the drivers are not permitted
599 * to unbind while any page faults might be in flight. So it's
600 * OK to drop the 'lock' here now we have it. */
601 rcu_read_unlock();
602
603 if (WARN_ON(&sdev->list == &svm->devs))
604 sdev = NULL;
605
606 if (sdev && sdev->ops && sdev->ops->fault_cb) {
607 int rwxp = (req->rd_req << 3) | (req->wr_req << 2) |
David Woodhouse0bdec952015-10-28 15:14:09 +0900608 (req->exe_req << 1) | (req->priv_req);
David Woodhouse0204a492015-10-13 17:18:10 +0100609 sdev->ops->fault_cb(sdev->dev, req->pasid, req->addr, req->private, rwxp, result);
610 }
David Woodhouse26322ab2015-10-15 21:12:56 +0100611 /* We get here in the error case where the PASID lookup failed,
612 and these can be NULL. Do not use them below this point! */
613 sdev = NULL;
614 svm = NULL;
615 no_pasid:
David Woodhousea222a7f2015-10-07 23:35:18 +0100616 if (req->lpig) {
617 /* Page Group Response */
618 resp.low = QI_PGRP_PASID(req->pasid) |
619 QI_PGRP_DID((req->bus << 8) | req->devfn) |
620 QI_PGRP_PASID_P(req->pasid_present) |
621 QI_PGRP_RESP_TYPE;
622 resp.high = QI_PGRP_IDX(req->prg_index) |
623 QI_PGRP_PRIV(req->private) | QI_PGRP_RESP_CODE(result);
624
David Woodhouse26322ab2015-10-15 21:12:56 +0100625 qi_submit_sync(&resp, iommu);
David Woodhousea222a7f2015-10-07 23:35:18 +0100626 } else if (req->srr) {
627 /* Page Stream Response */
628 resp.low = QI_PSTRM_IDX(req->prg_index) |
629 QI_PSTRM_PRIV(req->private) | QI_PSTRM_BUS(req->bus) |
630 QI_PSTRM_PASID(req->pasid) | QI_PSTRM_RESP_TYPE;
631 resp.high = QI_PSTRM_ADDR(address) | QI_PSTRM_DEVFN(req->devfn) |
632 QI_PSTRM_RESP_CODE(result);
633
David Woodhouse26322ab2015-10-15 21:12:56 +0100634 qi_submit_sync(&resp, iommu);
David Woodhousea222a7f2015-10-07 23:35:18 +0100635 }
636
637 head = (head + sizeof(*req)) & PRQ_RING_MASK;
638 }
639
640 dmar_writeq(iommu->reg + DMAR_PQH_REG, tail);
641
642 return IRQ_RETVAL(handled);
643}