blob: a815cf6f6f47a8611b70b886d15da0f003ac5a01 [file] [log] [blame]
Joerg Roedel4a77a6c2008-11-26 17:02:33 +01001/*
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
Joerg Roedele8245c12017-04-26 15:34:06 +020022#include <linux/scatterlist.h>
23#include <linux/device.h>
24#include <linux/types.h>
Laura Abbott74315cc2011-06-08 17:29:11 -040025#include <linux/errno.h>
Wang YanQing9a08d372013-04-19 09:38:04 +080026#include <linux/err.h>
Will Deacond0f60a42014-08-27 16:15:59 +010027#include <linux/of.h>
Laura Abbott74315cc2011-06-08 17:29:11 -040028
Will Deaconca13bb32013-11-05 15:59:53 +000029#define IOMMU_READ (1 << 0)
30#define IOMMU_WRITE (1 << 1)
31#define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
Antonios Motakisa720b412014-10-13 14:06:16 +010032#define IOMMU_NOEXEC (1 << 3)
Robin Murphy31e68502016-04-05 12:39:30 +010033#define IOMMU_MMIO (1 << 4) /* e.g. things like MSI doorbells */
Mitchel Humpherys579b2a62017-01-06 18:58:08 +053034/*
Robin Murphyadf5e512017-01-27 12:22:54 +000035 * 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.
Mitchel Humpherys579b2a62017-01-06 18:58:08 +053042 */
43#define IOMMU_PRIV (1 << 5)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010044
Joerg Roedel905d66c2011-09-06 16:03:26 +020045struct iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -060046struct iommu_group;
Joerg Roedelff217762011-08-26 16:48:26 +020047struct bus_type;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010048struct device;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040049struct iommu_domain;
Joerg Roedelba1eabfa2012-08-03 15:55:41 +020050struct notifier_block;
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +010051struct iommu_sva;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040052
53/* iommu fault flags */
54#define IOMMU_FAULT_READ 0x0
55#define IOMMU_FAULT_WRITE 0x1
56
57typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030058 struct device *, unsigned long, int, void *);
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +010059typedef int (*iommu_mm_exit_handler_t)(struct device *dev, struct iommu_sva *,
60 void *);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010061
Joerg Roedel0ff64f82012-01-26 19:40:53 +010062struct iommu_domain_geometry {
63 dma_addr_t aperture_start; /* First address that can be mapped */
64 dma_addr_t aperture_end; /* Last address that can be mapped */
65 bool force_aperture; /* DMA only allowed in mappable range? */
66};
67
Joerg Roedel8539c7c2015-03-26 13:43:05 +010068/* Domain feature flags */
69#define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */
70#define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API
71 implementation */
72#define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */
73
74/*
75 * This are the possible domain-types
76 *
77 * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate
78 * devices
79 * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses
80 * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used
81 * for VMs
82 * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations.
83 * This flag allows IOMMU drivers to implement
84 * certain optimizations for these domains
85 */
86#define IOMMU_DOMAIN_BLOCKED (0U)
87#define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT)
88#define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING)
89#define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \
90 __IOMMU_DOMAIN_DMA_API)
91
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010092struct iommu_domain {
Joerg Roedel8539c7c2015-03-26 13:43:05 +010093 unsigned type;
Thierry Redingb22f6432014-06-27 09:03:12 +020094 const struct iommu_ops *ops;
Robin Murphyd16e0fa2016-04-07 18:42:06 +010095 unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040096 iommu_fault_handler_t handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030097 void *handler_token;
Joerg Roedel0ff64f82012-01-26 19:40:53 +010098 struct iommu_domain_geometry geometry;
Robin Murphy0db2e5d2015-10-01 20:13:58 +010099 void *iova_cookie;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100100};
101
Joerg Roedel1aed0742014-09-03 18:34:04 +0200102enum iommu_cap {
103 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA
104 transactions */
105 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */
Antonios Motakisc4986642014-10-13 14:06:17 +0100106 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
Joerg Roedel1aed0742014-09-03 18:34:04 +0200107};
Sheng Yangdbb9fd82009-03-18 15:33:06 +0800108
Varun Sethi7cabf492013-07-15 10:20:56 +0530109/*
110 * Following constraints are specifc to FSL_PAMUV1:
111 * -aperture must be power of 2, and naturally aligned
112 * -number of windows must be power of 2, and address space size
113 * of each window is determined by aperture size / # of windows
114 * -the actual size of the mapped region of a window must be power
115 * of 2 starting with 4KB and physical address must be naturally
116 * aligned.
117 * DOMAIN_ATTR_FSL_PAMUV1 corresponds to the above mentioned contraints.
118 * The caller can invoke iommu_domain_get_attr to check if the underlying
119 * iommu implementation supports these constraints.
120 */
121
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100122enum iommu_attr {
Joerg Roedel0ff64f82012-01-26 19:40:53 +0100123 DOMAIN_ATTR_GEOMETRY,
Joerg Roedeld2e12162013-01-29 13:49:04 +0100124 DOMAIN_ATTR_PAGING,
Joerg Roedel69356712013-02-04 14:00:01 +0100125 DOMAIN_ATTR_WINDOWS,
Varun Sethi7cabf492013-07-15 10:20:56 +0530126 DOMAIN_ATTR_FSL_PAMU_STASH,
127 DOMAIN_ATTR_FSL_PAMU_ENABLE,
128 DOMAIN_ATTR_FSL_PAMUV1,
Will Deaconc02607a2014-09-29 10:05:06 -0600129 DOMAIN_ATTR_NESTING, /* two stages of translation */
Zhen Lei2da274c2018-09-20 17:10:22 +0100130 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
Joerg Roedela8b8a88a2013-01-29 14:36:31 +0100131 DOMAIN_ATTR_MAX,
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100132};
133
Eric Augerd30ddca2017-01-19 20:57:48 +0000134/* These are the possible reserved region types */
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000135enum iommu_resv_type {
136 /* Memory regions which must be mapped 1:1 at all times */
137 IOMMU_RESV_DIRECT,
138 /* Arbitrary "never map this or give it to a device" address ranges */
139 IOMMU_RESV_RESERVED,
140 /* Hardware MSI region (untranslated) */
141 IOMMU_RESV_MSI,
142 /* Software-managed MSI translation window */
143 IOMMU_RESV_SW_MSI,
144};
Eric Augerd30ddca2017-01-19 20:57:48 +0000145
Joerg Roedela1015c22015-05-28 18:41:33 +0200146/**
Eric Augere5b52342017-01-19 20:57:47 +0000147 * struct iommu_resv_region - descriptor for a reserved memory region
Joerg Roedela1015c22015-05-28 18:41:33 +0200148 * @list: Linked list pointers
149 * @start: System physical start address of the region
150 * @length: Length of the region in bytes
151 * @prot: IOMMU Protection flags (READ/WRITE/...)
Eric Augerd30ddca2017-01-19 20:57:48 +0000152 * @type: Type of the reserved region
Joerg Roedela1015c22015-05-28 18:41:33 +0200153 */
Eric Augere5b52342017-01-19 20:57:47 +0000154struct iommu_resv_region {
Joerg Roedela1015c22015-05-28 18:41:33 +0200155 struct list_head list;
156 phys_addr_t start;
157 size_t length;
158 int prot;
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000159 enum iommu_resv_type type;
Joerg Roedela1015c22015-05-28 18:41:33 +0200160};
161
Lu Baolua3a19592019-03-25 09:30:28 +0800162/* Per device IOMMU features */
163enum iommu_dev_features {
164 IOMMU_DEV_FEAT_AUX, /* Aux-domain feature */
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100165 IOMMU_DEV_FEAT_SVA, /* Shared Virtual Addresses */
166};
167
168#define IOMMU_PASID_INVALID (-1U)
169
170/**
171 * struct iommu_sva_ops - device driver callbacks for an SVA context
172 *
173 * @mm_exit: called when the mm is about to be torn down by exit_mmap. After
174 * @mm_exit returns, the device must not issue any more transaction
175 * with the PASID given as argument.
176 *
177 * The @mm_exit handler is allowed to sleep. Be careful about the
178 * locks taken in @mm_exit, because they might lead to deadlocks if
179 * they are also held when dropping references to the mm. Consider the
180 * following call chain:
181 * mutex_lock(A); mmput(mm) -> exit_mm() -> @mm_exit() -> mutex_lock(A)
182 * Using mmput_async() prevents this scenario.
183 *
184 */
185struct iommu_sva_ops {
186 iommu_mm_exit_handler_t mm_exit;
Lu Baolua3a19592019-03-25 09:30:28 +0800187};
188
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200189#ifdef CONFIG_IOMMU_API
190
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200191/**
192 * struct iommu_ops - iommu ops and capabilities
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900193 * @capable: check capability
194 * @domain_alloc: allocate iommu domain
195 * @domain_free: free iommu domain
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200196 * @attach_dev: attach device to an iommu domain
197 * @detach_dev: detach device from an iommu domain
198 * @map: map a physically contiguous memory region to an iommu domain
199 * @unmap: unmap a physically contiguous memory region from an iommu domain
Tom Murphydb04d4a2019-02-11 15:50:33 +0000200 * @flush_iotlb_all: Synchronously flush all hardware TLBs for this domain
tom51eb7802018-12-04 18:27:34 +0000201 * @iotlb_range_add: Add a given iova range to the flush queue for this domain
Geert Uytterhoeven2405bc12019-02-20 14:00:52 +0100202 * @iotlb_sync_map: Sync mappings created recently using @map to the hardware
tom51eb7802018-12-04 18:27:34 +0000203 * @iotlb_sync: Flush all queued ranges from the hardware TLBs and empty flush
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200204 * queue
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200205 * @iova_to_phys: translate iova to physical address
Alex Williamsond72e31c2012-05-30 14:18:53 -0600206 * @add_device: add device to iommu grouping
207 * @remove_device: remove device from iommu grouping
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900208 * @device_group: find iommu group for a particular device
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100209 * @domain_get_attr: Query domain attributes
210 * @domain_set_attr: Change domain attributes
Eric Augere5b52342017-01-19 20:57:47 +0000211 * @get_resv_regions: Request list of reserved regions for a device
212 * @put_resv_regions: Free list of reserved regions for a device
213 * @apply_resv_region: Temporary helper call-back for iova reserved ranges
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900214 * @domain_window_enable: Configure and enable a particular window for a domain
215 * @domain_window_disable: Disable a particular window for a domain
Will Deacond0f60a42014-08-27 16:15:59 +0100216 * @of_xlate: add OF master IDs to iommu grouping
Geert Uytterhoevena7055d52019-02-20 14:00:53 +0100217 * @is_attach_deferred: Check if domain attach should be deferred from iommu
218 * driver init to device driver init (default no)
Lu Baolua3a19592019-03-25 09:30:28 +0800219 * @dev_has/enable/disable_feat: per device entries to check/enable/disable
220 * iommu specific features.
221 * @dev_feat_enabled: check enabled feature
222 * @aux_attach/detach_dev: aux-domain specific attach/detach entries.
223 * @aux_get_pasid: get the pasid given an aux-domain
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100224 * @sva_bind: Bind process address space to device
225 * @sva_unbind: Unbind process address space from device
226 * @sva_get_pasid: Get PASID associated to a SVA handle
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100227 * @pgsize_bitmap: bitmap of all possible supported page sizes
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200228 */
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100229struct iommu_ops {
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200230 bool (*capable)(enum iommu_cap);
Joerg Roedel938c4702015-03-26 13:43:04 +0100231
232 /* Domain allocation and freeing by the iommu driver */
Joerg Roedel8539c7c2015-03-26 13:43:05 +0100233 struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type);
Joerg Roedel938c4702015-03-26 13:43:04 +0100234 void (*domain_free)(struct iommu_domain *);
235
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100236 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
237 void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
Joerg Roedel67651782010-01-21 16:32:27 +0100238 int (*map)(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +0200239 phys_addr_t paddr, size_t size, int prot);
240 size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
241 size_t size);
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200242 void (*flush_iotlb_all)(struct iommu_domain *domain);
243 void (*iotlb_range_add)(struct iommu_domain *domain,
244 unsigned long iova, size_t size);
Dmitry Osipenko1d7ae532018-12-12 23:38:47 +0300245 void (*iotlb_sync_map)(struct iommu_domain *domain);
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200246 void (*iotlb_sync)(struct iommu_domain *domain);
Varun Sethibb5547a2013-03-29 01:23:58 +0530247 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600248 int (*add_device)(struct device *dev);
249 void (*remove_device)(struct device *dev);
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200250 struct iommu_group *(*device_group)(struct device *dev);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100251 int (*domain_get_attr)(struct iommu_domain *domain,
252 enum iommu_attr attr, void *data);
253 int (*domain_set_attr)(struct iommu_domain *domain,
254 enum iommu_attr attr, void *data);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100255
Eric Augere5b52342017-01-19 20:57:47 +0000256 /* Request/Free a list of reserved regions for a device */
257 void (*get_resv_regions)(struct device *dev, struct list_head *list);
258 void (*put_resv_regions)(struct device *dev, struct list_head *list);
259 void (*apply_resv_region)(struct device *dev,
260 struct iommu_domain *domain,
261 struct iommu_resv_region *region);
Joerg Roedela1015c22015-05-28 18:41:33 +0200262
Joerg Roedeld7787d52013-01-29 14:26:20 +0100263 /* Window handling functions */
264 int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530265 phys_addr_t paddr, u64 size, int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100266 void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr);
267
Will Deacond0f60a42014-08-27 16:15:59 +0100268 int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
Baoquan Hee01d1912017-08-09 16:33:40 +0800269 bool (*is_attach_deferred)(struct iommu_domain *domain, struct device *dev);
Will Deacond0f60a42014-08-27 16:15:59 +0100270
Lu Baolua3a19592019-03-25 09:30:28 +0800271 /* Per device IOMMU features */
272 bool (*dev_has_feat)(struct device *dev, enum iommu_dev_features f);
273 bool (*dev_feat_enabled)(struct device *dev, enum iommu_dev_features f);
274 int (*dev_enable_feat)(struct device *dev, enum iommu_dev_features f);
275 int (*dev_disable_feat)(struct device *dev, enum iommu_dev_features f);
276
277 /* Aux-domain specific attach/detach entries */
278 int (*aux_attach_dev)(struct iommu_domain *domain, struct device *dev);
279 void (*aux_detach_dev)(struct iommu_domain *domain, struct device *dev);
280 int (*aux_get_pasid)(struct iommu_domain *domain, struct device *dev);
281
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100282 struct iommu_sva *(*sva_bind)(struct device *dev, struct mm_struct *mm,
283 void *drvdata);
284 void (*sva_unbind)(struct iommu_sva *handle);
285 int (*sva_get_pasid)(struct iommu_sva *handle);
286
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200287 unsigned long pgsize_bitmap;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100288};
289
Joerg Roedelb0119e82017-02-01 13:23:08 +0100290/**
291 * struct iommu_device - IOMMU core representation of one IOMMU hardware
292 * instance
293 * @list: Used by the iommu-core to keep a list of registered iommus
294 * @ops: iommu-ops for talking to this iommu
Joerg Roedel39ab9552017-02-01 16:56:46 +0100295 * @dev: struct device for sysfs handling
Joerg Roedelb0119e82017-02-01 13:23:08 +0100296 */
297struct iommu_device {
298 struct list_head list;
299 const struct iommu_ops *ops;
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100300 struct fwnode_handle *fwnode;
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200301 struct device *dev;
Joerg Roedelb0119e82017-02-01 13:23:08 +0100302};
303
304int iommu_device_register(struct iommu_device *iommu);
305void iommu_device_unregister(struct iommu_device *iommu);
Joerg Roedel39ab9552017-02-01 16:56:46 +0100306int iommu_device_sysfs_add(struct iommu_device *iommu,
307 struct device *parent,
308 const struct attribute_group **groups,
309 const char *fmt, ...) __printf(4, 5);
310void iommu_device_sysfs_remove(struct iommu_device *iommu);
Joerg Roedele3d10af2017-02-01 17:23:22 +0100311int iommu_device_link(struct iommu_device *iommu, struct device *link);
312void iommu_device_unlink(struct iommu_device *iommu, struct device *link);
Joerg Roedelb0119e82017-02-01 13:23:08 +0100313
314static inline void iommu_device_set_ops(struct iommu_device *iommu,
315 const struct iommu_ops *ops)
316{
317 iommu->ops = ops;
318}
319
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100320static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
321 struct fwnode_handle *fwnode)
322{
323 iommu->fwnode = fwnode;
324}
325
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200326static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
327{
328 return (struct iommu_device *)dev_get_drvdata(dev);
329}
330
Alex Williamsond72e31c2012-05-30 14:18:53 -0600331#define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */
332#define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */
333#define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */
334#define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */
335#define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */
336#define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */
337
Thierry Redingb22f6432014-06-27 09:03:12 +0200338extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops);
Joerg Roedela1b60c12011-09-06 18:46:34 +0200339extern bool iommu_present(struct bus_type *bus);
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200340extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap);
Joerg Roedel905d66c2011-09-06 16:03:26 +0200341extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100342extern struct iommu_group *iommu_group_get_by_id(int id);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100343extern void iommu_domain_free(struct iommu_domain *domain);
344extern int iommu_attach_device(struct iommu_domain *domain,
345 struct device *dev);
346extern void iommu_detach_device(struct iommu_domain *domain,
347 struct device *dev);
Joerg Roedel2c1296d2015-05-28 18:41:32 +0200348extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev);
Robin Murphy6af588f2018-09-12 16:24:12 +0100349extern struct iommu_domain *iommu_get_dma_domain(struct device *dev);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100350extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200351 phys_addr_t paddr, size_t size, int prot);
352extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200353 size_t size);
354extern size_t iommu_unmap_fast(struct iommu_domain *domain,
355 unsigned long iova, size_t size);
Christoph Hellwigd88e61f2018-07-30 09:36:26 +0200356extern size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
357 struct scatterlist *sg,unsigned int nents, int prot);
Varun Sethibb5547a2013-03-29 01:23:58 +0530358extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400359extern void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300360 iommu_fault_handler_t handler, void *token);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600361
Eric Augere5b52342017-01-19 20:57:47 +0000362extern void iommu_get_resv_regions(struct device *dev, struct list_head *list);
363extern void iommu_put_resv_regions(struct device *dev, struct list_head *list);
Joerg Roedeld290f1e2015-05-28 18:41:36 +0200364extern int iommu_request_dm_for_dev(struct device *dev);
Eric Auger2b20cbb2017-01-19 20:57:49 +0000365extern struct iommu_resv_region *
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000366iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
367 enum iommu_resv_type type);
Eric Auger6c65fb32017-01-19 20:57:51 +0000368extern int iommu_get_group_resv_regions(struct iommu_group *group,
369 struct list_head *head);
Joerg Roedela1015c22015-05-28 18:41:33 +0200370
Alex Williamsond72e31c2012-05-30 14:18:53 -0600371extern int iommu_attach_group(struct iommu_domain *domain,
372 struct iommu_group *group);
373extern void iommu_detach_group(struct iommu_domain *domain,
374 struct iommu_group *group);
375extern struct iommu_group *iommu_group_alloc(void);
376extern void *iommu_group_get_iommudata(struct iommu_group *group);
377extern void iommu_group_set_iommudata(struct iommu_group *group,
378 void *iommu_data,
379 void (*release)(void *iommu_data));
380extern int iommu_group_set_name(struct iommu_group *group, const char *name);
381extern int iommu_group_add_device(struct iommu_group *group,
382 struct device *dev);
383extern void iommu_group_remove_device(struct device *dev);
384extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
385 int (*fn)(struct device *, void *));
386extern struct iommu_group *iommu_group_get(struct device *dev);
Robin Murphy13f59a72016-11-11 17:59:21 +0000387extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600388extern void iommu_group_put(struct iommu_group *group);
389extern int iommu_group_register_notifier(struct iommu_group *group,
390 struct notifier_block *nb);
391extern int iommu_group_unregister_notifier(struct iommu_group *group,
392 struct notifier_block *nb);
393extern int iommu_group_id(struct iommu_group *group);
Alex Williamson104a1c12014-07-03 09:51:18 -0600394extern struct iommu_group *iommu_group_get_for_dev(struct device *dev);
Joerg Roedel6827ca82015-05-28 18:41:35 +0200395extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400396
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100397extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr,
398 void *data);
399extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr,
400 void *data);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400401
Joerg Roedeld7787d52013-01-29 14:26:20 +0100402/* Window handling function prototypes */
403extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530404 phys_addr_t offset, u64 size,
405 int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100406extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400407
Joerg Roedel207c6e32017-04-26 15:39:28 +0200408extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
409 unsigned long iova, int flags);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100410
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200411static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
412{
413 if (domain->ops->flush_iotlb_all)
414 domain->ops->flush_iotlb_all(domain);
415}
416
417static inline void iommu_tlb_range_add(struct iommu_domain *domain,
418 unsigned long iova, size_t size)
419{
420 if (domain->ops->iotlb_range_add)
421 domain->ops->iotlb_range_add(domain, iova, size);
422}
423
424static inline void iommu_tlb_sync(struct iommu_domain *domain)
425{
426 if (domain->ops->iotlb_sync)
427 domain->ops->iotlb_sync(domain);
428}
429
Joerg Roedel5e622922015-10-21 23:51:37 +0200430/* PCI device grouping function */
431extern struct iommu_group *pci_device_group(struct device *dev);
Joerg Roedel6eab5562015-10-21 23:51:38 +0200432/* Generic device grouping function */
433extern struct iommu_group *generic_device_group(struct device *dev);
Nipun Guptaeab03e22018-09-10 19:19:18 +0530434/* FSL-MC device grouping function */
435struct iommu_group *fsl_mc_device_group(struct device *dev);
Joerg Roedel5e622922015-10-21 23:51:37 +0200436
Robin Murphy57f98d22016-09-13 10:54:14 +0100437/**
438 * struct iommu_fwspec - per-device IOMMU instance data
439 * @ops: ops for this device's IOMMU
440 * @iommu_fwnode: firmware handle for this device's IOMMU
441 * @iommu_priv: IOMMU driver private data for this device
442 * @num_ids: number of associated device IDs
443 * @ids: IDs which this device may present to the IOMMU
444 */
445struct iommu_fwspec {
446 const struct iommu_ops *ops;
447 struct fwnode_handle *iommu_fwnode;
448 void *iommu_priv;
Jean-Philippe Brucker5702ee22019-04-17 19:24:42 +0100449 u32 flags;
Robin Murphy57f98d22016-09-13 10:54:14 +0100450 unsigned int num_ids;
451 u32 ids[1];
452};
453
Jean-Philippe Brucker5702ee22019-04-17 19:24:42 +0100454/* ATS is supported */
455#define IOMMU_FWSPEC_PCI_RC_ATS (1 << 0)
456
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100457/**
458 * struct iommu_sva - handle to a device-mm bond
459 */
460struct iommu_sva {
461 struct device *dev;
462 const struct iommu_sva_ops *ops;
463};
464
Robin Murphy57f98d22016-09-13 10:54:14 +0100465int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
466 const struct iommu_ops *ops);
467void iommu_fwspec_free(struct device *dev);
468int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids);
Joerg Roedel534766d2017-01-31 16:58:42 +0100469const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode);
Robin Murphy57f98d22016-09-13 10:54:14 +0100470
Joerg Roedelb4ef7252018-11-28 13:35:24 +0100471static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
472{
473 return dev->iommu_fwspec;
474}
475
476static inline void dev_iommu_fwspec_set(struct device *dev,
477 struct iommu_fwspec *fwspec)
478{
479 dev->iommu_fwspec = fwspec;
480}
481
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100482int iommu_probe_device(struct device *dev);
483void iommu_release_device(struct device *dev);
484
Lu Baolua3a19592019-03-25 09:30:28 +0800485bool iommu_dev_has_feature(struct device *dev, enum iommu_dev_features f);
486int iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features f);
487int iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features f);
488bool iommu_dev_feature_enabled(struct device *dev, enum iommu_dev_features f);
489int iommu_aux_attach_device(struct iommu_domain *domain, struct device *dev);
490void iommu_aux_detach_device(struct iommu_domain *domain, struct device *dev);
491int iommu_aux_get_pasid(struct iommu_domain *domain, struct device *dev);
492
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100493struct iommu_sva *iommu_sva_bind_device(struct device *dev,
494 struct mm_struct *mm,
495 void *drvdata);
496void iommu_sva_unbind_device(struct iommu_sva *handle);
497int iommu_sva_set_ops(struct iommu_sva *handle,
498 const struct iommu_sva_ops *ops);
499int iommu_sva_get_pasid(struct iommu_sva *handle);
500
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100501#else /* CONFIG_IOMMU_API */
502
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200503struct iommu_ops {};
Alex Williamsond72e31c2012-05-30 14:18:53 -0600504struct iommu_group {};
Robin Murphy57f98d22016-09-13 10:54:14 +0100505struct iommu_fwspec {};
Joerg Roedelb0119e82017-02-01 13:23:08 +0100506struct iommu_device {};
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100507
Joerg Roedela1b60c12011-09-06 18:46:34 +0200508static inline bool iommu_present(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100509{
510 return false;
511}
512
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200513static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
514{
515 return false;
516}
517
Joerg Roedel905d66c2011-09-06 16:03:26 +0200518static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100519{
520 return NULL;
521}
522
Alexey Kardashevskiyb62dfd22013-11-21 17:41:14 +1100523static inline struct iommu_group *iommu_group_get_by_id(int id)
524{
525 return NULL;
526}
527
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100528static inline void iommu_domain_free(struct iommu_domain *domain)
529{
530}
531
532static inline int iommu_attach_device(struct iommu_domain *domain,
533 struct device *dev)
534{
535 return -ENODEV;
536}
537
538static inline void iommu_detach_device(struct iommu_domain *domain,
539 struct device *dev)
540{
541}
542
Joerg Roedel2c1296d2015-05-28 18:41:32 +0200543static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
544{
545 return NULL;
546}
547
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100548static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
Dmitry Osipenkoebae3e82017-07-05 20:27:53 +0300549 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100550{
551 return -ENODEV;
552}
553
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500554static inline size_t iommu_unmap(struct iommu_domain *domain,
555 unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100556{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500557 return 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100558}
559
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500560static inline size_t iommu_unmap_fast(struct iommu_domain *domain,
561 unsigned long iova, int gfp_order)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100562{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500563 return 0;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100564}
565
Olav Haugan315786e2014-10-25 09:55:16 -0700566static inline size_t iommu_map_sg(struct iommu_domain *domain,
567 unsigned long iova, struct scatterlist *sg,
568 unsigned int nents, int prot)
569{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500570 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -0700571}
572
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200573static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
574{
575}
576
577static inline void iommu_tlb_range_add(struct iommu_domain *domain,
578 unsigned long iova, size_t size)
579{
580}
581
582static inline void iommu_tlb_sync(struct iommu_domain *domain)
583{
584}
585
Joerg Roedeld7787d52013-01-29 14:26:20 +0100586static inline int iommu_domain_window_enable(struct iommu_domain *domain,
587 u32 wnd_nr, phys_addr_t paddr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530588 u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +0100589{
590 return -ENODEV;
591}
592
593static inline void iommu_domain_window_disable(struct iommu_domain *domain,
594 u32 wnd_nr)
595{
596}
597
Varun Sethibb5547a2013-03-29 01:23:58 +0530598static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100599{
600 return 0;
601}
602
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400603static inline void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300604 iommu_fault_handler_t handler, void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400605{
606}
607
Eric Augere5b52342017-01-19 20:57:47 +0000608static inline void iommu_get_resv_regions(struct device *dev,
Joerg Roedela1015c22015-05-28 18:41:33 +0200609 struct list_head *list)
610{
611}
612
Eric Augere5b52342017-01-19 20:57:47 +0000613static inline void iommu_put_resv_regions(struct device *dev,
Joerg Roedela1015c22015-05-28 18:41:33 +0200614 struct list_head *list)
615{
616}
617
Eric Auger6c65fb32017-01-19 20:57:51 +0000618static inline int iommu_get_group_resv_regions(struct iommu_group *group,
619 struct list_head *head)
620{
621 return -ENODEV;
622}
623
Joerg Roedeld290f1e2015-05-28 18:41:36 +0200624static inline int iommu_request_dm_for_dev(struct device *dev)
625{
626 return -ENODEV;
627}
628
Alex Williamsonbef83de2012-09-24 21:23:25 -0600629static inline int iommu_attach_group(struct iommu_domain *domain,
630 struct iommu_group *group)
Alex Williamson14604322011-10-21 15:56:05 -0400631{
632 return -ENODEV;
633}
634
Alex Williamsonbef83de2012-09-24 21:23:25 -0600635static inline void iommu_detach_group(struct iommu_domain *domain,
636 struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600637{
638}
639
Alex Williamsonbef83de2012-09-24 21:23:25 -0600640static inline struct iommu_group *iommu_group_alloc(void)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600641{
642 return ERR_PTR(-ENODEV);
643}
644
Alex Williamsonbef83de2012-09-24 21:23:25 -0600645static inline void *iommu_group_get_iommudata(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600646{
647 return NULL;
648}
649
Alex Williamsonbef83de2012-09-24 21:23:25 -0600650static inline void iommu_group_set_iommudata(struct iommu_group *group,
651 void *iommu_data,
652 void (*release)(void *iommu_data))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600653{
654}
655
Alex Williamsonbef83de2012-09-24 21:23:25 -0600656static inline int iommu_group_set_name(struct iommu_group *group,
657 const char *name)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600658{
659 return -ENODEV;
660}
661
Alex Williamsonbef83de2012-09-24 21:23:25 -0600662static inline int iommu_group_add_device(struct iommu_group *group,
663 struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600664{
665 return -ENODEV;
666}
667
Alex Williamsonbef83de2012-09-24 21:23:25 -0600668static inline void iommu_group_remove_device(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600669{
670}
671
Alex Williamsonbef83de2012-09-24 21:23:25 -0600672static inline int iommu_group_for_each_dev(struct iommu_group *group,
673 void *data,
674 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600675{
676 return -ENODEV;
677}
678
Alex Williamsonbef83de2012-09-24 21:23:25 -0600679static inline struct iommu_group *iommu_group_get(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600680{
681 return NULL;
682}
683
Alex Williamsonbef83de2012-09-24 21:23:25 -0600684static inline void iommu_group_put(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600685{
686}
687
Alex Williamsonbef83de2012-09-24 21:23:25 -0600688static inline int iommu_group_register_notifier(struct iommu_group *group,
689 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600690{
691 return -ENODEV;
692}
693
Alex Williamsonbef83de2012-09-24 21:23:25 -0600694static inline int iommu_group_unregister_notifier(struct iommu_group *group,
695 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600696{
697 return 0;
698}
699
Alex Williamsonbef83de2012-09-24 21:23:25 -0600700static inline int iommu_group_id(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600701{
702 return -ENODEV;
703}
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100704
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100705static inline int iommu_domain_get_attr(struct iommu_domain *domain,
706 enum iommu_attr attr, void *data)
707{
708 return -EINVAL;
709}
710
711static inline int iommu_domain_set_attr(struct iommu_domain *domain,
712 enum iommu_attr attr, void *data)
713{
714 return -EINVAL;
715}
716
Joerg Roedelb0119e82017-02-01 13:23:08 +0100717static inline int iommu_device_register(struct iommu_device *iommu)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600718{
Joerg Roedelb0119e82017-02-01 13:23:08 +0100719 return -ENODEV;
Alex Williamsonc61959e2014-06-12 16:12:24 -0600720}
721
Joerg Roedelb0119e82017-02-01 13:23:08 +0100722static inline void iommu_device_set_ops(struct iommu_device *iommu,
723 const struct iommu_ops *ops)
724{
725}
726
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100727static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
728 struct fwnode_handle *fwnode)
729{
730}
731
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200732static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
733{
734 return NULL;
735}
736
Joerg Roedelb0119e82017-02-01 13:23:08 +0100737static inline void iommu_device_unregister(struct iommu_device *iommu)
738{
739}
740
Joerg Roedel39ab9552017-02-01 16:56:46 +0100741static inline int iommu_device_sysfs_add(struct iommu_device *iommu,
742 struct device *parent,
743 const struct attribute_group **groups,
744 const char *fmt, ...)
745{
746 return -ENODEV;
747}
748
749static inline void iommu_device_sysfs_remove(struct iommu_device *iommu)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600750{
751}
752
Alex Williamsone09f8ea2014-07-07 14:31:36 -0600753static inline int iommu_device_link(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600754{
755 return -EINVAL;
756}
757
Alex Williamsone09f8ea2014-07-07 14:31:36 -0600758static inline void iommu_device_unlink(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600759{
760}
761
Robin Murphy57f98d22016-09-13 10:54:14 +0100762static inline int iommu_fwspec_init(struct device *dev,
763 struct fwnode_handle *iommu_fwnode,
764 const struct iommu_ops *ops)
765{
766 return -ENODEV;
767}
768
769static inline void iommu_fwspec_free(struct device *dev)
770{
771}
772
773static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids,
774 int num_ids)
775{
776 return -ENODEV;
777}
778
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +0000779static inline
Joerg Roedel534766d2017-01-31 16:58:42 +0100780const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +0000781{
782 return NULL;
783}
784
Lu Baolua3a19592019-03-25 09:30:28 +0800785static inline bool
786iommu_dev_has_feature(struct device *dev, enum iommu_dev_features feat)
787{
788 return false;
789}
790
791static inline bool
792iommu_dev_feature_enabled(struct device *dev, enum iommu_dev_features feat)
793{
794 return false;
795}
796
797static inline int
798iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features feat)
799{
800 return -ENODEV;
801}
802
803static inline int
804iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features feat)
805{
806 return -ENODEV;
807}
808
809static inline int
810iommu_aux_attach_device(struct iommu_domain *domain, struct device *dev)
811{
812 return -ENODEV;
813}
814
815static inline void
816iommu_aux_detach_device(struct iommu_domain *domain, struct device *dev)
817{
818}
819
820static inline int
821iommu_aux_get_pasid(struct iommu_domain *domain, struct device *dev)
822{
823 return -ENODEV;
824}
825
Jean-Philippe Brucker26b25a22019-04-10 16:15:16 +0100826static inline struct iommu_sva *
827iommu_sva_bind_device(struct device *dev, struct mm_struct *mm, void *drvdata)
828{
829 return NULL;
830}
831
832static inline void iommu_sva_unbind_device(struct iommu_sva *handle)
833{
834}
835
836static inline int iommu_sva_set_ops(struct iommu_sva *handle,
837 const struct iommu_sva_ops *ops)
838{
839 return -EINVAL;
840}
841
842static inline int iommu_sva_get_pasid(struct iommu_sva *handle)
843{
844 return IOMMU_PASID_INVALID;
845}
846
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100847#endif /* CONFIG_IOMMU_API */
848
Gary R Hookbad614b2018-06-12 16:41:21 -0500849#ifdef CONFIG_IOMMU_DEBUGFS
850extern struct dentry *iommu_debugfs_dir;
851void iommu_debugfs_setup(void);
852#else
853static inline void iommu_debugfs_setup(void) {}
854#endif
855
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100856#endif /* __LINUX_IOMMU_H */