blob: aed906a3e3db7ca7c452b3bbe584d6f6c1e30767 [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>
Robin Murphy57f98d22016-09-13 10:54:14 +010034#include <linux/property.h>
Shuah Khan7f6db172013-08-15 11:59:23 -060035#include <trace/events/iommu.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010036
Alex Williamsond72e31c2012-05-30 14:18:53 -060037static struct kset *iommu_group_kset;
Heiner Kallweite38d1f12016-06-28 20:38:36 +020038static DEFINE_IDA(iommu_group_ida);
Alex Williamsond72e31c2012-05-30 14:18:53 -060039
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
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200147 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600148
Joerg Roedel53723dc2015-05-28 18:41:29 +0200149 if (group->default_domain)
150 iommu_domain_free(group->default_domain);
151
Alex Williamsond72e31c2012-05-30 14:18:53 -0600152 kfree(group->name);
153 kfree(group);
154}
155
156static struct kobj_type iommu_group_ktype = {
157 .sysfs_ops = &iommu_group_sysfs_ops,
158 .release = iommu_group_release,
159};
160
161/**
162 * iommu_group_alloc - Allocate a new group
163 * @name: Optional name to associate with group, visible in sysfs
164 *
165 * This function is called by an iommu driver to allocate a new iommu
166 * group. The iommu group represents the minimum granularity of the iommu.
167 * Upon successful return, the caller holds a reference to the supplied
168 * group in order to hold the group until devices are added. Use
169 * iommu_group_put() to release this extra reference count, allowing the
170 * group to be automatically reclaimed once it has no devices or external
171 * references.
172 */
173struct iommu_group *iommu_group_alloc(void)
174{
175 struct iommu_group *group;
176 int ret;
177
178 group = kzalloc(sizeof(*group), GFP_KERNEL);
179 if (!group)
180 return ERR_PTR(-ENOMEM);
181
182 group->kobj.kset = iommu_group_kset;
183 mutex_init(&group->mutex);
184 INIT_LIST_HEAD(&group->devices);
185 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
186
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200187 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
188 if (ret < 0) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600189 kfree(group);
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200190 return ERR_PTR(ret);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600191 }
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200192 group->id = ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600193
194 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
195 NULL, "%d", group->id);
196 if (ret) {
Heiner Kallweitfeccf392016-06-29 21:13:59 +0200197 ida_simple_remove(&iommu_group_ida, group->id);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600198 kfree(group);
199 return ERR_PTR(ret);
200 }
201
202 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
203 if (!group->devices_kobj) {
204 kobject_put(&group->kobj); /* triggers .release & free */
205 return ERR_PTR(-ENOMEM);
206 }
207
208 /*
209 * The devices_kobj holds a reference on the group kobject, so
210 * as long as that exists so will the group. We can therefore
211 * use the devices_kobj for reference counting.
212 */
213 kobject_put(&group->kobj);
214
Joerg Roedel269aa802015-05-28 18:41:25 +0200215 pr_debug("Allocated group %d\n", group->id);
216
Alex Williamsond72e31c2012-05-30 14:18:53 -0600217 return group;
218}
219EXPORT_SYMBOL_GPL(iommu_group_alloc);
220
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100221struct iommu_group *iommu_group_get_by_id(int id)
222{
223 struct kobject *group_kobj;
224 struct iommu_group *group;
225 const char *name;
226
227 if (!iommu_group_kset)
228 return NULL;
229
230 name = kasprintf(GFP_KERNEL, "%d", id);
231 if (!name)
232 return NULL;
233
234 group_kobj = kset_find_obj(iommu_group_kset, name);
235 kfree(name);
236
237 if (!group_kobj)
238 return NULL;
239
240 group = container_of(group_kobj, struct iommu_group, kobj);
241 BUG_ON(group->id != id);
242
243 kobject_get(group->devices_kobj);
244 kobject_put(&group->kobj);
245
246 return group;
247}
248EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
249
Alex Williamsond72e31c2012-05-30 14:18:53 -0600250/**
251 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
252 * @group: the group
253 *
254 * iommu drivers can store data in the group for use when doing iommu
255 * operations. This function provides a way to retrieve it. Caller
256 * should hold a group reference.
257 */
258void *iommu_group_get_iommudata(struct iommu_group *group)
259{
260 return group->iommu_data;
261}
262EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
263
264/**
265 * iommu_group_set_iommudata - set iommu_data for a group
266 * @group: the group
267 * @iommu_data: new data
268 * @release: release function for iommu_data
269 *
270 * iommu drivers can store data in the group for use when doing iommu
271 * operations. This function provides a way to set the data after
272 * the group has been allocated. Caller should hold a group reference.
273 */
274void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
275 void (*release)(void *iommu_data))
276{
277 group->iommu_data = iommu_data;
278 group->iommu_data_release = release;
279}
280EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
281
282/**
283 * iommu_group_set_name - set name for a group
284 * @group: the group
285 * @name: name
286 *
287 * Allow iommu driver to set a name for a group. When set it will
288 * appear in a name attribute file under the group in sysfs.
289 */
290int iommu_group_set_name(struct iommu_group *group, const char *name)
291{
292 int ret;
293
294 if (group->name) {
295 iommu_group_remove_file(group, &iommu_group_attr_name);
296 kfree(group->name);
297 group->name = NULL;
298 if (!name)
299 return 0;
300 }
301
302 group->name = kstrdup(name, GFP_KERNEL);
303 if (!group->name)
304 return -ENOMEM;
305
306 ret = iommu_group_create_file(group, &iommu_group_attr_name);
307 if (ret) {
308 kfree(group->name);
309 group->name = NULL;
310 return ret;
311 }
312
313 return 0;
314}
315EXPORT_SYMBOL_GPL(iommu_group_set_name);
316
Joerg Roedelbeed2822015-05-28 18:41:34 +0200317static int iommu_group_create_direct_mappings(struct iommu_group *group,
318 struct device *dev)
319{
320 struct iommu_domain *domain = group->default_domain;
321 struct iommu_dm_region *entry;
322 struct list_head mappings;
323 unsigned long pg_size;
324 int ret = 0;
325
326 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
327 return 0;
328
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100329 BUG_ON(!domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200330
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100331 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
Joerg Roedelbeed2822015-05-28 18:41:34 +0200332 INIT_LIST_HEAD(&mappings);
333
334 iommu_get_dm_regions(dev, &mappings);
335
336 /* We need to consider overlapping regions for different devices */
337 list_for_each_entry(entry, &mappings, list) {
338 dma_addr_t start, end, addr;
339
Joerg Roedel33b21a62016-07-05 13:07:53 +0200340 if (domain->ops->apply_dm_region)
341 domain->ops->apply_dm_region(dev, domain, entry);
342
Joerg Roedelbeed2822015-05-28 18:41:34 +0200343 start = ALIGN(entry->start, pg_size);
344 end = ALIGN(entry->start + entry->length, pg_size);
345
346 for (addr = start; addr < end; addr += pg_size) {
347 phys_addr_t phys_addr;
348
349 phys_addr = iommu_iova_to_phys(domain, addr);
350 if (phys_addr)
351 continue;
352
353 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
354 if (ret)
355 goto out;
356 }
357
358 }
359
360out:
361 iommu_put_dm_regions(dev, &mappings);
362
363 return ret;
364}
365
Alex Williamsond72e31c2012-05-30 14:18:53 -0600366/**
367 * iommu_group_add_device - add a device to an iommu group
368 * @group: the group into which to add the device (reference should be held)
369 * @dev: the device
370 *
371 * This function is called by an iommu driver to add a device into a
372 * group. Adding a device increments the group reference count.
373 */
374int iommu_group_add_device(struct iommu_group *group, struct device *dev)
375{
376 int ret, i = 0;
377 struct iommu_device *device;
378
379 device = kzalloc(sizeof(*device), GFP_KERNEL);
380 if (!device)
381 return -ENOMEM;
382
383 device->dev = dev;
384
385 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
Robin Murphy797a8b42017-01-16 12:58:07 +0000386 if (ret)
387 goto err_free_device;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600388
389 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
390rename:
391 if (!device->name) {
Robin Murphy797a8b42017-01-16 12:58:07 +0000392 ret = -ENOMEM;
393 goto err_remove_link;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600394 }
395
396 ret = sysfs_create_link_nowarn(group->devices_kobj,
397 &dev->kobj, device->name);
398 if (ret) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600399 if (ret == -EEXIST && i >= 0) {
400 /*
401 * Account for the slim chance of collision
402 * and append an instance to the name.
403 */
Robin Murphy797a8b42017-01-16 12:58:07 +0000404 kfree(device->name);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600405 device->name = kasprintf(GFP_KERNEL, "%s.%d",
406 kobject_name(&dev->kobj), i++);
407 goto rename;
408 }
Robin Murphy797a8b42017-01-16 12:58:07 +0000409 goto err_free_name;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600410 }
411
412 kobject_get(group->devices_kobj);
413
414 dev->iommu_group = group;
415
Joerg Roedelbeed2822015-05-28 18:41:34 +0200416 iommu_group_create_direct_mappings(group, dev);
417
Alex Williamsond72e31c2012-05-30 14:18:53 -0600418 mutex_lock(&group->mutex);
419 list_add_tail(&device->list, &group->devices);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200420 if (group->domain)
Robin Murphy797a8b42017-01-16 12:58:07 +0000421 ret = __iommu_attach_device(group->domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600422 mutex_unlock(&group->mutex);
Robin Murphy797a8b42017-01-16 12:58:07 +0000423 if (ret)
424 goto err_put_group;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600425
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;
Robin Murphy797a8b42017-01-16 12:58:07 +0000435
436err_put_group:
437 mutex_lock(&group->mutex);
438 list_del(&device->list);
439 mutex_unlock(&group->mutex);
440 dev->iommu_group = NULL;
441 kobject_put(group->devices_kobj);
442err_free_name:
443 kfree(device->name);
444err_remove_link:
445 sysfs_remove_link(&dev->kobj, "iommu_group");
446err_free_device:
447 kfree(device);
448 pr_err("Failed to add device %s to group %d: %d\n", dev_name(dev), group->id, ret);
449 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600450}
451EXPORT_SYMBOL_GPL(iommu_group_add_device);
452
453/**
454 * iommu_group_remove_device - remove a device from it's current group
455 * @dev: device to be removed
456 *
457 * This function is called by an iommu driver to remove the device from
458 * it's current group. This decrements the iommu group reference count.
459 */
460void iommu_group_remove_device(struct device *dev)
461{
462 struct iommu_group *group = dev->iommu_group;
463 struct iommu_device *tmp_device, *device = NULL;
464
Joerg Roedel269aa802015-05-28 18:41:25 +0200465 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
466
Alex Williamsond72e31c2012-05-30 14:18:53 -0600467 /* Pre-notify listeners that a device is being removed. */
468 blocking_notifier_call_chain(&group->notifier,
469 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
470
471 mutex_lock(&group->mutex);
472 list_for_each_entry(tmp_device, &group->devices, list) {
473 if (tmp_device->dev == dev) {
474 device = tmp_device;
475 list_del(&device->list);
476 break;
477 }
478 }
479 mutex_unlock(&group->mutex);
480
481 if (!device)
482 return;
483
484 sysfs_remove_link(group->devices_kobj, device->name);
485 sysfs_remove_link(&dev->kobj, "iommu_group");
486
Shuah Khan2e757082013-08-15 11:59:25 -0600487 trace_remove_device_from_group(group->id, dev);
488
Alex Williamsond72e31c2012-05-30 14:18:53 -0600489 kfree(device->name);
490 kfree(device);
491 dev->iommu_group = NULL;
492 kobject_put(group->devices_kobj);
493}
494EXPORT_SYMBOL_GPL(iommu_group_remove_device);
495
Joerg Roedel426a2732015-05-28 18:41:30 +0200496static int iommu_group_device_count(struct iommu_group *group)
497{
498 struct iommu_device *entry;
499 int ret = 0;
500
501 list_for_each_entry(entry, &group->devices, list)
502 ret++;
503
504 return ret;
505}
506
Alex Williamsond72e31c2012-05-30 14:18:53 -0600507/**
508 * iommu_group_for_each_dev - iterate over each device in the group
509 * @group: the group
510 * @data: caller opaque data to be passed to callback function
511 * @fn: caller supplied callback function
512 *
513 * This function is called by group users to iterate over group devices.
514 * Callers should hold a reference count to the group during callback.
515 * The group->mutex is held across callbacks, which will block calls to
516 * iommu_group_add/remove_device.
517 */
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200518static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
519 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600520{
521 struct iommu_device *device;
522 int ret = 0;
523
Alex Williamsond72e31c2012-05-30 14:18:53 -0600524 list_for_each_entry(device, &group->devices, list) {
525 ret = fn(device->dev, data);
526 if (ret)
527 break;
528 }
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200529 return ret;
530}
531
532
533int iommu_group_for_each_dev(struct iommu_group *group, void *data,
534 int (*fn)(struct device *, void *))
535{
536 int ret;
537
538 mutex_lock(&group->mutex);
539 ret = __iommu_group_for_each_dev(group, data, fn);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600540 mutex_unlock(&group->mutex);
Joerg Roedele39cb8a2015-05-28 18:41:31 +0200541
Alex Williamsond72e31c2012-05-30 14:18:53 -0600542 return ret;
543}
544EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
545
546/**
547 * iommu_group_get - Return the group for a device and increment reference
548 * @dev: get the group that this device belongs to
549 *
550 * This function is called by iommu drivers and users to get the group
551 * for the specified device. If found, the group is returned and the group
552 * reference in incremented, else NULL.
553 */
554struct iommu_group *iommu_group_get(struct device *dev)
555{
556 struct iommu_group *group = dev->iommu_group;
557
558 if (group)
559 kobject_get(group->devices_kobj);
560
561 return group;
562}
563EXPORT_SYMBOL_GPL(iommu_group_get);
564
565/**
Robin Murphy13f59a72016-11-11 17:59:21 +0000566 * iommu_group_ref_get - Increment reference on a group
567 * @group: the group to use, must not be NULL
568 *
569 * This function is called by iommu drivers to take additional references on an
570 * existing group. Returns the given group for convenience.
571 */
572struct iommu_group *iommu_group_ref_get(struct iommu_group *group)
573{
574 kobject_get(group->devices_kobj);
575 return group;
576}
577
578/**
Alex Williamsond72e31c2012-05-30 14:18:53 -0600579 * iommu_group_put - Decrement group reference
580 * @group: the group to use
581 *
582 * This function is called by iommu drivers and users to release the
583 * iommu group. Once the reference count is zero, the group is released.
584 */
585void iommu_group_put(struct iommu_group *group)
586{
587 if (group)
588 kobject_put(group->devices_kobj);
589}
590EXPORT_SYMBOL_GPL(iommu_group_put);
591
592/**
593 * iommu_group_register_notifier - Register a notifier for group changes
594 * @group: the group to watch
595 * @nb: notifier block to signal
596 *
597 * This function allows iommu group users to track changes in a group.
598 * See include/linux/iommu.h for actions sent via this notifier. Caller
599 * should hold a reference to the group throughout notifier registration.
600 */
601int iommu_group_register_notifier(struct iommu_group *group,
602 struct notifier_block *nb)
603{
604 return blocking_notifier_chain_register(&group->notifier, nb);
605}
606EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
607
608/**
609 * iommu_group_unregister_notifier - Unregister a notifier
610 * @group: the group to watch
611 * @nb: notifier block to signal
612 *
613 * Unregister a previously registered group notifier block.
614 */
615int iommu_group_unregister_notifier(struct iommu_group *group,
616 struct notifier_block *nb)
617{
618 return blocking_notifier_chain_unregister(&group->notifier, nb);
619}
620EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
621
622/**
623 * iommu_group_id - Return ID for a group
624 * @group: the group to ID
625 *
626 * Return the unique ID for the group matching the sysfs group number.
627 */
628int iommu_group_id(struct iommu_group *group)
629{
630 return group->id;
631}
632EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400633
Alex Williamsonf096c062014-09-19 10:03:06 -0600634static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
635 unsigned long *devfns);
636
Alex Williamson104a1c12014-07-03 09:51:18 -0600637/*
638 * To consider a PCI device isolated, we require ACS to support Source
639 * Validation, Request Redirection, Completer Redirection, and Upstream
640 * Forwarding. This effectively means that devices cannot spoof their
641 * requester ID, requests and completions cannot be redirected, and all
642 * transactions are forwarded upstream, even as it passes through a
643 * bridge where the target device is downstream.
644 */
645#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
646
Alex Williamsonf096c062014-09-19 10:03:06 -0600647/*
648 * For multifunction devices which are not isolated from each other, find
649 * all the other non-isolated functions and look for existing groups. For
650 * each function, we also need to look for aliases to or from other devices
651 * that may already have a group.
652 */
653static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
654 unsigned long *devfns)
655{
656 struct pci_dev *tmp = NULL;
657 struct iommu_group *group;
658
659 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
660 return NULL;
661
662 for_each_pci_dev(tmp) {
663 if (tmp == pdev || tmp->bus != pdev->bus ||
664 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
665 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
666 continue;
667
668 group = get_pci_alias_group(tmp, devfns);
669 if (group) {
670 pci_dev_put(tmp);
671 return group;
672 }
673 }
674
675 return NULL;
676}
677
678/*
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100679 * Look for aliases to or from the given device for existing groups. DMA
680 * aliases are only supported on the same bus, therefore the search
Alex Williamsonf096c062014-09-19 10:03:06 -0600681 * space is quite small (especially since we're really only looking at pcie
682 * device, and therefore only expect multiple slots on the root complex or
683 * downstream switch ports). It's conceivable though that a pair of
684 * multifunction devices could have aliases between them that would cause a
685 * loop. To prevent this, we use a bitmap to track where we've been.
686 */
687static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
688 unsigned long *devfns)
689{
690 struct pci_dev *tmp = NULL;
691 struct iommu_group *group;
692
693 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
694 return NULL;
695
696 group = iommu_group_get(&pdev->dev);
697 if (group)
698 return group;
699
700 for_each_pci_dev(tmp) {
701 if (tmp == pdev || tmp->bus != pdev->bus)
702 continue;
703
704 /* We alias them or they alias us */
Jacek Lawrynowicz338c3142016-03-03 15:38:02 +0100705 if (pci_devs_are_dma_aliases(pdev, tmp)) {
Alex Williamsonf096c062014-09-19 10:03:06 -0600706 group = get_pci_alias_group(tmp, devfns);
707 if (group) {
708 pci_dev_put(tmp);
709 return group;
710 }
711
712 group = get_pci_function_alias_group(tmp, devfns);
713 if (group) {
714 pci_dev_put(tmp);
715 return group;
716 }
717 }
718 }
719
720 return NULL;
721}
722
Alex Williamson104a1c12014-07-03 09:51:18 -0600723struct group_for_pci_data {
724 struct pci_dev *pdev;
725 struct iommu_group *group;
726};
727
728/*
729 * DMA alias iterator callback, return the last seen device. Stop and return
730 * the IOMMU group if we find one along the way.
731 */
732static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
733{
734 struct group_for_pci_data *data = opaque;
735
736 data->pdev = pdev;
737 data->group = iommu_group_get(&pdev->dev);
738
739 return data->group != NULL;
740}
741
742/*
Joerg Roedel6eab5562015-10-21 23:51:38 +0200743 * Generic device_group call-back function. It just allocates one
744 * iommu-group per device.
745 */
746struct iommu_group *generic_device_group(struct device *dev)
747{
748 struct iommu_group *group;
749
750 group = iommu_group_alloc();
751 if (IS_ERR(group))
752 return NULL;
753
754 return group;
755}
756
757/*
Alex Williamson104a1c12014-07-03 09:51:18 -0600758 * Use standard PCI bus topology, isolation features, and DMA alias quirks
759 * to find or create an IOMMU group for a device.
760 */
Joerg Roedel5e622922015-10-21 23:51:37 +0200761struct iommu_group *pci_device_group(struct device *dev)
Alex Williamson104a1c12014-07-03 09:51:18 -0600762{
Joerg Roedel5e622922015-10-21 23:51:37 +0200763 struct pci_dev *pdev = to_pci_dev(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600764 struct group_for_pci_data data;
765 struct pci_bus *bus;
766 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -0600767 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -0600768
Joerg Roedel5e622922015-10-21 23:51:37 +0200769 if (WARN_ON(!dev_is_pci(dev)))
770 return ERR_PTR(-EINVAL);
771
Alex Williamson104a1c12014-07-03 09:51:18 -0600772 /*
773 * Find the upstream DMA alias for the device. A device must not
774 * be aliased due to topology in order to have its own IOMMU group.
775 * If we find an alias along the way that already belongs to a
776 * group, use it.
777 */
778 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
779 return data.group;
780
781 pdev = data.pdev;
782
783 /*
784 * Continue upstream from the point of minimum IOMMU granularity
785 * due to aliases to the point where devices are protected from
786 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
787 * group, use it.
788 */
789 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
790 if (!bus->self)
791 continue;
792
793 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
794 break;
795
796 pdev = bus->self;
797
798 group = iommu_group_get(&pdev->dev);
799 if (group)
800 return group;
801 }
802
803 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600804 * Look for existing groups on device aliases. If we alias another
805 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -0600806 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600807 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
808 if (group)
809 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600810
811 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600812 * Look for existing groups on non-isolated functions on the same
813 * slot and aliases of those funcions, if any. No need to clear
814 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -0600815 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600816 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
817 if (group)
818 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600819
820 /* No shared group found, allocate new */
Joerg Roedel53723dc2015-05-28 18:41:29 +0200821 group = iommu_group_alloc();
Dan Carpenter409e5532015-06-10 13:59:27 +0300822 if (IS_ERR(group))
823 return NULL;
824
Joerg Roedel53723dc2015-05-28 18:41:29 +0200825 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600826}
827
828/**
829 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
830 * @dev: target device
831 *
832 * This function is intended to be called by IOMMU drivers and extended to
833 * support common, bus-defined algorithms when determining or creating the
834 * IOMMU group for a device. On success, the caller will hold a reference
835 * to the returned IOMMU group, which will already include the provided
836 * device. The reference should be released with iommu_group_put().
837 */
838struct iommu_group *iommu_group_get_for_dev(struct device *dev)
839{
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200840 const struct iommu_ops *ops = dev->bus->iommu_ops;
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200841 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600842 int ret;
843
844 group = iommu_group_get(dev);
845 if (group)
846 return group;
847
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200848 group = ERR_PTR(-EINVAL);
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200849
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200850 if (ops && ops->device_group)
851 group = ops->device_group(dev);
Alex Williamson104a1c12014-07-03 09:51:18 -0600852
853 if (IS_ERR(group))
854 return group;
855
Joerg Roedel12282362015-10-21 23:51:43 +0200856 /*
857 * Try to allocate a default domain - needs support from the
858 * IOMMU driver.
859 */
860 if (!group->default_domain) {
861 group->default_domain = __iommu_domain_alloc(dev->bus,
862 IOMMU_DOMAIN_DMA);
Joerg Roedeleebb8032016-04-04 15:47:48 +0200863 if (!group->domain)
864 group->domain = group->default_domain;
Joerg Roedel12282362015-10-21 23:51:43 +0200865 }
866
Alex Williamson104a1c12014-07-03 09:51:18 -0600867 ret = iommu_group_add_device(group, dev);
868 if (ret) {
869 iommu_group_put(group);
870 return ERR_PTR(ret);
871 }
872
873 return group;
874}
875
Joerg Roedel6827ca82015-05-28 18:41:35 +0200876struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
877{
878 return group->default_domain;
879}
880
Alex Williamson14604322011-10-21 15:56:05 -0400881static int add_iommu_group(struct device *dev, void *data)
882{
Thierry Redingb22f6432014-06-27 09:03:12 +0200883 struct iommu_callback_data *cb = data;
884 const struct iommu_ops *ops = cb->ops;
Joerg Roedel38667f12015-06-29 10:16:08 +0200885 int ret;
Alex Williamson14604322011-10-21 15:56:05 -0400886
Alex Williamsond72e31c2012-05-30 14:18:53 -0600887 if (!ops->add_device)
Marek Szyprowski461bfb3f2014-11-19 11:15:31 +0000888 return 0;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600889
890 WARN_ON(dev->iommu_group);
891
Joerg Roedel38667f12015-06-29 10:16:08 +0200892 ret = ops->add_device(dev);
893
894 /*
895 * We ignore -ENODEV errors for now, as they just mean that the
896 * device is not translated by an IOMMU. We still care about
897 * other errors and fail to initialize when they happen.
898 */
899 if (ret == -ENODEV)
900 ret = 0;
901
902 return ret;
Alex Williamson14604322011-10-21 15:56:05 -0400903}
904
Joerg Roedel8da30142015-05-28 18:41:27 +0200905static int remove_iommu_group(struct device *dev, void *data)
906{
907 struct iommu_callback_data *cb = data;
908 const struct iommu_ops *ops = cb->ops;
909
910 if (ops->remove_device && dev->iommu_group)
911 ops->remove_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -0400912
913 return 0;
914}
915
Alex Williamsond72e31c2012-05-30 14:18:53 -0600916static int iommu_bus_notifier(struct notifier_block *nb,
917 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -0400918{
919 struct device *dev = data;
Thierry Redingb22f6432014-06-27 09:03:12 +0200920 const struct iommu_ops *ops = dev->bus->iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600921 struct iommu_group *group;
922 unsigned long group_action = 0;
Alex Williamson14604322011-10-21 15:56:05 -0400923
Alex Williamsond72e31c2012-05-30 14:18:53 -0600924 /*
925 * ADD/DEL call into iommu driver ops if provided, which may
926 * result in ADD/DEL notifiers to group->notifier
927 */
928 if (action == BUS_NOTIFY_ADD_DEVICE) {
929 if (ops->add_device)
930 return ops->add_device(dev);
Joerg Roedel843cb6d2015-05-28 18:41:28 +0200931 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600932 if (ops->remove_device && dev->iommu_group) {
933 ops->remove_device(dev);
934 return 0;
935 }
936 }
Alex Williamson14604322011-10-21 15:56:05 -0400937
Alex Williamsond72e31c2012-05-30 14:18:53 -0600938 /*
939 * Remaining BUS_NOTIFYs get filtered and republished to the
940 * group, if anyone is listening
941 */
942 group = iommu_group_get(dev);
943 if (!group)
944 return 0;
945
946 switch (action) {
947 case BUS_NOTIFY_BIND_DRIVER:
948 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
949 break;
950 case BUS_NOTIFY_BOUND_DRIVER:
951 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
952 break;
953 case BUS_NOTIFY_UNBIND_DRIVER:
954 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
955 break;
956 case BUS_NOTIFY_UNBOUND_DRIVER:
957 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
958 break;
959 }
960
961 if (group_action)
962 blocking_notifier_call_chain(&group->notifier,
963 group_action, dev);
964
965 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -0400966 return 0;
967}
968
Mark Salterfb3e3062014-09-21 13:58:24 -0400969static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100970{
Mark Salterfb3e3062014-09-21 13:58:24 -0400971 int err;
972 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +0200973 struct iommu_callback_data cb = {
974 .ops = ops,
975 };
976
Mark Salterfb3e3062014-09-21 13:58:24 -0400977 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
978 if (!nb)
979 return -ENOMEM;
980
981 nb->notifier_call = iommu_bus_notifier;
982
983 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +0200984 if (err)
985 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100986
987 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +0200988 if (err)
989 goto out_err;
990
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100991
992 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +0200993
994out_err:
995 /* Clean up */
996 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
997 bus_unregister_notifier(bus, nb);
998
999out_free:
1000 kfree(nb);
1001
1002 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001003}
1004
Joerg Roedelff217762011-08-26 16:48:26 +02001005/**
1006 * bus_set_iommu - set iommu-callbacks for the bus
1007 * @bus: bus.
1008 * @ops: the callbacks provided by the iommu-driver
1009 *
1010 * This function is called by an iommu driver to set the iommu methods
1011 * used for a particular bus. Drivers for devices on that bus can use
1012 * the iommu-api after these ops are registered.
1013 * This special function is needed because IOMMUs are usually devices on
1014 * the bus itself, so the iommu drivers are not initialized when the bus
1015 * is set up. With this function the iommu-driver can set the iommu-ops
1016 * afterwards.
1017 */
Thierry Redingb22f6432014-06-27 09:03:12 +02001018int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001019{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001020 int err;
1021
Joerg Roedelff217762011-08-26 16:48:26 +02001022 if (bus->iommu_ops != NULL)
1023 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001024
Joerg Roedelff217762011-08-26 16:48:26 +02001025 bus->iommu_ops = ops;
1026
1027 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +01001028 err = iommu_bus_init(bus, ops);
1029 if (err)
1030 bus->iommu_ops = NULL;
1031
1032 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001033}
Joerg Roedelff217762011-08-26 16:48:26 +02001034EXPORT_SYMBOL_GPL(bus_set_iommu);
1035
Joerg Roedela1b60c12011-09-06 18:46:34 +02001036bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001037{
Joerg Roedel94441c32011-09-06 18:58:54 +02001038 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001039}
Joerg Roedela1b60c12011-09-06 18:46:34 +02001040EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001041
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +02001042bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1043{
1044 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1045 return false;
1046
1047 return bus->iommu_ops->capable(cap);
1048}
1049EXPORT_SYMBOL_GPL(iommu_capable);
1050
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001051/**
1052 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1053 * @domain: iommu domain
1054 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001055 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -04001056 *
1057 * This function should be used by IOMMU users which want to be notified
1058 * whenever an IOMMU fault happens.
1059 *
1060 * The fault handler itself should return 0 on success, and an appropriate
1061 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001062 */
1063void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001064 iommu_fault_handler_t handler,
1065 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001066{
1067 BUG_ON(!domain);
1068
1069 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +03001070 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001071}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -04001072EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -04001073
Joerg Roedel53723dc2015-05-28 18:41:29 +02001074static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1075 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001076{
1077 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001078
Joerg Roedel94441c32011-09-06 18:58:54 +02001079 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +02001080 return NULL;
1081
Joerg Roedel53723dc2015-05-28 18:41:29 +02001082 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001083 if (!domain)
1084 return NULL;
1085
Joerg Roedel8539c7c2015-03-26 13:43:05 +01001086 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +02001087 domain->type = type;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001088 /* Assume all sizes by default; the driver may override this later */
1089 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
Joerg Roedel905d66c2011-09-06 16:03:26 +02001090
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001091 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001092}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001093
Joerg Roedel53723dc2015-05-28 18:41:29 +02001094struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1095{
1096 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001097}
1098EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1099
1100void iommu_domain_free(struct iommu_domain *domain)
1101{
Joerg Roedel89be34a2015-03-26 13:43:19 +01001102 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001103}
1104EXPORT_SYMBOL_GPL(iommu_domain_free);
1105
Joerg Roedel426a2732015-05-28 18:41:30 +02001106static int __iommu_attach_device(struct iommu_domain *domain,
1107 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001108{
Shuah Khanb54db772013-08-15 11:59:26 -06001109 int ret;
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001110 if (unlikely(domain->ops->attach_dev == NULL))
1111 return -ENODEV;
1112
Shuah Khanb54db772013-08-15 11:59:26 -06001113 ret = domain->ops->attach_dev(domain, dev);
1114 if (!ret)
1115 trace_attach_device_to_domain(dev);
1116 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001117}
Joerg Roedel426a2732015-05-28 18:41:30 +02001118
1119int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1120{
1121 struct iommu_group *group;
1122 int ret;
1123
1124 group = iommu_group_get(dev);
1125 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1126 if (group == NULL)
1127 return __iommu_attach_device(domain, dev);
1128
1129 /*
1130 * We have a group - lock it to make sure the device-count doesn't
1131 * change while we are attaching
1132 */
1133 mutex_lock(&group->mutex);
1134 ret = -EINVAL;
1135 if (iommu_group_device_count(group) != 1)
1136 goto out_unlock;
1137
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001138 ret = __iommu_attach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001139
1140out_unlock:
1141 mutex_unlock(&group->mutex);
1142 iommu_group_put(group);
1143
1144 return ret;
1145}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001146EXPORT_SYMBOL_GPL(iommu_attach_device);
1147
Joerg Roedel426a2732015-05-28 18:41:30 +02001148static void __iommu_detach_device(struct iommu_domain *domain,
1149 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001150{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001151 if (unlikely(domain->ops->detach_dev == NULL))
1152 return;
1153
1154 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001155 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001156}
Joerg Roedel426a2732015-05-28 18:41:30 +02001157
1158void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1159{
1160 struct iommu_group *group;
1161
1162 group = iommu_group_get(dev);
1163 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1164 if (group == NULL)
1165 return __iommu_detach_device(domain, dev);
1166
1167 mutex_lock(&group->mutex);
1168 if (iommu_group_device_count(group) != 1) {
1169 WARN_ON(1);
1170 goto out_unlock;
1171 }
1172
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001173 __iommu_detach_group(domain, group);
Joerg Roedel426a2732015-05-28 18:41:30 +02001174
1175out_unlock:
1176 mutex_unlock(&group->mutex);
1177 iommu_group_put(group);
1178}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001179EXPORT_SYMBOL_GPL(iommu_detach_device);
1180
Joerg Roedel2c1296d2015-05-28 18:41:32 +02001181struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1182{
1183 struct iommu_domain *domain;
1184 struct iommu_group *group;
1185
1186 group = iommu_group_get(dev);
1187 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1188 if (group == NULL)
1189 return NULL;
1190
1191 domain = group->domain;
1192
1193 iommu_group_put(group);
1194
1195 return domain;
1196}
1197EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1198
Alex Williamsond72e31c2012-05-30 14:18:53 -06001199/*
1200 * IOMMU groups are really the natrual working unit of the IOMMU, but
1201 * the IOMMU API works on domains and devices. Bridge that gap by
1202 * iterating over the devices in a group. Ideally we'd have a single
1203 * device which represents the requestor ID of the group, but we also
1204 * allow IOMMU drivers to create policy defined minimum sets, where
1205 * the physical hardware may be able to distiguish members, but we
1206 * wish to group them at a higher level (ex. untrusted multi-function
1207 * PCI devices). Thus we attach each device.
1208 */
1209static int iommu_group_do_attach_device(struct device *dev, void *data)
1210{
1211 struct iommu_domain *domain = data;
1212
Joerg Roedel426a2732015-05-28 18:41:30 +02001213 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001214}
1215
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001216static int __iommu_attach_group(struct iommu_domain *domain,
1217 struct iommu_group *group)
1218{
1219 int ret;
1220
1221 if (group->default_domain && group->domain != group->default_domain)
1222 return -EBUSY;
1223
1224 ret = __iommu_group_for_each_dev(group, domain,
1225 iommu_group_do_attach_device);
1226 if (ret == 0)
1227 group->domain = domain;
1228
1229 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001230}
1231
1232int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1233{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001234 int ret;
1235
1236 mutex_lock(&group->mutex);
1237 ret = __iommu_attach_group(domain, group);
1238 mutex_unlock(&group->mutex);
1239
1240 return ret;
Alex Williamsond72e31c2012-05-30 14:18:53 -06001241}
1242EXPORT_SYMBOL_GPL(iommu_attach_group);
1243
1244static int iommu_group_do_detach_device(struct device *dev, void *data)
1245{
1246 struct iommu_domain *domain = data;
1247
Joerg Roedel426a2732015-05-28 18:41:30 +02001248 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001249
1250 return 0;
1251}
1252
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001253static void __iommu_detach_group(struct iommu_domain *domain,
1254 struct iommu_group *group)
1255{
1256 int ret;
1257
1258 if (!group->default_domain) {
1259 __iommu_group_for_each_dev(group, domain,
1260 iommu_group_do_detach_device);
1261 group->domain = NULL;
1262 return;
1263 }
1264
1265 if (group->domain == group->default_domain)
1266 return;
1267
1268 /* Detach by re-attaching to the default domain */
1269 ret = __iommu_group_for_each_dev(group, group->default_domain,
1270 iommu_group_do_attach_device);
1271 if (ret != 0)
1272 WARN_ON(1);
1273 else
1274 group->domain = group->default_domain;
1275}
1276
Alex Williamsond72e31c2012-05-30 14:18:53 -06001277void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1278{
Joerg Roedele39cb8a2015-05-28 18:41:31 +02001279 mutex_lock(&group->mutex);
1280 __iommu_detach_group(domain, group);
1281 mutex_unlock(&group->mutex);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001282}
1283EXPORT_SYMBOL_GPL(iommu_detach_group);
1284
Varun Sethibb5547a2013-03-29 01:23:58 +05301285phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001286{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001287 if (unlikely(domain->ops->iova_to_phys == NULL))
1288 return 0;
1289
1290 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001291}
1292EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001293
Alex Williamsonbd139692013-06-17 19:57:34 -06001294static size_t iommu_pgsize(struct iommu_domain *domain,
1295 unsigned long addr_merge, size_t size)
1296{
1297 unsigned int pgsize_idx;
1298 size_t pgsize;
1299
1300 /* Max page size that still fits into 'size' */
1301 pgsize_idx = __fls(size);
1302
1303 /* need to consider alignment requirements ? */
1304 if (likely(addr_merge)) {
1305 /* Max page size allowed by address */
1306 unsigned int align_pgsize_idx = __ffs(addr_merge);
1307 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1308 }
1309
1310 /* build a mask of acceptable page sizes */
1311 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1312
1313 /* throw away page sizes not supported by the hardware */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001314 pgsize &= domain->pgsize_bitmap;
Alex Williamsonbd139692013-06-17 19:57:34 -06001315
1316 /* make sure we're still sane */
1317 BUG_ON(!pgsize);
1318
1319 /* pick the biggest page */
1320 pgsize_idx = __fls(pgsize);
1321 pgsize = 1UL << pgsize_idx;
1322
1323 return pgsize;
1324}
1325
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001326int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001327 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001328{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001329 unsigned long orig_iova = iova;
1330 unsigned int min_pagesz;
1331 size_t orig_size = size;
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001332 phys_addr_t orig_paddr = paddr;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001333 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001334
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001335 if (unlikely(domain->ops->map == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001336 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001337 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001338
Joerg Roedela10315e2015-03-26 13:43:06 +01001339 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1340 return -EINVAL;
1341
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001342 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001343 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001344
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001345 /*
1346 * both the virtual address and the physical one, as well as
1347 * the size of the mapping, must be aligned (at least) to the
1348 * size of the smallest page supported by the hardware
1349 */
1350 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001351 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001352 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001353 return -EINVAL;
1354 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001355
Fabio Estevamabedb042013-08-22 10:25:42 -03001356 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001357
1358 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001359 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001360
Fabio Estevamabedb042013-08-22 10:25:42 -03001361 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001362 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001363
1364 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1365 if (ret)
1366 break;
1367
1368 iova += pgsize;
1369 paddr += pgsize;
1370 size -= pgsize;
1371 }
1372
1373 /* unroll mapping in case something went wrong */
1374 if (ret)
1375 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001376 else
Yoshihiro Shimoda06bfcaa2016-02-10 10:18:04 +09001377 trace_map(orig_iova, orig_paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001378
1379 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001380}
1381EXPORT_SYMBOL_GPL(iommu_map);
1382
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001383size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001384{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001385 size_t unmapped_page, unmapped = 0;
1386 unsigned int min_pagesz;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001387 unsigned long orig_iova = iova;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001388
Joerg Roedel57886512013-01-29 13:41:09 +01001389 if (unlikely(domain->ops->unmap == NULL ||
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001390 domain->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001391 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001392
Joerg Roedela10315e2015-03-26 13:43:06 +01001393 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1394 return -EINVAL;
1395
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001396 /* find out the minimum page size supported */
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001397 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001398
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001399 /*
1400 * The virtual address, as well as the size of the mapping, must be
1401 * aligned (at least) to the size of the smallest page supported
1402 * by the hardware
1403 */
1404 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001405 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1406 iova, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001407 return -EINVAL;
1408 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001409
Joe Perches6197ca82013-06-23 12:29:04 -07001410 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001411
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001412 /*
1413 * Keep iterating until we either unmap 'size' bytes (or more)
1414 * or we hit an area that isn't mapped.
1415 */
1416 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001417 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001418
Alex Williamsonbd139692013-06-17 19:57:34 -06001419 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001420 if (!unmapped_page)
1421 break;
1422
Joe Perches6197ca82013-06-23 12:29:04 -07001423 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1424 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001425
1426 iova += unmapped_page;
1427 unmapped += unmapped_page;
1428 }
1429
Shuah Khandb8614d2015-01-16 20:53:17 -07001430 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001431 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001432}
1433EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001434
Olav Haugan315786e2014-10-25 09:55:16 -07001435size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1436 struct scatterlist *sg, unsigned int nents, int prot)
1437{
Joerg Roedel38ec0102014-11-04 14:53:51 +01001438 struct scatterlist *s;
Olav Haugan315786e2014-10-25 09:55:16 -07001439 size_t mapped = 0;
Robin Murphy18f23402014-11-25 17:50:55 +00001440 unsigned int i, min_pagesz;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001441 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001442
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001443 if (unlikely(domain->pgsize_bitmap == 0UL))
Robin Murphy18f23402014-11-25 17:50:55 +00001444 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -07001445
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001446 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
Robin Murphy18f23402014-11-25 17:50:55 +00001447
1448 for_each_sg(sg, s, nents, i) {
Dan Williams3e6110f2015-12-15 12:54:06 -08001449 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
Robin Murphy18f23402014-11-25 17:50:55 +00001450
1451 /*
1452 * We are mapping on IOMMU page boundaries, so offset within
1453 * the page must be 0. However, the IOMMU may support pages
1454 * smaller than PAGE_SIZE, so s->offset may still represent
1455 * an offset of that boundary within the CPU page.
1456 */
1457 if (!IS_ALIGNED(s->offset, min_pagesz))
Joerg Roedel38ec0102014-11-04 14:53:51 +01001458 goto out_err;
1459
1460 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1461 if (ret)
1462 goto out_err;
1463
1464 mapped += s->length;
Olav Haugan315786e2014-10-25 09:55:16 -07001465 }
1466
1467 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001468
1469out_err:
1470 /* undo mappings already done */
1471 iommu_unmap(domain, iova, mapped);
1472
1473 return 0;
1474
Olav Haugan315786e2014-10-25 09:55:16 -07001475}
1476EXPORT_SYMBOL_GPL(default_iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001477
1478int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301479 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001480{
1481 if (unlikely(domain->ops->domain_window_enable == NULL))
1482 return -ENODEV;
1483
Varun Sethi80f97f02013-03-29 01:24:00 +05301484 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1485 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001486}
1487EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1488
1489void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1490{
1491 if (unlikely(domain->ops->domain_window_disable == NULL))
1492 return;
1493
1494 return domain->ops->domain_window_disable(domain, wnd_nr);
1495}
1496EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1497
Alex Williamsond72e31c2012-05-30 14:18:53 -06001498static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001499{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001500 iommu_group_kset = kset_create_and_add("iommu_groups",
1501 NULL, kernel_kobj);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001502 BUG_ON(!iommu_group_kset);
1503
1504 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001505}
Marek Szyprowskid7ef9992015-05-19 15:20:23 +02001506core_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001507
1508int iommu_domain_get_attr(struct iommu_domain *domain,
1509 enum iommu_attr attr, void *data)
1510{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001511 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001512 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001513 int ret = 0;
Joerg Roedel69356712013-02-04 14:00:01 +01001514 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001515
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001516 switch (attr) {
1517 case DOMAIN_ATTR_GEOMETRY:
1518 geometry = data;
1519 *geometry = domain->geometry;
1520
1521 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001522 case DOMAIN_ATTR_PAGING:
1523 paging = data;
Robin Murphyd16e0fa2016-04-07 18:42:06 +01001524 *paging = (domain->pgsize_bitmap != 0UL);
Joerg Roedeld2e12162013-01-29 13:49:04 +01001525 break;
Joerg Roedel69356712013-02-04 14:00:01 +01001526 case DOMAIN_ATTR_WINDOWS:
1527 count = data;
1528
1529 if (domain->ops->domain_get_windows != NULL)
1530 *count = domain->ops->domain_get_windows(domain);
1531 else
1532 ret = -ENODEV;
1533
1534 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001535 default:
1536 if (!domain->ops->domain_get_attr)
1537 return -EINVAL;
1538
1539 ret = domain->ops->domain_get_attr(domain, attr, data);
1540 }
1541
1542 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001543}
1544EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1545
1546int iommu_domain_set_attr(struct iommu_domain *domain,
1547 enum iommu_attr attr, void *data)
1548{
Joerg Roedel69356712013-02-04 14:00:01 +01001549 int ret = 0;
1550 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001551
Joerg Roedel69356712013-02-04 14:00:01 +01001552 switch (attr) {
1553 case DOMAIN_ATTR_WINDOWS:
1554 count = data;
1555
1556 if (domain->ops->domain_set_windows != NULL)
1557 ret = domain->ops->domain_set_windows(domain, *count);
1558 else
1559 ret = -ENODEV;
1560
1561 break;
1562 default:
1563 if (domain->ops->domain_set_attr == NULL)
1564 return -EINVAL;
1565
1566 ret = domain->ops->domain_set_attr(domain, attr, data);
1567 }
1568
1569 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001570}
1571EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
Joerg Roedela1015c22015-05-28 18:41:33 +02001572
1573void iommu_get_dm_regions(struct device *dev, struct list_head *list)
1574{
1575 const struct iommu_ops *ops = dev->bus->iommu_ops;
1576
1577 if (ops && ops->get_dm_regions)
1578 ops->get_dm_regions(dev, list);
1579}
1580
1581void iommu_put_dm_regions(struct device *dev, struct list_head *list)
1582{
1583 const struct iommu_ops *ops = dev->bus->iommu_ops;
1584
1585 if (ops && ops->put_dm_regions)
1586 ops->put_dm_regions(dev, list);
1587}
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001588
1589/* Request that a device is direct mapped by the IOMMU */
1590int iommu_request_dm_for_dev(struct device *dev)
1591{
1592 struct iommu_domain *dm_domain;
1593 struct iommu_group *group;
1594 int ret;
1595
1596 /* Device must already be in a group before calling this function */
1597 group = iommu_group_get_for_dev(dev);
Dan Carpenter409e5532015-06-10 13:59:27 +03001598 if (IS_ERR(group))
1599 return PTR_ERR(group);
Joerg Roedeld290f1e2015-05-28 18:41:36 +02001600
1601 mutex_lock(&group->mutex);
1602
1603 /* Check if the default domain is already direct mapped */
1604 ret = 0;
1605 if (group->default_domain &&
1606 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1607 goto out;
1608
1609 /* Don't change mappings of existing devices */
1610 ret = -EBUSY;
1611 if (iommu_group_device_count(group) != 1)
1612 goto out;
1613
1614 /* Allocate a direct mapped domain */
1615 ret = -ENOMEM;
1616 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1617 if (!dm_domain)
1618 goto out;
1619
1620 /* Attach the device to the domain */
1621 ret = __iommu_attach_group(dm_domain, group);
1622 if (ret) {
1623 iommu_domain_free(dm_domain);
1624 goto out;
1625 }
1626
1627 /* Make the direct mapped domain the default for this group */
1628 if (group->default_domain)
1629 iommu_domain_free(group->default_domain);
1630 group->default_domain = dm_domain;
1631
1632 pr_info("Using direct mapping for device %s\n", dev_name(dev));
1633
1634 ret = 0;
1635out:
1636 mutex_unlock(&group->mutex);
1637 iommu_group_put(group);
1638
1639 return ret;
1640}
Robin Murphy57f98d22016-09-13 10:54:14 +01001641
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +00001642struct iommu_instance {
1643 struct list_head list;
1644 struct fwnode_handle *fwnode;
1645 const struct iommu_ops *ops;
1646};
1647static LIST_HEAD(iommu_instance_list);
1648static DEFINE_SPINLOCK(iommu_instance_lock);
1649
1650void iommu_register_instance(struct fwnode_handle *fwnode,
1651 const struct iommu_ops *ops)
1652{
1653 struct iommu_instance *iommu = kzalloc(sizeof(*iommu), GFP_KERNEL);
1654
1655 if (WARN_ON(!iommu))
1656 return;
1657
1658 of_node_get(to_of_node(fwnode));
1659 INIT_LIST_HEAD(&iommu->list);
1660 iommu->fwnode = fwnode;
1661 iommu->ops = ops;
1662 spin_lock(&iommu_instance_lock);
1663 list_add_tail(&iommu->list, &iommu_instance_list);
1664 spin_unlock(&iommu_instance_lock);
1665}
1666
1667const struct iommu_ops *iommu_get_instance(struct fwnode_handle *fwnode)
1668{
1669 struct iommu_instance *instance;
1670 const struct iommu_ops *ops = NULL;
1671
1672 spin_lock(&iommu_instance_lock);
1673 list_for_each_entry(instance, &iommu_instance_list, list)
1674 if (instance->fwnode == fwnode) {
1675 ops = instance->ops;
1676 break;
1677 }
1678 spin_unlock(&iommu_instance_lock);
1679 return ops;
1680}
1681
Robin Murphy57f98d22016-09-13 10:54:14 +01001682int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
1683 const struct iommu_ops *ops)
1684{
1685 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1686
1687 if (fwspec)
1688 return ops == fwspec->ops ? 0 : -EINVAL;
1689
1690 fwspec = kzalloc(sizeof(*fwspec), GFP_KERNEL);
1691 if (!fwspec)
1692 return -ENOMEM;
1693
1694 of_node_get(to_of_node(iommu_fwnode));
1695 fwspec->iommu_fwnode = iommu_fwnode;
1696 fwspec->ops = ops;
1697 dev->iommu_fwspec = fwspec;
1698 return 0;
1699}
1700EXPORT_SYMBOL_GPL(iommu_fwspec_init);
1701
1702void iommu_fwspec_free(struct device *dev)
1703{
1704 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1705
1706 if (fwspec) {
1707 fwnode_handle_put(fwspec->iommu_fwnode);
1708 kfree(fwspec);
1709 dev->iommu_fwspec = NULL;
1710 }
1711}
1712EXPORT_SYMBOL_GPL(iommu_fwspec_free);
1713
1714int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids)
1715{
1716 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1717 size_t size;
1718 int i;
1719
1720 if (!fwspec)
1721 return -EINVAL;
1722
1723 size = offsetof(struct iommu_fwspec, ids[fwspec->num_ids + num_ids]);
1724 if (size > sizeof(*fwspec)) {
1725 fwspec = krealloc(dev->iommu_fwspec, size, GFP_KERNEL);
1726 if (!fwspec)
1727 return -ENOMEM;
1728 }
1729
1730 for (i = 0; i < num_ids; i++)
1731 fwspec->ids[fwspec->num_ids + i] = ids[i];
1732
1733 fwspec->num_ids += num_ids;
1734 dev->iommu_fwspec = fwspec;
1735 return 0;
1736}
1737EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids);