Merge tag 'of-iommu-configure' of git://git.kernel.org/pub/scm/linux/kernel/git/will...
[cascardo/linux.git] / include / linux / iommu.h
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
22 #include <linux/errno.h>
23 #include <linux/err.h>
24 #include <linux/of.h>
25 #include <linux/types.h>
26 #include <trace/events/iommu.h>
27
28 #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)
32
33 struct iommu_ops;
34 struct iommu_group;
35 struct bus_type;
36 struct device;
37 struct iommu_domain;
38 struct notifier_block;
39
40 /* iommu fault flags */
41 #define IOMMU_FAULT_READ        0x0
42 #define IOMMU_FAULT_WRITE       0x1
43
44 typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
45                         struct device *, unsigned long, int, void *);
46
47 struct 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
53 struct iommu_domain {
54         const struct iommu_ops *ops;
55         void *priv;
56         iommu_fault_handler_t handler;
57         void *handler_token;
58         struct iommu_domain_geometry geometry;
59 };
60
61 enum 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 };
66
67 /*
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
80 enum iommu_attr {
81         DOMAIN_ATTR_GEOMETRY,
82         DOMAIN_ATTR_PAGING,
83         DOMAIN_ATTR_WINDOWS,
84         DOMAIN_ATTR_FSL_PAMU_STASH,
85         DOMAIN_ATTR_FSL_PAMU_ENABLE,
86         DOMAIN_ATTR_FSL_PAMUV1,
87         DOMAIN_ATTR_NESTING,    /* two stages of translation */
88         DOMAIN_ATTR_MAX,
89 };
90
91 #ifdef CONFIG_IOMMU_API
92
93 /**
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
101  * @iova_to_phys: translate iova to physical address
102  * @add_device: add device to iommu grouping
103  * @remove_device: remove device from iommu grouping
104  * @domain_get_attr: Query domain attributes
105  * @domain_set_attr: Change domain attributes
106  * @of_xlate: add OF master IDs to iommu grouping
107  * @pgsize_bitmap: bitmap of supported page sizes
108  * @priv: per-instance data private to the iommu driver
109  */
110 struct iommu_ops {
111         bool (*capable)(enum iommu_cap);
112         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);
116         int (*map)(struct iommu_domain *domain, unsigned long iova,
117                    phys_addr_t paddr, size_t size, int prot);
118         size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
119                      size_t size);
120         phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova);
121         int (*add_device)(struct device *dev);
122         void (*remove_device)(struct device *dev);
123         int (*device_group)(struct device *dev, unsigned int *groupid);
124         int (*domain_get_attr)(struct iommu_domain *domain,
125                                enum iommu_attr attr, void *data);
126         int (*domain_set_attr)(struct iommu_domain *domain,
127                                enum iommu_attr attr, void *data);
128
129         /* Window handling functions */
130         int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr,
131                                     phys_addr_t paddr, u64 size, int prot);
132         void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr);
133         /* Set the numer of window per domain */
134         int (*domain_set_windows)(struct iommu_domain *domain, u32 w_count);
135         /* Get the numer of window per domain */
136         u32 (*domain_get_windows)(struct iommu_domain *domain);
137
138 #ifdef CONFIG_OF_IOMMU
139         int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
140 #endif
141
142         unsigned long pgsize_bitmap;
143         void *priv;
144 };
145
146 #define IOMMU_GROUP_NOTIFY_ADD_DEVICE           1 /* Device added */
147 #define IOMMU_GROUP_NOTIFY_DEL_DEVICE           2 /* Pre Device removed */
148 #define IOMMU_GROUP_NOTIFY_BIND_DRIVER          3 /* Pre Driver bind */
149 #define IOMMU_GROUP_NOTIFY_BOUND_DRIVER         4 /* Post Driver bind */
150 #define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER        5 /* Pre Driver unbind */
151 #define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER       6 /* Post Driver unbind */
152
153 extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops);
154 extern bool iommu_present(struct bus_type *bus);
155 extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap);
156 extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
157 extern struct iommu_group *iommu_group_get_by_id(int id);
158 extern void iommu_domain_free(struct iommu_domain *domain);
159 extern int iommu_attach_device(struct iommu_domain *domain,
160                                struct device *dev);
161 extern void iommu_detach_device(struct iommu_domain *domain,
162                                 struct device *dev);
163 extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
164                      phys_addr_t paddr, size_t size, int prot);
165 extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
166                        size_t size);
167 extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
168 extern void iommu_set_fault_handler(struct iommu_domain *domain,
169                         iommu_fault_handler_t handler, void *token);
170
171 extern int iommu_attach_group(struct iommu_domain *domain,
172                               struct iommu_group *group);
173 extern void iommu_detach_group(struct iommu_domain *domain,
174                                struct iommu_group *group);
175 extern struct iommu_group *iommu_group_alloc(void);
176 extern void *iommu_group_get_iommudata(struct iommu_group *group);
177 extern void iommu_group_set_iommudata(struct iommu_group *group,
178                                       void *iommu_data,
179                                       void (*release)(void *iommu_data));
180 extern int iommu_group_set_name(struct iommu_group *group, const char *name);
181 extern int iommu_group_add_device(struct iommu_group *group,
182                                   struct device *dev);
183 extern void iommu_group_remove_device(struct device *dev);
184 extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
185                                     int (*fn)(struct device *, void *));
186 extern struct iommu_group *iommu_group_get(struct device *dev);
187 extern void iommu_group_put(struct iommu_group *group);
188 extern int iommu_group_register_notifier(struct iommu_group *group,
189                                          struct notifier_block *nb);
190 extern int iommu_group_unregister_notifier(struct iommu_group *group,
191                                            struct notifier_block *nb);
192 extern int iommu_group_id(struct iommu_group *group);
193 extern struct iommu_group *iommu_group_get_for_dev(struct device *dev);
194
195 extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr,
196                                  void *data);
197 extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr,
198                                  void *data);
199 struct device *iommu_device_create(struct device *parent, void *drvdata,
200                                    const struct attribute_group **groups,
201                                    const char *fmt, ...);
202 void iommu_device_destroy(struct device *dev);
203 int iommu_device_link(struct device *dev, struct device *link);
204 void iommu_device_unlink(struct device *dev, struct device *link);
205
206 /* Window handling function prototypes */
207 extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
208                                       phys_addr_t offset, u64 size,
209                                       int prot);
210 extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr);
211 /**
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).
230  *
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).
234  */
235 static inline int report_iommu_fault(struct iommu_domain *domain,
236                 struct device *dev, unsigned long iova, int flags)
237 {
238         int ret = -ENOSYS;
239
240         /*
241          * if upper layers showed interest and installed a fault handler,
242          * invoke it.
243          */
244         if (domain->handler)
245                 ret = domain->handler(domain, dev, iova, flags,
246                                                 domain->handler_token);
247
248         trace_io_page_fault(dev, iova, flags);
249         return ret;
250 }
251
252 #else /* CONFIG_IOMMU_API */
253
254 struct iommu_ops {};
255 struct iommu_group {};
256
257 static inline bool iommu_present(struct bus_type *bus)
258 {
259         return false;
260 }
261
262 static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
263 {
264         return false;
265 }
266
267 static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
268 {
269         return NULL;
270 }
271
272 static inline struct iommu_group *iommu_group_get_by_id(int id)
273 {
274         return NULL;
275 }
276
277 static inline void iommu_domain_free(struct iommu_domain *domain)
278 {
279 }
280
281 static inline int iommu_attach_device(struct iommu_domain *domain,
282                                       struct device *dev)
283 {
284         return -ENODEV;
285 }
286
287 static inline void iommu_detach_device(struct iommu_domain *domain,
288                                        struct device *dev)
289 {
290 }
291
292 static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
293                             phys_addr_t paddr, int gfp_order, int prot)
294 {
295         return -ENODEV;
296 }
297
298 static inline int iommu_unmap(struct iommu_domain *domain, unsigned long iova,
299                               int gfp_order)
300 {
301         return -ENODEV;
302 }
303
304 static inline int iommu_domain_window_enable(struct iommu_domain *domain,
305                                              u32 wnd_nr, phys_addr_t paddr,
306                                              u64 size, int prot)
307 {
308         return -ENODEV;
309 }
310
311 static inline void iommu_domain_window_disable(struct iommu_domain *domain,
312                                                u32 wnd_nr)
313 {
314 }
315
316 static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
317 {
318         return 0;
319 }
320
321 static inline void iommu_set_fault_handler(struct iommu_domain *domain,
322                                 iommu_fault_handler_t handler, void *token)
323 {
324 }
325
326 static inline int iommu_attach_group(struct iommu_domain *domain,
327                                      struct iommu_group *group)
328 {
329         return -ENODEV;
330 }
331
332 static inline void iommu_detach_group(struct iommu_domain *domain,
333                                       struct iommu_group *group)
334 {
335 }
336
337 static inline struct iommu_group *iommu_group_alloc(void)
338 {
339         return ERR_PTR(-ENODEV);
340 }
341
342 static inline void *iommu_group_get_iommudata(struct iommu_group *group)
343 {
344         return NULL;
345 }
346
347 static inline void iommu_group_set_iommudata(struct iommu_group *group,
348                                              void *iommu_data,
349                                              void (*release)(void *iommu_data))
350 {
351 }
352
353 static inline int iommu_group_set_name(struct iommu_group *group,
354                                        const char *name)
355 {
356         return -ENODEV;
357 }
358
359 static inline int iommu_group_add_device(struct iommu_group *group,
360                                          struct device *dev)
361 {
362         return -ENODEV;
363 }
364
365 static inline void iommu_group_remove_device(struct device *dev)
366 {
367 }
368
369 static inline int iommu_group_for_each_dev(struct iommu_group *group,
370                                            void *data,
371                                            int (*fn)(struct device *, void *))
372 {
373         return -ENODEV;
374 }
375
376 static inline struct iommu_group *iommu_group_get(struct device *dev)
377 {
378         return NULL;
379 }
380
381 static inline void iommu_group_put(struct iommu_group *group)
382 {
383 }
384
385 static inline int iommu_group_register_notifier(struct iommu_group *group,
386                                                 struct notifier_block *nb)
387 {
388         return -ENODEV;
389 }
390
391 static inline int iommu_group_unregister_notifier(struct iommu_group *group,
392                                                   struct notifier_block *nb)
393 {
394         return 0;
395 }
396
397 static inline int iommu_group_id(struct iommu_group *group)
398 {
399         return -ENODEV;
400 }
401
402 static inline int iommu_domain_get_attr(struct iommu_domain *domain,
403                                         enum iommu_attr attr, void *data)
404 {
405         return -EINVAL;
406 }
407
408 static inline int iommu_domain_set_attr(struct iommu_domain *domain,
409                                         enum iommu_attr attr, void *data)
410 {
411         return -EINVAL;
412 }
413
414 static inline struct device *iommu_device_create(struct device *parent,
415                                         void *drvdata,
416                                         const struct attribute_group **groups,
417                                         const char *fmt, ...)
418 {
419         return ERR_PTR(-ENODEV);
420 }
421
422 static inline void iommu_device_destroy(struct device *dev)
423 {
424 }
425
426 static inline int iommu_device_link(struct device *dev, struct device *link)
427 {
428         return -EINVAL;
429 }
430
431 static inline void iommu_device_unlink(struct device *dev, struct device *link)
432 {
433 }
434
435 #endif /* CONFIG_IOMMU_API */
436
437 #endif /* __LINUX_IOMMU_H */