1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
7 #ifndef __LINUX_IOMMU_H
8 #define __LINUX_IOMMU_H
10 #include <linux/scatterlist.h>
11 #include <linux/device.h>
12 #include <linux/types.h>
13 #include <linux/errno.h>
14 #include <linux/err.h>
16 #include <linux/ioasid.h>
17 #include <uapi/linux/iommu.h>
19 #define IOMMU_READ (1 << 0)
20 #define IOMMU_WRITE (1 << 1)
21 #define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
22 #define IOMMU_NOEXEC (1 << 3)
23 #define IOMMU_MMIO (1 << 4) /* e.g. things like MSI doorbells */
25 * Where the bus hardware includes a privilege level as part of its access type
26 * markings, and certain devices are capable of issuing transactions marked as
27 * either 'supervisor' or 'user', the IOMMU_PRIV flag requests that the other
28 * given permission flags only apply to accesses at the higher privilege level,
29 * and that unprivileged transactions should have as little access as possible.
30 * This would usually imply the same permissions as kernel mappings on the CPU,
31 * if the IOMMU page table format is equivalent.
33 #define IOMMU_PRIV (1 << 5)
40 struct iommu_domain_ops;
41 struct notifier_block;
43 struct iommu_fault_event;
44 struct iommu_dma_cookie;
46 /* iommu fault flags */
47 #define IOMMU_FAULT_READ 0x0
48 #define IOMMU_FAULT_WRITE 0x1
50 typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
51 struct device *, unsigned long, int, void *);
52 typedef int (*iommu_dev_fault_handler_t)(struct iommu_fault *, void *);
54 struct iommu_domain_geometry {
55 dma_addr_t aperture_start; /* First address that can be mapped */
56 dma_addr_t aperture_end; /* Last address that can be mapped */
57 bool force_aperture; /* DMA only allowed in mappable range? */
60 /* Domain feature flags */
61 #define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */
62 #define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API
64 #define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */
65 #define __IOMMU_DOMAIN_DMA_FQ (1U << 3) /* DMA-API uses flush queue */
67 #define __IOMMU_DOMAIN_SVA (1U << 4) /* Shared process address space */
70 * This are the possible domain-types
72 * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate
74 * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses
75 * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used
77 * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations.
78 * This flag allows IOMMU drivers to implement
79 * certain optimizations for these domains
80 * IOMMU_DOMAIN_DMA_FQ - As above, but definitely using batched TLB
82 * IOMMU_DOMAIN_SVA - DMA addresses are shared process addresses
83 * represented by mm_struct's.
85 #define IOMMU_DOMAIN_BLOCKED (0U)
86 #define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT)
87 #define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING)
88 #define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \
89 __IOMMU_DOMAIN_DMA_API)
90 #define IOMMU_DOMAIN_DMA_FQ (__IOMMU_DOMAIN_PAGING | \
91 __IOMMU_DOMAIN_DMA_API | \
92 __IOMMU_DOMAIN_DMA_FQ)
93 #define IOMMU_DOMAIN_SVA (__IOMMU_DOMAIN_SVA)
97 const struct iommu_domain_ops *ops;
98 unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */
99 struct iommu_domain_geometry geometry;
100 struct iommu_dma_cookie *iova_cookie;
101 enum iommu_page_response_code (*iopf_handler)(struct iommu_fault *fault,
106 iommu_fault_handler_t handler;
109 struct { /* IOMMU_DOMAIN_SVA */
110 struct mm_struct *mm;
116 static inline bool iommu_is_dma_domain(struct iommu_domain *domain)
118 return domain->type & __IOMMU_DOMAIN_DMA_API;
122 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU_CACHE is supported */
123 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
124 IOMMU_CAP_PRE_BOOT_PROTECTION, /* Firmware says it used the IOMMU for
125 DMA protection and we should too */
127 * Per-device flag indicating if enforce_cache_coherency() will work on
130 IOMMU_CAP_ENFORCE_CACHE_COHERENCY,
133 /* These are the possible reserved region types */
134 enum iommu_resv_type {
135 /* Memory regions which must be mapped 1:1 at all times */
138 * Memory regions which are advertised to be 1:1 but are
139 * commonly considered relaxable in some conditions,
140 * for instance in device assignment use case (USB, Graphics)
142 IOMMU_RESV_DIRECT_RELAXABLE,
143 /* Arbitrary "never map this or give it to a device" address ranges */
145 /* Hardware MSI region (untranslated) */
147 /* Software-managed MSI translation window */
152 * struct iommu_resv_region - descriptor for a reserved memory region
153 * @list: Linked list pointers
154 * @start: System physical start address of the region
155 * @length: Length of the region in bytes
156 * @prot: IOMMU Protection flags (READ/WRITE/...)
157 * @type: Type of the reserved region
158 * @free: Callback to free associated memory allocations
160 struct iommu_resv_region {
161 struct list_head list;
165 enum iommu_resv_type type;
166 void (*free)(struct device *dev, struct iommu_resv_region *region);
169 struct iommu_iort_rmr_data {
170 struct iommu_resv_region rr;
172 /* Stream IDs associated with IORT RMR entry */
178 * enum iommu_dev_features - Per device IOMMU features
179 * @IOMMU_DEV_FEAT_SVA: Shared Virtual Addresses
180 * @IOMMU_DEV_FEAT_IOPF: I/O Page Faults such as PRI or Stall. Generally
181 * enabling %IOMMU_DEV_FEAT_SVA requires
182 * %IOMMU_DEV_FEAT_IOPF, but some devices manage I/O Page
183 * Faults themselves instead of relying on the IOMMU. When
184 * supported, this feature must be enabled before and
185 * disabled after %IOMMU_DEV_FEAT_SVA.
187 * Device drivers enable a feature using iommu_dev_enable_feature().
189 enum iommu_dev_features {
194 #define IOMMU_PASID_INVALID (-1U)
196 #ifdef CONFIG_IOMMU_API
199 * struct iommu_iotlb_gather - Range information for a pending IOTLB flush
201 * @start: IOVA representing the start of the range to be flushed
202 * @end: IOVA representing the end of the range to be flushed (inclusive)
203 * @pgsize: The interval at which to perform the flush
204 * @freelist: Removed pages to free after sync
205 * @queued: Indicates that the flush will be queued
207 * This structure is intended to be updated by multiple calls to the
208 * ->unmap() function in struct iommu_ops before eventually being passed
209 * into ->iotlb_sync(). Drivers can add pages to @freelist to be freed after
210 * ->iotlb_sync() or ->iotlb_flush_all() have cleared all cached references to
211 * them. @queued is set to indicate when ->iotlb_flush_all() will be called
212 * later instead of ->iotlb_sync(), so drivers may optimise accordingly.
214 struct iommu_iotlb_gather {
218 struct list_head freelist;
223 * struct iommu_ops - iommu ops and capabilities
224 * @capable: check capability
225 * @domain_alloc: allocate iommu domain
226 * @probe_device: Add device to iommu driver handling
227 * @release_device: Remove device from iommu driver handling
228 * @probe_finalize: Do final setup work after the device is added to an IOMMU
229 * group and attached to the groups domain
230 * @set_platform_dma_ops: Returning control back to the platform DMA ops. This op
231 * is to support old IOMMU drivers, new drivers should use
232 * default domains, and the common IOMMU DMA ops.
233 * @device_group: find iommu group for a particular device
234 * @get_resv_regions: Request list of reserved regions for a device
235 * @of_xlate: add OF master IDs to iommu grouping
236 * @is_attach_deferred: Check if domain attach should be deferred from iommu
237 * driver init to device driver init (default no)
238 * @dev_enable/disable_feat: per device entries to enable/disable
239 * iommu specific features.
240 * @page_response: handle page request response
241 * @def_domain_type: device default domain type, return value:
242 * - IOMMU_DOMAIN_IDENTITY: must use an identity domain
243 * - IOMMU_DOMAIN_DMA: must use a dma domain
244 * - 0: use the default setting
245 * @default_domain_ops: the default ops for domains
246 * @remove_dev_pasid: Remove any translation configurations of a specific
247 * pasid, so that any DMA transactions with this pasid
248 * will be blocked by the hardware.
249 * @pgsize_bitmap: bitmap of all possible supported page sizes
250 * @owner: Driver module providing these ops
253 bool (*capable)(struct device *dev, enum iommu_cap);
255 /* Domain allocation and freeing by the iommu driver */
256 struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type);
258 struct iommu_device *(*probe_device)(struct device *dev);
259 void (*release_device)(struct device *dev);
260 void (*probe_finalize)(struct device *dev);
261 void (*set_platform_dma_ops)(struct device *dev);
262 struct iommu_group *(*device_group)(struct device *dev);
264 /* Request/Free a list of reserved regions for a device */
265 void (*get_resv_regions)(struct device *dev, struct list_head *list);
267 int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
268 bool (*is_attach_deferred)(struct device *dev);
270 /* Per device IOMMU features */
271 int (*dev_enable_feat)(struct device *dev, enum iommu_dev_features f);
272 int (*dev_disable_feat)(struct device *dev, enum iommu_dev_features f);
274 int (*page_response)(struct device *dev,
275 struct iommu_fault_event *evt,
276 struct iommu_page_response *msg);
278 int (*def_domain_type)(struct device *dev);
279 void (*remove_dev_pasid)(struct device *dev, ioasid_t pasid);
281 const struct iommu_domain_ops *default_domain_ops;
282 unsigned long pgsize_bitmap;
283 struct module *owner;
287 * struct iommu_domain_ops - domain specific operations
288 * @attach_dev: attach an iommu domain to a device
291 * * EINVAL - can indicate that device and domain are incompatible due to
292 * some previous configuration of the domain, in which case the
293 * driver shouldn't log an error, since it is legitimate for a
294 * caller to test reuse of existing domains. Otherwise, it may
295 * still represent some other fundamental problem
296 * * ENOMEM - out of memory
297 * * ENOSPC - non-ENOMEM type of resource allocation failures
298 * * EBUSY - device is attached to a domain and cannot be changed
299 * * ENODEV - device specific errors, not able to be attached
300 * * <others> - treated as ENODEV by the caller. Use is discouraged
301 * @set_dev_pasid: set an iommu domain to a pasid of device
302 * @map: map a physically contiguous memory region to an iommu domain
303 * @map_pages: map a physically contiguous set of pages of the same size to
305 * @unmap: unmap a physically contiguous memory region from an iommu domain
306 * @unmap_pages: unmap a number of pages of the same size from an iommu domain
307 * @flush_iotlb_all: Synchronously flush all hardware TLBs for this domain
308 * @iotlb_sync_map: Sync mappings created recently using @map to the hardware
309 * @iotlb_sync: Flush all queued ranges from the hardware TLBs and empty flush
311 * @iova_to_phys: translate iova to physical address
312 * @enforce_cache_coherency: Prevent any kind of DMA from bypassing IOMMU_CACHE,
313 * including no-snoop TLPs on PCIe or other platform
314 * specific mechanisms.
315 * @enable_nesting: Enable nesting
316 * @set_pgtable_quirks: Set io page table quirks (IO_PGTABLE_QUIRK_*)
317 * @free: Release the domain after use.
319 struct iommu_domain_ops {
320 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
321 int (*set_dev_pasid)(struct iommu_domain *domain, struct device *dev,
324 int (*map)(struct iommu_domain *domain, unsigned long iova,
325 phys_addr_t paddr, size_t size, int prot, gfp_t gfp);
326 int (*map_pages)(struct iommu_domain *domain, unsigned long iova,
327 phys_addr_t paddr, size_t pgsize, size_t pgcount,
328 int prot, gfp_t gfp, size_t *mapped);
329 size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
330 size_t size, struct iommu_iotlb_gather *iotlb_gather);
331 size_t (*unmap_pages)(struct iommu_domain *domain, unsigned long iova,
332 size_t pgsize, size_t pgcount,
333 struct iommu_iotlb_gather *iotlb_gather);
335 void (*flush_iotlb_all)(struct iommu_domain *domain);
336 void (*iotlb_sync_map)(struct iommu_domain *domain, unsigned long iova,
338 void (*iotlb_sync)(struct iommu_domain *domain,
339 struct iommu_iotlb_gather *iotlb_gather);
341 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain,
344 bool (*enforce_cache_coherency)(struct iommu_domain *domain);
345 int (*enable_nesting)(struct iommu_domain *domain);
346 int (*set_pgtable_quirks)(struct iommu_domain *domain,
347 unsigned long quirks);
349 void (*free)(struct iommu_domain *domain);
353 * struct iommu_device - IOMMU core representation of one IOMMU hardware
355 * @list: Used by the iommu-core to keep a list of registered iommus
356 * @ops: iommu-ops for talking to this iommu
357 * @dev: struct device for sysfs handling
358 * @max_pasids: number of supported PASIDs
360 struct iommu_device {
361 struct list_head list;
362 const struct iommu_ops *ops;
363 struct fwnode_handle *fwnode;
369 * struct iommu_fault_event - Generic fault event
371 * Can represent recoverable faults such as a page requests or
372 * unrecoverable faults such as DMA or IRQ remapping faults.
374 * @fault: fault descriptor
375 * @list: pending fault event list, used for tracking responses
377 struct iommu_fault_event {
378 struct iommu_fault fault;
379 struct list_head list;
383 * struct iommu_fault_param - per-device IOMMU fault data
384 * @handler: Callback function to handle IOMMU faults at device level
385 * @data: handler private data
386 * @faults: holds the pending faults which needs response
387 * @lock: protect pending faults list
389 struct iommu_fault_param {
390 iommu_dev_fault_handler_t handler;
392 struct list_head faults;
397 * struct dev_iommu - Collection of per-device IOMMU data
399 * @fault_param: IOMMU detected device fault reporting data
400 * @iopf_param: I/O Page Fault queue and data
401 * @fwspec: IOMMU fwspec data
402 * @iommu_dev: IOMMU device this device is linked to
403 * @priv: IOMMU Driver private data
404 * @max_pasids: number of PASIDs this device can consume
405 * @attach_deferred: the dma domain attachment is deferred
407 * TODO: migrate other per device data pointers under iommu_dev_data, e.g.
408 * struct iommu_group *iommu_group;
412 struct iommu_fault_param *fault_param;
413 struct iopf_device_param *iopf_param;
414 struct iommu_fwspec *fwspec;
415 struct iommu_device *iommu_dev;
418 u32 attach_deferred:1;
421 int iommu_device_register(struct iommu_device *iommu,
422 const struct iommu_ops *ops,
423 struct device *hwdev);
424 void iommu_device_unregister(struct iommu_device *iommu);
425 int iommu_device_sysfs_add(struct iommu_device *iommu,
426 struct device *parent,
427 const struct attribute_group **groups,
428 const char *fmt, ...) __printf(4, 5);
429 void iommu_device_sysfs_remove(struct iommu_device *iommu);
430 int iommu_device_link(struct iommu_device *iommu, struct device *link);
431 void iommu_device_unlink(struct iommu_device *iommu, struct device *link);
432 int iommu_deferred_attach(struct device *dev, struct iommu_domain *domain);
434 static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
436 return (struct iommu_device *)dev_get_drvdata(dev);
439 static inline void iommu_iotlb_gather_init(struct iommu_iotlb_gather *gather)
441 *gather = (struct iommu_iotlb_gather) {
443 .freelist = LIST_HEAD_INIT(gather->freelist),
447 static inline const struct iommu_ops *dev_iommu_ops(struct device *dev)
450 * Assume that valid ops must be installed if iommu_probe_device()
451 * has succeeded. The device ops are essentially for internal use
452 * within the IOMMU subsystem itself, so we should be able to trust
453 * ourselves not to misuse the helper.
455 return dev->iommu->iommu_dev->ops;
458 extern int bus_iommu_probe(struct bus_type *bus);
459 extern bool iommu_present(struct bus_type *bus);
460 extern bool device_iommu_capable(struct device *dev, enum iommu_cap cap);
461 extern bool iommu_group_has_isolated_msi(struct iommu_group *group);
462 extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
463 extern struct iommu_group *iommu_group_get_by_id(int id);
464 extern void iommu_domain_free(struct iommu_domain *domain);
465 extern int iommu_attach_device(struct iommu_domain *domain,
467 extern void iommu_detach_device(struct iommu_domain *domain,
469 extern int iommu_sva_unbind_gpasid(struct iommu_domain *domain,
470 struct device *dev, ioasid_t pasid);
471 extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev);
472 extern struct iommu_domain *iommu_get_dma_domain(struct device *dev);
473 extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
474 phys_addr_t paddr, size_t size, int prot, gfp_t gfp);
475 extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
477 extern size_t iommu_unmap_fast(struct iommu_domain *domain,
478 unsigned long iova, size_t size,
479 struct iommu_iotlb_gather *iotlb_gather);
480 extern ssize_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
481 struct scatterlist *sg, unsigned int nents,
482 int prot, gfp_t gfp);
483 extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
484 extern void iommu_set_fault_handler(struct iommu_domain *domain,
485 iommu_fault_handler_t handler, void *token);
487 extern void iommu_get_resv_regions(struct device *dev, struct list_head *list);
488 extern void iommu_put_resv_regions(struct device *dev, struct list_head *list);
489 extern void iommu_set_default_passthrough(bool cmd_line);
490 extern void iommu_set_default_translated(bool cmd_line);
491 extern bool iommu_default_passthrough(void);
492 extern struct iommu_resv_region *
493 iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
494 enum iommu_resv_type type, gfp_t gfp);
495 extern int iommu_get_group_resv_regions(struct iommu_group *group,
496 struct list_head *head);
498 extern int iommu_attach_group(struct iommu_domain *domain,
499 struct iommu_group *group);
500 extern void iommu_detach_group(struct iommu_domain *domain,
501 struct iommu_group *group);
502 extern struct iommu_group *iommu_group_alloc(void);
503 extern void *iommu_group_get_iommudata(struct iommu_group *group);
504 extern void iommu_group_set_iommudata(struct iommu_group *group,
506 void (*release)(void *iommu_data));
507 extern int iommu_group_set_name(struct iommu_group *group, const char *name);
508 extern int iommu_group_add_device(struct iommu_group *group,
510 extern void iommu_group_remove_device(struct device *dev);
511 extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
512 int (*fn)(struct device *, void *));
513 extern struct iommu_group *iommu_group_get(struct device *dev);
514 extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group);
515 extern void iommu_group_put(struct iommu_group *group);
516 extern int iommu_register_device_fault_handler(struct device *dev,
517 iommu_dev_fault_handler_t handler,
520 extern int iommu_unregister_device_fault_handler(struct device *dev);
522 extern int iommu_report_device_fault(struct device *dev,
523 struct iommu_fault_event *evt);
524 extern int iommu_page_response(struct device *dev,
525 struct iommu_page_response *msg);
527 extern int iommu_group_id(struct iommu_group *group);
528 extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *);
530 int iommu_enable_nesting(struct iommu_domain *domain);
531 int iommu_set_pgtable_quirks(struct iommu_domain *domain,
532 unsigned long quirks);
534 void iommu_set_dma_strict(void);
536 extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
537 unsigned long iova, int flags);
539 static inline void iommu_flush_iotlb_all(struct iommu_domain *domain)
541 if (domain->ops->flush_iotlb_all)
542 domain->ops->flush_iotlb_all(domain);
545 static inline void iommu_iotlb_sync(struct iommu_domain *domain,
546 struct iommu_iotlb_gather *iotlb_gather)
548 if (domain->ops->iotlb_sync)
549 domain->ops->iotlb_sync(domain, iotlb_gather);
551 iommu_iotlb_gather_init(iotlb_gather);
555 * iommu_iotlb_gather_is_disjoint - Checks whether a new range is disjoint
557 * @gather: TLB gather data
558 * @iova: start of page to invalidate
559 * @size: size of page to invalidate
561 * Helper for IOMMU drivers to check whether a new range and the gathered range
562 * are disjoint. For many IOMMUs, flushing the IOMMU in this case is better
563 * than merging the two, which might lead to unnecessary invalidations.
566 bool iommu_iotlb_gather_is_disjoint(struct iommu_iotlb_gather *gather,
567 unsigned long iova, size_t size)
569 unsigned long start = iova, end = start + size - 1;
571 return gather->end != 0 &&
572 (end + 1 < gather->start || start > gather->end + 1);
577 * iommu_iotlb_gather_add_range - Gather for address-based TLB invalidation
578 * @gather: TLB gather data
579 * @iova: start of page to invalidate
580 * @size: size of page to invalidate
582 * Helper for IOMMU drivers to build arbitrarily-sized invalidation commands
583 * where only the address range matters, and simply minimising intermediate
584 * syncs is preferred.
586 static inline void iommu_iotlb_gather_add_range(struct iommu_iotlb_gather *gather,
587 unsigned long iova, size_t size)
589 unsigned long end = iova + size - 1;
591 if (gather->start > iova)
592 gather->start = iova;
593 if (gather->end < end)
598 * iommu_iotlb_gather_add_page - Gather for page-based TLB invalidation
599 * @domain: IOMMU domain to be invalidated
600 * @gather: TLB gather data
601 * @iova: start of page to invalidate
602 * @size: size of page to invalidate
604 * Helper for IOMMU drivers to build invalidation commands based on individual
605 * pages, or with page size/table level hints which cannot be gathered if they
608 static inline void iommu_iotlb_gather_add_page(struct iommu_domain *domain,
609 struct iommu_iotlb_gather *gather,
610 unsigned long iova, size_t size)
613 * If the new page is disjoint from the current range or is mapped at
614 * a different granularity, then sync the TLB so that the gather
615 * structure can be rewritten.
617 if ((gather->pgsize && gather->pgsize != size) ||
618 iommu_iotlb_gather_is_disjoint(gather, iova, size))
619 iommu_iotlb_sync(domain, gather);
621 gather->pgsize = size;
622 iommu_iotlb_gather_add_range(gather, iova, size);
625 static inline bool iommu_iotlb_gather_queued(struct iommu_iotlb_gather *gather)
627 return gather && gather->queued;
630 /* PCI device grouping function */
631 extern struct iommu_group *pci_device_group(struct device *dev);
632 /* Generic device grouping function */
633 extern struct iommu_group *generic_device_group(struct device *dev);
634 /* FSL-MC device grouping function */
635 struct iommu_group *fsl_mc_device_group(struct device *dev);
638 * struct iommu_fwspec - per-device IOMMU instance data
639 * @ops: ops for this device's IOMMU
640 * @iommu_fwnode: firmware handle for this device's IOMMU
641 * @flags: IOMMU_FWSPEC_* flags
642 * @num_ids: number of associated device IDs
643 * @ids: IDs which this device may present to the IOMMU
645 * Note that the IDs (and any other information, really) stored in this structure should be
646 * considered private to the IOMMU device driver and are not to be used directly by IOMMU
649 struct iommu_fwspec {
650 const struct iommu_ops *ops;
651 struct fwnode_handle *iommu_fwnode;
653 unsigned int num_ids;
657 /* ATS is supported */
658 #define IOMMU_FWSPEC_PCI_RC_ATS (1 << 0)
661 * struct iommu_sva - handle to a device-mm bond
665 struct iommu_domain *domain;
668 int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
669 const struct iommu_ops *ops);
670 void iommu_fwspec_free(struct device *dev);
671 int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids);
672 const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode);
674 static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
677 return dev->iommu->fwspec;
682 static inline void dev_iommu_fwspec_set(struct device *dev,
683 struct iommu_fwspec *fwspec)
685 dev->iommu->fwspec = fwspec;
688 static inline void *dev_iommu_priv_get(struct device *dev)
691 return dev->iommu->priv;
696 static inline void dev_iommu_priv_set(struct device *dev, void *priv)
698 dev->iommu->priv = priv;
701 int iommu_probe_device(struct device *dev);
702 void iommu_release_device(struct device *dev);
704 int iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features f);
705 int iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features f);
707 int iommu_device_use_default_domain(struct device *dev);
708 void iommu_device_unuse_default_domain(struct device *dev);
710 int iommu_group_claim_dma_owner(struct iommu_group *group, void *owner);
711 void iommu_group_release_dma_owner(struct iommu_group *group);
712 bool iommu_group_dma_owner_claimed(struct iommu_group *group);
714 int iommu_device_claim_dma_owner(struct device *dev, void *owner);
715 void iommu_device_release_dma_owner(struct device *dev);
717 struct iommu_domain *iommu_sva_domain_alloc(struct device *dev,
718 struct mm_struct *mm);
719 int iommu_attach_device_pasid(struct iommu_domain *domain,
720 struct device *dev, ioasid_t pasid);
721 void iommu_detach_device_pasid(struct iommu_domain *domain,
722 struct device *dev, ioasid_t pasid);
723 struct iommu_domain *
724 iommu_get_domain_for_dev_pasid(struct device *dev, ioasid_t pasid,
726 #else /* CONFIG_IOMMU_API */
729 struct iommu_group {};
730 struct iommu_fwspec {};
731 struct iommu_device {};
732 struct iommu_fault_param {};
733 struct iommu_iotlb_gather {};
735 static inline bool iommu_present(struct bus_type *bus)
740 static inline bool device_iommu_capable(struct device *dev, enum iommu_cap cap)
745 static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
750 static inline struct iommu_group *iommu_group_get_by_id(int id)
755 static inline void iommu_domain_free(struct iommu_domain *domain)
759 static inline int iommu_attach_device(struct iommu_domain *domain,
765 static inline void iommu_detach_device(struct iommu_domain *domain,
770 static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
775 static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
776 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
781 static inline size_t iommu_unmap(struct iommu_domain *domain,
782 unsigned long iova, size_t size)
787 static inline size_t iommu_unmap_fast(struct iommu_domain *domain,
788 unsigned long iova, int gfp_order,
789 struct iommu_iotlb_gather *iotlb_gather)
794 static inline ssize_t iommu_map_sg(struct iommu_domain *domain,
795 unsigned long iova, struct scatterlist *sg,
796 unsigned int nents, int prot, gfp_t gfp)
801 static inline void iommu_flush_iotlb_all(struct iommu_domain *domain)
805 static inline void iommu_iotlb_sync(struct iommu_domain *domain,
806 struct iommu_iotlb_gather *iotlb_gather)
810 static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
815 static inline void iommu_set_fault_handler(struct iommu_domain *domain,
816 iommu_fault_handler_t handler, void *token)
820 static inline void iommu_get_resv_regions(struct device *dev,
821 struct list_head *list)
825 static inline void iommu_put_resv_regions(struct device *dev,
826 struct list_head *list)
830 static inline int iommu_get_group_resv_regions(struct iommu_group *group,
831 struct list_head *head)
836 static inline void iommu_set_default_passthrough(bool cmd_line)
840 static inline void iommu_set_default_translated(bool cmd_line)
844 static inline bool iommu_default_passthrough(void)
849 static inline int iommu_attach_group(struct iommu_domain *domain,
850 struct iommu_group *group)
855 static inline void iommu_detach_group(struct iommu_domain *domain,
856 struct iommu_group *group)
860 static inline struct iommu_group *iommu_group_alloc(void)
862 return ERR_PTR(-ENODEV);
865 static inline void *iommu_group_get_iommudata(struct iommu_group *group)
870 static inline void iommu_group_set_iommudata(struct iommu_group *group,
872 void (*release)(void *iommu_data))
876 static inline int iommu_group_set_name(struct iommu_group *group,
882 static inline int iommu_group_add_device(struct iommu_group *group,
888 static inline void iommu_group_remove_device(struct device *dev)
892 static inline int iommu_group_for_each_dev(struct iommu_group *group,
894 int (*fn)(struct device *, void *))
899 static inline struct iommu_group *iommu_group_get(struct device *dev)
904 static inline void iommu_group_put(struct iommu_group *group)
909 int iommu_register_device_fault_handler(struct device *dev,
910 iommu_dev_fault_handler_t handler,
916 static inline int iommu_unregister_device_fault_handler(struct device *dev)
922 int iommu_report_device_fault(struct device *dev, struct iommu_fault_event *evt)
927 static inline int iommu_page_response(struct device *dev,
928 struct iommu_page_response *msg)
933 static inline int iommu_group_id(struct iommu_group *group)
938 static inline int iommu_set_pgtable_quirks(struct iommu_domain *domain,
939 unsigned long quirks)
944 static inline int iommu_device_register(struct iommu_device *iommu,
945 const struct iommu_ops *ops,
946 struct device *hwdev)
951 static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
956 static inline void iommu_iotlb_gather_init(struct iommu_iotlb_gather *gather)
960 static inline void iommu_iotlb_gather_add_page(struct iommu_domain *domain,
961 struct iommu_iotlb_gather *gather,
962 unsigned long iova, size_t size)
966 static inline bool iommu_iotlb_gather_queued(struct iommu_iotlb_gather *gather)
971 static inline void iommu_device_unregister(struct iommu_device *iommu)
975 static inline int iommu_device_sysfs_add(struct iommu_device *iommu,
976 struct device *parent,
977 const struct attribute_group **groups,
978 const char *fmt, ...)
983 static inline void iommu_device_sysfs_remove(struct iommu_device *iommu)
987 static inline int iommu_device_link(struct device *dev, struct device *link)
992 static inline void iommu_device_unlink(struct device *dev, struct device *link)
996 static inline int iommu_fwspec_init(struct device *dev,
997 struct fwnode_handle *iommu_fwnode,
998 const struct iommu_ops *ops)
1003 static inline void iommu_fwspec_free(struct device *dev)
1007 static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids,
1014 const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
1020 iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features feat)
1026 iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features feat)
1031 static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
1036 static inline int iommu_device_use_default_domain(struct device *dev)
1041 static inline void iommu_device_unuse_default_domain(struct device *dev)
1046 iommu_group_claim_dma_owner(struct iommu_group *group, void *owner)
1051 static inline void iommu_group_release_dma_owner(struct iommu_group *group)
1055 static inline bool iommu_group_dma_owner_claimed(struct iommu_group *group)
1060 static inline void iommu_device_release_dma_owner(struct device *dev)
1064 static inline int iommu_device_claim_dma_owner(struct device *dev, void *owner)
1069 static inline struct iommu_domain *
1070 iommu_sva_domain_alloc(struct device *dev, struct mm_struct *mm)
1075 static inline int iommu_attach_device_pasid(struct iommu_domain *domain,
1076 struct device *dev, ioasid_t pasid)
1081 static inline void iommu_detach_device_pasid(struct iommu_domain *domain,
1082 struct device *dev, ioasid_t pasid)
1086 static inline struct iommu_domain *
1087 iommu_get_domain_for_dev_pasid(struct device *dev, ioasid_t pasid,
1092 #endif /* CONFIG_IOMMU_API */
1095 * iommu_map_sgtable - Map the given buffer to the IOMMU domain
1096 * @domain: The IOMMU domain to perform the mapping
1097 * @iova: The start address to map the buffer
1098 * @sgt: The sg_table object describing the buffer
1099 * @prot: IOMMU protection bits
1101 * Creates a mapping at @iova for the buffer described by a scatterlist
1102 * stored in the given sg_table object in the provided IOMMU domain.
1104 static inline size_t iommu_map_sgtable(struct iommu_domain *domain,
1105 unsigned long iova, struct sg_table *sgt, int prot)
1107 return iommu_map_sg(domain, iova, sgt->sgl, sgt->orig_nents, prot,
1111 #ifdef CONFIG_IOMMU_DEBUGFS
1112 extern struct dentry *iommu_debugfs_dir;
1113 void iommu_debugfs_setup(void);
1115 static inline void iommu_debugfs_setup(void) {}
1118 #ifdef CONFIG_IOMMU_DMA
1119 #include <linux/msi.h>
1121 /* Setup call for arch DMA mapping code */
1122 void iommu_setup_dma_ops(struct device *dev, u64 dma_base, u64 dma_limit);
1124 int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base);
1126 int iommu_dma_prepare_msi(struct msi_desc *desc, phys_addr_t msi_addr);
1127 void iommu_dma_compose_msi_msg(struct msi_desc *desc, struct msi_msg *msg);
1129 #else /* CONFIG_IOMMU_DMA */
1134 static inline void iommu_setup_dma_ops(struct device *dev, u64 dma_base, u64 dma_limit)
1138 static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base)
1143 static inline int iommu_dma_prepare_msi(struct msi_desc *desc, phys_addr_t msi_addr)
1148 static inline void iommu_dma_compose_msi_msg(struct msi_desc *desc, struct msi_msg *msg)
1152 #endif /* CONFIG_IOMMU_DMA */
1155 * Newer generations of Tegra SoCs require devices' stream IDs to be directly programmed into
1156 * some registers. These are always paired with a Tegra SMMU or ARM SMMU, for which the contents
1157 * of the struct iommu_fwspec are known. Use this helper to formalize access to these internals.
1159 #define TEGRA_STREAM_ID_BYPASS 0x7f
1161 static inline bool tegra_dev_iommu_get_stream_id(struct device *dev, u32 *stream_id)
1163 #ifdef CONFIG_IOMMU_API
1164 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
1166 if (fwspec && fwspec->num_ids == 1) {
1167 *stream_id = fwspec->ids[0] & 0xffff;
1175 #ifdef CONFIG_IOMMU_SVA
1176 struct iommu_sva *iommu_sva_bind_device(struct device *dev,
1177 struct mm_struct *mm);
1178 void iommu_sva_unbind_device(struct iommu_sva *handle);
1179 u32 iommu_sva_get_pasid(struct iommu_sva *handle);
1181 static inline struct iommu_sva *
1182 iommu_sva_bind_device(struct device *dev, struct mm_struct *mm)
1187 static inline void iommu_sva_unbind_device(struct iommu_sva *handle)
1191 static inline u32 iommu_sva_get_pasid(struct iommu_sva *handle)
1193 return IOMMU_PASID_INVALID;
1195 #endif /* CONFIG_IOMMU_SVA */
1197 #endif /* __LINUX_IOMMU_H */