2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <jroedel@suse.de>
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.
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.
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
19 #define pr_fmt(fmt) "iommu: " fmt
21 #include <linux/device.h>
22 #include <linux/kernel.h>
23 #include <linux/bug.h>
24 #include <linux/types.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
27 #include <linux/errno.h>
28 #include <linux/iommu.h>
29 #include <linux/idr.h>
30 #include <linux/notifier.h>
31 #include <linux/err.h>
32 #include <linux/pci.h>
33 #include <linux/bitops.h>
34 #include <linux/property.h>
35 #include <trace/events/iommu.h>
37 static struct kset *iommu_group_kset;
38 static DEFINE_IDA(iommu_group_ida);
39 static unsigned int iommu_def_domain_type = IOMMU_DOMAIN_DMA;
41 struct iommu_callback_data {
42 const struct iommu_ops *ops;
47 struct kobject *devices_kobj;
48 struct list_head devices;
50 struct blocking_notifier_head notifier;
52 void (*iommu_data_release)(void *iommu_data);
55 struct iommu_domain *default_domain;
56 struct iommu_domain *domain;
60 struct list_head list;
65 struct iommu_group_attribute {
66 struct attribute attr;
67 ssize_t (*show)(struct iommu_group *group, char *buf);
68 ssize_t (*store)(struct iommu_group *group,
69 const char *buf, size_t count);
72 static const char * const iommu_group_resv_type_string[] = {
73 [IOMMU_RESV_DIRECT] = "direct",
74 [IOMMU_RESV_RESERVED] = "reserved",
75 [IOMMU_RESV_MSI] = "msi",
76 [IOMMU_RESV_SW_MSI] = "msi",
79 #define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
80 struct iommu_group_attribute iommu_group_attr_##_name = \
81 __ATTR(_name, _mode, _show, _store)
83 #define to_iommu_group_attr(_attr) \
84 container_of(_attr, struct iommu_group_attribute, attr)
85 #define to_iommu_group(_kobj) \
86 container_of(_kobj, struct iommu_group, kobj)
88 static LIST_HEAD(iommu_device_list);
89 static DEFINE_SPINLOCK(iommu_device_lock);
91 int iommu_device_register(struct iommu_device *iommu)
93 spin_lock(&iommu_device_lock);
94 list_add_tail(&iommu->list, &iommu_device_list);
95 spin_unlock(&iommu_device_lock);
100 void iommu_device_unregister(struct iommu_device *iommu)
102 spin_lock(&iommu_device_lock);
103 list_del(&iommu->list);
104 spin_unlock(&iommu_device_lock);
107 static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
109 static int __iommu_attach_device(struct iommu_domain *domain,
111 static int __iommu_attach_group(struct iommu_domain *domain,
112 struct iommu_group *group);
113 static void __iommu_detach_group(struct iommu_domain *domain,
114 struct iommu_group *group);
116 static int __init iommu_set_def_domain_type(char *str)
121 ret = kstrtobool(str, &pt);
125 iommu_def_domain_type = pt ? IOMMU_DOMAIN_IDENTITY : IOMMU_DOMAIN_DMA;
128 early_param("iommu.passthrough", iommu_set_def_domain_type);
130 static ssize_t iommu_group_attr_show(struct kobject *kobj,
131 struct attribute *__attr, char *buf)
133 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
134 struct iommu_group *group = to_iommu_group(kobj);
138 ret = attr->show(group, buf);
142 static ssize_t iommu_group_attr_store(struct kobject *kobj,
143 struct attribute *__attr,
144 const char *buf, size_t count)
146 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
147 struct iommu_group *group = to_iommu_group(kobj);
151 ret = attr->store(group, buf, count);
155 static const struct sysfs_ops iommu_group_sysfs_ops = {
156 .show = iommu_group_attr_show,
157 .store = iommu_group_attr_store,
160 static int iommu_group_create_file(struct iommu_group *group,
161 struct iommu_group_attribute *attr)
163 return sysfs_create_file(&group->kobj, &attr->attr);
166 static void iommu_group_remove_file(struct iommu_group *group,
167 struct iommu_group_attribute *attr)
169 sysfs_remove_file(&group->kobj, &attr->attr);
172 static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
174 return sprintf(buf, "%s\n", group->name);
178 * iommu_insert_resv_region - Insert a new region in the
179 * list of reserved regions.
180 * @new: new region to insert
181 * @regions: list of regions
183 * The new element is sorted by address with respect to the other
184 * regions of the same type. In case it overlaps with another
185 * region of the same type, regions are merged. In case it
186 * overlaps with another region of different type, regions are
189 static int iommu_insert_resv_region(struct iommu_resv_region *new,
190 struct list_head *regions)
192 struct iommu_resv_region *region;
193 phys_addr_t start = new->start;
194 phys_addr_t end = new->start + new->length - 1;
195 struct list_head *pos = regions->next;
197 while (pos != regions) {
198 struct iommu_resv_region *entry =
199 list_entry(pos, struct iommu_resv_region, list);
200 phys_addr_t a = entry->start;
201 phys_addr_t b = entry->start + entry->length - 1;
202 int type = entry->type;
206 } else if (start > b) {
208 } else if ((start >= a) && (end <= b)) {
209 if (new->type == type)
214 if (new->type == type) {
215 phys_addr_t new_start = min(a, start);
216 phys_addr_t new_end = max(b, end);
218 list_del(&entry->list);
219 entry->start = new_start;
220 entry->length = new_end - new_start + 1;
221 iommu_insert_resv_region(entry, regions);
228 region = iommu_alloc_resv_region(new->start, new->length,
229 new->prot, new->type);
233 list_add_tail(®ion->list, pos);
239 iommu_insert_device_resv_regions(struct list_head *dev_resv_regions,
240 struct list_head *group_resv_regions)
242 struct iommu_resv_region *entry;
245 list_for_each_entry(entry, dev_resv_regions, list) {
246 ret = iommu_insert_resv_region(entry, group_resv_regions);
253 int iommu_get_group_resv_regions(struct iommu_group *group,
254 struct list_head *head)
256 struct group_device *device;
259 mutex_lock(&group->mutex);
260 list_for_each_entry(device, &group->devices, list) {
261 struct list_head dev_resv_regions;
263 INIT_LIST_HEAD(&dev_resv_regions);
264 iommu_get_resv_regions(device->dev, &dev_resv_regions);
265 ret = iommu_insert_device_resv_regions(&dev_resv_regions, head);
266 iommu_put_resv_regions(device->dev, &dev_resv_regions);
270 mutex_unlock(&group->mutex);
273 EXPORT_SYMBOL_GPL(iommu_get_group_resv_regions);
275 static ssize_t iommu_group_show_resv_regions(struct iommu_group *group,
278 struct iommu_resv_region *region, *next;
279 struct list_head group_resv_regions;
282 INIT_LIST_HEAD(&group_resv_regions);
283 iommu_get_group_resv_regions(group, &group_resv_regions);
285 list_for_each_entry_safe(region, next, &group_resv_regions, list) {
286 str += sprintf(str, "0x%016llx 0x%016llx %s\n",
287 (long long int)region->start,
288 (long long int)(region->start +
290 iommu_group_resv_type_string[region->type]);
297 static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
299 static IOMMU_GROUP_ATTR(reserved_regions, 0444,
300 iommu_group_show_resv_regions, NULL);
302 static void iommu_group_release(struct kobject *kobj)
304 struct iommu_group *group = to_iommu_group(kobj);
306 pr_debug("Releasing group %d\n", group->id);
308 if (group->iommu_data_release)
309 group->iommu_data_release(group->iommu_data);
311 ida_simple_remove(&iommu_group_ida, group->id);
313 if (group->default_domain)
314 iommu_domain_free(group->default_domain);
320 static struct kobj_type iommu_group_ktype = {
321 .sysfs_ops = &iommu_group_sysfs_ops,
322 .release = iommu_group_release,
326 * iommu_group_alloc - Allocate a new group
328 * This function is called by an iommu driver to allocate a new iommu
329 * group. The iommu group represents the minimum granularity of the iommu.
330 * Upon successful return, the caller holds a reference to the supplied
331 * group in order to hold the group until devices are added. Use
332 * iommu_group_put() to release this extra reference count, allowing the
333 * group to be automatically reclaimed once it has no devices or external
336 struct iommu_group *iommu_group_alloc(void)
338 struct iommu_group *group;
341 group = kzalloc(sizeof(*group), GFP_KERNEL);
343 return ERR_PTR(-ENOMEM);
345 group->kobj.kset = iommu_group_kset;
346 mutex_init(&group->mutex);
347 INIT_LIST_HEAD(&group->devices);
348 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
350 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
357 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
358 NULL, "%d", group->id);
360 ida_simple_remove(&iommu_group_ida, group->id);
365 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
366 if (!group->devices_kobj) {
367 kobject_put(&group->kobj); /* triggers .release & free */
368 return ERR_PTR(-ENOMEM);
372 * The devices_kobj holds a reference on the group kobject, so
373 * as long as that exists so will the group. We can therefore
374 * use the devices_kobj for reference counting.
376 kobject_put(&group->kobj);
378 ret = iommu_group_create_file(group,
379 &iommu_group_attr_reserved_regions);
383 pr_debug("Allocated group %d\n", group->id);
387 EXPORT_SYMBOL_GPL(iommu_group_alloc);
389 struct iommu_group *iommu_group_get_by_id(int id)
391 struct kobject *group_kobj;
392 struct iommu_group *group;
395 if (!iommu_group_kset)
398 name = kasprintf(GFP_KERNEL, "%d", id);
402 group_kobj = kset_find_obj(iommu_group_kset, name);
408 group = container_of(group_kobj, struct iommu_group, kobj);
409 BUG_ON(group->id != id);
411 kobject_get(group->devices_kobj);
412 kobject_put(&group->kobj);
416 EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
419 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
422 * iommu drivers can store data in the group for use when doing iommu
423 * operations. This function provides a way to retrieve it. Caller
424 * should hold a group reference.
426 void *iommu_group_get_iommudata(struct iommu_group *group)
428 return group->iommu_data;
430 EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
433 * iommu_group_set_iommudata - set iommu_data for a group
435 * @iommu_data: new data
436 * @release: release function for iommu_data
438 * iommu drivers can store data in the group for use when doing iommu
439 * operations. This function provides a way to set the data after
440 * the group has been allocated. Caller should hold a group reference.
442 void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
443 void (*release)(void *iommu_data))
445 group->iommu_data = iommu_data;
446 group->iommu_data_release = release;
448 EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
451 * iommu_group_set_name - set name for a group
455 * Allow iommu driver to set a name for a group. When set it will
456 * appear in a name attribute file under the group in sysfs.
458 int iommu_group_set_name(struct iommu_group *group, const char *name)
463 iommu_group_remove_file(group, &iommu_group_attr_name);
470 group->name = kstrdup(name, GFP_KERNEL);
474 ret = iommu_group_create_file(group, &iommu_group_attr_name);
483 EXPORT_SYMBOL_GPL(iommu_group_set_name);
485 static int iommu_group_create_direct_mappings(struct iommu_group *group,
488 struct iommu_domain *domain = group->default_domain;
489 struct iommu_resv_region *entry;
490 struct list_head mappings;
491 unsigned long pg_size;
494 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
497 BUG_ON(!domain->pgsize_bitmap);
499 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
500 INIT_LIST_HEAD(&mappings);
502 iommu_get_resv_regions(dev, &mappings);
504 /* We need to consider overlapping regions for different devices */
505 list_for_each_entry(entry, &mappings, list) {
506 dma_addr_t start, end, addr;
508 if (domain->ops->apply_resv_region)
509 domain->ops->apply_resv_region(dev, domain, entry);
511 start = ALIGN(entry->start, pg_size);
512 end = ALIGN(entry->start + entry->length, pg_size);
514 if (entry->type != IOMMU_RESV_DIRECT)
517 for (addr = start; addr < end; addr += pg_size) {
518 phys_addr_t phys_addr;
520 phys_addr = iommu_iova_to_phys(domain, addr);
524 ret = iommu_map(domain, addr, addr, pg_size, entry->prot);
531 iommu_flush_tlb_all(domain);
534 iommu_put_resv_regions(dev, &mappings);
540 * iommu_group_add_device - add a device to an iommu group
541 * @group: the group into which to add the device (reference should be held)
544 * This function is called by an iommu driver to add a device into a
545 * group. Adding a device increments the group reference count.
547 int iommu_group_add_device(struct iommu_group *group, struct device *dev)
550 struct group_device *device;
552 device = kzalloc(sizeof(*device), GFP_KERNEL);
558 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
560 goto err_free_device;
562 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
566 goto err_remove_link;
569 ret = sysfs_create_link_nowarn(group->devices_kobj,
570 &dev->kobj, device->name);
572 if (ret == -EEXIST && i >= 0) {
574 * Account for the slim chance of collision
575 * and append an instance to the name.
578 device->name = kasprintf(GFP_KERNEL, "%s.%d",
579 kobject_name(&dev->kobj), i++);
585 kobject_get(group->devices_kobj);
587 dev->iommu_group = group;
589 iommu_group_create_direct_mappings(group, dev);
591 mutex_lock(&group->mutex);
592 list_add_tail(&device->list, &group->devices);
594 ret = __iommu_attach_device(group->domain, dev);
595 mutex_unlock(&group->mutex);
599 /* Notify any listeners about change to group. */
600 blocking_notifier_call_chain(&group->notifier,
601 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
603 trace_add_device_to_group(group->id, dev);
605 pr_info("Adding device %s to group %d\n", dev_name(dev), group->id);
610 mutex_lock(&group->mutex);
611 list_del(&device->list);
612 mutex_unlock(&group->mutex);
613 dev->iommu_group = NULL;
614 kobject_put(group->devices_kobj);
618 sysfs_remove_link(&dev->kobj, "iommu_group");
621 pr_err("Failed to add device %s to group %d: %d\n", dev_name(dev), group->id, ret);
624 EXPORT_SYMBOL_GPL(iommu_group_add_device);
627 * iommu_group_remove_device - remove a device from it's current group
628 * @dev: device to be removed
630 * This function is called by an iommu driver to remove the device from
631 * it's current group. This decrements the iommu group reference count.
633 void iommu_group_remove_device(struct device *dev)
635 struct iommu_group *group = dev->iommu_group;
636 struct group_device *tmp_device, *device = NULL;
638 pr_info("Removing device %s from group %d\n", dev_name(dev), group->id);
640 /* Pre-notify listeners that a device is being removed. */
641 blocking_notifier_call_chain(&group->notifier,
642 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
644 mutex_lock(&group->mutex);
645 list_for_each_entry(tmp_device, &group->devices, list) {
646 if (tmp_device->dev == dev) {
648 list_del(&device->list);
652 mutex_unlock(&group->mutex);
657 sysfs_remove_link(group->devices_kobj, device->name);
658 sysfs_remove_link(&dev->kobj, "iommu_group");
660 trace_remove_device_from_group(group->id, dev);
664 dev->iommu_group = NULL;
665 kobject_put(group->devices_kobj);
667 EXPORT_SYMBOL_GPL(iommu_group_remove_device);
669 static int iommu_group_device_count(struct iommu_group *group)
671 struct group_device *entry;
674 list_for_each_entry(entry, &group->devices, list)
681 * iommu_group_for_each_dev - iterate over each device in the group
683 * @data: caller opaque data to be passed to callback function
684 * @fn: caller supplied callback function
686 * This function is called by group users to iterate over group devices.
687 * Callers should hold a reference count to the group during callback.
688 * The group->mutex is held across callbacks, which will block calls to
689 * iommu_group_add/remove_device.
691 static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
692 int (*fn)(struct device *, void *))
694 struct group_device *device;
697 list_for_each_entry(device, &group->devices, list) {
698 ret = fn(device->dev, data);
706 int iommu_group_for_each_dev(struct iommu_group *group, void *data,
707 int (*fn)(struct device *, void *))
711 mutex_lock(&group->mutex);
712 ret = __iommu_group_for_each_dev(group, data, fn);
713 mutex_unlock(&group->mutex);
717 EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
720 * iommu_group_get - Return the group for a device and increment reference
721 * @dev: get the group that this device belongs to
723 * This function is called by iommu drivers and users to get the group
724 * for the specified device. If found, the group is returned and the group
725 * reference in incremented, else NULL.
727 struct iommu_group *iommu_group_get(struct device *dev)
729 struct iommu_group *group = dev->iommu_group;
732 kobject_get(group->devices_kobj);
736 EXPORT_SYMBOL_GPL(iommu_group_get);
739 * iommu_group_ref_get - Increment reference on a group
740 * @group: the group to use, must not be NULL
742 * This function is called by iommu drivers to take additional references on an
743 * existing group. Returns the given group for convenience.
745 struct iommu_group *iommu_group_ref_get(struct iommu_group *group)
747 kobject_get(group->devices_kobj);
752 * iommu_group_put - Decrement group reference
753 * @group: the group to use
755 * This function is called by iommu drivers and users to release the
756 * iommu group. Once the reference count is zero, the group is released.
758 void iommu_group_put(struct iommu_group *group)
761 kobject_put(group->devices_kobj);
763 EXPORT_SYMBOL_GPL(iommu_group_put);
766 * iommu_group_register_notifier - Register a notifier for group changes
767 * @group: the group to watch
768 * @nb: notifier block to signal
770 * This function allows iommu group users to track changes in a group.
771 * See include/linux/iommu.h for actions sent via this notifier. Caller
772 * should hold a reference to the group throughout notifier registration.
774 int iommu_group_register_notifier(struct iommu_group *group,
775 struct notifier_block *nb)
777 return blocking_notifier_chain_register(&group->notifier, nb);
779 EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
782 * iommu_group_unregister_notifier - Unregister a notifier
783 * @group: the group to watch
784 * @nb: notifier block to signal
786 * Unregister a previously registered group notifier block.
788 int iommu_group_unregister_notifier(struct iommu_group *group,
789 struct notifier_block *nb)
791 return blocking_notifier_chain_unregister(&group->notifier, nb);
793 EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
796 * iommu_group_id - Return ID for a group
797 * @group: the group to ID
799 * Return the unique ID for the group matching the sysfs group number.
801 int iommu_group_id(struct iommu_group *group)
805 EXPORT_SYMBOL_GPL(iommu_group_id);
807 static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
808 unsigned long *devfns);
811 * To consider a PCI device isolated, we require ACS to support Source
812 * Validation, Request Redirection, Completer Redirection, and Upstream
813 * Forwarding. This effectively means that devices cannot spoof their
814 * requester ID, requests and completions cannot be redirected, and all
815 * transactions are forwarded upstream, even as it passes through a
816 * bridge where the target device is downstream.
818 #define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
821 * For multifunction devices which are not isolated from each other, find
822 * all the other non-isolated functions and look for existing groups. For
823 * each function, we also need to look for aliases to or from other devices
824 * that may already have a group.
826 static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
827 unsigned long *devfns)
829 struct pci_dev *tmp = NULL;
830 struct iommu_group *group;
832 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
835 for_each_pci_dev(tmp) {
836 if (tmp == pdev || tmp->bus != pdev->bus ||
837 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
838 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
841 group = get_pci_alias_group(tmp, devfns);
852 * Look for aliases to or from the given device for existing groups. DMA
853 * aliases are only supported on the same bus, therefore the search
854 * space is quite small (especially since we're really only looking at pcie
855 * device, and therefore only expect multiple slots on the root complex or
856 * downstream switch ports). It's conceivable though that a pair of
857 * multifunction devices could have aliases between them that would cause a
858 * loop. To prevent this, we use a bitmap to track where we've been.
860 static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
861 unsigned long *devfns)
863 struct pci_dev *tmp = NULL;
864 struct iommu_group *group;
866 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
869 group = iommu_group_get(&pdev->dev);
873 for_each_pci_dev(tmp) {
874 if (tmp == pdev || tmp->bus != pdev->bus)
877 /* We alias them or they alias us */
878 if (pci_devs_are_dma_aliases(pdev, tmp)) {
879 group = get_pci_alias_group(tmp, devfns);
885 group = get_pci_function_alias_group(tmp, devfns);
896 struct group_for_pci_data {
897 struct pci_dev *pdev;
898 struct iommu_group *group;
902 * DMA alias iterator callback, return the last seen device. Stop and return
903 * the IOMMU group if we find one along the way.
905 static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
907 struct group_for_pci_data *data = opaque;
910 data->group = iommu_group_get(&pdev->dev);
912 return data->group != NULL;
916 * Generic device_group call-back function. It just allocates one
917 * iommu-group per device.
919 struct iommu_group *generic_device_group(struct device *dev)
921 return iommu_group_alloc();
925 * Use standard PCI bus topology, isolation features, and DMA alias quirks
926 * to find or create an IOMMU group for a device.
928 struct iommu_group *pci_device_group(struct device *dev)
930 struct pci_dev *pdev = to_pci_dev(dev);
931 struct group_for_pci_data data;
933 struct iommu_group *group = NULL;
934 u64 devfns[4] = { 0 };
936 if (WARN_ON(!dev_is_pci(dev)))
937 return ERR_PTR(-EINVAL);
940 * Find the upstream DMA alias for the device. A device must not
941 * be aliased due to topology in order to have its own IOMMU group.
942 * If we find an alias along the way that already belongs to a
945 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
951 * Continue upstream from the point of minimum IOMMU granularity
952 * due to aliases to the point where devices are protected from
953 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
956 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
960 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
965 group = iommu_group_get(&pdev->dev);
971 * Look for existing groups on device aliases. If we alias another
972 * device or another device aliases us, use the same group.
974 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
979 * Look for existing groups on non-isolated functions on the same
980 * slot and aliases of those funcions, if any. No need to clear
981 * the search bitmap, the tested devfns are still valid.
983 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
987 /* No shared group found, allocate new */
988 return iommu_group_alloc();
992 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
993 * @dev: target device
995 * This function is intended to be called by IOMMU drivers and extended to
996 * support common, bus-defined algorithms when determining or creating the
997 * IOMMU group for a device. On success, the caller will hold a reference
998 * to the returned IOMMU group, which will already include the provided
999 * device. The reference should be released with iommu_group_put().
1001 struct iommu_group *iommu_group_get_for_dev(struct device *dev)
1003 const struct iommu_ops *ops = dev->bus->iommu_ops;
1004 struct iommu_group *group;
1007 group = iommu_group_get(dev);
1012 return ERR_PTR(-EINVAL);
1014 group = ops->device_group(dev);
1015 if (WARN_ON_ONCE(group == NULL))
1016 return ERR_PTR(-EINVAL);
1022 * Try to allocate a default domain - needs support from the
1025 if (!group->default_domain) {
1026 struct iommu_domain *dom;
1028 dom = __iommu_domain_alloc(dev->bus, iommu_def_domain_type);
1029 if (!dom && iommu_def_domain_type != IOMMU_DOMAIN_DMA) {
1031 "failed to allocate default IOMMU domain of type %u; falling back to IOMMU_DOMAIN_DMA",
1032 iommu_def_domain_type);
1033 dom = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_DMA);
1036 group->default_domain = dom;
1038 group->domain = dom;
1041 ret = iommu_group_add_device(group, dev);
1043 iommu_group_put(group);
1044 return ERR_PTR(ret);
1050 struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
1052 return group->default_domain;
1055 static int add_iommu_group(struct device *dev, void *data)
1057 struct iommu_callback_data *cb = data;
1058 const struct iommu_ops *ops = cb->ops;
1061 if (!ops->add_device)
1064 WARN_ON(dev->iommu_group);
1066 ret = ops->add_device(dev);
1069 * We ignore -ENODEV errors for now, as they just mean that the
1070 * device is not translated by an IOMMU. We still care about
1071 * other errors and fail to initialize when they happen.
1079 static int remove_iommu_group(struct device *dev, void *data)
1081 struct iommu_callback_data *cb = data;
1082 const struct iommu_ops *ops = cb->ops;
1084 if (ops->remove_device && dev->iommu_group)
1085 ops->remove_device(dev);
1090 static int iommu_bus_notifier(struct notifier_block *nb,
1091 unsigned long action, void *data)
1093 struct device *dev = data;
1094 const struct iommu_ops *ops = dev->bus->iommu_ops;
1095 struct iommu_group *group;
1096 unsigned long group_action = 0;
1099 * ADD/DEL call into iommu driver ops if provided, which may
1100 * result in ADD/DEL notifiers to group->notifier
1102 if (action == BUS_NOTIFY_ADD_DEVICE) {
1103 if (ops->add_device) {
1106 ret = ops->add_device(dev);
1107 return (ret) ? NOTIFY_DONE : NOTIFY_OK;
1109 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
1110 if (ops->remove_device && dev->iommu_group) {
1111 ops->remove_device(dev);
1117 * Remaining BUS_NOTIFYs get filtered and republished to the
1118 * group, if anyone is listening
1120 group = iommu_group_get(dev);
1125 case BUS_NOTIFY_BIND_DRIVER:
1126 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
1128 case BUS_NOTIFY_BOUND_DRIVER:
1129 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
1131 case BUS_NOTIFY_UNBIND_DRIVER:
1132 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
1134 case BUS_NOTIFY_UNBOUND_DRIVER:
1135 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
1140 blocking_notifier_call_chain(&group->notifier,
1143 iommu_group_put(group);
1147 static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
1150 struct notifier_block *nb;
1151 struct iommu_callback_data cb = {
1155 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
1159 nb->notifier_call = iommu_bus_notifier;
1161 err = bus_register_notifier(bus, nb);
1165 err = bus_for_each_dev(bus, NULL, &cb, add_iommu_group);
1174 bus_for_each_dev(bus, NULL, &cb, remove_iommu_group);
1175 bus_unregister_notifier(bus, nb);
1184 * bus_set_iommu - set iommu-callbacks for the bus
1186 * @ops: the callbacks provided by the iommu-driver
1188 * This function is called by an iommu driver to set the iommu methods
1189 * used for a particular bus. Drivers for devices on that bus can use
1190 * the iommu-api after these ops are registered.
1191 * This special function is needed because IOMMUs are usually devices on
1192 * the bus itself, so the iommu drivers are not initialized when the bus
1193 * is set up. With this function the iommu-driver can set the iommu-ops
1196 int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
1200 if (bus->iommu_ops != NULL)
1203 bus->iommu_ops = ops;
1205 /* Do IOMMU specific setup for this bus-type */
1206 err = iommu_bus_init(bus, ops);
1208 bus->iommu_ops = NULL;
1212 EXPORT_SYMBOL_GPL(bus_set_iommu);
1214 bool iommu_present(struct bus_type *bus)
1216 return bus->iommu_ops != NULL;
1218 EXPORT_SYMBOL_GPL(iommu_present);
1220 bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1222 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1225 return bus->iommu_ops->capable(cap);
1227 EXPORT_SYMBOL_GPL(iommu_capable);
1230 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1231 * @domain: iommu domain
1232 * @handler: fault handler
1233 * @token: user data, will be passed back to the fault handler
1235 * This function should be used by IOMMU users which want to be notified
1236 * whenever an IOMMU fault happens.
1238 * The fault handler itself should return 0 on success, and an appropriate
1239 * error code otherwise.
1241 void iommu_set_fault_handler(struct iommu_domain *domain,
1242 iommu_fault_handler_t handler,
1247 domain->handler = handler;
1248 domain->handler_token = token;
1250 EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
1252 static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1255 struct iommu_domain *domain;
1257 if (bus == NULL || bus->iommu_ops == NULL)
1260 domain = bus->iommu_ops->domain_alloc(type);
1264 domain->ops = bus->iommu_ops;
1265 domain->type = type;
1266 /* Assume all sizes by default; the driver may override this later */
1267 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
1272 struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1274 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
1276 EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1278 void iommu_domain_free(struct iommu_domain *domain)
1280 domain->ops->domain_free(domain);
1282 EXPORT_SYMBOL_GPL(iommu_domain_free);
1284 static int __iommu_attach_device(struct iommu_domain *domain,
1288 if ((domain->ops->is_attach_deferred != NULL) &&
1289 domain->ops->is_attach_deferred(domain, dev))
1292 if (unlikely(domain->ops->attach_dev == NULL))
1295 ret = domain->ops->attach_dev(domain, dev);
1297 trace_attach_device_to_domain(dev);
1301 int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1303 struct iommu_group *group;
1306 group = iommu_group_get(dev);
1311 * Lock the group to make sure the device-count doesn't
1312 * change while we are attaching
1314 mutex_lock(&group->mutex);
1316 if (iommu_group_device_count(group) != 1)
1319 ret = __iommu_attach_group(domain, group);
1322 mutex_unlock(&group->mutex);
1323 iommu_group_put(group);
1327 EXPORT_SYMBOL_GPL(iommu_attach_device);
1329 static void __iommu_detach_device(struct iommu_domain *domain,
1332 if ((domain->ops->is_attach_deferred != NULL) &&
1333 domain->ops->is_attach_deferred(domain, dev))
1336 if (unlikely(domain->ops->detach_dev == NULL))
1339 domain->ops->detach_dev(domain, dev);
1340 trace_detach_device_from_domain(dev);
1343 void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
1345 struct iommu_group *group;
1347 group = iommu_group_get(dev);
1351 mutex_lock(&group->mutex);
1352 if (iommu_group_device_count(group) != 1) {
1357 __iommu_detach_group(domain, group);
1360 mutex_unlock(&group->mutex);
1361 iommu_group_put(group);
1363 EXPORT_SYMBOL_GPL(iommu_detach_device);
1365 struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
1367 struct iommu_domain *domain;
1368 struct iommu_group *group;
1370 group = iommu_group_get(dev);
1374 domain = group->domain;
1376 iommu_group_put(group);
1380 EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
1383 * IOMMU groups are really the natrual working unit of the IOMMU, but
1384 * the IOMMU API works on domains and devices. Bridge that gap by
1385 * iterating over the devices in a group. Ideally we'd have a single
1386 * device which represents the requestor ID of the group, but we also
1387 * allow IOMMU drivers to create policy defined minimum sets, where
1388 * the physical hardware may be able to distiguish members, but we
1389 * wish to group them at a higher level (ex. untrusted multi-function
1390 * PCI devices). Thus we attach each device.
1392 static int iommu_group_do_attach_device(struct device *dev, void *data)
1394 struct iommu_domain *domain = data;
1396 return __iommu_attach_device(domain, dev);
1399 static int __iommu_attach_group(struct iommu_domain *domain,
1400 struct iommu_group *group)
1404 if (group->default_domain && group->domain != group->default_domain)
1407 ret = __iommu_group_for_each_dev(group, domain,
1408 iommu_group_do_attach_device);
1410 group->domain = domain;
1415 int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
1419 mutex_lock(&group->mutex);
1420 ret = __iommu_attach_group(domain, group);
1421 mutex_unlock(&group->mutex);
1425 EXPORT_SYMBOL_GPL(iommu_attach_group);
1427 static int iommu_group_do_detach_device(struct device *dev, void *data)
1429 struct iommu_domain *domain = data;
1431 __iommu_detach_device(domain, dev);
1436 static void __iommu_detach_group(struct iommu_domain *domain,
1437 struct iommu_group *group)
1441 if (!group->default_domain) {
1442 __iommu_group_for_each_dev(group, domain,
1443 iommu_group_do_detach_device);
1444 group->domain = NULL;
1448 if (group->domain == group->default_domain)
1451 /* Detach by re-attaching to the default domain */
1452 ret = __iommu_group_for_each_dev(group, group->default_domain,
1453 iommu_group_do_attach_device);
1457 group->domain = group->default_domain;
1460 void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
1462 mutex_lock(&group->mutex);
1463 __iommu_detach_group(domain, group);
1464 mutex_unlock(&group->mutex);
1466 EXPORT_SYMBOL_GPL(iommu_detach_group);
1468 phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
1470 if (unlikely(domain->ops->iova_to_phys == NULL))
1473 return domain->ops->iova_to_phys(domain, iova);
1475 EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
1477 static size_t iommu_pgsize(struct iommu_domain *domain,
1478 unsigned long addr_merge, size_t size)
1480 unsigned int pgsize_idx;
1483 /* Max page size that still fits into 'size' */
1484 pgsize_idx = __fls(size);
1486 /* need to consider alignment requirements ? */
1487 if (likely(addr_merge)) {
1488 /* Max page size allowed by address */
1489 unsigned int align_pgsize_idx = __ffs(addr_merge);
1490 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
1493 /* build a mask of acceptable page sizes */
1494 pgsize = (1UL << (pgsize_idx + 1)) - 1;
1496 /* throw away page sizes not supported by the hardware */
1497 pgsize &= domain->pgsize_bitmap;
1499 /* make sure we're still sane */
1502 /* pick the biggest page */
1503 pgsize_idx = __fls(pgsize);
1504 pgsize = 1UL << pgsize_idx;
1509 int iommu_map(struct iommu_domain *domain, unsigned long iova,
1510 phys_addr_t paddr, size_t size, int prot)
1512 unsigned long orig_iova = iova;
1513 unsigned int min_pagesz;
1514 size_t orig_size = size;
1515 phys_addr_t orig_paddr = paddr;
1518 if (unlikely(domain->ops->map == NULL ||
1519 domain->pgsize_bitmap == 0UL))
1522 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1525 /* find out the minimum page size supported */
1526 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
1529 * both the virtual address and the physical one, as well as
1530 * the size of the mapping, must be aligned (at least) to the
1531 * size of the smallest page supported by the hardware
1533 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
1534 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
1535 iova, &paddr, size, min_pagesz);
1539 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
1542 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
1544 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
1545 iova, &paddr, pgsize);
1547 ret = domain->ops->map(domain, iova, paddr, pgsize, prot);
1556 /* unroll mapping in case something went wrong */
1558 iommu_unmap(domain, orig_iova, orig_size - size);
1560 trace_map(orig_iova, orig_paddr, orig_size);
1564 EXPORT_SYMBOL_GPL(iommu_map);
1566 static size_t __iommu_unmap(struct iommu_domain *domain,
1567 unsigned long iova, size_t size,
1570 const struct iommu_ops *ops = domain->ops;
1571 size_t unmapped_page, unmapped = 0;
1572 unsigned long orig_iova = iova;
1573 unsigned int min_pagesz;
1575 if (unlikely(ops->unmap == NULL ||
1576 domain->pgsize_bitmap == 0UL))
1579 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
1582 /* find out the minimum page size supported */
1583 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
1586 * The virtual address, as well as the size of the mapping, must be
1587 * aligned (at least) to the size of the smallest page supported
1590 if (!IS_ALIGNED(iova | size, min_pagesz)) {
1591 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1592 iova, size, min_pagesz);
1596 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
1599 * Keep iterating until we either unmap 'size' bytes (or more)
1600 * or we hit an area that isn't mapped.
1602 while (unmapped < size) {
1603 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
1605 unmapped_page = ops->unmap(domain, iova, pgsize);
1609 if (sync && ops->iotlb_range_add)
1610 ops->iotlb_range_add(domain, iova, pgsize);
1612 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1613 iova, unmapped_page);
1615 iova += unmapped_page;
1616 unmapped += unmapped_page;
1619 if (sync && ops->iotlb_sync)
1620 ops->iotlb_sync(domain);
1622 trace_unmap(orig_iova, size, unmapped);
1626 size_t iommu_unmap(struct iommu_domain *domain,
1627 unsigned long iova, size_t size)
1629 return __iommu_unmap(domain, iova, size, true);
1631 EXPORT_SYMBOL_GPL(iommu_unmap);
1633 size_t iommu_unmap_fast(struct iommu_domain *domain,
1634 unsigned long iova, size_t size)
1636 return __iommu_unmap(domain, iova, size, false);
1638 EXPORT_SYMBOL_GPL(iommu_unmap_fast);
1640 size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
1641 struct scatterlist *sg, unsigned int nents, int prot)
1643 struct scatterlist *s;
1645 unsigned int i, min_pagesz;
1648 if (unlikely(domain->pgsize_bitmap == 0UL))
1651 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
1653 for_each_sg(sg, s, nents, i) {
1654 phys_addr_t phys = page_to_phys(sg_page(s)) + s->offset;
1657 * We are mapping on IOMMU page boundaries, so offset within
1658 * the page must be 0. However, the IOMMU may support pages
1659 * smaller than PAGE_SIZE, so s->offset may still represent
1660 * an offset of that boundary within the CPU page.
1662 if (!IS_ALIGNED(s->offset, min_pagesz))
1665 ret = iommu_map(domain, iova + mapped, phys, s->length, prot);
1669 mapped += s->length;
1675 /* undo mappings already done */
1676 iommu_unmap(domain, iova, mapped);
1681 EXPORT_SYMBOL_GPL(default_iommu_map_sg);
1683 int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
1684 phys_addr_t paddr, u64 size, int prot)
1686 if (unlikely(domain->ops->domain_window_enable == NULL))
1689 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
1692 EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
1694 void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
1696 if (unlikely(domain->ops->domain_window_disable == NULL))
1699 return domain->ops->domain_window_disable(domain, wnd_nr);
1701 EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
1704 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
1705 * @domain: the iommu domain where the fault has happened
1706 * @dev: the device where the fault has happened
1707 * @iova: the faulting address
1708 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
1710 * This function should be called by the low-level IOMMU implementations
1711 * whenever IOMMU faults happen, to allow high-level users, that are
1712 * interested in such events, to know about them.
1714 * This event may be useful for several possible use cases:
1715 * - mere logging of the event
1716 * - dynamic TLB/PTE loading
1717 * - if restarting of the faulting device is required
1719 * Returns 0 on success and an appropriate error code otherwise (if dynamic
1720 * PTE/TLB loading will one day be supported, implementations will be able
1721 * to tell whether it succeeded or not according to this return value).
1723 * Specifically, -ENOSYS is returned if a fault handler isn't installed
1724 * (though fault handlers can also return -ENOSYS, in case they want to
1725 * elicit the default behavior of the IOMMU drivers).
1727 int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
1728 unsigned long iova, int flags)
1733 * if upper layers showed interest and installed a fault handler,
1736 if (domain->handler)
1737 ret = domain->handler(domain, dev, iova, flags,
1738 domain->handler_token);
1740 trace_io_page_fault(dev, iova, flags);
1743 EXPORT_SYMBOL_GPL(report_iommu_fault);
1745 static int __init iommu_init(void)
1747 iommu_group_kset = kset_create_and_add("iommu_groups",
1749 BUG_ON(!iommu_group_kset);
1751 iommu_debugfs_setup();
1755 core_initcall(iommu_init);
1757 int iommu_domain_get_attr(struct iommu_domain *domain,
1758 enum iommu_attr attr, void *data)
1760 struct iommu_domain_geometry *geometry;
1766 case DOMAIN_ATTR_GEOMETRY:
1768 *geometry = domain->geometry;
1771 case DOMAIN_ATTR_PAGING:
1773 *paging = (domain->pgsize_bitmap != 0UL);
1775 case DOMAIN_ATTR_WINDOWS:
1778 if (domain->ops->domain_get_windows != NULL)
1779 *count = domain->ops->domain_get_windows(domain);
1785 if (!domain->ops->domain_get_attr)
1788 ret = domain->ops->domain_get_attr(domain, attr, data);
1793 EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
1795 int iommu_domain_set_attr(struct iommu_domain *domain,
1796 enum iommu_attr attr, void *data)
1802 case DOMAIN_ATTR_WINDOWS:
1805 if (domain->ops->domain_set_windows != NULL)
1806 ret = domain->ops->domain_set_windows(domain, *count);
1812 if (domain->ops->domain_set_attr == NULL)
1815 ret = domain->ops->domain_set_attr(domain, attr, data);
1820 EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
1822 void iommu_get_resv_regions(struct device *dev, struct list_head *list)
1824 const struct iommu_ops *ops = dev->bus->iommu_ops;
1826 if (ops && ops->get_resv_regions)
1827 ops->get_resv_regions(dev, list);
1830 void iommu_put_resv_regions(struct device *dev, struct list_head *list)
1832 const struct iommu_ops *ops = dev->bus->iommu_ops;
1834 if (ops && ops->put_resv_regions)
1835 ops->put_resv_regions(dev, list);
1838 struct iommu_resv_region *iommu_alloc_resv_region(phys_addr_t start,
1839 size_t length, int prot,
1840 enum iommu_resv_type type)
1842 struct iommu_resv_region *region;
1844 region = kzalloc(sizeof(*region), GFP_KERNEL);
1848 INIT_LIST_HEAD(®ion->list);
1849 region->start = start;
1850 region->length = length;
1851 region->prot = prot;
1852 region->type = type;
1856 /* Request that a device is direct mapped by the IOMMU */
1857 int iommu_request_dm_for_dev(struct device *dev)
1859 struct iommu_domain *dm_domain;
1860 struct iommu_group *group;
1863 /* Device must already be in a group before calling this function */
1864 group = iommu_group_get_for_dev(dev);
1866 return PTR_ERR(group);
1868 mutex_lock(&group->mutex);
1870 /* Check if the default domain is already direct mapped */
1872 if (group->default_domain &&
1873 group->default_domain->type == IOMMU_DOMAIN_IDENTITY)
1876 /* Don't change mappings of existing devices */
1878 if (iommu_group_device_count(group) != 1)
1881 /* Allocate a direct mapped domain */
1883 dm_domain = __iommu_domain_alloc(dev->bus, IOMMU_DOMAIN_IDENTITY);
1887 /* Attach the device to the domain */
1888 ret = __iommu_attach_group(dm_domain, group);
1890 iommu_domain_free(dm_domain);
1894 /* Make the direct mapped domain the default for this group */
1895 if (group->default_domain)
1896 iommu_domain_free(group->default_domain);
1897 group->default_domain = dm_domain;
1899 pr_info("Using direct mapping for device %s\n", dev_name(dev));
1903 mutex_unlock(&group->mutex);
1904 iommu_group_put(group);
1909 const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
1911 const struct iommu_ops *ops = NULL;
1912 struct iommu_device *iommu;
1914 spin_lock(&iommu_device_lock);
1915 list_for_each_entry(iommu, &iommu_device_list, list)
1916 if (iommu->fwnode == fwnode) {
1920 spin_unlock(&iommu_device_lock);
1924 int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
1925 const struct iommu_ops *ops)
1927 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1930 return ops == fwspec->ops ? 0 : -EINVAL;
1932 fwspec = kzalloc(sizeof(*fwspec), GFP_KERNEL);
1936 of_node_get(to_of_node(iommu_fwnode));
1937 fwspec->iommu_fwnode = iommu_fwnode;
1939 dev->iommu_fwspec = fwspec;
1942 EXPORT_SYMBOL_GPL(iommu_fwspec_init);
1944 void iommu_fwspec_free(struct device *dev)
1946 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1949 fwnode_handle_put(fwspec->iommu_fwnode);
1951 dev->iommu_fwspec = NULL;
1954 EXPORT_SYMBOL_GPL(iommu_fwspec_free);
1956 int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids)
1958 struct iommu_fwspec *fwspec = dev->iommu_fwspec;
1965 size = offsetof(struct iommu_fwspec, ids[fwspec->num_ids + num_ids]);
1966 if (size > sizeof(*fwspec)) {
1967 fwspec = krealloc(dev->iommu_fwspec, size, GFP_KERNEL);
1971 dev->iommu_fwspec = fwspec;
1974 for (i = 0; i < num_ids; i++)
1975 fwspec->ids[fwspec->num_ids + i] = ids[i];
1977 fwspec->num_ids += num_ids;
1980 EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids);