blob: 93617e7779a1057b20e56861a14bd33091919d76 [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>
23
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010024#define IOMMU_READ (1)
25#define IOMMU_WRITE (2)
Sheng Yang9cf066972009-03-18 15:33:07 +080026#define IOMMU_CACHE (4) /* DMA cache coherency */
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010027
Joerg Roedel905d66c2011-09-06 16:03:26 +020028struct iommu_ops;
Joerg Roedelff217762011-08-26 16:48:26 +020029struct bus_type;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010030struct device;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040031struct iommu_domain;
32
33/* iommu fault flags */
34#define IOMMU_FAULT_READ 0x0
35#define IOMMU_FAULT_WRITE 0x1
36
37typedef int (*iommu_fault_handler_t)(struct iommu_domain *,
38 struct device *, unsigned long, int);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010039
40struct iommu_domain {
Joerg Roedel905d66c2011-09-06 16:03:26 +020041 struct iommu_ops *ops;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010042 void *priv;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040043 iommu_fault_handler_t handler;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010044};
45
Sheng Yangdbb9fd82009-03-18 15:33:06 +080046#define IOMMU_CAP_CACHE_COHERENCY 0x1
Tom Lyon323f99c2010-07-02 16:56:14 -040047#define IOMMU_CAP_INTR_REMAP 0x2 /* isolates device intrs */
Sheng Yangdbb9fd82009-03-18 15:33:06 +080048
Joerg Roedel39d4ebb2011-09-06 16:48:40 +020049#ifdef CONFIG_IOMMU_API
50
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010051struct iommu_ops {
52 int (*domain_init)(struct iommu_domain *domain);
53 void (*domain_destroy)(struct iommu_domain *domain);
54 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
55 void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
Joerg Roedel67651782010-01-21 16:32:27 +010056 int (*map)(struct iommu_domain *domain, unsigned long iova,
57 phys_addr_t paddr, int gfp_order, int prot);
58 int (*unmap)(struct iommu_domain *domain, unsigned long iova,
59 int gfp_order);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010060 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain,
61 unsigned long iova);
Sheng Yangdbb9fd82009-03-18 15:33:06 +080062 int (*domain_has_cap)(struct iommu_domain *domain,
63 unsigned long cap);
Alex Williamson14604322011-10-21 15:56:05 -040064 int (*device_group)(struct device *dev, unsigned int *groupid);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010065};
66
Joerg Roedelff217762011-08-26 16:48:26 +020067extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops);
Joerg Roedela1b60c12011-09-06 18:46:34 +020068extern bool iommu_present(struct bus_type *bus);
Joerg Roedel905d66c2011-09-06 16:03:26 +020069extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010070extern void iommu_domain_free(struct iommu_domain *domain);
71extern int iommu_attach_device(struct iommu_domain *domain,
72 struct device *dev);
73extern void iommu_detach_device(struct iommu_domain *domain,
74 struct device *dev);
Joerg Roedelcefc53c2010-01-08 13:35:09 +010075extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
76 phys_addr_t paddr, int gfp_order, int prot);
77extern int iommu_unmap(struct iommu_domain *domain, unsigned long iova,
78 int gfp_order);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010079extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain,
80 unsigned long iova);
Sheng Yangdbb9fd82009-03-18 15:33:06 +080081extern int iommu_domain_has_cap(struct iommu_domain *domain,
82 unsigned long cap);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040083extern void iommu_set_fault_handler(struct iommu_domain *domain,
84 iommu_fault_handler_t handler);
Alex Williamson14604322011-10-21 15:56:05 -040085extern int iommu_device_group(struct device *dev, unsigned int *groupid);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040086
87/**
88 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
89 * @domain: the iommu domain where the fault has happened
90 * @dev: the device where the fault has happened
91 * @iova: the faulting address
92 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
93 *
94 * This function should be called by the low-level IOMMU implementations
95 * whenever IOMMU faults happen, to allow high-level users, that are
96 * interested in such events, to know about them.
97 *
98 * This event may be useful for several possible use cases:
99 * - mere logging of the event
100 * - dynamic TLB/PTE loading
101 * - if restarting of the faulting device is required
102 *
103 * Returns 0 on success and an appropriate error code otherwise (if dynamic
104 * PTE/TLB loading will one day be supported, implementations will be able
105 * to tell whether it succeeded or not according to this return value).
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400106 *
107 * Specifically, -ENOSYS is returned if a fault handler isn't installed
108 * (though fault handlers can also return -ENOSYS, in case they want to
109 * elicit the default behavior of the IOMMU drivers).
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400110 */
111static inline int report_iommu_fault(struct iommu_domain *domain,
112 struct device *dev, unsigned long iova, int flags)
113{
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -0400114 int ret = -ENOSYS;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400115
116 /*
117 * if upper layers showed interest and installed a fault handler,
118 * invoke it.
119 */
120 if (domain->handler)
121 ret = domain->handler(domain, dev, iova, flags);
122
123 return ret;
124}
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100125
126#else /* CONFIG_IOMMU_API */
127
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200128struct iommu_ops {};
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100129
Joerg Roedela1b60c12011-09-06 18:46:34 +0200130static inline bool iommu_present(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100131{
132 return false;
133}
134
Joerg Roedel905d66c2011-09-06 16:03:26 +0200135static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100136{
137 return NULL;
138}
139
140static inline void iommu_domain_free(struct iommu_domain *domain)
141{
142}
143
144static inline int iommu_attach_device(struct iommu_domain *domain,
145 struct device *dev)
146{
147 return -ENODEV;
148}
149
150static inline void iommu_detach_device(struct iommu_domain *domain,
151 struct device *dev)
152{
153}
154
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100155static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
156 phys_addr_t paddr, int gfp_order, int prot)
157{
158 return -ENODEV;
159}
160
161static inline int iommu_unmap(struct iommu_domain *domain, unsigned long iova,
162 int gfp_order)
163{
164 return -ENODEV;
165}
166
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100167static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain,
168 unsigned long iova)
169{
170 return 0;
171}
172
Sheng Yangdbb9fd82009-03-18 15:33:06 +0800173static inline int domain_has_cap(struct iommu_domain *domain,
174 unsigned long cap)
175{
176 return 0;
177}
178
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400179static inline void iommu_set_fault_handler(struct iommu_domain *domain,
180 iommu_fault_handler_t handler)
181{
182}
183
Alex Williamson14604322011-10-21 15:56:05 -0400184static inline int iommu_device_group(struct device *dev, unsigned int *groupid);
185{
186 return -ENODEV;
187}
188
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100189#endif /* CONFIG_IOMMU_API */
190
191#endif /* __LINUX_IOMMU_H */