blob: 477ef47c357c0553c339f8ffc05eff91b4862185 [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;
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040051
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 *,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030057 struct device *, unsigned long, int, void *);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010058
Joerg Roedel0ff64f82012-01-26 19:40:53 +010059struct 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
Joerg Roedel8539c7c2015-03-26 13:43:05 +010065/* 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
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010089struct iommu_domain {
Joerg Roedel8539c7c2015-03-26 13:43:05 +010090 unsigned type;
Thierry Redingb22f6432014-06-27 09:03:12 +020091 const struct iommu_ops *ops;
Robin Murphyd16e0fa2016-04-07 18:42:06 +010092 unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040093 iommu_fault_handler_t handler;
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +030094 void *handler_token;
Joerg Roedel0ff64f82012-01-26 19:40:53 +010095 struct iommu_domain_geometry geometry;
Robin Murphy0db2e5d2015-10-01 20:13:58 +010096 void *iova_cookie;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +010097};
98
Joerg Roedel1aed0742014-09-03 18:34:04 +020099enum iommu_cap {
100 IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA
101 transactions */
102 IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */
Antonios Motakisc4986642014-10-13 14:06:17 +0100103 IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */
Joerg Roedel1aed0742014-09-03 18:34:04 +0200104};
Sheng Yangdbb9fd82009-03-18 15:33:06 +0800105
Varun Sethi7cabf492013-07-15 10:20:56 +0530106/*
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
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100119enum iommu_attr {
Joerg Roedel0ff64f82012-01-26 19:40:53 +0100120 DOMAIN_ATTR_GEOMETRY,
Joerg Roedeld2e12162013-01-29 13:49:04 +0100121 DOMAIN_ATTR_PAGING,
Joerg Roedel69356712013-02-04 14:00:01 +0100122 DOMAIN_ATTR_WINDOWS,
Varun Sethi7cabf492013-07-15 10:20:56 +0530123 DOMAIN_ATTR_FSL_PAMU_STASH,
124 DOMAIN_ATTR_FSL_PAMU_ENABLE,
125 DOMAIN_ATTR_FSL_PAMUV1,
Will Deaconc02607a2014-09-29 10:05:06 -0600126 DOMAIN_ATTR_NESTING, /* two stages of translation */
Zhen Lei2da274c2018-09-20 17:10:22 +0100127 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
Joerg Roedela8b8a88a2013-01-29 14:36:31 +0100128 DOMAIN_ATTR_MAX,
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100129};
130
Eric Augerd30ddca2017-01-19 20:57:48 +0000131/* These are the possible reserved region types */
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000132enum 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};
Eric Augerd30ddca2017-01-19 20:57:48 +0000142
Joerg Roedela1015c22015-05-28 18:41:33 +0200143/**
Eric Augere5b52342017-01-19 20:57:47 +0000144 * struct iommu_resv_region - descriptor for a reserved memory region
Joerg Roedela1015c22015-05-28 18:41:33 +0200145 * @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/...)
Eric Augerd30ddca2017-01-19 20:57:48 +0000149 * @type: Type of the reserved region
Joerg Roedela1015c22015-05-28 18:41:33 +0200150 */
Eric Augere5b52342017-01-19 20:57:47 +0000151struct iommu_resv_region {
Joerg Roedela1015c22015-05-28 18:41:33 +0200152 struct list_head list;
153 phys_addr_t start;
154 size_t length;
155 int prot;
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000156 enum iommu_resv_type type;
Joerg Roedela1015c22015-05-28 18:41:33 +0200157};
158
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200159#ifdef CONFIG_IOMMU_API
160
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200161/**
162 * struct iommu_ops - iommu ops and capabilities
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900163 * @capable: check capability
164 * @domain_alloc: allocate iommu domain
165 * @domain_free: free iommu domain
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200166 * @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
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200170 * @flush_tlb_all: Synchronously flush all hardware TLBs for this domain
tom51eb7802018-12-04 18:27:34 +0000171 * @iotlb_range_add: Add a given iova range to the flush queue for this domain
172 * @iotlb_sync: Flush all queued ranges from the hardware TLBs and empty flush
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200173 * queue
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200174 * @iova_to_phys: translate iova to physical address
Alex Williamsond72e31c2012-05-30 14:18:53 -0600175 * @add_device: add device to iommu grouping
176 * @remove_device: remove device from iommu grouping
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900177 * @device_group: find iommu group for a particular device
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100178 * @domain_get_attr: Query domain attributes
179 * @domain_set_attr: Change domain attributes
Eric Augere5b52342017-01-19 20:57:47 +0000180 * @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
Magnus Damm0d9bacb2016-01-19 14:28:48 +0900183 * @domain_window_enable: Configure and enable a particular window for a domain
184 * @domain_window_disable: Disable a particular window for a domain
Will Deacond0f60a42014-08-27 16:15:59 +0100185 * @of_xlate: add OF master IDs to iommu grouping
Robin Murphyd16e0fa2016-04-07 18:42:06 +0100186 * @pgsize_bitmap: bitmap of all possible supported page sizes
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200187 */
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100188struct iommu_ops {
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200189 bool (*capable)(enum iommu_cap);
Joerg Roedel938c4702015-03-26 13:43:04 +0100190
191 /* Domain allocation and freeing by the iommu driver */
Joerg Roedel8539c7c2015-03-26 13:43:05 +0100192 struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type);
Joerg Roedel938c4702015-03-26 13:43:04 +0100193 void (*domain_free)(struct iommu_domain *);
194
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100195 int (*attach_dev)(struct iommu_domain *domain, struct device *dev);
196 void (*detach_dev)(struct iommu_domain *domain, struct device *dev);
Joerg Roedel67651782010-01-21 16:32:27 +0100197 int (*map)(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +0200198 phys_addr_t paddr, size_t size, int prot);
199 size_t (*unmap)(struct iommu_domain *domain, unsigned long iova,
200 size_t size);
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200201 void (*flush_iotlb_all)(struct iommu_domain *domain);
202 void (*iotlb_range_add)(struct iommu_domain *domain,
203 unsigned long iova, size_t size);
Dmitry Osipenko1d7ae532018-12-12 23:38:47 +0300204 void (*iotlb_sync_map)(struct iommu_domain *domain);
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200205 void (*iotlb_sync)(struct iommu_domain *domain);
Varun Sethibb5547a2013-03-29 01:23:58 +0530206 phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600207 int (*add_device)(struct device *dev);
208 void (*remove_device)(struct device *dev);
Joerg Roedel46c6b2b2015-10-21 23:51:36 +0200209 struct iommu_group *(*device_group)(struct device *dev);
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100210 int (*domain_get_attr)(struct iommu_domain *domain,
211 enum iommu_attr attr, void *data);
212 int (*domain_set_attr)(struct iommu_domain *domain,
213 enum iommu_attr attr, void *data);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100214
Eric Augere5b52342017-01-19 20:57:47 +0000215 /* Request/Free a list of reserved regions for a device */
216 void (*get_resv_regions)(struct device *dev, struct list_head *list);
217 void (*put_resv_regions)(struct device *dev, struct list_head *list);
218 void (*apply_resv_region)(struct device *dev,
219 struct iommu_domain *domain,
220 struct iommu_resv_region *region);
Joerg Roedela1015c22015-05-28 18:41:33 +0200221
Joerg Roedeld7787d52013-01-29 14:26:20 +0100222 /* Window handling functions */
223 int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530224 phys_addr_t paddr, u64 size, int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100225 void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr);
226
Will Deacond0f60a42014-08-27 16:15:59 +0100227 int (*of_xlate)(struct device *dev, struct of_phandle_args *args);
Baoquan Hee01d1912017-08-09 16:33:40 +0800228 bool (*is_attach_deferred)(struct iommu_domain *domain, struct device *dev);
Will Deacond0f60a42014-08-27 16:15:59 +0100229
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200230 unsigned long pgsize_bitmap;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100231};
232
Joerg Roedelb0119e82017-02-01 13:23:08 +0100233/**
234 * struct iommu_device - IOMMU core representation of one IOMMU hardware
235 * instance
236 * @list: Used by the iommu-core to keep a list of registered iommus
237 * @ops: iommu-ops for talking to this iommu
Joerg Roedel39ab9552017-02-01 16:56:46 +0100238 * @dev: struct device for sysfs handling
Joerg Roedelb0119e82017-02-01 13:23:08 +0100239 */
240struct iommu_device {
241 struct list_head list;
242 const struct iommu_ops *ops;
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100243 struct fwnode_handle *fwnode;
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200244 struct device *dev;
Joerg Roedelb0119e82017-02-01 13:23:08 +0100245};
246
247int iommu_device_register(struct iommu_device *iommu);
248void iommu_device_unregister(struct iommu_device *iommu);
Joerg Roedel39ab9552017-02-01 16:56:46 +0100249int iommu_device_sysfs_add(struct iommu_device *iommu,
250 struct device *parent,
251 const struct attribute_group **groups,
252 const char *fmt, ...) __printf(4, 5);
253void iommu_device_sysfs_remove(struct iommu_device *iommu);
Joerg Roedele3d10af2017-02-01 17:23:22 +0100254int iommu_device_link(struct iommu_device *iommu, struct device *link);
255void iommu_device_unlink(struct iommu_device *iommu, struct device *link);
Joerg Roedelb0119e82017-02-01 13:23:08 +0100256
257static inline void iommu_device_set_ops(struct iommu_device *iommu,
258 const struct iommu_ops *ops)
259{
260 iommu->ops = ops;
261}
262
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100263static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
264 struct fwnode_handle *fwnode)
265{
266 iommu->fwnode = fwnode;
267}
268
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200269static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
270{
271 return (struct iommu_device *)dev_get_drvdata(dev);
272}
273
Alex Williamsond72e31c2012-05-30 14:18:53 -0600274#define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */
275#define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */
276#define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */
277#define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */
278#define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */
279#define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */
280
Thierry Redingb22f6432014-06-27 09:03:12 +0200281extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops);
Joerg Roedela1b60c12011-09-06 18:46:34 +0200282extern bool iommu_present(struct bus_type *bus);
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200283extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap);
Joerg Roedel905d66c2011-09-06 16:03:26 +0200284extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
Alexey Kardashevskiyaa16bea2013-03-25 10:23:49 +1100285extern struct iommu_group *iommu_group_get_by_id(int id);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100286extern void iommu_domain_free(struct iommu_domain *domain);
287extern int iommu_attach_device(struct iommu_domain *domain,
288 struct device *dev);
289extern void iommu_detach_device(struct iommu_domain *domain,
290 struct device *dev);
Joerg Roedel2c1296d2015-05-28 18:41:32 +0200291extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev);
Robin Murphy6af588f2018-09-12 16:24:12 +0100292extern struct iommu_domain *iommu_get_dma_domain(struct device *dev);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100293extern int iommu_map(struct iommu_domain *domain, unsigned long iova,
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200294 phys_addr_t paddr, size_t size, int prot);
295extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova,
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200296 size_t size);
297extern size_t iommu_unmap_fast(struct iommu_domain *domain,
298 unsigned long iova, size_t size);
Christoph Hellwigd88e61f2018-07-30 09:36:26 +0200299extern size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
300 struct scatterlist *sg,unsigned int nents, int prot);
Varun Sethibb5547a2013-03-29 01:23:58 +0530301extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400302extern void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300303 iommu_fault_handler_t handler, void *token);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600304
Eric Augere5b52342017-01-19 20:57:47 +0000305extern void iommu_get_resv_regions(struct device *dev, struct list_head *list);
306extern void iommu_put_resv_regions(struct device *dev, struct list_head *list);
Joerg Roedeld290f1e2015-05-28 18:41:36 +0200307extern int iommu_request_dm_for_dev(struct device *dev);
Eric Auger2b20cbb2017-01-19 20:57:49 +0000308extern struct iommu_resv_region *
Robin Murphy9d3a4de2017-03-16 17:00:16 +0000309iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot,
310 enum iommu_resv_type type);
Eric Auger6c65fb32017-01-19 20:57:51 +0000311extern int iommu_get_group_resv_regions(struct iommu_group *group,
312 struct list_head *head);
Joerg Roedela1015c22015-05-28 18:41:33 +0200313
Alex Williamsond72e31c2012-05-30 14:18:53 -0600314extern int iommu_attach_group(struct iommu_domain *domain,
315 struct iommu_group *group);
316extern void iommu_detach_group(struct iommu_domain *domain,
317 struct iommu_group *group);
318extern struct iommu_group *iommu_group_alloc(void);
319extern void *iommu_group_get_iommudata(struct iommu_group *group);
320extern void iommu_group_set_iommudata(struct iommu_group *group,
321 void *iommu_data,
322 void (*release)(void *iommu_data));
323extern int iommu_group_set_name(struct iommu_group *group, const char *name);
324extern int iommu_group_add_device(struct iommu_group *group,
325 struct device *dev);
326extern void iommu_group_remove_device(struct device *dev);
327extern int iommu_group_for_each_dev(struct iommu_group *group, void *data,
328 int (*fn)(struct device *, void *));
329extern struct iommu_group *iommu_group_get(struct device *dev);
Robin Murphy13f59a72016-11-11 17:59:21 +0000330extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group);
Alex Williamsond72e31c2012-05-30 14:18:53 -0600331extern void iommu_group_put(struct iommu_group *group);
332extern int iommu_group_register_notifier(struct iommu_group *group,
333 struct notifier_block *nb);
334extern int iommu_group_unregister_notifier(struct iommu_group *group,
335 struct notifier_block *nb);
336extern int iommu_group_id(struct iommu_group *group);
Alex Williamson104a1c12014-07-03 09:51:18 -0600337extern struct iommu_group *iommu_group_get_for_dev(struct device *dev);
Joerg Roedel6827ca82015-05-28 18:41:35 +0200338extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400339
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100340extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr,
341 void *data);
342extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr,
343 void *data);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400344
Joerg Roedeld7787d52013-01-29 14:26:20 +0100345/* Window handling function prototypes */
346extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530347 phys_addr_t offset, u64 size,
348 int prot);
Joerg Roedeld7787d52013-01-29 14:26:20 +0100349extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400350
Joerg Roedel207c6e32017-04-26 15:39:28 +0200351extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
352 unsigned long iova, int flags);
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100353
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200354static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
355{
356 if (domain->ops->flush_iotlb_all)
357 domain->ops->flush_iotlb_all(domain);
358}
359
360static inline void iommu_tlb_range_add(struct iommu_domain *domain,
361 unsigned long iova, size_t size)
362{
363 if (domain->ops->iotlb_range_add)
364 domain->ops->iotlb_range_add(domain, iova, size);
365}
366
367static inline void iommu_tlb_sync(struct iommu_domain *domain)
368{
369 if (domain->ops->iotlb_sync)
370 domain->ops->iotlb_sync(domain);
371}
372
Joerg Roedel5e622922015-10-21 23:51:37 +0200373/* PCI device grouping function */
374extern struct iommu_group *pci_device_group(struct device *dev);
Joerg Roedel6eab5562015-10-21 23:51:38 +0200375/* Generic device grouping function */
376extern struct iommu_group *generic_device_group(struct device *dev);
Nipun Guptaeab03e22018-09-10 19:19:18 +0530377/* FSL-MC device grouping function */
378struct iommu_group *fsl_mc_device_group(struct device *dev);
Joerg Roedel5e622922015-10-21 23:51:37 +0200379
Robin Murphy57f98d22016-09-13 10:54:14 +0100380/**
381 * struct iommu_fwspec - per-device IOMMU instance data
382 * @ops: ops for this device's IOMMU
383 * @iommu_fwnode: firmware handle for this device's IOMMU
384 * @iommu_priv: IOMMU driver private data for this device
385 * @num_ids: number of associated device IDs
386 * @ids: IDs which this device may present to the IOMMU
387 */
388struct iommu_fwspec {
389 const struct iommu_ops *ops;
390 struct fwnode_handle *iommu_fwnode;
391 void *iommu_priv;
392 unsigned int num_ids;
393 u32 ids[1];
394};
395
396int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
397 const struct iommu_ops *ops);
398void iommu_fwspec_free(struct device *dev);
399int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids);
Joerg Roedel534766d2017-01-31 16:58:42 +0100400const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode);
Robin Murphy57f98d22016-09-13 10:54:14 +0100401
Joerg Roedelb4ef7252018-11-28 13:35:24 +0100402static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev)
403{
404 return dev->iommu_fwspec;
405}
406
407static inline void dev_iommu_fwspec_set(struct device *dev,
408 struct iommu_fwspec *fwspec)
409{
410 dev->iommu_fwspec = fwspec;
411}
412
Joerg Roedelcc5aed42018-11-30 10:31:59 +0100413int iommu_probe_device(struct device *dev);
414void iommu_release_device(struct device *dev);
415
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100416#else /* CONFIG_IOMMU_API */
417
Joerg Roedel39d4ebb2011-09-06 16:48:40 +0200418struct iommu_ops {};
Alex Williamsond72e31c2012-05-30 14:18:53 -0600419struct iommu_group {};
Robin Murphy57f98d22016-09-13 10:54:14 +0100420struct iommu_fwspec {};
Joerg Roedelb0119e82017-02-01 13:23:08 +0100421struct iommu_device {};
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100422
Joerg Roedela1b60c12011-09-06 18:46:34 +0200423static inline bool iommu_present(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100424{
425 return false;
426}
427
Joerg Roedel3c0e0ca2014-09-03 18:47:25 +0200428static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
429{
430 return false;
431}
432
Joerg Roedel905d66c2011-09-06 16:03:26 +0200433static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100434{
435 return NULL;
436}
437
Alexey Kardashevskiyb62dfd22013-11-21 17:41:14 +1100438static inline struct iommu_group *iommu_group_get_by_id(int id)
439{
440 return NULL;
441}
442
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100443static inline void iommu_domain_free(struct iommu_domain *domain)
444{
445}
446
447static inline int iommu_attach_device(struct iommu_domain *domain,
448 struct device *dev)
449{
450 return -ENODEV;
451}
452
453static inline void iommu_detach_device(struct iommu_domain *domain,
454 struct device *dev)
455{
456}
457
Joerg Roedel2c1296d2015-05-28 18:41:32 +0200458static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
459{
460 return NULL;
461}
462
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100463static inline int iommu_map(struct iommu_domain *domain, unsigned long iova,
Dmitry Osipenkoebae3e82017-07-05 20:27:53 +0300464 phys_addr_t paddr, size_t size, int prot)
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100465{
466 return -ENODEV;
467}
468
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500469static inline size_t iommu_unmap(struct iommu_domain *domain,
470 unsigned long iova, size_t size)
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100471{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500472 return 0;
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100473}
474
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500475static inline size_t iommu_unmap_fast(struct iommu_domain *domain,
476 unsigned long iova, int gfp_order)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100477{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500478 return 0;
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100479}
480
Olav Haugan315786e2014-10-25 09:55:16 -0700481static inline size_t iommu_map_sg(struct iommu_domain *domain,
482 unsigned long iova, struct scatterlist *sg,
483 unsigned int nents, int prot)
484{
Suravee Suthikulpanitc5611a82018-02-05 05:45:53 -0500485 return 0;
Olav Haugan315786e2014-10-25 09:55:16 -0700486}
487
Joerg Roedeladd02cfd2017-08-23 15:50:04 +0200488static inline void iommu_flush_tlb_all(struct iommu_domain *domain)
489{
490}
491
492static inline void iommu_tlb_range_add(struct iommu_domain *domain,
493 unsigned long iova, size_t size)
494{
495}
496
497static inline void iommu_tlb_sync(struct iommu_domain *domain)
498{
499}
500
Joerg Roedeld7787d52013-01-29 14:26:20 +0100501static inline int iommu_domain_window_enable(struct iommu_domain *domain,
502 u32 wnd_nr, phys_addr_t paddr,
Varun Sethi80f97f02013-03-29 01:24:00 +0530503 u64 size, int prot)
Joerg Roedeld7787d52013-01-29 14:26:20 +0100504{
505 return -ENODEV;
506}
507
508static inline void iommu_domain_window_disable(struct iommu_domain *domain,
509 u32 wnd_nr)
510{
511}
512
Varun Sethibb5547a2013-03-29 01:23:58 +0530513static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100514{
515 return 0;
516}
517
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400518static inline void iommu_set_fault_handler(struct iommu_domain *domain,
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300519 iommu_fault_handler_t handler, void *token)
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -0400520{
521}
522
Eric Augere5b52342017-01-19 20:57:47 +0000523static inline void iommu_get_resv_regions(struct device *dev,
Joerg Roedela1015c22015-05-28 18:41:33 +0200524 struct list_head *list)
525{
526}
527
Eric Augere5b52342017-01-19 20:57:47 +0000528static inline void iommu_put_resv_regions(struct device *dev,
Joerg Roedela1015c22015-05-28 18:41:33 +0200529 struct list_head *list)
530{
531}
532
Eric Auger6c65fb32017-01-19 20:57:51 +0000533static inline int iommu_get_group_resv_regions(struct iommu_group *group,
534 struct list_head *head)
535{
536 return -ENODEV;
537}
538
Joerg Roedeld290f1e2015-05-28 18:41:36 +0200539static inline int iommu_request_dm_for_dev(struct device *dev)
540{
541 return -ENODEV;
542}
543
Alex Williamsonbef83de2012-09-24 21:23:25 -0600544static inline int iommu_attach_group(struct iommu_domain *domain,
545 struct iommu_group *group)
Alex Williamson14604322011-10-21 15:56:05 -0400546{
547 return -ENODEV;
548}
549
Alex Williamsonbef83de2012-09-24 21:23:25 -0600550static inline void iommu_detach_group(struct iommu_domain *domain,
551 struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600552{
553}
554
Alex Williamsonbef83de2012-09-24 21:23:25 -0600555static inline struct iommu_group *iommu_group_alloc(void)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600556{
557 return ERR_PTR(-ENODEV);
558}
559
Alex Williamsonbef83de2012-09-24 21:23:25 -0600560static inline void *iommu_group_get_iommudata(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600561{
562 return NULL;
563}
564
Alex Williamsonbef83de2012-09-24 21:23:25 -0600565static inline void iommu_group_set_iommudata(struct iommu_group *group,
566 void *iommu_data,
567 void (*release)(void *iommu_data))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600568{
569}
570
Alex Williamsonbef83de2012-09-24 21:23:25 -0600571static inline int iommu_group_set_name(struct iommu_group *group,
572 const char *name)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600573{
574 return -ENODEV;
575}
576
Alex Williamsonbef83de2012-09-24 21:23:25 -0600577static inline int iommu_group_add_device(struct iommu_group *group,
578 struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600579{
580 return -ENODEV;
581}
582
Alex Williamsonbef83de2012-09-24 21:23:25 -0600583static inline void iommu_group_remove_device(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600584{
585}
586
Alex Williamsonbef83de2012-09-24 21:23:25 -0600587static inline int iommu_group_for_each_dev(struct iommu_group *group,
588 void *data,
589 int (*fn)(struct device *, void *))
Alex Williamsond72e31c2012-05-30 14:18:53 -0600590{
591 return -ENODEV;
592}
593
Alex Williamsonbef83de2012-09-24 21:23:25 -0600594static inline struct iommu_group *iommu_group_get(struct device *dev)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600595{
596 return NULL;
597}
598
Alex Williamsonbef83de2012-09-24 21:23:25 -0600599static inline void iommu_group_put(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600600{
601}
602
Alex Williamsonbef83de2012-09-24 21:23:25 -0600603static inline int iommu_group_register_notifier(struct iommu_group *group,
604 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600605{
606 return -ENODEV;
607}
608
Alex Williamsonbef83de2012-09-24 21:23:25 -0600609static inline int iommu_group_unregister_notifier(struct iommu_group *group,
610 struct notifier_block *nb)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600611{
612 return 0;
613}
614
Alex Williamsonbef83de2012-09-24 21:23:25 -0600615static inline int iommu_group_id(struct iommu_group *group)
Alex Williamsond72e31c2012-05-30 14:18:53 -0600616{
617 return -ENODEV;
618}
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100619
Joerg Roedel0cd76dd2012-01-26 19:40:52 +0100620static inline int iommu_domain_get_attr(struct iommu_domain *domain,
621 enum iommu_attr attr, void *data)
622{
623 return -EINVAL;
624}
625
626static inline int iommu_domain_set_attr(struct iommu_domain *domain,
627 enum iommu_attr attr, void *data)
628{
629 return -EINVAL;
630}
631
Joerg Roedelb0119e82017-02-01 13:23:08 +0100632static inline int iommu_device_register(struct iommu_device *iommu)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600633{
Joerg Roedelb0119e82017-02-01 13:23:08 +0100634 return -ENODEV;
Alex Williamsonc61959e2014-06-12 16:12:24 -0600635}
636
Joerg Roedelb0119e82017-02-01 13:23:08 +0100637static inline void iommu_device_set_ops(struct iommu_device *iommu,
638 const struct iommu_ops *ops)
639{
640}
641
Joerg Roedelc73e1ac2017-02-07 18:18:46 +0100642static inline void iommu_device_set_fwnode(struct iommu_device *iommu,
643 struct fwnode_handle *fwnode)
644{
645}
646
Joerg Roedel2926a2aa2017-08-14 17:19:26 +0200647static inline struct iommu_device *dev_to_iommu_device(struct device *dev)
648{
649 return NULL;
650}
651
Joerg Roedelb0119e82017-02-01 13:23:08 +0100652static inline void iommu_device_unregister(struct iommu_device *iommu)
653{
654}
655
Joerg Roedel39ab9552017-02-01 16:56:46 +0100656static inline int iommu_device_sysfs_add(struct iommu_device *iommu,
657 struct device *parent,
658 const struct attribute_group **groups,
659 const char *fmt, ...)
660{
661 return -ENODEV;
662}
663
664static inline void iommu_device_sysfs_remove(struct iommu_device *iommu)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600665{
666}
667
Alex Williamsone09f8ea2014-07-07 14:31:36 -0600668static inline int iommu_device_link(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600669{
670 return -EINVAL;
671}
672
Alex Williamsone09f8ea2014-07-07 14:31:36 -0600673static inline void iommu_device_unlink(struct device *dev, struct device *link)
Alex Williamsonc61959e2014-06-12 16:12:24 -0600674{
675}
676
Robin Murphy57f98d22016-09-13 10:54:14 +0100677static inline int iommu_fwspec_init(struct device *dev,
678 struct fwnode_handle *iommu_fwnode,
679 const struct iommu_ops *ops)
680{
681 return -ENODEV;
682}
683
684static inline void iommu_fwspec_free(struct device *dev)
685{
686}
687
688static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids,
689 int num_ids)
690{
691 return -ENODEV;
692}
693
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +0000694static inline
Joerg Roedel534766d2017-01-31 16:58:42 +0100695const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
Lorenzo Pieralisie4f10ff2016-11-21 10:01:36 +0000696{
697 return NULL;
698}
699
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100700#endif /* CONFIG_IOMMU_API */
701
Gary R Hookbad614b2018-06-12 16:41:21 -0500702#ifdef CONFIG_IOMMU_DEBUGFS
703extern struct dentry *iommu_debugfs_dir;
704void iommu_debugfs_setup(void);
705#else
706static inline void iommu_debugfs_setup(void) {}
707#endif
708
Joerg Roedel4a77a6c2008-11-26 17:02:33 +0100709#endif /* __LINUX_IOMMU_H */