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
);
40 struct iommu_callback_data
{
41 const struct iommu_ops
*ops
;
46 struct kobject
*devices_kobj
;
47 struct list_head devices
;
49 struct blocking_notifier_head notifier
;
51 void (*iommu_data_release
)(void *iommu_data
);
54 struct iommu_domain
*default_domain
;
55 struct iommu_domain
*domain
;
59 struct list_head list
;
64 struct iommu_group_attribute
{
65 struct attribute attr
;
66 ssize_t (*show
)(struct iommu_group
*group
, char *buf
);
67 ssize_t (*store
)(struct iommu_group
*group
,
68 const char *buf
, size_t count
);
71 static const char * const iommu_group_resv_type_string
[] = {
72 [IOMMU_RESV_DIRECT
] = "direct",
73 [IOMMU_RESV_RESERVED
] = "reserved",
74 [IOMMU_RESV_MSI
] = "msi",
77 #define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
78 struct iommu_group_attribute iommu_group_attr_##_name = \
79 __ATTR(_name, _mode, _show, _store)
81 #define to_iommu_group_attr(_attr) \
82 container_of(_attr, struct iommu_group_attribute, attr)
83 #define to_iommu_group(_kobj) \
84 container_of(_kobj, struct iommu_group, kobj)
86 static LIST_HEAD(iommu_device_list
);
87 static DEFINE_SPINLOCK(iommu_device_lock
);
89 int iommu_device_register(struct iommu_device
*iommu
)
91 spin_lock(&iommu_device_lock
);
92 list_add_tail(&iommu
->list
, &iommu_device_list
);
93 spin_unlock(&iommu_device_lock
);
98 void iommu_device_unregister(struct iommu_device
*iommu
)
100 spin_lock(&iommu_device_lock
);
101 list_del(&iommu
->list
);
102 spin_unlock(&iommu_device_lock
);
105 static struct iommu_domain
*__iommu_domain_alloc(struct bus_type
*bus
,
107 static int __iommu_attach_device(struct iommu_domain
*domain
,
109 static int __iommu_attach_group(struct iommu_domain
*domain
,
110 struct iommu_group
*group
);
111 static void __iommu_detach_group(struct iommu_domain
*domain
,
112 struct iommu_group
*group
);
114 static ssize_t
iommu_group_attr_show(struct kobject
*kobj
,
115 struct attribute
*__attr
, char *buf
)
117 struct iommu_group_attribute
*attr
= to_iommu_group_attr(__attr
);
118 struct iommu_group
*group
= to_iommu_group(kobj
);
122 ret
= attr
->show(group
, buf
);
126 static ssize_t
iommu_group_attr_store(struct kobject
*kobj
,
127 struct attribute
*__attr
,
128 const char *buf
, size_t count
)
130 struct iommu_group_attribute
*attr
= to_iommu_group_attr(__attr
);
131 struct iommu_group
*group
= to_iommu_group(kobj
);
135 ret
= attr
->store(group
, buf
, count
);
139 static const struct sysfs_ops iommu_group_sysfs_ops
= {
140 .show
= iommu_group_attr_show
,
141 .store
= iommu_group_attr_store
,
144 static int iommu_group_create_file(struct iommu_group
*group
,
145 struct iommu_group_attribute
*attr
)
147 return sysfs_create_file(&group
->kobj
, &attr
->attr
);
150 static void iommu_group_remove_file(struct iommu_group
*group
,
151 struct iommu_group_attribute
*attr
)
153 sysfs_remove_file(&group
->kobj
, &attr
->attr
);
156 static ssize_t
iommu_group_show_name(struct iommu_group
*group
, char *buf
)
158 return sprintf(buf
, "%s\n", group
->name
);
162 * iommu_insert_resv_region - Insert a new region in the
163 * list of reserved regions.
164 * @new: new region to insert
165 * @regions: list of regions
167 * The new element is sorted by address with respect to the other
168 * regions of the same type. In case it overlaps with another
169 * region of the same type, regions are merged. In case it
170 * overlaps with another region of different type, regions are
173 static int iommu_insert_resv_region(struct iommu_resv_region
*new,
174 struct list_head
*regions
)
176 struct iommu_resv_region
*region
;
177 phys_addr_t start
= new->start
;
178 phys_addr_t end
= new->start
+ new->length
- 1;
179 struct list_head
*pos
= regions
->next
;
181 while (pos
!= regions
) {
182 struct iommu_resv_region
*entry
=
183 list_entry(pos
, struct iommu_resv_region
, list
);
184 phys_addr_t a
= entry
->start
;
185 phys_addr_t b
= entry
->start
+ entry
->length
- 1;
186 int type
= entry
->type
;
190 } else if (start
> b
) {
192 } else if ((start
>= a
) && (end
<= b
)) {
193 if (new->type
== type
)
198 if (new->type
== type
) {
199 phys_addr_t new_start
= min(a
, start
);
200 phys_addr_t new_end
= max(b
, end
);
202 list_del(&entry
->list
);
203 entry
->start
= new_start
;
204 entry
->length
= new_end
- new_start
+ 1;
205 iommu_insert_resv_region(entry
, regions
);
212 region
= iommu_alloc_resv_region(new->start
, new->length
,
213 new->prot
, new->type
);
217 list_add_tail(®ion
->list
, pos
);
223 iommu_insert_device_resv_regions(struct list_head
*dev_resv_regions
,
224 struct list_head
*group_resv_regions
)
226 struct iommu_resv_region
*entry
;
229 list_for_each_entry(entry
, dev_resv_regions
, list
) {
230 ret
= iommu_insert_resv_region(entry
, group_resv_regions
);
237 int iommu_get_group_resv_regions(struct iommu_group
*group
,
238 struct list_head
*head
)
240 struct group_device
*device
;
243 mutex_lock(&group
->mutex
);
244 list_for_each_entry(device
, &group
->devices
, list
) {
245 struct list_head dev_resv_regions
;
247 INIT_LIST_HEAD(&dev_resv_regions
);
248 iommu_get_resv_regions(device
->dev
, &dev_resv_regions
);
249 ret
= iommu_insert_device_resv_regions(&dev_resv_regions
, head
);
250 iommu_put_resv_regions(device
->dev
, &dev_resv_regions
);
254 mutex_unlock(&group
->mutex
);
257 EXPORT_SYMBOL_GPL(iommu_get_group_resv_regions
);
259 static ssize_t
iommu_group_show_resv_regions(struct iommu_group
*group
,
262 struct iommu_resv_region
*region
, *next
;
263 struct list_head group_resv_regions
;
266 INIT_LIST_HEAD(&group_resv_regions
);
267 iommu_get_group_resv_regions(group
, &group_resv_regions
);
269 list_for_each_entry_safe(region
, next
, &group_resv_regions
, list
) {
270 str
+= sprintf(str
, "0x%016llx 0x%016llx %s\n",
271 (long long int)region
->start
,
272 (long long int)(region
->start
+
274 iommu_group_resv_type_string
[region
->type
]);
281 static IOMMU_GROUP_ATTR(name
, S_IRUGO
, iommu_group_show_name
, NULL
);
283 static IOMMU_GROUP_ATTR(reserved_regions
, 0444,
284 iommu_group_show_resv_regions
, NULL
);
286 static void iommu_group_release(struct kobject
*kobj
)
288 struct iommu_group
*group
= to_iommu_group(kobj
);
290 pr_debug("Releasing group %d\n", group
->id
);
292 if (group
->iommu_data_release
)
293 group
->iommu_data_release(group
->iommu_data
);
295 ida_simple_remove(&iommu_group_ida
, group
->id
);
297 if (group
->default_domain
)
298 iommu_domain_free(group
->default_domain
);
304 static struct kobj_type iommu_group_ktype
= {
305 .sysfs_ops
= &iommu_group_sysfs_ops
,
306 .release
= iommu_group_release
,
310 * iommu_group_alloc - Allocate a new group
311 * @name: Optional name to associate with group, visible in sysfs
313 * This function is called by an iommu driver to allocate a new iommu
314 * group. The iommu group represents the minimum granularity of the iommu.
315 * Upon successful return, the caller holds a reference to the supplied
316 * group in order to hold the group until devices are added. Use
317 * iommu_group_put() to release this extra reference count, allowing the
318 * group to be automatically reclaimed once it has no devices or external
321 struct iommu_group
*iommu_group_alloc(void)
323 struct iommu_group
*group
;
326 group
= kzalloc(sizeof(*group
), GFP_KERNEL
);
328 return ERR_PTR(-ENOMEM
);
330 group
->kobj
.kset
= iommu_group_kset
;
331 mutex_init(&group
->mutex
);
332 INIT_LIST_HEAD(&group
->devices
);
333 BLOCKING_INIT_NOTIFIER_HEAD(&group
->notifier
);
335 ret
= ida_simple_get(&iommu_group_ida
, 0, 0, GFP_KERNEL
);
342 ret
= kobject_init_and_add(&group
->kobj
, &iommu_group_ktype
,
343 NULL
, "%d", group
->id
);
345 ida_simple_remove(&iommu_group_ida
, group
->id
);
350 group
->devices_kobj
= kobject_create_and_add("devices", &group
->kobj
);
351 if (!group
->devices_kobj
) {
352 kobject_put(&group
->kobj
); /* triggers .release & free */
353 return ERR_PTR(-ENOMEM
);
357 * The devices_kobj holds a reference on the group kobject, so
358 * as long as that exists so will the group. We can therefore
359 * use the devices_kobj for reference counting.
361 kobject_put(&group
->kobj
);
363 ret
= iommu_group_create_file(group
,
364 &iommu_group_attr_reserved_regions
);
368 pr_debug("Allocated group %d\n", group
->id
);
372 EXPORT_SYMBOL_GPL(iommu_group_alloc
);
374 struct iommu_group
*iommu_group_get_by_id(int id
)
376 struct kobject
*group_kobj
;
377 struct iommu_group
*group
;
380 if (!iommu_group_kset
)
383 name
= kasprintf(GFP_KERNEL
, "%d", id
);
387 group_kobj
= kset_find_obj(iommu_group_kset
, name
);
393 group
= container_of(group_kobj
, struct iommu_group
, kobj
);
394 BUG_ON(group
->id
!= id
);
396 kobject_get(group
->devices_kobj
);
397 kobject_put(&group
->kobj
);
401 EXPORT_SYMBOL_GPL(iommu_group_get_by_id
);
404 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
407 * iommu drivers can store data in the group for use when doing iommu
408 * operations. This function provides a way to retrieve it. Caller
409 * should hold a group reference.
411 void *iommu_group_get_iommudata(struct iommu_group
*group
)
413 return group
->iommu_data
;
415 EXPORT_SYMBOL_GPL(iommu_group_get_iommudata
);
418 * iommu_group_set_iommudata - set iommu_data for a group
420 * @iommu_data: new data
421 * @release: release function for iommu_data
423 * iommu drivers can store data in the group for use when doing iommu
424 * operations. This function provides a way to set the data after
425 * the group has been allocated. Caller should hold a group reference.
427 void iommu_group_set_iommudata(struct iommu_group
*group
, void *iommu_data
,
428 void (*release
)(void *iommu_data
))
430 group
->iommu_data
= iommu_data
;
431 group
->iommu_data_release
= release
;
433 EXPORT_SYMBOL_GPL(iommu_group_set_iommudata
);
436 * iommu_group_set_name - set name for a group
440 * Allow iommu driver to set a name for a group. When set it will
441 * appear in a name attribute file under the group in sysfs.
443 int iommu_group_set_name(struct iommu_group
*group
, const char *name
)
448 iommu_group_remove_file(group
, &iommu_group_attr_name
);
455 group
->name
= kstrdup(name
, GFP_KERNEL
);
459 ret
= iommu_group_create_file(group
, &iommu_group_attr_name
);
468 EXPORT_SYMBOL_GPL(iommu_group_set_name
);
470 static int iommu_group_create_direct_mappings(struct iommu_group
*group
,
473 struct iommu_domain
*domain
= group
->default_domain
;
474 struct iommu_resv_region
*entry
;
475 struct list_head mappings
;
476 unsigned long pg_size
;
479 if (!domain
|| domain
->type
!= IOMMU_DOMAIN_DMA
)
482 BUG_ON(!domain
->pgsize_bitmap
);
484 pg_size
= 1UL << __ffs(domain
->pgsize_bitmap
);
485 INIT_LIST_HEAD(&mappings
);
487 iommu_get_resv_regions(dev
, &mappings
);
489 /* We need to consider overlapping regions for different devices */
490 list_for_each_entry(entry
, &mappings
, list
) {
491 dma_addr_t start
, end
, addr
;
493 if (domain
->ops
->apply_resv_region
)
494 domain
->ops
->apply_resv_region(dev
, domain
, entry
);
496 start
= ALIGN(entry
->start
, pg_size
);
497 end
= ALIGN(entry
->start
+ entry
->length
, pg_size
);
499 if (entry
->type
!= IOMMU_RESV_DIRECT
)
502 for (addr
= start
; addr
< end
; addr
+= pg_size
) {
503 phys_addr_t phys_addr
;
505 phys_addr
= iommu_iova_to_phys(domain
, addr
);
509 ret
= iommu_map(domain
, addr
, addr
, pg_size
, entry
->prot
);
517 iommu_put_resv_regions(dev
, &mappings
);
523 * iommu_group_add_device - add a device to an iommu group
524 * @group: the group into which to add the device (reference should be held)
527 * This function is called by an iommu driver to add a device into a
528 * group. Adding a device increments the group reference count.
530 int iommu_group_add_device(struct iommu_group
*group
, struct device
*dev
)
533 struct group_device
*device
;
535 device
= kzalloc(sizeof(*device
), GFP_KERNEL
);
541 ret
= sysfs_create_link(&dev
->kobj
, &group
->kobj
, "iommu_group");
543 goto err_free_device
;
545 device
->name
= kasprintf(GFP_KERNEL
, "%s", kobject_name(&dev
->kobj
));
549 goto err_remove_link
;
552 ret
= sysfs_create_link_nowarn(group
->devices_kobj
,
553 &dev
->kobj
, device
->name
);
555 if (ret
== -EEXIST
&& i
>= 0) {
557 * Account for the slim chance of collision
558 * and append an instance to the name.
561 device
->name
= kasprintf(GFP_KERNEL
, "%s.%d",
562 kobject_name(&dev
->kobj
), i
++);
568 kobject_get(group
->devices_kobj
);
570 dev
->iommu_group
= group
;
572 iommu_group_create_direct_mappings(group
, dev
);
574 mutex_lock(&group
->mutex
);
575 list_add_tail(&device
->list
, &group
->devices
);
577 ret
= __iommu_attach_device(group
->domain
, dev
);
578 mutex_unlock(&group
->mutex
);
582 /* Notify any listeners about change to group. */
583 blocking_notifier_call_chain(&group
->notifier
,
584 IOMMU_GROUP_NOTIFY_ADD_DEVICE
, dev
);
586 trace_add_device_to_group(group
->id
, dev
);
588 pr_info("Adding device %s to group %d\n", dev_name(dev
), group
->id
);
593 mutex_lock(&group
->mutex
);
594 list_del(&device
->list
);
595 mutex_unlock(&group
->mutex
);
596 dev
->iommu_group
= NULL
;
597 kobject_put(group
->devices_kobj
);
601 sysfs_remove_link(&dev
->kobj
, "iommu_group");
604 pr_err("Failed to add device %s to group %d: %d\n", dev_name(dev
), group
->id
, ret
);
607 EXPORT_SYMBOL_GPL(iommu_group_add_device
);
610 * iommu_group_remove_device - remove a device from it's current group
611 * @dev: device to be removed
613 * This function is called by an iommu driver to remove the device from
614 * it's current group. This decrements the iommu group reference count.
616 void iommu_group_remove_device(struct device
*dev
)
618 struct iommu_group
*group
= dev
->iommu_group
;
619 struct group_device
*tmp_device
, *device
= NULL
;
621 pr_info("Removing device %s from group %d\n", dev_name(dev
), group
->id
);
623 /* Pre-notify listeners that a device is being removed. */
624 blocking_notifier_call_chain(&group
->notifier
,
625 IOMMU_GROUP_NOTIFY_DEL_DEVICE
, dev
);
627 mutex_lock(&group
->mutex
);
628 list_for_each_entry(tmp_device
, &group
->devices
, list
) {
629 if (tmp_device
->dev
== dev
) {
631 list_del(&device
->list
);
635 mutex_unlock(&group
->mutex
);
640 sysfs_remove_link(group
->devices_kobj
, device
->name
);
641 sysfs_remove_link(&dev
->kobj
, "iommu_group");
643 trace_remove_device_from_group(group
->id
, dev
);
647 dev
->iommu_group
= NULL
;
648 kobject_put(group
->devices_kobj
);
650 EXPORT_SYMBOL_GPL(iommu_group_remove_device
);
652 static int iommu_group_device_count(struct iommu_group
*group
)
654 struct group_device
*entry
;
657 list_for_each_entry(entry
, &group
->devices
, list
)
664 * iommu_group_for_each_dev - iterate over each device in the group
666 * @data: caller opaque data to be passed to callback function
667 * @fn: caller supplied callback function
669 * This function is called by group users to iterate over group devices.
670 * Callers should hold a reference count to the group during callback.
671 * The group->mutex is held across callbacks, which will block calls to
672 * iommu_group_add/remove_device.
674 static int __iommu_group_for_each_dev(struct iommu_group
*group
, void *data
,
675 int (*fn
)(struct device
*, void *))
677 struct group_device
*device
;
680 list_for_each_entry(device
, &group
->devices
, list
) {
681 ret
= fn(device
->dev
, data
);
689 int iommu_group_for_each_dev(struct iommu_group
*group
, void *data
,
690 int (*fn
)(struct device
*, void *))
694 mutex_lock(&group
->mutex
);
695 ret
= __iommu_group_for_each_dev(group
, data
, fn
);
696 mutex_unlock(&group
->mutex
);
700 EXPORT_SYMBOL_GPL(iommu_group_for_each_dev
);
703 * iommu_group_get - Return the group for a device and increment reference
704 * @dev: get the group that this device belongs to
706 * This function is called by iommu drivers and users to get the group
707 * for the specified device. If found, the group is returned and the group
708 * reference in incremented, else NULL.
710 struct iommu_group
*iommu_group_get(struct device
*dev
)
712 struct iommu_group
*group
= dev
->iommu_group
;
715 kobject_get(group
->devices_kobj
);
719 EXPORT_SYMBOL_GPL(iommu_group_get
);
722 * iommu_group_ref_get - Increment reference on a group
723 * @group: the group to use, must not be NULL
725 * This function is called by iommu drivers to take additional references on an
726 * existing group. Returns the given group for convenience.
728 struct iommu_group
*iommu_group_ref_get(struct iommu_group
*group
)
730 kobject_get(group
->devices_kobj
);
735 * iommu_group_put - Decrement group reference
736 * @group: the group to use
738 * This function is called by iommu drivers and users to release the
739 * iommu group. Once the reference count is zero, the group is released.
741 void iommu_group_put(struct iommu_group
*group
)
744 kobject_put(group
->devices_kobj
);
746 EXPORT_SYMBOL_GPL(iommu_group_put
);
749 * iommu_group_register_notifier - Register a notifier for group changes
750 * @group: the group to watch
751 * @nb: notifier block to signal
753 * This function allows iommu group users to track changes in a group.
754 * See include/linux/iommu.h for actions sent via this notifier. Caller
755 * should hold a reference to the group throughout notifier registration.
757 int iommu_group_register_notifier(struct iommu_group
*group
,
758 struct notifier_block
*nb
)
760 return blocking_notifier_chain_register(&group
->notifier
, nb
);
762 EXPORT_SYMBOL_GPL(iommu_group_register_notifier
);
765 * iommu_group_unregister_notifier - Unregister a notifier
766 * @group: the group to watch
767 * @nb: notifier block to signal
769 * Unregister a previously registered group notifier block.
771 int iommu_group_unregister_notifier(struct iommu_group
*group
,
772 struct notifier_block
*nb
)
774 return blocking_notifier_chain_unregister(&group
->notifier
, nb
);
776 EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier
);
779 * iommu_group_id - Return ID for a group
780 * @group: the group to ID
782 * Return the unique ID for the group matching the sysfs group number.
784 int iommu_group_id(struct iommu_group
*group
)
788 EXPORT_SYMBOL_GPL(iommu_group_id
);
790 static struct iommu_group
*get_pci_alias_group(struct pci_dev
*pdev
,
791 unsigned long *devfns
);
794 * To consider a PCI device isolated, we require ACS to support Source
795 * Validation, Request Redirection, Completer Redirection, and Upstream
796 * Forwarding. This effectively means that devices cannot spoof their
797 * requester ID, requests and completions cannot be redirected, and all
798 * transactions are forwarded upstream, even as it passes through a
799 * bridge where the target device is downstream.
801 #define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
804 * For multifunction devices which are not isolated from each other, find
805 * all the other non-isolated functions and look for existing groups. For
806 * each function, we also need to look for aliases to or from other devices
807 * that may already have a group.
809 static struct iommu_group
*get_pci_function_alias_group(struct pci_dev
*pdev
,
810 unsigned long *devfns
)
812 struct pci_dev
*tmp
= NULL
;
813 struct iommu_group
*group
;
815 if (!pdev
->multifunction
|| pci_acs_enabled(pdev
, REQ_ACS_FLAGS
))
818 for_each_pci_dev(tmp
) {
819 if (tmp
== pdev
|| tmp
->bus
!= pdev
->bus
||
820 PCI_SLOT(tmp
->devfn
) != PCI_SLOT(pdev
->devfn
) ||
821 pci_acs_enabled(tmp
, REQ_ACS_FLAGS
))
824 group
= get_pci_alias_group(tmp
, devfns
);
835 * Look for aliases to or from the given device for existing groups. DMA
836 * aliases are only supported on the same bus, therefore the search
837 * space is quite small (especially since we're really only looking at pcie
838 * device, and therefore only expect multiple slots on the root complex or
839 * downstream switch ports). It's conceivable though that a pair of
840 * multifunction devices could have aliases between them that would cause a
841 * loop. To prevent this, we use a bitmap to track where we've been.
843 static struct iommu_group
*get_pci_alias_group(struct pci_dev
*pdev
,
844 unsigned long *devfns
)
846 struct pci_dev
*tmp
= NULL
;
847 struct iommu_group
*group
;
849 if (test_and_set_bit(pdev
->devfn
& 0xff, devfns
))
852 group
= iommu_group_get(&pdev
->dev
);
856 for_each_pci_dev(tmp
) {
857 if (tmp
== pdev
|| tmp
->bus
!= pdev
->bus
)
860 /* We alias them or they alias us */
861 if (pci_devs_are_dma_aliases(pdev
, tmp
)) {
862 group
= get_pci_alias_group(tmp
, devfns
);
868 group
= get_pci_function_alias_group(tmp
, devfns
);
879 struct group_for_pci_data
{
880 struct pci_dev
*pdev
;
881 struct iommu_group
*group
;
885 * DMA alias iterator callback, return the last seen device. Stop and return
886 * the IOMMU group if we find one along the way.
888 static int get_pci_alias_or_group(struct pci_dev
*pdev
, u16 alias
, void *opaque
)
890 struct group_for_pci_data
*data
= opaque
;
893 data
->group
= iommu_group_get(&pdev
->dev
);
895 return data
->group
!= NULL
;
899 * Generic device_group call-back function. It just allocates one
900 * iommu-group per device.
902 struct iommu_group
*generic_device_group(struct device
*dev
)
904 struct iommu_group
*group
;
906 group
= iommu_group_alloc();
914 * Use standard PCI bus topology, isolation features, and DMA alias quirks
915 * to find or create an IOMMU group for a device.
917 struct iommu_group
*pci_device_group(struct device
*dev
)
919 struct pci_dev
*pdev
= to_pci_dev(dev
);
920 struct group_for_pci_data data
;
922 struct iommu_group
*group
= NULL
;
923 u64 devfns
[4] = { 0 };
925 if (WARN_ON(!dev_is_pci(dev
)))
926 return ERR_PTR(-EINVAL
);
929 * Find the upstream DMA alias for the device. A device must not
930 * be aliased due to topology in order to have its own IOMMU group.
931 * If we find an alias along the way that already belongs to a
934 if (pci_for_each_dma_alias(pdev
, get_pci_alias_or_group
, &data
))
940 * Continue upstream from the point of minimum IOMMU granularity
941 * due to aliases to the point where devices are protected from
942 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
945 for (bus
= pdev
->bus
; !pci_is_root_bus(bus
); bus
= bus
->parent
) {
949 if (pci_acs_path_enabled(bus
->self
, NULL
, REQ_ACS_FLAGS
))
954 group
= iommu_group_get(&pdev
->dev
);
960 * Look for existing groups on device aliases. If we alias another
961 * device or another device aliases us, use the same group.
963 group
= get_pci_alias_group(pdev
, (unsigned long *)devfns
);
968 * Look for existing groups on non-isolated functions on the same
969 * slot and aliases of those funcions, if any. No need to clear
970 * the search bitmap, the tested devfns are still valid.
972 group
= get_pci_function_alias_group(pdev
, (unsigned long *)devfns
);
976 /* No shared group found, allocate new */
977 group
= iommu_group_alloc();
985 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
986 * @dev: target device
988 * This function is intended to be called by IOMMU drivers and extended to
989 * support common, bus-defined algorithms when determining or creating the
990 * IOMMU group for a device. On success, the caller will hold a reference
991 * to the returned IOMMU group, which will already include the provided
992 * device. The reference should be released with iommu_group_put().
994 struct iommu_group
*iommu_group_get_for_dev(struct device
*dev
)
996 const struct iommu_ops
*ops
= dev
->bus
->iommu_ops
;
997 struct iommu_group
*group
;
1000 group
= iommu_group_get(dev
);
1004 group
= ERR_PTR(-EINVAL
);
1006 if (ops
&& ops
->device_group
)
1007 group
= ops
->device_group(dev
);
1013 * Try to allocate a default domain - needs support from the
1016 if (!group
->default_domain
) {
1017 group
->default_domain
= __iommu_domain_alloc(dev
->bus
,
1020 group
->domain
= group
->default_domain
;
1023 ret
= iommu_group_add_device(group
, dev
);
1025 iommu_group_put(group
);
1026 return ERR_PTR(ret
);
1032 struct iommu_domain
*iommu_group_default_domain(struct iommu_group
*group
)
1034 return group
->default_domain
;
1037 static int add_iommu_group(struct device
*dev
, void *data
)
1039 struct iommu_callback_data
*cb
= data
;
1040 const struct iommu_ops
*ops
= cb
->ops
;
1043 if (!ops
->add_device
)
1046 WARN_ON(dev
->iommu_group
);
1048 ret
= ops
->add_device(dev
);
1051 * We ignore -ENODEV errors for now, as they just mean that the
1052 * device is not translated by an IOMMU. We still care about
1053 * other errors and fail to initialize when they happen.
1061 static int remove_iommu_group(struct device
*dev
, void *data
)
1063 struct iommu_callback_data
*cb
= data
;
1064 const struct iommu_ops
*ops
= cb
->ops
;
1066 if (ops
->remove_device
&& dev
->iommu_group
)
1067 ops
->remove_device(dev
);
1072 static int iommu_bus_notifier(struct notifier_block
*nb
,
1073 unsigned long action
, void *data
)
1075 struct device
*dev
= data
;
1076 const struct iommu_ops
*ops
= dev
->bus
->iommu_ops
;
1077 struct iommu_group
*group
;
1078 unsigned long group_action
= 0;
1081 * ADD/DEL call into iommu driver ops if provided, which may
1082 * result in ADD/DEL notifiers to group->notifier
1084 if (action
== BUS_NOTIFY_ADD_DEVICE
) {
1085 if (ops
->add_device
)
1086 return ops
->add_device(dev
);
1087 } else if (action
== BUS_NOTIFY_REMOVED_DEVICE
) {
1088 if (ops
->remove_device
&& dev
->iommu_group
) {
1089 ops
->remove_device(dev
);
1095 * Remaining BUS_NOTIFYs get filtered and republished to the
1096 * group, if anyone is listening
1098 group
= iommu_group_get(dev
);
1103 case BUS_NOTIFY_BIND_DRIVER
:
1104 group_action
= IOMMU_GROUP_NOTIFY_BIND_DRIVER
;
1106 case BUS_NOTIFY_BOUND_DRIVER
:
1107 group_action
= IOMMU_GROUP_NOTIFY_BOUND_DRIVER
;
1109 case BUS_NOTIFY_UNBIND_DRIVER
:
1110 group_action
= IOMMU_GROUP_NOTIFY_UNBIND_DRIVER
;
1112 case BUS_NOTIFY_UNBOUND_DRIVER
:
1113 group_action
= IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER
;
1118 blocking_notifier_call_chain(&group
->notifier
,
1121 iommu_group_put(group
);
1125 static int iommu_bus_init(struct bus_type
*bus
, const struct iommu_ops
*ops
)
1128 struct notifier_block
*nb
;
1129 struct iommu_callback_data cb
= {
1133 nb
= kzalloc(sizeof(struct notifier_block
), GFP_KERNEL
);
1137 nb
->notifier_call
= iommu_bus_notifier
;
1139 err
= bus_register_notifier(bus
, nb
);
1143 err
= bus_for_each_dev(bus
, NULL
, &cb
, add_iommu_group
);
1152 bus_for_each_dev(bus
, NULL
, &cb
, remove_iommu_group
);
1153 bus_unregister_notifier(bus
, nb
);
1162 * bus_set_iommu - set iommu-callbacks for the bus
1164 * @ops: the callbacks provided by the iommu-driver
1166 * This function is called by an iommu driver to set the iommu methods
1167 * used for a particular bus. Drivers for devices on that bus can use
1168 * the iommu-api after these ops are registered.
1169 * This special function is needed because IOMMUs are usually devices on
1170 * the bus itself, so the iommu drivers are not initialized when the bus
1171 * is set up. With this function the iommu-driver can set the iommu-ops
1174 int bus_set_iommu(struct bus_type
*bus
, const struct iommu_ops
*ops
)
1178 if (bus
->iommu_ops
!= NULL
)
1181 bus
->iommu_ops
= ops
;
1183 /* Do IOMMU specific setup for this bus-type */
1184 err
= iommu_bus_init(bus
, ops
);
1186 bus
->iommu_ops
= NULL
;
1190 EXPORT_SYMBOL_GPL(bus_set_iommu
);
1192 bool iommu_present(struct bus_type
*bus
)
1194 return bus
->iommu_ops
!= NULL
;
1196 EXPORT_SYMBOL_GPL(iommu_present
);
1198 bool iommu_capable(struct bus_type
*bus
, enum iommu_cap cap
)
1200 if (!bus
->iommu_ops
|| !bus
->iommu_ops
->capable
)
1203 return bus
->iommu_ops
->capable(cap
);
1205 EXPORT_SYMBOL_GPL(iommu_capable
);
1208 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1209 * @domain: iommu domain
1210 * @handler: fault handler
1211 * @token: user data, will be passed back to the fault handler
1213 * This function should be used by IOMMU users which want to be notified
1214 * whenever an IOMMU fault happens.
1216 * The fault handler itself should return 0 on success, and an appropriate
1217 * error code otherwise.
1219 void iommu_set_fault_handler(struct iommu_domain
*domain
,
1220 iommu_fault_handler_t handler
,
1225 domain
->handler
= handler
;
1226 domain
->handler_token
= token
;
1228 EXPORT_SYMBOL_GPL(iommu_set_fault_handler
);
1230 static struct iommu_domain
*__iommu_domain_alloc(struct bus_type
*bus
,
1233 struct iommu_domain
*domain
;
1235 if (bus
== NULL
|| bus
->iommu_ops
== NULL
)
1238 domain
= bus
->iommu_ops
->domain_alloc(type
);
1242 domain
->ops
= bus
->iommu_ops
;
1243 domain
->type
= type
;
1244 /* Assume all sizes by default; the driver may override this later */
1245 domain
->pgsize_bitmap
= bus
->iommu_ops
->pgsize_bitmap
;
1250 struct iommu_domain
*iommu_domain_alloc(struct bus_type
*bus
)
1252 return __iommu_domain_alloc(bus
, IOMMU_DOMAIN_UNMANAGED
);
1254 EXPORT_SYMBOL_GPL(iommu_domain_alloc
);
1256 void iommu_domain_free(struct iommu_domain
*domain
)
1258 domain
->ops
->domain_free(domain
);
1260 EXPORT_SYMBOL_GPL(iommu_domain_free
);
1262 static int __iommu_attach_device(struct iommu_domain
*domain
,
1266 if (unlikely(domain
->ops
->attach_dev
== NULL
))
1269 ret
= domain
->ops
->attach_dev(domain
, dev
);
1271 trace_attach_device_to_domain(dev
);
1275 int iommu_attach_device(struct iommu_domain
*domain
, struct device
*dev
)
1277 struct iommu_group
*group
;
1280 group
= iommu_group_get(dev
);
1281 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1283 return __iommu_attach_device(domain
, dev
);
1286 * We have a group - lock it to make sure the device-count doesn't
1287 * change while we are attaching
1289 mutex_lock(&group
->mutex
);
1291 if (iommu_group_device_count(group
) != 1)
1294 ret
= __iommu_attach_group(domain
, group
);
1297 mutex_unlock(&group
->mutex
);
1298 iommu_group_put(group
);
1302 EXPORT_SYMBOL_GPL(iommu_attach_device
);
1304 static void __iommu_detach_device(struct iommu_domain
*domain
,
1307 if (unlikely(domain
->ops
->detach_dev
== NULL
))
1310 domain
->ops
->detach_dev(domain
, dev
);
1311 trace_detach_device_from_domain(dev
);
1314 void iommu_detach_device(struct iommu_domain
*domain
, struct device
*dev
)
1316 struct iommu_group
*group
;
1318 group
= iommu_group_get(dev
);
1319 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1321 return __iommu_detach_device(domain
, dev
);
1323 mutex_lock(&group
->mutex
);
1324 if (iommu_group_device_count(group
) != 1) {
1329 __iommu_detach_group(domain
, group
);
1332 mutex_unlock(&group
->mutex
);
1333 iommu_group_put(group
);
1335 EXPORT_SYMBOL_GPL(iommu_detach_device
);
1337 struct iommu_domain
*iommu_get_domain_for_dev(struct device
*dev
)
1339 struct iommu_domain
*domain
;
1340 struct iommu_group
*group
;
1342 group
= iommu_group_get(dev
);
1343 /* FIXME: Remove this when groups a mandatory for iommu drivers */
1347 domain
= group
->domain
;
1349 iommu_group_put(group
);
1353 EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev
);
1356 * IOMMU groups are really the natrual working unit of the IOMMU, but
1357 * the IOMMU API works on domains and devices. Bridge that gap by
1358 * iterating over the devices in a group. Ideally we'd have a single
1359 * device which represents the requestor ID of the group, but we also
1360 * allow IOMMU drivers to create policy defined minimum sets, where
1361 * the physical hardware may be able to distiguish members, but we
1362 * wish to group them at a higher level (ex. untrusted multi-function
1363 * PCI devices). Thus we attach each device.
1365 static int iommu_group_do_attach_device(struct device
*dev
, void *data
)
1367 struct iommu_domain
*domain
= data
;
1369 return __iommu_attach_device(domain
, dev
);
1372 static int __iommu_attach_group(struct iommu_domain
*domain
,
1373 struct iommu_group
*group
)
1377 if (group
->default_domain
&& group
->domain
!= group
->default_domain
)
1380 ret
= __iommu_group_for_each_dev(group
, domain
,
1381 iommu_group_do_attach_device
);
1383 group
->domain
= domain
;
1388 int iommu_attach_group(struct iommu_domain
*domain
, struct iommu_group
*group
)
1392 mutex_lock(&group
->mutex
);
1393 ret
= __iommu_attach_group(domain
, group
);
1394 mutex_unlock(&group
->mutex
);
1398 EXPORT_SYMBOL_GPL(iommu_attach_group
);
1400 static int iommu_group_do_detach_device(struct device
*dev
, void *data
)
1402 struct iommu_domain
*domain
= data
;
1404 __iommu_detach_device(domain
, dev
);
1409 static void __iommu_detach_group(struct iommu_domain
*domain
,
1410 struct iommu_group
*group
)
1414 if (!group
->default_domain
) {
1415 __iommu_group_for_each_dev(group
, domain
,
1416 iommu_group_do_detach_device
);
1417 group
->domain
= NULL
;
1421 if (group
->domain
== group
->default_domain
)
1424 /* Detach by re-attaching to the default domain */
1425 ret
= __iommu_group_for_each_dev(group
, group
->default_domain
,
1426 iommu_group_do_attach_device
);
1430 group
->domain
= group
->default_domain
;
1433 void iommu_detach_group(struct iommu_domain
*domain
, struct iommu_group
*group
)
1435 mutex_lock(&group
->mutex
);
1436 __iommu_detach_group(domain
, group
);
1437 mutex_unlock(&group
->mutex
);
1439 EXPORT_SYMBOL_GPL(iommu_detach_group
);
1441 phys_addr_t
iommu_iova_to_phys(struct iommu_domain
*domain
, dma_addr_t iova
)
1443 if (unlikely(domain
->ops
->iova_to_phys
== NULL
))
1446 return domain
->ops
->iova_to_phys(domain
, iova
);
1448 EXPORT_SYMBOL_GPL(iommu_iova_to_phys
);
1450 static size_t iommu_pgsize(struct iommu_domain
*domain
,
1451 unsigned long addr_merge
, size_t size
)
1453 unsigned int pgsize_idx
;
1456 /* Max page size that still fits into 'size' */
1457 pgsize_idx
= __fls(size
);
1459 /* need to consider alignment requirements ? */
1460 if (likely(addr_merge
)) {
1461 /* Max page size allowed by address */
1462 unsigned int align_pgsize_idx
= __ffs(addr_merge
);
1463 pgsize_idx
= min(pgsize_idx
, align_pgsize_idx
);
1466 /* build a mask of acceptable page sizes */
1467 pgsize
= (1UL << (pgsize_idx
+ 1)) - 1;
1469 /* throw away page sizes not supported by the hardware */
1470 pgsize
&= domain
->pgsize_bitmap
;
1472 /* make sure we're still sane */
1475 /* pick the biggest page */
1476 pgsize_idx
= __fls(pgsize
);
1477 pgsize
= 1UL << pgsize_idx
;
1482 int iommu_map(struct iommu_domain
*domain
, unsigned long iova
,
1483 phys_addr_t paddr
, size_t size
, int prot
)
1485 unsigned long orig_iova
= iova
;
1486 unsigned int min_pagesz
;
1487 size_t orig_size
= size
;
1488 phys_addr_t orig_paddr
= paddr
;
1491 if (unlikely(domain
->ops
->map
== NULL
||
1492 domain
->pgsize_bitmap
== 0UL))
1495 if (unlikely(!(domain
->type
& __IOMMU_DOMAIN_PAGING
)))
1498 /* find out the minimum page size supported */
1499 min_pagesz
= 1 << __ffs(domain
->pgsize_bitmap
);
1502 * both the virtual address and the physical one, as well as
1503 * the size of the mapping, must be aligned (at least) to the
1504 * size of the smallest page supported by the hardware
1506 if (!IS_ALIGNED(iova
| paddr
| size
, min_pagesz
)) {
1507 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
1508 iova
, &paddr
, size
, min_pagesz
);
1512 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova
, &paddr
, size
);
1515 size_t pgsize
= iommu_pgsize(domain
, iova
| paddr
, size
);
1517 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
1518 iova
, &paddr
, pgsize
);
1520 ret
= domain
->ops
->map(domain
, iova
, paddr
, pgsize
, prot
);
1529 /* unroll mapping in case something went wrong */
1531 iommu_unmap(domain
, orig_iova
, orig_size
- size
);
1533 trace_map(orig_iova
, orig_paddr
, orig_size
);
1537 EXPORT_SYMBOL_GPL(iommu_map
);
1539 size_t iommu_unmap(struct iommu_domain
*domain
, unsigned long iova
, size_t size
)
1541 size_t unmapped_page
, unmapped
= 0;
1542 unsigned int min_pagesz
;
1543 unsigned long orig_iova
= iova
;
1545 if (unlikely(domain
->ops
->unmap
== NULL
||
1546 domain
->pgsize_bitmap
== 0UL))
1549 if (unlikely(!(domain
->type
& __IOMMU_DOMAIN_PAGING
)))
1552 /* find out the minimum page size supported */
1553 min_pagesz
= 1 << __ffs(domain
->pgsize_bitmap
);
1556 * The virtual address, as well as the size of the mapping, must be
1557 * aligned (at least) to the size of the smallest page supported
1560 if (!IS_ALIGNED(iova
| size
, min_pagesz
)) {
1561 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
1562 iova
, size
, min_pagesz
);
1566 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova
, size
);
1569 * Keep iterating until we either unmap 'size' bytes (or more)
1570 * or we hit an area that isn't mapped.
1572 while (unmapped
< size
) {
1573 size_t pgsize
= iommu_pgsize(domain
, iova
, size
- unmapped
);
1575 unmapped_page
= domain
->ops
->unmap(domain
, iova
, pgsize
);
1579 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
1580 iova
, unmapped_page
);
1582 iova
+= unmapped_page
;
1583 unmapped
+= unmapped_page
;
1586 trace_unmap(orig_iova
, size
, unmapped
);
1589 EXPORT_SYMBOL_GPL(iommu_unmap
);
1591 size_t default_iommu_map_sg(struct iommu_domain
*domain
, unsigned long iova
,
1592 struct scatterlist
*sg
, unsigned int nents
, int prot
)
1594 struct scatterlist
*s
;
1596 unsigned int i
, min_pagesz
;
1599 if (unlikely(domain
->pgsize_bitmap
== 0UL))
1602 min_pagesz
= 1 << __ffs(domain
->pgsize_bitmap
);
1604 for_each_sg(sg
, s
, nents
, i
) {
1605 phys_addr_t phys
= page_to_phys(sg_page(s
)) + s
->offset
;
1608 * We are mapping on IOMMU page boundaries, so offset within
1609 * the page must be 0. However, the IOMMU may support pages
1610 * smaller than PAGE_SIZE, so s->offset may still represent
1611 * an offset of that boundary within the CPU page.
1613 if (!IS_ALIGNED(s
->offset
, min_pagesz
))
1616 ret
= iommu_map(domain
, iova
+ mapped
, phys
, s
->length
, prot
);
1620 mapped
+= s
->length
;
1626 /* undo mappings already done */
1627 iommu_unmap(domain
, iova
, mapped
);
1632 EXPORT_SYMBOL_GPL(default_iommu_map_sg
);
1634 int iommu_domain_window_enable(struct iommu_domain
*domain
, u32 wnd_nr
,
1635 phys_addr_t paddr
, u64 size
, int prot
)
1637 if (unlikely(domain
->ops
->domain_window_enable
== NULL
))
1640 return domain
->ops
->domain_window_enable(domain
, wnd_nr
, paddr
, size
,
1643 EXPORT_SYMBOL_GPL(iommu_domain_window_enable
);
1645 void iommu_domain_window_disable(struct iommu_domain
*domain
, u32 wnd_nr
)
1647 if (unlikely(domain
->ops
->domain_window_disable
== NULL
))
1650 return domain
->ops
->domain_window_disable(domain
, wnd_nr
);
1652 EXPORT_SYMBOL_GPL(iommu_domain_window_disable
);
1654 static int __init
iommu_init(void)
1656 iommu_group_kset
= kset_create_and_add("iommu_groups",
1658 BUG_ON(!iommu_group_kset
);
1662 core_initcall(iommu_init
);
1664 int iommu_domain_get_attr(struct iommu_domain
*domain
,
1665 enum iommu_attr attr
, void *data
)
1667 struct iommu_domain_geometry
*geometry
;
1673 case DOMAIN_ATTR_GEOMETRY
:
1675 *geometry
= domain
->geometry
;
1678 case DOMAIN_ATTR_PAGING
:
1680 *paging
= (domain
->pgsize_bitmap
!= 0UL);
1682 case DOMAIN_ATTR_WINDOWS
:
1685 if (domain
->ops
->domain_get_windows
!= NULL
)
1686 *count
= domain
->ops
->domain_get_windows(domain
);
1692 if (!domain
->ops
->domain_get_attr
)
1695 ret
= domain
->ops
->domain_get_attr(domain
, attr
, data
);
1700 EXPORT_SYMBOL_GPL(iommu_domain_get_attr
);
1702 int iommu_domain_set_attr(struct iommu_domain
*domain
,
1703 enum iommu_attr attr
, void *data
)
1709 case DOMAIN_ATTR_WINDOWS
:
1712 if (domain
->ops
->domain_set_windows
!= NULL
)
1713 ret
= domain
->ops
->domain_set_windows(domain
, *count
);
1719 if (domain
->ops
->domain_set_attr
== NULL
)
1722 ret
= domain
->ops
->domain_set_attr(domain
, attr
, data
);
1727 EXPORT_SYMBOL_GPL(iommu_domain_set_attr
);
1729 void iommu_get_resv_regions(struct device
*dev
, struct list_head
*list
)
1731 const struct iommu_ops
*ops
= dev
->bus
->iommu_ops
;
1733 if (ops
&& ops
->get_resv_regions
)
1734 ops
->get_resv_regions(dev
, list
);
1737 void iommu_put_resv_regions(struct device
*dev
, struct list_head
*list
)
1739 const struct iommu_ops
*ops
= dev
->bus
->iommu_ops
;
1741 if (ops
&& ops
->put_resv_regions
)
1742 ops
->put_resv_regions(dev
, list
);
1745 struct iommu_resv_region
*iommu_alloc_resv_region(phys_addr_t start
,
1749 struct iommu_resv_region
*region
;
1751 region
= kzalloc(sizeof(*region
), GFP_KERNEL
);
1755 INIT_LIST_HEAD(®ion
->list
);
1756 region
->start
= start
;
1757 region
->length
= length
;
1758 region
->prot
= prot
;
1759 region
->type
= type
;
1763 /* Request that a device is direct mapped by the IOMMU */
1764 int iommu_request_dm_for_dev(struct device
*dev
)
1766 struct iommu_domain
*dm_domain
;
1767 struct iommu_group
*group
;
1770 /* Device must already be in a group before calling this function */
1771 group
= iommu_group_get_for_dev(dev
);
1773 return PTR_ERR(group
);
1775 mutex_lock(&group
->mutex
);
1777 /* Check if the default domain is already direct mapped */
1779 if (group
->default_domain
&&
1780 group
->default_domain
->type
== IOMMU_DOMAIN_IDENTITY
)
1783 /* Don't change mappings of existing devices */
1785 if (iommu_group_device_count(group
) != 1)
1788 /* Allocate a direct mapped domain */
1790 dm_domain
= __iommu_domain_alloc(dev
->bus
, IOMMU_DOMAIN_IDENTITY
);
1794 /* Attach the device to the domain */
1795 ret
= __iommu_attach_group(dm_domain
, group
);
1797 iommu_domain_free(dm_domain
);
1801 /* Make the direct mapped domain the default for this group */
1802 if (group
->default_domain
)
1803 iommu_domain_free(group
->default_domain
);
1804 group
->default_domain
= dm_domain
;
1806 pr_info("Using direct mapping for device %s\n", dev_name(dev
));
1810 mutex_unlock(&group
->mutex
);
1811 iommu_group_put(group
);
1816 const struct iommu_ops
*iommu_ops_from_fwnode(struct fwnode_handle
*fwnode
)
1818 const struct iommu_ops
*ops
= NULL
;
1819 struct iommu_device
*iommu
;
1821 spin_lock(&iommu_device_lock
);
1822 list_for_each_entry(iommu
, &iommu_device_list
, list
)
1823 if (iommu
->fwnode
== fwnode
) {
1827 spin_unlock(&iommu_device_lock
);
1831 int iommu_fwspec_init(struct device
*dev
, struct fwnode_handle
*iommu_fwnode
,
1832 const struct iommu_ops
*ops
)
1834 struct iommu_fwspec
*fwspec
= dev
->iommu_fwspec
;
1837 return ops
== fwspec
->ops
? 0 : -EINVAL
;
1839 fwspec
= kzalloc(sizeof(*fwspec
), GFP_KERNEL
);
1843 of_node_get(to_of_node(iommu_fwnode
));
1844 fwspec
->iommu_fwnode
= iommu_fwnode
;
1846 dev
->iommu_fwspec
= fwspec
;
1849 EXPORT_SYMBOL_GPL(iommu_fwspec_init
);
1851 void iommu_fwspec_free(struct device
*dev
)
1853 struct iommu_fwspec
*fwspec
= dev
->iommu_fwspec
;
1856 fwnode_handle_put(fwspec
->iommu_fwnode
);
1858 dev
->iommu_fwspec
= NULL
;
1861 EXPORT_SYMBOL_GPL(iommu_fwspec_free
);
1863 int iommu_fwspec_add_ids(struct device
*dev
, u32
*ids
, int num_ids
)
1865 struct iommu_fwspec
*fwspec
= dev
->iommu_fwspec
;
1872 size
= offsetof(struct iommu_fwspec
, ids
[fwspec
->num_ids
+ num_ids
]);
1873 if (size
> sizeof(*fwspec
)) {
1874 fwspec
= krealloc(dev
->iommu_fwspec
, size
, GFP_KERNEL
);
1878 dev
->iommu_fwspec
= fwspec
;
1881 for (i
= 0; i
< num_ids
; i
++)
1882 fwspec
->ids
[fwspec
->num_ids
+ i
] = ids
[i
];
1884 fwspec
->num_ids
+= num_ids
;
1887 EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids
);