blob: bfd4f7c3b1d8a9da9ce6cd2bce3decd8e27e0fca [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;
37static struct ida iommu_group_ida;
38static struct mutex iommu_group_mutex;
39
Thierry Redingb22f6432014-06-27 09:03:12 +020040struct iommu_callback_data {
41 const struct iommu_ops *ops;
42};
43
Alex Williamsond72e31c2012-05-30 14:18:53 -060044struct iommu_group {
45 struct kobject kobj;
46 struct kobject *devices_kobj;
47 struct list_head devices;
48 struct mutex mutex;
49 struct blocking_notifier_head notifier;
50 void *iommu_data;
51 void (*iommu_data_release)(void *iommu_data);
52 char *name;
53 int id;
Joerg Roedel53723dc2015-05-28 18:41:29 +020054 struct iommu_domain *default_domain;
Joerg Roedele39cb8a2015-05-28 18:41:31 +020055 struct iommu_domain *domain;
Alex Williamsond72e31c2012-05-30 14:18:53 -060056};
57
58struct iommu_device {
59 struct list_head list;
60 struct device *dev;
61 char *name;
62};
63
64struct iommu_group_attribute {
65 struct attribute attr;
66 ssize_t (*show)(struct iommu_group *group, char *buf);
67 ssize_t (*store)(struct iommu_group *group,
68 const char *buf, size_t count);
69};
70
71#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
72struct iommu_group_attribute iommu_group_attr_##_name = \
73 __ATTR(_name, _mode, _show, _store)
74
75#define to_iommu_group_attr(_attr) \
76 container_of(_attr, struct iommu_group_attribute, attr)
77#define to_iommu_group(_kobj) \
78 container_of(_kobj, struct iommu_group, kobj)
79
Joerg Roedel53723dc2015-05-28 18:41:29 +020080static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
81 unsigned type);
Joerg Roedele39cb8a2015-05-28 18:41:31 +020082static int __iommu_attach_device(struct iommu_domain *domain,
83 struct device *dev);
84static int __iommu_attach_group(struct iommu_domain *domain,
85 struct iommu_group *group);
86static void __iommu_detach_group(struct iommu_domain *domain,
87 struct iommu_group *group);
Joerg Roedel53723dc2015-05-28 18:41:29 +020088
Alex Williamsond72e31c2012-05-30 14:18:53 -060089static ssize_t iommu_group_attr_show(struct kobject *kobj,
90 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -040091{
Alex Williamsond72e31c2012-05-30 14:18:53 -060092 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
93 struct iommu_group *group = to_iommu_group(kobj);
94 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -040095
Alex Williamsond72e31c2012-05-30 14:18:53 -060096 if (attr->show)
97 ret = attr->show(group, buf);
98 return ret;
Alex Williamson14604322011-10-21 15:56:05 -040099}
Alex Williamsond72e31c2012-05-30 14:18:53 -0600100
101static ssize_t iommu_group_attr_store(struct kobject *kobj,
102 struct attribute *__attr,
103 const char *buf, size_t count)
104{
105 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
106 struct iommu_group *group = to_iommu_group(kobj);
107 ssize_t ret = -EIO;
108
109 if (attr->store)
110 ret = attr->store(group, buf, count);
111 return ret;
112}
113
114static const struct sysfs_ops iommu_group_sysfs_ops = {
115 .show = iommu_group_attr_show,
116 .store = iommu_group_attr_store,
117};
118
119static int iommu_group_create_file(struct iommu_group *group,
120 struct iommu_group_attribute *attr)
121{
122 return sysfs_create_file(&group->kobj, &attr->attr);
123}
124
125static void iommu_group_remove_file(struct iommu_group *group,
126 struct iommu_group_attribute *attr)
127{
128 sysfs_remove_file(&group->kobj, &attr->attr);
129}
130
131static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
132{
133 return sprintf(buf, "%s\n", group->name);
134}
135
136static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
137
138static void iommu_group_release(struct kobject *kobj)
139{
140 struct iommu_group *group = to_iommu_group(kobj);
141
Joerg Roedel269aa802015-05-28 18:41:25 +0200142 pr_debug("Releasing group %d\n", group->id);
143
Alex Williamsond72e31c2012-05-30 14:18:53 -0600144 if (group->iommu_data_release)
145 group->iommu_data_release(group->iommu_data);
146
147 mutex_lock(&iommu_group_mutex);
148 ida_remove(&iommu_group_ida, group->id);
149 mutex_unlock(&iommu_group_mutex);
150
Joerg Roedel53723dc2015-05-28 18:41:29 +0200151 if (group->default_domain)
152 iommu_domain_free(group->default_domain);
153
Alex Williamsond72e31c2012-05-30 14:18:53 -0600154 kfree(group->name);
155 kfree(group);
156}
157
158static struct kobj_type iommu_group_ktype = {
159 .sysfs_ops = &iommu_group_sysfs_ops,
160 .release = iommu_group_release,
161};
162
163/**
164 * iommu_group_alloc - Allocate a new group
165 * @name: Optional name to associate with group, visible in sysfs
166 *
167 * This function is called by an iommu driver to allocate a new iommu
168 * group. The iommu group represents the minimum granularity of the iommu.
169 * Upon successful return, the caller holds a reference to the supplied
170 * group in order to hold the group until devices are added. Use
171 * iommu_group_put() to release this extra reference count, allowing the
172 * group to be automatically reclaimed once it has no devices or external
173 * references.
174 */
175struct iommu_group *iommu_group_alloc(void)
176{
177 struct iommu_group *group;
178 int ret;
179
180 group = kzalloc(sizeof(*group), GFP_KERNEL);
181 if (!group)
182 return ERR_PTR(-ENOMEM);
183
184 group->kobj.kset = iommu_group_kset;
185 mutex_init(&group->mutex);
186 INIT_LIST_HEAD(&group->devices);
187 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
188
189 mutex_lock(&iommu_group_mutex);
190
191again:
192 if (unlikely(0 == ida_pre_get(&iommu_group_ida, GFP_KERNEL))) {
193 kfree(group);
194 mutex_unlock(&iommu_group_mutex);
195 return ERR_PTR(-ENOMEM);
196 }
197
198 if (-EAGAIN == ida_get_new(&iommu_group_ida, &group->id))
199 goto again;
200
201 mutex_unlock(&iommu_group_mutex);
202
203 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
204 NULL, "%d", group->id);
205 if (ret) {
206 mutex_lock(&iommu_group_mutex);
207 ida_remove(&iommu_group_ida, group->id);
208 mutex_unlock(&iommu_group_mutex);
209 kfree(group);
210 return ERR_PTR(ret);
211 }
212
213 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
214 if (!group->devices_kobj) {
215 kobject_put(&group->kobj); /* triggers .release & free */
216 return ERR_PTR(-ENOMEM);
217 }
218
219 /*
220 * The devices_kobj holds a reference on the group kobject, so
221 * as long as that exists so will the group. We can therefore
222 * use the devices_kobj for reference counting.
223 */
224 kobject_put(&group->kobj);
225
Joerg Roedel269aa802015-05-28 18:41:25 +0200226 pr_debug("Allocated group %d\n", group->id);
227
Alex Williamsond72e31c2012-05-30 14:18:53 -0600228 return group;
229}
230EXPORT_SYMBOL_GPL(iommu_group_alloc);
231
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100232struct iommu_group *iommu_group_get_by_id(int id)
233{
234 struct kobject *group_kobj;
235 struct iommu_group *group;
236 const char *name;
237
238 if (!iommu_group_kset)
239 return NULL;
240
241 name = kasprintf(GFP_KERNEL, "%d", id);
242 if (!name)
243 return NULL;
244
245 group_kobj = kset_find_obj(iommu_group_kset, name);
246 kfree(name);
247
248 if (!group_kobj)
249 return NULL;
250
251 group = container_of(group_kobj, struct iommu_group, kobj);
252 BUG_ON(group->id != id);
253
254 kobject_get(group->devices_kobj);
255 kobject_put(&group->kobj);
256
257 return group;
258}
259EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
260
Alex Williamsond72e31c2012-05-30 14:18:53 -0600261/**
262 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
263 * @group: the group
264 *
265 * iommu drivers can store data in the group for use when doing iommu
266 * operations. This function provides a way to retrieve it. Caller
267 * should hold a group reference.
268 */
269void *iommu_group_get_iommudata(struct iommu_group *group)
270{
271 return group->iommu_data;
272}
273EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
274
275/**
276 * iommu_group_set_iommudata - set iommu_data for a group
277 * @group: the group
278 * @iommu_data: new data
279 * @release: release function for iommu_data
280 *
281 * iommu drivers can store data in the group for use when doing iommu
282 * operations. This function provides a way to set the data after
283 * the group has been allocated. Caller should hold a group reference.
284 */
285void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
286 void (*release)(void *iommu_data))
287{
288 group->iommu_data = iommu_data;
289 group->iommu_data_release = release;
290}
291EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
292
293/**
294 * iommu_group_set_name - set name for a group
295 * @group: the group
296 * @name: name
297 *
298 * Allow iommu driver to set a name for a group. When set it will
299 * appear in a name attribute file under the group in sysfs.
300 */
301int iommu_group_set_name(struct iommu_group *group, const char *name)
302{
303 int ret;
304
305 if (group->name) {
306 iommu_group_remove_file(group, &iommu_group_attr_name);
307 kfree(group->name);
308 group->name = NULL;
309 if (!name)
310 return 0;
311 }
312
313 group->name = kstrdup(name, GFP_KERNEL);
314 if (!group->name)
315 return -ENOMEM;
316
317 ret = iommu_group_create_file(group, &iommu_group_attr_name);
318 if (ret) {
319 kfree(group->name);
320 group->name = NULL;
321 return ret;
322 }
323
324 return 0;
325}
326EXPORT_SYMBOL_GPL(iommu_group_set_name);
327
Joerg Roedelbeed2822015-05-28 18:41:34 +0200328static int iommu_group_create_direct_mappings(struct iommu_group *group,
329 struct device *dev)
330{
331 struct iommu_domain *domain = group->default_domain;
332 struct iommu_dm_region *entry;
333 struct list_head mappings;
334 unsigned long pg_size;
335 int ret = 0;
336
337 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
338 return 0;
339
340 BUG_ON(!domain->ops->pgsize_bitmap);
341
342 pg_size = 1UL << __ffs(domain->ops->pgsize_bitmap);
343 INIT_LIST_HEAD(&mappings);
344
345 iommu_get_dm_regions(dev, &mappings);
346
347 /* We need to consider overlapping regions for different devices */
348 list_for_each_entry(entry, &mappings, list) {
349 dma_addr_t start, end, addr;
350
351 start = ALIGN(entry->start, pg_size);
352 end = ALIGN(entry->start + entry->length, pg_size);
353
354 for (addr = start; addr < end; addr += pg_size) {
355 phys_addr_t phys_addr;
356
357 phys_addr = iommu_iova_to_phys(domain, addr);
358 if (phys_addr)
359 continue;
360
361 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
362 if (ret)
363 goto out;
364 }
365
366 }
367
368out:
369 iommu_put_dm_regions(dev, &mappings);
370
371 return ret;
372}
373
Alex Williamsond72e31c2012-05-30 14:18:53 -0600374/**
375 * iommu_group_add_device - add a device to an iommu group
376 * @group: the group into which to add the device (reference should be held)
377 * @dev: the device
378 *
379 * This function is called by an iommu driver to add a device into a
380 * group. Adding a device increments the group reference count.
381 */
382int iommu_group_add_device(struct iommu_group *group, struct device *dev)
383{
384 int ret, i = 0;
385 struct iommu_device *device;
386
387 device = kzalloc(sizeof(*device), GFP_KERNEL);
388 if (!device)
389 return -ENOMEM;
390
391 device->dev = dev;
392
393 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
394 if (ret) {
395 kfree(device);
396 return ret;
397 }
398
399 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
400rename:
401 if (!device->name) {
402 sysfs_remove_link(&dev->kobj, "iommu_group");
403 kfree(device);
404 return -ENOMEM;
405 }
406
407 ret = sysfs_create_link_nowarn(group->devices_kobj,
408 &dev->kobj, device->name);
409 if (ret) {
410 kfree(device->name);
411 if (ret == -EEXIST && i >= 0) {
412 /*
413 * Account for the slim chance of collision
414 * and append an instance to the name.
415 */
416 device->name = kasprintf(GFP_KERNEL, "%s.%d",
417 kobject_name(&dev->kobj), i++);
418 goto rename;
419 }
420
421 sysfs_remove_link(&dev->kobj, "iommu_group");
422 kfree(device);
423 return ret;
424 }
425
426 kobject_get(group->devices_kobj);
427
428 dev->iommu_group = group;
429
Joerg Roedelbeed2822015-05-28 18:41:34 +0200430 iommu_group_create_direct_mappings(group, dev);
431
Alex Williamsond72e31c2012-05-30 14:18:53 -0600432 mutex_lock(&group->mutex);
433 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200434 if (group->domain)
435 __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600436 mutex_unlock(&group->mutex);
437
438 /* Notify any listeners about change to group. */
439 blocking_notifier_call_chain(&group->notifier,
440 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600441
442 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200443
444 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
445
Alex Williamsond72e31c2012-05-30 14:18:53 -0600446 return 0;
447}
448EXPORT_SYMBOL_GPL(iommu_group_add_device);
449
450/**
451 * iommu_group_remove_device - remove a device from it's current group
452 * @dev: device to be removed
453 *
454 * This function is called by an iommu driver to remove the device from
455 * it's current group. This decrements the iommu group reference count.
456 */
457void iommu_group_remove_device(struct device *dev)
458{
459 struct iommu_group *group = dev->iommu_group;
460 struct iommu_device *tmp_device, *device = NULL;
461
Joerg Roedel269aa802015-05-28 18:41:25 +0200462 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
463
Alex Williamsond72e31c2012-05-30 14:18:53 -0600464 /* Pre-notify listeners that a device is being removed. */
465 blocking_notifier_call_chain(&group->notifier,
466 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
467
468 mutex_lock(&group->mutex);
469 list_for_each_entry(tmp_device, &group->devices, list) {
470 if (tmp_device->dev == dev) {
471 device = tmp_device;
472 list_del(&device->list);
473 break;
474 }
475 }
476 mutex_unlock(&group->mutex);
477
478 if (!device)
479 return;
480
481 sysfs_remove_link(group->devices_kobj, device->name);
482 sysfs_remove_link(&dev->kobj, "iommu_group");
483
Shuah Khan2e757082013-08-15 11:59:25 -0600484 trace_remove_device_from_group(group->id, dev);
485
Alex Williamsond72e31c2012-05-30 14:18:53 -0600486 kfree(device->name);
487 kfree(device);
488 dev->iommu_group = NULL;
489 kobject_put(group->devices_kobj);
490}
491EXPORT_SYMBOL_GPL(iommu_group_remove_device);
492
Joerg Roedel426a2732015-05-28 18:41:30 +0200493static int iommu_group_device_count(struct iommu_group *group)
494{
495 struct iommu_device *entry;
496 int ret = 0;
497
498 list_for_each_entry(entry, &group->devices, list)
499 ret++;
500
501 return ret;
502}
503
Alex Williamsond72e31c2012-05-30 14:18:53 -0600504/**
505 * iommu_group_for_each_dev - iterate over each device in the group
506 * @group: the group
507 * @data: caller opaque data to be passed to callback function
508 * @fn: caller supplied callback function
509 *
510 * This function is called by group users to iterate over group devices.
511 * Callers should hold a reference count to the group during callback.
512 * The group->mutex is held across callbacks, which will block calls to
513 * iommu_group_add/remove_device.
514 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200515static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
516 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600517{
518 struct iommu_device *device;
519 int ret = 0;
520
Alex Williamsond72e31c2012-05-30 14:18:53 -0600521 list_for_each_entry(device, &group->devices, list) {
522 ret = fn(device->dev, data);
523 if (ret)
524 break;
525 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200526 return ret;
527}
528
529
530int iommu_group_for_each_dev(struct iommu_group *group, void *data,
531 int (*fn)(struct device *, void *))
532{
533 int ret;
534
535 mutex_lock(&group->mutex);
536 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600537 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200538
Alex Williamsond72e31c2012-05-30 14:18:53 -0600539 return ret;
540}
541EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
542
543/**
544 * iommu_group_get - Return the group for a device and increment reference
545 * @dev: get the group that this device belongs to
546 *
547 * This function is called by iommu drivers and users to get the group
548 * for the specified device. If found, the group is returned and the group
549 * reference in incremented, else NULL.
550 */
551struct iommu_group *iommu_group_get(struct device *dev)
552{
553 struct iommu_group *group = dev->iommu_group;
554
555 if (group)
556 kobject_get(group->devices_kobj);
557
558 return group;
559}
560EXPORT_SYMBOL_GPL(iommu_group_get);
561
562/**
563 * iommu_group_put - Decrement group reference
564 * @group: the group to use
565 *
566 * This function is called by iommu drivers and users to release the
567 * iommu group. Once the reference count is zero, the group is released.
568 */
569void iommu_group_put(struct iommu_group *group)
570{
571 if (group)
572 kobject_put(group->devices_kobj);
573}
574EXPORT_SYMBOL_GPL(iommu_group_put);
575
576/**
577 * iommu_group_register_notifier - Register a notifier for group changes
578 * @group: the group to watch
579 * @nb: notifier block to signal
580 *
581 * This function allows iommu group users to track changes in a group.
582 * See include/linux/iommu.h for actions sent via this notifier. Caller
583 * should hold a reference to the group throughout notifier registration.
584 */
585int iommu_group_register_notifier(struct iommu_group *group,
586 struct notifier_block *nb)
587{
588 return blocking_notifier_chain_register(&group->notifier, nb);
589}
590EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
591
592/**
593 * iommu_group_unregister_notifier - Unregister a notifier
594 * @group: the group to watch
595 * @nb: notifier block to signal
596 *
597 * Unregister a previously registered group notifier block.
598 */
599int iommu_group_unregister_notifier(struct iommu_group *group,
600 struct notifier_block *nb)
601{
602 return blocking_notifier_chain_unregister(&group->notifier, nb);
603}
604EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
605
606/**
607 * iommu_group_id - Return ID for a group
608 * @group: the group to ID
609 *
610 * Return the unique ID for the group matching the sysfs group number.
611 */
612int iommu_group_id(struct iommu_group *group)
613{
614 return group->id;
615}
616EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400617
Alex Williamsonf096c062014-09-19 10:03:06 -0600618static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
619 unsigned long *devfns);
620
Alex Williamson104a1c12014-07-03 09:51:18 -0600621/*
622 * To consider a PCI device isolated, we require ACS to support Source
623 * Validation, Request Redirection, Completer Redirection, and Upstream
624 * Forwarding. This effectively means that devices cannot spoof their
625 * requester ID, requests and completions cannot be redirected, and all
626 * transactions are forwarded upstream, even as it passes through a
627 * bridge where the target device is downstream.
628 */
629#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
630
Alex Williamsonf096c062014-09-19 10:03:06 -0600631/*
632 * For multifunction devices which are not isolated from each other, find
633 * all the other non-isolated functions and look for existing groups. For
634 * each function, we also need to look for aliases to or from other devices
635 * that may already have a group.
636 */
637static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
638 unsigned long *devfns)
639{
640 struct pci_dev *tmp = NULL;
641 struct iommu_group *group;
642
643 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
644 return NULL;
645
646 for_each_pci_dev(tmp) {
647 if (tmp == pdev || tmp->bus != pdev->bus ||
648 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
649 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
650 continue;
651
652 group = get_pci_alias_group(tmp, devfns);
653 if (group) {
654 pci_dev_put(tmp);
655 return group;
656 }
657 }
658
659 return NULL;
660}
661
662/*
663 * Look for aliases to or from the given device for exisiting groups. The
664 * dma_alias_devfn only supports aliases on the same bus, therefore the search
665 * space is quite small (especially since we're really only looking at pcie
666 * device, and therefore only expect multiple slots on the root complex or
667 * downstream switch ports). It's conceivable though that a pair of
668 * multifunction devices could have aliases between them that would cause a
669 * loop. To prevent this, we use a bitmap to track where we've been.
670 */
671static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
672 unsigned long *devfns)
673{
674 struct pci_dev *tmp = NULL;
675 struct iommu_group *group;
676
677 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
678 return NULL;
679
680 group = iommu_group_get(&pdev->dev);
681 if (group)
682 return group;
683
684 for_each_pci_dev(tmp) {
685 if (tmp == pdev || tmp->bus != pdev->bus)
686 continue;
687
688 /* We alias them or they alias us */
689 if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
690 pdev->dma_alias_devfn == tmp->devfn) ||
691 ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
692 tmp->dma_alias_devfn == pdev->devfn)) {
693
694 group = get_pci_alias_group(tmp, devfns);
695 if (group) {
696 pci_dev_put(tmp);
697 return group;
698 }
699
700 group = get_pci_function_alias_group(tmp, devfns);
701 if (group) {
702 pci_dev_put(tmp);
703 return group;
704 }
705 }
706 }
707
708 return NULL;
709}
710
Alex Williamson104a1c12014-07-03 09:51:18 -0600711struct group_for_pci_data {
712 struct pci_dev *pdev;
713 struct iommu_group *group;
714};
715
716/*
717 * DMA alias iterator callback, return the last seen device. Stop and return
718 * the IOMMU group if we find one along the way.
719 */
720static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
721{
722 struct group_for_pci_data *data = opaque;
723
724 data->pdev = pdev;
725 data->group = iommu_group_get(&pdev->dev);
726
727 return data->group != NULL;
728}
729
730/*
Joerg Roedel6eab5562015-10-21 23:51:38 +0200731 * Generic device_group call-back function. It just allocates one
732 * iommu-group per device.
733 */
734struct iommu_group *generic_device_group(struct device *dev)
735{
736 struct iommu_group *group;
737
738 group = iommu_group_alloc();
739 if (IS_ERR(group))
740 return NULL;
741
742 return group;
743}
744
745/*
Alex Williamson104a1c12014-07-03 09:51:18 -0600746 * Use standard PCI bus topology, isolation features, and DMA alias quirks
747 * to find or create an IOMMU group for a device.
748 */
Joerg Roedel5e622922015-10-21 23:51:37 +0200749struct iommu_group *pci_device_group(struct device *dev)
Alex Williamson104a1c12014-07-03 09:51:18 -0600750{
Joerg Roedel5e622922015-10-21 23:51:37 +0200751 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600752 struct group_for_pci_data data;
753 struct pci_bus *bus;
754 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -0600755 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -0600756
Joerg Roedel5e622922015-10-21 23:51:37 +0200757 if (WARN_ON(!dev_is_pci(dev)))
758 return ERR_PTR(-EINVAL);
759
Alex Williamson104a1c12014-07-03 09:51:18 -0600760 /*
761 * Find the upstream DMA alias for the device. A device must not
762 * be aliased due to topology in order to have its own IOMMU group.
763 * If we find an alias along the way that already belongs to a
764 * group, use it.
765 */
766 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
767 return data.group;
768
769 pdev = data.pdev;
770
771 /*
772 * Continue upstream from the point of minimum IOMMU granularity
773 * due to aliases to the point where devices are protected from
774 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
775 * group, use it.
776 */
777 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
778 if (!bus->self)
779 continue;
780
781 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
782 break;
783
784 pdev = bus->self;
785
786 group = iommu_group_get(&pdev->dev);
787 if (group)
788 return group;
789 }
790
791 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600792 * Look for existing groups on device aliases. If we alias another
793 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -0600794 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600795 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
796 if (group)
797 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600798
799 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600800 * Look for existing groups on non-isolated functions on the same
801 * slot and aliases of those funcions, if any. No need to clear
802 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -0600803 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600804 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
805 if (group)
806 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600807
808 /* No shared group found, allocate new */
Joerg Roedel53723dc2015-05-28 18:41:29 +0200809 group = iommu_group_alloc();
Dan Carpenter409e5532015-06-10 13:59:27 +0300810 if (IS_ERR(group))
811 return NULL;
812
Joerg Roedel53723dc2015-05-28 18:41:29 +0200813 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600814}
815
816/**
817 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
818 * @dev: target device
819 *
820 * This function is intended to be called by IOMMU drivers and extended to
821 * support common, bus-defined algorithms when determining or creating the
822 * IOMMU group for a device. On success, the caller will hold a reference
823 * to the returned IOMMU group, which will already include the provided
824 * device. The reference should be released with iommu_group_put().
825 */
826struct iommu_group *iommu_group_get_for_dev(struct device *dev)
827{
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200828 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200829 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600830 int ret;
831
832 group = iommu_group_get(dev);
833 if (group)
834 return group;
835
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200836 group = ERR_PTR(-EINVAL);
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200837
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200838 if (ops && ops->device_group)
839 group = ops->device_group(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600840
841 if (IS_ERR(group))
842 return group;
843
Joerg Roedel12282362015-10-21 23:51:43 +0200844 /*
845 * Try to allocate a default domain - needs support from the
846 * IOMMU driver.
847 */
848 if (!group->default_domain) {
849 group->default_domain = __iommu_domain_alloc(dev->bus,
850 IOMMU_DOMAIN_DMA);
851 group->domain = group->default_domain;
852 }
853
Alex Williamson104a1c12014-07-03 09:51:18 -0600854 ret = iommu_group_add_device(group, dev);
855 if (ret) {
856 iommu_group_put(group);
857 return ERR_PTR(ret);
858 }
859
860 return group;
861}
862
Joerg Roedel6827ca82015-05-28 18:41:35 +0200863struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
864{
865 return group->default_domain;
866}
867
Alex Williamson14604322011-10-21 15:56:05 -0400868static int add_iommu_group(struct device *dev, void *data)
869{
Thierry Redingb22f6432014-06-27 09:03:12 +0200870 struct iommu_callback_data *cb = data;
871 const struct iommu_ops *ops = cb->ops;
Joerg Roedel38667f12015-06-29 10:16:08 +0200872 int ret;
Alex Williamson14604322011-10-21 15:56:05 -0400873
Alex Williamsond72e31c2012-05-30 14:18:53 -0600874 if (!ops->add_device)
Marek Szyprowski461bfb3f2014-11-19 11:15:31 +0000875 return 0;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600876
877 WARN_ON(dev->iommu_group);
878
Joerg Roedel38667f12015-06-29 10:16:08 +0200879 ret = ops->add_device(dev);
880
881 /*
882 * We ignore -ENODEV errors for now, as they just mean that the
883 * device is not translated by an IOMMU. We still care about
884 * other errors and fail to initialize when they happen.
885 */
886 if (ret == -ENODEV)
887 ret = 0;
888
889 return ret;
Alex Williamson14604322011-10-21 15:56:05 -0400890}
891
Joerg Roedel8da30142015-05-28 18:41:27 +0200892static int remove_iommu_group(struct device *dev, void *data)
893{
894 struct iommu_callback_data *cb = data;
895 const struct iommu_ops *ops = cb->ops;
896
897 if (ops->remove_device && dev->iommu_group)
898 ops->remove_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -0400899
900 return 0;
901}
902
Alex Williamsond72e31c2012-05-30 14:18:53 -0600903static int iommu_bus_notifier(struct notifier_block *nb,
904 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -0400905{
906 struct device *dev = data;
Thierry Redingb22f6432014-06-27 09:03:12 +0200907 const struct iommu_ops *ops = dev->bus->iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600908 struct iommu_group *group;
909 unsigned long group_action = 0;
Alex Williamson14604322011-10-21 15:56:05 -0400910
Alex Williamsond72e31c2012-05-30 14:18:53 -0600911 /*
912 * ADD/DEL call into iommu driver ops if provided, which may
913 * result in ADD/DEL notifiers to group->notifier
914 */
915 if (action == BUS_NOTIFY_ADD_DEVICE) {
916 if (ops->add_device)
917 return ops->add_device(dev);
Joerg Roedel843cb6d2015-05-28 18:41:28 +0200918 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600919 if (ops->remove_device && dev->iommu_group) {
920 ops->remove_device(dev);
921 return 0;
922 }
923 }
Alex Williamson14604322011-10-21 15:56:05 -0400924
Alex Williamsond72e31c2012-05-30 14:18:53 -0600925 /*
926 * Remaining BUS_NOTIFYs get filtered and republished to the
927 * group, if anyone is listening
928 */
929 group = iommu_group_get(dev);
930 if (!group)
931 return 0;
932
933 switch (action) {
934 case BUS_NOTIFY_BIND_DRIVER:
935 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
936 break;
937 case BUS_NOTIFY_BOUND_DRIVER:
938 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
939 break;
940 case BUS_NOTIFY_UNBIND_DRIVER:
941 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
942 break;
943 case BUS_NOTIFY_UNBOUND_DRIVER:
944 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
945 break;
946 }
947
948 if (group_action)
949 blocking_notifier_call_chain(&group->notifier,
950 group_action, dev);
951
952 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -0400953 return 0;
954}
955
Mark Salterfb3e3062014-09-21 13:58:24 -0400956static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100957{
Mark Salterfb3e3062014-09-21 13:58:24 -0400958 int err;
959 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +0200960 struct iommu_callback_data cb = {
961 .ops = ops,
962 };
963
Mark Salterfb3e3062014-09-21 13:58:24 -0400964 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
965 if (!nb)
966 return -ENOMEM;
967
968 nb->notifier_call = iommu_bus_notifier;
969
970 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +0200971 if (err)
972 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100973
974 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +0200975 if (err)
976 goto out_err;
977
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100978
979 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +0200980
981out_err:
982 /* Clean up */
983 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
984 bus_unregister_notifier(bus, nb);
985
986out_free:
987 kfree(nb);
988
989 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100990}
991
Joerg Roedelff217762011-08-26 16:48:26 +0200992/**
993 * bus_set_iommu - set iommu-callbacks for the bus
994 * @bus: bus.
995 * @ops: the callbacks provided by the iommu-driver
996 *
997 * This function is called by an iommu driver to set the iommu methods
998 * used for a particular bus. Drivers for devices on that bus can use
999 * the iommu-api after these ops are registered.
1000 * This special function is needed because IOMMUs are usually devices on
1001 * the bus itself, so the iommu drivers are not initialized when the bus
1002 * is set up. With this function the iommu-driver can set the iommu-ops
1003 * afterwards.
1004 */
Thierry Redingb22f6432014-06-27 09:03:12 +02001005int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001006{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001007 int err;
1008
Joerg Roedelff217762011-08-26 16:48:26 +02001009 if (bus->iommu_ops != NULL)
1010 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001011
Joerg Roedelff217762011-08-26 16:48:26 +02001012 bus->iommu_ops = ops;
1013
1014 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001015 err = iommu_bus_init(bus, ops);
1016 if (err)
1017 bus->iommu_ops = NULL;
1018
1019 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001020}
Joerg Roedelff217762011-08-26 16:48:26 +02001021EXPORT_SYMBOL_GPL(bus_set_iommu);
1022
Joerg Roedela1b60c12011-09-06 18:46:34 +02001023bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001024{
Joerg Roedel94441c32011-09-06 18:58:54 +02001025 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001026}
Joerg Roedela1b60c12011-09-06 18:46:34 +02001027EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001028
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +02001029bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1030{
1031 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1032 return false;
1033
1034 return bus->iommu_ops->capable(cap);
1035}
1036EXPORT_SYMBOL_GPL(iommu_capable);
1037
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001038/**
1039 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1040 * @domain: iommu domain
1041 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001042 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -04001043 *
1044 * This function should be used by IOMMU users which want to be notified
1045 * whenever an IOMMU fault happens.
1046 *
1047 * The fault handler itself should return 0 on success, and an appropriate
1048 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001049 */
1050void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001051 iommu_fault_handler_t handler,
1052 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001053{
1054 BUG_ON(!domain);
1055
1056 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001057 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001058}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -04001059EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001060
Joerg Roedel53723dc2015-05-28 18:41:29 +02001061static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1062 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001063{
1064 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001065
Joerg Roedel94441c32011-09-06 18:58:54 +02001066 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +02001067 return NULL;
1068
Joerg Roedel53723dc2015-05-28 18:41:29 +02001069 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001070 if (!domain)
1071 return NULL;
1072
Joerg Roedel8539c7c2015-03-26 13:43:05 +01001073 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +02001074 domain->type = type;
Joerg Roedel905d66c2011-09-06 16:03:26 +02001075
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001076 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001077}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001078
Joerg Roedel53723dc2015-05-28 18:41:29 +02001079struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1080{
1081 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001082}
1083EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1084
1085void iommu_domain_free(struct iommu_domain *domain)
1086{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001087 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001088}
1089EXPORT_SYMBOL_GPL(iommu_domain_free);
1090
Joerg Roedel426a2732015-05-28 18:41:30 +02001091static int __iommu_attach_device(struct iommu_domain *domain,
1092 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001093{
Shuah Khanb54db772013-08-15 11:59:26 -06001094 int ret;
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001095 if (unlikely(domain->ops->attach_dev == NULL))
1096 return -ENODEV;
1097
Shuah Khanb54db772013-08-15 11:59:26 -06001098 ret = domain->ops->attach_dev(domain, dev);
1099 if (!ret)
1100 trace_attach_device_to_domain(dev);
1101 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001102}
Joerg Roedel426a2732015-05-28 18:41:30 +02001103
1104int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1105{
1106 struct iommu_group *group;
1107 int ret;
1108
1109 group = iommu_group_get(dev);
1110 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1111 if (group == NULL)
1112 return __iommu_attach_device(domain, dev);
1113
1114 /*
1115 * We have a group - lock it to make sure the device-count doesn't
1116 * change while we are attaching
1117 */
1118 mutex_lock(&group->mutex);
1119 ret = -EINVAL;
1120 if (iommu_group_device_count(group) != 1)
1121 goto out_unlock;
1122
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001123 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001124
1125out_unlock:
1126 mutex_unlock(&group->mutex);
1127 iommu_group_put(group);
1128
1129 return ret;
1130}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001131EXPORT_SYMBOL_GPL(iommu_attach_device);
1132
Joerg Roedel426a2732015-05-28 18:41:30 +02001133static void __iommu_detach_device(struct iommu_domain *domain,
1134 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001135{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001136 if (unlikely(domain->ops->detach_dev == NULL))
1137 return;
1138
1139 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001140 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001141}
Joerg Roedel426a2732015-05-28 18:41:30 +02001142
1143void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1144{
1145 struct iommu_group *group;
1146
1147 group = iommu_group_get(dev);
1148 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1149 if (group == NULL)
1150 return __iommu_detach_device(domain, dev);
1151
1152 mutex_lock(&group->mutex);
1153 if (iommu_group_device_count(group) != 1) {
1154 WARN_ON(1);
1155 goto out_unlock;
1156 }
1157
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001158 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001159
1160out_unlock:
1161 mutex_unlock(&group->mutex);
1162 iommu_group_put(group);
1163}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001164EXPORT_SYMBOL_GPL(iommu_detach_device);
1165
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001166struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1167{
1168 struct iommu_domain *domain;
1169 struct iommu_group *group;
1170
1171 group = iommu_group_get(dev);
1172 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1173 if (group == NULL)
1174 return NULL;
1175
1176 domain = group->domain;
1177
1178 iommu_group_put(group);
1179
1180 return domain;
1181}
1182EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1183
Alex Williamsond72e31c2012-05-30 14:18:53 -06001184/*
1185 * IOMMU groups are really the natrual working unit of the IOMMU, but
1186 * the IOMMU API works on domains and devices. Bridge that gap by
1187 * iterating over the devices in a group. Ideally we'd have a single
1188 * device which represents the requestor ID of the group, but we also
1189 * allow IOMMU drivers to create policy defined minimum sets, where
1190 * the physical hardware may be able to distiguish members, but we
1191 * wish to group them at a higher level (ex. untrusted multi-function
1192 * PCI devices). Thus we attach each device.
1193 */
1194static int iommu_group_do_attach_device(struct device *dev, void *data)
1195{
1196 struct iommu_domain *domain = data;
1197
Joerg Roedel426a2732015-05-28 18:41:30 +02001198 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001199}
1200
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001201static int __iommu_attach_group(struct iommu_domain *domain,
1202 struct iommu_group *group)
1203{
1204 int ret;
1205
1206 if (group->default_domain && group->domain != group->default_domain)
1207 return -EBUSY;
1208
1209 ret = __iommu_group_for_each_dev(group, domain,
1210 iommu_group_do_attach_device);
1211 if (ret == 0)
1212 group->domain = domain;
1213
1214 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001215}
1216
1217int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1218{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001219 int ret;
1220
1221 mutex_lock(&group->mutex);
1222 ret = __iommu_attach_group(domain, group);
1223 mutex_unlock(&group->mutex);
1224
1225 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001226}
1227EXPORT_SYMBOL_GPL(iommu_attach_group);
1228
1229static int iommu_group_do_detach_device(struct device *dev, void *data)
1230{
1231 struct iommu_domain *domain = data;
1232
Joerg Roedel426a2732015-05-28 18:41:30 +02001233 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001234
1235 return 0;
1236}
1237
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001238static void __iommu_detach_group(struct iommu_domain *domain,
1239 struct iommu_group *group)
1240{
1241 int ret;
1242
1243 if (!group->default_domain) {
1244 __iommu_group_for_each_dev(group, domain,
1245 iommu_group_do_detach_device);
1246 group->domain = NULL;
1247 return;
1248 }
1249
1250 if (group->domain == group->default_domain)
1251 return;
1252
1253 /* Detach by re-attaching to the default domain */
1254 ret = __iommu_group_for_each_dev(group, group->default_domain,
1255 iommu_group_do_attach_device);
1256 if (ret != 0)
1257 WARN_ON(1);
1258 else
1259 group->domain = group->default_domain;
1260}
1261
Alex Williamsond72e31c2012-05-30 14:18:53 -06001262void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1263{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001264 mutex_lock(&group->mutex);
1265 __iommu_detach_group(domain, group);
1266 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001267}
1268EXPORT_SYMBOL_GPL(iommu_detach_group);
1269
Varun Sethibb5547ac2013-03-29 01:23:58 +05301270phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001271{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001272 if (unlikely(domain->ops->iova_to_phys == NULL))
1273 return 0;
1274
1275 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001276}
1277EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001278
Alex Williamsonbd139692013-06-17 19:57:34 -06001279static size_t iommu_pgsize(struct iommu_domain *domain,
1280 unsigned long addr_merge, size_t size)
1281{
1282 unsigned int pgsize_idx;
1283 size_t pgsize;
1284
1285 /* Max page size that still fits into 'size' */
1286 pgsize_idx = __fls(size);
1287
1288 /* need to consider alignment requirements ? */
1289 if (likely(addr_merge)) {
1290 /* Max page size allowed by address */
1291 unsigned int align_pgsize_idx = __ffs(addr_merge);
1292 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1293 }
1294
1295 /* build a mask of acceptable page sizes */
1296 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1297
1298 /* throw away page sizes not supported by the hardware */
1299 pgsize &= domain->ops->pgsize_bitmap;
1300
1301 /* make sure we're still sane */
1302 BUG_ON(!pgsize);
1303
1304 /* pick the biggest page */
1305 pgsize_idx = __fls(pgsize);
1306 pgsize = 1UL << pgsize_idx;
1307
1308 return pgsize;
1309}
1310
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001311int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001312 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001313{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001314 unsigned long orig_iova = iova;
1315 unsigned int min_pagesz;
1316 size_t orig_size = size;
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001317 phys_addr_t orig_paddr = paddr;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001318 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001319
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001320 if (unlikely(domain->ops->map == NULL ||
Joerg Roedel57886512013-01-29 13:41:09 +01001321 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001322 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001323
Joerg Roedela10315e2015-03-26 13:43:06 +01001324 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1325 return -EINVAL;
1326
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001327 /* find out the minimum page size supported */
1328 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001329
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001330 /*
1331 * both the virtual address and the physical one, as well as
1332 * the size of the mapping, must be aligned (at least) to the
1333 * size of the smallest page supported by the hardware
1334 */
1335 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001336 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001337 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001338 return -EINVAL;
1339 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001340
Fabio Estevamabedb042013-08-22 10:25:42 -03001341 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001342
1343 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001344 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001345
Fabio Estevamabedb042013-08-22 10:25:42 -03001346 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001347 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001348
1349 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1350 if (ret)
1351 break;
1352
1353 iova += pgsize;
1354 paddr += pgsize;
1355 size -= pgsize;
1356 }
1357
1358 /* unroll mapping in case something went wrong */
1359 if (ret)
1360 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001361 else
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001362 trace_map(orig_iova, orig_paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001363
1364 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001365}
1366EXPORT_SYMBOL_GPL(iommu_map);
1367
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001368size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001369{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001370 size_t unmapped_page, unmapped = 0;
1371 unsigned int min_pagesz;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001372 unsigned long orig_iova = iova;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001373
Joerg Roedel57886512013-01-29 13:41:09 +01001374 if (unlikely(domain->ops->unmap == NULL ||
1375 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001376 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001377
Joerg Roedela10315e2015-03-26 13:43:06 +01001378 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1379 return -EINVAL;
1380
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001381 /* find out the minimum page size supported */
1382 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001383
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001384 /*
1385 * The virtual address, as well as the size of the mapping, must be
1386 * aligned (at least) to the size of the smallest page supported
1387 * by the hardware
1388 */
1389 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001390 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1391 iova, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001392 return -EINVAL;
1393 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001394
Joe Perches6197ca82013-06-23 12:29:04 -07001395 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001396
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001397 /*
1398 * Keep iterating until we either unmap 'size' bytes (or more)
1399 * or we hit an area that isn't mapped.
1400 */
1401 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001402 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001403
Alex Williamsonbd139692013-06-17 19:57:34 -06001404 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001405 if (!unmapped_page)
1406 break;
1407
Joe Perches6197ca82013-06-23 12:29:04 -07001408 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1409 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001410
1411 iova += unmapped_page;
1412 unmapped += unmapped_page;
1413 }
1414
Shuah Khandb8614d2015-01-16 20:53:17 -07001415 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001416 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001417}
1418EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001419
Olav Haugan315786e2014-10-25 09:55:16 -07001420size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1421 struct scatterlist *sg, unsigned int nents, int prot)
1422{
Joerg Roedel38ec0102014-11-04 14:53:51 +01001423 struct scatterlist *s;
Olav Haugan315786e2014-10-25 09:55:16 -07001424 size_t mapped = 0;
Robin Murphy18f23402014-11-25 17:50:55 +00001425 unsigned int i, min_pagesz;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001426 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001427
Robin Murphy18f23402014-11-25 17:50:55 +00001428 if (unlikely(domain->ops->pgsize_bitmap == 0UL))
1429 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -07001430
Robin Murphy18f23402014-11-25 17:50:55 +00001431 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1432
1433 for_each_sg(sg, s, nents, i) {
Dan Williams3e6110f2015-12-15 12:54:06 -08001434 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
Robin Murphy18f23402014-11-25 17:50:55 +00001435
1436 /*
1437 * We are mapping on IOMMU page boundaries, so offset within
1438 * the page must be 0. However, the IOMMU may support pages
1439 * smaller than PAGE_SIZE, so s->offset may still represent
1440 * an offset of that boundary within the CPU page.
1441 */
1442 if (!IS_ALIGNED(s->offset, min_pagesz))
Joerg Roedel38ec0102014-11-04 14:53:51 +01001443 goto out_err;
1444
1445 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1446 if (ret)
1447 goto out_err;
1448
1449 mapped += s->length;
Olav Haugan315786e2014-10-25 09:55:16 -07001450 }
1451
1452 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001453
1454out_err:
1455 /* undo mappings already done */
1456 iommu_unmap(domain, iova, mapped);
1457
1458 return 0;
1459
Olav Haugan315786e2014-10-25 09:55:16 -07001460}
1461EXPORT_SYMBOL_GPL(default_iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001462
1463int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301464 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001465{
1466 if (unlikely(domain->ops->domain_window_enable == NULL))
1467 return -ENODEV;
1468
Varun Sethi80f97f02013-03-29 01:24:00 +05301469 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1470 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001471}
1472EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1473
1474void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1475{
1476 if (unlikely(domain->ops->domain_window_disable == NULL))
1477 return;
1478
1479 return domain->ops->domain_window_disable(domain, wnd_nr);
1480}
1481EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1482
Alex Williamsond72e31c2012-05-30 14:18:53 -06001483static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001484{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001485 iommu_group_kset = kset_create_and_add("iommu_groups",
1486 NULL, kernel_kobj);
1487 ida_init(&iommu_group_ida);
1488 mutex_init(&iommu_group_mutex);
Alex Williamson14604322011-10-21 15:56:05 -04001489
Alex Williamsond72e31c2012-05-30 14:18:53 -06001490 BUG_ON(!iommu_group_kset);
1491
1492 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001493}
Marek Szyprowskid7ef9992015-05-19 15:20:23 +02001494core_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001495
1496int iommu_domain_get_attr(struct iommu_domain *domain,
1497 enum iommu_attr attr, void *data)
1498{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001499 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001500 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001501 int ret = 0;
Joerg Roedel69356712013-02-04 14:00:01 +01001502 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001503
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001504 switch (attr) {
1505 case DOMAIN_ATTR_GEOMETRY:
1506 geometry = data;
1507 *geometry = domain->geometry;
1508
1509 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001510 case DOMAIN_ATTR_PAGING:
1511 paging = data;
1512 *paging = (domain->ops->pgsize_bitmap != 0UL);
1513 break;
Joerg Roedel69356712013-02-04 14:00:01 +01001514 case DOMAIN_ATTR_WINDOWS:
1515 count = data;
1516
1517 if (domain->ops->domain_get_windows != NULL)
1518 *count = domain->ops->domain_get_windows(domain);
1519 else
1520 ret = -ENODEV;
1521
1522 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001523 default:
1524 if (!domain->ops->domain_get_attr)
1525 return -EINVAL;
1526
1527 ret = domain->ops->domain_get_attr(domain, attr, data);
1528 }
1529
1530 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001531}
1532EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1533
1534int iommu_domain_set_attr(struct iommu_domain *domain,
1535 enum iommu_attr attr, void *data)
1536{
Joerg Roedel69356712013-02-04 14:00:01 +01001537 int ret = 0;
1538 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001539
Joerg Roedel69356712013-02-04 14:00:01 +01001540 switch (attr) {
1541 case DOMAIN_ATTR_WINDOWS:
1542 count = data;
1543
1544 if (domain->ops->domain_set_windows != NULL)
1545 ret = domain->ops->domain_set_windows(domain, *count);
1546 else
1547 ret = -ENODEV;
1548
1549 break;
1550 default:
1551 if (domain->ops->domain_set_attr == NULL)
1552 return -EINVAL;
1553
1554 ret = domain->ops->domain_set_attr(domain, attr, data);
1555 }
1556
1557 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001558}
1559EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02001560
1561void iommu_get_dm_regions(struct device *dev, struct list_head *list)
1562{
1563 const struct iommu_ops *ops = dev->bus->iommu_ops;
1564
1565 if (ops && ops->get_dm_regions)
1566 ops->get_dm_regions(dev, list);
1567}
1568
1569void iommu_put_dm_regions(struct device *dev, struct list_head *list)
1570{
1571 const struct iommu_ops *ops = dev->bus->iommu_ops;
1572
1573 if (ops && ops->put_dm_regions)
1574 ops->put_dm_regions(dev, list);
1575}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001576
1577/* Request that a device is direct mapped by the IOMMU */
1578int iommu_request_dm_for_dev(struct device *dev)
1579{
1580 struct iommu_domain *dm_domain;
1581 struct iommu_group *group;
1582 int ret;
1583
1584 /* Device must already be in a group before calling this function */
1585 group = iommu_group_get_for_dev(dev);
Dan Carpenter409e5532015-06-10 13:59:27 +03001586 if (IS_ERR(group))
1587 return PTR_ERR(group);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001588
1589 mutex_lock(&group->mutex);
1590
1591 /* Check if the default domain is already direct mapped */
1592 ret = 0;
1593 if (group->default_domain &&
1594 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1595 goto out;
1596
1597 /* Don't change mappings of existing devices */
1598 ret = -EBUSY;
1599 if (iommu_group_device_count(group) != 1)
1600 goto out;
1601
1602 /* Allocate a direct mapped domain */
1603 ret = -ENOMEM;
1604 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1605 if (!dm_domain)
1606 goto out;
1607
1608 /* Attach the device to the domain */
1609 ret = __iommu_attach_group(dm_domain, group);
1610 if (ret) {
1611 iommu_domain_free(dm_domain);
1612 goto out;
1613 }
1614
1615 /* Make the direct mapped domain the default for this group */
1616 if (group->default_domain)
1617 iommu_domain_free(group->default_domain);
1618 group->default_domain = dm_domain;
1619
1620 pr_info("Using direct mapping for device %s\n", dev_name(dev));
1621
1622 ret = 0;
1623out:
1624 mutex_unlock(&group->mutex);
1625 iommu_group_put(group);
1626
1627 return ret;
1628}