Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 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 | |
Laura Abbott | 74315cc | 2011-06-08 17:29:11 -0400 | [diff] [blame] | 22 | #include <linux/errno.h> |
Wang YanQing | 9a08d37 | 2013-04-19 09:38:04 +0800 | [diff] [blame] | 23 | #include <linux/err.h> |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 24 | #include <linux/of.h> |
Thierry Reding | 76582d0 | 2012-07-25 16:24:49 +0200 | [diff] [blame] | 25 | #include <linux/types.h> |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 26 | #include <linux/scatterlist.h> |
Shuah Khan | 56fa484 | 2013-09-24 15:21:20 -0600 | [diff] [blame] | 27 | #include <trace/events/iommu.h> |
Laura Abbott | 74315cc | 2011-06-08 17:29:11 -0400 | [diff] [blame] | 28 | |
Will Deacon | ca13bb3 | 2013-11-05 15:59:53 +0000 | [diff] [blame] | 29 | #define IOMMU_READ (1 << 0) |
| 30 | #define IOMMU_WRITE (1 << 1) |
| 31 | #define IOMMU_CACHE (1 << 2) /* DMA cache coherency */ |
Antonios Motakis | a720b41 | 2014-10-13 14:06:16 +0100 | [diff] [blame] | 32 | #define IOMMU_NOEXEC (1 << 3) |
Robin Murphy | 31e6850 | 2016-04-05 12:39:30 +0100 | [diff] [blame] | 33 | #define IOMMU_MMIO (1 << 4) /* e.g. things like MSI doorbells */ |
Mitchel Humpherys | 579b2a6 | 2017-01-06 18:58:08 +0530 | [diff] [blame] | 34 | /* |
| 35 | * This is to make the IOMMU API setup privileged |
| 36 | * mapppings accessible by the master only at higher |
| 37 | * privileged execution level and inaccessible at |
| 38 | * less privileged levels. |
| 39 | */ |
| 40 | #define IOMMU_PRIV (1 << 5) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 41 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 42 | struct iommu_ops; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 43 | struct iommu_group; |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 44 | struct bus_type; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 45 | struct device; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 46 | struct iommu_domain; |
Joerg Roedel | ba1eabfa | 2012-08-03 15:55:41 +0200 | [diff] [blame] | 47 | struct notifier_block; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 48 | |
| 49 | /* iommu fault flags */ |
| 50 | #define IOMMU_FAULT_READ 0x0 |
| 51 | #define IOMMU_FAULT_WRITE 0x1 |
| 52 | |
| 53 | typedef int (*iommu_fault_handler_t)(struct iommu_domain *, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 54 | struct device *, unsigned long, int, void *); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 55 | |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 56 | struct iommu_domain_geometry { |
| 57 | dma_addr_t aperture_start; /* First address that can be mapped */ |
| 58 | dma_addr_t aperture_end; /* Last address that can be mapped */ |
| 59 | bool force_aperture; /* DMA only allowed in mappable range? */ |
| 60 | }; |
| 61 | |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 62 | /* Domain feature flags */ |
| 63 | #define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */ |
| 64 | #define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API |
| 65 | implementation */ |
| 66 | #define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */ |
| 67 | |
| 68 | /* |
| 69 | * This are the possible domain-types |
| 70 | * |
| 71 | * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate |
| 72 | * devices |
| 73 | * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses |
| 74 | * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used |
| 75 | * for VMs |
| 76 | * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations. |
| 77 | * This flag allows IOMMU drivers to implement |
| 78 | * certain optimizations for these domains |
| 79 | */ |
| 80 | #define IOMMU_DOMAIN_BLOCKED (0U) |
| 81 | #define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT) |
| 82 | #define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING) |
| 83 | #define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \ |
| 84 | __IOMMU_DOMAIN_DMA_API) |
| 85 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 86 | struct iommu_domain { |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 87 | unsigned type; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 88 | const struct iommu_ops *ops; |
Robin Murphy | d16e0fa | 2016-04-07 18:42:06 +0100 | [diff] [blame] | 89 | unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */ |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 90 | iommu_fault_handler_t handler; |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 91 | void *handler_token; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 92 | struct iommu_domain_geometry geometry; |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 93 | void *iova_cookie; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 94 | }; |
| 95 | |
Joerg Roedel | 1aed074 | 2014-09-03 18:34:04 +0200 | [diff] [blame] | 96 | enum iommu_cap { |
| 97 | IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA |
| 98 | transactions */ |
| 99 | IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */ |
Antonios Motakis | c498664 | 2014-10-13 14:06:17 +0100 | [diff] [blame] | 100 | IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */ |
Joerg Roedel | 1aed074 | 2014-09-03 18:34:04 +0200 | [diff] [blame] | 101 | }; |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 102 | |
Varun Sethi | 7cabf49 | 2013-07-15 10:20:56 +0530 | [diff] [blame] | 103 | /* |
| 104 | * Following constraints are specifc to FSL_PAMUV1: |
| 105 | * -aperture must be power of 2, and naturally aligned |
| 106 | * -number of windows must be power of 2, and address space size |
| 107 | * of each window is determined by aperture size / # of windows |
| 108 | * -the actual size of the mapped region of a window must be power |
| 109 | * of 2 starting with 4KB and physical address must be naturally |
| 110 | * aligned. |
| 111 | * DOMAIN_ATTR_FSL_PAMUV1 corresponds to the above mentioned contraints. |
| 112 | * The caller can invoke iommu_domain_get_attr to check if the underlying |
| 113 | * iommu implementation supports these constraints. |
| 114 | */ |
| 115 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 116 | enum iommu_attr { |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 117 | DOMAIN_ATTR_GEOMETRY, |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 118 | DOMAIN_ATTR_PAGING, |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 119 | DOMAIN_ATTR_WINDOWS, |
Varun Sethi | 7cabf49 | 2013-07-15 10:20:56 +0530 | [diff] [blame] | 120 | DOMAIN_ATTR_FSL_PAMU_STASH, |
| 121 | DOMAIN_ATTR_FSL_PAMU_ENABLE, |
| 122 | DOMAIN_ATTR_FSL_PAMUV1, |
Will Deacon | c02607a | 2014-09-29 10:05:06 -0600 | [diff] [blame] | 123 | DOMAIN_ATTR_NESTING, /* two stages of translation */ |
Joerg Roedel | a8b8a88a | 2013-01-29 14:36:31 +0100 | [diff] [blame] | 124 | DOMAIN_ATTR_MAX, |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 125 | }; |
| 126 | |
Eric Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 127 | /* These are the possible reserved region types */ |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 128 | enum iommu_resv_type { |
| 129 | /* Memory regions which must be mapped 1:1 at all times */ |
| 130 | IOMMU_RESV_DIRECT, |
| 131 | /* Arbitrary "never map this or give it to a device" address ranges */ |
| 132 | IOMMU_RESV_RESERVED, |
| 133 | /* Hardware MSI region (untranslated) */ |
| 134 | IOMMU_RESV_MSI, |
| 135 | /* Software-managed MSI translation window */ |
| 136 | IOMMU_RESV_SW_MSI, |
| 137 | }; |
Eric Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 138 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 139 | /** |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 140 | * struct iommu_resv_region - descriptor for a reserved memory region |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 141 | * @list: Linked list pointers |
| 142 | * @start: System physical start address of the region |
| 143 | * @length: Length of the region in bytes |
| 144 | * @prot: IOMMU Protection flags (READ/WRITE/...) |
Eric Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 145 | * @type: Type of the reserved region |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 146 | */ |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 147 | struct iommu_resv_region { |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 148 | struct list_head list; |
| 149 | phys_addr_t start; |
| 150 | size_t length; |
| 151 | int prot; |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 152 | enum iommu_resv_type type; |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 153 | }; |
| 154 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 155 | #ifdef CONFIG_IOMMU_API |
| 156 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 157 | /** |
| 158 | * struct iommu_ops - iommu ops and capabilities |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 159 | * @capable: check capability |
| 160 | * @domain_alloc: allocate iommu domain |
| 161 | * @domain_free: free iommu domain |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 162 | * @attach_dev: attach device to an iommu domain |
| 163 | * @detach_dev: detach device from an iommu domain |
| 164 | * @map: map a physically contiguous memory region to an iommu domain |
| 165 | * @unmap: unmap a physically contiguous memory region from an iommu domain |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 166 | * @map_sg: map a scatter-gather list of physically contiguous memory chunks |
| 167 | * to an iommu domain |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 168 | * @iova_to_phys: translate iova to physical address |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 169 | * @add_device: add device to iommu grouping |
| 170 | * @remove_device: remove device from iommu grouping |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 171 | * @device_group: find iommu group for a particular device |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 172 | * @domain_get_attr: Query domain attributes |
| 173 | * @domain_set_attr: Change domain attributes |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 174 | * @get_resv_regions: Request list of reserved regions for a device |
| 175 | * @put_resv_regions: Free list of reserved regions for a device |
| 176 | * @apply_resv_region: Temporary helper call-back for iova reserved ranges |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 177 | * @domain_window_enable: Configure and enable a particular window for a domain |
| 178 | * @domain_window_disable: Disable a particular window for a domain |
| 179 | * @domain_set_windows: Set the number of windows for a domain |
| 180 | * @domain_get_windows: Return the number of windows for a domain |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 181 | * @of_xlate: add OF master IDs to iommu grouping |
Robin Murphy | d16e0fa | 2016-04-07 18:42:06 +0100 | [diff] [blame] | 182 | * @pgsize_bitmap: bitmap of all possible supported page sizes |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 183 | */ |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 184 | struct iommu_ops { |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 185 | bool (*capable)(enum iommu_cap); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 186 | |
| 187 | /* Domain allocation and freeing by the iommu driver */ |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 188 | struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 189 | void (*domain_free)(struct iommu_domain *); |
| 190 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 191 | int (*attach_dev)(struct iommu_domain *domain, struct device *dev); |
| 192 | void (*detach_dev)(struct iommu_domain *domain, struct device *dev); |
Joerg Roedel | 6765178 | 2010-01-21 16:32:27 +0100 | [diff] [blame] | 193 | int (*map)(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 194 | phys_addr_t paddr, size_t size, int prot); |
| 195 | size_t (*unmap)(struct iommu_domain *domain, unsigned long iova, |
| 196 | size_t size); |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 197 | size_t (*map_sg)(struct iommu_domain *domain, unsigned long iova, |
| 198 | struct scatterlist *sg, unsigned int nents, int prot); |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 199 | phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 200 | int (*add_device)(struct device *dev); |
| 201 | void (*remove_device)(struct device *dev); |
Joerg Roedel | 46c6b2b | 2015-10-21 23:51:36 +0200 | [diff] [blame] | 202 | struct iommu_group *(*device_group)(struct device *dev); |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 203 | int (*domain_get_attr)(struct iommu_domain *domain, |
| 204 | enum iommu_attr attr, void *data); |
| 205 | int (*domain_set_attr)(struct iommu_domain *domain, |
| 206 | enum iommu_attr attr, void *data); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 207 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 208 | /* Request/Free a list of reserved regions for a device */ |
| 209 | void (*get_resv_regions)(struct device *dev, struct list_head *list); |
| 210 | void (*put_resv_regions)(struct device *dev, struct list_head *list); |
| 211 | void (*apply_resv_region)(struct device *dev, |
| 212 | struct iommu_domain *domain, |
| 213 | struct iommu_resv_region *region); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 214 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 215 | /* Window handling functions */ |
| 216 | int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 217 | phys_addr_t paddr, u64 size, int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 218 | void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr); |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 219 | /* Set the number of windows per domain */ |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 220 | int (*domain_set_windows)(struct iommu_domain *domain, u32 w_count); |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 221 | /* Get the number of windows per domain */ |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 222 | u32 (*domain_get_windows)(struct iommu_domain *domain); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 223 | |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 224 | int (*of_xlate)(struct device *dev, struct of_phandle_args *args); |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 225 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 226 | unsigned long pgsize_bitmap; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 227 | }; |
| 228 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 229 | /** |
| 230 | * struct iommu_device - IOMMU core representation of one IOMMU hardware |
| 231 | * instance |
| 232 | * @list: Used by the iommu-core to keep a list of registered iommus |
| 233 | * @ops: iommu-ops for talking to this iommu |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 234 | * @dev: struct device for sysfs handling |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 235 | */ |
| 236 | struct iommu_device { |
| 237 | struct list_head list; |
| 238 | const struct iommu_ops *ops; |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 239 | struct fwnode_handle *fwnode; |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 240 | struct device dev; |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 241 | }; |
| 242 | |
| 243 | int iommu_device_register(struct iommu_device *iommu); |
| 244 | void iommu_device_unregister(struct iommu_device *iommu); |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 245 | int iommu_device_sysfs_add(struct iommu_device *iommu, |
| 246 | struct device *parent, |
| 247 | const struct attribute_group **groups, |
| 248 | const char *fmt, ...) __printf(4, 5); |
| 249 | void iommu_device_sysfs_remove(struct iommu_device *iommu); |
Joerg Roedel | e3d10af | 2017-02-01 17:23:22 +0100 | [diff] [blame] | 250 | int iommu_device_link(struct iommu_device *iommu, struct device *link); |
| 251 | void iommu_device_unlink(struct iommu_device *iommu, struct device *link); |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 252 | |
| 253 | static inline void iommu_device_set_ops(struct iommu_device *iommu, |
| 254 | const struct iommu_ops *ops) |
| 255 | { |
| 256 | iommu->ops = ops; |
| 257 | } |
| 258 | |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 259 | static inline void iommu_device_set_fwnode(struct iommu_device *iommu, |
| 260 | struct fwnode_handle *fwnode) |
| 261 | { |
| 262 | iommu->fwnode = fwnode; |
| 263 | } |
| 264 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 265 | #define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */ |
| 266 | #define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */ |
| 267 | #define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */ |
| 268 | #define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */ |
| 269 | #define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */ |
| 270 | #define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */ |
| 271 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 272 | extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops); |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 273 | extern bool iommu_present(struct bus_type *bus); |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 274 | extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap); |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 275 | extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); |
Alexey Kardashevskiy | aa16bea | 2013-03-25 10:23:49 +1100 | [diff] [blame] | 276 | extern struct iommu_group *iommu_group_get_by_id(int id); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 277 | extern void iommu_domain_free(struct iommu_domain *domain); |
| 278 | extern int iommu_attach_device(struct iommu_domain *domain, |
| 279 | struct device *dev); |
| 280 | extern void iommu_detach_device(struct iommu_domain *domain, |
| 281 | struct device *dev); |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 282 | extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 283 | extern int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 284 | phys_addr_t paddr, size_t size, int prot); |
| 285 | extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, |
| 286 | size_t size); |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 287 | extern size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova, |
| 288 | struct scatterlist *sg,unsigned int nents, |
| 289 | int prot); |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 290 | extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 291 | extern void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 292 | iommu_fault_handler_t handler, void *token); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 293 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 294 | extern void iommu_get_resv_regions(struct device *dev, struct list_head *list); |
| 295 | extern void iommu_put_resv_regions(struct device *dev, struct list_head *list); |
Joerg Roedel | d290f1e | 2015-05-28 18:41:36 +0200 | [diff] [blame] | 296 | extern int iommu_request_dm_for_dev(struct device *dev); |
Eric Auger | 2b20cbb | 2017-01-19 20:57:49 +0000 | [diff] [blame] | 297 | extern struct iommu_resv_region * |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 298 | iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot, |
| 299 | enum iommu_resv_type type); |
Eric Auger | 6c65fb3 | 2017-01-19 20:57:51 +0000 | [diff] [blame] | 300 | extern int iommu_get_group_resv_regions(struct iommu_group *group, |
| 301 | struct list_head *head); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 302 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 303 | extern int iommu_attach_group(struct iommu_domain *domain, |
| 304 | struct iommu_group *group); |
| 305 | extern void iommu_detach_group(struct iommu_domain *domain, |
| 306 | struct iommu_group *group); |
| 307 | extern struct iommu_group *iommu_group_alloc(void); |
| 308 | extern void *iommu_group_get_iommudata(struct iommu_group *group); |
| 309 | extern void iommu_group_set_iommudata(struct iommu_group *group, |
| 310 | void *iommu_data, |
| 311 | void (*release)(void *iommu_data)); |
| 312 | extern int iommu_group_set_name(struct iommu_group *group, const char *name); |
| 313 | extern int iommu_group_add_device(struct iommu_group *group, |
| 314 | struct device *dev); |
| 315 | extern void iommu_group_remove_device(struct device *dev); |
| 316 | extern int iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 317 | int (*fn)(struct device *, void *)); |
| 318 | extern struct iommu_group *iommu_group_get(struct device *dev); |
Robin Murphy | 13f59a7 | 2016-11-11 17:59:21 +0000 | [diff] [blame] | 319 | extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 320 | extern void iommu_group_put(struct iommu_group *group); |
| 321 | extern int iommu_group_register_notifier(struct iommu_group *group, |
| 322 | struct notifier_block *nb); |
| 323 | extern int iommu_group_unregister_notifier(struct iommu_group *group, |
| 324 | struct notifier_block *nb); |
| 325 | extern int iommu_group_id(struct iommu_group *group); |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 326 | extern struct iommu_group *iommu_group_get_for_dev(struct device *dev); |
Joerg Roedel | 6827ca8 | 2015-05-28 18:41:35 +0200 | [diff] [blame] | 327 | extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 328 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 329 | extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr, |
| 330 | void *data); |
| 331 | extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr, |
| 332 | void *data); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 333 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 334 | /* Window handling function prototypes */ |
| 335 | extern int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 336 | phys_addr_t offset, u64 size, |
| 337 | int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 338 | extern void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 339 | /** |
| 340 | * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework |
| 341 | * @domain: the iommu domain where the fault has happened |
| 342 | * @dev: the device where the fault has happened |
| 343 | * @iova: the faulting address |
| 344 | * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...) |
| 345 | * |
| 346 | * This function should be called by the low-level IOMMU implementations |
| 347 | * whenever IOMMU faults happen, to allow high-level users, that are |
| 348 | * interested in such events, to know about them. |
| 349 | * |
| 350 | * This event may be useful for several possible use cases: |
| 351 | * - mere logging of the event |
| 352 | * - dynamic TLB/PTE loading |
| 353 | * - if restarting of the faulting device is required |
| 354 | * |
| 355 | * Returns 0 on success and an appropriate error code otherwise (if dynamic |
| 356 | * PTE/TLB loading will one day be supported, implementations will be able |
| 357 | * to tell whether it succeeded or not according to this return value). |
Ohad Ben-Cohen | 0ed6d2d | 2011-09-27 07:36:40 -0400 | [diff] [blame] | 358 | * |
| 359 | * Specifically, -ENOSYS is returned if a fault handler isn't installed |
| 360 | * (though fault handlers can also return -ENOSYS, in case they want to |
| 361 | * elicit the default behavior of the IOMMU drivers). |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 362 | */ |
| 363 | static inline int report_iommu_fault(struct iommu_domain *domain, |
| 364 | struct device *dev, unsigned long iova, int flags) |
| 365 | { |
Ohad Ben-Cohen | 0ed6d2d | 2011-09-27 07:36:40 -0400 | [diff] [blame] | 366 | int ret = -ENOSYS; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 367 | |
| 368 | /* |
| 369 | * if upper layers showed interest and installed a fault handler, |
| 370 | * invoke it. |
| 371 | */ |
| 372 | if (domain->handler) |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 373 | ret = domain->handler(domain, dev, iova, flags, |
| 374 | domain->handler_token); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 375 | |
Shuah Khan | 56fa484 | 2013-09-24 15:21:20 -0600 | [diff] [blame] | 376 | trace_io_page_fault(dev, iova, flags); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 377 | return ret; |
| 378 | } |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 379 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 380 | static inline size_t iommu_map_sg(struct iommu_domain *domain, |
| 381 | unsigned long iova, struct scatterlist *sg, |
| 382 | unsigned int nents, int prot) |
| 383 | { |
| 384 | return domain->ops->map_sg(domain, iova, sg, nents, prot); |
| 385 | } |
| 386 | |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 387 | /* PCI device grouping function */ |
| 388 | extern struct iommu_group *pci_device_group(struct device *dev); |
Joerg Roedel | 6eab556 | 2015-10-21 23:51:38 +0200 | [diff] [blame] | 389 | /* Generic device grouping function */ |
| 390 | extern struct iommu_group *generic_device_group(struct device *dev); |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 391 | |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 392 | /** |
| 393 | * struct iommu_fwspec - per-device IOMMU instance data |
| 394 | * @ops: ops for this device's IOMMU |
| 395 | * @iommu_fwnode: firmware handle for this device's IOMMU |
| 396 | * @iommu_priv: IOMMU driver private data for this device |
| 397 | * @num_ids: number of associated device IDs |
| 398 | * @ids: IDs which this device may present to the IOMMU |
| 399 | */ |
| 400 | struct iommu_fwspec { |
| 401 | const struct iommu_ops *ops; |
| 402 | struct fwnode_handle *iommu_fwnode; |
| 403 | void *iommu_priv; |
| 404 | unsigned int num_ids; |
| 405 | u32 ids[1]; |
| 406 | }; |
| 407 | |
| 408 | int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode, |
| 409 | const struct iommu_ops *ops); |
| 410 | void iommu_fwspec_free(struct device *dev); |
| 411 | int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids); |
Joerg Roedel | 534766d | 2017-01-31 16:58:42 +0100 | [diff] [blame] | 412 | const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode); |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 413 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 414 | #else /* CONFIG_IOMMU_API */ |
| 415 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 416 | struct iommu_ops {}; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 417 | struct iommu_group {}; |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 418 | struct iommu_fwspec {}; |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 419 | struct iommu_device {}; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 420 | |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 421 | static inline bool iommu_present(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 422 | { |
| 423 | return false; |
| 424 | } |
| 425 | |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 426 | static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) |
| 427 | { |
| 428 | return false; |
| 429 | } |
| 430 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 431 | static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 432 | { |
| 433 | return NULL; |
| 434 | } |
| 435 | |
Alexey Kardashevskiy | b62dfd2 | 2013-11-21 17:41:14 +1100 | [diff] [blame] | 436 | static inline struct iommu_group *iommu_group_get_by_id(int id) |
| 437 | { |
| 438 | return NULL; |
| 439 | } |
| 440 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 441 | static inline void iommu_domain_free(struct iommu_domain *domain) |
| 442 | { |
| 443 | } |
| 444 | |
| 445 | static inline int iommu_attach_device(struct iommu_domain *domain, |
| 446 | struct device *dev) |
| 447 | { |
| 448 | return -ENODEV; |
| 449 | } |
| 450 | |
| 451 | static inline void iommu_detach_device(struct iommu_domain *domain, |
| 452 | struct device *dev) |
| 453 | { |
| 454 | } |
| 455 | |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 456 | static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev) |
| 457 | { |
| 458 | return NULL; |
| 459 | } |
| 460 | |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 461 | static inline int iommu_map(struct iommu_domain *domain, unsigned long iova, |
| 462 | phys_addr_t paddr, int gfp_order, int prot) |
| 463 | { |
| 464 | return -ENODEV; |
| 465 | } |
| 466 | |
| 467 | static inline int iommu_unmap(struct iommu_domain *domain, unsigned long iova, |
| 468 | int gfp_order) |
| 469 | { |
| 470 | return -ENODEV; |
| 471 | } |
| 472 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 473 | static inline size_t iommu_map_sg(struct iommu_domain *domain, |
| 474 | unsigned long iova, struct scatterlist *sg, |
| 475 | unsigned int nents, int prot) |
| 476 | { |
| 477 | return -ENODEV; |
| 478 | } |
| 479 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 480 | static inline int iommu_domain_window_enable(struct iommu_domain *domain, |
| 481 | u32 wnd_nr, phys_addr_t paddr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 482 | u64 size, int prot) |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 483 | { |
| 484 | return -ENODEV; |
| 485 | } |
| 486 | |
| 487 | static inline void iommu_domain_window_disable(struct iommu_domain *domain, |
| 488 | u32 wnd_nr) |
| 489 | { |
| 490 | } |
| 491 | |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 492 | static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 493 | { |
| 494 | return 0; |
| 495 | } |
| 496 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 497 | static inline void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 498 | iommu_fault_handler_t handler, void *token) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 499 | { |
| 500 | } |
| 501 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 502 | static inline void iommu_get_resv_regions(struct device *dev, |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 503 | struct list_head *list) |
| 504 | { |
| 505 | } |
| 506 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 507 | static inline void iommu_put_resv_regions(struct device *dev, |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 508 | struct list_head *list) |
| 509 | { |
| 510 | } |
| 511 | |
Eric Auger | 6c65fb3 | 2017-01-19 20:57:51 +0000 | [diff] [blame] | 512 | static inline int iommu_get_group_resv_regions(struct iommu_group *group, |
| 513 | struct list_head *head) |
| 514 | { |
| 515 | return -ENODEV; |
| 516 | } |
| 517 | |
Joerg Roedel | d290f1e | 2015-05-28 18:41:36 +0200 | [diff] [blame] | 518 | static inline int iommu_request_dm_for_dev(struct device *dev) |
| 519 | { |
| 520 | return -ENODEV; |
| 521 | } |
| 522 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 523 | static inline int iommu_attach_group(struct iommu_domain *domain, |
| 524 | struct iommu_group *group) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 525 | { |
| 526 | return -ENODEV; |
| 527 | } |
| 528 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 529 | static inline void iommu_detach_group(struct iommu_domain *domain, |
| 530 | struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 531 | { |
| 532 | } |
| 533 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 534 | static inline struct iommu_group *iommu_group_alloc(void) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 535 | { |
| 536 | return ERR_PTR(-ENODEV); |
| 537 | } |
| 538 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 539 | static inline void *iommu_group_get_iommudata(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 540 | { |
| 541 | return NULL; |
| 542 | } |
| 543 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 544 | static inline void iommu_group_set_iommudata(struct iommu_group *group, |
| 545 | void *iommu_data, |
| 546 | void (*release)(void *iommu_data)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 547 | { |
| 548 | } |
| 549 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 550 | static inline int iommu_group_set_name(struct iommu_group *group, |
| 551 | const char *name) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 552 | { |
| 553 | return -ENODEV; |
| 554 | } |
| 555 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 556 | static inline int iommu_group_add_device(struct iommu_group *group, |
| 557 | struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 558 | { |
| 559 | return -ENODEV; |
| 560 | } |
| 561 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 562 | static inline void iommu_group_remove_device(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 563 | { |
| 564 | } |
| 565 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 566 | static inline int iommu_group_for_each_dev(struct iommu_group *group, |
| 567 | void *data, |
| 568 | int (*fn)(struct device *, void *)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 569 | { |
| 570 | return -ENODEV; |
| 571 | } |
| 572 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 573 | static inline struct iommu_group *iommu_group_get(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 574 | { |
| 575 | return NULL; |
| 576 | } |
| 577 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 578 | static inline void iommu_group_put(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 579 | { |
| 580 | } |
| 581 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 582 | static inline int iommu_group_register_notifier(struct iommu_group *group, |
| 583 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 584 | { |
| 585 | return -ENODEV; |
| 586 | } |
| 587 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 588 | static inline int iommu_group_unregister_notifier(struct iommu_group *group, |
| 589 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 590 | { |
| 591 | return 0; |
| 592 | } |
| 593 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 594 | static inline int iommu_group_id(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 595 | { |
| 596 | return -ENODEV; |
| 597 | } |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 598 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 599 | static inline int iommu_domain_get_attr(struct iommu_domain *domain, |
| 600 | enum iommu_attr attr, void *data) |
| 601 | { |
| 602 | return -EINVAL; |
| 603 | } |
| 604 | |
| 605 | static inline int iommu_domain_set_attr(struct iommu_domain *domain, |
| 606 | enum iommu_attr attr, void *data) |
| 607 | { |
| 608 | return -EINVAL; |
| 609 | } |
| 610 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 611 | static inline int iommu_device_register(struct iommu_device *iommu) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 612 | { |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 613 | return -ENODEV; |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 614 | } |
| 615 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 616 | static inline void iommu_device_set_ops(struct iommu_device *iommu, |
| 617 | const struct iommu_ops *ops) |
| 618 | { |
| 619 | } |
| 620 | |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 621 | static inline void iommu_device_set_fwnode(struct iommu_device *iommu, |
| 622 | struct fwnode_handle *fwnode) |
| 623 | { |
| 624 | } |
| 625 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 626 | static inline void iommu_device_unregister(struct iommu_device *iommu) |
| 627 | { |
| 628 | } |
| 629 | |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 630 | static inline int iommu_device_sysfs_add(struct iommu_device *iommu, |
| 631 | struct device *parent, |
| 632 | const struct attribute_group **groups, |
| 633 | const char *fmt, ...) |
| 634 | { |
| 635 | return -ENODEV; |
| 636 | } |
| 637 | |
| 638 | static inline void iommu_device_sysfs_remove(struct iommu_device *iommu) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 639 | { |
| 640 | } |
| 641 | |
Alex Williamson | e09f8ea | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 642 | static inline int iommu_device_link(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 643 | { |
| 644 | return -EINVAL; |
| 645 | } |
| 646 | |
Alex Williamson | e09f8ea | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 647 | static inline void iommu_device_unlink(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 648 | { |
| 649 | } |
| 650 | |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 651 | static inline int iommu_fwspec_init(struct device *dev, |
| 652 | struct fwnode_handle *iommu_fwnode, |
| 653 | const struct iommu_ops *ops) |
| 654 | { |
| 655 | return -ENODEV; |
| 656 | } |
| 657 | |
| 658 | static inline void iommu_fwspec_free(struct device *dev) |
| 659 | { |
| 660 | } |
| 661 | |
| 662 | static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids, |
| 663 | int num_ids) |
| 664 | { |
| 665 | return -ENODEV; |
| 666 | } |
| 667 | |
Lorenzo Pieralisi | e4f10ff | 2016-11-21 10:01:36 +0000 | [diff] [blame] | 668 | static inline |
Joerg Roedel | 534766d | 2017-01-31 16:58:42 +0100 | [diff] [blame] | 669 | const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode) |
Lorenzo Pieralisi | e4f10ff | 2016-11-21 10:01:36 +0000 | [diff] [blame] | 670 | { |
| 671 | return NULL; |
| 672 | } |
| 673 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 674 | #endif /* CONFIG_IOMMU_API */ |
| 675 | |
| 676 | #endif /* __LINUX_IOMMU_H */ |