]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/iommu.h
Merge branch 'drm-fixes-4.20' of git://people.freedesktop.org/~agd5f/linux into drm...
[mirror_ubuntu-eoan-kernel.git] / include / linux / iommu.h
CommitLineData
4a77a6cf
JR
1/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#ifndef __LINUX_IOMMU_H
20#define __LINUX_IOMMU_H
21
e8245c1b
JR
22#include <linux/scatterlist.h>
23#include <linux/device.h>
24#include <linux/types.h>
74315ccc 25#include <linux/errno.h>
9a08d376 26#include <linux/err.h>
d0f60a44 27#include <linux/of.h>
74315ccc 28
ca13bb3d
WD
29#define IOMMU_READ (1 << 0)
30#define IOMMU_WRITE (1 << 1)
31#define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
a720b41c 32#define IOMMU_NOEXEC (1 << 3)
31e6850e 33#define IOMMU_MMIO (1 << 4) /* e.g. things like MSI doorbells */
579b2a65 34/*
adf5e516
RM
35 * Where the bus hardware includes a privilege level as part of its access type
36 * markings, and certain devices are capable of issuing transactions marked as
37 * either 'supervisor' or 'user', the IOMMU_PRIV flag requests that the other
38 * given permission flags only apply to accesses at the higher privilege level,
39 * and that unprivileged transactions should have as little access as possible.
40 * This would usually imply the same permissions as kernel mappings on the CPU,
41 * if the IOMMU page table format is equivalent.
579b2a65
MH
42 */
43#define IOMMU_PRIV (1 << 5)
4a77a6cf 44
905d66c1 45struct iommu_ops;
d72e31c9 46struct iommu_group;
ff21776d 47struct bus_type;
4a77a6cf 48struct device;
4f3f8d9d 49struct iommu_domain;
ba1eabfa 50struct notifier_block;
4f3f8d9d
OBC
51
52/* iommu fault flags */
53#define IOMMU_FAULT_READ 0x0
54#define IOMMU_FAULT_WRITE 0x1
55
56typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
77ca2332 57 struct device *, unsigned long, int, void *);
4a77a6cf 58
0ff64f80
JR
59struct iommu_domain_geometry {
60 dma_addr_t aperture_start; /* First address that can be mapped */
61 dma_addr_t aperture_end; /* Last address that can be mapped */
62 bool force_aperture; /* DMA only allowed in mappable range? */
63};
64
8539c7c1
JR
65/* Domain feature flags */
66#define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */
67#define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API
68 implementation */
69#define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */
70
71/*
72 * This are the possible domain-types
73 *
74 * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate
75 * devices
76 * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses
77 * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used
78 * for VMs
79 * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations.
80 * This flag allows IOMMU drivers to implement
81 * certain optimizations for these domains
82 */
83#define IOMMU_DOMAIN_BLOCKED (0U)
84#define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT)
85#define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING)
86#define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \
87 __IOMMU_DOMAIN_DMA_API)
88
4a77a6cf 89struct iommu_domain {
8539c7c1 90 unsigned type;
b22f6434 91 const struct iommu_ops *ops;
d16e0faa 92 unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */
4f3f8d9d 93 iommu_fault_handler_t handler;
77ca2332 94 void *handler_token;
0ff64f80 95 struct iommu_domain_geometry geometry;
0db2e5d1 96 void *iova_cookie;
4a77a6cf
JR
97};
98
1aed0748
JR
99enum iommu_cap {
100 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA
101 transactions */
102 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */
c4986649 103 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
1aed0748 104};
dbb9fd86 105
7cabf491
VS
106/*
107 * Following constraints are specifc to FSL_PAMUV1:
108 * -aperture must be power of 2, and naturally aligned
109 * -number of windows must be power of 2, and address space size
110 * of each window is determined by aperture size / # of windows
111 * -the actual size of the mapped region of a window must be power
112 * of 2 starting with 4KB and physical address must be naturally
113 * aligned.
114 * DOMAIN_ATTR_FSL_PAMUV1 corresponds to the above mentioned contraints.
115 * The caller can invoke iommu_domain_get_attr to check if the underlying
116 * iommu implementation supports these constraints.
117 */
118
0cd76dd1 119enum iommu_attr {
0ff64f80 120 DOMAIN_ATTR_GEOMETRY,
d2e12160 121 DOMAIN_ATTR_PAGING,
69356712 122 DOMAIN_ATTR_WINDOWS,
7cabf491
VS
123 DOMAIN_ATTR_FSL_PAMU_STASH,
124 DOMAIN_ATTR_FSL_PAMU_ENABLE,
125 DOMAIN_ATTR_FSL_PAMUV1,
c02607aa 126 DOMAIN_ATTR_NESTING, /* two stages of translation */
2da274cd 127 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
a8b8a88a 128 DOMAIN_ATTR_MAX,
0cd76dd1
JR
129};
130
d30ddcaa 131/* These are the possible reserved region types */
9d3a4de4
RM
132enum iommu_resv_type {
133 /* Memory regions which must be mapped 1:1 at all times */
134 IOMMU_RESV_DIRECT,
135 /* Arbitrary "never map this or give it to a device" address ranges */
136 IOMMU_RESV_RESERVED,
137 /* Hardware MSI region (untranslated) */
138 IOMMU_RESV_MSI,
139 /* Software-managed MSI translation window */
140 IOMMU_RESV_SW_MSI,
141};
d30ddcaa 142
a1015c2b 143/**
e5b5234a 144 * struct iommu_resv_region - descriptor for a reserved memory region
a1015c2b
JR
145 * @list: Linked list pointers
146 * @start: System physical start address of the region
147 * @length: Length of the region in bytes
148 * @prot: IOMMU Protection flags (READ/WRITE/...)
d30ddcaa 149 * @type: Type of the reserved region
a1015c2b 150 */
e5b5234a 151struct iommu_resv_region {
a1015c2b
JR
152 struct list_head list;
153 phys_addr_t start;
154 size_t length;
155 int prot;
9d3a4de4 156 enum iommu_resv_type type;
a1015c2b
JR
157};
158
39d4ebb9
JR
159#ifdef CONFIG_IOMMU_API
160
7d3002cc
OBC
161/**
162 * struct iommu_ops - iommu ops and capabilities
0d9bacb6
MD
163 * @capable: check capability
164 * @domain_alloc: allocate iommu domain
165 * @domain_free: free iommu domain
7d3002cc
OBC
166 * @attach_dev: attach device to an iommu domain
167 * @detach_dev: detach device from an iommu domain
168 * @map: map a physically contiguous memory region to an iommu domain
169 * @unmap: unmap a physically contiguous memory region from an iommu domain
add02cfd
JR
170 * @flush_tlb_all: Synchronously flush all hardware TLBs for this domain
171 * @tlb_range_add: Add a given iova range to the flush queue for this domain
172 * @tlb_sync: Flush all queued ranges from the hardware TLBs and empty flush
173 * queue
7d3002cc 174 * @iova_to_phys: translate iova to physical address
d72e31c9
AW
175 * @add_device: add device to iommu grouping
176 * @remove_device: remove device from iommu grouping
0d9bacb6 177 * @device_group: find iommu group for a particular device
0cd76dd1
JR
178 * @domain_get_attr: Query domain attributes
179 * @domain_set_attr: Change domain attributes
e5b5234a
EA
180 * @get_resv_regions: Request list of reserved regions for a device
181 * @put_resv_regions: Free list of reserved regions for a device
182 * @apply_resv_region: Temporary helper call-back for iova reserved ranges
0d9bacb6
MD
183 * @domain_window_enable: Configure and enable a particular window for a domain
184 * @domain_window_disable: Disable a particular window for a domain
d0f60a44 185 * @of_xlate: add OF master IDs to iommu grouping
d16e0faa 186 * @pgsize_bitmap: bitmap of all possible supported page sizes
7d3002cc 187 */
4a77a6cf 188struct iommu_ops {
3c0e0ca0 189 bool (*capable)(enum iommu_cap);
938c4709
JR
190
191 /* Domain allocation and freeing by the iommu driver */
8539c7c1 192 struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type);
938c4709
JR
193 void (*domain_free)(struct iommu_domain *);
194
4a77a6cf
JR
195 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
196 void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
67651786 197 int (*map)(struct iommu_domain *domain, unsigned long iova,
5009065d
OBC
198 phys_addr_t paddr, size_t size, int prot);
199 size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
200 size_t size);
add02cfd
JR
201 void (*flush_iotlb_all)(struct iommu_domain *domain);
202 void (*iotlb_range_add)(struct iommu_domain *domain,
203 unsigned long iova, size_t size);
204 void (*iotlb_sync)(struct iommu_domain *domain);
bb5547ac 205 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova);
d72e31c9
AW
206 int (*add_device)(struct device *dev);
207 void (*remove_device)(struct device *dev);
46c6b2bc 208 struct iommu_group *(*device_group)(struct device *dev);
0cd76dd1
JR
209 int (*domain_get_attr)(struct iommu_domain *domain,
210 enum iommu_attr attr, void *data);
211 int (*domain_set_attr)(struct iommu_domain *domain,
212 enum iommu_attr attr, void *data);
d7787d57 213
e5b5234a
EA
214 /* Request/Free a list of reserved regions for a device */
215 void (*get_resv_regions)(struct device *dev, struct list_head *list);
216 void (*put_resv_regions)(struct device *dev, struct list_head *list);
217 void (*apply_resv_region)(struct device *dev,
218 struct iommu_domain *domain,
219 struct iommu_resv_region *region);
a1015c2b 220
d7787d57
JR
221 /* Window handling functions */
222 int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr,
80f97f0f 223 phys_addr_t paddr, u64 size, int prot);
d7787d57
JR
224 void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr);
225
d0f60a44 226 int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
e01d1913 227 bool (*is_attach_deferred)(struct iommu_domain *domain, struct device *dev);
d0f60a44 228
7d3002cc 229 unsigned long pgsize_bitmap;
4a77a6cf
JR
230};
231
b0119e87
JR
232/**
233 * struct iommu_device - IOMMU core representation of one IOMMU hardware
234 * instance
235 * @list: Used by the iommu-core to keep a list of registered iommus
236 * @ops: iommu-ops for talking to this iommu
39ab9555 237 * @dev: struct device for sysfs handling
b0119e87
JR
238 */
239struct iommu_device {
240 struct list_head list;
241 const struct iommu_ops *ops;
c73e1ac8 242 struct fwnode_handle *fwnode;
2926a2aa 243 struct device *dev;
b0119e87
JR
244};
245
246int iommu_device_register(struct iommu_device *iommu);
247void iommu_device_unregister(struct iommu_device *iommu);
39ab9555
JR
248int iommu_device_sysfs_add(struct iommu_device *iommu,
249 struct device *parent,
250 const struct attribute_group **groups,
251 const char *fmt, ...) __printf(4, 5);
252void iommu_device_sysfs_remove(struct iommu_device *iommu);
e3d10af1
JR
253int iommu_device_link(struct iommu_device *iommu, struct device *link);
254void iommu_device_unlink(struct iommu_device *iommu, struct device *link);
b0119e87
JR
255
256static inline void iommu_device_set_ops(struct iommu_device *iommu,
257 const struct iommu_ops *ops)
258{
259 iommu->ops = ops;
260}
261
c73e1ac8
JR
262static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
263 struct fwnode_handle *fwnode)
264{
265 iommu->fwnode = fwnode;
266}
267
2926a2aa
JR
268static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
269{
270 return (struct iommu_device *)dev_get_drvdata(dev);
271}
272
d72e31c9
AW
273#define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */
274#define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */
275#define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */
276#define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */
277#define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */
278#define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */
279
b22f6434 280extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops);
a1b60c1c 281extern bool iommu_present(struct bus_type *bus);
3c0e0ca0 282extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap);
905d66c1 283extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
aa16bea9 284extern struct iommu_group *iommu_group_get_by_id(int id);
4a77a6cf
JR
285extern void iommu_domain_free(struct iommu_domain *domain);
286extern int iommu_attach_device(struct iommu_domain *domain,
287 struct device *dev);
288extern void iommu_detach_device(struct iommu_domain *domain,
289 struct device *dev);
2c1296d9 290extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev);
6af588fe 291extern struct iommu_domain *iommu_get_dma_domain(struct device *dev);
cefc53c7 292extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
7d3002cc
OBC
293 phys_addr_t paddr, size_t size, int prot);
294extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
add02cfd
JR
295 size_t size);
296extern size_t iommu_unmap_fast(struct iommu_domain *domain,
297 unsigned long iova, size_t size);
d88e61fa
CH
298extern size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
299 struct scatterlist *sg,unsigned int nents, int prot);
bb5547ac 300extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
4f3f8d9d 301extern void iommu_set_fault_handler(struct iommu_domain *domain,
77ca2332 302 iommu_fault_handler_t handler, void *token);
d72e31c9 303
e5b5234a
EA
304extern void iommu_get_resv_regions(struct device *dev, struct list_head *list);
305extern void iommu_put_resv_regions(struct device *dev, struct list_head *list);
d290f1e7 306extern int iommu_request_dm_for_dev(struct device *dev);
2b20cbba 307extern struct iommu_resv_region *
9d3a4de4
RM
308iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
309 enum iommu_resv_type type);
6c65fb31
EA
310extern int iommu_get_group_resv_regions(struct iommu_group *group,
311 struct list_head *head);
a1015c2b 312
d72e31c9
AW
313extern int iommu_attach_group(struct iommu_domain *domain,
314 struct iommu_group *group);
315extern void iommu_detach_group(struct iommu_domain *domain,
316 struct iommu_group *group);
317extern struct iommu_group *iommu_group_alloc(void);
318extern void *iommu_group_get_iommudata(struct iommu_group *group);
319extern void iommu_group_set_iommudata(struct iommu_group *group,
320 void *iommu_data,
321 void (*release)(void *iommu_data));
322extern int iommu_group_set_name(struct iommu_group *group, const char *name);
323extern int iommu_group_add_device(struct iommu_group *group,
324 struct device *dev);
325extern void iommu_group_remove_device(struct device *dev);
326extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
327 int (*fn)(struct device *, void *));
328extern struct iommu_group *iommu_group_get(struct device *dev);
13f59a78 329extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group);
d72e31c9
AW
330extern void iommu_group_put(struct iommu_group *group);
331extern int iommu_group_register_notifier(struct iommu_group *group,
332 struct notifier_block *nb);
333extern int iommu_group_unregister_notifier(struct iommu_group *group,
334 struct notifier_block *nb);
335extern int iommu_group_id(struct iommu_group *group);
104a1c13 336extern struct iommu_group *iommu_group_get_for_dev(struct device *dev);
6827ca83 337extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *);
4f3f8d9d 338
0cd76dd1
JR
339extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr,
340 void *data);
341extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr,
342 void *data);
4f3f8d9d 343
d7787d57
JR
344/* Window handling function prototypes */
345extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
80f97f0f
VS
346 phys_addr_t offset, u64 size,
347 int prot);
d7787d57 348extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr);
207c6e36
JR
349
350extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
351 unsigned long iova, int flags);
4a77a6cf 352
add02cfd
JR
353static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
354{
355 if (domain->ops->flush_iotlb_all)
356 domain->ops->flush_iotlb_all(domain);
357}
358
359static inline void iommu_tlb_range_add(struct iommu_domain *domain,
360 unsigned long iova, size_t size)
361{
362 if (domain->ops->iotlb_range_add)
363 domain->ops->iotlb_range_add(domain, iova, size);
364}
365
366static inline void iommu_tlb_sync(struct iommu_domain *domain)
367{
368 if (domain->ops->iotlb_sync)
369 domain->ops->iotlb_sync(domain);
370}
371
5e62292b
JR
372/* PCI device grouping function */
373extern struct iommu_group *pci_device_group(struct device *dev);
6eab556a
JR
374/* Generic device grouping function */
375extern struct iommu_group *generic_device_group(struct device *dev);
eab03e2a
NG
376/* FSL-MC device grouping function */
377struct iommu_group *fsl_mc_device_group(struct device *dev);
5e62292b 378
57f98d2f
RM
379/**
380 * struct iommu_fwspec - per-device IOMMU instance data
381 * @ops: ops for this device's IOMMU
382 * @iommu_fwnode: firmware handle for this device's IOMMU
383 * @iommu_priv: IOMMU driver private data for this device
384 * @num_ids: number of associated device IDs
385 * @ids: IDs which this device may present to the IOMMU
386 */
387struct iommu_fwspec {
388 const struct iommu_ops *ops;
389 struct fwnode_handle *iommu_fwnode;
390 void *iommu_priv;
391 unsigned int num_ids;
392 u32 ids[1];
393};
394
395int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
396 const struct iommu_ops *ops);
397void iommu_fwspec_free(struct device *dev);
398int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids);
534766df 399const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode);
57f98d2f 400
4a77a6cf
JR
401#else /* CONFIG_IOMMU_API */
402
39d4ebb9 403struct iommu_ops {};
d72e31c9 404struct iommu_group {};
57f98d2f 405struct iommu_fwspec {};
b0119e87 406struct iommu_device {};
4a77a6cf 407
a1b60c1c 408static inline bool iommu_present(struct bus_type *bus)
4a77a6cf
JR
409{
410 return false;
411}
412
3c0e0ca0
JR
413static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
414{
415 return false;
416}
417
905d66c1 418static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
4a77a6cf
JR
419{
420 return NULL;
421}
422
b62dfd29
AK
423static inline struct iommu_group *iommu_group_get_by_id(int id)
424{
425 return NULL;
426}
427
4a77a6cf
JR
428static inline void iommu_domain_free(struct iommu_domain *domain)
429{
430}
431
432static inline int iommu_attach_device(struct iommu_domain *domain,
433 struct device *dev)
434{
435 return -ENODEV;
436}
437
438static inline void iommu_detach_device(struct iommu_domain *domain,
439 struct device *dev)
440{
441}
442
2c1296d9
JR
443static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
444{
445 return NULL;
446}
447
cefc53c7 448static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
ebae3e83 449 phys_addr_t paddr, size_t size, int prot)
cefc53c7
JR
450{
451 return -ENODEV;
452}
453
c5611a87
SS
454static inline size_t iommu_unmap(struct iommu_domain *domain,
455 unsigned long iova, size_t size)
cefc53c7 456{
c5611a87 457 return 0;
cefc53c7
JR
458}
459
c5611a87
SS
460static inline size_t iommu_unmap_fast(struct iommu_domain *domain,
461 unsigned long iova, int gfp_order)
cefc53c7 462{
c5611a87 463 return 0;
cefc53c7
JR
464}
465
315786eb
OH
466static inline size_t iommu_map_sg(struct iommu_domain *domain,
467 unsigned long iova, struct scatterlist *sg,
468 unsigned int nents, int prot)
469{
c5611a87 470 return 0;
315786eb
OH
471}
472
add02cfd
JR
473static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
474{
475}
476
477static inline void iommu_tlb_range_add(struct iommu_domain *domain,
478 unsigned long iova, size_t size)
479{
480}
481
482static inline void iommu_tlb_sync(struct iommu_domain *domain)
483{
484}
485
d7787d57
JR
486static inline int iommu_domain_window_enable(struct iommu_domain *domain,
487 u32 wnd_nr, phys_addr_t paddr,
80f97f0f 488 u64 size, int prot)
d7787d57
JR
489{
490 return -ENODEV;
491}
492
493static inline void iommu_domain_window_disable(struct iommu_domain *domain,
494 u32 wnd_nr)
495{
496}
497
bb5547ac 498static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
4a77a6cf
JR
499{
500 return 0;
501}
502
4f3f8d9d 503static inline void iommu_set_fault_handler(struct iommu_domain *domain,
77ca2332 504 iommu_fault_handler_t handler, void *token)
4f3f8d9d
OBC
505{
506}
507
e5b5234a 508static inline void iommu_get_resv_regions(struct device *dev,
a1015c2b
JR
509 struct list_head *list)
510{
511}
512
e5b5234a 513static inline void iommu_put_resv_regions(struct device *dev,
a1015c2b
JR
514 struct list_head *list)
515{
516}
517
6c65fb31
EA
518static inline int iommu_get_group_resv_regions(struct iommu_group *group,
519 struct list_head *head)
520{
521 return -ENODEV;
522}
523
d290f1e7
JR
524static inline int iommu_request_dm_for_dev(struct device *dev)
525{
526 return -ENODEV;
527}
528
bef83de5
AW
529static inline int iommu_attach_group(struct iommu_domain *domain,
530 struct iommu_group *group)
d72e31c9
AW
531{
532 return -ENODEV;
533}
534
bef83de5
AW
535static inline void iommu_detach_group(struct iommu_domain *domain,
536 struct iommu_group *group)
d72e31c9
AW
537{
538}
539
bef83de5 540static inline struct iommu_group *iommu_group_alloc(void)
d72e31c9
AW
541{
542 return ERR_PTR(-ENODEV);
543}
544
bef83de5 545static inline void *iommu_group_get_iommudata(struct iommu_group *group)
d72e31c9
AW
546{
547 return NULL;
548}
549
bef83de5
AW
550static inline void iommu_group_set_iommudata(struct iommu_group *group,
551 void *iommu_data,
552 void (*release)(void *iommu_data))
d72e31c9
AW
553{
554}
555
bef83de5
AW
556static inline int iommu_group_set_name(struct iommu_group *group,
557 const char *name)
d72e31c9
AW
558{
559 return -ENODEV;
560}
561
bef83de5
AW
562static inline int iommu_group_add_device(struct iommu_group *group,
563 struct device *dev)
d72e31c9
AW
564{
565 return -ENODEV;
566}
567
bef83de5 568static inline void iommu_group_remove_device(struct device *dev)
d72e31c9
AW
569{
570}
571
bef83de5
AW
572static inline int iommu_group_for_each_dev(struct iommu_group *group,
573 void *data,
574 int (*fn)(struct device *, void *))
d72e31c9
AW
575{
576 return -ENODEV;
577}
578
bef83de5 579static inline struct iommu_group *iommu_group_get(struct device *dev)
d72e31c9
AW
580{
581 return NULL;
582}
583
bef83de5 584static inline void iommu_group_put(struct iommu_group *group)
d72e31c9
AW
585{
586}
587
bef83de5
AW
588static inline int iommu_group_register_notifier(struct iommu_group *group,
589 struct notifier_block *nb)
1460432c
AW
590{
591 return -ENODEV;
592}
593
bef83de5
AW
594static inline int iommu_group_unregister_notifier(struct iommu_group *group,
595 struct notifier_block *nb)
d72e31c9
AW
596{
597 return 0;
598}
599
bef83de5 600static inline int iommu_group_id(struct iommu_group *group)
d72e31c9
AW
601{
602 return -ENODEV;
603}
1460432c 604
0cd76dd1
JR
605static inline int iommu_domain_get_attr(struct iommu_domain *domain,
606 enum iommu_attr attr, void *data)
607{
608 return -EINVAL;
609}
610
611static inline int iommu_domain_set_attr(struct iommu_domain *domain,
612 enum iommu_attr attr, void *data)
613{
614 return -EINVAL;
615}
616
39ab9555 617static inline int iommu_device_register(struct iommu_device *iommu)
c61959ec 618{
39ab9555 619 return -ENODEV;
c61959ec
AW
620}
621
39ab9555
JR
622static inline void iommu_device_set_ops(struct iommu_device *iommu,
623 const struct iommu_ops *ops)
c61959ec 624{
c61959ec
AW
625}
626
c73e1ac8
JR
627static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
628 struct fwnode_handle *fwnode)
c61959ec 629{
c61959ec
AW
630}
631
2926a2aa
JR
632static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
633{
634 return NULL;
635}
636
39ab9555 637static inline void iommu_device_unregister(struct iommu_device *iommu)
c61959ec 638{
c61959ec
AW
639}
640
39ab9555
JR
641static inline int iommu_device_sysfs_add(struct iommu_device *iommu,
642 struct device *parent,
643 const struct attribute_group **groups,
644 const char *fmt, ...)
b0119e87 645{
39ab9555 646 return -ENODEV;
b0119e87
JR
647}
648
39ab9555 649static inline void iommu_device_sysfs_remove(struct iommu_device *iommu)
c61959ec
AW
650{
651}
652
e09f8ea5 653static inline int iommu_device_link(struct device *dev, struct device *link)
c61959ec
AW
654{
655 return -EINVAL;
656}
657
e09f8ea5 658static inline void iommu_device_unlink(struct device *dev, struct device *link)
c61959ec
AW
659{
660}
661
57f98d2f
RM
662static inline int iommu_fwspec_init(struct device *dev,
663 struct fwnode_handle *iommu_fwnode,
664 const struct iommu_ops *ops)
665{
666 return -ENODEV;
667}
668
669static inline void iommu_fwspec_free(struct device *dev)
670{
671}
672
673static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids,
674 int num_ids)
675{
676 return -ENODEV;
677}
678
e4f10ffe 679static inline
534766df 680const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
e4f10ffe
LP
681{
682 return NULL;
683}
684
4a77a6cf
JR
685#endif /* CONFIG_IOMMU_API */
686
bad614b2
GH
687#ifdef CONFIG_IOMMU_DEBUGFS
688extern struct dentry *iommu_debugfs_dir;
689void iommu_debugfs_setup(void);
690#else
691static inline void iommu_debugfs_setup(void) {}
692#endif
693
4a77a6cf 694#endif /* __LINUX_IOMMU_H */