blob: 8b66bf45477e75a4c6c503cc5bb1270db7952b8c [file] [log] [blame]
Thomas Gleixner2025cf92019-05-29 07:18:02 -07001// SPDX-License-Identifier: GPL-2.0-only
David Woodhouse8a94ade2015-03-24 14:54:56 +00002/*
3 * Copyright © 2015 Intel Corporation.
4 *
David Woodhouse8a94ade2015-03-24 14:54:56 +00005 * Authors: David Woodhouse <dwmw2@infradead.org>
6 */
7
8#include <linux/intel-iommu.h>
David Woodhouse2f26e0a2015-09-09 11:40:47 +01009#include <linux/mmu_notifier.h>
10#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010011#include <linux/sched/mm.h>
David Woodhouse2f26e0a2015-09-09 11:40:47 +010012#include <linux/slab.h>
13#include <linux/intel-svm.h>
14#include <linux/rculist.h>
15#include <linux/pci.h>
16#include <linux/pci-ats.h>
David Woodhousea222a7f2015-10-07 23:35:18 +010017#include <linux/dmar.h>
18#include <linux/interrupt.h>
Souptick Joarder50a7ca32018-08-17 15:44:47 -070019#include <linux/mm_types.h>
Jacob Pan59a62332020-01-02 08:18:08 +080020#include <linux/ioasid.h>
Ashok Raj9d8c3af2017-08-08 13:29:27 -070021#include <asm/page.h>
David Woodhousea222a7f2015-10-07 23:35:18 +010022
Lu Baoluaf395072018-07-14 15:46:56 +080023#include "intel-pasid.h"
24
David Woodhousea222a7f2015-10-07 23:35:18 +010025static irqreturn_t prq_event_thread(int irq, void *d);
David Woodhouse2f26e0a2015-09-09 11:40:47 +010026
David Woodhousea222a7f2015-10-07 23:35:18 +010027#define PRQ_ORDER 0
28
29int intel_svm_enable_prq(struct intel_iommu *iommu)
30{
31 struct page *pages;
32 int irq, ret;
33
34 pages = alloc_pages(GFP_KERNEL | __GFP_ZERO, PRQ_ORDER);
35 if (!pages) {
36 pr_warn("IOMMU: %s: Failed to allocate page request queue\n",
37 iommu->name);
38 return -ENOMEM;
39 }
40 iommu->prq = page_address(pages);
41
42 irq = dmar_alloc_hwirq(DMAR_UNITS_SUPPORTED + iommu->seq_id, iommu->node, iommu);
43 if (irq <= 0) {
44 pr_err("IOMMU: %s: Failed to create IRQ vector for page request queue\n",
45 iommu->name);
46 ret = -EINVAL;
47 err:
48 free_pages((unsigned long)iommu->prq, PRQ_ORDER);
49 iommu->prq = NULL;
50 return ret;
51 }
52 iommu->pr_irq = irq;
53
54 snprintf(iommu->prq_name, sizeof(iommu->prq_name), "dmar%d-prq", iommu->seq_id);
55
56 ret = request_threaded_irq(irq, NULL, prq_event_thread, IRQF_ONESHOT,
57 iommu->prq_name, iommu);
58 if (ret) {
59 pr_err("IOMMU: %s: Failed to request IRQ for page request queue\n",
60 iommu->name);
61 dmar_free_hwirq(irq);
Jerry Snitselaar72d54812017-12-20 09:48:56 -070062 iommu->pr_irq = 0;
David Woodhousea222a7f2015-10-07 23:35:18 +010063 goto err;
64 }
65 dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
66 dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
67 dmar_writeq(iommu->reg + DMAR_PQA_REG, virt_to_phys(iommu->prq) | PRQ_ORDER);
68
69 return 0;
70}
71
72int intel_svm_finish_prq(struct intel_iommu *iommu)
73{
74 dmar_writeq(iommu->reg + DMAR_PQH_REG, 0ULL);
75 dmar_writeq(iommu->reg + DMAR_PQT_REG, 0ULL);
76 dmar_writeq(iommu->reg + DMAR_PQA_REG, 0ULL);
77
Jerry Snitselaar72d54812017-12-20 09:48:56 -070078 if (iommu->pr_irq) {
79 free_irq(iommu->pr_irq, iommu);
80 dmar_free_hwirq(iommu->pr_irq);
81 iommu->pr_irq = 0;
82 }
David Woodhousea222a7f2015-10-07 23:35:18 +010083
84 free_pages((unsigned long)iommu->prq, PRQ_ORDER);
85 iommu->prq = NULL;
86
87 return 0;
88}
89
Jacob Panff3dc652020-01-02 08:18:03 +080090static inline bool intel_svm_capable(struct intel_iommu *iommu)
91{
92 return iommu->flags & VTD_FLAG_SVM_CAPABLE;
93}
94
95void intel_svm_check(struct intel_iommu *iommu)
96{
97 if (!pasid_supported(iommu))
98 return;
99
100 if (cpu_feature_enabled(X86_FEATURE_GBPAGES) &&
101 !cap_fl1gp_support(iommu->cap)) {
102 pr_err("%s SVM disabled, incompatible 1GB page capability\n",
103 iommu->name);
104 return;
105 }
106
107 if (cpu_feature_enabled(X86_FEATURE_LA57) &&
108 !cap_5lp_support(iommu->cap)) {
109 pr_err("%s SVM disabled, incompatible paging mode\n",
110 iommu->name);
111 return;
112 }
113
114 iommu->flags |= VTD_FLAG_SVM_CAPABLE;
115}
116
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100117static void intel_flush_svm_range_dev (struct intel_svm *svm, struct intel_svm_dev *sdev,
Jacob Pan8744daf2019-08-26 08:53:29 -0700118 unsigned long address, unsigned long pages, int ih)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100119{
120 struct qi_desc desc;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100121
Lu Baoluf81b8462019-11-20 14:10:16 +0800122 if (pages == -1) {
Jacob Pan8744daf2019-08-26 08:53:29 -0700123 desc.qw0 = QI_EIOTLB_PASID(svm->pasid) |
124 QI_EIOTLB_DID(sdev->did) |
125 QI_EIOTLB_GRAN(QI_GRAN_NONG_PASID) |
126 QI_EIOTLB_TYPE;
Lu Baolu5d308fc2018-12-10 09:58:58 +0800127 desc.qw1 = 0;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100128 } else {
David Woodhouse5d52f482015-10-20 15:52:13 +0100129 int mask = ilog2(__roundup_pow_of_two(pages));
130
Lu Baolu5d308fc2018-12-10 09:58:58 +0800131 desc.qw0 = QI_EIOTLB_PASID(svm->pasid) |
132 QI_EIOTLB_DID(sdev->did) |
133 QI_EIOTLB_GRAN(QI_GRAN_PSI_PASID) |
134 QI_EIOTLB_TYPE;
135 desc.qw1 = QI_EIOTLB_ADDR(address) |
Lu Baolu5d308fc2018-12-10 09:58:58 +0800136 QI_EIOTLB_IH(ih) |
137 QI_EIOTLB_AM(mask);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100138 }
Lu Baolu5d308fc2018-12-10 09:58:58 +0800139 desc.qw2 = 0;
140 desc.qw3 = 0;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100141 qi_submit_sync(&desc, svm->iommu);
142
143 if (sdev->dev_iotlb) {
Lu Baolu5d308fc2018-12-10 09:58:58 +0800144 desc.qw0 = QI_DEV_EIOTLB_PASID(svm->pasid) |
145 QI_DEV_EIOTLB_SID(sdev->sid) |
146 QI_DEV_EIOTLB_QDEP(sdev->qdep) |
147 QI_DEIOTLB_TYPE;
David Woodhouse5d52f482015-10-20 15:52:13 +0100148 if (pages == -1) {
Lu Baolu5d308fc2018-12-10 09:58:58 +0800149 desc.qw1 = QI_DEV_EIOTLB_ADDR(-1ULL >> 1) |
150 QI_DEV_EIOTLB_SIZE;
David Woodhouse5d52f482015-10-20 15:52:13 +0100151 } else if (pages > 1) {
152 /* The least significant zero bit indicates the size. So,
153 * for example, an "address" value of 0x12345f000 will
154 * flush from 0x123440000 to 0x12347ffff (256KiB). */
155 unsigned long last = address + ((unsigned long)(pages - 1) << VTD_PAGE_SHIFT);
Ingo Molnared7158b2018-02-22 10:54:55 +0100156 unsigned long mask = __rounddown_pow_of_two(address ^ last);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100157
Lu Baolu5d308fc2018-12-10 09:58:58 +0800158 desc.qw1 = QI_DEV_EIOTLB_ADDR((address & ~mask) |
159 (mask - 1)) | QI_DEV_EIOTLB_SIZE;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100160 } else {
Lu Baolu5d308fc2018-12-10 09:58:58 +0800161 desc.qw1 = QI_DEV_EIOTLB_ADDR(address);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100162 }
Lu Baolu5d308fc2018-12-10 09:58:58 +0800163 desc.qw2 = 0;
164 desc.qw3 = 0;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100165 qi_submit_sync(&desc, svm->iommu);
166 }
167}
168
169static void intel_flush_svm_range(struct intel_svm *svm, unsigned long address,
Jacob Pan8744daf2019-08-26 08:53:29 -0700170 unsigned long pages, int ih)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100171{
172 struct intel_svm_dev *sdev;
173
174 rcu_read_lock();
175 list_for_each_entry_rcu(sdev, &svm->devs, list)
Jacob Pan8744daf2019-08-26 08:53:29 -0700176 intel_flush_svm_range_dev(svm, sdev, address, pages, ih);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100177 rcu_read_unlock();
178}
179
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100180/* Pages have been freed at this point */
181static void intel_invalidate_range(struct mmu_notifier *mn,
182 struct mm_struct *mm,
183 unsigned long start, unsigned long end)
184{
185 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
186
187 intel_flush_svm_range(svm, start,
Jacob Pan8744daf2019-08-26 08:53:29 -0700188 (end - start + PAGE_SIZE - 1) >> VTD_PAGE_SHIFT, 0);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100189}
190
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100191static void intel_mm_release(struct mmu_notifier *mn, struct mm_struct *mm)
192{
193 struct intel_svm *svm = container_of(mn, struct intel_svm, notifier);
David Woodhousee57e58b2016-01-12 19:18:06 +0000194 struct intel_svm_dev *sdev;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100195
David Woodhousee57e58b2016-01-12 19:18:06 +0000196 /* This might end up being called from exit_mmap(), *before* the page
197 * tables are cleared. And __mmu_notifier_release() will delete us from
198 * the list of notifiers so that our invalidate_range() callback doesn't
199 * get called when the page tables are cleared. So we need to protect
200 * against hardware accessing those page tables.
201 *
202 * We do it by clearing the entry in the PASID table and then flushing
203 * the IOTLB and the PASID table caches. This might upset hardware;
204 * perhaps we'll want to point the PASID to a dummy PGD (like the zero
205 * page) so that we end up taking a fault that the hardware really
206 * *has* to handle gracefully without affecting other processes.
207 */
David Woodhousee57e58b2016-01-12 19:18:06 +0000208 rcu_read_lock();
209 list_for_each_entry_rcu(sdev, &svm->devs, list) {
Lu Baolu1c4f88b2018-12-10 09:59:05 +0800210 intel_pasid_tear_down_entry(svm->iommu, sdev->dev, svm->pasid);
Jacob Pan8744daf2019-08-26 08:53:29 -0700211 intel_flush_svm_range_dev(svm, sdev, 0, -1, 0);
David Woodhousee57e58b2016-01-12 19:18:06 +0000212 }
213 rcu_read_unlock();
214
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100215}
216
217static const struct mmu_notifier_ops intel_mmuops = {
218 .release = intel_mm_release,
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100219 .invalidate_range = intel_invalidate_range,
220};
221
222static DEFINE_MUTEX(pasid_mutex);
Lu Baolu51261aa2018-07-14 15:46:55 +0800223static LIST_HEAD(global_svm_list);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100224
Jacob Pan034d4732020-01-02 08:18:10 +0800225#define for_each_svm_dev(sdev, svm, d) \
226 list_for_each_entry((sdev), &(svm)->devs, list) \
227 if ((d) != (sdev)->dev) {} else
228
Jacob Pan56722a42020-05-16 14:20:47 +0800229int intel_svm_bind_gpasid(struct iommu_domain *domain, struct device *dev,
230 struct iommu_gpasid_bind_data *data)
231{
232 struct intel_iommu *iommu = intel_svm_device_to_iommu(dev);
233 struct dmar_domain *dmar_domain;
234 struct intel_svm_dev *sdev;
235 struct intel_svm *svm;
236 int ret = 0;
237
238 if (WARN_ON(!iommu) || !data)
239 return -EINVAL;
240
241 if (data->version != IOMMU_GPASID_BIND_VERSION_1 ||
242 data->format != IOMMU_PASID_FORMAT_INTEL_VTD)
243 return -EINVAL;
244
245 if (!dev_is_pci(dev))
246 return -ENOTSUPP;
247
248 /* VT-d supports devices with full 20 bit PASIDs only */
249 if (pci_max_pasids(to_pci_dev(dev)) != PASID_MAX)
250 return -EINVAL;
251
252 /*
253 * We only check host PASID range, we have no knowledge to check
254 * guest PASID range.
255 */
256 if (data->hpasid <= 0 || data->hpasid >= PASID_MAX)
257 return -EINVAL;
258
259 dmar_domain = to_dmar_domain(domain);
260
261 mutex_lock(&pasid_mutex);
262 svm = ioasid_find(NULL, data->hpasid, NULL);
263 if (IS_ERR(svm)) {
264 ret = PTR_ERR(svm);
265 goto out;
266 }
267
268 if (svm) {
269 /*
270 * If we found svm for the PASID, there must be at
271 * least one device bond, otherwise svm should be freed.
272 */
273 if (WARN_ON(list_empty(&svm->devs))) {
274 ret = -EINVAL;
275 goto out;
276 }
277
278 for_each_svm_dev(sdev, svm, dev) {
279 /*
280 * For devices with aux domains, we should allow
281 * multiple bind calls with the same PASID and pdev.
282 */
283 if (iommu_dev_feature_enabled(dev,
284 IOMMU_DEV_FEAT_AUX)) {
285 sdev->users++;
286 } else {
287 dev_warn_ratelimited(dev,
288 "Already bound with PASID %u\n",
289 svm->pasid);
290 ret = -EBUSY;
291 }
292 goto out;
293 }
294 } else {
295 /* We come here when PASID has never been bond to a device. */
296 svm = kzalloc(sizeof(*svm), GFP_KERNEL);
297 if (!svm) {
298 ret = -ENOMEM;
299 goto out;
300 }
301 /* REVISIT: upper layer/VFIO can track host process that bind
302 * the PASID. ioasid_set = mm might be sufficient for vfio to
303 * check pasid VMM ownership. We can drop the following line
304 * once VFIO and IOASID set check is in place.
305 */
306 svm->mm = get_task_mm(current);
307 svm->pasid = data->hpasid;
308 if (data->flags & IOMMU_SVA_GPASID_VAL) {
309 svm->gpasid = data->gpasid;
310 svm->flags |= SVM_FLAG_GUEST_PASID;
311 }
312 ioasid_set_data(data->hpasid, svm);
313 INIT_LIST_HEAD_RCU(&svm->devs);
314 mmput(svm->mm);
315 }
316 sdev = kzalloc(sizeof(*sdev), GFP_KERNEL);
317 if (!sdev) {
318 ret = -ENOMEM;
319 goto out;
320 }
321 sdev->dev = dev;
322
323 /* Only count users if device has aux domains */
324 if (iommu_dev_feature_enabled(dev, IOMMU_DEV_FEAT_AUX))
325 sdev->users = 1;
326
327 /* Set up device context entry for PASID if not enabled already */
328 ret = intel_iommu_enable_pasid(iommu, sdev->dev);
329 if (ret) {
330 dev_err_ratelimited(dev, "Failed to enable PASID capability\n");
331 kfree(sdev);
332 goto out;
333 }
334
335 /*
336 * PASID table is per device for better security. Therefore, for
337 * each bind of a new device even with an existing PASID, we need to
338 * call the nested mode setup function here.
339 */
340 spin_lock(&iommu->lock);
341 ret = intel_pasid_setup_nested(iommu, dev, (pgd_t *)data->gpgd,
342 data->hpasid, &data->vtd, dmar_domain,
343 data->addr_width);
344 spin_unlock(&iommu->lock);
345 if (ret) {
346 dev_err_ratelimited(dev, "Failed to set up PASID %llu in nested mode, Err %d\n",
347 data->hpasid, ret);
348 /*
349 * PASID entry should be in cleared state if nested mode
350 * set up failed. So we only need to clear IOASID tracking
351 * data such that free call will succeed.
352 */
353 kfree(sdev);
354 goto out;
355 }
356
357 svm->flags |= SVM_FLAG_GUEST_MODE;
358
359 init_rcu_head(&sdev->rcu);
360 list_add_rcu(&sdev->list, &svm->devs);
361 out:
362 if (!IS_ERR_OR_NULL(svm) && list_empty(&svm->devs)) {
363 ioasid_set_data(data->hpasid, NULL);
364 kfree(svm);
365 }
366
367 mutex_unlock(&pasid_mutex);
368 return ret;
369}
370
371int intel_svm_unbind_gpasid(struct device *dev, int pasid)
372{
373 struct intel_iommu *iommu = intel_svm_device_to_iommu(dev);
374 struct intel_svm_dev *sdev;
375 struct intel_svm *svm;
376 int ret = -EINVAL;
377
378 if (WARN_ON(!iommu))
379 return -EINVAL;
380
381 mutex_lock(&pasid_mutex);
382 svm = ioasid_find(NULL, pasid, NULL);
383 if (!svm) {
384 ret = -EINVAL;
385 goto out;
386 }
387
388 if (IS_ERR(svm)) {
389 ret = PTR_ERR(svm);
390 goto out;
391 }
392
393 for_each_svm_dev(sdev, svm, dev) {
394 ret = 0;
395 if (iommu_dev_feature_enabled(dev, IOMMU_DEV_FEAT_AUX))
396 sdev->users--;
397 if (!sdev->users) {
398 list_del_rcu(&sdev->list);
399 intel_pasid_tear_down_entry(iommu, dev, svm->pasid);
400 intel_flush_svm_range_dev(svm, sdev, 0, -1, 0);
401 /* TODO: Drain in flight PRQ for the PASID since it
402 * may get reused soon, we don't want to
403 * confuse with its previous life.
404 * intel_svm_drain_prq(dev, pasid);
405 */
406 kfree_rcu(sdev, rcu);
407
408 if (list_empty(&svm->devs)) {
409 /*
410 * We do not free the IOASID here in that
411 * IOMMU driver did not allocate it.
412 * Unlike native SVM, IOASID for guest use was
413 * allocated prior to the bind call.
414 * In any case, if the free call comes before
415 * the unbind, IOMMU driver will get notified
416 * and perform cleanup.
417 */
418 ioasid_set_data(pasid, NULL);
419 kfree(svm);
420 }
421 }
422 break;
423 }
424out:
425 mutex_unlock(&pasid_mutex);
426 return ret;
427}
428
Jacob Pan064a57d2020-05-16 14:20:54 +0800429/* Caller must hold pasid_mutex, mm reference */
430static int
431intel_svm_bind_mm(struct device *dev, int flags, struct svm_dev_ops *ops,
432 struct mm_struct *mm, struct intel_svm_dev **sd)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100433{
434 struct intel_iommu *iommu = intel_svm_device_to_iommu(dev);
Lu Baolud7cbc0f2019-03-25 09:30:29 +0800435 struct device_domain_info *info;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100436 struct intel_svm_dev *sdev;
437 struct intel_svm *svm = NULL;
438 int pasid_max;
439 int ret;
440
Lu Baoluc56cba52019-03-01 11:23:12 +0800441 if (!iommu || dmar_disabled)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100442 return -EINVAL;
443
Jacob Pan6eba09a2020-01-02 08:18:05 +0800444 if (!intel_svm_capable(iommu))
445 return -ENOTSUPP;
446
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100447 if (dev_is_pci(dev)) {
448 pasid_max = pci_max_pasids(to_pci_dev(dev));
449 if (pasid_max < 0)
450 return -EINVAL;
451 } else
452 pasid_max = 1 << 20;
453
Jacob Pan064a57d2020-05-16 14:20:54 +0800454 /* Bind supervisor PASID shuld have mm = NULL */
Lu Baolubb37f7d2018-05-04 13:08:19 +0800455 if (flags & SVM_FLAG_SUPERVISOR_MODE) {
Jacob Pan064a57d2020-05-16 14:20:54 +0800456 if (!ecap_srs(iommu->ecap) || mm) {
457 pr_err("Supervisor PASID with user provided mm.\n");
David Woodhouse5cec7532015-10-15 15:52:15 +0100458 return -EINVAL;
Jacob Pan064a57d2020-05-16 14:20:54 +0800459 }
David Woodhouse5cec7532015-10-15 15:52:15 +0100460 }
461
Jacob Pan064a57d2020-05-16 14:20:54 +0800462 if (!(flags & SVM_FLAG_PRIVATE_PASID)) {
Lu Baolu51261aa2018-07-14 15:46:55 +0800463 struct intel_svm *t;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100464
Lu Baolu51261aa2018-07-14 15:46:55 +0800465 list_for_each_entry(t, &global_svm_list, list) {
466 if (t->mm != mm || (t->flags & SVM_FLAG_PRIVATE_PASID))
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100467 continue;
468
Lu Baolu51261aa2018-07-14 15:46:55 +0800469 svm = t;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100470 if (svm->pasid >= pasid_max) {
471 dev_warn(dev,
472 "Limited PASID width. Cannot use existing PASID %d\n",
473 svm->pasid);
474 ret = -ENOSPC;
475 goto out;
476 }
477
Jacob Pan034d4732020-01-02 08:18:10 +0800478 /* Find the matching device in svm list */
479 for_each_svm_dev(sdev, svm, dev) {
480 if (sdev->ops != ops) {
481 ret = -EBUSY;
482 goto out;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100483 }
Jacob Pan034d4732020-01-02 08:18:10 +0800484 sdev->users++;
485 goto success;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100486 }
487
488 break;
489 }
490 }
491
492 sdev = kzalloc(sizeof(*sdev), GFP_KERNEL);
493 if (!sdev) {
494 ret = -ENOMEM;
495 goto out;
496 }
497 sdev->dev = dev;
498
Lu Baolud7cbc0f2019-03-25 09:30:29 +0800499 ret = intel_iommu_enable_pasid(iommu, dev);
Jacob Pan064a57d2020-05-16 14:20:54 +0800500 if (ret) {
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100501 kfree(sdev);
502 goto out;
503 }
Lu Baolud7cbc0f2019-03-25 09:30:29 +0800504
Lu Baolue85bb992020-05-16 14:20:52 +0800505 info = get_domain_info(dev);
Lu Baolud7cbc0f2019-03-25 09:30:29 +0800506 if (!info || !info->pasid_supported) {
507 kfree(sdev);
508 goto out;
509 }
510
511 sdev->did = FLPT_DEFAULT_DID;
512 sdev->sid = PCI_DEVID(info->bus, info->devfn);
513 if (info->ats_enabled) {
514 sdev->dev_iotlb = 1;
515 sdev->qdep = info->ats_qdep;
516 if (sdev->qdep >= QI_DEV_EIOTLB_MAX_INVS)
517 sdev->qdep = 0;
518 }
519
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100520 /* Finish the setup now we know we're keeping it */
521 sdev->users = 1;
David Woodhouse0204a492015-10-13 17:18:10 +0100522 sdev->ops = ops;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100523 init_rcu_head(&sdev->rcu);
524
525 if (!svm) {
526 svm = kzalloc(sizeof(*svm), GFP_KERNEL);
527 if (!svm) {
528 ret = -ENOMEM;
529 kfree(sdev);
530 goto out;
531 }
532 svm->iommu = iommu;
533
Lu Baolu4774cc52018-07-14 15:47:01 +0800534 if (pasid_max > intel_pasid_max_id)
535 pasid_max = intel_pasid_max_id;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100536
Jacob Pan59a62332020-01-02 08:18:08 +0800537 /* Do not use PASID 0, reserved for RID to PASID */
538 svm->pasid = ioasid_alloc(NULL, PASID_MIN,
539 pasid_max - 1, svm);
540 if (svm->pasid == INVALID_IOASID) {
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100541 kfree(svm);
Lu Baolubbe4b3a2018-02-24 13:42:27 +0800542 kfree(sdev);
Jacob Pan59a62332020-01-02 08:18:08 +0800543 ret = -ENOSPC;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100544 goto out;
545 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100546 svm->notifier.ops = &intel_mmuops;
David Woodhouse5cec7532015-10-15 15:52:15 +0100547 svm->mm = mm;
David Woodhouse569e4f72015-10-15 13:59:14 +0100548 svm->flags = flags;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100549 INIT_LIST_HEAD_RCU(&svm->devs);
Lu Baolu51261aa2018-07-14 15:46:55 +0800550 INIT_LIST_HEAD(&svm->list);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100551 ret = -ENOMEM;
David Woodhouse5cec7532015-10-15 15:52:15 +0100552 if (mm) {
553 ret = mmu_notifier_register(&svm->notifier, mm);
554 if (ret) {
Jacob Pan59a62332020-01-02 08:18:08 +0800555 ioasid_free(svm->pasid);
David Woodhouse5cec7532015-10-15 15:52:15 +0100556 kfree(svm);
557 kfree(sdev);
558 goto out;
559 }
Lu Baolu1c4f88b2018-12-10 09:59:05 +0800560 }
Sohil Mehta2f13eb72017-12-20 11:59:27 -0800561
Lu Baolu1c4f88b2018-12-10 09:59:05 +0800562 spin_lock(&iommu->lock);
563 ret = intel_pasid_setup_first_level(iommu, dev,
564 mm ? mm->pgd : init_mm.pgd,
565 svm->pasid, FLPT_DEFAULT_DID,
Lu Baolu87208f22020-01-02 08:18:16 +0800566 (mm ? 0 : PASID_FLAG_SUPERVISOR_MODE) |
567 (cpu_feature_enabled(X86_FEATURE_LA57) ?
568 PASID_FLAG_FL5LP : 0));
Lu Baolu1c4f88b2018-12-10 09:59:05 +0800569 spin_unlock(&iommu->lock);
570 if (ret) {
571 if (mm)
572 mmu_notifier_unregister(&svm->notifier, mm);
Jacob Pan59a62332020-01-02 08:18:08 +0800573 ioasid_free(svm->pasid);
Lu Baolu1c4f88b2018-12-10 09:59:05 +0800574 kfree(svm);
575 kfree(sdev);
576 goto out;
577 }
Lu Baolu51261aa2018-07-14 15:46:55 +0800578
579 list_add_tail(&svm->list, &global_svm_list);
Jacob Pand7af4d92019-05-08 12:22:46 -0700580 } else {
581 /*
582 * Binding a new device with existing PASID, need to setup
583 * the PASID entry.
584 */
585 spin_lock(&iommu->lock);
586 ret = intel_pasid_setup_first_level(iommu, dev,
587 mm ? mm->pgd : init_mm.pgd,
588 svm->pasid, FLPT_DEFAULT_DID,
Lu Baolu87208f22020-01-02 08:18:16 +0800589 (mm ? 0 : PASID_FLAG_SUPERVISOR_MODE) |
590 (cpu_feature_enabled(X86_FEATURE_LA57) ?
591 PASID_FLAG_FL5LP : 0));
Jacob Pand7af4d92019-05-08 12:22:46 -0700592 spin_unlock(&iommu->lock);
593 if (ret) {
594 kfree(sdev);
595 goto out;
596 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100597 }
598 list_add_rcu(&sdev->list, &svm->devs);
Jacob Pan064a57d2020-05-16 14:20:54 +0800599success:
600 sdev->pasid = svm->pasid;
601 sdev->sva.dev = dev;
602 if (sd)
603 *sd = sdev;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100604 ret = 0;
605 out:
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100606 return ret;
607}
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100608
Jacob Pan064a57d2020-05-16 14:20:54 +0800609/* Caller must hold pasid_mutex */
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100610int intel_svm_unbind_mm(struct device *dev, int pasid)
611{
612 struct intel_svm_dev *sdev;
613 struct intel_iommu *iommu;
614 struct intel_svm *svm;
615 int ret = -EINVAL;
616
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100617 iommu = intel_svm_device_to_iommu(dev);
Lu Baolu4774cc52018-07-14 15:47:01 +0800618 if (!iommu)
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100619 goto out;
620
Jacob Pan59a62332020-01-02 08:18:08 +0800621 svm = ioasid_find(NULL, pasid, NULL);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100622 if (!svm)
623 goto out;
624
Jacob Pan59a62332020-01-02 08:18:08 +0800625 if (IS_ERR(svm)) {
626 ret = PTR_ERR(svm);
627 goto out;
628 }
629
Jacob Pan034d4732020-01-02 08:18:10 +0800630 for_each_svm_dev(sdev, svm, dev) {
631 ret = 0;
632 sdev->users--;
633 if (!sdev->users) {
634 list_del_rcu(&sdev->list);
635 /* Flush the PASID cache and IOTLB for this device.
636 * Note that we do depend on the hardware *not* using
637 * the PASID any more. Just as we depend on other
638 * devices never using PASIDs that they have no right
639 * to use. We have a *shared* PASID table, because it's
640 * large and has to be physically contiguous. So it's
641 * hard to be as defensive as we might like. */
642 intel_pasid_tear_down_entry(iommu, dev, svm->pasid);
643 intel_flush_svm_range_dev(svm, sdev, 0, -1, 0);
644 kfree_rcu(sdev, rcu);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100645
Jacob Pan034d4732020-01-02 08:18:10 +0800646 if (list_empty(&svm->devs)) {
647 ioasid_free(svm->pasid);
648 if (svm->mm)
649 mmu_notifier_unregister(&svm->notifier, svm->mm);
650 list_del(&svm->list);
651 /* We mandate that no page faults may be outstanding
652 * for the PASID when intel_svm_unbind_mm() is called.
653 * If that is not obeyed, subtle errors will happen.
654 * Let's make them less subtle... */
655 memset(svm, 0x6b, sizeof(*svm));
656 kfree(svm);
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100657 }
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100658 }
Jacob Pan034d4732020-01-02 08:18:10 +0800659 break;
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100660 }
661 out:
David Woodhouse2f26e0a2015-09-09 11:40:47 +0100662
663 return ret;
664}
CQ Tang15060ab2017-05-10 11:39:03 -0700665
David Woodhousea222a7f2015-10-07 23:35:18 +0100666/* Page request queue descriptor */
667struct page_req_dsc {
Jacob Pan5b438f42019-01-11 13:04:57 +0800668 union {
669 struct {
670 u64 type:8;
671 u64 pasid_present:1;
672 u64 priv_data_present:1;
673 u64 rsvd:6;
674 u64 rid:16;
675 u64 pasid:20;
676 u64 exe_req:1;
677 u64 pm_req:1;
678 u64 rsvd2:10;
679 };
680 u64 qw_0;
681 };
682 union {
683 struct {
684 u64 rd_req:1;
685 u64 wr_req:1;
686 u64 lpig:1;
687 u64 prg_index:9;
688 u64 addr:52;
689 };
690 u64 qw_1;
691 };
692 u64 priv_data[2];
David Woodhousea222a7f2015-10-07 23:35:18 +0100693};
694
Jacob Pan52355fb2020-03-17 09:10:18 +0800695#define PRQ_RING_MASK ((0x1000 << PRQ_ORDER) - 0x20)
Joerg Roedel7f8312a2015-11-17 16:11:39 +0100696
697static bool access_error(struct vm_area_struct *vma, struct page_req_dsc *req)
698{
699 unsigned long requested = 0;
700
701 if (req->exe_req)
702 requested |= VM_EXEC;
703
704 if (req->rd_req)
705 requested |= VM_READ;
706
707 if (req->wr_req)
708 requested |= VM_WRITE;
709
710 return (requested & ~vma->vm_flags) != 0;
711}
712
Ashok Raj9d8c3af2017-08-08 13:29:27 -0700713static bool is_canonical_address(u64 addr)
714{
715 int shift = 64 - (__VIRTUAL_MASK_SHIFT + 1);
716 long saddr = (long) addr;
717
718 return (((saddr << shift) >> shift) == saddr);
719}
720
David Woodhousea222a7f2015-10-07 23:35:18 +0100721static irqreturn_t prq_event_thread(int irq, void *d)
722{
723 struct intel_iommu *iommu = d;
724 struct intel_svm *svm = NULL;
725 int head, tail, handled = 0;
726
David Woodhouse46924002016-02-15 12:42:38 +0000727 /* Clear PPR bit before reading head/tail registers, to
728 * ensure that we get a new interrupt if needed. */
729 writel(DMA_PRS_PPR, iommu->reg + DMAR_PRS_REG);
730
David Woodhousea222a7f2015-10-07 23:35:18 +0100731 tail = dmar_readq(iommu->reg + DMAR_PQT_REG) & PRQ_RING_MASK;
732 head = dmar_readq(iommu->reg + DMAR_PQH_REG) & PRQ_RING_MASK;
733 while (head != tail) {
David Woodhouse0204a492015-10-13 17:18:10 +0100734 struct intel_svm_dev *sdev;
David Woodhousea222a7f2015-10-07 23:35:18 +0100735 struct vm_area_struct *vma;
736 struct page_req_dsc *req;
737 struct qi_desc resp;
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700738 int result;
739 vm_fault_t ret;
David Woodhousea222a7f2015-10-07 23:35:18 +0100740 u64 address;
741
742 handled = 1;
743
744 req = &iommu->prq[head / sizeof(*req)];
745
746 result = QI_RESP_FAILURE;
David Woodhouse7f92a2e2015-10-16 17:22:31 +0100747 address = (u64)req->addr << VTD_PAGE_SHIFT;
David Woodhousea222a7f2015-10-07 23:35:18 +0100748 if (!req->pasid_present) {
749 pr_err("%s: Page request without PASID: %08llx %08llx\n",
750 iommu->name, ((unsigned long long *)req)[0],
751 ((unsigned long long *)req)[1]);
Lu Baolu19ed3e22018-11-05 10:18:58 +0800752 goto no_pasid;
David Woodhousea222a7f2015-10-07 23:35:18 +0100753 }
754
755 if (!svm || svm->pasid != req->pasid) {
756 rcu_read_lock();
Jacob Pan59a62332020-01-02 08:18:08 +0800757 svm = ioasid_find(NULL, req->pasid, NULL);
David Woodhousea222a7f2015-10-07 23:35:18 +0100758 /* It *can't* go away, because the driver is not permitted
759 * to unbind the mm while any page faults are outstanding.
760 * So we only need RCU to protect the internal idr code. */
761 rcu_read_unlock();
Jacob Pan59a62332020-01-02 08:18:08 +0800762 if (IS_ERR_OR_NULL(svm)) {
David Woodhousea222a7f2015-10-07 23:35:18 +0100763 pr_err("%s: Page request for invalid PASID %d: %08llx %08llx\n",
764 iommu->name, req->pasid, ((unsigned long long *)req)[0],
765 ((unsigned long long *)req)[1]);
David Woodhouse26322ab2015-10-15 21:12:56 +0100766 goto no_pasid;
David Woodhousea222a7f2015-10-07 23:35:18 +0100767 }
768 }
769
770 result = QI_RESP_INVALID;
David Woodhouse5cec7532015-10-15 15:52:15 +0100771 /* Since we're using init_mm.pgd directly, we should never take
772 * any faults on kernel addresses. */
773 if (!svm->mm)
774 goto bad_req;
Ashok Raj9d8c3af2017-08-08 13:29:27 -0700775
776 /* If address is not canonical, return invalid response */
777 if (!is_canonical_address(address))
778 goto bad_req;
779
Jacob Pan902baf62020-03-19 21:32:30 -0700780 /* If the mm is already defunct, don't handle faults. */
781 if (!mmget_not_zero(svm->mm))
782 goto bad_req;
783
David Woodhousea222a7f2015-10-07 23:35:18 +0100784 down_read(&svm->mm->mmap_sem);
785 vma = find_extend_vma(svm->mm, address);
786 if (!vma || address < vma->vm_start)
787 goto invalid;
788
Joerg Roedel7f8312a2015-11-17 16:11:39 +0100789 if (access_error(vma, req))
790 goto invalid;
791
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700792 ret = handle_mm_fault(vma, address,
David Woodhousea222a7f2015-10-07 23:35:18 +0100793 req->wr_req ? FAULT_FLAG_WRITE : 0);
794 if (ret & VM_FAULT_ERROR)
795 goto invalid;
796
797 result = QI_RESP_SUCCESS;
798 invalid:
799 up_read(&svm->mm->mmap_sem);
David Woodhousee57e58b2016-01-12 19:18:06 +0000800 mmput(svm->mm);
David Woodhousea222a7f2015-10-07 23:35:18 +0100801 bad_req:
802 /* Accounting for major/minor faults? */
David Woodhouse0204a492015-10-13 17:18:10 +0100803 rcu_read_lock();
804 list_for_each_entry_rcu(sdev, &svm->devs, list) {
Jacob Pan5b438f42019-01-11 13:04:57 +0800805 if (sdev->sid == req->rid)
David Woodhouse0204a492015-10-13 17:18:10 +0100806 break;
807 }
808 /* Other devices can go away, but the drivers are not permitted
809 * to unbind while any page faults might be in flight. So it's
810 * OK to drop the 'lock' here now we have it. */
811 rcu_read_unlock();
812
813 if (WARN_ON(&sdev->list == &svm->devs))
814 sdev = NULL;
815
816 if (sdev && sdev->ops && sdev->ops->fault_cb) {
817 int rwxp = (req->rd_req << 3) | (req->wr_req << 2) |
Jacob Pan5b438f42019-01-11 13:04:57 +0800818 (req->exe_req << 1) | (req->pm_req);
819 sdev->ops->fault_cb(sdev->dev, req->pasid, req->addr,
820 req->priv_data, rwxp, result);
David Woodhouse0204a492015-10-13 17:18:10 +0100821 }
David Woodhouse26322ab2015-10-15 21:12:56 +0100822 /* We get here in the error case where the PASID lookup failed,
823 and these can be NULL. Do not use them below this point! */
824 sdev = NULL;
825 svm = NULL;
826 no_pasid:
Jacob Pan5b438f42019-01-11 13:04:57 +0800827 if (req->lpig || req->priv_data_present) {
828 /*
829 * Per VT-d spec. v3.0 ch7.7, system software must
830 * respond with page group response if private data
831 * is present (PDP) or last page in group (LPIG) bit
832 * is set. This is an additional VT-d feature beyond
833 * PCI ATS spec.
834 */
Lu Baolu5d308fc2018-12-10 09:58:58 +0800835 resp.qw0 = QI_PGRP_PASID(req->pasid) |
Jacob Pan5b438f42019-01-11 13:04:57 +0800836 QI_PGRP_DID(req->rid) |
David Woodhousea222a7f2015-10-07 23:35:18 +0100837 QI_PGRP_PASID_P(req->pasid_present) |
Jacob Pan5b438f42019-01-11 13:04:57 +0800838 QI_PGRP_PDP(req->pasid_present) |
839 QI_PGRP_RESP_CODE(result) |
David Woodhousea222a7f2015-10-07 23:35:18 +0100840 QI_PGRP_RESP_TYPE;
Lu Baolu5d308fc2018-12-10 09:58:58 +0800841 resp.qw1 = QI_PGRP_IDX(req->prg_index) |
Jacob Pan5b438f42019-01-11 13:04:57 +0800842 QI_PGRP_LPIG(req->lpig);
843
844 if (req->priv_data_present)
845 memcpy(&resp.qw2, req->priv_data,
846 sizeof(req->priv_data));
Jacob Pan5f755852020-01-02 08:18:09 +0800847 resp.qw2 = 0;
848 resp.qw3 = 0;
849 qi_submit_sync(&resp, iommu);
David Woodhousea222a7f2015-10-07 23:35:18 +0100850 }
David Woodhousea222a7f2015-10-07 23:35:18 +0100851 head = (head + sizeof(*req)) & PRQ_RING_MASK;
852 }
853
854 dmar_writeq(iommu->reg + DMAR_PQH_REG, tail);
855
856 return IRQ_RETVAL(handled);
857}
Jacob Pan064a57d2020-05-16 14:20:54 +0800858
859#define to_intel_svm_dev(handle) container_of(handle, struct intel_svm_dev, sva)
860struct iommu_sva *
861intel_svm_bind(struct device *dev, struct mm_struct *mm, void *drvdata)
862{
863 struct iommu_sva *sva = ERR_PTR(-EINVAL);
864 struct intel_svm_dev *sdev = NULL;
865 int flags = 0;
866 int ret;
867
868 /*
869 * TODO: Consolidate with generic iommu-sva bind after it is merged.
870 * It will require shared SVM data structures, i.e. combine io_mm
871 * and intel_svm etc.
872 */
873 if (drvdata)
874 flags = *(int *)drvdata;
875 mutex_lock(&pasid_mutex);
876 ret = intel_svm_bind_mm(dev, flags, NULL, mm, &sdev);
877 if (ret)
878 sva = ERR_PTR(ret);
879 else if (sdev)
880 sva = &sdev->sva;
881 else
882 WARN(!sdev, "SVM bind succeeded with no sdev!\n");
883
884 mutex_unlock(&pasid_mutex);
885
886 return sva;
887}
888
889void intel_svm_unbind(struct iommu_sva *sva)
890{
891 struct intel_svm_dev *sdev;
892
893 mutex_lock(&pasid_mutex);
894 sdev = to_intel_svm_dev(sva);
895 intel_svm_unbind_mm(sdev->dev, sdev->pasid);
896 mutex_unlock(&pasid_mutex);
897}
898
899int intel_svm_get_pasid(struct iommu_sva *sva)
900{
901 struct intel_svm_dev *sdev;
902 int pasid;
903
904 mutex_lock(&pasid_mutex);
905 sdev = to_intel_svm_dev(sva);
906 pasid = sdev->pasid;
907 mutex_unlock(&pasid_mutex);
908
909 return pasid;
910}