blob: 101f2d68eb6ea735ad7be5f251297f3de33d999b [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Joerg Roedelfc2100e2008-11-26 17:21:24 +01002/*
3 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01004 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelfc2100e2008-11-26 17:21:24 +01005 */
6
Joerg Roedel92e70662015-05-28 18:41:24 +02007#define pr_fmt(fmt) "iommu: " fmt
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02008
Joerg Roedel905d66c2011-09-06 16:03:26 +02009#include <linux/device.h>
Ohad Ben-Cohen40998182011-09-02 13:32:32 -040010#include <linux/kernel.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010011#include <linux/bug.h>
12#include <linux/types.h>
Paul Gortmakerc1af7b42018-12-01 14:19:09 -050013#include <linux/init.h>
14#include <linux/export.h>
Andrew Morton60db4022009-05-06 16:03:07 -070015#include <linux/slab.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010016#include <linux/errno.h>
17#include <linux/iommu.h>
Alex Williamsond72e31c2012-05-30 14:18:53 -060018#include <linux/idr.h>
19#include <linux/notifier.h>
20#include <linux/err.h>
Alex Williamson104a1c12014-07-03 09:51:18 -060021#include <linux/pci.h>
Alex Williamsonf096c062014-09-19 10:03:06 -060022#include <linux/bitops.h>
Robin Murphy57f98d22016-09-13 10:54:14 +010023#include <linux/property.h>
Nipun Guptaeab03e22018-09-10 19:19:18 +053024#include <linux/fsl/mc.h>
Shuah Khan7f6db172013-08-15 11:59:23 -060025#include <trace/events/iommu.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010026
Alex Williamsond72e31c2012-05-30 14:18:53 -060027static struct kset *iommu_group_kset;
Heiner Kallweite38d1f12016-06-28 20:38:36 +020028static DEFINE_IDA(iommu_group_ida);
Joerg Roedel22bb1822019-08-19 15:22:54 +020029
30static unsigned int iommu_def_domain_type __read_mostly;
Zhen Lei68a6efe2018-09-20 17:10:23 +010031static bool iommu_dma_strict __read_mostly = true;
Joerg Roedelfaf14982019-08-19 15:22:46 +020032static u32 iommu_cmd_line __read_mostly;
Alex Williamsond72e31c2012-05-30 14:18:53 -060033
34struct iommu_group {
35 struct kobject kobj;
36 struct kobject *devices_kobj;
37 struct list_head devices;
38 struct mutex mutex;
39 struct blocking_notifier_head notifier;
40 void *iommu_data;
41 void (*iommu_data_release)(void *iommu_data);
42 char *name;
43 int id;
Joerg Roedel53723dc2015-05-28 18:41:29 +020044 struct iommu_domain *default_domain;
Joerg Roedele39cb8a2015-05-28 18:41:31 +020045 struct iommu_domain *domain;
Alex Williamsond72e31c2012-05-30 14:18:53 -060046};
47
Joerg Roedelc09e22d2017-02-01 12:19:46 +010048struct group_device {
Alex Williamsond72e31c2012-05-30 14:18:53 -060049 struct list_head list;
50 struct device *dev;
51 char *name;
52};
53
54struct iommu_group_attribute {
55 struct attribute attr;
56 ssize_t (*show)(struct iommu_group *group, char *buf);
57 ssize_t (*store)(struct iommu_group *group,
58 const char *buf, size_t count);
59};
60
Eric Augerbc7d12b92017-01-19 20:57:52 +000061static const char * const iommu_group_resv_type_string[] = {
Eric Augeradfd3732019-06-03 08:53:35 +020062 [IOMMU_RESV_DIRECT] = "direct",
63 [IOMMU_RESV_DIRECT_RELAXABLE] = "direct-relaxable",
64 [IOMMU_RESV_RESERVED] = "reserved",
65 [IOMMU_RESV_MSI] = "msi",
66 [IOMMU_RESV_SW_MSI] = "msi",
Eric Augerbc7d12b92017-01-19 20:57:52 +000067};
68
Joerg Roedelfaf14982019-08-19 15:22:46 +020069#define IOMMU_CMD_LINE_DMA_API BIT(0)
70
71static void iommu_set_cmd_line_dma_api(void)
72{
73 iommu_cmd_line |= IOMMU_CMD_LINE_DMA_API;
74}
75
Joerg Roedel22bb1822019-08-19 15:22:54 +020076static bool iommu_cmd_line_dma_api(void)
Joerg Roedelfaf14982019-08-19 15:22:46 +020077{
78 return !!(iommu_cmd_line & IOMMU_CMD_LINE_DMA_API);
79}
80
Alex Williamsond72e31c2012-05-30 14:18:53 -060081#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
82struct iommu_group_attribute iommu_group_attr_##_name = \
83 __ATTR(_name, _mode, _show, _store)
84
85#define to_iommu_group_attr(_attr) \
86 container_of(_attr, struct iommu_group_attribute, attr)
87#define to_iommu_group(_kobj) \
88 container_of(_kobj, struct iommu_group, kobj)
89
Joerg Roedelb0119e82017-02-01 13:23:08 +010090static LIST_HEAD(iommu_device_list);
91static DEFINE_SPINLOCK(iommu_device_lock);
92
Joerg Roedel5fa9e7c2019-08-19 15:22:53 +020093/*
94 * Use a function instead of an array here because the domain-type is a
95 * bit-field, so an array would waste memory.
96 */
97static const char *iommu_domain_type_str(unsigned int t)
98{
99 switch (t) {
100 case IOMMU_DOMAIN_BLOCKED:
101 return "Blocked";
102 case IOMMU_DOMAIN_IDENTITY:
103 return "Passthrough";
104 case IOMMU_DOMAIN_UNMANAGED:
105 return "Unmanaged";
106 case IOMMU_DOMAIN_DMA:
107 return "Translated";
108 default:
109 return "Unknown";
110 }
111}
112
113static int __init iommu_subsys_init(void)
114{
Joerg Roedel22bb1822019-08-19 15:22:54 +0200115 bool cmd_line = iommu_cmd_line_dma_api();
116
117 if (!cmd_line) {
118 if (IS_ENABLED(CONFIG_IOMMU_DEFAULT_PASSTHROUGH))
119 iommu_set_default_passthrough(false);
120 else
121 iommu_set_default_translated(false);
Joerg Roedel2cc13bb2019-08-19 15:22:55 +0200122
Joerg Roedel2896ba42019-09-03 15:15:44 +0200123 if (iommu_default_passthrough() && mem_encrypt_active()) {
124 pr_info("Memory encryption detected - Disabling default IOMMU Passthrough\n");
Joerg Roedel2cc13bb2019-08-19 15:22:55 +0200125 iommu_set_default_translated(false);
126 }
Joerg Roedel22bb1822019-08-19 15:22:54 +0200127 }
128
129 pr_info("Default domain type: %s %s\n",
130 iommu_domain_type_str(iommu_def_domain_type),
131 cmd_line ? "(set via kernel command line)" : "");
Joerg Roedel5fa9e7c2019-08-19 15:22:53 +0200132
133 return 0;
134}
135subsys_initcall(iommu_subsys_init);
136
Joerg Roedelb0119e82017-02-01 13:23:08 +0100137int iommu_device_register(struct iommu_device *iommu)
138{
139 spin_lock(&iommu_device_lock);
140 list_add_tail(&iommu->list, &iommu_device_list);
141 spin_unlock(&iommu_device_lock);
Joerg Roedelb0119e82017-02-01 13:23:08 +0100142 return 0;
143}
144
145void iommu_device_unregister(struct iommu_device *iommu)
146{
147 spin_lock(&iommu_device_lock);
148 list_del(&iommu->list);
149 spin_unlock(&iommu_device_lock);
150}
151
Jacob Pan0c830e62019-06-03 15:57:48 +0100152static struct iommu_param *iommu_get_dev_param(struct device *dev)
153{
154 struct iommu_param *param = dev->iommu_param;
155
156 if (param)
157 return param;
158
159 param = kzalloc(sizeof(*param), GFP_KERNEL);
160 if (!param)
161 return NULL;
162
163 mutex_init(&param->lock);
164 dev->iommu_param = param;
165 return param;
166}
167
168static void iommu_free_dev_param(struct device *dev)
169{
170 kfree(dev->iommu_param);
171 dev->iommu_param = NULL;
172}
173
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100174int iommu_probe_device(struct device *dev)
175{
176 const struct iommu_ops *ops = dev->bus->iommu_ops;
Jacob Pan0c830e62019-06-03 15:57:48 +0100177 int ret;
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100178
179 WARN_ON(dev->iommu_group);
Jacob Pan0c830e62019-06-03 15:57:48 +0100180 if (!ops)
181 return -EINVAL;
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100182
Jacob Pan0c830e62019-06-03 15:57:48 +0100183 if (!iommu_get_dev_param(dev))
184 return -ENOMEM;
185
186 ret = ops->add_device(dev);
187 if (ret)
188 iommu_free_dev_param(dev);
Joerg Roedeldc9de8a2018-12-20 10:02:20 +0100189
190 return ret;
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100191}
192
193void iommu_release_device(struct device *dev)
194{
195 const struct iommu_ops *ops = dev->bus->iommu_ops;
196
197 if (dev->iommu_group)
198 ops->remove_device(dev);
Jacob Pan0c830e62019-06-03 15:57:48 +0100199
200 iommu_free_dev_param(dev);
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100201}
202
Joerg Roedel53723dc2015-05-28 18:41:29 +0200203static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
204 unsigned type);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200205static int __iommu_attach_device(struct iommu_domain *domain,
206 struct device *dev);
207static int __iommu_attach_group(struct iommu_domain *domain,
208 struct iommu_group *group);
209static void __iommu_detach_group(struct iommu_domain *domain,
210 struct iommu_group *group);
Joerg Roedel53723dc2015-05-28 18:41:29 +0200211
Will Deaconfccb4e32017-01-05 18:38:26 +0000212static int __init iommu_set_def_domain_type(char *str)
213{
214 bool pt;
Andy Shevchenko7f9584d2018-05-14 19:22:25 +0300215 int ret;
Will Deaconfccb4e32017-01-05 18:38:26 +0000216
Andy Shevchenko7f9584d2018-05-14 19:22:25 +0300217 ret = kstrtobool(str, &pt);
218 if (ret)
219 return ret;
Will Deaconfccb4e32017-01-05 18:38:26 +0000220
Joerg Roedeladab0b02019-08-19 15:22:48 +0200221 if (pt)
222 iommu_set_default_passthrough(true);
223 else
224 iommu_set_default_translated(true);
Joerg Roedelfaf14982019-08-19 15:22:46 +0200225
Will Deaconfccb4e32017-01-05 18:38:26 +0000226 return 0;
227}
228early_param("iommu.passthrough", iommu_set_def_domain_type);
229
Zhen Lei68a6efe2018-09-20 17:10:23 +0100230static int __init iommu_dma_setup(char *str)
231{
232 return kstrtobool(str, &iommu_dma_strict);
233}
234early_param("iommu.strict", iommu_dma_setup);
235
Alex Williamsond72e31c2012-05-30 14:18:53 -0600236static ssize_t iommu_group_attr_show(struct kobject *kobj,
237 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -0400238{
Alex Williamsond72e31c2012-05-30 14:18:53 -0600239 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
240 struct iommu_group *group = to_iommu_group(kobj);
241 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -0400242
Alex Williamsond72e31c2012-05-30 14:18:53 -0600243 if (attr->show)
244 ret = attr->show(group, buf);
245 return ret;
Alex Williamson14604322011-10-21 15:56:05 -0400246}
Alex Williamsond72e31c2012-05-30 14:18:53 -0600247
248static ssize_t iommu_group_attr_store(struct kobject *kobj,
249 struct attribute *__attr,
250 const char *buf, size_t count)
251{
252 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
253 struct iommu_group *group = to_iommu_group(kobj);
254 ssize_t ret = -EIO;
255
256 if (attr->store)
257 ret = attr->store(group, buf, count);
258 return ret;
259}
260
261static const struct sysfs_ops iommu_group_sysfs_ops = {
262 .show = iommu_group_attr_show,
263 .store = iommu_group_attr_store,
264};
265
266static int iommu_group_create_file(struct iommu_group *group,
267 struct iommu_group_attribute *attr)
268{
269 return sysfs_create_file(&group->kobj, &attr->attr);
270}
271
272static void iommu_group_remove_file(struct iommu_group *group,
273 struct iommu_group_attribute *attr)
274{
275 sysfs_remove_file(&group->kobj, &attr->attr);
276}
277
278static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
279{
280 return sprintf(buf, "%s\n", group->name);
281}
282
Eric Auger6c65fb32017-01-19 20:57:51 +0000283/**
284 * iommu_insert_resv_region - Insert a new region in the
285 * list of reserved regions.
286 * @new: new region to insert
287 * @regions: list of regions
288 *
Eric Auger4dbd2582019-08-21 14:09:40 +0200289 * Elements are sorted by start address and overlapping segments
290 * of the same type are merged.
Eric Auger6c65fb32017-01-19 20:57:51 +0000291 */
Eric Auger4dbd2582019-08-21 14:09:40 +0200292int iommu_insert_resv_region(struct iommu_resv_region *new,
293 struct list_head *regions)
Eric Auger6c65fb32017-01-19 20:57:51 +0000294{
Eric Auger4dbd2582019-08-21 14:09:40 +0200295 struct iommu_resv_region *iter, *tmp, *nr, *top;
296 LIST_HEAD(stack);
Eric Auger6c65fb32017-01-19 20:57:51 +0000297
Eric Auger4dbd2582019-08-21 14:09:40 +0200298 nr = iommu_alloc_resv_region(new->start, new->length,
299 new->prot, new->type);
300 if (!nr)
Eric Auger6c65fb32017-01-19 20:57:51 +0000301 return -ENOMEM;
302
Eric Auger4dbd2582019-08-21 14:09:40 +0200303 /* First add the new element based on start address sorting */
304 list_for_each_entry(iter, regions, list) {
305 if (nr->start < iter->start ||
306 (nr->start == iter->start && nr->type <= iter->type))
307 break;
308 }
309 list_add_tail(&nr->list, &iter->list);
310
311 /* Merge overlapping segments of type nr->type in @regions, if any */
312 list_for_each_entry_safe(iter, tmp, regions, list) {
313 phys_addr_t top_end, iter_end = iter->start + iter->length - 1;
314
Eric Auger4c80ba32019-11-26 18:54:13 +0100315 /* no merge needed on elements of different types than @new */
316 if (iter->type != new->type) {
Eric Auger4dbd2582019-08-21 14:09:40 +0200317 list_move_tail(&iter->list, &stack);
318 continue;
319 }
320
321 /* look for the last stack element of same type as @iter */
322 list_for_each_entry_reverse(top, &stack, list)
323 if (top->type == iter->type)
324 goto check_overlap;
325
326 list_move_tail(&iter->list, &stack);
327 continue;
328
329check_overlap:
330 top_end = top->start + top->length - 1;
331
332 if (iter->start > top_end + 1) {
333 list_move_tail(&iter->list, &stack);
334 } else {
335 top->length = max(top_end, iter_end) - top->start + 1;
336 list_del(&iter->list);
337 kfree(iter);
338 }
339 }
340 list_splice(&stack, regions);
Eric Auger6c65fb32017-01-19 20:57:51 +0000341 return 0;
342}
343
344static int
345iommu_insert_device_resv_regions(struct list_head *dev_resv_regions,
346 struct list_head *group_resv_regions)
347{
348 struct iommu_resv_region *entry;
Eric Augera514a6e2017-02-06 10:11:38 +0100349 int ret = 0;
Eric Auger6c65fb32017-01-19 20:57:51 +0000350
351 list_for_each_entry(entry, dev_resv_regions, list) {
352 ret = iommu_insert_resv_region(entry, group_resv_regions);
353 if (ret)
354 break;
355 }
356 return ret;
357}
358
359int iommu_get_group_resv_regions(struct iommu_group *group,
360 struct list_head *head)
361{
Joerg Roedel8d2932d2017-02-10 15:13:10 +0100362 struct group_device *device;
Eric Auger6c65fb32017-01-19 20:57:51 +0000363 int ret = 0;
364
365 mutex_lock(&group->mutex);
366 list_for_each_entry(device, &group->devices, list) {
367 struct list_head dev_resv_regions;
368
369 INIT_LIST_HEAD(&dev_resv_regions);
370 iommu_get_resv_regions(device->dev, &dev_resv_regions);
371 ret = iommu_insert_device_resv_regions(&dev_resv_regions, head);
372 iommu_put_resv_regions(device->dev, &dev_resv_regions);
373 if (ret)
374 break;
375 }
376 mutex_unlock(&group->mutex);
377 return ret;
378}
379EXPORT_SYMBOL_GPL(iommu_get_group_resv_regions);
380
Eric Augerbc7d12b92017-01-19 20:57:52 +0000381static ssize_t iommu_group_show_resv_regions(struct iommu_group *group,
382 char *buf)
383{
384 struct iommu_resv_region *region, *next;
385 struct list_head group_resv_regions;
386 char *str = buf;
387
388 INIT_LIST_HEAD(&group_resv_regions);
389 iommu_get_group_resv_regions(group, &group_resv_regions);
390
391 list_for_each_entry_safe(region, next, &group_resv_regions, list) {
392 str += sprintf(str, "0x%016llx 0x%016llx %s\n",
393 (long long int)region->start,
394 (long long int)(region->start +
395 region->length - 1),
396 iommu_group_resv_type_string[region->type]);
397 kfree(region);
398 }
399
400 return (str - buf);
401}
402
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700403static ssize_t iommu_group_show_type(struct iommu_group *group,
404 char *buf)
405{
406 char *type = "unknown\n";
407
408 if (group->default_domain) {
409 switch (group->default_domain->type) {
410 case IOMMU_DOMAIN_BLOCKED:
411 type = "blocked\n";
412 break;
413 case IOMMU_DOMAIN_IDENTITY:
414 type = "identity\n";
415 break;
416 case IOMMU_DOMAIN_UNMANAGED:
417 type = "unmanaged\n";
418 break;
419 case IOMMU_DOMAIN_DMA:
Lu Baolu24f307d2019-05-24 14:30:56 +0800420 type = "DMA\n";
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700421 break;
422 }
423 }
424 strcpy(buf, type);
425
426 return strlen(type);
427}
428
Alex Williamsond72e31c2012-05-30 14:18:53 -0600429static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
430
Eric Augerbc7d12b92017-01-19 20:57:52 +0000431static IOMMU_GROUP_ATTR(reserved_regions, 0444,
432 iommu_group_show_resv_regions, NULL);
433
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700434static IOMMU_GROUP_ATTR(type, 0444, iommu_group_show_type, NULL);
435
Alex Williamsond72e31c2012-05-30 14:18:53 -0600436static void iommu_group_release(struct kobject *kobj)
437{
438 struct iommu_group *group = to_iommu_group(kobj);
439
Joerg Roedel269aa802015-05-28 18:41:25 +0200440 pr_debug("Releasing group %d\n", group->id);
441
Alex Williamsond72e31c2012-05-30 14:18:53 -0600442 if (group->iommu_data_release)
443 group->iommu_data_release(group->iommu_data);
444
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200445 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600446
Joerg Roedel53723dc2015-05-28 18:41:29 +0200447 if (group->default_domain)
448 iommu_domain_free(group->default_domain);
449
Alex Williamsond72e31c2012-05-30 14:18:53 -0600450 kfree(group->name);
451 kfree(group);
452}
453
454static struct kobj_type iommu_group_ktype = {
455 .sysfs_ops = &iommu_group_sysfs_ops,
456 .release = iommu_group_release,
457};
458
459/**
460 * iommu_group_alloc - Allocate a new group
Alex Williamsond72e31c2012-05-30 14:18:53 -0600461 *
462 * This function is called by an iommu driver to allocate a new iommu
463 * group. The iommu group represents the minimum granularity of the iommu.
464 * Upon successful return, the caller holds a reference to the supplied
465 * group in order to hold the group until devices are added. Use
466 * iommu_group_put() to release this extra reference count, allowing the
467 * group to be automatically reclaimed once it has no devices or external
468 * references.
469 */
470struct iommu_group *iommu_group_alloc(void)
471{
472 struct iommu_group *group;
473 int ret;
474
475 group = kzalloc(sizeof(*group), GFP_KERNEL);
476 if (!group)
477 return ERR_PTR(-ENOMEM);
478
479 group->kobj.kset = iommu_group_kset;
480 mutex_init(&group->mutex);
481 INIT_LIST_HEAD(&group->devices);
482 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
483
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200484 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
485 if (ret < 0) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600486 kfree(group);
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200487 return ERR_PTR(ret);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600488 }
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200489 group->id = ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600490
491 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
492 NULL, "%d", group->id);
493 if (ret) {
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200494 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600495 kfree(group);
496 return ERR_PTR(ret);
497 }
498
499 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
500 if (!group->devices_kobj) {
501 kobject_put(&group->kobj); /* triggers .release & free */
502 return ERR_PTR(-ENOMEM);
503 }
504
505 /*
506 * The devices_kobj holds a reference on the group kobject, so
507 * as long as that exists so will the group. We can therefore
508 * use the devices_kobj for reference counting.
509 */
510 kobject_put(&group->kobj);
511
Eric Augerbc7d12b92017-01-19 20:57:52 +0000512 ret = iommu_group_create_file(group,
513 &iommu_group_attr_reserved_regions);
514 if (ret)
515 return ERR_PTR(ret);
516
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700517 ret = iommu_group_create_file(group, &iommu_group_attr_type);
518 if (ret)
519 return ERR_PTR(ret);
520
Joerg Roedel269aa802015-05-28 18:41:25 +0200521 pr_debug("Allocated group %d\n", group->id);
522
Alex Williamsond72e31c2012-05-30 14:18:53 -0600523 return group;
524}
525EXPORT_SYMBOL_GPL(iommu_group_alloc);
526
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100527struct iommu_group *iommu_group_get_by_id(int id)
528{
529 struct kobject *group_kobj;
530 struct iommu_group *group;
531 const char *name;
532
533 if (!iommu_group_kset)
534 return NULL;
535
536 name = kasprintf(GFP_KERNEL, "%d", id);
537 if (!name)
538 return NULL;
539
540 group_kobj = kset_find_obj(iommu_group_kset, name);
541 kfree(name);
542
543 if (!group_kobj)
544 return NULL;
545
546 group = container_of(group_kobj, struct iommu_group, kobj);
547 BUG_ON(group->id != id);
548
549 kobject_get(group->devices_kobj);
550 kobject_put(&group->kobj);
551
552 return group;
553}
554EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
555
Alex Williamsond72e31c2012-05-30 14:18:53 -0600556/**
557 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
558 * @group: the group
559 *
560 * iommu drivers can store data in the group for use when doing iommu
561 * operations. This function provides a way to retrieve it. Caller
562 * should hold a group reference.
563 */
564void *iommu_group_get_iommudata(struct iommu_group *group)
565{
566 return group->iommu_data;
567}
568EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
569
570/**
571 * iommu_group_set_iommudata - set iommu_data for a group
572 * @group: the group
573 * @iommu_data: new data
574 * @release: release function for iommu_data
575 *
576 * iommu drivers can store data in the group for use when doing iommu
577 * operations. This function provides a way to set the data after
578 * the group has been allocated. Caller should hold a group reference.
579 */
580void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
581 void (*release)(void *iommu_data))
582{
583 group->iommu_data = iommu_data;
584 group->iommu_data_release = release;
585}
586EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
587
588/**
589 * iommu_group_set_name - set name for a group
590 * @group: the group
591 * @name: name
592 *
593 * Allow iommu driver to set a name for a group. When set it will
594 * appear in a name attribute file under the group in sysfs.
595 */
596int iommu_group_set_name(struct iommu_group *group, const char *name)
597{
598 int ret;
599
600 if (group->name) {
601 iommu_group_remove_file(group, &iommu_group_attr_name);
602 kfree(group->name);
603 group->name = NULL;
604 if (!name)
605 return 0;
606 }
607
608 group->name = kstrdup(name, GFP_KERNEL);
609 if (!group->name)
610 return -ENOMEM;
611
612 ret = iommu_group_create_file(group, &iommu_group_attr_name);
613 if (ret) {
614 kfree(group->name);
615 group->name = NULL;
616 return ret;
617 }
618
619 return 0;
620}
621EXPORT_SYMBOL_GPL(iommu_group_set_name);
622
Joerg Roedelbeed2822015-05-28 18:41:34 +0200623static int iommu_group_create_direct_mappings(struct iommu_group *group,
624 struct device *dev)
625{
626 struct iommu_domain *domain = group->default_domain;
Eric Augere5b52342017-01-19 20:57:47 +0000627 struct iommu_resv_region *entry;
Joerg Roedelbeed2822015-05-28 18:41:34 +0200628 struct list_head mappings;
629 unsigned long pg_size;
630 int ret = 0;
631
632 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
633 return 0;
634
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100635 BUG_ON(!domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200636
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100637 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200638 INIT_LIST_HEAD(&mappings);
639
Eric Augere5b52342017-01-19 20:57:47 +0000640 iommu_get_resv_regions(dev, &mappings);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200641
642 /* We need to consider overlapping regions for different devices */
643 list_for_each_entry(entry, &mappings, list) {
644 dma_addr_t start, end, addr;
645
Eric Augere5b52342017-01-19 20:57:47 +0000646 if (domain->ops->apply_resv_region)
647 domain->ops->apply_resv_region(dev, domain, entry);
Joerg Roedel33b21a62016-07-05 13:07:53 +0200648
Joerg Roedelbeed2822015-05-28 18:41:34 +0200649 start = ALIGN(entry->start, pg_size);
650 end = ALIGN(entry->start + entry->length, pg_size);
651
Eric Augeradfd3732019-06-03 08:53:35 +0200652 if (entry->type != IOMMU_RESV_DIRECT &&
653 entry->type != IOMMU_RESV_DIRECT_RELAXABLE)
Eric Auger544a25d2017-01-19 20:57:50 +0000654 continue;
655
Joerg Roedelbeed2822015-05-28 18:41:34 +0200656 for (addr = start; addr < end; addr += pg_size) {
657 phys_addr_t phys_addr;
658
659 phys_addr = iommu_iova_to_phys(domain, addr);
660 if (phys_addr)
661 continue;
662
663 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
664 if (ret)
665 goto out;
666 }
667
668 }
669
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200670 iommu_flush_tlb_all(domain);
671
Joerg Roedelbeed2822015-05-28 18:41:34 +0200672out:
Eric Augere5b52342017-01-19 20:57:47 +0000673 iommu_put_resv_regions(dev, &mappings);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200674
675 return ret;
676}
677
Alex Williamsond72e31c2012-05-30 14:18:53 -0600678/**
679 * iommu_group_add_device - add a device to an iommu group
680 * @group: the group into which to add the device (reference should be held)
681 * @dev: the device
682 *
683 * This function is called by an iommu driver to add a device into a
684 * group. Adding a device increments the group reference count.
685 */
686int iommu_group_add_device(struct iommu_group *group, struct device *dev)
687{
688 int ret, i = 0;
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100689 struct group_device *device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600690
691 device = kzalloc(sizeof(*device), GFP_KERNEL);
692 if (!device)
693 return -ENOMEM;
694
695 device->dev = dev;
696
697 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
Robin Murphy797a8b42017-01-16 12:58:07 +0000698 if (ret)
699 goto err_free_device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600700
701 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
702rename:
703 if (!device->name) {
Robin Murphy797a8b42017-01-16 12:58:07 +0000704 ret = -ENOMEM;
705 goto err_remove_link;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600706 }
707
708 ret = sysfs_create_link_nowarn(group->devices_kobj,
709 &dev->kobj, device->name);
710 if (ret) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600711 if (ret == -EEXIST && i >= 0) {
712 /*
713 * Account for the slim chance of collision
714 * and append an instance to the name.
715 */
Robin Murphy797a8b42017-01-16 12:58:07 +0000716 kfree(device->name);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600717 device->name = kasprintf(GFP_KERNEL, "%s.%d",
718 kobject_name(&dev->kobj), i++);
719 goto rename;
720 }
Robin Murphy797a8b42017-01-16 12:58:07 +0000721 goto err_free_name;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600722 }
723
724 kobject_get(group->devices_kobj);
725
726 dev->iommu_group = group;
727
Joerg Roedelbeed2822015-05-28 18:41:34 +0200728 iommu_group_create_direct_mappings(group, dev);
729
Alex Williamsond72e31c2012-05-30 14:18:53 -0600730 mutex_lock(&group->mutex);
731 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200732 if (group->domain)
Robin Murphy797a8b42017-01-16 12:58:07 +0000733 ret = __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600734 mutex_unlock(&group->mutex);
Robin Murphy797a8b42017-01-16 12:58:07 +0000735 if (ret)
736 goto err_put_group;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600737
738 /* Notify any listeners about change to group. */
739 blocking_notifier_call_chain(&group->notifier,
740 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600741
742 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200743
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600744 dev_info(dev, "Adding to iommu group %d\n", group->id);
Joerg Roedel269aa802015-05-28 18:41:25 +0200745
Alex Williamsond72e31c2012-05-30 14:18:53 -0600746 return 0;
Robin Murphy797a8b42017-01-16 12:58:07 +0000747
748err_put_group:
749 mutex_lock(&group->mutex);
750 list_del(&device->list);
751 mutex_unlock(&group->mutex);
752 dev->iommu_group = NULL;
753 kobject_put(group->devices_kobj);
754err_free_name:
755 kfree(device->name);
756err_remove_link:
757 sysfs_remove_link(&dev->kobj, "iommu_group");
758err_free_device:
759 kfree(device);
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600760 dev_err(dev, "Failed to add to iommu group %d: %d\n", group->id, ret);
Robin Murphy797a8b42017-01-16 12:58:07 +0000761 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600762}
763EXPORT_SYMBOL_GPL(iommu_group_add_device);
764
765/**
766 * iommu_group_remove_device - remove a device from it's current group
767 * @dev: device to be removed
768 *
769 * This function is called by an iommu driver to remove the device from
770 * it's current group. This decrements the iommu group reference count.
771 */
772void iommu_group_remove_device(struct device *dev)
773{
774 struct iommu_group *group = dev->iommu_group;
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100775 struct group_device *tmp_device, *device = NULL;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600776
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600777 dev_info(dev, "Removing from iommu group %d\n", group->id);
Joerg Roedel269aa802015-05-28 18:41:25 +0200778
Alex Williamsond72e31c2012-05-30 14:18:53 -0600779 /* Pre-notify listeners that a device is being removed. */
780 blocking_notifier_call_chain(&group->notifier,
781 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
782
783 mutex_lock(&group->mutex);
784 list_for_each_entry(tmp_device, &group->devices, list) {
785 if (tmp_device->dev == dev) {
786 device = tmp_device;
787 list_del(&device->list);
788 break;
789 }
790 }
791 mutex_unlock(&group->mutex);
792
793 if (!device)
794 return;
795
796 sysfs_remove_link(group->devices_kobj, device->name);
797 sysfs_remove_link(&dev->kobj, "iommu_group");
798
Shuah Khan2e757082013-08-15 11:59:25 -0600799 trace_remove_device_from_group(group->id, dev);
800
Alex Williamsond72e31c2012-05-30 14:18:53 -0600801 kfree(device->name);
802 kfree(device);
803 dev->iommu_group = NULL;
804 kobject_put(group->devices_kobj);
805}
806EXPORT_SYMBOL_GPL(iommu_group_remove_device);
807
Joerg Roedel426a2732015-05-28 18:41:30 +0200808static int iommu_group_device_count(struct iommu_group *group)
809{
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100810 struct group_device *entry;
Joerg Roedel426a2732015-05-28 18:41:30 +0200811 int ret = 0;
812
813 list_for_each_entry(entry, &group->devices, list)
814 ret++;
815
816 return ret;
817}
818
Alex Williamsond72e31c2012-05-30 14:18:53 -0600819/**
820 * iommu_group_for_each_dev - iterate over each device in the group
821 * @group: the group
822 * @data: caller opaque data to be passed to callback function
823 * @fn: caller supplied callback function
824 *
825 * This function is called by group users to iterate over group devices.
826 * Callers should hold a reference count to the group during callback.
827 * The group->mutex is held across callbacks, which will block calls to
828 * iommu_group_add/remove_device.
829 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200830static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
831 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600832{
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100833 struct group_device *device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600834 int ret = 0;
835
Alex Williamsond72e31c2012-05-30 14:18:53 -0600836 list_for_each_entry(device, &group->devices, list) {
837 ret = fn(device->dev, data);
838 if (ret)
839 break;
840 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200841 return ret;
842}
843
844
845int iommu_group_for_each_dev(struct iommu_group *group, void *data,
846 int (*fn)(struct device *, void *))
847{
848 int ret;
849
850 mutex_lock(&group->mutex);
851 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600852 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200853
Alex Williamsond72e31c2012-05-30 14:18:53 -0600854 return ret;
855}
856EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
857
858/**
859 * iommu_group_get - Return the group for a device and increment reference
860 * @dev: get the group that this device belongs to
861 *
862 * This function is called by iommu drivers and users to get the group
863 * for the specified device. If found, the group is returned and the group
864 * reference in incremented, else NULL.
865 */
866struct iommu_group *iommu_group_get(struct device *dev)
867{
868 struct iommu_group *group = dev->iommu_group;
869
870 if (group)
871 kobject_get(group->devices_kobj);
872
873 return group;
874}
875EXPORT_SYMBOL_GPL(iommu_group_get);
876
877/**
Robin Murphy13f59a72016-11-11 17:59:21 +0000878 * iommu_group_ref_get - Increment reference on a group
879 * @group: the group to use, must not be NULL
880 *
881 * This function is called by iommu drivers to take additional references on an
882 * existing group. Returns the given group for convenience.
883 */
884struct iommu_group *iommu_group_ref_get(struct iommu_group *group)
885{
886 kobject_get(group->devices_kobj);
887 return group;
888}
889
890/**
Alex Williamsond72e31c2012-05-30 14:18:53 -0600891 * iommu_group_put - Decrement group reference
892 * @group: the group to use
893 *
894 * This function is called by iommu drivers and users to release the
895 * iommu group. Once the reference count is zero, the group is released.
896 */
897void iommu_group_put(struct iommu_group *group)
898{
899 if (group)
900 kobject_put(group->devices_kobj);
901}
902EXPORT_SYMBOL_GPL(iommu_group_put);
903
904/**
905 * iommu_group_register_notifier - Register a notifier for group changes
906 * @group: the group to watch
907 * @nb: notifier block to signal
908 *
909 * This function allows iommu group users to track changes in a group.
910 * See include/linux/iommu.h for actions sent via this notifier. Caller
911 * should hold a reference to the group throughout notifier registration.
912 */
913int iommu_group_register_notifier(struct iommu_group *group,
914 struct notifier_block *nb)
915{
916 return blocking_notifier_chain_register(&group->notifier, nb);
917}
918EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
919
920/**
921 * iommu_group_unregister_notifier - Unregister a notifier
922 * @group: the group to watch
923 * @nb: notifier block to signal
924 *
925 * Unregister a previously registered group notifier block.
926 */
927int iommu_group_unregister_notifier(struct iommu_group *group,
928 struct notifier_block *nb)
929{
930 return blocking_notifier_chain_unregister(&group->notifier, nb);
931}
932EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
933
934/**
Jacob Pan0c830e62019-06-03 15:57:48 +0100935 * iommu_register_device_fault_handler() - Register a device fault handler
936 * @dev: the device
937 * @handler: the fault handler
938 * @data: private data passed as argument to the handler
939 *
940 * When an IOMMU fault event is received, this handler gets called with the
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +0100941 * fault event and data as argument. The handler should return 0 on success. If
942 * the fault is recoverable (IOMMU_FAULT_PAGE_REQ), the consumer should also
943 * complete the fault by calling iommu_page_response() with one of the following
944 * response code:
945 * - IOMMU_PAGE_RESP_SUCCESS: retry the translation
946 * - IOMMU_PAGE_RESP_INVALID: terminate the fault
947 * - IOMMU_PAGE_RESP_FAILURE: terminate the fault and stop reporting
948 * page faults if possible.
Jacob Pan0c830e62019-06-03 15:57:48 +0100949 *
950 * Return 0 if the fault handler was installed successfully, or an error.
951 */
952int iommu_register_device_fault_handler(struct device *dev,
953 iommu_dev_fault_handler_t handler,
954 void *data)
955{
956 struct iommu_param *param = dev->iommu_param;
957 int ret = 0;
958
959 if (!param)
960 return -EINVAL;
961
962 mutex_lock(&param->lock);
963 /* Only allow one fault handler registered for each device */
964 if (param->fault_param) {
965 ret = -EBUSY;
966 goto done_unlock;
967 }
968
969 get_device(dev);
970 param->fault_param = kzalloc(sizeof(*param->fault_param), GFP_KERNEL);
971 if (!param->fault_param) {
972 put_device(dev);
973 ret = -ENOMEM;
974 goto done_unlock;
975 }
976 param->fault_param->handler = handler;
977 param->fault_param->data = data;
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +0100978 mutex_init(&param->fault_param->lock);
979 INIT_LIST_HEAD(&param->fault_param->faults);
Jacob Pan0c830e62019-06-03 15:57:48 +0100980
981done_unlock:
982 mutex_unlock(&param->lock);
983
984 return ret;
985}
986EXPORT_SYMBOL_GPL(iommu_register_device_fault_handler);
987
988/**
989 * iommu_unregister_device_fault_handler() - Unregister the device fault handler
990 * @dev: the device
991 *
992 * Remove the device fault handler installed with
993 * iommu_register_device_fault_handler().
994 *
995 * Return 0 on success, or an error.
996 */
997int iommu_unregister_device_fault_handler(struct device *dev)
998{
999 struct iommu_param *param = dev->iommu_param;
1000 int ret = 0;
1001
1002 if (!param)
1003 return -EINVAL;
1004
1005 mutex_lock(&param->lock);
1006
1007 if (!param->fault_param)
1008 goto unlock;
1009
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001010 /* we cannot unregister handler if there are pending faults */
1011 if (!list_empty(&param->fault_param->faults)) {
1012 ret = -EBUSY;
1013 goto unlock;
1014 }
1015
Jacob Pan0c830e62019-06-03 15:57:48 +01001016 kfree(param->fault_param);
1017 param->fault_param = NULL;
1018 put_device(dev);
1019unlock:
1020 mutex_unlock(&param->lock);
1021
1022 return ret;
1023}
1024EXPORT_SYMBOL_GPL(iommu_unregister_device_fault_handler);
1025
1026/**
1027 * iommu_report_device_fault() - Report fault event to device driver
1028 * @dev: the device
1029 * @evt: fault event data
1030 *
1031 * Called by IOMMU drivers when a fault is detected, typically in a threaded IRQ
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001032 * handler. When this function fails and the fault is recoverable, it is the
1033 * caller's responsibility to complete the fault.
Jacob Pan0c830e62019-06-03 15:57:48 +01001034 *
1035 * Return 0 on success, or an error.
1036 */
1037int iommu_report_device_fault(struct device *dev, struct iommu_fault_event *evt)
1038{
1039 struct iommu_param *param = dev->iommu_param;
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001040 struct iommu_fault_event *evt_pending = NULL;
Jacob Pan0c830e62019-06-03 15:57:48 +01001041 struct iommu_fault_param *fparam;
1042 int ret = 0;
1043
1044 if (!param || !evt)
1045 return -EINVAL;
1046
1047 /* we only report device fault if there is a handler registered */
1048 mutex_lock(&param->lock);
1049 fparam = param->fault_param;
1050 if (!fparam || !fparam->handler) {
1051 ret = -EINVAL;
1052 goto done_unlock;
1053 }
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001054
1055 if (evt->fault.type == IOMMU_FAULT_PAGE_REQ &&
1056 (evt->fault.prm.flags & IOMMU_FAULT_PAGE_REQUEST_LAST_PAGE)) {
1057 evt_pending = kmemdup(evt, sizeof(struct iommu_fault_event),
1058 GFP_KERNEL);
1059 if (!evt_pending) {
1060 ret = -ENOMEM;
1061 goto done_unlock;
1062 }
1063 mutex_lock(&fparam->lock);
1064 list_add_tail(&evt_pending->list, &fparam->faults);
1065 mutex_unlock(&fparam->lock);
1066 }
1067
Jacob Pan0c830e62019-06-03 15:57:48 +01001068 ret = fparam->handler(&evt->fault, fparam->data);
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001069 if (ret && evt_pending) {
1070 mutex_lock(&fparam->lock);
1071 list_del(&evt_pending->list);
1072 mutex_unlock(&fparam->lock);
1073 kfree(evt_pending);
1074 }
Jacob Pan0c830e62019-06-03 15:57:48 +01001075done_unlock:
1076 mutex_unlock(&param->lock);
1077 return ret;
1078}
1079EXPORT_SYMBOL_GPL(iommu_report_device_fault);
1080
Jean-Philippe Bruckerbf3255b2019-06-03 15:57:49 +01001081int iommu_page_response(struct device *dev,
1082 struct iommu_page_response *msg)
1083{
1084 bool pasid_valid;
1085 int ret = -EINVAL;
1086 struct iommu_fault_event *evt;
1087 struct iommu_fault_page_request *prm;
1088 struct iommu_param *param = dev->iommu_param;
1089 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
1090
1091 if (!domain || !domain->ops->page_response)
1092 return -ENODEV;
1093
1094 if (!param || !param->fault_param)
1095 return -EINVAL;
1096
1097 if (msg->version != IOMMU_PAGE_RESP_VERSION_1 ||
1098 msg->flags & ~IOMMU_PAGE_RESP_PASID_VALID)
1099 return -EINVAL;
1100
1101 /* Only send response if there is a fault report pending */
1102 mutex_lock(&param->fault_param->lock);
1103 if (list_empty(&param->fault_param->faults)) {
1104 dev_warn_ratelimited(dev, "no pending PRQ, drop response\n");
1105 goto done_unlock;
1106 }
1107 /*
1108 * Check if we have a matching page request pending to respond,
1109 * otherwise return -EINVAL
1110 */
1111 list_for_each_entry(evt, &param->fault_param->faults, list) {
1112 prm = &evt->fault.prm;
1113 pasid_valid = prm->flags & IOMMU_FAULT_PAGE_REQUEST_PASID_VALID;
1114
1115 if ((pasid_valid && prm->pasid != msg->pasid) ||
1116 prm->grpid != msg->grpid)
1117 continue;
1118
1119 /* Sanitize the reply */
1120 msg->flags = pasid_valid ? IOMMU_PAGE_RESP_PASID_VALID : 0;
1121
1122 ret = domain->ops->page_response(dev, evt, msg);
1123 list_del(&evt->list);
1124 kfree(evt);
1125 break;
1126 }
1127
1128done_unlock:
1129 mutex_unlock(&param->fault_param->lock);
1130 return ret;
1131}
1132EXPORT_SYMBOL_GPL(iommu_page_response);
1133
Jacob Pan0c830e62019-06-03 15:57:48 +01001134/**
Alex Williamsond72e31c2012-05-30 14:18:53 -06001135 * iommu_group_id - Return ID for a group
1136 * @group: the group to ID
1137 *
1138 * Return the unique ID for the group matching the sysfs group number.
1139 */
1140int iommu_group_id(struct iommu_group *group)
1141{
1142 return group->id;
1143}
1144EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -04001145
Alex Williamsonf096c062014-09-19 10:03:06 -06001146static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
1147 unsigned long *devfns);
1148
Alex Williamson104a1c12014-07-03 09:51:18 -06001149/*
1150 * To consider a PCI device isolated, we require ACS to support Source
1151 * Validation, Request Redirection, Completer Redirection, and Upstream
1152 * Forwarding. This effectively means that devices cannot spoof their
1153 * requester ID, requests and completions cannot be redirected, and all
1154 * transactions are forwarded upstream, even as it passes through a
1155 * bridge where the target device is downstream.
1156 */
1157#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
1158
Alex Williamsonf096c062014-09-19 10:03:06 -06001159/*
1160 * For multifunction devices which are not isolated from each other, find
1161 * all the other non-isolated functions and look for existing groups. For
1162 * each function, we also need to look for aliases to or from other devices
1163 * that may already have a group.
1164 */
1165static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
1166 unsigned long *devfns)
1167{
1168 struct pci_dev *tmp = NULL;
1169 struct iommu_group *group;
1170
1171 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
1172 return NULL;
1173
1174 for_each_pci_dev(tmp) {
1175 if (tmp == pdev || tmp->bus != pdev->bus ||
1176 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
1177 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
1178 continue;
1179
1180 group = get_pci_alias_group(tmp, devfns);
1181 if (group) {
1182 pci_dev_put(tmp);
1183 return group;
1184 }
1185 }
1186
1187 return NULL;
1188}
1189
1190/*
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +01001191 * Look for aliases to or from the given device for existing groups. DMA
1192 * aliases are only supported on the same bus, therefore the search
Alex Williamsonf096c062014-09-19 10:03:06 -06001193 * space is quite small (especially since we're really only looking at pcie
1194 * device, and therefore only expect multiple slots on the root complex or
1195 * downstream switch ports). It's conceivable though that a pair of
1196 * multifunction devices could have aliases between them that would cause a
1197 * loop. To prevent this, we use a bitmap to track where we've been.
1198 */
1199static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
1200 unsigned long *devfns)
1201{
1202 struct pci_dev *tmp = NULL;
1203 struct iommu_group *group;
1204
1205 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
1206 return NULL;
1207
1208 group = iommu_group_get(&pdev->dev);
1209 if (group)
1210 return group;
1211
1212 for_each_pci_dev(tmp) {
1213 if (tmp == pdev || tmp->bus != pdev->bus)
1214 continue;
1215
1216 /* We alias them or they alias us */
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +01001217 if (pci_devs_are_dma_aliases(pdev, tmp)) {
Alex Williamsonf096c062014-09-19 10:03:06 -06001218 group = get_pci_alias_group(tmp, devfns);
1219 if (group) {
1220 pci_dev_put(tmp);
1221 return group;
1222 }
1223
1224 group = get_pci_function_alias_group(tmp, devfns);
1225 if (group) {
1226 pci_dev_put(tmp);
1227 return group;
1228 }
1229 }
1230 }
1231
1232 return NULL;
1233}
1234
Alex Williamson104a1c12014-07-03 09:51:18 -06001235struct group_for_pci_data {
1236 struct pci_dev *pdev;
1237 struct iommu_group *group;
1238};
1239
1240/*
1241 * DMA alias iterator callback, return the last seen device. Stop and return
1242 * the IOMMU group if we find one along the way.
1243 */
1244static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
1245{
1246 struct group_for_pci_data *data = opaque;
1247
1248 data->pdev = pdev;
1249 data->group = iommu_group_get(&pdev->dev);
1250
1251 return data->group != NULL;
1252}
1253
1254/*
Joerg Roedel6eab5562015-10-21 23:51:38 +02001255 * Generic device_group call-back function. It just allocates one
1256 * iommu-group per device.
1257 */
1258struct iommu_group *generic_device_group(struct device *dev)
1259{
Joerg Roedel7f7a2302017-06-28 12:45:31 +02001260 return iommu_group_alloc();
Joerg Roedel6eab5562015-10-21 23:51:38 +02001261}
1262
1263/*
Alex Williamson104a1c12014-07-03 09:51:18 -06001264 * Use standard PCI bus topology, isolation features, and DMA alias quirks
1265 * to find or create an IOMMU group for a device.
1266 */
Joerg Roedel5e622922015-10-21 23:51:37 +02001267struct iommu_group *pci_device_group(struct device *dev)
Alex Williamson104a1c12014-07-03 09:51:18 -06001268{
Joerg Roedel5e622922015-10-21 23:51:37 +02001269 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -06001270 struct group_for_pci_data data;
1271 struct pci_bus *bus;
1272 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -06001273 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -06001274
Joerg Roedel5e622922015-10-21 23:51:37 +02001275 if (WARN_ON(!dev_is_pci(dev)))
1276 return ERR_PTR(-EINVAL);
1277
Alex Williamson104a1c12014-07-03 09:51:18 -06001278 /*
1279 * Find the upstream DMA alias for the device. A device must not
1280 * be aliased due to topology in order to have its own IOMMU group.
1281 * If we find an alias along the way that already belongs to a
1282 * group, use it.
1283 */
1284 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
1285 return data.group;
1286
1287 pdev = data.pdev;
1288
1289 /*
1290 * Continue upstream from the point of minimum IOMMU granularity
1291 * due to aliases to the point where devices are protected from
1292 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
1293 * group, use it.
1294 */
1295 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
1296 if (!bus->self)
1297 continue;
1298
1299 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
1300 break;
1301
1302 pdev = bus->self;
1303
1304 group = iommu_group_get(&pdev->dev);
1305 if (group)
1306 return group;
1307 }
1308
1309 /*
Alex Williamsonf096c062014-09-19 10:03:06 -06001310 * Look for existing groups on device aliases. If we alias another
1311 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -06001312 */
Alex Williamsonf096c062014-09-19 10:03:06 -06001313 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
1314 if (group)
1315 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001316
1317 /*
Alex Williamsonf096c062014-09-19 10:03:06 -06001318 * Look for existing groups on non-isolated functions on the same
1319 * slot and aliases of those funcions, if any. No need to clear
1320 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -06001321 */
Alex Williamsonf096c062014-09-19 10:03:06 -06001322 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
1323 if (group)
1324 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001325
1326 /* No shared group found, allocate new */
Joerg Roedel7f7a2302017-06-28 12:45:31 +02001327 return iommu_group_alloc();
Alex Williamson104a1c12014-07-03 09:51:18 -06001328}
1329
Nipun Guptaeab03e22018-09-10 19:19:18 +05301330/* Get the IOMMU group for device on fsl-mc bus */
1331struct iommu_group *fsl_mc_device_group(struct device *dev)
1332{
1333 struct device *cont_dev = fsl_mc_cont_dev(dev);
1334 struct iommu_group *group;
1335
1336 group = iommu_group_get(cont_dev);
1337 if (!group)
1338 group = iommu_group_alloc();
1339 return group;
1340}
1341
Alex Williamson104a1c12014-07-03 09:51:18 -06001342/**
1343 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
1344 * @dev: target device
1345 *
1346 * This function is intended to be called by IOMMU drivers and extended to
1347 * support common, bus-defined algorithms when determining or creating the
1348 * IOMMU group for a device. On success, the caller will hold a reference
1349 * to the returned IOMMU group, which will already include the provided
1350 * device. The reference should be released with iommu_group_put().
1351 */
1352struct iommu_group *iommu_group_get_for_dev(struct device *dev)
1353{
Joerg Roedel46c6b2b2015-10-21 23:51:36 +02001354 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedelc4a783b2014-08-21 22:32:08 +02001355 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001356 int ret;
1357
1358 group = iommu_group_get(dev);
1359 if (group)
1360 return group;
1361
Robin Murphy05f803002017-07-21 13:12:38 +01001362 if (!ops)
1363 return ERR_PTR(-EINVAL);
Joerg Roedelc4a783b2014-08-21 22:32:08 +02001364
Robin Murphy05f803002017-07-21 13:12:38 +01001365 group = ops->device_group(dev);
Joerg Roedel72dcac62017-06-28 12:52:48 +02001366 if (WARN_ON_ONCE(group == NULL))
1367 return ERR_PTR(-EINVAL);
1368
Alex Williamson104a1c12014-07-03 09:51:18 -06001369 if (IS_ERR(group))
1370 return group;
1371
Joerg Roedel12282362015-10-21 23:51:43 +02001372 /*
1373 * Try to allocate a default domain - needs support from the
1374 * IOMMU driver.
1375 */
1376 if (!group->default_domain) {
Will Deaconfccb4e32017-01-05 18:38:26 +00001377 struct iommu_domain *dom;
1378
1379 dom = __iommu_domain_alloc(dev->bus, iommu_def_domain_type);
1380 if (!dom && iommu_def_domain_type != IOMMU_DOMAIN_DMA) {
Will Deaconfccb4e32017-01-05 18:38:26 +00001381 dom = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_DMA);
Joerg Roedel8bc32a22019-03-22 16:52:17 +01001382 if (dom) {
1383 dev_warn(dev,
1384 "failed to allocate default IOMMU domain of type %u; falling back to IOMMU_DOMAIN_DMA",
1385 iommu_def_domain_type);
1386 }
Will Deaconfccb4e32017-01-05 18:38:26 +00001387 }
1388
1389 group->default_domain = dom;
Joerg Roedeleebb8032016-04-04 15:47:48 +02001390 if (!group->domain)
Will Deaconfccb4e32017-01-05 18:38:26 +00001391 group->domain = dom;
Zhen Lei68a6efe2018-09-20 17:10:23 +01001392
1393 if (dom && !iommu_dma_strict) {
1394 int attr = 1;
1395 iommu_domain_set_attr(dom,
1396 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
1397 &attr);
1398 }
Joerg Roedel12282362015-10-21 23:51:43 +02001399 }
1400
Alex Williamson104a1c12014-07-03 09:51:18 -06001401 ret = iommu_group_add_device(group, dev);
1402 if (ret) {
1403 iommu_group_put(group);
1404 return ERR_PTR(ret);
1405 }
1406
1407 return group;
1408}
1409
Joerg Roedel6827ca82015-05-28 18:41:35 +02001410struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
1411{
1412 return group->default_domain;
1413}
1414
Alex Williamson14604322011-10-21 15:56:05 -04001415static int add_iommu_group(struct device *dev, void *data)
1416{
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001417 int ret = iommu_probe_device(dev);
Joerg Roedel38667f12015-06-29 10:16:08 +02001418
1419 /*
1420 * We ignore -ENODEV errors for now, as they just mean that the
1421 * device is not translated by an IOMMU. We still care about
1422 * other errors and fail to initialize when they happen.
1423 */
1424 if (ret == -ENODEV)
1425 ret = 0;
1426
1427 return ret;
Alex Williamson14604322011-10-21 15:56:05 -04001428}
1429
Joerg Roedel8da30142015-05-28 18:41:27 +02001430static int remove_iommu_group(struct device *dev, void *data)
1431{
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001432 iommu_release_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -04001433
1434 return 0;
1435}
1436
Alex Williamsond72e31c2012-05-30 14:18:53 -06001437static int iommu_bus_notifier(struct notifier_block *nb,
1438 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -04001439{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001440 unsigned long group_action = 0;
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001441 struct device *dev = data;
1442 struct iommu_group *group;
Alex Williamson14604322011-10-21 15:56:05 -04001443
Alex Williamsond72e31c2012-05-30 14:18:53 -06001444 /*
1445 * ADD/DEL call into iommu driver ops if provided, which may
1446 * result in ADD/DEL notifiers to group->notifier
1447 */
1448 if (action == BUS_NOTIFY_ADD_DEVICE) {
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001449 int ret;
zhichang.yuan3ba87752017-04-18 20:51:48 +08001450
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001451 ret = iommu_probe_device(dev);
1452 return (ret) ? NOTIFY_DONE : NOTIFY_OK;
Joerg Roedel843cb6d2015-05-28 18:41:28 +02001453 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001454 iommu_release_device(dev);
1455 return NOTIFY_OK;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001456 }
Alex Williamson14604322011-10-21 15:56:05 -04001457
Alex Williamsond72e31c2012-05-30 14:18:53 -06001458 /*
1459 * Remaining BUS_NOTIFYs get filtered and republished to the
1460 * group, if anyone is listening
1461 */
1462 group = iommu_group_get(dev);
1463 if (!group)
1464 return 0;
1465
1466 switch (action) {
1467 case BUS_NOTIFY_BIND_DRIVER:
1468 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
1469 break;
1470 case BUS_NOTIFY_BOUND_DRIVER:
1471 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
1472 break;
1473 case BUS_NOTIFY_UNBIND_DRIVER:
1474 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
1475 break;
1476 case BUS_NOTIFY_UNBOUND_DRIVER:
1477 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
1478 break;
1479 }
1480
1481 if (group_action)
1482 blocking_notifier_call_chain(&group->notifier,
1483 group_action, dev);
1484
1485 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -04001486 return 0;
1487}
1488
Mark Salterfb3e3062014-09-21 13:58:24 -04001489static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001490{
Mark Salterfb3e3062014-09-21 13:58:24 -04001491 int err;
1492 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +02001493
Mark Salterfb3e3062014-09-21 13:58:24 -04001494 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
1495 if (!nb)
1496 return -ENOMEM;
1497
1498 nb->notifier_call = iommu_bus_notifier;
1499
1500 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +02001501 if (err)
1502 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001503
Lu Baolu8cec63e2019-03-20 09:40:24 +08001504 err = bus_for_each_dev(bus, NULL, NULL, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +02001505 if (err)
1506 goto out_err;
1507
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001508
1509 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +02001510
1511out_err:
1512 /* Clean up */
Lu Baolu8cec63e2019-03-20 09:40:24 +08001513 bus_for_each_dev(bus, NULL, NULL, remove_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +02001514 bus_unregister_notifier(bus, nb);
1515
1516out_free:
1517 kfree(nb);
1518
1519 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001520}
1521
Joerg Roedelff217762011-08-26 16:48:26 +02001522/**
1523 * bus_set_iommu - set iommu-callbacks for the bus
1524 * @bus: bus.
1525 * @ops: the callbacks provided by the iommu-driver
1526 *
1527 * This function is called by an iommu driver to set the iommu methods
1528 * used for a particular bus. Drivers for devices on that bus can use
1529 * the iommu-api after these ops are registered.
1530 * This special function is needed because IOMMUs are usually devices on
1531 * the bus itself, so the iommu drivers are not initialized when the bus
1532 * is set up. With this function the iommu-driver can set the iommu-ops
1533 * afterwards.
1534 */
Thierry Redingb22f6432014-06-27 09:03:12 +02001535int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001536{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001537 int err;
1538
Joerg Roedelff217762011-08-26 16:48:26 +02001539 if (bus->iommu_ops != NULL)
1540 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001541
Joerg Roedelff217762011-08-26 16:48:26 +02001542 bus->iommu_ops = ops;
1543
1544 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001545 err = iommu_bus_init(bus, ops);
1546 if (err)
1547 bus->iommu_ops = NULL;
1548
1549 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001550}
Joerg Roedelff217762011-08-26 16:48:26 +02001551EXPORT_SYMBOL_GPL(bus_set_iommu);
1552
Joerg Roedela1b60c12011-09-06 18:46:34 +02001553bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001554{
Joerg Roedel94441c32011-09-06 18:58:54 +02001555 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001556}
Joerg Roedela1b60c12011-09-06 18:46:34 +02001557EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001558
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +02001559bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1560{
1561 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1562 return false;
1563
1564 return bus->iommu_ops->capable(cap);
1565}
1566EXPORT_SYMBOL_GPL(iommu_capable);
1567
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001568/**
1569 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1570 * @domain: iommu domain
1571 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001572 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -04001573 *
1574 * This function should be used by IOMMU users which want to be notified
1575 * whenever an IOMMU fault happens.
1576 *
1577 * The fault handler itself should return 0 on success, and an appropriate
1578 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001579 */
1580void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001581 iommu_fault_handler_t handler,
1582 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001583{
1584 BUG_ON(!domain);
1585
1586 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001587 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001588}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -04001589EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001590
Joerg Roedel53723dc2015-05-28 18:41:29 +02001591static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1592 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001593{
1594 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001595
Joerg Roedel94441c32011-09-06 18:58:54 +02001596 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +02001597 return NULL;
1598
Joerg Roedel53723dc2015-05-28 18:41:29 +02001599 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001600 if (!domain)
1601 return NULL;
1602
Joerg Roedel8539c7c2015-03-26 13:43:05 +01001603 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +02001604 domain->type = type;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001605 /* Assume all sizes by default; the driver may override this later */
1606 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
Joerg Roedel905d66c2011-09-06 16:03:26 +02001607
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001608 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001609}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001610
Joerg Roedel53723dc2015-05-28 18:41:29 +02001611struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1612{
1613 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001614}
1615EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1616
1617void iommu_domain_free(struct iommu_domain *domain)
1618{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001619 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001620}
1621EXPORT_SYMBOL_GPL(iommu_domain_free);
1622
Joerg Roedel426a2732015-05-28 18:41:30 +02001623static int __iommu_attach_device(struct iommu_domain *domain,
1624 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001625{
Shuah Khanb54db772013-08-15 11:59:26 -06001626 int ret;
Baoquan Hee01d1912017-08-09 16:33:40 +08001627 if ((domain->ops->is_attach_deferred != NULL) &&
1628 domain->ops->is_attach_deferred(domain, dev))
1629 return 0;
1630
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001631 if (unlikely(domain->ops->attach_dev == NULL))
1632 return -ENODEV;
1633
Shuah Khanb54db772013-08-15 11:59:26 -06001634 ret = domain->ops->attach_dev(domain, dev);
1635 if (!ret)
1636 trace_attach_device_to_domain(dev);
1637 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001638}
Joerg Roedel426a2732015-05-28 18:41:30 +02001639
1640int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1641{
1642 struct iommu_group *group;
1643 int ret;
1644
1645 group = iommu_group_get(dev);
Jordan Crouse9ae9df02017-12-20 09:48:36 -07001646 if (!group)
1647 return -ENODEV;
1648
Joerg Roedel426a2732015-05-28 18:41:30 +02001649 /*
Robin Murphy05f803002017-07-21 13:12:38 +01001650 * Lock the group to make sure the device-count doesn't
Joerg Roedel426a2732015-05-28 18:41:30 +02001651 * change while we are attaching
1652 */
1653 mutex_lock(&group->mutex);
1654 ret = -EINVAL;
1655 if (iommu_group_device_count(group) != 1)
1656 goto out_unlock;
1657
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001658 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001659
1660out_unlock:
1661 mutex_unlock(&group->mutex);
1662 iommu_group_put(group);
1663
1664 return ret;
1665}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001666EXPORT_SYMBOL_GPL(iommu_attach_device);
1667
Yi L Liu4c7c1712019-10-02 12:42:40 -07001668int iommu_cache_invalidate(struct iommu_domain *domain, struct device *dev,
1669 struct iommu_cache_invalidate_info *inv_info)
1670{
1671 if (unlikely(!domain->ops->cache_invalidate))
1672 return -ENODEV;
1673
1674 return domain->ops->cache_invalidate(domain, dev, inv_info);
1675}
1676EXPORT_SYMBOL_GPL(iommu_cache_invalidate);
1677
Jacob Pan808be0a2019-10-02 12:42:43 -07001678int iommu_sva_bind_gpasid(struct iommu_domain *domain,
1679 struct device *dev, struct iommu_gpasid_bind_data *data)
1680{
1681 if (unlikely(!domain->ops->sva_bind_gpasid))
1682 return -ENODEV;
1683
1684 return domain->ops->sva_bind_gpasid(domain, dev, data);
1685}
1686EXPORT_SYMBOL_GPL(iommu_sva_bind_gpasid);
1687
1688int iommu_sva_unbind_gpasid(struct iommu_domain *domain, struct device *dev,
1689 ioasid_t pasid)
1690{
1691 if (unlikely(!domain->ops->sva_unbind_gpasid))
1692 return -ENODEV;
1693
1694 return domain->ops->sva_unbind_gpasid(dev, pasid);
1695}
1696EXPORT_SYMBOL_GPL(iommu_sva_unbind_gpasid);
1697
Joerg Roedel426a2732015-05-28 18:41:30 +02001698static void __iommu_detach_device(struct iommu_domain *domain,
1699 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001700{
Baoquan Hee01d1912017-08-09 16:33:40 +08001701 if ((domain->ops->is_attach_deferred != NULL) &&
1702 domain->ops->is_attach_deferred(domain, dev))
1703 return;
1704
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001705 if (unlikely(domain->ops->detach_dev == NULL))
1706 return;
1707
1708 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001709 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001710}
Joerg Roedel426a2732015-05-28 18:41:30 +02001711
1712void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1713{
1714 struct iommu_group *group;
1715
1716 group = iommu_group_get(dev);
Jordan Crouse9ae9df02017-12-20 09:48:36 -07001717 if (!group)
1718 return;
Joerg Roedel426a2732015-05-28 18:41:30 +02001719
1720 mutex_lock(&group->mutex);
1721 if (iommu_group_device_count(group) != 1) {
1722 WARN_ON(1);
1723 goto out_unlock;
1724 }
1725
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001726 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001727
1728out_unlock:
1729 mutex_unlock(&group->mutex);
1730 iommu_group_put(group);
1731}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001732EXPORT_SYMBOL_GPL(iommu_detach_device);
1733
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001734struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1735{
1736 struct iommu_domain *domain;
1737 struct iommu_group *group;
1738
1739 group = iommu_group_get(dev);
Robin Murphy1464d0b2017-08-17 11:40:08 +01001740 if (!group)
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001741 return NULL;
1742
1743 domain = group->domain;
1744
1745 iommu_group_put(group);
1746
1747 return domain;
1748}
1749EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1750
Alex Williamsond72e31c2012-05-30 14:18:53 -06001751/*
Robin Murphy6af588f2018-09-12 16:24:12 +01001752 * For IOMMU_DOMAIN_DMA implementations which already provide their own
1753 * guarantees that the group and its default domain are valid and correct.
1754 */
1755struct iommu_domain *iommu_get_dma_domain(struct device *dev)
1756{
1757 return dev->iommu_group->default_domain;
1758}
1759
1760/*
Rami Rosen35449ad2018-09-18 17:38:49 +03001761 * IOMMU groups are really the natural working unit of the IOMMU, but
Alex Williamsond72e31c2012-05-30 14:18:53 -06001762 * the IOMMU API works on domains and devices. Bridge that gap by
1763 * iterating over the devices in a group. Ideally we'd have a single
1764 * device which represents the requestor ID of the group, but we also
1765 * allow IOMMU drivers to create policy defined minimum sets, where
1766 * the physical hardware may be able to distiguish members, but we
1767 * wish to group them at a higher level (ex. untrusted multi-function
1768 * PCI devices). Thus we attach each device.
1769 */
1770static int iommu_group_do_attach_device(struct device *dev, void *data)
1771{
1772 struct iommu_domain *domain = data;
1773
Joerg Roedel426a2732015-05-28 18:41:30 +02001774 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001775}
1776
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001777static int __iommu_attach_group(struct iommu_domain *domain,
1778 struct iommu_group *group)
1779{
1780 int ret;
1781
1782 if (group->default_domain && group->domain != group->default_domain)
1783 return -EBUSY;
1784
1785 ret = __iommu_group_for_each_dev(group, domain,
1786 iommu_group_do_attach_device);
1787 if (ret == 0)
1788 group->domain = domain;
1789
1790 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001791}
1792
1793int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1794{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001795 int ret;
1796
1797 mutex_lock(&group->mutex);
1798 ret = __iommu_attach_group(domain, group);
1799 mutex_unlock(&group->mutex);
1800
1801 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001802}
1803EXPORT_SYMBOL_GPL(iommu_attach_group);
1804
1805static int iommu_group_do_detach_device(struct device *dev, void *data)
1806{
1807 struct iommu_domain *domain = data;
1808
Joerg Roedel426a2732015-05-28 18:41:30 +02001809 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001810
1811 return 0;
1812}
1813
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001814static void __iommu_detach_group(struct iommu_domain *domain,
1815 struct iommu_group *group)
1816{
1817 int ret;
1818
1819 if (!group->default_domain) {
1820 __iommu_group_for_each_dev(group, domain,
1821 iommu_group_do_detach_device);
1822 group->domain = NULL;
1823 return;
1824 }
1825
1826 if (group->domain == group->default_domain)
1827 return;
1828
1829 /* Detach by re-attaching to the default domain */
1830 ret = __iommu_group_for_each_dev(group, group->default_domain,
1831 iommu_group_do_attach_device);
1832 if (ret != 0)
1833 WARN_ON(1);
1834 else
1835 group->domain = group->default_domain;
1836}
1837
Alex Williamsond72e31c2012-05-30 14:18:53 -06001838void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1839{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001840 mutex_lock(&group->mutex);
1841 __iommu_detach_group(domain, group);
1842 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001843}
1844EXPORT_SYMBOL_GPL(iommu_detach_group);
1845
Varun Sethibb5547a2013-03-29 01:23:58 +05301846phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001847{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001848 if (unlikely(domain->ops->iova_to_phys == NULL))
1849 return 0;
1850
1851 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001852}
1853EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001854
Alex Williamsonbd139692013-06-17 19:57:34 -06001855static size_t iommu_pgsize(struct iommu_domain *domain,
1856 unsigned long addr_merge, size_t size)
1857{
1858 unsigned int pgsize_idx;
1859 size_t pgsize;
1860
1861 /* Max page size that still fits into 'size' */
1862 pgsize_idx = __fls(size);
1863
1864 /* need to consider alignment requirements ? */
1865 if (likely(addr_merge)) {
1866 /* Max page size allowed by address */
1867 unsigned int align_pgsize_idx = __ffs(addr_merge);
1868 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1869 }
1870
1871 /* build a mask of acceptable page sizes */
1872 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1873
1874 /* throw away page sizes not supported by the hardware */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001875 pgsize &= domain->pgsize_bitmap;
Alex Williamsonbd139692013-06-17 19:57:34 -06001876
1877 /* make sure we're still sane */
1878 BUG_ON(!pgsize);
1879
1880 /* pick the biggest page */
1881 pgsize_idx = __fls(pgsize);
1882 pgsize = 1UL << pgsize_idx;
1883
1884 return pgsize;
1885}
1886
Tom Murphy781ca2d2019-09-08 09:56:38 -07001887int __iommu_map(struct iommu_domain *domain, unsigned long iova,
1888 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001889{
Dmitry Osipenko1d7ae532018-12-12 23:38:47 +03001890 const struct iommu_ops *ops = domain->ops;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001891 unsigned long orig_iova = iova;
1892 unsigned int min_pagesz;
1893 size_t orig_size = size;
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001894 phys_addr_t orig_paddr = paddr;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001895 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001896
Dmitry Osipenko1d7ae532018-12-12 23:38:47 +03001897 if (unlikely(ops->map == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001898 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001899 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001900
Joerg Roedela10315e2015-03-26 13:43:06 +01001901 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1902 return -EINVAL;
1903
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001904 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001905 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001906
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001907 /*
1908 * both the virtual address and the physical one, as well as
1909 * the size of the mapping, must be aligned (at least) to the
1910 * size of the smallest page supported by the hardware
1911 */
1912 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001913 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001914 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001915 return -EINVAL;
1916 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001917
Fabio Estevamabedb042013-08-22 10:25:42 -03001918 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001919
1920 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001921 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001922
Fabio Estevamabedb042013-08-22 10:25:42 -03001923 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001924 iova, &paddr, pgsize);
Tom Murphy781ca2d2019-09-08 09:56:38 -07001925 ret = ops->map(domain, iova, paddr, pgsize, prot, gfp);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001926
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001927 if (ret)
1928 break;
1929
1930 iova += pgsize;
1931 paddr += pgsize;
1932 size -= pgsize;
1933 }
1934
Dmitry Osipenko1d7ae532018-12-12 23:38:47 +03001935 if (ops->iotlb_sync_map)
1936 ops->iotlb_sync_map(domain);
1937
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001938 /* unroll mapping in case something went wrong */
1939 if (ret)
1940 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001941 else
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001942 trace_map(orig_iova, orig_paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001943
1944 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001945}
Tom Murphy781ca2d2019-09-08 09:56:38 -07001946
1947int iommu_map(struct iommu_domain *domain, unsigned long iova,
1948 phys_addr_t paddr, size_t size, int prot)
1949{
1950 might_sleep();
1951 return __iommu_map(domain, iova, paddr, size, prot, GFP_KERNEL);
1952}
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001953EXPORT_SYMBOL_GPL(iommu_map);
1954
Tom Murphy781ca2d2019-09-08 09:56:38 -07001955int iommu_map_atomic(struct iommu_domain *domain, unsigned long iova,
1956 phys_addr_t paddr, size_t size, int prot)
1957{
1958 return __iommu_map(domain, iova, paddr, size, prot, GFP_ATOMIC);
1959}
1960EXPORT_SYMBOL_GPL(iommu_map_atomic);
1961
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001962static size_t __iommu_unmap(struct iommu_domain *domain,
1963 unsigned long iova, size_t size,
Will Deacona7d20dc2019-07-02 16:43:48 +01001964 struct iommu_iotlb_gather *iotlb_gather)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001965{
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001966 const struct iommu_ops *ops = domain->ops;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001967 size_t unmapped_page, unmapped = 0;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001968 unsigned long orig_iova = iova;
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001969 unsigned int min_pagesz;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001970
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001971 if (unlikely(ops->unmap == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001972 domain->pgsize_bitmap == 0UL))
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001973 return 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001974
Joerg Roedela10315e2015-03-26 13:43:06 +01001975 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001976 return 0;
Joerg Roedela10315e2015-03-26 13:43:06 +01001977
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001978 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001979 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001980
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001981 /*
1982 * The virtual address, as well as the size of the mapping, must be
1983 * aligned (at least) to the size of the smallest page supported
1984 * by the hardware
1985 */
1986 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001987 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1988 iova, size, min_pagesz);
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001989 return 0;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001990 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001991
Joe Perches6197ca82013-06-23 12:29:04 -07001992 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001993
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001994 /*
1995 * Keep iterating until we either unmap 'size' bytes (or more)
1996 * or we hit an area that isn't mapped.
1997 */
1998 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001999 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02002000
Will Deacon56f8af52019-07-02 16:44:06 +01002001 unmapped_page = ops->unmap(domain, iova, pgsize, iotlb_gather);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02002002 if (!unmapped_page)
2003 break;
2004
Joe Perches6197ca82013-06-23 12:29:04 -07002005 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
2006 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02002007
2008 iova += unmapped_page;
2009 unmapped += unmapped_page;
2010 }
2011
Shuah Khandb8614d2015-01-16 20:53:17 -07002012 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02002013 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01002014}
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02002015
2016size_t iommu_unmap(struct iommu_domain *domain,
2017 unsigned long iova, size_t size)
2018{
Will Deacona7d20dc2019-07-02 16:43:48 +01002019 struct iommu_iotlb_gather iotlb_gather;
2020 size_t ret;
2021
2022 iommu_iotlb_gather_init(&iotlb_gather);
2023 ret = __iommu_unmap(domain, iova, size, &iotlb_gather);
2024 iommu_tlb_sync(domain, &iotlb_gather);
2025
2026 return ret;
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02002027}
Joerg Roedelcefc53c2010-01-08 13:35:09 +01002028EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04002029
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02002030size_t iommu_unmap_fast(struct iommu_domain *domain,
Will Deacona7d20dc2019-07-02 16:43:48 +01002031 unsigned long iova, size_t size,
2032 struct iommu_iotlb_gather *iotlb_gather)
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02002033{
Will Deacona7d20dc2019-07-02 16:43:48 +01002034 return __iommu_unmap(domain, iova, size, iotlb_gather);
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02002035}
2036EXPORT_SYMBOL_GPL(iommu_unmap_fast);
2037
Tom Murphy781ca2d2019-09-08 09:56:38 -07002038size_t __iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
2039 struct scatterlist *sg, unsigned int nents, int prot,
2040 gfp_t gfp)
Olav Haugan315786e2014-10-25 09:55:16 -07002041{
Robin Murphy5d95f402018-10-11 16:56:42 +01002042 size_t len = 0, mapped = 0;
2043 phys_addr_t start;
2044 unsigned int i = 0;
Joerg Roedel38ec0102014-11-04 14:53:51 +01002045 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07002046
Robin Murphy5d95f402018-10-11 16:56:42 +01002047 while (i <= nents) {
2048 phys_addr_t s_phys = sg_phys(sg);
Olav Haugan315786e2014-10-25 09:55:16 -07002049
Robin Murphy5d95f402018-10-11 16:56:42 +01002050 if (len && s_phys != start + len) {
Tom Murphy781ca2d2019-09-08 09:56:38 -07002051 ret = __iommu_map(domain, iova + mapped, start,
2052 len, prot, gfp);
2053
Robin Murphy5d95f402018-10-11 16:56:42 +01002054 if (ret)
2055 goto out_err;
Robin Murphy18f23402014-11-25 17:50:55 +00002056
Robin Murphy5d95f402018-10-11 16:56:42 +01002057 mapped += len;
2058 len = 0;
2059 }
Robin Murphy18f23402014-11-25 17:50:55 +00002060
Robin Murphy5d95f402018-10-11 16:56:42 +01002061 if (len) {
2062 len += sg->length;
2063 } else {
2064 len = sg->length;
2065 start = s_phys;
2066 }
Joerg Roedel38ec0102014-11-04 14:53:51 +01002067
Robin Murphy5d95f402018-10-11 16:56:42 +01002068 if (++i < nents)
2069 sg = sg_next(sg);
Olav Haugan315786e2014-10-25 09:55:16 -07002070 }
2071
2072 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01002073
2074out_err:
2075 /* undo mappings already done */
2076 iommu_unmap(domain, iova, mapped);
2077
2078 return 0;
2079
Olav Haugan315786e2014-10-25 09:55:16 -07002080}
Tom Murphy781ca2d2019-09-08 09:56:38 -07002081
2082size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
2083 struct scatterlist *sg, unsigned int nents, int prot)
2084{
2085 might_sleep();
2086 return __iommu_map_sg(domain, iova, sg, nents, prot, GFP_KERNEL);
2087}
Christoph Hellwigd88e61f2018-07-30 09:36:26 +02002088EXPORT_SYMBOL_GPL(iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01002089
Tom Murphy781ca2d2019-09-08 09:56:38 -07002090size_t iommu_map_sg_atomic(struct iommu_domain *domain, unsigned long iova,
2091 struct scatterlist *sg, unsigned int nents, int prot)
2092{
2093 return __iommu_map_sg(domain, iova, sg, nents, prot, GFP_ATOMIC);
2094}
2095EXPORT_SYMBOL_GPL(iommu_map_sg_atomic);
2096
Joerg Roedeld7787d52013-01-29 14:26:20 +01002097int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05302098 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01002099{
2100 if (unlikely(domain->ops->domain_window_enable == NULL))
2101 return -ENODEV;
2102
Varun Sethi80f97f02013-03-29 01:24:00 +05302103 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
2104 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01002105}
2106EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
2107
2108void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
2109{
2110 if (unlikely(domain->ops->domain_window_disable == NULL))
2111 return;
2112
2113 return domain->ops->domain_window_disable(domain, wnd_nr);
2114}
2115EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
2116
Joerg Roedel207c6e32017-04-26 15:39:28 +02002117/**
2118 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
2119 * @domain: the iommu domain where the fault has happened
2120 * @dev: the device where the fault has happened
2121 * @iova: the faulting address
2122 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
2123 *
2124 * This function should be called by the low-level IOMMU implementations
2125 * whenever IOMMU faults happen, to allow high-level users, that are
2126 * interested in such events, to know about them.
2127 *
2128 * This event may be useful for several possible use cases:
2129 * - mere logging of the event
2130 * - dynamic TLB/PTE loading
2131 * - if restarting of the faulting device is required
2132 *
2133 * Returns 0 on success and an appropriate error code otherwise (if dynamic
2134 * PTE/TLB loading will one day be supported, implementations will be able
2135 * to tell whether it succeeded or not according to this return value).
2136 *
2137 * Specifically, -ENOSYS is returned if a fault handler isn't installed
2138 * (though fault handlers can also return -ENOSYS, in case they want to
2139 * elicit the default behavior of the IOMMU drivers).
2140 */
2141int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
2142 unsigned long iova, int flags)
2143{
2144 int ret = -ENOSYS;
2145
2146 /*
2147 * if upper layers showed interest and installed a fault handler,
2148 * invoke it.
2149 */
2150 if (domain->handler)
2151 ret = domain->handler(domain, dev, iova, flags,
2152 domain->handler_token);
2153
2154 trace_io_page_fault(dev, iova, flags);
2155 return ret;
2156}
2157EXPORT_SYMBOL_GPL(report_iommu_fault);
2158
Alex Williamsond72e31c2012-05-30 14:18:53 -06002159static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04002160{
Alex Williamsond72e31c2012-05-30 14:18:53 -06002161 iommu_group_kset = kset_create_and_add("iommu_groups",
2162 NULL, kernel_kobj);
Alex Williamsond72e31c2012-05-30 14:18:53 -06002163 BUG_ON(!iommu_group_kset);
2164
Gary R Hookbad614b2018-06-12 16:41:21 -05002165 iommu_debugfs_setup();
2166
Alex Williamsond72e31c2012-05-30 14:18:53 -06002167 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04002168}
Marek Szyprowskid7ef9992015-05-19 15:20:23 +02002169core_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01002170
2171int iommu_domain_get_attr(struct iommu_domain *domain,
2172 enum iommu_attr attr, void *data)
2173{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01002174 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01002175 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01002176 int ret = 0;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01002177
Joerg Roedel0ff64f82012-01-26 19:40:53 +01002178 switch (attr) {
2179 case DOMAIN_ATTR_GEOMETRY:
2180 geometry = data;
2181 *geometry = domain->geometry;
2182
2183 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01002184 case DOMAIN_ATTR_PAGING:
2185 paging = data;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01002186 *paging = (domain->pgsize_bitmap != 0UL);
Joerg Roedeld2e12162013-01-29 13:49:04 +01002187 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01002188 default:
2189 if (!domain->ops->domain_get_attr)
2190 return -EINVAL;
2191
2192 ret = domain->ops->domain_get_attr(domain, attr, data);
2193 }
2194
2195 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01002196}
2197EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
2198
2199int iommu_domain_set_attr(struct iommu_domain *domain,
2200 enum iommu_attr attr, void *data)
2201{
Joerg Roedel69356712013-02-04 14:00:01 +01002202 int ret = 0;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01002203
Joerg Roedel69356712013-02-04 14:00:01 +01002204 switch (attr) {
Joerg Roedel69356712013-02-04 14:00:01 +01002205 default:
2206 if (domain->ops->domain_set_attr == NULL)
2207 return -EINVAL;
2208
2209 ret = domain->ops->domain_set_attr(domain, attr, data);
2210 }
2211
2212 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01002213}
2214EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02002215
Eric Augere5b52342017-01-19 20:57:47 +00002216void iommu_get_resv_regions(struct device *dev, struct list_head *list)
Joerg Roedela1015c22015-05-28 18:41:33 +02002217{
2218 const struct iommu_ops *ops = dev->bus->iommu_ops;
2219
Eric Augere5b52342017-01-19 20:57:47 +00002220 if (ops && ops->get_resv_regions)
2221 ops->get_resv_regions(dev, list);
Joerg Roedela1015c22015-05-28 18:41:33 +02002222}
2223
Eric Augere5b52342017-01-19 20:57:47 +00002224void iommu_put_resv_regions(struct device *dev, struct list_head *list)
Joerg Roedela1015c22015-05-28 18:41:33 +02002225{
2226 const struct iommu_ops *ops = dev->bus->iommu_ops;
2227
Eric Augere5b52342017-01-19 20:57:47 +00002228 if (ops && ops->put_resv_regions)
2229 ops->put_resv_regions(dev, list);
Joerg Roedela1015c22015-05-28 18:41:33 +02002230}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002231
Thierry Redingf9f69712019-12-18 14:42:01 +01002232/**
2233 * generic_iommu_put_resv_regions - Reserved region driver helper
2234 * @dev: device for which to free reserved regions
2235 * @list: reserved region list for device
2236 *
2237 * IOMMU drivers can use this to implement their .put_resv_regions() callback
2238 * for simple reservations. Memory allocated for each reserved region will be
2239 * freed. If an IOMMU driver allocates additional resources per region, it is
2240 * going to have to implement a custom callback.
2241 */
2242void generic_iommu_put_resv_regions(struct device *dev, struct list_head *list)
2243{
2244 struct iommu_resv_region *entry, *next;
2245
2246 list_for_each_entry_safe(entry, next, list, list)
2247 kfree(entry);
2248}
2249EXPORT_SYMBOL(generic_iommu_put_resv_regions);
2250
Eric Auger2b20cbb2017-01-19 20:57:49 +00002251struct iommu_resv_region *iommu_alloc_resv_region(phys_addr_t start,
Robin Murphy9d3a4de2017-03-16 17:00:16 +00002252 size_t length, int prot,
2253 enum iommu_resv_type type)
Eric Auger2b20cbb2017-01-19 20:57:49 +00002254{
2255 struct iommu_resv_region *region;
2256
2257 region = kzalloc(sizeof(*region), GFP_KERNEL);
2258 if (!region)
2259 return NULL;
2260
2261 INIT_LIST_HEAD(&region->list);
2262 region->start = start;
2263 region->length = length;
2264 region->prot = prot;
2265 region->type = type;
2266 return region;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01002267}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002268
Lu Baolu7423e012019-05-25 13:41:22 +08002269static int
2270request_default_domain_for_dev(struct device *dev, unsigned long type)
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002271{
Lu Baolu7423e012019-05-25 13:41:22 +08002272 struct iommu_domain *domain;
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002273 struct iommu_group *group;
2274 int ret;
2275
2276 /* Device must already be in a group before calling this function */
Lu Baolu57274ea2019-05-21 15:27:35 +08002277 group = iommu_group_get(dev);
2278 if (!group)
2279 return -EINVAL;
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002280
2281 mutex_lock(&group->mutex);
2282
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002283 ret = 0;
Lu Baolu7423e012019-05-25 13:41:22 +08002284 if (group->default_domain && group->default_domain->type == type)
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002285 goto out;
2286
2287 /* Don't change mappings of existing devices */
2288 ret = -EBUSY;
2289 if (iommu_group_device_count(group) != 1)
2290 goto out;
2291
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002292 ret = -ENOMEM;
Lu Baolu7423e012019-05-25 13:41:22 +08002293 domain = __iommu_domain_alloc(dev->bus, type);
2294 if (!domain)
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002295 goto out;
2296
2297 /* Attach the device to the domain */
Lu Baolu7423e012019-05-25 13:41:22 +08002298 ret = __iommu_attach_group(domain, group);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002299 if (ret) {
Lu Baolu7423e012019-05-25 13:41:22 +08002300 iommu_domain_free(domain);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002301 goto out;
2302 }
2303
Tom Murphyd127bc92019-08-26 05:48:21 +01002304 /* Make the domain the default for this group */
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002305 if (group->default_domain)
2306 iommu_domain_free(group->default_domain);
Lu Baolu7423e012019-05-25 13:41:22 +08002307 group->default_domain = domain;
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002308
Jerry Snitselaard3602112019-12-10 11:56:06 -07002309 iommu_group_create_direct_mappings(group, dev);
2310
Lu Baolu7423e012019-05-25 13:41:22 +08002311 dev_info(dev, "Using iommu %s mapping\n",
2312 type == IOMMU_DOMAIN_DMA ? "dma" : "direct");
Joerg Roedeld290f1e2015-05-28 18:41:36 +02002313
2314 ret = 0;
2315out:
2316 mutex_unlock(&group->mutex);
2317 iommu_group_put(group);
2318
2319 return ret;
2320}
Robin Murphy57f98d22016-09-13 10:54:14 +01002321
Lu Baolu7423e012019-05-25 13:41:22 +08002322/* Request that a device is direct mapped by the IOMMU */
2323int iommu_request_dm_for_dev(struct device *dev)
2324{
2325 return request_default_domain_for_dev(dev, IOMMU_DOMAIN_IDENTITY);
2326}
2327
2328/* Request that a device can't be direct mapped by the IOMMU */
2329int iommu_request_dma_domain_for_dev(struct device *dev)
2330{
2331 return request_default_domain_for_dev(dev, IOMMU_DOMAIN_DMA);
2332}
2333
Joerg Roedel8a699612019-08-19 15:22:47 +02002334void iommu_set_default_passthrough(bool cmd_line)
2335{
2336 if (cmd_line)
2337 iommu_set_cmd_line_dma_api();
2338
2339 iommu_def_domain_type = IOMMU_DOMAIN_IDENTITY;
2340}
2341
2342void iommu_set_default_translated(bool cmd_line)
2343{
2344 if (cmd_line)
2345 iommu_set_cmd_line_dma_api();
2346
2347 iommu_def_domain_type = IOMMU_DOMAIN_DMA;
2348}
2349
2350bool iommu_default_passthrough(void)
2351{
2352 return iommu_def_domain_type == IOMMU_DOMAIN_IDENTITY;
2353}
2354EXPORT_SYMBOL_GPL(iommu_default_passthrough);
2355
Joerg Roedel534766d2017-01-31 16:58:42 +01002356const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00002357{
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00002358 const struct iommu_ops *ops = NULL;
Joerg Roedeld0f6f582017-02-02 12:19:12 +01002359 struct iommu_device *iommu;
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00002360
Joerg Roedeld0f6f582017-02-02 12:19:12 +01002361 spin_lock(&iommu_device_lock);
2362 list_for_each_entry(iommu, &iommu_device_list, list)
2363 if (iommu->fwnode == fwnode) {
2364 ops = iommu->ops;
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00002365 break;
2366 }
Joerg Roedeld0f6f582017-02-02 12:19:12 +01002367 spin_unlock(&iommu_device_lock);
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00002368 return ops;
2369}
2370
Robin Murphy57f98d22016-09-13 10:54:14 +01002371int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
2372 const struct iommu_ops *ops)
2373{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002374 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01002375
2376 if (fwspec)
2377 return ops == fwspec->ops ? 0 : -EINVAL;
2378
2379 fwspec = kzalloc(sizeof(*fwspec), GFP_KERNEL);
2380 if (!fwspec)
2381 return -ENOMEM;
2382
2383 of_node_get(to_of_node(iommu_fwnode));
2384 fwspec->iommu_fwnode = iommu_fwnode;
2385 fwspec->ops = ops;
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002386 dev_iommu_fwspec_set(dev, fwspec);
Robin Murphy57f98d22016-09-13 10:54:14 +01002387 return 0;
2388}
2389EXPORT_SYMBOL_GPL(iommu_fwspec_init);
2390
2391void iommu_fwspec_free(struct device *dev)
2392{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002393 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01002394
2395 if (fwspec) {
2396 fwnode_handle_put(fwspec->iommu_fwnode);
2397 kfree(fwspec);
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002398 dev_iommu_fwspec_set(dev, NULL);
Robin Murphy57f98d22016-09-13 10:54:14 +01002399 }
2400}
2401EXPORT_SYMBOL_GPL(iommu_fwspec_free);
2402
2403int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids)
2404{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002405 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01002406 size_t size;
2407 int i;
2408
2409 if (!fwspec)
2410 return -EINVAL;
2411
2412 size = offsetof(struct iommu_fwspec, ids[fwspec->num_ids + num_ids]);
2413 if (size > sizeof(*fwspec)) {
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002414 fwspec = krealloc(fwspec, size, GFP_KERNEL);
Robin Murphy57f98d22016-09-13 10:54:14 +01002415 if (!fwspec)
2416 return -ENOMEM;
Zhen Lei909111b2017-02-03 17:35:02 +08002417
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002418 dev_iommu_fwspec_set(dev, fwspec);
Robin Murphy57f98d22016-09-13 10:54:14 +01002419 }
2420
2421 for (i = 0; i < num_ids; i++)
2422 fwspec->ids[fwspec->num_ids + i] = ids[i];
2423
2424 fwspec->num_ids += num_ids;
Robin Murphy57f98d22016-09-13 10:54:14 +01002425 return 0;
2426}
2427EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids);
Lu Baolua3a19592019-03-25 09:30:28 +08002428
2429/*
2430 * Per device IOMMU features.
2431 */
2432bool iommu_dev_has_feature(struct device *dev, enum iommu_dev_features feat)
2433{
2434 const struct iommu_ops *ops = dev->bus->iommu_ops;
2435
2436 if (ops && ops->dev_has_feat)
2437 return ops->dev_has_feat(dev, feat);
2438
2439 return false;
2440}
2441EXPORT_SYMBOL_GPL(iommu_dev_has_feature);
2442
2443int iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features feat)
2444{
2445 const struct iommu_ops *ops = dev->bus->iommu_ops;
2446
2447 if (ops && ops->dev_enable_feat)
2448 return ops->dev_enable_feat(dev, feat);
2449
2450 return -ENODEV;
2451}
2452EXPORT_SYMBOL_GPL(iommu_dev_enable_feature);
2453
2454/*
2455 * The device drivers should do the necessary cleanups before calling this.
2456 * For example, before disabling the aux-domain feature, the device driver
2457 * should detach all aux-domains. Otherwise, this will return -EBUSY.
2458 */
2459int iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features feat)
2460{
2461 const struct iommu_ops *ops = dev->bus->iommu_ops;
2462
2463 if (ops && ops->dev_disable_feat)
2464 return ops->dev_disable_feat(dev, feat);
2465
2466 return -EBUSY;
2467}
2468EXPORT_SYMBOL_GPL(iommu_dev_disable_feature);
2469
2470bool iommu_dev_feature_enabled(struct device *dev, enum iommu_dev_features feat)
2471{
2472 const struct iommu_ops *ops = dev->bus->iommu_ops;
2473
2474 if (ops && ops->dev_feat_enabled)
2475 return ops->dev_feat_enabled(dev, feat);
2476
2477 return false;
2478}
2479EXPORT_SYMBOL_GPL(iommu_dev_feature_enabled);
2480
2481/*
2482 * Aux-domain specific attach/detach.
2483 *
2484 * Only works if iommu_dev_feature_enabled(dev, IOMMU_DEV_FEAT_AUX) returns
2485 * true. Also, as long as domains are attached to a device through this
2486 * interface, any tries to call iommu_attach_device() should fail
2487 * (iommu_detach_device() can't fail, so we fail when trying to re-attach).
2488 * This should make us safe against a device being attached to a guest as a
2489 * whole while there are still pasid users on it (aux and sva).
2490 */
2491int iommu_aux_attach_device(struct iommu_domain *domain, struct device *dev)
2492{
2493 int ret = -ENODEV;
2494
2495 if (domain->ops->aux_attach_dev)
2496 ret = domain->ops->aux_attach_dev(domain, dev);
2497
2498 if (!ret)
2499 trace_attach_device_to_domain(dev);
2500
2501 return ret;
2502}
2503EXPORT_SYMBOL_GPL(iommu_aux_attach_device);
2504
2505void iommu_aux_detach_device(struct iommu_domain *domain, struct device *dev)
2506{
2507 if (domain->ops->aux_detach_dev) {
2508 domain->ops->aux_detach_dev(domain, dev);
2509 trace_detach_device_from_domain(dev);
2510 }
2511}
2512EXPORT_SYMBOL_GPL(iommu_aux_detach_device);
2513
2514int iommu_aux_get_pasid(struct iommu_domain *domain, struct device *dev)
2515{
2516 int ret = -ENODEV;
2517
2518 if (domain->ops->aux_get_pasid)
2519 ret = domain->ops->aux_get_pasid(domain, dev);
2520
2521 return ret;
2522}
2523EXPORT_SYMBOL_GPL(iommu_aux_get_pasid);
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +01002524
2525/**
2526 * iommu_sva_bind_device() - Bind a process address space to a device
2527 * @dev: the device
2528 * @mm: the mm to bind, caller must hold a reference to it
2529 *
2530 * Create a bond between device and address space, allowing the device to access
2531 * the mm using the returned PASID. If a bond already exists between @device and
2532 * @mm, it is returned and an additional reference is taken. Caller must call
2533 * iommu_sva_unbind_device() to release each reference.
2534 *
2535 * iommu_dev_enable_feature(dev, IOMMU_DEV_FEAT_SVA) must be called first, to
2536 * initialize the required SVA features.
2537 *
2538 * On error, returns an ERR_PTR value.
2539 */
2540struct iommu_sva *
2541iommu_sva_bind_device(struct device *dev, struct mm_struct *mm, void *drvdata)
2542{
2543 struct iommu_group *group;
2544 struct iommu_sva *handle = ERR_PTR(-EINVAL);
2545 const struct iommu_ops *ops = dev->bus->iommu_ops;
2546
2547 if (!ops || !ops->sva_bind)
2548 return ERR_PTR(-ENODEV);
2549
2550 group = iommu_group_get(dev);
2551 if (!group)
2552 return ERR_PTR(-ENODEV);
2553
2554 /* Ensure device count and domain don't change while we're binding */
2555 mutex_lock(&group->mutex);
2556
2557 /*
2558 * To keep things simple, SVA currently doesn't support IOMMU groups
2559 * with more than one device. Existing SVA-capable systems are not
2560 * affected by the problems that required IOMMU groups (lack of ACS
2561 * isolation, device ID aliasing and other hardware issues).
2562 */
2563 if (iommu_group_device_count(group) != 1)
2564 goto out_unlock;
2565
2566 handle = ops->sva_bind(dev, mm, drvdata);
2567
2568out_unlock:
2569 mutex_unlock(&group->mutex);
2570 iommu_group_put(group);
2571
2572 return handle;
2573}
2574EXPORT_SYMBOL_GPL(iommu_sva_bind_device);
2575
2576/**
2577 * iommu_sva_unbind_device() - Remove a bond created with iommu_sva_bind_device
2578 * @handle: the handle returned by iommu_sva_bind_device()
2579 *
2580 * Put reference to a bond between device and address space. The device should
2581 * not be issuing any more transaction for this PASID. All outstanding page
2582 * requests for this PASID must have been flushed to the IOMMU.
2583 *
2584 * Returns 0 on success, or an error value
2585 */
2586void iommu_sva_unbind_device(struct iommu_sva *handle)
2587{
2588 struct iommu_group *group;
2589 struct device *dev = handle->dev;
2590 const struct iommu_ops *ops = dev->bus->iommu_ops;
2591
2592 if (!ops || !ops->sva_unbind)
2593 return;
2594
2595 group = iommu_group_get(dev);
2596 if (!group)
2597 return;
2598
2599 mutex_lock(&group->mutex);
2600 ops->sva_unbind(handle);
2601 mutex_unlock(&group->mutex);
2602
2603 iommu_group_put(group);
2604}
2605EXPORT_SYMBOL_GPL(iommu_sva_unbind_device);
2606
2607int iommu_sva_set_ops(struct iommu_sva *handle,
2608 const struct iommu_sva_ops *sva_ops)
2609{
2610 if (handle->ops && handle->ops != sva_ops)
2611 return -EEXIST;
2612
2613 handle->ops = sva_ops;
2614 return 0;
2615}
2616EXPORT_SYMBOL_GPL(iommu_sva_set_ops);
2617
2618int iommu_sva_get_pasid(struct iommu_sva *handle)
2619{
2620 const struct iommu_ops *ops = handle->dev->bus->iommu_ops;
2621
2622 if (!ops || !ops->sva_get_pasid)
2623 return IOMMU_PASID_INVALID;
2624
2625 return ops->sva_get_pasid(handle);
2626}
2627EXPORT_SYMBOL_GPL(iommu_sva_get_pasid);