blob: b29a5982e1c3381052a170e7c0fa898e61147a2f [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
Laura Abbott74315cc2011-06-08 17:29:11 -040022#include <linux/errno.h>
Wang YanQing9a08d372013-04-19 09:38:04 +080023#include <linux/err.h>
Thierry Reding76582d02012-07-25 16:24:49 +020024#include <linux/types.h>
Olav Haugan315786e2014-10-25 09:55:16 -070025#include <linux/scatterlist.h>
Shuah Khan56fa4842013-09-24 15:21:20 -060026#include <trace/events/iommu.h>
Laura Abbott74315cc2011-06-08 17:29:11 -040027
Will Deaconca13bb32013-11-05 15:59:53 +000028#define IOMMU_READ (1 << 0)
29#define IOMMU_WRITE (1 << 1)
30#define IOMMU_CACHE (1 << 2) /* DMA cache coherency */
31#define IOMMU_EXEC (1 << 3)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010032
Joerg Roedel905d66c2011-09-06 16:03:26 +020033struct iommu_ops;
Alex Williamsond72e31c2012-05-30 14:18:53 -060034struct iommu_group;
Joerg Roedelff217762011-08-26 16:48:26 +020035struct bus_type;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010036struct device;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040037struct iommu_domain;
Joerg Roedelba1eabfa2012-08-03 15:55:41 +020038struct notifier_block;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040039
40/* iommu fault flags */
41#define IOMMU_FAULT_READ 0x0
42#define IOMMU_FAULT_WRITE 0x1
43
44typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030045 struct device *, unsigned long, int, void *);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010046
Joerg Roedel0ff64f82012-01-26 19:40:53 +010047struct iommu_domain_geometry {
48 dma_addr_t aperture_start; /* First address that can be mapped */
49 dma_addr_t aperture_end; /* Last address that can be mapped */
50 bool force_aperture; /* DMA only allowed in mappable range? */
51};
52
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010053struct iommu_domain {
Thierry Redingb22f6432014-06-27 09:03:12 +020054 const struct iommu_ops *ops;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010055 void *priv;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040056 iommu_fault_handler_t handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030057 void *handler_token;
Joerg Roedel0ff64f82012-01-26 19:40:53 +010058 struct iommu_domain_geometry geometry;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010059};
60
Joerg Roedel1aed0742014-09-03 18:34:04 +020061enum iommu_cap {
62 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA
63 transactions */
64 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */
65};
Sheng Yangdbb9fd82009-03-18 15:33:06 +080066
Varun Sethi7cabf492013-07-15 10:20:56 +053067/*
68 * Following constraints are specifc to FSL_PAMUV1:
69 * -aperture must be power of 2, and naturally aligned
70 * -number of windows must be power of 2, and address space size
71 * of each window is determined by aperture size / # of windows
72 * -the actual size of the mapped region of a window must be power
73 * of 2 starting with 4KB and physical address must be naturally
74 * aligned.
75 * DOMAIN_ATTR_FSL_PAMUV1 corresponds to the above mentioned contraints.
76 * The caller can invoke iommu_domain_get_attr to check if the underlying
77 * iommu implementation supports these constraints.
78 */
79
Joerg Roedel0cd76dd2012-01-26 19:40:52 +010080enum iommu_attr {
Joerg Roedel0ff64f82012-01-26 19:40:53 +010081 DOMAIN_ATTR_GEOMETRY,
Joerg Roedeld2e12162013-01-29 13:49:04 +010082 DOMAIN_ATTR_PAGING,
Joerg Roedel69356712013-02-04 14:00:01 +010083 DOMAIN_ATTR_WINDOWS,
Varun Sethi7cabf492013-07-15 10:20:56 +053084 DOMAIN_ATTR_FSL_PAMU_STASH,
85 DOMAIN_ATTR_FSL_PAMU_ENABLE,
86 DOMAIN_ATTR_FSL_PAMUV1,
Will Deaconc02607a2014-09-29 10:05:06 -060087 DOMAIN_ATTR_NESTING, /* two stages of translation */
Joerg Roedela8b8a88a2013-01-29 14:36:31 +010088 DOMAIN_ATTR_MAX,
Joerg Roedel0cd76dd2012-01-26 19:40:52 +010089};
90
Joerg Roedel39d4ebb2011-09-06 16:48:40 +020091#ifdef CONFIG_IOMMU_API
92
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +020093/**
94 * struct iommu_ops - iommu ops and capabilities
95 * @domain_init: init iommu domain
96 * @domain_destroy: destroy iommu domain
97 * @attach_dev: attach device to an iommu domain
98 * @detach_dev: detach device from an iommu domain
99 * @map: map a physically contiguous memory region to an iommu domain
100 * @unmap: unmap a physically contiguous memory region from an iommu domain
Olav Haugan315786e2014-10-25 09:55:16 -0700101 * @map_sg: map a scatter-gather list of physically contiguous memory chunks
102 * to an iommu domain
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200103 * @iova_to_phys: translate iova to physical address
Alex Williamsond72e31c2012-05-30 14:18:53 -0600104 * @add_device: add device to iommu grouping
105 * @remove_device: remove device from iommu grouping
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100106 * @domain_get_attr: Query domain attributes
107 * @domain_set_attr: Change domain attributes
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200108 * @pgsize_bitmap: bitmap of supported page sizes
109 */
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100110struct iommu_ops {
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200111 bool (*capable)(enum iommu_cap);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100112 int (*domain_init)(struct iommu_domain *domain);
113 void (*domain_destroy)(struct iommu_domain *domain);
114 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
115 void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
Joerg Roedel67651782010-01-21 16:32:27 +0100116 int (*map)(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +0200117 phys_addr_t paddr, size_t size, int prot);
118 size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
119 size_t size);
Olav Haugan315786e2014-10-25 09:55:16 -0700120 size_t (*map_sg)(struct iommu_domain *domain, unsigned long iova,
121 struct scatterlist *sg, unsigned int nents, int prot);
Varun Sethibb5547ac2013-03-29 01:23:58 +0530122 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600123 int (*add_device)(struct device *dev);
124 void (*remove_device)(struct device *dev);
Alex Williamson14604322011-10-21 15:56:05 -0400125 int (*device_group)(struct device *dev, unsigned int *groupid);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100126 int (*domain_get_attr)(struct iommu_domain *domain,
127 enum iommu_attr attr, void *data);
128 int (*domain_set_attr)(struct iommu_domain *domain,
129 enum iommu_attr attr, void *data);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100130
131 /* Window handling functions */
132 int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530133 phys_addr_t paddr, u64 size, int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100134 void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr);
Joerg Roedel69356712013-02-04 14:00:01 +0100135 /* Set the numer of window per domain */
136 int (*domain_set_windows)(struct iommu_domain *domain, u32 w_count);
137 /* Get the numer of window per domain */
138 u32 (*domain_get_windows)(struct iommu_domain *domain);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100139
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200140 unsigned long pgsize_bitmap;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100141};
142
Alex Williamsond72e31c2012-05-30 14:18:53 -0600143#define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */
144#define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */
145#define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */
146#define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */
147#define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */
148#define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */
149
Thierry Redingb22f6432014-06-27 09:03:12 +0200150extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops);
Joerg Roedela1b60c12011-09-06 18:46:34 +0200151extern bool iommu_present(struct bus_type *bus);
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200152extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap);
Joerg Roedel905d66c2011-09-06 16:03:26 +0200153extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100154extern struct iommu_group *iommu_group_get_by_id(int id);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100155extern void iommu_domain_free(struct iommu_domain *domain);
156extern int iommu_attach_device(struct iommu_domain *domain,
157 struct device *dev);
158extern void iommu_detach_device(struct iommu_domain *domain,
159 struct device *dev);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100160extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200161 phys_addr_t paddr, size_t size, int prot);
162extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
163 size_t size);
Olav Haugan315786e2014-10-25 09:55:16 -0700164extern size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
165 struct scatterlist *sg,unsigned int nents,
166 int prot);
Varun Sethibb5547ac2013-03-29 01:23:58 +0530167extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400168extern void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300169 iommu_fault_handler_t handler, void *token);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600170
171extern int iommu_attach_group(struct iommu_domain *domain,
172 struct iommu_group *group);
173extern void iommu_detach_group(struct iommu_domain *domain,
174 struct iommu_group *group);
175extern struct iommu_group *iommu_group_alloc(void);
176extern void *iommu_group_get_iommudata(struct iommu_group *group);
177extern void iommu_group_set_iommudata(struct iommu_group *group,
178 void *iommu_data,
179 void (*release)(void *iommu_data));
180extern int iommu_group_set_name(struct iommu_group *group, const char *name);
181extern int iommu_group_add_device(struct iommu_group *group,
182 struct device *dev);
183extern void iommu_group_remove_device(struct device *dev);
184extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
185 int (*fn)(struct device *, void *));
186extern struct iommu_group *iommu_group_get(struct device *dev);
187extern void iommu_group_put(struct iommu_group *group);
188extern int iommu_group_register_notifier(struct iommu_group *group,
189 struct notifier_block *nb);
190extern int iommu_group_unregister_notifier(struct iommu_group *group,
191 struct notifier_block *nb);
192extern int iommu_group_id(struct iommu_group *group);
Alex Williamson104a1c12014-07-03 09:51:18 -0600193extern struct iommu_group *iommu_group_get_for_dev(struct device *dev);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400194
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100195extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr,
196 void *data);
197extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr,
198 void *data);
Alex Williamsonc61959e2014-06-12 16:12:24 -0600199struct device *iommu_device_create(struct device *parent, void *drvdata,
200 const struct attribute_group **groups,
201 const char *fmt, ...);
202void iommu_device_destroy(struct device *dev);
203int iommu_device_link(struct device *dev, struct device *link);
204void iommu_device_unlink(struct device *dev, struct device *link);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400205
Joerg Roedeld7787d52013-01-29 14:26:20 +0100206/* Window handling function prototypes */
207extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530208 phys_addr_t offset, u64 size,
209 int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100210extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400211/**
212 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
213 * @domain: the iommu domain where the fault has happened
214 * @dev: the device where the fault has happened
215 * @iova: the faulting address
216 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
217 *
218 * This function should be called by the low-level IOMMU implementations
219 * whenever IOMMU faults happen, to allow high-level users, that are
220 * interested in such events, to know about them.
221 *
222 * This event may be useful for several possible use cases:
223 * - mere logging of the event
224 * - dynamic TLB/PTE loading
225 * - if restarting of the faulting device is required
226 *
227 * Returns 0 on success and an appropriate error code otherwise (if dynamic
228 * PTE/TLB loading will one day be supported, implementations will be able
229 * to tell whether it succeeded or not according to this return value).
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400230 *
231 * Specifically, -ENOSYS is returned if a fault handler isn't installed
232 * (though fault handlers can also return -ENOSYS, in case they want to
233 * elicit the default behavior of the IOMMU drivers).
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400234 */
235static inline int report_iommu_fault(struct iommu_domain *domain,
236 struct device *dev, unsigned long iova, int flags)
237{
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400238 int ret = -ENOSYS;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400239
240 /*
241 * if upper layers showed interest and installed a fault handler,
242 * invoke it.
243 */
244 if (domain->handler)
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300245 ret = domain->handler(domain, dev, iova, flags,
246 domain->handler_token);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400247
Shuah Khan56fa4842013-09-24 15:21:20 -0600248 trace_io_page_fault(dev, iova, flags);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400249 return ret;
250}
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100251
Olav Haugan315786e2014-10-25 09:55:16 -0700252static inline size_t iommu_map_sg(struct iommu_domain *domain,
253 unsigned long iova, struct scatterlist *sg,
254 unsigned int nents, int prot)
255{
256 return domain->ops->map_sg(domain, iova, sg, nents, prot);
257}
258
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100259#else /* CONFIG_IOMMU_API */
260
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200261struct iommu_ops {};
Alex Williamsond72e31c2012-05-30 14:18:53 -0600262struct iommu_group {};
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100263
Joerg Roedela1b60c12011-09-06 18:46:34 +0200264static inline bool iommu_present(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100265{
266 return false;
267}
268
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200269static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
270{
271 return false;
272}
273
Joerg Roedel905d66c2011-09-06 16:03:26 +0200274static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100275{
276 return NULL;
277}
278
Alexey Kardashevskiyb62dfd22013-11-21 17:41:14 +1100279static inline struct iommu_group *iommu_group_get_by_id(int id)
280{
281 return NULL;
282}
283
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100284static inline void iommu_domain_free(struct iommu_domain *domain)
285{
286}
287
288static inline int iommu_attach_device(struct iommu_domain *domain,
289 struct device *dev)
290{
291 return -ENODEV;
292}
293
294static inline void iommu_detach_device(struct iommu_domain *domain,
295 struct device *dev)
296{
297}
298
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100299static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
300 phys_addr_t paddr, int gfp_order, int prot)
301{
302 return -ENODEV;
303}
304
305static inline int iommu_unmap(struct iommu_domain *domain, unsigned long iova,
306 int gfp_order)
307{
308 return -ENODEV;
309}
310
Olav Haugan315786e2014-10-25 09:55:16 -0700311static inline size_t iommu_map_sg(struct iommu_domain *domain,
312 unsigned long iova, struct scatterlist *sg,
313 unsigned int nents, int prot)
314{
315 return -ENODEV;
316}
317
Joerg Roedeld7787d52013-01-29 14:26:20 +0100318static inline int iommu_domain_window_enable(struct iommu_domain *domain,
319 u32 wnd_nr, phys_addr_t paddr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530320 u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +0100321{
322 return -ENODEV;
323}
324
325static inline void iommu_domain_window_disable(struct iommu_domain *domain,
326 u32 wnd_nr)
327{
328}
329
Varun Sethibb5547ac2013-03-29 01:23:58 +0530330static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100331{
332 return 0;
333}
334
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400335static inline void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300336 iommu_fault_handler_t handler, void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400337{
338}
339
Alex Williamsonbef83de2012-09-24 21:23:25 -0600340static inline int iommu_attach_group(struct iommu_domain *domain,
341 struct iommu_group *group)
Alex Williamson14604322011-10-21 15:56:05 -0400342{
343 return -ENODEV;
344}
345
Alex Williamsonbef83de2012-09-24 21:23:25 -0600346static inline void iommu_detach_group(struct iommu_domain *domain,
347 struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600348{
349}
350
Alex Williamsonbef83de2012-09-24 21:23:25 -0600351static inline struct iommu_group *iommu_group_alloc(void)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600352{
353 return ERR_PTR(-ENODEV);
354}
355
Alex Williamsonbef83de2012-09-24 21:23:25 -0600356static inline void *iommu_group_get_iommudata(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600357{
358 return NULL;
359}
360
Alex Williamsonbef83de2012-09-24 21:23:25 -0600361static inline void iommu_group_set_iommudata(struct iommu_group *group,
362 void *iommu_data,
363 void (*release)(void *iommu_data))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600364{
365}
366
Alex Williamsonbef83de2012-09-24 21:23:25 -0600367static inline int iommu_group_set_name(struct iommu_group *group,
368 const char *name)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600369{
370 return -ENODEV;
371}
372
Alex Williamsonbef83de2012-09-24 21:23:25 -0600373static inline int iommu_group_add_device(struct iommu_group *group,
374 struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600375{
376 return -ENODEV;
377}
378
Alex Williamsonbef83de2012-09-24 21:23:25 -0600379static inline void iommu_group_remove_device(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600380{
381}
382
Alex Williamsonbef83de2012-09-24 21:23:25 -0600383static inline int iommu_group_for_each_dev(struct iommu_group *group,
384 void *data,
385 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600386{
387 return -ENODEV;
388}
389
Alex Williamsonbef83de2012-09-24 21:23:25 -0600390static inline struct iommu_group *iommu_group_get(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600391{
392 return NULL;
393}
394
Alex Williamsonbef83de2012-09-24 21:23:25 -0600395static inline void iommu_group_put(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600396{
397}
398
Alex Williamsonbef83de2012-09-24 21:23:25 -0600399static inline int iommu_group_register_notifier(struct iommu_group *group,
400 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600401{
402 return -ENODEV;
403}
404
Alex Williamsonbef83de2012-09-24 21:23:25 -0600405static inline int iommu_group_unregister_notifier(struct iommu_group *group,
406 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600407{
408 return 0;
409}
410
Alex Williamsonbef83de2012-09-24 21:23:25 -0600411static inline int iommu_group_id(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600412{
413 return -ENODEV;
414}
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100415
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100416static inline int iommu_domain_get_attr(struct iommu_domain *domain,
417 enum iommu_attr attr, void *data)
418{
419 return -EINVAL;
420}
421
422static inline int iommu_domain_set_attr(struct iommu_domain *domain,
423 enum iommu_attr attr, void *data)
424{
425 return -EINVAL;
426}
427
Alex Williamsone09f8ea52014-07-07 14:31:36 -0600428static inline struct device *iommu_device_create(struct device *parent,
429 void *drvdata,
430 const struct attribute_group **groups,
431 const char *fmt, ...)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600432{
433 return ERR_PTR(-ENODEV);
434}
435
Alex Williamsone09f8ea52014-07-07 14:31:36 -0600436static inline void iommu_device_destroy(struct device *dev)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600437{
438}
439
Alex Williamsone09f8ea52014-07-07 14:31:36 -0600440static inline int iommu_device_link(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600441{
442 return -EINVAL;
443}
444
Alex Williamsone09f8ea52014-07-07 14:31:36 -0600445static inline void iommu_device_unlink(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600446{
447}
448
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100449#endif /* CONFIG_IOMMU_API */
450
451#endif /* __LINUX_IOMMU_H */