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