blob: 4d3c4a82af03f574423abdb383a44f716f68d4ac [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>
Andrew Morton60db4022009-05-06 16:03:07 -070025#include <linux/module.h>
26#include <linux/slab.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010027#include <linux/errno.h>
28#include <linux/iommu.h>
Alex Williamsond72e31c2012-05-30 14:18:53 -060029#include <linux/idr.h>
30#include <linux/notifier.h>
31#include <linux/err.h>
Alex Williamson104a1c12014-07-03 09:51:18 -060032#include <linux/pci.h>
Alex Williamsonf096c062014-09-19 10:03:06 -060033#include <linux/bitops.h>
Shuah Khan7f6db172013-08-15 11:59:23 -060034#include <trace/events/iommu.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010035
Alex Williamsond72e31c2012-05-30 14:18:53 -060036static struct kset *iommu_group_kset;
Heiner Kallweite38d1f12016-06-28 20:38:36 +020037static DEFINE_IDA(iommu_group_ida);
Alex Williamsond72e31c2012-05-30 14:18:53 -060038
Thierry Redingb22f6432014-06-27 09:03:12 +020039struct iommu_callback_data {
40 const struct iommu_ops *ops;
41};
42
Alex Williamsond72e31c2012-05-30 14:18:53 -060043struct iommu_group {
44 struct kobject kobj;
45 struct kobject *devices_kobj;
46 struct list_head devices;
47 struct mutex mutex;
48 struct blocking_notifier_head notifier;
49 void *iommu_data;
50 void (*iommu_data_release)(void *iommu_data);
51 char *name;
52 int id;
Joerg Roedel53723dc2015-05-28 18:41:29 +020053 struct iommu_domain *default_domain;
Joerg Roedele39cb8a2015-05-28 18:41:31 +020054 struct iommu_domain *domain;
Alex Williamsond72e31c2012-05-30 14:18:53 -060055};
56
57struct iommu_device {
58 struct list_head list;
59 struct device *dev;
60 char *name;
61};
62
63struct iommu_group_attribute {
64 struct attribute attr;
65 ssize_t (*show)(struct iommu_group *group, char *buf);
66 ssize_t (*store)(struct iommu_group *group,
67 const char *buf, size_t count);
68};
69
70#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
71struct iommu_group_attribute iommu_group_attr_##_name = \
72 __ATTR(_name, _mode, _show, _store)
73
74#define to_iommu_group_attr(_attr) \
75 container_of(_attr, struct iommu_group_attribute, attr)
76#define to_iommu_group(_kobj) \
77 container_of(_kobj, struct iommu_group, kobj)
78
Joerg Roedel53723dc2015-05-28 18:41:29 +020079static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
80 unsigned type);
Joerg Roedele39cb8a2015-05-28 18:41:31 +020081static int __iommu_attach_device(struct iommu_domain *domain,
82 struct device *dev);
83static int __iommu_attach_group(struct iommu_domain *domain,
84 struct iommu_group *group);
85static void __iommu_detach_group(struct iommu_domain *domain,
86 struct iommu_group *group);
Joerg Roedel53723dc2015-05-28 18:41:29 +020087
Alex Williamsond72e31c2012-05-30 14:18:53 -060088static ssize_t iommu_group_attr_show(struct kobject *kobj,
89 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -040090{
Alex Williamsond72e31c2012-05-30 14:18:53 -060091 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
92 struct iommu_group *group = to_iommu_group(kobj);
93 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -040094
Alex Williamsond72e31c2012-05-30 14:18:53 -060095 if (attr->show)
96 ret = attr->show(group, buf);
97 return ret;
Alex Williamson14604322011-10-21 15:56:05 -040098}
Alex Williamsond72e31c2012-05-30 14:18:53 -060099
100static ssize_t iommu_group_attr_store(struct kobject *kobj,
101 struct attribute *__attr,
102 const char *buf, size_t count)
103{
104 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
105 struct iommu_group *group = to_iommu_group(kobj);
106 ssize_t ret = -EIO;
107
108 if (attr->store)
109 ret = attr->store(group, buf, count);
110 return ret;
111}
112
113static const struct sysfs_ops iommu_group_sysfs_ops = {
114 .show = iommu_group_attr_show,
115 .store = iommu_group_attr_store,
116};
117
118static int iommu_group_create_file(struct iommu_group *group,
119 struct iommu_group_attribute *attr)
120{
121 return sysfs_create_file(&group->kobj, &attr->attr);
122}
123
124static void iommu_group_remove_file(struct iommu_group *group,
125 struct iommu_group_attribute *attr)
126{
127 sysfs_remove_file(&group->kobj, &attr->attr);
128}
129
130static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
131{
132 return sprintf(buf, "%s\n", group->name);
133}
134
135static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
136
137static void iommu_group_release(struct kobject *kobj)
138{
139 struct iommu_group *group = to_iommu_group(kobj);
140
Joerg Roedel269aa802015-05-28 18:41:25 +0200141 pr_debug("Releasing group %d\n", group->id);
142
Alex Williamsond72e31c2012-05-30 14:18:53 -0600143 if (group->iommu_data_release)
144 group->iommu_data_release(group->iommu_data);
145
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200146 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600147
Joerg Roedel53723dc2015-05-28 18:41:29 +0200148 if (group->default_domain)
149 iommu_domain_free(group->default_domain);
150
Alex Williamsond72e31c2012-05-30 14:18:53 -0600151 kfree(group->name);
152 kfree(group);
153}
154
155static struct kobj_type iommu_group_ktype = {
156 .sysfs_ops = &iommu_group_sysfs_ops,
157 .release = iommu_group_release,
158};
159
160/**
161 * iommu_group_alloc - Allocate a new group
162 * @name: Optional name to associate with group, visible in sysfs
163 *
164 * This function is called by an iommu driver to allocate a new iommu
165 * group. The iommu group represents the minimum granularity of the iommu.
166 * Upon successful return, the caller holds a reference to the supplied
167 * group in order to hold the group until devices are added. Use
168 * iommu_group_put() to release this extra reference count, allowing the
169 * group to be automatically reclaimed once it has no devices or external
170 * references.
171 */
172struct iommu_group *iommu_group_alloc(void)
173{
174 struct iommu_group *group;
175 int ret;
176
177 group = kzalloc(sizeof(*group), GFP_KERNEL);
178 if (!group)
179 return ERR_PTR(-ENOMEM);
180
181 group->kobj.kset = iommu_group_kset;
182 mutex_init(&group->mutex);
183 INIT_LIST_HEAD(&group->devices);
184 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
185
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200186 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
187 if (ret < 0) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600188 kfree(group);
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200189 return ERR_PTR(ret);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600190 }
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200191 group->id = ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600192
193 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
194 NULL, "%d", group->id);
195 if (ret) {
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200196 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600197 kfree(group);
198 return ERR_PTR(ret);
199 }
200
201 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
202 if (!group->devices_kobj) {
203 kobject_put(&group->kobj); /* triggers .release & free */
204 return ERR_PTR(-ENOMEM);
205 }
206
207 /*
208 * The devices_kobj holds a reference on the group kobject, so
209 * as long as that exists so will the group. We can therefore
210 * use the devices_kobj for reference counting.
211 */
212 kobject_put(&group->kobj);
213
Joerg Roedel269aa802015-05-28 18:41:25 +0200214 pr_debug("Allocated group %d\n", group->id);
215
Alex Williamsond72e31c2012-05-30 14:18:53 -0600216 return group;
217}
218EXPORT_SYMBOL_GPL(iommu_group_alloc);
219
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100220struct iommu_group *iommu_group_get_by_id(int id)
221{
222 struct kobject *group_kobj;
223 struct iommu_group *group;
224 const char *name;
225
226 if (!iommu_group_kset)
227 return NULL;
228
229 name = kasprintf(GFP_KERNEL, "%d", id);
230 if (!name)
231 return NULL;
232
233 group_kobj = kset_find_obj(iommu_group_kset, name);
234 kfree(name);
235
236 if (!group_kobj)
237 return NULL;
238
239 group = container_of(group_kobj, struct iommu_group, kobj);
240 BUG_ON(group->id != id);
241
242 kobject_get(group->devices_kobj);
243 kobject_put(&group->kobj);
244
245 return group;
246}
247EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
248
Alex Williamsond72e31c2012-05-30 14:18:53 -0600249/**
250 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
251 * @group: the group
252 *
253 * iommu drivers can store data in the group for use when doing iommu
254 * operations. This function provides a way to retrieve it. Caller
255 * should hold a group reference.
256 */
257void *iommu_group_get_iommudata(struct iommu_group *group)
258{
259 return group->iommu_data;
260}
261EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
262
263/**
264 * iommu_group_set_iommudata - set iommu_data for a group
265 * @group: the group
266 * @iommu_data: new data
267 * @release: release function for iommu_data
268 *
269 * iommu drivers can store data in the group for use when doing iommu
270 * operations. This function provides a way to set the data after
271 * the group has been allocated. Caller should hold a group reference.
272 */
273void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
274 void (*release)(void *iommu_data))
275{
276 group->iommu_data = iommu_data;
277 group->iommu_data_release = release;
278}
279EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
280
281/**
282 * iommu_group_set_name - set name for a group
283 * @group: the group
284 * @name: name
285 *
286 * Allow iommu driver to set a name for a group. When set it will
287 * appear in a name attribute file under the group in sysfs.
288 */
289int iommu_group_set_name(struct iommu_group *group, const char *name)
290{
291 int ret;
292
293 if (group->name) {
294 iommu_group_remove_file(group, &iommu_group_attr_name);
295 kfree(group->name);
296 group->name = NULL;
297 if (!name)
298 return 0;
299 }
300
301 group->name = kstrdup(name, GFP_KERNEL);
302 if (!group->name)
303 return -ENOMEM;
304
305 ret = iommu_group_create_file(group, &iommu_group_attr_name);
306 if (ret) {
307 kfree(group->name);
308 group->name = NULL;
309 return ret;
310 }
311
312 return 0;
313}
314EXPORT_SYMBOL_GPL(iommu_group_set_name);
315
Joerg Roedelbeed2822015-05-28 18:41:34 +0200316static int iommu_group_create_direct_mappings(struct iommu_group *group,
317 struct device *dev)
318{
319 struct iommu_domain *domain = group->default_domain;
320 struct iommu_dm_region *entry;
321 struct list_head mappings;
322 unsigned long pg_size;
323 int ret = 0;
324
325 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
326 return 0;
327
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100328 BUG_ON(!domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200329
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100330 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200331 INIT_LIST_HEAD(&mappings);
332
333 iommu_get_dm_regions(dev, &mappings);
334
335 /* We need to consider overlapping regions for different devices */
336 list_for_each_entry(entry, &mappings, list) {
337 dma_addr_t start, end, addr;
338
339 start = ALIGN(entry->start, pg_size);
340 end = ALIGN(entry->start + entry->length, pg_size);
341
342 for (addr = start; addr < end; addr += pg_size) {
343 phys_addr_t phys_addr;
344
345 phys_addr = iommu_iova_to_phys(domain, addr);
346 if (phys_addr)
347 continue;
348
349 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
350 if (ret)
351 goto out;
352 }
353
354 }
355
356out:
357 iommu_put_dm_regions(dev, &mappings);
358
359 return ret;
360}
361
Alex Williamsond72e31c2012-05-30 14:18:53 -0600362/**
363 * iommu_group_add_device - add a device to an iommu group
364 * @group: the group into which to add the device (reference should be held)
365 * @dev: the device
366 *
367 * This function is called by an iommu driver to add a device into a
368 * group. Adding a device increments the group reference count.
369 */
370int iommu_group_add_device(struct iommu_group *group, struct device *dev)
371{
372 int ret, i = 0;
373 struct iommu_device *device;
374
375 device = kzalloc(sizeof(*device), GFP_KERNEL);
376 if (!device)
377 return -ENOMEM;
378
379 device->dev = dev;
380
381 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
382 if (ret) {
383 kfree(device);
384 return ret;
385 }
386
387 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
388rename:
389 if (!device->name) {
390 sysfs_remove_link(&dev->kobj, "iommu_group");
391 kfree(device);
392 return -ENOMEM;
393 }
394
395 ret = sysfs_create_link_nowarn(group->devices_kobj,
396 &dev->kobj, device->name);
397 if (ret) {
398 kfree(device->name);
399 if (ret == -EEXIST && i >= 0) {
400 /*
401 * Account for the slim chance of collision
402 * and append an instance to the name.
403 */
404 device->name = kasprintf(GFP_KERNEL, "%s.%d",
405 kobject_name(&dev->kobj), i++);
406 goto rename;
407 }
408
409 sysfs_remove_link(&dev->kobj, "iommu_group");
410 kfree(device);
411 return ret;
412 }
413
414 kobject_get(group->devices_kobj);
415
416 dev->iommu_group = group;
417
Joerg Roedelbeed2822015-05-28 18:41:34 +0200418 iommu_group_create_direct_mappings(group, dev);
419
Alex Williamsond72e31c2012-05-30 14:18:53 -0600420 mutex_lock(&group->mutex);
421 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200422 if (group->domain)
423 __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600424 mutex_unlock(&group->mutex);
425
426 /* Notify any listeners about change to group. */
427 blocking_notifier_call_chain(&group->notifier,
428 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600429
430 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200431
432 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
433
Alex Williamsond72e31c2012-05-30 14:18:53 -0600434 return 0;
435}
436EXPORT_SYMBOL_GPL(iommu_group_add_device);
437
438/**
439 * iommu_group_remove_device - remove a device from it's current group
440 * @dev: device to be removed
441 *
442 * This function is called by an iommu driver to remove the device from
443 * it's current group. This decrements the iommu group reference count.
444 */
445void iommu_group_remove_device(struct device *dev)
446{
447 struct iommu_group *group = dev->iommu_group;
448 struct iommu_device *tmp_device, *device = NULL;
449
Joerg Roedel269aa802015-05-28 18:41:25 +0200450 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
451
Alex Williamsond72e31c2012-05-30 14:18:53 -0600452 /* Pre-notify listeners that a device is being removed. */
453 blocking_notifier_call_chain(&group->notifier,
454 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
455
456 mutex_lock(&group->mutex);
457 list_for_each_entry(tmp_device, &group->devices, list) {
458 if (tmp_device->dev == dev) {
459 device = tmp_device;
460 list_del(&device->list);
461 break;
462 }
463 }
464 mutex_unlock(&group->mutex);
465
466 if (!device)
467 return;
468
469 sysfs_remove_link(group->devices_kobj, device->name);
470 sysfs_remove_link(&dev->kobj, "iommu_group");
471
Shuah Khan2e757082013-08-15 11:59:25 -0600472 trace_remove_device_from_group(group->id, dev);
473
Alex Williamsond72e31c2012-05-30 14:18:53 -0600474 kfree(device->name);
475 kfree(device);
476 dev->iommu_group = NULL;
477 kobject_put(group->devices_kobj);
478}
479EXPORT_SYMBOL_GPL(iommu_group_remove_device);
480
Joerg Roedel426a2732015-05-28 18:41:30 +0200481static int iommu_group_device_count(struct iommu_group *group)
482{
483 struct iommu_device *entry;
484 int ret = 0;
485
486 list_for_each_entry(entry, &group->devices, list)
487 ret++;
488
489 return ret;
490}
491
Alex Williamsond72e31c2012-05-30 14:18:53 -0600492/**
493 * iommu_group_for_each_dev - iterate over each device in the group
494 * @group: the group
495 * @data: caller opaque data to be passed to callback function
496 * @fn: caller supplied callback function
497 *
498 * This function is called by group users to iterate over group devices.
499 * Callers should hold a reference count to the group during callback.
500 * The group->mutex is held across callbacks, which will block calls to
501 * iommu_group_add/remove_device.
502 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200503static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
504 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600505{
506 struct iommu_device *device;
507 int ret = 0;
508
Alex Williamsond72e31c2012-05-30 14:18:53 -0600509 list_for_each_entry(device, &group->devices, list) {
510 ret = fn(device->dev, data);
511 if (ret)
512 break;
513 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200514 return ret;
515}
516
517
518int iommu_group_for_each_dev(struct iommu_group *group, void *data,
519 int (*fn)(struct device *, void *))
520{
521 int ret;
522
523 mutex_lock(&group->mutex);
524 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600525 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200526
Alex Williamsond72e31c2012-05-30 14:18:53 -0600527 return ret;
528}
529EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
530
531/**
532 * iommu_group_get - Return the group for a device and increment reference
533 * @dev: get the group that this device belongs to
534 *
535 * This function is called by iommu drivers and users to get the group
536 * for the specified device. If found, the group is returned and the group
537 * reference in incremented, else NULL.
538 */
539struct iommu_group *iommu_group_get(struct device *dev)
540{
541 struct iommu_group *group = dev->iommu_group;
542
543 if (group)
544 kobject_get(group->devices_kobj);
545
546 return group;
547}
548EXPORT_SYMBOL_GPL(iommu_group_get);
549
550/**
551 * iommu_group_put - Decrement group reference
552 * @group: the group to use
553 *
554 * This function is called by iommu drivers and users to release the
555 * iommu group. Once the reference count is zero, the group is released.
556 */
557void iommu_group_put(struct iommu_group *group)
558{
559 if (group)
560 kobject_put(group->devices_kobj);
561}
562EXPORT_SYMBOL_GPL(iommu_group_put);
563
564/**
565 * iommu_group_register_notifier - Register a notifier for group changes
566 * @group: the group to watch
567 * @nb: notifier block to signal
568 *
569 * This function allows iommu group users to track changes in a group.
570 * See include/linux/iommu.h for actions sent via this notifier. Caller
571 * should hold a reference to the group throughout notifier registration.
572 */
573int iommu_group_register_notifier(struct iommu_group *group,
574 struct notifier_block *nb)
575{
576 return blocking_notifier_chain_register(&group->notifier, nb);
577}
578EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
579
580/**
581 * iommu_group_unregister_notifier - Unregister a notifier
582 * @group: the group to watch
583 * @nb: notifier block to signal
584 *
585 * Unregister a previously registered group notifier block.
586 */
587int iommu_group_unregister_notifier(struct iommu_group *group,
588 struct notifier_block *nb)
589{
590 return blocking_notifier_chain_unregister(&group->notifier, nb);
591}
592EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
593
594/**
595 * iommu_group_id - Return ID for a group
596 * @group: the group to ID
597 *
598 * Return the unique ID for the group matching the sysfs group number.
599 */
600int iommu_group_id(struct iommu_group *group)
601{
602 return group->id;
603}
604EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400605
Alex Williamsonf096c062014-09-19 10:03:06 -0600606static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
607 unsigned long *devfns);
608
Alex Williamson104a1c12014-07-03 09:51:18 -0600609/*
610 * To consider a PCI device isolated, we require ACS to support Source
611 * Validation, Request Redirection, Completer Redirection, and Upstream
612 * Forwarding. This effectively means that devices cannot spoof their
613 * requester ID, requests and completions cannot be redirected, and all
614 * transactions are forwarded upstream, even as it passes through a
615 * bridge where the target device is downstream.
616 */
617#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
618
Alex Williamsonf096c062014-09-19 10:03:06 -0600619/*
620 * For multifunction devices which are not isolated from each other, find
621 * all the other non-isolated functions and look for existing groups. For
622 * each function, we also need to look for aliases to or from other devices
623 * that may already have a group.
624 */
625static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
626 unsigned long *devfns)
627{
628 struct pci_dev *tmp = NULL;
629 struct iommu_group *group;
630
631 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
632 return NULL;
633
634 for_each_pci_dev(tmp) {
635 if (tmp == pdev || tmp->bus != pdev->bus ||
636 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
637 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
638 continue;
639
640 group = get_pci_alias_group(tmp, devfns);
641 if (group) {
642 pci_dev_put(tmp);
643 return group;
644 }
645 }
646
647 return NULL;
648}
649
650/*
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100651 * Look for aliases to or from the given device for existing groups. DMA
652 * aliases are only supported on the same bus, therefore the search
Alex Williamsonf096c062014-09-19 10:03:06 -0600653 * space is quite small (especially since we're really only looking at pcie
654 * device, and therefore only expect multiple slots on the root complex or
655 * downstream switch ports). It's conceivable though that a pair of
656 * multifunction devices could have aliases between them that would cause a
657 * loop. To prevent this, we use a bitmap to track where we've been.
658 */
659static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
660 unsigned long *devfns)
661{
662 struct pci_dev *tmp = NULL;
663 struct iommu_group *group;
664
665 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
666 return NULL;
667
668 group = iommu_group_get(&pdev->dev);
669 if (group)
670 return group;
671
672 for_each_pci_dev(tmp) {
673 if (tmp == pdev || tmp->bus != pdev->bus)
674 continue;
675
676 /* We alias them or they alias us */
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100677 if (pci_devs_are_dma_aliases(pdev, tmp)) {
Alex Williamsonf096c062014-09-19 10:03:06 -0600678 group = get_pci_alias_group(tmp, devfns);
679 if (group) {
680 pci_dev_put(tmp);
681 return group;
682 }
683
684 group = get_pci_function_alias_group(tmp, devfns);
685 if (group) {
686 pci_dev_put(tmp);
687 return group;
688 }
689 }
690 }
691
692 return NULL;
693}
694
Alex Williamson104a1c12014-07-03 09:51:18 -0600695struct group_for_pci_data {
696 struct pci_dev *pdev;
697 struct iommu_group *group;
698};
699
700/*
701 * DMA alias iterator callback, return the last seen device. Stop and return
702 * the IOMMU group if we find one along the way.
703 */
704static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
705{
706 struct group_for_pci_data *data = opaque;
707
708 data->pdev = pdev;
709 data->group = iommu_group_get(&pdev->dev);
710
711 return data->group != NULL;
712}
713
714/*
Joerg Roedel6eab5562015-10-21 23:51:38 +0200715 * Generic device_group call-back function. It just allocates one
716 * iommu-group per device.
717 */
718struct iommu_group *generic_device_group(struct device *dev)
719{
720 struct iommu_group *group;
721
722 group = iommu_group_alloc();
723 if (IS_ERR(group))
724 return NULL;
725
726 return group;
727}
728
729/*
Alex Williamson104a1c12014-07-03 09:51:18 -0600730 * Use standard PCI bus topology, isolation features, and DMA alias quirks
731 * to find or create an IOMMU group for a device.
732 */
Joerg Roedel5e622922015-10-21 23:51:37 +0200733struct iommu_group *pci_device_group(struct device *dev)
Alex Williamson104a1c12014-07-03 09:51:18 -0600734{
Joerg Roedel5e622922015-10-21 23:51:37 +0200735 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600736 struct group_for_pci_data data;
737 struct pci_bus *bus;
738 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -0600739 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -0600740
Joerg Roedel5e622922015-10-21 23:51:37 +0200741 if (WARN_ON(!dev_is_pci(dev)))
742 return ERR_PTR(-EINVAL);
743
Alex Williamson104a1c12014-07-03 09:51:18 -0600744 /*
745 * Find the upstream DMA alias for the device. A device must not
746 * be aliased due to topology in order to have its own IOMMU group.
747 * If we find an alias along the way that already belongs to a
748 * group, use it.
749 */
750 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
751 return data.group;
752
753 pdev = data.pdev;
754
755 /*
756 * Continue upstream from the point of minimum IOMMU granularity
757 * due to aliases to the point where devices are protected from
758 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
759 * group, use it.
760 */
761 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
762 if (!bus->self)
763 continue;
764
765 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
766 break;
767
768 pdev = bus->self;
769
770 group = iommu_group_get(&pdev->dev);
771 if (group)
772 return group;
773 }
774
775 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600776 * Look for existing groups on device aliases. If we alias another
777 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -0600778 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600779 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
780 if (group)
781 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600782
783 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600784 * Look for existing groups on non-isolated functions on the same
785 * slot and aliases of those funcions, if any. No need to clear
786 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -0600787 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600788 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
789 if (group)
790 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600791
792 /* No shared group found, allocate new */
Joerg Roedel53723dc2015-05-28 18:41:29 +0200793 group = iommu_group_alloc();
Dan Carpenter409e5532015-06-10 13:59:27 +0300794 if (IS_ERR(group))
795 return NULL;
796
Joerg Roedel53723dc2015-05-28 18:41:29 +0200797 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600798}
799
800/**
801 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
802 * @dev: target device
803 *
804 * This function is intended to be called by IOMMU drivers and extended to
805 * support common, bus-defined algorithms when determining or creating the
806 * IOMMU group for a device. On success, the caller will hold a reference
807 * to the returned IOMMU group, which will already include the provided
808 * device. The reference should be released with iommu_group_put().
809 */
810struct iommu_group *iommu_group_get_for_dev(struct device *dev)
811{
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200812 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200813 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600814 int ret;
815
816 group = iommu_group_get(dev);
817 if (group)
818 return group;
819
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200820 group = ERR_PTR(-EINVAL);
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200821
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200822 if (ops && ops->device_group)
823 group = ops->device_group(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600824
825 if (IS_ERR(group))
826 return group;
827
Joerg Roedel12282362015-10-21 23:51:43 +0200828 /*
829 * Try to allocate a default domain - needs support from the
830 * IOMMU driver.
831 */
832 if (!group->default_domain) {
833 group->default_domain = __iommu_domain_alloc(dev->bus,
834 IOMMU_DOMAIN_DMA);
Joerg Roedeleebb8032016-04-04 15:47:48 +0200835 if (!group->domain)
836 group->domain = group->default_domain;
Joerg Roedel12282362015-10-21 23:51:43 +0200837 }
838
Alex Williamson104a1c12014-07-03 09:51:18 -0600839 ret = iommu_group_add_device(group, dev);
840 if (ret) {
841 iommu_group_put(group);
842 return ERR_PTR(ret);
843 }
844
845 return group;
846}
847
Joerg Roedel6827ca82015-05-28 18:41:35 +0200848struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
849{
850 return group->default_domain;
851}
852
Alex Williamson14604322011-10-21 15:56:05 -0400853static int add_iommu_group(struct device *dev, void *data)
854{
Thierry Redingb22f6432014-06-27 09:03:12 +0200855 struct iommu_callback_data *cb = data;
856 const struct iommu_ops *ops = cb->ops;
Joerg Roedel38667f12015-06-29 10:16:08 +0200857 int ret;
Alex Williamson14604322011-10-21 15:56:05 -0400858
Alex Williamsond72e31c2012-05-30 14:18:53 -0600859 if (!ops->add_device)
Marek Szyprowski461bfb3f2014-11-19 11:15:31 +0000860 return 0;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600861
862 WARN_ON(dev->iommu_group);
863
Joerg Roedel38667f12015-06-29 10:16:08 +0200864 ret = ops->add_device(dev);
865
866 /*
867 * We ignore -ENODEV errors for now, as they just mean that the
868 * device is not translated by an IOMMU. We still care about
869 * other errors and fail to initialize when they happen.
870 */
871 if (ret == -ENODEV)
872 ret = 0;
873
874 return ret;
Alex Williamson14604322011-10-21 15:56:05 -0400875}
876
Joerg Roedel8da30142015-05-28 18:41:27 +0200877static int remove_iommu_group(struct device *dev, void *data)
878{
879 struct iommu_callback_data *cb = data;
880 const struct iommu_ops *ops = cb->ops;
881
882 if (ops->remove_device && dev->iommu_group)
883 ops->remove_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -0400884
885 return 0;
886}
887
Alex Williamsond72e31c2012-05-30 14:18:53 -0600888static int iommu_bus_notifier(struct notifier_block *nb,
889 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -0400890{
891 struct device *dev = data;
Thierry Redingb22f6432014-06-27 09:03:12 +0200892 const struct iommu_ops *ops = dev->bus->iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600893 struct iommu_group *group;
894 unsigned long group_action = 0;
Alex Williamson14604322011-10-21 15:56:05 -0400895
Alex Williamsond72e31c2012-05-30 14:18:53 -0600896 /*
897 * ADD/DEL call into iommu driver ops if provided, which may
898 * result in ADD/DEL notifiers to group->notifier
899 */
900 if (action == BUS_NOTIFY_ADD_DEVICE) {
901 if (ops->add_device)
902 return ops->add_device(dev);
Joerg Roedel843cb6d2015-05-28 18:41:28 +0200903 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600904 if (ops->remove_device && dev->iommu_group) {
905 ops->remove_device(dev);
906 return 0;
907 }
908 }
Alex Williamson14604322011-10-21 15:56:05 -0400909
Alex Williamsond72e31c2012-05-30 14:18:53 -0600910 /*
911 * Remaining BUS_NOTIFYs get filtered and republished to the
912 * group, if anyone is listening
913 */
914 group = iommu_group_get(dev);
915 if (!group)
916 return 0;
917
918 switch (action) {
919 case BUS_NOTIFY_BIND_DRIVER:
920 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
921 break;
922 case BUS_NOTIFY_BOUND_DRIVER:
923 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
924 break;
925 case BUS_NOTIFY_UNBIND_DRIVER:
926 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
927 break;
928 case BUS_NOTIFY_UNBOUND_DRIVER:
929 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
930 break;
931 }
932
933 if (group_action)
934 blocking_notifier_call_chain(&group->notifier,
935 group_action, dev);
936
937 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -0400938 return 0;
939}
940
Mark Salterfb3e3062014-09-21 13:58:24 -0400941static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100942{
Mark Salterfb3e3062014-09-21 13:58:24 -0400943 int err;
944 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +0200945 struct iommu_callback_data cb = {
946 .ops = ops,
947 };
948
Mark Salterfb3e3062014-09-21 13:58:24 -0400949 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
950 if (!nb)
951 return -ENOMEM;
952
953 nb->notifier_call = iommu_bus_notifier;
954
955 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +0200956 if (err)
957 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100958
959 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +0200960 if (err)
961 goto out_err;
962
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100963
964 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +0200965
966out_err:
967 /* Clean up */
968 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
969 bus_unregister_notifier(bus, nb);
970
971out_free:
972 kfree(nb);
973
974 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100975}
976
Joerg Roedelff217762011-08-26 16:48:26 +0200977/**
978 * bus_set_iommu - set iommu-callbacks for the bus
979 * @bus: bus.
980 * @ops: the callbacks provided by the iommu-driver
981 *
982 * This function is called by an iommu driver to set the iommu methods
983 * used for a particular bus. Drivers for devices on that bus can use
984 * the iommu-api after these ops are registered.
985 * This special function is needed because IOMMUs are usually devices on
986 * the bus itself, so the iommu drivers are not initialized when the bus
987 * is set up. With this function the iommu-driver can set the iommu-ops
988 * afterwards.
989 */
Thierry Redingb22f6432014-06-27 09:03:12 +0200990int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100991{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100992 int err;
993
Joerg Roedelff217762011-08-26 16:48:26 +0200994 if (bus->iommu_ops != NULL)
995 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100996
Joerg Roedelff217762011-08-26 16:48:26 +0200997 bus->iommu_ops = ops;
998
999 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001000 err = iommu_bus_init(bus, ops);
1001 if (err)
1002 bus->iommu_ops = NULL;
1003
1004 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001005}
Joerg Roedelff217762011-08-26 16:48:26 +02001006EXPORT_SYMBOL_GPL(bus_set_iommu);
1007
Joerg Roedela1b60c12011-09-06 18:46:34 +02001008bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001009{
Joerg Roedel94441c32011-09-06 18:58:54 +02001010 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001011}
Joerg Roedela1b60c12011-09-06 18:46:34 +02001012EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001013
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +02001014bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1015{
1016 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1017 return false;
1018
1019 return bus->iommu_ops->capable(cap);
1020}
1021EXPORT_SYMBOL_GPL(iommu_capable);
1022
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001023/**
1024 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1025 * @domain: iommu domain
1026 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001027 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -04001028 *
1029 * This function should be used by IOMMU users which want to be notified
1030 * whenever an IOMMU fault happens.
1031 *
1032 * The fault handler itself should return 0 on success, and an appropriate
1033 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001034 */
1035void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001036 iommu_fault_handler_t handler,
1037 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001038{
1039 BUG_ON(!domain);
1040
1041 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001042 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001043}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -04001044EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001045
Joerg Roedel53723dc2015-05-28 18:41:29 +02001046static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1047 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001048{
1049 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001050
Joerg Roedel94441c32011-09-06 18:58:54 +02001051 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +02001052 return NULL;
1053
Joerg Roedel53723dc2015-05-28 18:41:29 +02001054 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001055 if (!domain)
1056 return NULL;
1057
Joerg Roedel8539c7c2015-03-26 13:43:05 +01001058 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +02001059 domain->type = type;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001060 /* Assume all sizes by default; the driver may override this later */
1061 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
Joerg Roedel905d66c2011-09-06 16:03:26 +02001062
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001063 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001064}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001065
Joerg Roedel53723dc2015-05-28 18:41:29 +02001066struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1067{
1068 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001069}
1070EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1071
1072void iommu_domain_free(struct iommu_domain *domain)
1073{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001074 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001075}
1076EXPORT_SYMBOL_GPL(iommu_domain_free);
1077
Joerg Roedel426a2732015-05-28 18:41:30 +02001078static int __iommu_attach_device(struct iommu_domain *domain,
1079 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001080{
Shuah Khanb54db772013-08-15 11:59:26 -06001081 int ret;
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001082 if (unlikely(domain->ops->attach_dev == NULL))
1083 return -ENODEV;
1084
Shuah Khanb54db772013-08-15 11:59:26 -06001085 ret = domain->ops->attach_dev(domain, dev);
1086 if (!ret)
1087 trace_attach_device_to_domain(dev);
1088 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001089}
Joerg Roedel426a2732015-05-28 18:41:30 +02001090
1091int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1092{
1093 struct iommu_group *group;
1094 int ret;
1095
1096 group = iommu_group_get(dev);
1097 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1098 if (group == NULL)
1099 return __iommu_attach_device(domain, dev);
1100
1101 /*
1102 * We have a group - lock it to make sure the device-count doesn't
1103 * change while we are attaching
1104 */
1105 mutex_lock(&group->mutex);
1106 ret = -EINVAL;
1107 if (iommu_group_device_count(group) != 1)
1108 goto out_unlock;
1109
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001110 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001111
1112out_unlock:
1113 mutex_unlock(&group->mutex);
1114 iommu_group_put(group);
1115
1116 return ret;
1117}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001118EXPORT_SYMBOL_GPL(iommu_attach_device);
1119
Joerg Roedel426a2732015-05-28 18:41:30 +02001120static void __iommu_detach_device(struct iommu_domain *domain,
1121 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001122{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001123 if (unlikely(domain->ops->detach_dev == NULL))
1124 return;
1125
1126 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001127 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001128}
Joerg Roedel426a2732015-05-28 18:41:30 +02001129
1130void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1131{
1132 struct iommu_group *group;
1133
1134 group = iommu_group_get(dev);
1135 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1136 if (group == NULL)
1137 return __iommu_detach_device(domain, dev);
1138
1139 mutex_lock(&group->mutex);
1140 if (iommu_group_device_count(group) != 1) {
1141 WARN_ON(1);
1142 goto out_unlock;
1143 }
1144
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001145 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001146
1147out_unlock:
1148 mutex_unlock(&group->mutex);
1149 iommu_group_put(group);
1150}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001151EXPORT_SYMBOL_GPL(iommu_detach_device);
1152
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001153struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1154{
1155 struct iommu_domain *domain;
1156 struct iommu_group *group;
1157
1158 group = iommu_group_get(dev);
1159 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1160 if (group == NULL)
1161 return NULL;
1162
1163 domain = group->domain;
1164
1165 iommu_group_put(group);
1166
1167 return domain;
1168}
1169EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1170
Alex Williamsond72e31c2012-05-30 14:18:53 -06001171/*
1172 * IOMMU groups are really the natrual working unit of the IOMMU, but
1173 * the IOMMU API works on domains and devices. Bridge that gap by
1174 * iterating over the devices in a group. Ideally we'd have a single
1175 * device which represents the requestor ID of the group, but we also
1176 * allow IOMMU drivers to create policy defined minimum sets, where
1177 * the physical hardware may be able to distiguish members, but we
1178 * wish to group them at a higher level (ex. untrusted multi-function
1179 * PCI devices). Thus we attach each device.
1180 */
1181static int iommu_group_do_attach_device(struct device *dev, void *data)
1182{
1183 struct iommu_domain *domain = data;
1184
Joerg Roedel426a2732015-05-28 18:41:30 +02001185 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001186}
1187
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001188static int __iommu_attach_group(struct iommu_domain *domain,
1189 struct iommu_group *group)
1190{
1191 int ret;
1192
1193 if (group->default_domain && group->domain != group->default_domain)
1194 return -EBUSY;
1195
1196 ret = __iommu_group_for_each_dev(group, domain,
1197 iommu_group_do_attach_device);
1198 if (ret == 0)
1199 group->domain = domain;
1200
1201 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001202}
1203
1204int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1205{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001206 int ret;
1207
1208 mutex_lock(&group->mutex);
1209 ret = __iommu_attach_group(domain, group);
1210 mutex_unlock(&group->mutex);
1211
1212 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001213}
1214EXPORT_SYMBOL_GPL(iommu_attach_group);
1215
1216static int iommu_group_do_detach_device(struct device *dev, void *data)
1217{
1218 struct iommu_domain *domain = data;
1219
Joerg Roedel426a2732015-05-28 18:41:30 +02001220 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001221
1222 return 0;
1223}
1224
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001225static void __iommu_detach_group(struct iommu_domain *domain,
1226 struct iommu_group *group)
1227{
1228 int ret;
1229
1230 if (!group->default_domain) {
1231 __iommu_group_for_each_dev(group, domain,
1232 iommu_group_do_detach_device);
1233 group->domain = NULL;
1234 return;
1235 }
1236
1237 if (group->domain == group->default_domain)
1238 return;
1239
1240 /* Detach by re-attaching to the default domain */
1241 ret = __iommu_group_for_each_dev(group, group->default_domain,
1242 iommu_group_do_attach_device);
1243 if (ret != 0)
1244 WARN_ON(1);
1245 else
1246 group->domain = group->default_domain;
1247}
1248
Alex Williamsond72e31c2012-05-30 14:18:53 -06001249void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1250{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001251 mutex_lock(&group->mutex);
1252 __iommu_detach_group(domain, group);
1253 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001254}
1255EXPORT_SYMBOL_GPL(iommu_detach_group);
1256
Varun Sethibb5547ac2013-03-29 01:23:58 +05301257phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001258{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001259 if (unlikely(domain->ops->iova_to_phys == NULL))
1260 return 0;
1261
1262 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001263}
1264EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001265
Alex Williamsonbd139692013-06-17 19:57:34 -06001266static size_t iommu_pgsize(struct iommu_domain *domain,
1267 unsigned long addr_merge, size_t size)
1268{
1269 unsigned int pgsize_idx;
1270 size_t pgsize;
1271
1272 /* Max page size that still fits into 'size' */
1273 pgsize_idx = __fls(size);
1274
1275 /* need to consider alignment requirements ? */
1276 if (likely(addr_merge)) {
1277 /* Max page size allowed by address */
1278 unsigned int align_pgsize_idx = __ffs(addr_merge);
1279 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1280 }
1281
1282 /* build a mask of acceptable page sizes */
1283 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1284
1285 /* throw away page sizes not supported by the hardware */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001286 pgsize &= domain->pgsize_bitmap;
Alex Williamsonbd139692013-06-17 19:57:34 -06001287
1288 /* make sure we're still sane */
1289 BUG_ON(!pgsize);
1290
1291 /* pick the biggest page */
1292 pgsize_idx = __fls(pgsize);
1293 pgsize = 1UL << pgsize_idx;
1294
1295 return pgsize;
1296}
1297
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001298int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001299 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001300{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001301 unsigned long orig_iova = iova;
1302 unsigned int min_pagesz;
1303 size_t orig_size = size;
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001304 phys_addr_t orig_paddr = paddr;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001305 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001306
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001307 if (unlikely(domain->ops->map == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001308 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001309 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001310
Joerg Roedela10315e2015-03-26 13:43:06 +01001311 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1312 return -EINVAL;
1313
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001314 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001315 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001316
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001317 /*
1318 * both the virtual address and the physical one, as well as
1319 * the size of the mapping, must be aligned (at least) to the
1320 * size of the smallest page supported by the hardware
1321 */
1322 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001323 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001324 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001325 return -EINVAL;
1326 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001327
Fabio Estevamabedb042013-08-22 10:25:42 -03001328 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001329
1330 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001331 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001332
Fabio Estevamabedb042013-08-22 10:25:42 -03001333 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001334 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001335
1336 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1337 if (ret)
1338 break;
1339
1340 iova += pgsize;
1341 paddr += pgsize;
1342 size -= pgsize;
1343 }
1344
1345 /* unroll mapping in case something went wrong */
1346 if (ret)
1347 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001348 else
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001349 trace_map(orig_iova, orig_paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001350
1351 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001352}
1353EXPORT_SYMBOL_GPL(iommu_map);
1354
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001355size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001356{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001357 size_t unmapped_page, unmapped = 0;
1358 unsigned int min_pagesz;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001359 unsigned long orig_iova = iova;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001360
Joerg Roedel57886512013-01-29 13:41:09 +01001361 if (unlikely(domain->ops->unmap == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001362 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001363 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001364
Joerg Roedela10315e2015-03-26 13:43:06 +01001365 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1366 return -EINVAL;
1367
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001368 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001369 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001370
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001371 /*
1372 * The virtual address, as well as the size of the mapping, must be
1373 * aligned (at least) to the size of the smallest page supported
1374 * by the hardware
1375 */
1376 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001377 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1378 iova, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001379 return -EINVAL;
1380 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001381
Joe Perches6197ca82013-06-23 12:29:04 -07001382 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001383
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001384 /*
1385 * Keep iterating until we either unmap 'size' bytes (or more)
1386 * or we hit an area that isn't mapped.
1387 */
1388 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001389 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001390
Alex Williamsonbd139692013-06-17 19:57:34 -06001391 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001392 if (!unmapped_page)
1393 break;
1394
Joe Perches6197ca82013-06-23 12:29:04 -07001395 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1396 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001397
1398 iova += unmapped_page;
1399 unmapped += unmapped_page;
1400 }
1401
Shuah Khandb8614d2015-01-16 20:53:17 -07001402 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001403 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001404}
1405EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001406
Olav Haugan315786e2014-10-25 09:55:16 -07001407size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1408 struct scatterlist *sg, unsigned int nents, int prot)
1409{
Joerg Roedel38ec0102014-11-04 14:53:51 +01001410 struct scatterlist *s;
Olav Haugan315786e2014-10-25 09:55:16 -07001411 size_t mapped = 0;
Robin Murphy18f23402014-11-25 17:50:55 +00001412 unsigned int i, min_pagesz;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001413 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001414
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001415 if (unlikely(domain->pgsize_bitmap == 0UL))
Robin Murphy18f23402014-11-25 17:50:55 +00001416 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -07001417
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001418 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Robin Murphy18f23402014-11-25 17:50:55 +00001419
1420 for_each_sg(sg, s, nents, i) {
Dan Williams3e6110f2015-12-15 12:54:06 -08001421 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
Robin Murphy18f23402014-11-25 17:50:55 +00001422
1423 /*
1424 * We are mapping on IOMMU page boundaries, so offset within
1425 * the page must be 0. However, the IOMMU may support pages
1426 * smaller than PAGE_SIZE, so s->offset may still represent
1427 * an offset of that boundary within the CPU page.
1428 */
1429 if (!IS_ALIGNED(s->offset, min_pagesz))
Joerg Roedel38ec0102014-11-04 14:53:51 +01001430 goto out_err;
1431
1432 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1433 if (ret)
1434 goto out_err;
1435
1436 mapped += s->length;
Olav Haugan315786e2014-10-25 09:55:16 -07001437 }
1438
1439 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001440
1441out_err:
1442 /* undo mappings already done */
1443 iommu_unmap(domain, iova, mapped);
1444
1445 return 0;
1446
Olav Haugan315786e2014-10-25 09:55:16 -07001447}
1448EXPORT_SYMBOL_GPL(default_iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001449
1450int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301451 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001452{
1453 if (unlikely(domain->ops->domain_window_enable == NULL))
1454 return -ENODEV;
1455
Varun Sethi80f97f02013-03-29 01:24:00 +05301456 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1457 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001458}
1459EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1460
1461void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1462{
1463 if (unlikely(domain->ops->domain_window_disable == NULL))
1464 return;
1465
1466 return domain->ops->domain_window_disable(domain, wnd_nr);
1467}
1468EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1469
Alex Williamsond72e31c2012-05-30 14:18:53 -06001470static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001471{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001472 iommu_group_kset = kset_create_and_add("iommu_groups",
1473 NULL, kernel_kobj);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001474 BUG_ON(!iommu_group_kset);
1475
1476 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001477}
Marek Szyprowskid7ef9992015-05-19 15:20:23 +02001478core_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001479
1480int iommu_domain_get_attr(struct iommu_domain *domain,
1481 enum iommu_attr attr, void *data)
1482{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001483 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001484 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001485 int ret = 0;
Joerg Roedel69356712013-02-04 14:00:01 +01001486 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001487
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001488 switch (attr) {
1489 case DOMAIN_ATTR_GEOMETRY:
1490 geometry = data;
1491 *geometry = domain->geometry;
1492
1493 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001494 case DOMAIN_ATTR_PAGING:
1495 paging = data;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001496 *paging = (domain->pgsize_bitmap != 0UL);
Joerg Roedeld2e12162013-01-29 13:49:04 +01001497 break;
Joerg Roedel69356712013-02-04 14:00:01 +01001498 case DOMAIN_ATTR_WINDOWS:
1499 count = data;
1500
1501 if (domain->ops->domain_get_windows != NULL)
1502 *count = domain->ops->domain_get_windows(domain);
1503 else
1504 ret = -ENODEV;
1505
1506 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001507 default:
1508 if (!domain->ops->domain_get_attr)
1509 return -EINVAL;
1510
1511 ret = domain->ops->domain_get_attr(domain, attr, data);
1512 }
1513
1514 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001515}
1516EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1517
1518int iommu_domain_set_attr(struct iommu_domain *domain,
1519 enum iommu_attr attr, void *data)
1520{
Joerg Roedel69356712013-02-04 14:00:01 +01001521 int ret = 0;
1522 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001523
Joerg Roedel69356712013-02-04 14:00:01 +01001524 switch (attr) {
1525 case DOMAIN_ATTR_WINDOWS:
1526 count = data;
1527
1528 if (domain->ops->domain_set_windows != NULL)
1529 ret = domain->ops->domain_set_windows(domain, *count);
1530 else
1531 ret = -ENODEV;
1532
1533 break;
1534 default:
1535 if (domain->ops->domain_set_attr == NULL)
1536 return -EINVAL;
1537
1538 ret = domain->ops->domain_set_attr(domain, attr, data);
1539 }
1540
1541 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001542}
1543EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02001544
1545void iommu_get_dm_regions(struct device *dev, struct list_head *list)
1546{
1547 const struct iommu_ops *ops = dev->bus->iommu_ops;
1548
1549 if (ops && ops->get_dm_regions)
1550 ops->get_dm_regions(dev, list);
1551}
1552
1553void iommu_put_dm_regions(struct device *dev, struct list_head *list)
1554{
1555 const struct iommu_ops *ops = dev->bus->iommu_ops;
1556
1557 if (ops && ops->put_dm_regions)
1558 ops->put_dm_regions(dev, list);
1559}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001560
1561/* Request that a device is direct mapped by the IOMMU */
1562int iommu_request_dm_for_dev(struct device *dev)
1563{
1564 struct iommu_domain *dm_domain;
1565 struct iommu_group *group;
1566 int ret;
1567
1568 /* Device must already be in a group before calling this function */
1569 group = iommu_group_get_for_dev(dev);
Dan Carpenter409e5532015-06-10 13:59:27 +03001570 if (IS_ERR(group))
1571 return PTR_ERR(group);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001572
1573 mutex_lock(&group->mutex);
1574
1575 /* Check if the default domain is already direct mapped */
1576 ret = 0;
1577 if (group->default_domain &&
1578 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1579 goto out;
1580
1581 /* Don't change mappings of existing devices */
1582 ret = -EBUSY;
1583 if (iommu_group_device_count(group) != 1)
1584 goto out;
1585
1586 /* Allocate a direct mapped domain */
1587 ret = -ENOMEM;
1588 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1589 if (!dm_domain)
1590 goto out;
1591
1592 /* Attach the device to the domain */
1593 ret = __iommu_attach_group(dm_domain, group);
1594 if (ret) {
1595 iommu_domain_free(dm_domain);
1596 goto out;
1597 }
1598
1599 /* Make the direct mapped domain the default for this group */
1600 if (group->default_domain)
1601 iommu_domain_free(group->default_domain);
1602 group->default_domain = dm_domain;
1603
1604 pr_info("Using direct mapping for device %s\n", dev_name(dev));
1605
1606 ret = 0;
1607out:
1608 mutex_unlock(&group->mutex);
1609 iommu_group_put(group);
1610
1611 return ret;
1612}