blob: 54c9d18fe31d29bbc998c9f1bf862067e1caee8c [file] [log] [blame]
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
Joerg Roedel63ce3ae2015-02-04 16:12:55 +01003 * Author: Joerg Roedel <jroedel@suse.de>
Joerg Roedelfc2100e2008-11-26 17:21:24 +01004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Joerg Roedel92e70662015-05-28 18:41:24 +020019#define pr_fmt(fmt) "iommu: " fmt
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +020020
Joerg Roedel905d66c2011-09-06 16:03:26 +020021#include <linux/device.h>
Ohad Ben-Cohen40998182011-09-02 13:32:32 -040022#include <linux/kernel.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010023#include <linux/bug.h>
24#include <linux/types.h>
Paul Gortmakerc1af7b42018-12-01 14:19:09 -050025#include <linux/init.h>
26#include <linux/export.h>
Andrew Morton60db4022009-05-06 16:03:07 -070027#include <linux/slab.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010028#include <linux/errno.h>
29#include <linux/iommu.h>
Alex Williamsond72e31c2012-05-30 14:18:53 -060030#include <linux/idr.h>
31#include <linux/notifier.h>
32#include <linux/err.h>
Alex Williamson104a1c12014-07-03 09:51:18 -060033#include <linux/pci.h>
Alex Williamsonf096c062014-09-19 10:03:06 -060034#include <linux/bitops.h>
Robin Murphy57f98d22016-09-13 10:54:14 +010035#include <linux/property.h>
Nipun Guptaeab03e22018-09-10 19:19:18 +053036#include <linux/fsl/mc.h>
Shuah Khan7f6db172013-08-15 11:59:23 -060037#include <trace/events/iommu.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010038
Alex Williamsond72e31c2012-05-30 14:18:53 -060039static struct kset *iommu_group_kset;
Heiner Kallweite38d1f12016-06-28 20:38:36 +020040static DEFINE_IDA(iommu_group_ida);
Olof Johansson58d11312018-07-20 11:02:23 -070041#ifdef CONFIG_IOMMU_DEFAULT_PASSTHROUGH
42static unsigned int iommu_def_domain_type = IOMMU_DOMAIN_IDENTITY;
43#else
Will Deaconfccb4e32017-01-05 18:38:26 +000044static unsigned int iommu_def_domain_type = IOMMU_DOMAIN_DMA;
Olof Johansson58d11312018-07-20 11:02:23 -070045#endif
Zhen Lei68a6efe2018-09-20 17:10:23 +010046static bool iommu_dma_strict __read_mostly = true;
Alex Williamsond72e31c2012-05-30 14:18:53 -060047
Thierry Redingb22f6432014-06-27 09:03:12 +020048struct iommu_callback_data {
49 const struct iommu_ops *ops;
50};
51
Alex Williamsond72e31c2012-05-30 14:18:53 -060052struct iommu_group {
53 struct kobject kobj;
54 struct kobject *devices_kobj;
55 struct list_head devices;
56 struct mutex mutex;
57 struct blocking_notifier_head notifier;
58 void *iommu_data;
59 void (*iommu_data_release)(void *iommu_data);
60 char *name;
61 int id;
Joerg Roedel53723dc2015-05-28 18:41:29 +020062 struct iommu_domain *default_domain;
Joerg Roedele39cb8a2015-05-28 18:41:31 +020063 struct iommu_domain *domain;
Alex Williamsond72e31c2012-05-30 14:18:53 -060064};
65
Joerg Roedelc09e22d2017-02-01 12:19:46 +010066struct group_device {
Alex Williamsond72e31c2012-05-30 14:18:53 -060067 struct list_head list;
68 struct device *dev;
69 char *name;
70};
71
72struct iommu_group_attribute {
73 struct attribute attr;
74 ssize_t (*show)(struct iommu_group *group, char *buf);
75 ssize_t (*store)(struct iommu_group *group,
76 const char *buf, size_t count);
77};
78
Eric Augerbc7d12b92017-01-19 20:57:52 +000079static const char * const iommu_group_resv_type_string[] = {
80 [IOMMU_RESV_DIRECT] = "direct",
81 [IOMMU_RESV_RESERVED] = "reserved",
82 [IOMMU_RESV_MSI] = "msi",
Robin Murphy9d3a4de2017-03-16 17:00:16 +000083 [IOMMU_RESV_SW_MSI] = "msi",
Eric Augerbc7d12b92017-01-19 20:57:52 +000084};
85
Alex Williamsond72e31c2012-05-30 14:18:53 -060086#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
87struct iommu_group_attribute iommu_group_attr_##_name = \
88 __ATTR(_name, _mode, _show, _store)
89
90#define to_iommu_group_attr(_attr) \
91 container_of(_attr, struct iommu_group_attribute, attr)
92#define to_iommu_group(_kobj) \
93 container_of(_kobj, struct iommu_group, kobj)
94
Joerg Roedelb0119e82017-02-01 13:23:08 +010095static LIST_HEAD(iommu_device_list);
96static DEFINE_SPINLOCK(iommu_device_lock);
97
98int iommu_device_register(struct iommu_device *iommu)
99{
100 spin_lock(&iommu_device_lock);
101 list_add_tail(&iommu->list, &iommu_device_list);
102 spin_unlock(&iommu_device_lock);
103
104 return 0;
105}
106
107void iommu_device_unregister(struct iommu_device *iommu)
108{
109 spin_lock(&iommu_device_lock);
110 list_del(&iommu->list);
111 spin_unlock(&iommu_device_lock);
112}
113
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100114int iommu_probe_device(struct device *dev)
115{
116 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedeldc9de8a2018-12-20 10:02:20 +0100117 int ret = -EINVAL;
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100118
119 WARN_ON(dev->iommu_group);
120
Joerg Roedeldc9de8a2018-12-20 10:02:20 +0100121 if (ops)
122 ret = ops->add_device(dev);
123
124 return ret;
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100125}
126
127void iommu_release_device(struct device *dev)
128{
129 const struct iommu_ops *ops = dev->bus->iommu_ops;
130
131 if (dev->iommu_group)
132 ops->remove_device(dev);
133}
134
Joerg Roedel53723dc2015-05-28 18:41:29 +0200135static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
136 unsigned type);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200137static int __iommu_attach_device(struct iommu_domain *domain,
138 struct device *dev);
139static int __iommu_attach_group(struct iommu_domain *domain,
140 struct iommu_group *group);
141static void __iommu_detach_group(struct iommu_domain *domain,
142 struct iommu_group *group);
Joerg Roedel53723dc2015-05-28 18:41:29 +0200143
Will Deaconfccb4e32017-01-05 18:38:26 +0000144static int __init iommu_set_def_domain_type(char *str)
145{
146 bool pt;
Andy Shevchenko7f9584d2018-05-14 19:22:25 +0300147 int ret;
Will Deaconfccb4e32017-01-05 18:38:26 +0000148
Andy Shevchenko7f9584d2018-05-14 19:22:25 +0300149 ret = kstrtobool(str, &pt);
150 if (ret)
151 return ret;
Will Deaconfccb4e32017-01-05 18:38:26 +0000152
153 iommu_def_domain_type = pt ? IOMMU_DOMAIN_IDENTITY : IOMMU_DOMAIN_DMA;
154 return 0;
155}
156early_param("iommu.passthrough", iommu_set_def_domain_type);
157
Zhen Lei68a6efe2018-09-20 17:10:23 +0100158static int __init iommu_dma_setup(char *str)
159{
160 return kstrtobool(str, &iommu_dma_strict);
161}
162early_param("iommu.strict", iommu_dma_setup);
163
Alex Williamsond72e31c2012-05-30 14:18:53 -0600164static ssize_t iommu_group_attr_show(struct kobject *kobj,
165 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -0400166{
Alex Williamsond72e31c2012-05-30 14:18:53 -0600167 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
168 struct iommu_group *group = to_iommu_group(kobj);
169 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -0400170
Alex Williamsond72e31c2012-05-30 14:18:53 -0600171 if (attr->show)
172 ret = attr->show(group, buf);
173 return ret;
Alex Williamson14604322011-10-21 15:56:05 -0400174}
Alex Williamsond72e31c2012-05-30 14:18:53 -0600175
176static ssize_t iommu_group_attr_store(struct kobject *kobj,
177 struct attribute *__attr,
178 const char *buf, size_t count)
179{
180 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
181 struct iommu_group *group = to_iommu_group(kobj);
182 ssize_t ret = -EIO;
183
184 if (attr->store)
185 ret = attr->store(group, buf, count);
186 return ret;
187}
188
189static const struct sysfs_ops iommu_group_sysfs_ops = {
190 .show = iommu_group_attr_show,
191 .store = iommu_group_attr_store,
192};
193
194static int iommu_group_create_file(struct iommu_group *group,
195 struct iommu_group_attribute *attr)
196{
197 return sysfs_create_file(&group->kobj, &attr->attr);
198}
199
200static void iommu_group_remove_file(struct iommu_group *group,
201 struct iommu_group_attribute *attr)
202{
203 sysfs_remove_file(&group->kobj, &attr->attr);
204}
205
206static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
207{
208 return sprintf(buf, "%s\n", group->name);
209}
210
Eric Auger6c65fb32017-01-19 20:57:51 +0000211/**
212 * iommu_insert_resv_region - Insert a new region in the
213 * list of reserved regions.
214 * @new: new region to insert
215 * @regions: list of regions
216 *
217 * The new element is sorted by address with respect to the other
218 * regions of the same type. In case it overlaps with another
219 * region of the same type, regions are merged. In case it
220 * overlaps with another region of different type, regions are
221 * not merged.
222 */
223static int iommu_insert_resv_region(struct iommu_resv_region *new,
224 struct list_head *regions)
225{
226 struct iommu_resv_region *region;
227 phys_addr_t start = new->start;
228 phys_addr_t end = new->start + new->length - 1;
229 struct list_head *pos = regions->next;
230
231 while (pos != regions) {
232 struct iommu_resv_region *entry =
233 list_entry(pos, struct iommu_resv_region, list);
234 phys_addr_t a = entry->start;
235 phys_addr_t b = entry->start + entry->length - 1;
236 int type = entry->type;
237
238 if (end < a) {
239 goto insert;
240 } else if (start > b) {
241 pos = pos->next;
242 } else if ((start >= a) && (end <= b)) {
243 if (new->type == type)
244 goto done;
245 else
246 pos = pos->next;
247 } else {
248 if (new->type == type) {
249 phys_addr_t new_start = min(a, start);
250 phys_addr_t new_end = max(b, end);
251
252 list_del(&entry->list);
253 entry->start = new_start;
254 entry->length = new_end - new_start + 1;
255 iommu_insert_resv_region(entry, regions);
256 } else {
257 pos = pos->next;
258 }
259 }
260 }
261insert:
262 region = iommu_alloc_resv_region(new->start, new->length,
263 new->prot, new->type);
264 if (!region)
265 return -ENOMEM;
266
267 list_add_tail(&region->list, pos);
268done:
269 return 0;
270}
271
272static int
273iommu_insert_device_resv_regions(struct list_head *dev_resv_regions,
274 struct list_head *group_resv_regions)
275{
276 struct iommu_resv_region *entry;
Eric Augera514a6e2017-02-06 10:11:38 +0100277 int ret = 0;
Eric Auger6c65fb32017-01-19 20:57:51 +0000278
279 list_for_each_entry(entry, dev_resv_regions, list) {
280 ret = iommu_insert_resv_region(entry, group_resv_regions);
281 if (ret)
282 break;
283 }
284 return ret;
285}
286
287int iommu_get_group_resv_regions(struct iommu_group *group,
288 struct list_head *head)
289{
Joerg Roedel8d2932d2017-02-10 15:13:10 +0100290 struct group_device *device;
Eric Auger6c65fb32017-01-19 20:57:51 +0000291 int ret = 0;
292
293 mutex_lock(&group->mutex);
294 list_for_each_entry(device, &group->devices, list) {
295 struct list_head dev_resv_regions;
296
297 INIT_LIST_HEAD(&dev_resv_regions);
298 iommu_get_resv_regions(device->dev, &dev_resv_regions);
299 ret = iommu_insert_device_resv_regions(&dev_resv_regions, head);
300 iommu_put_resv_regions(device->dev, &dev_resv_regions);
301 if (ret)
302 break;
303 }
304 mutex_unlock(&group->mutex);
305 return ret;
306}
307EXPORT_SYMBOL_GPL(iommu_get_group_resv_regions);
308
Eric Augerbc7d12b92017-01-19 20:57:52 +0000309static ssize_t iommu_group_show_resv_regions(struct iommu_group *group,
310 char *buf)
311{
312 struct iommu_resv_region *region, *next;
313 struct list_head group_resv_regions;
314 char *str = buf;
315
316 INIT_LIST_HEAD(&group_resv_regions);
317 iommu_get_group_resv_regions(group, &group_resv_regions);
318
319 list_for_each_entry_safe(region, next, &group_resv_regions, list) {
320 str += sprintf(str, "0x%016llx 0x%016llx %s\n",
321 (long long int)region->start,
322 (long long int)(region->start +
323 region->length - 1),
324 iommu_group_resv_type_string[region->type]);
325 kfree(region);
326 }
327
328 return (str - buf);
329}
330
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700331static ssize_t iommu_group_show_type(struct iommu_group *group,
332 char *buf)
333{
334 char *type = "unknown\n";
335
336 if (group->default_domain) {
337 switch (group->default_domain->type) {
338 case IOMMU_DOMAIN_BLOCKED:
339 type = "blocked\n";
340 break;
341 case IOMMU_DOMAIN_IDENTITY:
342 type = "identity\n";
343 break;
344 case IOMMU_DOMAIN_UNMANAGED:
345 type = "unmanaged\n";
346 break;
347 case IOMMU_DOMAIN_DMA:
348 type = "DMA";
349 break;
350 }
351 }
352 strcpy(buf, type);
353
354 return strlen(type);
355}
356
Alex Williamsond72e31c2012-05-30 14:18:53 -0600357static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
358
Eric Augerbc7d12b92017-01-19 20:57:52 +0000359static IOMMU_GROUP_ATTR(reserved_regions, 0444,
360 iommu_group_show_resv_regions, NULL);
361
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700362static IOMMU_GROUP_ATTR(type, 0444, iommu_group_show_type, NULL);
363
Alex Williamsond72e31c2012-05-30 14:18:53 -0600364static void iommu_group_release(struct kobject *kobj)
365{
366 struct iommu_group *group = to_iommu_group(kobj);
367
Joerg Roedel269aa802015-05-28 18:41:25 +0200368 pr_debug("Releasing group %d\n", group->id);
369
Alex Williamsond72e31c2012-05-30 14:18:53 -0600370 if (group->iommu_data_release)
371 group->iommu_data_release(group->iommu_data);
372
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200373 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600374
Joerg Roedel53723dc2015-05-28 18:41:29 +0200375 if (group->default_domain)
376 iommu_domain_free(group->default_domain);
377
Alex Williamsond72e31c2012-05-30 14:18:53 -0600378 kfree(group->name);
379 kfree(group);
380}
381
382static struct kobj_type iommu_group_ktype = {
383 .sysfs_ops = &iommu_group_sysfs_ops,
384 .release = iommu_group_release,
385};
386
387/**
388 * iommu_group_alloc - Allocate a new group
Alex Williamsond72e31c2012-05-30 14:18:53 -0600389 *
390 * This function is called by an iommu driver to allocate a new iommu
391 * group. The iommu group represents the minimum granularity of the iommu.
392 * Upon successful return, the caller holds a reference to the supplied
393 * group in order to hold the group until devices are added. Use
394 * iommu_group_put() to release this extra reference count, allowing the
395 * group to be automatically reclaimed once it has no devices or external
396 * references.
397 */
398struct iommu_group *iommu_group_alloc(void)
399{
400 struct iommu_group *group;
401 int ret;
402
403 group = kzalloc(sizeof(*group), GFP_KERNEL);
404 if (!group)
405 return ERR_PTR(-ENOMEM);
406
407 group->kobj.kset = iommu_group_kset;
408 mutex_init(&group->mutex);
409 INIT_LIST_HEAD(&group->devices);
410 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
411
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200412 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
413 if (ret < 0) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600414 kfree(group);
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200415 return ERR_PTR(ret);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600416 }
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200417 group->id = ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600418
419 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
420 NULL, "%d", group->id);
421 if (ret) {
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200422 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600423 kfree(group);
424 return ERR_PTR(ret);
425 }
426
427 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
428 if (!group->devices_kobj) {
429 kobject_put(&group->kobj); /* triggers .release & free */
430 return ERR_PTR(-ENOMEM);
431 }
432
433 /*
434 * The devices_kobj holds a reference on the group kobject, so
435 * as long as that exists so will the group. We can therefore
436 * use the devices_kobj for reference counting.
437 */
438 kobject_put(&group->kobj);
439
Eric Augerbc7d12b92017-01-19 20:57:52 +0000440 ret = iommu_group_create_file(group,
441 &iommu_group_attr_reserved_regions);
442 if (ret)
443 return ERR_PTR(ret);
444
Olof Johanssonc52c72d2018-07-11 13:59:36 -0700445 ret = iommu_group_create_file(group, &iommu_group_attr_type);
446 if (ret)
447 return ERR_PTR(ret);
448
Joerg Roedel269aa802015-05-28 18:41:25 +0200449 pr_debug("Allocated group %d\n", group->id);
450
Alex Williamsond72e31c2012-05-30 14:18:53 -0600451 return group;
452}
453EXPORT_SYMBOL_GPL(iommu_group_alloc);
454
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100455struct iommu_group *iommu_group_get_by_id(int id)
456{
457 struct kobject *group_kobj;
458 struct iommu_group *group;
459 const char *name;
460
461 if (!iommu_group_kset)
462 return NULL;
463
464 name = kasprintf(GFP_KERNEL, "%d", id);
465 if (!name)
466 return NULL;
467
468 group_kobj = kset_find_obj(iommu_group_kset, name);
469 kfree(name);
470
471 if (!group_kobj)
472 return NULL;
473
474 group = container_of(group_kobj, struct iommu_group, kobj);
475 BUG_ON(group->id != id);
476
477 kobject_get(group->devices_kobj);
478 kobject_put(&group->kobj);
479
480 return group;
481}
482EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
483
Alex Williamsond72e31c2012-05-30 14:18:53 -0600484/**
485 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
486 * @group: the group
487 *
488 * iommu drivers can store data in the group for use when doing iommu
489 * operations. This function provides a way to retrieve it. Caller
490 * should hold a group reference.
491 */
492void *iommu_group_get_iommudata(struct iommu_group *group)
493{
494 return group->iommu_data;
495}
496EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
497
498/**
499 * iommu_group_set_iommudata - set iommu_data for a group
500 * @group: the group
501 * @iommu_data: new data
502 * @release: release function for iommu_data
503 *
504 * iommu drivers can store data in the group for use when doing iommu
505 * operations. This function provides a way to set the data after
506 * the group has been allocated. Caller should hold a group reference.
507 */
508void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
509 void (*release)(void *iommu_data))
510{
511 group->iommu_data = iommu_data;
512 group->iommu_data_release = release;
513}
514EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
515
516/**
517 * iommu_group_set_name - set name for a group
518 * @group: the group
519 * @name: name
520 *
521 * Allow iommu driver to set a name for a group. When set it will
522 * appear in a name attribute file under the group in sysfs.
523 */
524int iommu_group_set_name(struct iommu_group *group, const char *name)
525{
526 int ret;
527
528 if (group->name) {
529 iommu_group_remove_file(group, &iommu_group_attr_name);
530 kfree(group->name);
531 group->name = NULL;
532 if (!name)
533 return 0;
534 }
535
536 group->name = kstrdup(name, GFP_KERNEL);
537 if (!group->name)
538 return -ENOMEM;
539
540 ret = iommu_group_create_file(group, &iommu_group_attr_name);
541 if (ret) {
542 kfree(group->name);
543 group->name = NULL;
544 return ret;
545 }
546
547 return 0;
548}
549EXPORT_SYMBOL_GPL(iommu_group_set_name);
550
Joerg Roedelbeed2822015-05-28 18:41:34 +0200551static int iommu_group_create_direct_mappings(struct iommu_group *group,
552 struct device *dev)
553{
554 struct iommu_domain *domain = group->default_domain;
Eric Augere5b52342017-01-19 20:57:47 +0000555 struct iommu_resv_region *entry;
Joerg Roedelbeed2822015-05-28 18:41:34 +0200556 struct list_head mappings;
557 unsigned long pg_size;
558 int ret = 0;
559
560 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
561 return 0;
562
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100563 BUG_ON(!domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200564
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100565 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200566 INIT_LIST_HEAD(&mappings);
567
Eric Augere5b52342017-01-19 20:57:47 +0000568 iommu_get_resv_regions(dev, &mappings);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200569
570 /* We need to consider overlapping regions for different devices */
571 list_for_each_entry(entry, &mappings, list) {
572 dma_addr_t start, end, addr;
573
Eric Augere5b52342017-01-19 20:57:47 +0000574 if (domain->ops->apply_resv_region)
575 domain->ops->apply_resv_region(dev, domain, entry);
Joerg Roedel33b21a62016-07-05 13:07:53 +0200576
Joerg Roedelbeed2822015-05-28 18:41:34 +0200577 start = ALIGN(entry->start, pg_size);
578 end = ALIGN(entry->start + entry->length, pg_size);
579
Eric Auger544a25d2017-01-19 20:57:50 +0000580 if (entry->type != IOMMU_RESV_DIRECT)
581 continue;
582
Joerg Roedelbeed2822015-05-28 18:41:34 +0200583 for (addr = start; addr < end; addr += pg_size) {
584 phys_addr_t phys_addr;
585
586 phys_addr = iommu_iova_to_phys(domain, addr);
587 if (phys_addr)
588 continue;
589
590 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
591 if (ret)
592 goto out;
593 }
594
595 }
596
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200597 iommu_flush_tlb_all(domain);
598
Joerg Roedelbeed2822015-05-28 18:41:34 +0200599out:
Eric Augere5b52342017-01-19 20:57:47 +0000600 iommu_put_resv_regions(dev, &mappings);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200601
602 return ret;
603}
604
Alex Williamsond72e31c2012-05-30 14:18:53 -0600605/**
606 * iommu_group_add_device - add a device to an iommu group
607 * @group: the group into which to add the device (reference should be held)
608 * @dev: the device
609 *
610 * This function is called by an iommu driver to add a device into a
611 * group. Adding a device increments the group reference count.
612 */
613int iommu_group_add_device(struct iommu_group *group, struct device *dev)
614{
615 int ret, i = 0;
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100616 struct group_device *device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600617
618 device = kzalloc(sizeof(*device), GFP_KERNEL);
619 if (!device)
620 return -ENOMEM;
621
622 device->dev = dev;
623
624 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
Robin Murphy797a8b42017-01-16 12:58:07 +0000625 if (ret)
626 goto err_free_device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600627
628 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
629rename:
630 if (!device->name) {
Robin Murphy797a8b42017-01-16 12:58:07 +0000631 ret = -ENOMEM;
632 goto err_remove_link;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600633 }
634
635 ret = sysfs_create_link_nowarn(group->devices_kobj,
636 &dev->kobj, device->name);
637 if (ret) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600638 if (ret == -EEXIST && i >= 0) {
639 /*
640 * Account for the slim chance of collision
641 * and append an instance to the name.
642 */
Robin Murphy797a8b42017-01-16 12:58:07 +0000643 kfree(device->name);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600644 device->name = kasprintf(GFP_KERNEL, "%s.%d",
645 kobject_name(&dev->kobj), i++);
646 goto rename;
647 }
Robin Murphy797a8b42017-01-16 12:58:07 +0000648 goto err_free_name;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600649 }
650
651 kobject_get(group->devices_kobj);
652
653 dev->iommu_group = group;
654
Joerg Roedelbeed2822015-05-28 18:41:34 +0200655 iommu_group_create_direct_mappings(group, dev);
656
Alex Williamsond72e31c2012-05-30 14:18:53 -0600657 mutex_lock(&group->mutex);
658 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200659 if (group->domain)
Robin Murphy797a8b42017-01-16 12:58:07 +0000660 ret = __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600661 mutex_unlock(&group->mutex);
Robin Murphy797a8b42017-01-16 12:58:07 +0000662 if (ret)
663 goto err_put_group;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600664
665 /* Notify any listeners about change to group. */
666 blocking_notifier_call_chain(&group->notifier,
667 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600668
669 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200670
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600671 dev_info(dev, "Adding to iommu group %d\n", group->id);
Joerg Roedel269aa802015-05-28 18:41:25 +0200672
Alex Williamsond72e31c2012-05-30 14:18:53 -0600673 return 0;
Robin Murphy797a8b42017-01-16 12:58:07 +0000674
675err_put_group:
676 mutex_lock(&group->mutex);
677 list_del(&device->list);
678 mutex_unlock(&group->mutex);
679 dev->iommu_group = NULL;
680 kobject_put(group->devices_kobj);
681err_free_name:
682 kfree(device->name);
683err_remove_link:
684 sysfs_remove_link(&dev->kobj, "iommu_group");
685err_free_device:
686 kfree(device);
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600687 dev_err(dev, "Failed to add to iommu group %d: %d\n", group->id, ret);
Robin Murphy797a8b42017-01-16 12:58:07 +0000688 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600689}
690EXPORT_SYMBOL_GPL(iommu_group_add_device);
691
692/**
693 * iommu_group_remove_device - remove a device from it's current group
694 * @dev: device to be removed
695 *
696 * This function is called by an iommu driver to remove the device from
697 * it's current group. This decrements the iommu group reference count.
698 */
699void iommu_group_remove_device(struct device *dev)
700{
701 struct iommu_group *group = dev->iommu_group;
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100702 struct group_device *tmp_device, *device = NULL;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600703
Bjorn Helgaas780da9e2019-02-08 16:05:45 -0600704 dev_info(dev, "Removing from iommu group %d\n", group->id);
Joerg Roedel269aa802015-05-28 18:41:25 +0200705
Alex Williamsond72e31c2012-05-30 14:18:53 -0600706 /* Pre-notify listeners that a device is being removed. */
707 blocking_notifier_call_chain(&group->notifier,
708 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
709
710 mutex_lock(&group->mutex);
711 list_for_each_entry(tmp_device, &group->devices, list) {
712 if (tmp_device->dev == dev) {
713 device = tmp_device;
714 list_del(&device->list);
715 break;
716 }
717 }
718 mutex_unlock(&group->mutex);
719
720 if (!device)
721 return;
722
723 sysfs_remove_link(group->devices_kobj, device->name);
724 sysfs_remove_link(&dev->kobj, "iommu_group");
725
Shuah Khan2e757082013-08-15 11:59:25 -0600726 trace_remove_device_from_group(group->id, dev);
727
Alex Williamsond72e31c2012-05-30 14:18:53 -0600728 kfree(device->name);
729 kfree(device);
730 dev->iommu_group = NULL;
731 kobject_put(group->devices_kobj);
732}
733EXPORT_SYMBOL_GPL(iommu_group_remove_device);
734
Joerg Roedel426a2732015-05-28 18:41:30 +0200735static int iommu_group_device_count(struct iommu_group *group)
736{
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100737 struct group_device *entry;
Joerg Roedel426a2732015-05-28 18:41:30 +0200738 int ret = 0;
739
740 list_for_each_entry(entry, &group->devices, list)
741 ret++;
742
743 return ret;
744}
745
Alex Williamsond72e31c2012-05-30 14:18:53 -0600746/**
747 * iommu_group_for_each_dev - iterate over each device in the group
748 * @group: the group
749 * @data: caller opaque data to be passed to callback function
750 * @fn: caller supplied callback function
751 *
752 * This function is called by group users to iterate over group devices.
753 * Callers should hold a reference count to the group during callback.
754 * The group->mutex is held across callbacks, which will block calls to
755 * iommu_group_add/remove_device.
756 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200757static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
758 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600759{
Joerg Roedelc09e22d2017-02-01 12:19:46 +0100760 struct group_device *device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600761 int ret = 0;
762
Alex Williamsond72e31c2012-05-30 14:18:53 -0600763 list_for_each_entry(device, &group->devices, list) {
764 ret = fn(device->dev, data);
765 if (ret)
766 break;
767 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200768 return ret;
769}
770
771
772int iommu_group_for_each_dev(struct iommu_group *group, void *data,
773 int (*fn)(struct device *, void *))
774{
775 int ret;
776
777 mutex_lock(&group->mutex);
778 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600779 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200780
Alex Williamsond72e31c2012-05-30 14:18:53 -0600781 return ret;
782}
783EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
784
785/**
786 * iommu_group_get - Return the group for a device and increment reference
787 * @dev: get the group that this device belongs to
788 *
789 * This function is called by iommu drivers and users to get the group
790 * for the specified device. If found, the group is returned and the group
791 * reference in incremented, else NULL.
792 */
793struct iommu_group *iommu_group_get(struct device *dev)
794{
795 struct iommu_group *group = dev->iommu_group;
796
797 if (group)
798 kobject_get(group->devices_kobj);
799
800 return group;
801}
802EXPORT_SYMBOL_GPL(iommu_group_get);
803
804/**
Robin Murphy13f59a72016-11-11 17:59:21 +0000805 * iommu_group_ref_get - Increment reference on a group
806 * @group: the group to use, must not be NULL
807 *
808 * This function is called by iommu drivers to take additional references on an
809 * existing group. Returns the given group for convenience.
810 */
811struct iommu_group *iommu_group_ref_get(struct iommu_group *group)
812{
813 kobject_get(group->devices_kobj);
814 return group;
815}
816
817/**
Alex Williamsond72e31c2012-05-30 14:18:53 -0600818 * iommu_group_put - Decrement group reference
819 * @group: the group to use
820 *
821 * This function is called by iommu drivers and users to release the
822 * iommu group. Once the reference count is zero, the group is released.
823 */
824void iommu_group_put(struct iommu_group *group)
825{
826 if (group)
827 kobject_put(group->devices_kobj);
828}
829EXPORT_SYMBOL_GPL(iommu_group_put);
830
831/**
832 * iommu_group_register_notifier - Register a notifier for group changes
833 * @group: the group to watch
834 * @nb: notifier block to signal
835 *
836 * This function allows iommu group users to track changes in a group.
837 * See include/linux/iommu.h for actions sent via this notifier. Caller
838 * should hold a reference to the group throughout notifier registration.
839 */
840int iommu_group_register_notifier(struct iommu_group *group,
841 struct notifier_block *nb)
842{
843 return blocking_notifier_chain_register(&group->notifier, nb);
844}
845EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
846
847/**
848 * iommu_group_unregister_notifier - Unregister a notifier
849 * @group: the group to watch
850 * @nb: notifier block to signal
851 *
852 * Unregister a previously registered group notifier block.
853 */
854int iommu_group_unregister_notifier(struct iommu_group *group,
855 struct notifier_block *nb)
856{
857 return blocking_notifier_chain_unregister(&group->notifier, nb);
858}
859EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
860
861/**
862 * iommu_group_id - Return ID for a group
863 * @group: the group to ID
864 *
865 * Return the unique ID for the group matching the sysfs group number.
866 */
867int iommu_group_id(struct iommu_group *group)
868{
869 return group->id;
870}
871EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400872
Alex Williamsonf096c062014-09-19 10:03:06 -0600873static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
874 unsigned long *devfns);
875
Alex Williamson104a1c12014-07-03 09:51:18 -0600876/*
877 * To consider a PCI device isolated, we require ACS to support Source
878 * Validation, Request Redirection, Completer Redirection, and Upstream
879 * Forwarding. This effectively means that devices cannot spoof their
880 * requester ID, requests and completions cannot be redirected, and all
881 * transactions are forwarded upstream, even as it passes through a
882 * bridge where the target device is downstream.
883 */
884#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
885
Alex Williamsonf096c062014-09-19 10:03:06 -0600886/*
887 * For multifunction devices which are not isolated from each other, find
888 * all the other non-isolated functions and look for existing groups. For
889 * each function, we also need to look for aliases to or from other devices
890 * that may already have a group.
891 */
892static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
893 unsigned long *devfns)
894{
895 struct pci_dev *tmp = NULL;
896 struct iommu_group *group;
897
898 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
899 return NULL;
900
901 for_each_pci_dev(tmp) {
902 if (tmp == pdev || tmp->bus != pdev->bus ||
903 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
904 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
905 continue;
906
907 group = get_pci_alias_group(tmp, devfns);
908 if (group) {
909 pci_dev_put(tmp);
910 return group;
911 }
912 }
913
914 return NULL;
915}
916
917/*
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100918 * Look for aliases to or from the given device for existing groups. DMA
919 * aliases are only supported on the same bus, therefore the search
Alex Williamsonf096c062014-09-19 10:03:06 -0600920 * space is quite small (especially since we're really only looking at pcie
921 * device, and therefore only expect multiple slots on the root complex or
922 * downstream switch ports). It's conceivable though that a pair of
923 * multifunction devices could have aliases between them that would cause a
924 * loop. To prevent this, we use a bitmap to track where we've been.
925 */
926static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
927 unsigned long *devfns)
928{
929 struct pci_dev *tmp = NULL;
930 struct iommu_group *group;
931
932 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
933 return NULL;
934
935 group = iommu_group_get(&pdev->dev);
936 if (group)
937 return group;
938
939 for_each_pci_dev(tmp) {
940 if (tmp == pdev || tmp->bus != pdev->bus)
941 continue;
942
943 /* We alias them or they alias us */
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100944 if (pci_devs_are_dma_aliases(pdev, tmp)) {
Alex Williamsonf096c062014-09-19 10:03:06 -0600945 group = get_pci_alias_group(tmp, devfns);
946 if (group) {
947 pci_dev_put(tmp);
948 return group;
949 }
950
951 group = get_pci_function_alias_group(tmp, devfns);
952 if (group) {
953 pci_dev_put(tmp);
954 return group;
955 }
956 }
957 }
958
959 return NULL;
960}
961
Alex Williamson104a1c12014-07-03 09:51:18 -0600962struct group_for_pci_data {
963 struct pci_dev *pdev;
964 struct iommu_group *group;
965};
966
967/*
968 * DMA alias iterator callback, return the last seen device. Stop and return
969 * the IOMMU group if we find one along the way.
970 */
971static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
972{
973 struct group_for_pci_data *data = opaque;
974
975 data->pdev = pdev;
976 data->group = iommu_group_get(&pdev->dev);
977
978 return data->group != NULL;
979}
980
981/*
Joerg Roedel6eab5562015-10-21 23:51:38 +0200982 * Generic device_group call-back function. It just allocates one
983 * iommu-group per device.
984 */
985struct iommu_group *generic_device_group(struct device *dev)
986{
Joerg Roedel7f7a2302017-06-28 12:45:31 +0200987 return iommu_group_alloc();
Joerg Roedel6eab5562015-10-21 23:51:38 +0200988}
989
990/*
Alex Williamson104a1c12014-07-03 09:51:18 -0600991 * Use standard PCI bus topology, isolation features, and DMA alias quirks
992 * to find or create an IOMMU group for a device.
993 */
Joerg Roedel5e622922015-10-21 23:51:37 +0200994struct iommu_group *pci_device_group(struct device *dev)
Alex Williamson104a1c12014-07-03 09:51:18 -0600995{
Joerg Roedel5e622922015-10-21 23:51:37 +0200996 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600997 struct group_for_pci_data data;
998 struct pci_bus *bus;
999 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -06001000 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -06001001
Joerg Roedel5e622922015-10-21 23:51:37 +02001002 if (WARN_ON(!dev_is_pci(dev)))
1003 return ERR_PTR(-EINVAL);
1004
Alex Williamson104a1c12014-07-03 09:51:18 -06001005 /*
1006 * Find the upstream DMA alias for the device. A device must not
1007 * be aliased due to topology in order to have its own IOMMU group.
1008 * If we find an alias along the way that already belongs to a
1009 * group, use it.
1010 */
1011 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
1012 return data.group;
1013
1014 pdev = data.pdev;
1015
1016 /*
1017 * Continue upstream from the point of minimum IOMMU granularity
1018 * due to aliases to the point where devices are protected from
1019 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
1020 * group, use it.
1021 */
1022 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
1023 if (!bus->self)
1024 continue;
1025
1026 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
1027 break;
1028
1029 pdev = bus->self;
1030
1031 group = iommu_group_get(&pdev->dev);
1032 if (group)
1033 return group;
1034 }
1035
1036 /*
Alex Williamsonf096c062014-09-19 10:03:06 -06001037 * Look for existing groups on device aliases. If we alias another
1038 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -06001039 */
Alex Williamsonf096c062014-09-19 10:03:06 -06001040 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
1041 if (group)
1042 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001043
1044 /*
Alex Williamsonf096c062014-09-19 10:03:06 -06001045 * Look for existing groups on non-isolated functions on the same
1046 * slot and aliases of those funcions, if any. No need to clear
1047 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -06001048 */
Alex Williamsonf096c062014-09-19 10:03:06 -06001049 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
1050 if (group)
1051 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001052
1053 /* No shared group found, allocate new */
Joerg Roedel7f7a2302017-06-28 12:45:31 +02001054 return iommu_group_alloc();
Alex Williamson104a1c12014-07-03 09:51:18 -06001055}
1056
Nipun Guptaeab03e22018-09-10 19:19:18 +05301057/* Get the IOMMU group for device on fsl-mc bus */
1058struct iommu_group *fsl_mc_device_group(struct device *dev)
1059{
1060 struct device *cont_dev = fsl_mc_cont_dev(dev);
1061 struct iommu_group *group;
1062
1063 group = iommu_group_get(cont_dev);
1064 if (!group)
1065 group = iommu_group_alloc();
1066 return group;
1067}
1068
Alex Williamson104a1c12014-07-03 09:51:18 -06001069/**
1070 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
1071 * @dev: target device
1072 *
1073 * This function is intended to be called by IOMMU drivers and extended to
1074 * support common, bus-defined algorithms when determining or creating the
1075 * IOMMU group for a device. On success, the caller will hold a reference
1076 * to the returned IOMMU group, which will already include the provided
1077 * device. The reference should be released with iommu_group_put().
1078 */
1079struct iommu_group *iommu_group_get_for_dev(struct device *dev)
1080{
Joerg Roedel46c6b2b2015-10-21 23:51:36 +02001081 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedelc4a783b2014-08-21 22:32:08 +02001082 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -06001083 int ret;
1084
1085 group = iommu_group_get(dev);
1086 if (group)
1087 return group;
1088
Robin Murphy05f803002017-07-21 13:12:38 +01001089 if (!ops)
1090 return ERR_PTR(-EINVAL);
Joerg Roedelc4a783b2014-08-21 22:32:08 +02001091
Robin Murphy05f803002017-07-21 13:12:38 +01001092 group = ops->device_group(dev);
Joerg Roedel72dcac62017-06-28 12:52:48 +02001093 if (WARN_ON_ONCE(group == NULL))
1094 return ERR_PTR(-EINVAL);
1095
Alex Williamson104a1c12014-07-03 09:51:18 -06001096 if (IS_ERR(group))
1097 return group;
1098
Joerg Roedel12282362015-10-21 23:51:43 +02001099 /*
1100 * Try to allocate a default domain - needs support from the
1101 * IOMMU driver.
1102 */
1103 if (!group->default_domain) {
Will Deaconfccb4e32017-01-05 18:38:26 +00001104 struct iommu_domain *dom;
1105
1106 dom = __iommu_domain_alloc(dev->bus, iommu_def_domain_type);
1107 if (!dom && iommu_def_domain_type != IOMMU_DOMAIN_DMA) {
1108 dev_warn(dev,
1109 "failed to allocate default IOMMU domain of type %u; falling back to IOMMU_DOMAIN_DMA",
1110 iommu_def_domain_type);
1111 dom = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_DMA);
1112 }
1113
1114 group->default_domain = dom;
Joerg Roedeleebb8032016-04-04 15:47:48 +02001115 if (!group->domain)
Will Deaconfccb4e32017-01-05 18:38:26 +00001116 group->domain = dom;
Zhen Lei68a6efe2018-09-20 17:10:23 +01001117
1118 if (dom && !iommu_dma_strict) {
1119 int attr = 1;
1120 iommu_domain_set_attr(dom,
1121 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
1122 &attr);
1123 }
Joerg Roedel12282362015-10-21 23:51:43 +02001124 }
1125
Alex Williamson104a1c12014-07-03 09:51:18 -06001126 ret = iommu_group_add_device(group, dev);
1127 if (ret) {
1128 iommu_group_put(group);
1129 return ERR_PTR(ret);
1130 }
1131
1132 return group;
1133}
1134
Joerg Roedel6827ca82015-05-28 18:41:35 +02001135struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
1136{
1137 return group->default_domain;
1138}
1139
Alex Williamson14604322011-10-21 15:56:05 -04001140static int add_iommu_group(struct device *dev, void *data)
1141{
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001142 int ret = iommu_probe_device(dev);
Joerg Roedel38667f12015-06-29 10:16:08 +02001143
1144 /*
1145 * We ignore -ENODEV errors for now, as they just mean that the
1146 * device is not translated by an IOMMU. We still care about
1147 * other errors and fail to initialize when they happen.
1148 */
1149 if (ret == -ENODEV)
1150 ret = 0;
1151
1152 return ret;
Alex Williamson14604322011-10-21 15:56:05 -04001153}
1154
Joerg Roedel8da30142015-05-28 18:41:27 +02001155static int remove_iommu_group(struct device *dev, void *data)
1156{
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001157 iommu_release_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -04001158
1159 return 0;
1160}
1161
Alex Williamsond72e31c2012-05-30 14:18:53 -06001162static int iommu_bus_notifier(struct notifier_block *nb,
1163 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -04001164{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001165 unsigned long group_action = 0;
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001166 struct device *dev = data;
1167 struct iommu_group *group;
Alex Williamson14604322011-10-21 15:56:05 -04001168
Alex Williamsond72e31c2012-05-30 14:18:53 -06001169 /*
1170 * ADD/DEL call into iommu driver ops if provided, which may
1171 * result in ADD/DEL notifiers to group->notifier
1172 */
1173 if (action == BUS_NOTIFY_ADD_DEVICE) {
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001174 int ret;
zhichang.yuan3ba87752017-04-18 20:51:48 +08001175
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001176 ret = iommu_probe_device(dev);
1177 return (ret) ? NOTIFY_DONE : NOTIFY_OK;
Joerg Roedel843cb6d2015-05-28 18:41:28 +02001178 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Joerg Roedelcc5aed42018-11-30 10:31:59 +01001179 iommu_release_device(dev);
1180 return NOTIFY_OK;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001181 }
Alex Williamson14604322011-10-21 15:56:05 -04001182
Alex Williamsond72e31c2012-05-30 14:18:53 -06001183 /*
1184 * Remaining BUS_NOTIFYs get filtered and republished to the
1185 * group, if anyone is listening
1186 */
1187 group = iommu_group_get(dev);
1188 if (!group)
1189 return 0;
1190
1191 switch (action) {
1192 case BUS_NOTIFY_BIND_DRIVER:
1193 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
1194 break;
1195 case BUS_NOTIFY_BOUND_DRIVER:
1196 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
1197 break;
1198 case BUS_NOTIFY_UNBIND_DRIVER:
1199 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
1200 break;
1201 case BUS_NOTIFY_UNBOUND_DRIVER:
1202 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
1203 break;
1204 }
1205
1206 if (group_action)
1207 blocking_notifier_call_chain(&group->notifier,
1208 group_action, dev);
1209
1210 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -04001211 return 0;
1212}
1213
Mark Salterfb3e3062014-09-21 13:58:24 -04001214static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001215{
Mark Salterfb3e3062014-09-21 13:58:24 -04001216 int err;
1217 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +02001218 struct iommu_callback_data cb = {
1219 .ops = ops,
1220 };
1221
Mark Salterfb3e3062014-09-21 13:58:24 -04001222 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
1223 if (!nb)
1224 return -ENOMEM;
1225
1226 nb->notifier_call = iommu_bus_notifier;
1227
1228 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +02001229 if (err)
1230 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001231
1232 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +02001233 if (err)
1234 goto out_err;
1235
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001236
1237 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +02001238
1239out_err:
1240 /* Clean up */
1241 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
1242 bus_unregister_notifier(bus, nb);
1243
1244out_free:
1245 kfree(nb);
1246
1247 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001248}
1249
Joerg Roedelff217762011-08-26 16:48:26 +02001250/**
1251 * bus_set_iommu - set iommu-callbacks for the bus
1252 * @bus: bus.
1253 * @ops: the callbacks provided by the iommu-driver
1254 *
1255 * This function is called by an iommu driver to set the iommu methods
1256 * used for a particular bus. Drivers for devices on that bus can use
1257 * the iommu-api after these ops are registered.
1258 * This special function is needed because IOMMUs are usually devices on
1259 * the bus itself, so the iommu drivers are not initialized when the bus
1260 * is set up. With this function the iommu-driver can set the iommu-ops
1261 * afterwards.
1262 */
Thierry Redingb22f6432014-06-27 09:03:12 +02001263int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001264{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001265 int err;
1266
Joerg Roedelff217762011-08-26 16:48:26 +02001267 if (bus->iommu_ops != NULL)
1268 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001269
Joerg Roedelff217762011-08-26 16:48:26 +02001270 bus->iommu_ops = ops;
1271
1272 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001273 err = iommu_bus_init(bus, ops);
1274 if (err)
1275 bus->iommu_ops = NULL;
1276
1277 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001278}
Joerg Roedelff217762011-08-26 16:48:26 +02001279EXPORT_SYMBOL_GPL(bus_set_iommu);
1280
Joerg Roedela1b60c12011-09-06 18:46:34 +02001281bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001282{
Joerg Roedel94441c32011-09-06 18:58:54 +02001283 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001284}
Joerg Roedela1b60c12011-09-06 18:46:34 +02001285EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001286
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +02001287bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1288{
1289 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1290 return false;
1291
1292 return bus->iommu_ops->capable(cap);
1293}
1294EXPORT_SYMBOL_GPL(iommu_capable);
1295
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001296/**
1297 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1298 * @domain: iommu domain
1299 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001300 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -04001301 *
1302 * This function should be used by IOMMU users which want to be notified
1303 * whenever an IOMMU fault happens.
1304 *
1305 * The fault handler itself should return 0 on success, and an appropriate
1306 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001307 */
1308void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001309 iommu_fault_handler_t handler,
1310 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001311{
1312 BUG_ON(!domain);
1313
1314 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001315 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001316}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -04001317EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001318
Joerg Roedel53723dc2015-05-28 18:41:29 +02001319static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1320 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001321{
1322 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001323
Joerg Roedel94441c32011-09-06 18:58:54 +02001324 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +02001325 return NULL;
1326
Joerg Roedel53723dc2015-05-28 18:41:29 +02001327 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001328 if (!domain)
1329 return NULL;
1330
Joerg Roedel8539c7c2015-03-26 13:43:05 +01001331 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +02001332 domain->type = type;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001333 /* Assume all sizes by default; the driver may override this later */
1334 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
Joerg Roedel905d66c2011-09-06 16:03:26 +02001335
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001336 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001337}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001338
Joerg Roedel53723dc2015-05-28 18:41:29 +02001339struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1340{
1341 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001342}
1343EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1344
1345void iommu_domain_free(struct iommu_domain *domain)
1346{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001347 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001348}
1349EXPORT_SYMBOL_GPL(iommu_domain_free);
1350
Joerg Roedel426a2732015-05-28 18:41:30 +02001351static int __iommu_attach_device(struct iommu_domain *domain,
1352 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001353{
Shuah Khanb54db772013-08-15 11:59:26 -06001354 int ret;
Baoquan Hee01d1912017-08-09 16:33:40 +08001355 if ((domain->ops->is_attach_deferred != NULL) &&
1356 domain->ops->is_attach_deferred(domain, dev))
1357 return 0;
1358
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001359 if (unlikely(domain->ops->attach_dev == NULL))
1360 return -ENODEV;
1361
Shuah Khanb54db772013-08-15 11:59:26 -06001362 ret = domain->ops->attach_dev(domain, dev);
1363 if (!ret)
1364 trace_attach_device_to_domain(dev);
1365 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001366}
Joerg Roedel426a2732015-05-28 18:41:30 +02001367
1368int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1369{
1370 struct iommu_group *group;
1371 int ret;
1372
1373 group = iommu_group_get(dev);
Jordan Crouse9ae9df02017-12-20 09:48:36 -07001374 if (!group)
1375 return -ENODEV;
1376
Joerg Roedel426a2732015-05-28 18:41:30 +02001377 /*
Robin Murphy05f803002017-07-21 13:12:38 +01001378 * Lock the group to make sure the device-count doesn't
Joerg Roedel426a2732015-05-28 18:41:30 +02001379 * change while we are attaching
1380 */
1381 mutex_lock(&group->mutex);
1382 ret = -EINVAL;
1383 if (iommu_group_device_count(group) != 1)
1384 goto out_unlock;
1385
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001386 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001387
1388out_unlock:
1389 mutex_unlock(&group->mutex);
1390 iommu_group_put(group);
1391
1392 return ret;
1393}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001394EXPORT_SYMBOL_GPL(iommu_attach_device);
1395
Joerg Roedel426a2732015-05-28 18:41:30 +02001396static void __iommu_detach_device(struct iommu_domain *domain,
1397 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001398{
Baoquan Hee01d1912017-08-09 16:33:40 +08001399 if ((domain->ops->is_attach_deferred != NULL) &&
1400 domain->ops->is_attach_deferred(domain, dev))
1401 return;
1402
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001403 if (unlikely(domain->ops->detach_dev == NULL))
1404 return;
1405
1406 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001407 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001408}
Joerg Roedel426a2732015-05-28 18:41:30 +02001409
1410void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1411{
1412 struct iommu_group *group;
1413
1414 group = iommu_group_get(dev);
Jordan Crouse9ae9df02017-12-20 09:48:36 -07001415 if (!group)
1416 return;
Joerg Roedel426a2732015-05-28 18:41:30 +02001417
1418 mutex_lock(&group->mutex);
1419 if (iommu_group_device_count(group) != 1) {
1420 WARN_ON(1);
1421 goto out_unlock;
1422 }
1423
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001424 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001425
1426out_unlock:
1427 mutex_unlock(&group->mutex);
1428 iommu_group_put(group);
1429}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001430EXPORT_SYMBOL_GPL(iommu_detach_device);
1431
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001432struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1433{
1434 struct iommu_domain *domain;
1435 struct iommu_group *group;
1436
1437 group = iommu_group_get(dev);
Robin Murphy1464d0b2017-08-17 11:40:08 +01001438 if (!group)
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001439 return NULL;
1440
1441 domain = group->domain;
1442
1443 iommu_group_put(group);
1444
1445 return domain;
1446}
1447EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1448
Alex Williamsond72e31c2012-05-30 14:18:53 -06001449/*
Robin Murphy6af588f2018-09-12 16:24:12 +01001450 * For IOMMU_DOMAIN_DMA implementations which already provide their own
1451 * guarantees that the group and its default domain are valid and correct.
1452 */
1453struct iommu_domain *iommu_get_dma_domain(struct device *dev)
1454{
1455 return dev->iommu_group->default_domain;
1456}
1457
1458/*
Rami Rosen35449ad2018-09-18 17:38:49 +03001459 * IOMMU groups are really the natural working unit of the IOMMU, but
Alex Williamsond72e31c2012-05-30 14:18:53 -06001460 * the IOMMU API works on domains and devices. Bridge that gap by
1461 * iterating over the devices in a group. Ideally we'd have a single
1462 * device which represents the requestor ID of the group, but we also
1463 * allow IOMMU drivers to create policy defined minimum sets, where
1464 * the physical hardware may be able to distiguish members, but we
1465 * wish to group them at a higher level (ex. untrusted multi-function
1466 * PCI devices). Thus we attach each device.
1467 */
1468static int iommu_group_do_attach_device(struct device *dev, void *data)
1469{
1470 struct iommu_domain *domain = data;
1471
Joerg Roedel426a2732015-05-28 18:41:30 +02001472 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001473}
1474
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001475static int __iommu_attach_group(struct iommu_domain *domain,
1476 struct iommu_group *group)
1477{
1478 int ret;
1479
1480 if (group->default_domain && group->domain != group->default_domain)
1481 return -EBUSY;
1482
1483 ret = __iommu_group_for_each_dev(group, domain,
1484 iommu_group_do_attach_device);
1485 if (ret == 0)
1486 group->domain = domain;
1487
1488 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001489}
1490
1491int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1492{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001493 int ret;
1494
1495 mutex_lock(&group->mutex);
1496 ret = __iommu_attach_group(domain, group);
1497 mutex_unlock(&group->mutex);
1498
1499 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001500}
1501EXPORT_SYMBOL_GPL(iommu_attach_group);
1502
1503static int iommu_group_do_detach_device(struct device *dev, void *data)
1504{
1505 struct iommu_domain *domain = data;
1506
Joerg Roedel426a2732015-05-28 18:41:30 +02001507 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001508
1509 return 0;
1510}
1511
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001512static void __iommu_detach_group(struct iommu_domain *domain,
1513 struct iommu_group *group)
1514{
1515 int ret;
1516
1517 if (!group->default_domain) {
1518 __iommu_group_for_each_dev(group, domain,
1519 iommu_group_do_detach_device);
1520 group->domain = NULL;
1521 return;
1522 }
1523
1524 if (group->domain == group->default_domain)
1525 return;
1526
1527 /* Detach by re-attaching to the default domain */
1528 ret = __iommu_group_for_each_dev(group, group->default_domain,
1529 iommu_group_do_attach_device);
1530 if (ret != 0)
1531 WARN_ON(1);
1532 else
1533 group->domain = group->default_domain;
1534}
1535
Alex Williamsond72e31c2012-05-30 14:18:53 -06001536void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1537{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001538 mutex_lock(&group->mutex);
1539 __iommu_detach_group(domain, group);
1540 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001541}
1542EXPORT_SYMBOL_GPL(iommu_detach_group);
1543
Varun Sethibb5547a2013-03-29 01:23:58 +05301544phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001545{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001546 if (unlikely(domain->ops->iova_to_phys == NULL))
1547 return 0;
1548
1549 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001550}
1551EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001552
Alex Williamsonbd139692013-06-17 19:57:34 -06001553static size_t iommu_pgsize(struct iommu_domain *domain,
1554 unsigned long addr_merge, size_t size)
1555{
1556 unsigned int pgsize_idx;
1557 size_t pgsize;
1558
1559 /* Max page size that still fits into 'size' */
1560 pgsize_idx = __fls(size);
1561
1562 /* need to consider alignment requirements ? */
1563 if (likely(addr_merge)) {
1564 /* Max page size allowed by address */
1565 unsigned int align_pgsize_idx = __ffs(addr_merge);
1566 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1567 }
1568
1569 /* build a mask of acceptable page sizes */
1570 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1571
1572 /* throw away page sizes not supported by the hardware */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001573 pgsize &= domain->pgsize_bitmap;
Alex Williamsonbd139692013-06-17 19:57:34 -06001574
1575 /* make sure we're still sane */
1576 BUG_ON(!pgsize);
1577
1578 /* pick the biggest page */
1579 pgsize_idx = __fls(pgsize);
1580 pgsize = 1UL << pgsize_idx;
1581
1582 return pgsize;
1583}
1584
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001585int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001586 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001587{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001588 unsigned long orig_iova = iova;
1589 unsigned int min_pagesz;
1590 size_t orig_size = size;
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001591 phys_addr_t orig_paddr = paddr;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001592 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001593
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001594 if (unlikely(domain->ops->map == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001595 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001596 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001597
Joerg Roedela10315e2015-03-26 13:43:06 +01001598 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1599 return -EINVAL;
1600
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001601 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001602 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001603
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001604 /*
1605 * both the virtual address and the physical one, as well as
1606 * the size of the mapping, must be aligned (at least) to the
1607 * size of the smallest page supported by the hardware
1608 */
1609 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001610 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001611 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001612 return -EINVAL;
1613 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001614
Fabio Estevamabedb042013-08-22 10:25:42 -03001615 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001616
1617 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001618 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001619
Fabio Estevamabedb042013-08-22 10:25:42 -03001620 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001621 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001622
1623 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1624 if (ret)
1625 break;
1626
1627 iova += pgsize;
1628 paddr += pgsize;
1629 size -= pgsize;
1630 }
1631
1632 /* unroll mapping in case something went wrong */
1633 if (ret)
1634 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001635 else
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001636 trace_map(orig_iova, orig_paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001637
1638 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001639}
1640EXPORT_SYMBOL_GPL(iommu_map);
1641
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001642static size_t __iommu_unmap(struct iommu_domain *domain,
1643 unsigned long iova, size_t size,
1644 bool sync)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001645{
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001646 const struct iommu_ops *ops = domain->ops;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001647 size_t unmapped_page, unmapped = 0;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001648 unsigned long orig_iova = iova;
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001649 unsigned int min_pagesz;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001650
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001651 if (unlikely(ops->unmap == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001652 domain->pgsize_bitmap == 0UL))
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001653 return 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001654
Joerg Roedela10315e2015-03-26 13:43:06 +01001655 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001656 return 0;
Joerg Roedela10315e2015-03-26 13:43:06 +01001657
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001658 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001659 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001660
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001661 /*
1662 * The virtual address, as well as the size of the mapping, must be
1663 * aligned (at least) to the size of the smallest page supported
1664 * by the hardware
1665 */
1666 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001667 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1668 iova, size, min_pagesz);
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -05001669 return 0;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001670 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001671
Joe Perches6197ca82013-06-23 12:29:04 -07001672 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001673
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001674 /*
1675 * Keep iterating until we either unmap 'size' bytes (or more)
1676 * or we hit an area that isn't mapped.
1677 */
1678 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001679 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001680
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001681 unmapped_page = ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001682 if (!unmapped_page)
1683 break;
1684
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001685 if (sync && ops->iotlb_range_add)
1686 ops->iotlb_range_add(domain, iova, pgsize);
1687
Joe Perches6197ca82013-06-23 12:29:04 -07001688 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1689 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001690
1691 iova += unmapped_page;
1692 unmapped += unmapped_page;
1693 }
1694
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001695 if (sync && ops->iotlb_sync)
1696 ops->iotlb_sync(domain);
1697
Shuah Khandb8614d2015-01-16 20:53:17 -07001698 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001699 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001700}
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001701
1702size_t iommu_unmap(struct iommu_domain *domain,
1703 unsigned long iova, size_t size)
1704{
1705 return __iommu_unmap(domain, iova, size, true);
1706}
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001707EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001708
Joerg Roedeladd02cfd2017-08-23 15:50:04 +02001709size_t iommu_unmap_fast(struct iommu_domain *domain,
1710 unsigned long iova, size_t size)
1711{
1712 return __iommu_unmap(domain, iova, size, false);
1713}
1714EXPORT_SYMBOL_GPL(iommu_unmap_fast);
1715
Christoph Hellwigd88e61f2018-07-30 09:36:26 +02001716size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1717 struct scatterlist *sg, unsigned int nents, int prot)
Olav Haugan315786e2014-10-25 09:55:16 -07001718{
Robin Murphy5d95f402018-10-11 16:56:42 +01001719 size_t len = 0, mapped = 0;
1720 phys_addr_t start;
1721 unsigned int i = 0;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001722 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001723
Robin Murphy5d95f402018-10-11 16:56:42 +01001724 while (i <= nents) {
1725 phys_addr_t s_phys = sg_phys(sg);
Olav Haugan315786e2014-10-25 09:55:16 -07001726
Robin Murphy5d95f402018-10-11 16:56:42 +01001727 if (len && s_phys != start + len) {
1728 ret = iommu_map(domain, iova + mapped, start, len, prot);
1729 if (ret)
1730 goto out_err;
Robin Murphy18f23402014-11-25 17:50:55 +00001731
Robin Murphy5d95f402018-10-11 16:56:42 +01001732 mapped += len;
1733 len = 0;
1734 }
Robin Murphy18f23402014-11-25 17:50:55 +00001735
Robin Murphy5d95f402018-10-11 16:56:42 +01001736 if (len) {
1737 len += sg->length;
1738 } else {
1739 len = sg->length;
1740 start = s_phys;
1741 }
Joerg Roedel38ec0102014-11-04 14:53:51 +01001742
Robin Murphy5d95f402018-10-11 16:56:42 +01001743 if (++i < nents)
1744 sg = sg_next(sg);
Olav Haugan315786e2014-10-25 09:55:16 -07001745 }
1746
1747 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001748
1749out_err:
1750 /* undo mappings already done */
1751 iommu_unmap(domain, iova, mapped);
1752
1753 return 0;
1754
Olav Haugan315786e2014-10-25 09:55:16 -07001755}
Christoph Hellwigd88e61f2018-07-30 09:36:26 +02001756EXPORT_SYMBOL_GPL(iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001757
1758int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301759 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001760{
1761 if (unlikely(domain->ops->domain_window_enable == NULL))
1762 return -ENODEV;
1763
Varun Sethi80f97f02013-03-29 01:24:00 +05301764 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1765 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001766}
1767EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1768
1769void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1770{
1771 if (unlikely(domain->ops->domain_window_disable == NULL))
1772 return;
1773
1774 return domain->ops->domain_window_disable(domain, wnd_nr);
1775}
1776EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1777
Joerg Roedel207c6e32017-04-26 15:39:28 +02001778/**
1779 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
1780 * @domain: the iommu domain where the fault has happened
1781 * @dev: the device where the fault has happened
1782 * @iova: the faulting address
1783 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
1784 *
1785 * This function should be called by the low-level IOMMU implementations
1786 * whenever IOMMU faults happen, to allow high-level users, that are
1787 * interested in such events, to know about them.
1788 *
1789 * This event may be useful for several possible use cases:
1790 * - mere logging of the event
1791 * - dynamic TLB/PTE loading
1792 * - if restarting of the faulting device is required
1793 *
1794 * Returns 0 on success and an appropriate error code otherwise (if dynamic
1795 * PTE/TLB loading will one day be supported, implementations will be able
1796 * to tell whether it succeeded or not according to this return value).
1797 *
1798 * Specifically, -ENOSYS is returned if a fault handler isn't installed
1799 * (though fault handlers can also return -ENOSYS, in case they want to
1800 * elicit the default behavior of the IOMMU drivers).
1801 */
1802int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
1803 unsigned long iova, int flags)
1804{
1805 int ret = -ENOSYS;
1806
1807 /*
1808 * if upper layers showed interest and installed a fault handler,
1809 * invoke it.
1810 */
1811 if (domain->handler)
1812 ret = domain->handler(domain, dev, iova, flags,
1813 domain->handler_token);
1814
1815 trace_io_page_fault(dev, iova, flags);
1816 return ret;
1817}
1818EXPORT_SYMBOL_GPL(report_iommu_fault);
1819
Alex Williamsond72e31c2012-05-30 14:18:53 -06001820static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001821{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001822 iommu_group_kset = kset_create_and_add("iommu_groups",
1823 NULL, kernel_kobj);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001824 BUG_ON(!iommu_group_kset);
1825
Gary R Hookbad614b2018-06-12 16:41:21 -05001826 iommu_debugfs_setup();
1827
Alex Williamsond72e31c2012-05-30 14:18:53 -06001828 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001829}
Marek Szyprowskid7ef9992015-05-19 15:20:23 +02001830core_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001831
1832int iommu_domain_get_attr(struct iommu_domain *domain,
1833 enum iommu_attr attr, void *data)
1834{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001835 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001836 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001837 int ret = 0;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001838
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001839 switch (attr) {
1840 case DOMAIN_ATTR_GEOMETRY:
1841 geometry = data;
1842 *geometry = domain->geometry;
1843
1844 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001845 case DOMAIN_ATTR_PAGING:
1846 paging = data;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001847 *paging = (domain->pgsize_bitmap != 0UL);
Joerg Roedeld2e12162013-01-29 13:49:04 +01001848 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001849 default:
1850 if (!domain->ops->domain_get_attr)
1851 return -EINVAL;
1852
1853 ret = domain->ops->domain_get_attr(domain, attr, data);
1854 }
1855
1856 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001857}
1858EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1859
1860int iommu_domain_set_attr(struct iommu_domain *domain,
1861 enum iommu_attr attr, void *data)
1862{
Joerg Roedel69356712013-02-04 14:00:01 +01001863 int ret = 0;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001864
Joerg Roedel69356712013-02-04 14:00:01 +01001865 switch (attr) {
Joerg Roedel69356712013-02-04 14:00:01 +01001866 default:
1867 if (domain->ops->domain_set_attr == NULL)
1868 return -EINVAL;
1869
1870 ret = domain->ops->domain_set_attr(domain, attr, data);
1871 }
1872
1873 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001874}
1875EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02001876
Eric Augere5b52342017-01-19 20:57:47 +00001877void iommu_get_resv_regions(struct device *dev, struct list_head *list)
Joerg Roedela1015c22015-05-28 18:41:33 +02001878{
1879 const struct iommu_ops *ops = dev->bus->iommu_ops;
1880
Eric Augere5b52342017-01-19 20:57:47 +00001881 if (ops && ops->get_resv_regions)
1882 ops->get_resv_regions(dev, list);
Joerg Roedela1015c22015-05-28 18:41:33 +02001883}
1884
Eric Augere5b52342017-01-19 20:57:47 +00001885void iommu_put_resv_regions(struct device *dev, struct list_head *list)
Joerg Roedela1015c22015-05-28 18:41:33 +02001886{
1887 const struct iommu_ops *ops = dev->bus->iommu_ops;
1888
Eric Augere5b52342017-01-19 20:57:47 +00001889 if (ops && ops->put_resv_regions)
1890 ops->put_resv_regions(dev, list);
Joerg Roedela1015c22015-05-28 18:41:33 +02001891}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001892
Eric Auger2b20cbb2017-01-19 20:57:49 +00001893struct iommu_resv_region *iommu_alloc_resv_region(phys_addr_t start,
Robin Murphy9d3a4de2017-03-16 17:00:16 +00001894 size_t length, int prot,
1895 enum iommu_resv_type type)
Eric Auger2b20cbb2017-01-19 20:57:49 +00001896{
1897 struct iommu_resv_region *region;
1898
1899 region = kzalloc(sizeof(*region), GFP_KERNEL);
1900 if (!region)
1901 return NULL;
1902
1903 INIT_LIST_HEAD(&region->list);
1904 region->start = start;
1905 region->length = length;
1906 region->prot = prot;
1907 region->type = type;
1908 return region;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001909}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001910
1911/* Request that a device is direct mapped by the IOMMU */
1912int iommu_request_dm_for_dev(struct device *dev)
1913{
1914 struct iommu_domain *dm_domain;
1915 struct iommu_group *group;
1916 int ret;
1917
1918 /* Device must already be in a group before calling this function */
1919 group = iommu_group_get_for_dev(dev);
Dan Carpenter409e5532015-06-10 13:59:27 +03001920 if (IS_ERR(group))
1921 return PTR_ERR(group);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001922
1923 mutex_lock(&group->mutex);
1924
1925 /* Check if the default domain is already direct mapped */
1926 ret = 0;
1927 if (group->default_domain &&
1928 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1929 goto out;
1930
1931 /* Don't change mappings of existing devices */
1932 ret = -EBUSY;
1933 if (iommu_group_device_count(group) != 1)
1934 goto out;
1935
1936 /* Allocate a direct mapped domain */
1937 ret = -ENOMEM;
1938 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1939 if (!dm_domain)
1940 goto out;
1941
1942 /* Attach the device to the domain */
1943 ret = __iommu_attach_group(dm_domain, group);
1944 if (ret) {
1945 iommu_domain_free(dm_domain);
1946 goto out;
1947 }
1948
1949 /* Make the direct mapped domain the default for this group */
1950 if (group->default_domain)
1951 iommu_domain_free(group->default_domain);
1952 group->default_domain = dm_domain;
1953
Bjorn Helgaas780da9e2019-02-08 16:05:45 -06001954 dev_info(dev, "Using iommu direct mapping\n");
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001955
1956 ret = 0;
1957out:
1958 mutex_unlock(&group->mutex);
1959 iommu_group_put(group);
1960
1961 return ret;
1962}
Robin Murphy57f98d22016-09-13 10:54:14 +01001963
Joerg Roedel534766d2017-01-31 16:58:42 +01001964const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001965{
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001966 const struct iommu_ops *ops = NULL;
Joerg Roedeld0f6f582017-02-02 12:19:12 +01001967 struct iommu_device *iommu;
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001968
Joerg Roedeld0f6f582017-02-02 12:19:12 +01001969 spin_lock(&iommu_device_lock);
1970 list_for_each_entry(iommu, &iommu_device_list, list)
1971 if (iommu->fwnode == fwnode) {
1972 ops = iommu->ops;
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001973 break;
1974 }
Joerg Roedeld0f6f582017-02-02 12:19:12 +01001975 spin_unlock(&iommu_device_lock);
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001976 return ops;
1977}
1978
Robin Murphy57f98d22016-09-13 10:54:14 +01001979int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
1980 const struct iommu_ops *ops)
1981{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01001982 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01001983
1984 if (fwspec)
1985 return ops == fwspec->ops ? 0 : -EINVAL;
1986
1987 fwspec = kzalloc(sizeof(*fwspec), GFP_KERNEL);
1988 if (!fwspec)
1989 return -ENOMEM;
1990
1991 of_node_get(to_of_node(iommu_fwnode));
1992 fwspec->iommu_fwnode = iommu_fwnode;
1993 fwspec->ops = ops;
Joerg Roedelb4ef7252018-11-28 13:35:24 +01001994 dev_iommu_fwspec_set(dev, fwspec);
Robin Murphy57f98d22016-09-13 10:54:14 +01001995 return 0;
1996}
1997EXPORT_SYMBOL_GPL(iommu_fwspec_init);
1998
1999void iommu_fwspec_free(struct device *dev)
2000{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002001 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01002002
2003 if (fwspec) {
2004 fwnode_handle_put(fwspec->iommu_fwnode);
2005 kfree(fwspec);
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002006 dev_iommu_fwspec_set(dev, NULL);
Robin Murphy57f98d22016-09-13 10:54:14 +01002007 }
2008}
2009EXPORT_SYMBOL_GPL(iommu_fwspec_free);
2010
2011int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids)
2012{
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002013 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
Robin Murphy57f98d22016-09-13 10:54:14 +01002014 size_t size;
2015 int i;
2016
2017 if (!fwspec)
2018 return -EINVAL;
2019
2020 size = offsetof(struct iommu_fwspec, ids[fwspec->num_ids + num_ids]);
2021 if (size > sizeof(*fwspec)) {
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002022 fwspec = krealloc(fwspec, size, GFP_KERNEL);
Robin Murphy57f98d22016-09-13 10:54:14 +01002023 if (!fwspec)
2024 return -ENOMEM;
Zhen Lei909111b2017-02-03 17:35:02 +08002025
Joerg Roedelb4ef7252018-11-28 13:35:24 +01002026 dev_iommu_fwspec_set(dev, fwspec);
Robin Murphy57f98d22016-09-13 10:54:14 +01002027 }
2028
2029 for (i = 0; i < num_ids; i++)
2030 fwspec->ids[fwspec->num_ids + i] = ids[i];
2031
2032 fwspec->num_ids += num_ids;
Robin Murphy57f98d22016-09-13 10:54:14 +01002033 return 0;
2034}
2035EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids);