blob: ef73923db2f1a267a0dda70e16f490aed3e375c5 [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;
Alex Williamsond72e31c2012-05-30 14:18:53 -060055};
56
57struct iommu_device {
58 struct list_head list;
59 struct device *dev;
60 char *name;
61};
62
63struct iommu_group_attribute {
64 struct attribute attr;
65 ssize_t (*show)(struct iommu_group *group, char *buf);
66 ssize_t (*store)(struct iommu_group *group,
67 const char *buf, size_t count);
68};
69
70#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
71struct iommu_group_attribute iommu_group_attr_##_name = \
72 __ATTR(_name, _mode, _show, _store)
73
74#define to_iommu_group_attr(_attr) \
75 container_of(_attr, struct iommu_group_attribute, attr)
76#define to_iommu_group(_kobj) \
77 container_of(_kobj, struct iommu_group, kobj)
78
Joerg Roedel53723dc2015-05-28 18:41:29 +020079static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
80 unsigned type);
81
Alex Williamsond72e31c2012-05-30 14:18:53 -060082static ssize_t iommu_group_attr_show(struct kobject *kobj,
83 struct attribute *__attr, char *buf)
Alex Williamson14604322011-10-21 15:56:05 -040084{
Alex Williamsond72e31c2012-05-30 14:18:53 -060085 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
86 struct iommu_group *group = to_iommu_group(kobj);
87 ssize_t ret = -EIO;
Alex Williamson14604322011-10-21 15:56:05 -040088
Alex Williamsond72e31c2012-05-30 14:18:53 -060089 if (attr->show)
90 ret = attr->show(group, buf);
91 return ret;
Alex Williamson14604322011-10-21 15:56:05 -040092}
Alex Williamsond72e31c2012-05-30 14:18:53 -060093
94static ssize_t iommu_group_attr_store(struct kobject *kobj,
95 struct attribute *__attr,
96 const char *buf, size_t count)
97{
98 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
99 struct iommu_group *group = to_iommu_group(kobj);
100 ssize_t ret = -EIO;
101
102 if (attr->store)
103 ret = attr->store(group, buf, count);
104 return ret;
105}
106
107static const struct sysfs_ops iommu_group_sysfs_ops = {
108 .show = iommu_group_attr_show,
109 .store = iommu_group_attr_store,
110};
111
112static int iommu_group_create_file(struct iommu_group *group,
113 struct iommu_group_attribute *attr)
114{
115 return sysfs_create_file(&group->kobj, &attr->attr);
116}
117
118static void iommu_group_remove_file(struct iommu_group *group,
119 struct iommu_group_attribute *attr)
120{
121 sysfs_remove_file(&group->kobj, &attr->attr);
122}
123
124static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
125{
126 return sprintf(buf, "%s\n", group->name);
127}
128
129static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
130
131static void iommu_group_release(struct kobject *kobj)
132{
133 struct iommu_group *group = to_iommu_group(kobj);
134
Joerg Roedel269aa802015-05-28 18:41:25 +0200135 pr_debug("Releasing group %d\n", group->id);
136
Alex Williamsond72e31c2012-05-30 14:18:53 -0600137 if (group->iommu_data_release)
138 group->iommu_data_release(group->iommu_data);
139
140 mutex_lock(&iommu_group_mutex);
141 ida_remove(&iommu_group_ida, group->id);
142 mutex_unlock(&iommu_group_mutex);
143
Joerg Roedel53723dc2015-05-28 18:41:29 +0200144 if (group->default_domain)
145 iommu_domain_free(group->default_domain);
146
Alex Williamsond72e31c2012-05-30 14:18:53 -0600147 kfree(group->name);
148 kfree(group);
149}
150
151static struct kobj_type iommu_group_ktype = {
152 .sysfs_ops = &iommu_group_sysfs_ops,
153 .release = iommu_group_release,
154};
155
156/**
157 * iommu_group_alloc - Allocate a new group
158 * @name: Optional name to associate with group, visible in sysfs
159 *
160 * This function is called by an iommu driver to allocate a new iommu
161 * group. The iommu group represents the minimum granularity of the iommu.
162 * Upon successful return, the caller holds a reference to the supplied
163 * group in order to hold the group until devices are added. Use
164 * iommu_group_put() to release this extra reference count, allowing the
165 * group to be automatically reclaimed once it has no devices or external
166 * references.
167 */
168struct iommu_group *iommu_group_alloc(void)
169{
170 struct iommu_group *group;
171 int ret;
172
173 group = kzalloc(sizeof(*group), GFP_KERNEL);
174 if (!group)
175 return ERR_PTR(-ENOMEM);
176
177 group->kobj.kset = iommu_group_kset;
178 mutex_init(&group->mutex);
179 INIT_LIST_HEAD(&group->devices);
180 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
181
182 mutex_lock(&iommu_group_mutex);
183
184again:
185 if (unlikely(0 == ida_pre_get(&iommu_group_ida, GFP_KERNEL))) {
186 kfree(group);
187 mutex_unlock(&iommu_group_mutex);
188 return ERR_PTR(-ENOMEM);
189 }
190
191 if (-EAGAIN == ida_get_new(&iommu_group_ida, &group->id))
192 goto again;
193
194 mutex_unlock(&iommu_group_mutex);
195
196 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
197 NULL, "%d", group->id);
198 if (ret) {
199 mutex_lock(&iommu_group_mutex);
200 ida_remove(&iommu_group_ida, group->id);
201 mutex_unlock(&iommu_group_mutex);
202 kfree(group);
203 return ERR_PTR(ret);
204 }
205
206 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
207 if (!group->devices_kobj) {
208 kobject_put(&group->kobj); /* triggers .release & free */
209 return ERR_PTR(-ENOMEM);
210 }
211
212 /*
213 * The devices_kobj holds a reference on the group kobject, so
214 * as long as that exists so will the group. We can therefore
215 * use the devices_kobj for reference counting.
216 */
217 kobject_put(&group->kobj);
218
Joerg Roedel269aa802015-05-28 18:41:25 +0200219 pr_debug("Allocated group %d\n", group->id);
220
Alex Williamsond72e31c2012-05-30 14:18:53 -0600221 return group;
222}
223EXPORT_SYMBOL_GPL(iommu_group_alloc);
224
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100225struct iommu_group *iommu_group_get_by_id(int id)
226{
227 struct kobject *group_kobj;
228 struct iommu_group *group;
229 const char *name;
230
231 if (!iommu_group_kset)
232 return NULL;
233
234 name = kasprintf(GFP_KERNEL, "%d", id);
235 if (!name)
236 return NULL;
237
238 group_kobj = kset_find_obj(iommu_group_kset, name);
239 kfree(name);
240
241 if (!group_kobj)
242 return NULL;
243
244 group = container_of(group_kobj, struct iommu_group, kobj);
245 BUG_ON(group->id != id);
246
247 kobject_get(group->devices_kobj);
248 kobject_put(&group->kobj);
249
250 return group;
251}
252EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
253
Alex Williamsond72e31c2012-05-30 14:18:53 -0600254/**
255 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
256 * @group: the group
257 *
258 * iommu drivers can store data in the group for use when doing iommu
259 * operations. This function provides a way to retrieve it. Caller
260 * should hold a group reference.
261 */
262void *iommu_group_get_iommudata(struct iommu_group *group)
263{
264 return group->iommu_data;
265}
266EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
267
268/**
269 * iommu_group_set_iommudata - set iommu_data for a group
270 * @group: the group
271 * @iommu_data: new data
272 * @release: release function for iommu_data
273 *
274 * iommu drivers can store data in the group for use when doing iommu
275 * operations. This function provides a way to set the data after
276 * the group has been allocated. Caller should hold a group reference.
277 */
278void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
279 void (*release)(void *iommu_data))
280{
281 group->iommu_data = iommu_data;
282 group->iommu_data_release = release;
283}
284EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
285
286/**
287 * iommu_group_set_name - set name for a group
288 * @group: the group
289 * @name: name
290 *
291 * Allow iommu driver to set a name for a group. When set it will
292 * appear in a name attribute file under the group in sysfs.
293 */
294int iommu_group_set_name(struct iommu_group *group, const char *name)
295{
296 int ret;
297
298 if (group->name) {
299 iommu_group_remove_file(group, &iommu_group_attr_name);
300 kfree(group->name);
301 group->name = NULL;
302 if (!name)
303 return 0;
304 }
305
306 group->name = kstrdup(name, GFP_KERNEL);
307 if (!group->name)
308 return -ENOMEM;
309
310 ret = iommu_group_create_file(group, &iommu_group_attr_name);
311 if (ret) {
312 kfree(group->name);
313 group->name = NULL;
314 return ret;
315 }
316
317 return 0;
318}
319EXPORT_SYMBOL_GPL(iommu_group_set_name);
320
321/**
322 * iommu_group_add_device - add a device to an iommu group
323 * @group: the group into which to add the device (reference should be held)
324 * @dev: the device
325 *
326 * This function is called by an iommu driver to add a device into a
327 * group. Adding a device increments the group reference count.
328 */
329int iommu_group_add_device(struct iommu_group *group, struct device *dev)
330{
331 int ret, i = 0;
332 struct iommu_device *device;
333
334 device = kzalloc(sizeof(*device), GFP_KERNEL);
335 if (!device)
336 return -ENOMEM;
337
338 device->dev = dev;
339
340 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
341 if (ret) {
342 kfree(device);
343 return ret;
344 }
345
346 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
347rename:
348 if (!device->name) {
349 sysfs_remove_link(&dev->kobj, "iommu_group");
350 kfree(device);
351 return -ENOMEM;
352 }
353
354 ret = sysfs_create_link_nowarn(group->devices_kobj,
355 &dev->kobj, device->name);
356 if (ret) {
357 kfree(device->name);
358 if (ret == -EEXIST && i >= 0) {
359 /*
360 * Account for the slim chance of collision
361 * and append an instance to the name.
362 */
363 device->name = kasprintf(GFP_KERNEL, "%s.%d",
364 kobject_name(&dev->kobj), i++);
365 goto rename;
366 }
367
368 sysfs_remove_link(&dev->kobj, "iommu_group");
369 kfree(device);
370 return ret;
371 }
372
373 kobject_get(group->devices_kobj);
374
375 dev->iommu_group = group;
376
377 mutex_lock(&group->mutex);
378 list_add_tail(&device->list, &group->devices);
379 mutex_unlock(&group->mutex);
380
381 /* Notify any listeners about change to group. */
382 blocking_notifier_call_chain(&group->notifier,
383 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
Shuah Khand1cf7e82013-08-15 11:59:24 -0600384
385 trace_add_device_to_group(group->id, dev);
Joerg Roedel269aa802015-05-28 18:41:25 +0200386
387 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
388
Alex Williamsond72e31c2012-05-30 14:18:53 -0600389 return 0;
390}
391EXPORT_SYMBOL_GPL(iommu_group_add_device);
392
393/**
394 * iommu_group_remove_device - remove a device from it's current group
395 * @dev: device to be removed
396 *
397 * This function is called by an iommu driver to remove the device from
398 * it's current group. This decrements the iommu group reference count.
399 */
400void iommu_group_remove_device(struct device *dev)
401{
402 struct iommu_group *group = dev->iommu_group;
403 struct iommu_device *tmp_device, *device = NULL;
404
Joerg Roedel269aa802015-05-28 18:41:25 +0200405 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
406
Alex Williamsond72e31c2012-05-30 14:18:53 -0600407 /* Pre-notify listeners that a device is being removed. */
408 blocking_notifier_call_chain(&group->notifier,
409 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
410
411 mutex_lock(&group->mutex);
412 list_for_each_entry(tmp_device, &group->devices, list) {
413 if (tmp_device->dev == dev) {
414 device = tmp_device;
415 list_del(&device->list);
416 break;
417 }
418 }
419 mutex_unlock(&group->mutex);
420
421 if (!device)
422 return;
423
424 sysfs_remove_link(group->devices_kobj, device->name);
425 sysfs_remove_link(&dev->kobj, "iommu_group");
426
Shuah Khan2e757082013-08-15 11:59:25 -0600427 trace_remove_device_from_group(group->id, dev);
428
Alex Williamsond72e31c2012-05-30 14:18:53 -0600429 kfree(device->name);
430 kfree(device);
431 dev->iommu_group = NULL;
432 kobject_put(group->devices_kobj);
433}
434EXPORT_SYMBOL_GPL(iommu_group_remove_device);
435
Joerg Roedel426a2732015-05-28 18:41:30 +0200436static int iommu_group_device_count(struct iommu_group *group)
437{
438 struct iommu_device *entry;
439 int ret = 0;
440
441 list_for_each_entry(entry, &group->devices, list)
442 ret++;
443
444 return ret;
445}
446
Alex Williamsond72e31c2012-05-30 14:18:53 -0600447/**
448 * iommu_group_for_each_dev - iterate over each device in the group
449 * @group: the group
450 * @data: caller opaque data to be passed to callback function
451 * @fn: caller supplied callback function
452 *
453 * This function is called by group users to iterate over group devices.
454 * Callers should hold a reference count to the group during callback.
455 * The group->mutex is held across callbacks, which will block calls to
456 * iommu_group_add/remove_device.
457 */
458int iommu_group_for_each_dev(struct iommu_group *group, void *data,
459 int (*fn)(struct device *, void *))
460{
461 struct iommu_device *device;
462 int ret = 0;
463
464 mutex_lock(&group->mutex);
465 list_for_each_entry(device, &group->devices, list) {
466 ret = fn(device->dev, data);
467 if (ret)
468 break;
469 }
470 mutex_unlock(&group->mutex);
471 return ret;
472}
473EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
474
475/**
476 * iommu_group_get - Return the group for a device and increment reference
477 * @dev: get the group that this device belongs to
478 *
479 * This function is called by iommu drivers and users to get the group
480 * for the specified device. If found, the group is returned and the group
481 * reference in incremented, else NULL.
482 */
483struct iommu_group *iommu_group_get(struct device *dev)
484{
485 struct iommu_group *group = dev->iommu_group;
486
487 if (group)
488 kobject_get(group->devices_kobj);
489
490 return group;
491}
492EXPORT_SYMBOL_GPL(iommu_group_get);
493
494/**
495 * iommu_group_put - Decrement group reference
496 * @group: the group to use
497 *
498 * This function is called by iommu drivers and users to release the
499 * iommu group. Once the reference count is zero, the group is released.
500 */
501void iommu_group_put(struct iommu_group *group)
502{
503 if (group)
504 kobject_put(group->devices_kobj);
505}
506EXPORT_SYMBOL_GPL(iommu_group_put);
507
508/**
509 * iommu_group_register_notifier - Register a notifier for group changes
510 * @group: the group to watch
511 * @nb: notifier block to signal
512 *
513 * This function allows iommu group users to track changes in a group.
514 * See include/linux/iommu.h for actions sent via this notifier. Caller
515 * should hold a reference to the group throughout notifier registration.
516 */
517int iommu_group_register_notifier(struct iommu_group *group,
518 struct notifier_block *nb)
519{
520 return blocking_notifier_chain_register(&group->notifier, nb);
521}
522EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
523
524/**
525 * iommu_group_unregister_notifier - Unregister a notifier
526 * @group: the group to watch
527 * @nb: notifier block to signal
528 *
529 * Unregister a previously registered group notifier block.
530 */
531int iommu_group_unregister_notifier(struct iommu_group *group,
532 struct notifier_block *nb)
533{
534 return blocking_notifier_chain_unregister(&group->notifier, nb);
535}
536EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
537
538/**
539 * iommu_group_id - Return ID for a group
540 * @group: the group to ID
541 *
542 * Return the unique ID for the group matching the sysfs group number.
543 */
544int iommu_group_id(struct iommu_group *group)
545{
546 return group->id;
547}
548EXPORT_SYMBOL_GPL(iommu_group_id);
Alex Williamson14604322011-10-21 15:56:05 -0400549
Alex Williamsonf096c062014-09-19 10:03:06 -0600550static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
551 unsigned long *devfns);
552
Alex Williamson104a1c12014-07-03 09:51:18 -0600553/*
554 * To consider a PCI device isolated, we require ACS to support Source
555 * Validation, Request Redirection, Completer Redirection, and Upstream
556 * Forwarding. This effectively means that devices cannot spoof their
557 * requester ID, requests and completions cannot be redirected, and all
558 * transactions are forwarded upstream, even as it passes through a
559 * bridge where the target device is downstream.
560 */
561#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
562
Alex Williamsonf096c062014-09-19 10:03:06 -0600563/*
564 * For multifunction devices which are not isolated from each other, find
565 * all the other non-isolated functions and look for existing groups. For
566 * each function, we also need to look for aliases to or from other devices
567 * that may already have a group.
568 */
569static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
570 unsigned long *devfns)
571{
572 struct pci_dev *tmp = NULL;
573 struct iommu_group *group;
574
575 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
576 return NULL;
577
578 for_each_pci_dev(tmp) {
579 if (tmp == pdev || tmp->bus != pdev->bus ||
580 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
581 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
582 continue;
583
584 group = get_pci_alias_group(tmp, devfns);
585 if (group) {
586 pci_dev_put(tmp);
587 return group;
588 }
589 }
590
591 return NULL;
592}
593
594/*
595 * Look for aliases to or from the given device for exisiting groups. The
596 * dma_alias_devfn only supports aliases on the same bus, therefore the search
597 * space is quite small (especially since we're really only looking at pcie
598 * device, and therefore only expect multiple slots on the root complex or
599 * downstream switch ports). It's conceivable though that a pair of
600 * multifunction devices could have aliases between them that would cause a
601 * loop. To prevent this, we use a bitmap to track where we've been.
602 */
603static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
604 unsigned long *devfns)
605{
606 struct pci_dev *tmp = NULL;
607 struct iommu_group *group;
608
609 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
610 return NULL;
611
612 group = iommu_group_get(&pdev->dev);
613 if (group)
614 return group;
615
616 for_each_pci_dev(tmp) {
617 if (tmp == pdev || tmp->bus != pdev->bus)
618 continue;
619
620 /* We alias them or they alias us */
621 if (((pdev->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
622 pdev->dma_alias_devfn == tmp->devfn) ||
623 ((tmp->dev_flags & PCI_DEV_FLAGS_DMA_ALIAS_DEVFN) &&
624 tmp->dma_alias_devfn == pdev->devfn)) {
625
626 group = get_pci_alias_group(tmp, devfns);
627 if (group) {
628 pci_dev_put(tmp);
629 return group;
630 }
631
632 group = get_pci_function_alias_group(tmp, devfns);
633 if (group) {
634 pci_dev_put(tmp);
635 return group;
636 }
637 }
638 }
639
640 return NULL;
641}
642
Alex Williamson104a1c12014-07-03 09:51:18 -0600643struct group_for_pci_data {
644 struct pci_dev *pdev;
645 struct iommu_group *group;
646};
647
648/*
649 * DMA alias iterator callback, return the last seen device. Stop and return
650 * the IOMMU group if we find one along the way.
651 */
652static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
653{
654 struct group_for_pci_data *data = opaque;
655
656 data->pdev = pdev;
657 data->group = iommu_group_get(&pdev->dev);
658
659 return data->group != NULL;
660}
661
662/*
663 * Use standard PCI bus topology, isolation features, and DMA alias quirks
664 * to find or create an IOMMU group for a device.
665 */
666static struct iommu_group *iommu_group_get_for_pci_dev(struct pci_dev *pdev)
667{
668 struct group_for_pci_data data;
669 struct pci_bus *bus;
670 struct iommu_group *group = NULL;
Alex Williamsonf096c062014-09-19 10:03:06 -0600671 u64 devfns[4] = { 0 };
Alex Williamson104a1c12014-07-03 09:51:18 -0600672
673 /*
674 * Find the upstream DMA alias for the device. A device must not
675 * be aliased due to topology in order to have its own IOMMU group.
676 * If we find an alias along the way that already belongs to a
677 * group, use it.
678 */
679 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
680 return data.group;
681
682 pdev = data.pdev;
683
684 /*
685 * Continue upstream from the point of minimum IOMMU granularity
686 * due to aliases to the point where devices are protected from
687 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
688 * group, use it.
689 */
690 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
691 if (!bus->self)
692 continue;
693
694 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
695 break;
696
697 pdev = bus->self;
698
699 group = iommu_group_get(&pdev->dev);
700 if (group)
701 return group;
702 }
703
704 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600705 * Look for existing groups on device aliases. If we alias another
706 * device or another device aliases us, use the same group.
Alex Williamson104a1c12014-07-03 09:51:18 -0600707 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600708 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
709 if (group)
710 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600711
712 /*
Alex Williamsonf096c062014-09-19 10:03:06 -0600713 * Look for existing groups on non-isolated functions on the same
714 * slot and aliases of those funcions, if any. No need to clear
715 * the search bitmap, the tested devfns are still valid.
Alex Williamson104a1c12014-07-03 09:51:18 -0600716 */
Alex Williamsonf096c062014-09-19 10:03:06 -0600717 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
718 if (group)
719 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600720
721 /* No shared group found, allocate new */
Joerg Roedel53723dc2015-05-28 18:41:29 +0200722 group = iommu_group_alloc();
723 if (group) {
724 /*
725 * Try to allocate a default domain - needs support from the
726 * IOMMU driver.
727 */
728 group->default_domain = __iommu_domain_alloc(pdev->dev.bus,
729 IOMMU_DOMAIN_DMA);
730 }
731
732 return group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600733}
734
735/**
736 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
737 * @dev: target device
738 *
739 * This function is intended to be called by IOMMU drivers and extended to
740 * support common, bus-defined algorithms when determining or creating the
741 * IOMMU group for a device. On success, the caller will hold a reference
742 * to the returned IOMMU group, which will already include the provided
743 * device. The reference should be released with iommu_group_put().
744 */
745struct iommu_group *iommu_group_get_for_dev(struct device *dev)
746{
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200747 struct iommu_group *group;
Alex Williamson104a1c12014-07-03 09:51:18 -0600748 int ret;
749
750 group = iommu_group_get(dev);
751 if (group)
752 return group;
753
Joerg Roedelc4a783b2014-08-21 22:32:08 +0200754 if (!dev_is_pci(dev))
755 return ERR_PTR(-EINVAL);
756
757 group = iommu_group_get_for_pci_dev(to_pci_dev(dev));
Alex Williamson104a1c12014-07-03 09:51:18 -0600758
759 if (IS_ERR(group))
760 return group;
761
762 ret = iommu_group_add_device(group, dev);
763 if (ret) {
764 iommu_group_put(group);
765 return ERR_PTR(ret);
766 }
767
768 return group;
769}
770
Alex Williamson14604322011-10-21 15:56:05 -0400771static int add_iommu_group(struct device *dev, void *data)
772{
Thierry Redingb22f6432014-06-27 09:03:12 +0200773 struct iommu_callback_data *cb = data;
774 const struct iommu_ops *ops = cb->ops;
Alex Williamson14604322011-10-21 15:56:05 -0400775
Alex Williamsond72e31c2012-05-30 14:18:53 -0600776 if (!ops->add_device)
Marek Szyprowski461bfb3f2014-11-19 11:15:31 +0000777 return 0;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600778
779 WARN_ON(dev->iommu_group);
780
Joerg Roedel19762d72015-05-28 18:41:26 +0200781 return ops->add_device(dev);
Alex Williamson14604322011-10-21 15:56:05 -0400782}
783
Joerg Roedel8da30142015-05-28 18:41:27 +0200784static int remove_iommu_group(struct device *dev, void *data)
785{
786 struct iommu_callback_data *cb = data;
787 const struct iommu_ops *ops = cb->ops;
788
789 if (ops->remove_device && dev->iommu_group)
790 ops->remove_device(dev);
791
792 return 0;
793}
794
Alex Williamsond72e31c2012-05-30 14:18:53 -0600795static int iommu_bus_notifier(struct notifier_block *nb,
796 unsigned long action, void *data)
Alex Williamson14604322011-10-21 15:56:05 -0400797{
798 struct device *dev = data;
Thierry Redingb22f6432014-06-27 09:03:12 +0200799 const struct iommu_ops *ops = dev->bus->iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -0600800 struct iommu_group *group;
801 unsigned long group_action = 0;
Alex Williamson14604322011-10-21 15:56:05 -0400802
Alex Williamsond72e31c2012-05-30 14:18:53 -0600803 /*
804 * ADD/DEL call into iommu driver ops if provided, which may
805 * result in ADD/DEL notifiers to group->notifier
806 */
807 if (action == BUS_NOTIFY_ADD_DEVICE) {
808 if (ops->add_device)
809 return ops->add_device(dev);
Joerg Roedel843cb6d2015-05-28 18:41:28 +0200810 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
Alex Williamsond72e31c2012-05-30 14:18:53 -0600811 if (ops->remove_device && dev->iommu_group) {
812 ops->remove_device(dev);
813 return 0;
814 }
815 }
Alex Williamson14604322011-10-21 15:56:05 -0400816
Alex Williamsond72e31c2012-05-30 14:18:53 -0600817 /*
818 * Remaining BUS_NOTIFYs get filtered and republished to the
819 * group, if anyone is listening
820 */
821 group = iommu_group_get(dev);
822 if (!group)
823 return 0;
824
825 switch (action) {
826 case BUS_NOTIFY_BIND_DRIVER:
827 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
828 break;
829 case BUS_NOTIFY_BOUND_DRIVER:
830 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
831 break;
832 case BUS_NOTIFY_UNBIND_DRIVER:
833 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
834 break;
835 case BUS_NOTIFY_UNBOUND_DRIVER:
836 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
837 break;
838 }
839
840 if (group_action)
841 blocking_notifier_call_chain(&group->notifier,
842 group_action, dev);
843
844 iommu_group_put(group);
Alex Williamson14604322011-10-21 15:56:05 -0400845 return 0;
846}
847
Mark Salterfb3e3062014-09-21 13:58:24 -0400848static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100849{
Mark Salterfb3e3062014-09-21 13:58:24 -0400850 int err;
851 struct notifier_block *nb;
Thierry Redingb22f6432014-06-27 09:03:12 +0200852 struct iommu_callback_data cb = {
853 .ops = ops,
854 };
855
Mark Salterfb3e3062014-09-21 13:58:24 -0400856 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
857 if (!nb)
858 return -ENOMEM;
859
860 nb->notifier_call = iommu_bus_notifier;
861
862 err = bus_register_notifier(bus, nb);
Joerg Roedel8da30142015-05-28 18:41:27 +0200863 if (err)
864 goto out_free;
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100865
866 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
Joerg Roedel8da30142015-05-28 18:41:27 +0200867 if (err)
868 goto out_err;
869
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100870
871 return 0;
Joerg Roedel8da30142015-05-28 18:41:27 +0200872
873out_err:
874 /* Clean up */
875 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
876 bus_unregister_notifier(bus, nb);
877
878out_free:
879 kfree(nb);
880
881 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100882}
883
Joerg Roedelff217762011-08-26 16:48:26 +0200884/**
885 * bus_set_iommu - set iommu-callbacks for the bus
886 * @bus: bus.
887 * @ops: the callbacks provided by the iommu-driver
888 *
889 * This function is called by an iommu driver to set the iommu methods
890 * used for a particular bus. Drivers for devices on that bus can use
891 * the iommu-api after these ops are registered.
892 * This special function is needed because IOMMUs are usually devices on
893 * the bus itself, so the iommu drivers are not initialized when the bus
894 * is set up. With this function the iommu-driver can set the iommu-ops
895 * afterwards.
896 */
Thierry Redingb22f6432014-06-27 09:03:12 +0200897int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100898{
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100899 int err;
900
Joerg Roedelff217762011-08-26 16:48:26 +0200901 if (bus->iommu_ops != NULL)
902 return -EBUSY;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100903
Joerg Roedelff217762011-08-26 16:48:26 +0200904 bus->iommu_ops = ops;
905
906 /* Do IOMMU specific setup for this bus-type */
Heiko Stübnerd7da6bd2014-10-29 01:22:56 +0100907 err = iommu_bus_init(bus, ops);
908 if (err)
909 bus->iommu_ops = NULL;
910
911 return err;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100912}
Joerg Roedelff217762011-08-26 16:48:26 +0200913EXPORT_SYMBOL_GPL(bus_set_iommu);
914
Joerg Roedela1b60c12011-09-06 18:46:34 +0200915bool iommu_present(struct bus_type *bus)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100916{
Joerg Roedel94441c32011-09-06 18:58:54 +0200917 return bus->iommu_ops != NULL;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100918}
Joerg Roedela1b60c12011-09-06 18:46:34 +0200919EXPORT_SYMBOL_GPL(iommu_present);
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100920
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200921bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
922{
923 if (!bus->iommu_ops || !bus->iommu_ops->capable)
924 return false;
925
926 return bus->iommu_ops->capable(cap);
927}
928EXPORT_SYMBOL_GPL(iommu_capable);
929
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400930/**
931 * iommu_set_fault_handler() - set a fault handler for an iommu domain
932 * @domain: iommu domain
933 * @handler: fault handler
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300934 * @token: user data, will be passed back to the fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400935 *
936 * This function should be used by IOMMU users which want to be notified
937 * whenever an IOMMU fault happens.
938 *
939 * The fault handler itself should return 0 on success, and an appropriate
940 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400941 */
942void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300943 iommu_fault_handler_t handler,
944 void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400945{
946 BUG_ON(!domain);
947
948 domain->handler = handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300949 domain->handler_token = token;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400950}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -0400951EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400952
Joerg Roedel53723dc2015-05-28 18:41:29 +0200953static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
954 unsigned type)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100955{
956 struct iommu_domain *domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100957
Joerg Roedel94441c32011-09-06 18:58:54 +0200958 if (bus == NULL || bus->iommu_ops == NULL)
Joerg Roedel905d66c2011-09-06 16:03:26 +0200959 return NULL;
960
Joerg Roedel53723dc2015-05-28 18:41:29 +0200961 domain = bus->iommu_ops->domain_alloc(type);
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100962 if (!domain)
963 return NULL;
964
Joerg Roedel8539c7c2015-03-26 13:43:05 +0100965 domain->ops = bus->iommu_ops;
Joerg Roedel53723dc2015-05-28 18:41:29 +0200966 domain->type = type;
Joerg Roedel905d66c2011-09-06 16:03:26 +0200967
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100968 return domain;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100969}
Joerg Roedel53723dc2015-05-28 18:41:29 +0200970
971struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
972{
973 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
974}
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100975EXPORT_SYMBOL_GPL(iommu_domain_alloc);
976
977void iommu_domain_free(struct iommu_domain *domain)
978{
Joerg Roedel89be34a2015-03-26 13:43:19 +0100979 domain->ops->domain_free(domain);
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100980}
981EXPORT_SYMBOL_GPL(iommu_domain_free);
982
Joerg Roedel426a2732015-05-28 18:41:30 +0200983static int __iommu_attach_device(struct iommu_domain *domain,
984 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100985{
Shuah Khanb54db772013-08-15 11:59:26 -0600986 int ret;
Joerg Roedele5aa7f02011-09-06 16:44:29 +0200987 if (unlikely(domain->ops->attach_dev == NULL))
988 return -ENODEV;
989
Shuah Khanb54db772013-08-15 11:59:26 -0600990 ret = domain->ops->attach_dev(domain, dev);
991 if (!ret)
992 trace_attach_device_to_domain(dev);
993 return ret;
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100994}
Joerg Roedel426a2732015-05-28 18:41:30 +0200995
996int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
997{
998 struct iommu_group *group;
999 int ret;
1000
1001 group = iommu_group_get(dev);
1002 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1003 if (group == NULL)
1004 return __iommu_attach_device(domain, dev);
1005
1006 /*
1007 * We have a group - lock it to make sure the device-count doesn't
1008 * change while we are attaching
1009 */
1010 mutex_lock(&group->mutex);
1011 ret = -EINVAL;
1012 if (iommu_group_device_count(group) != 1)
1013 goto out_unlock;
1014
1015 ret = __iommu_attach_device(domain, dev);
1016
1017out_unlock:
1018 mutex_unlock(&group->mutex);
1019 iommu_group_put(group);
1020
1021 return ret;
1022}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001023EXPORT_SYMBOL_GPL(iommu_attach_device);
1024
Joerg Roedel426a2732015-05-28 18:41:30 +02001025static void __iommu_detach_device(struct iommu_domain *domain,
1026 struct device *dev)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001027{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001028 if (unlikely(domain->ops->detach_dev == NULL))
1029 return;
1030
1031 domain->ops->detach_dev(domain, dev);
Shuah Khan69980632013-08-15 11:59:27 -06001032 trace_detach_device_from_domain(dev);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001033}
Joerg Roedel426a2732015-05-28 18:41:30 +02001034
1035void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1036{
1037 struct iommu_group *group;
1038
1039 group = iommu_group_get(dev);
1040 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1041 if (group == NULL)
1042 return __iommu_detach_device(domain, dev);
1043
1044 mutex_lock(&group->mutex);
1045 if (iommu_group_device_count(group) != 1) {
1046 WARN_ON(1);
1047 goto out_unlock;
1048 }
1049
1050 __iommu_detach_device(domain, dev);
1051
1052out_unlock:
1053 mutex_unlock(&group->mutex);
1054 iommu_group_put(group);
1055}
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001056EXPORT_SYMBOL_GPL(iommu_detach_device);
1057
Alex Williamsond72e31c2012-05-30 14:18:53 -06001058/*
1059 * IOMMU groups are really the natrual working unit of the IOMMU, but
1060 * the IOMMU API works on domains and devices. Bridge that gap by
1061 * iterating over the devices in a group. Ideally we'd have a single
1062 * device which represents the requestor ID of the group, but we also
1063 * allow IOMMU drivers to create policy defined minimum sets, where
1064 * the physical hardware may be able to distiguish members, but we
1065 * wish to group them at a higher level (ex. untrusted multi-function
1066 * PCI devices). Thus we attach each device.
1067 */
1068static int iommu_group_do_attach_device(struct device *dev, void *data)
1069{
1070 struct iommu_domain *domain = data;
1071
Joerg Roedel426a2732015-05-28 18:41:30 +02001072 return __iommu_attach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001073}
1074
1075int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1076{
1077 return iommu_group_for_each_dev(group, domain,
1078 iommu_group_do_attach_device);
1079}
1080EXPORT_SYMBOL_GPL(iommu_attach_group);
1081
1082static int iommu_group_do_detach_device(struct device *dev, void *data)
1083{
1084 struct iommu_domain *domain = data;
1085
Joerg Roedel426a2732015-05-28 18:41:30 +02001086 __iommu_detach_device(domain, dev);
Alex Williamsond72e31c2012-05-30 14:18:53 -06001087
1088 return 0;
1089}
1090
1091void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1092{
1093 iommu_group_for_each_dev(group, domain, iommu_group_do_detach_device);
1094}
1095EXPORT_SYMBOL_GPL(iommu_detach_group);
1096
Varun Sethibb5547ac2013-03-29 01:23:58 +05301097phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001098{
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001099 if (unlikely(domain->ops->iova_to_phys == NULL))
1100 return 0;
1101
1102 return domain->ops->iova_to_phys(domain, iova);
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001103}
1104EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +08001105
Alex Williamsonbd139692013-06-17 19:57:34 -06001106static size_t iommu_pgsize(struct iommu_domain *domain,
1107 unsigned long addr_merge, size_t size)
1108{
1109 unsigned int pgsize_idx;
1110 size_t pgsize;
1111
1112 /* Max page size that still fits into 'size' */
1113 pgsize_idx = __fls(size);
1114
1115 /* need to consider alignment requirements ? */
1116 if (likely(addr_merge)) {
1117 /* Max page size allowed by address */
1118 unsigned int align_pgsize_idx = __ffs(addr_merge);
1119 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1120 }
1121
1122 /* build a mask of acceptable page sizes */
1123 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1124
1125 /* throw away page sizes not supported by the hardware */
1126 pgsize &= domain->ops->pgsize_bitmap;
1127
1128 /* make sure we're still sane */
1129 BUG_ON(!pgsize);
1130
1131 /* pick the biggest page */
1132 pgsize_idx = __fls(pgsize);
1133 pgsize = 1UL << pgsize_idx;
1134
1135 return pgsize;
1136}
1137
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001138int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001139 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001140{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001141 unsigned long orig_iova = iova;
1142 unsigned int min_pagesz;
1143 size_t orig_size = size;
1144 int ret = 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001145
Joerg Roedel9db4ad92014-08-19 00:19:26 +02001146 if (unlikely(domain->ops->map == NULL ||
Joerg Roedel57886512013-01-29 13:41:09 +01001147 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001148 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001149
Joerg Roedela10315e2015-03-26 13:43:06 +01001150 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1151 return -EINVAL;
1152
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001153 /* find out the minimum page size supported */
1154 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001155
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001156 /*
1157 * both the virtual address and the physical one, as well as
1158 * the size of the mapping, must be aligned (at least) to the
1159 * size of the smallest page supported by the hardware
1160 */
1161 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
Fabio Estevamabedb042013-08-22 10:25:42 -03001162 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001163 iova, &paddr, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001164 return -EINVAL;
1165 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001166
Fabio Estevamabedb042013-08-22 10:25:42 -03001167 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001168
1169 while (size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001170 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001171
Fabio Estevamabedb042013-08-22 10:25:42 -03001172 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
Joe Perches6197ca82013-06-23 12:29:04 -07001173 iova, &paddr, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001174
1175 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1176 if (ret)
1177 break;
1178
1179 iova += pgsize;
1180 paddr += pgsize;
1181 size -= pgsize;
1182 }
1183
1184 /* unroll mapping in case something went wrong */
1185 if (ret)
1186 iommu_unmap(domain, orig_iova, orig_size - size);
Shuah Khane0be7c82013-08-15 11:59:28 -06001187 else
Shuah Khan860cd642015-01-15 19:29:43 -07001188 trace_map(orig_iova, paddr, orig_size);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001189
1190 return ret;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001191}
1192EXPORT_SYMBOL_GPL(iommu_map);
1193
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001194size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001195{
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001196 size_t unmapped_page, unmapped = 0;
1197 unsigned int min_pagesz;
Shuah Khan6fd492f2015-01-16 16:47:19 -07001198 unsigned long orig_iova = iova;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001199
Joerg Roedel57886512013-01-29 13:41:09 +01001200 if (unlikely(domain->ops->unmap == NULL ||
1201 domain->ops->pgsize_bitmap == 0UL))
Joerg Roedele5aa7f02011-09-06 16:44:29 +02001202 return -ENODEV;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001203
Joerg Roedela10315e2015-03-26 13:43:06 +01001204 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1205 return -EINVAL;
1206
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001207 /* find out the minimum page size supported */
1208 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001209
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001210 /*
1211 * The virtual address, as well as the size of the mapping, must be
1212 * aligned (at least) to the size of the smallest page supported
1213 * by the hardware
1214 */
1215 if (!IS_ALIGNED(iova | size, min_pagesz)) {
Joe Perches6197ca82013-06-23 12:29:04 -07001216 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1217 iova, size, min_pagesz);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001218 return -EINVAL;
1219 }
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001220
Joe Perches6197ca82013-06-23 12:29:04 -07001221 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001222
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001223 /*
1224 * Keep iterating until we either unmap 'size' bytes (or more)
1225 * or we hit an area that isn't mapped.
1226 */
1227 while (unmapped < size) {
Alex Williamsonbd139692013-06-17 19:57:34 -06001228 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001229
Alex Williamsonbd139692013-06-17 19:57:34 -06001230 unmapped_page = domain->ops->unmap(domain, iova, pgsize);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001231 if (!unmapped_page)
1232 break;
1233
Joe Perches6197ca82013-06-23 12:29:04 -07001234 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1235 iova, unmapped_page);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001236
1237 iova += unmapped_page;
1238 unmapped += unmapped_page;
1239 }
1240
Shuah Khandb8614d2015-01-16 20:53:17 -07001241 trace_unmap(orig_iova, size, unmapped);
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +02001242 return unmapped;
Joerg Roedelcefc53c2010-01-08 13:35:09 +01001243}
1244EXPORT_SYMBOL_GPL(iommu_unmap);
Alex Williamson14604322011-10-21 15:56:05 -04001245
Olav Haugan315786e2014-10-25 09:55:16 -07001246size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1247 struct scatterlist *sg, unsigned int nents, int prot)
1248{
Joerg Roedel38ec0102014-11-04 14:53:51 +01001249 struct scatterlist *s;
Olav Haugan315786e2014-10-25 09:55:16 -07001250 size_t mapped = 0;
Robin Murphy18f23402014-11-25 17:50:55 +00001251 unsigned int i, min_pagesz;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001252 int ret;
Olav Haugan315786e2014-10-25 09:55:16 -07001253
Robin Murphy18f23402014-11-25 17:50:55 +00001254 if (unlikely(domain->ops->pgsize_bitmap == 0UL))
1255 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -07001256
Robin Murphy18f23402014-11-25 17:50:55 +00001257 min_pagesz = 1 << __ffs(domain->ops->pgsize_bitmap);
1258
1259 for_each_sg(sg, s, nents, i) {
1260 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
1261
1262 /*
1263 * We are mapping on IOMMU page boundaries, so offset within
1264 * the page must be 0. However, the IOMMU may support pages
1265 * smaller than PAGE_SIZE, so s->offset may still represent
1266 * an offset of that boundary within the CPU page.
1267 */
1268 if (!IS_ALIGNED(s->offset, min_pagesz))
Joerg Roedel38ec0102014-11-04 14:53:51 +01001269 goto out_err;
1270
1271 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1272 if (ret)
1273 goto out_err;
1274
1275 mapped += s->length;
Olav Haugan315786e2014-10-25 09:55:16 -07001276 }
1277
1278 return mapped;
Joerg Roedel38ec0102014-11-04 14:53:51 +01001279
1280out_err:
1281 /* undo mappings already done */
1282 iommu_unmap(domain, iova, mapped);
1283
1284 return 0;
1285
Olav Haugan315786e2014-10-25 09:55:16 -07001286}
1287EXPORT_SYMBOL_GPL(default_iommu_map_sg);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001288
1289int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +05301290 phys_addr_t paddr, u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +01001291{
1292 if (unlikely(domain->ops->domain_window_enable == NULL))
1293 return -ENODEV;
1294
Varun Sethi80f97f02013-03-29 01:24:00 +05301295 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1296 prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +01001297}
1298EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1299
1300void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1301{
1302 if (unlikely(domain->ops->domain_window_disable == NULL))
1303 return;
1304
1305 return domain->ops->domain_window_disable(domain, wnd_nr);
1306}
1307EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1308
Alex Williamsond72e31c2012-05-30 14:18:53 -06001309static int __init iommu_init(void)
Alex Williamson14604322011-10-21 15:56:05 -04001310{
Alex Williamsond72e31c2012-05-30 14:18:53 -06001311 iommu_group_kset = kset_create_and_add("iommu_groups",
1312 NULL, kernel_kobj);
1313 ida_init(&iommu_group_ida);
1314 mutex_init(&iommu_group_mutex);
Alex Williamson14604322011-10-21 15:56:05 -04001315
Alex Williamsond72e31c2012-05-30 14:18:53 -06001316 BUG_ON(!iommu_group_kset);
1317
1318 return 0;
Alex Williamson14604322011-10-21 15:56:05 -04001319}
Alexey Kardashevskiy097e3632013-01-07 18:51:52 +11001320arch_initcall(iommu_init);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001321
1322int iommu_domain_get_attr(struct iommu_domain *domain,
1323 enum iommu_attr attr, void *data)
1324{
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001325 struct iommu_domain_geometry *geometry;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001326 bool *paging;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001327 int ret = 0;
Joerg Roedel69356712013-02-04 14:00:01 +01001328 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001329
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001330 switch (attr) {
1331 case DOMAIN_ATTR_GEOMETRY:
1332 geometry = data;
1333 *geometry = domain->geometry;
1334
1335 break;
Joerg Roedeld2e12162013-01-29 13:49:04 +01001336 case DOMAIN_ATTR_PAGING:
1337 paging = data;
1338 *paging = (domain->ops->pgsize_bitmap != 0UL);
1339 break;
Joerg Roedel69356712013-02-04 14:00:01 +01001340 case DOMAIN_ATTR_WINDOWS:
1341 count = data;
1342
1343 if (domain->ops->domain_get_windows != NULL)
1344 *count = domain->ops->domain_get_windows(domain);
1345 else
1346 ret = -ENODEV;
1347
1348 break;
Joerg Roedel0ff64f82012-01-26 19:40:53 +01001349 default:
1350 if (!domain->ops->domain_get_attr)
1351 return -EINVAL;
1352
1353 ret = domain->ops->domain_get_attr(domain, attr, data);
1354 }
1355
1356 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001357}
1358EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1359
1360int iommu_domain_set_attr(struct iommu_domain *domain,
1361 enum iommu_attr attr, void *data)
1362{
Joerg Roedel69356712013-02-04 14:00:01 +01001363 int ret = 0;
1364 u32 *count;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001365
Joerg Roedel69356712013-02-04 14:00:01 +01001366 switch (attr) {
1367 case DOMAIN_ATTR_WINDOWS:
1368 count = data;
1369
1370 if (domain->ops->domain_set_windows != NULL)
1371 ret = domain->ops->domain_set_windows(domain, *count);
1372 else
1373 ret = -ENODEV;
1374
1375 break;
1376 default:
1377 if (domain->ops->domain_set_attr == NULL)
1378 return -EINVAL;
1379
1380 ret = domain->ops->domain_set_attr(domain, attr, data);
1381 }
1382
1383 return ret;
Joerg Roedel0cd76dd2012-01-26 19:40:52 +01001384}
1385EXPORT_SYMBOL_GPL(iommu_domain_set_attr);