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 | |
Joerg Roedel | e8245c1 | 2017-04-26 15:34:06 +0200 | [diff] [blame] | 22 | #include <linux/scatterlist.h> |
| 23 | #include <linux/device.h> |
| 24 | #include <linux/types.h> |
Laura Abbott | 74315cc | 2011-06-08 17:29:11 -0400 | [diff] [blame] | 25 | #include <linux/errno.h> |
Wang YanQing | 9a08d37 | 2013-04-19 09:38:04 +0800 | [diff] [blame] | 26 | #include <linux/err.h> |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 27 | #include <linux/of.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 */ |
Zhen Lei | 2da274c | 2018-09-20 17:10:22 +0100 | [diff] [blame] | 127 | DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE, |
Joerg Roedel | a8b8a88a | 2013-01-29 14:36:31 +0100 | [diff] [blame] | 128 | DOMAIN_ATTR_MAX, |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 129 | }; |
| 130 | |
Eric Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 131 | /* These are the possible reserved region types */ |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 132 | enum 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 Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 142 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 143 | /** |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 144 | * struct iommu_resv_region - descriptor for a reserved memory region |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 145 | * @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 Auger | d30ddca | 2017-01-19 20:57:48 +0000 | [diff] [blame] | 149 | * @type: Type of the reserved region |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 150 | */ |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 151 | struct iommu_resv_region { |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 152 | struct list_head list; |
| 153 | phys_addr_t start; |
| 154 | size_t length; |
| 155 | int prot; |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 156 | enum iommu_resv_type type; |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 157 | }; |
| 158 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 159 | #ifdef CONFIG_IOMMU_API |
| 160 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 161 | /** |
| 162 | * struct iommu_ops - iommu ops and capabilities |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 163 | * @capable: check capability |
| 164 | * @domain_alloc: allocate iommu domain |
| 165 | * @domain_free: free iommu domain |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 166 | * @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 |
Tom Murphy | db04d4a | 2019-02-11 15:50:33 +0000 | [diff] [blame] | 170 | * @flush_iotlb_all: Synchronously flush all hardware TLBs for this domain |
tom | 51eb780 | 2018-12-04 18:27:34 +0000 | [diff] [blame] | 171 | * @iotlb_range_add: Add a given iova range to the flush queue for this domain |
Geert Uytterhoeven | 2405bc1 | 2019-02-20 14:00:52 +0100 | [diff] [blame] | 172 | * @iotlb_sync_map: Sync mappings created recently using @map to the hardware |
tom | 51eb780 | 2018-12-04 18:27:34 +0000 | [diff] [blame] | 173 | * @iotlb_sync: Flush all queued ranges from the hardware TLBs and empty flush |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 174 | * queue |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 175 | * @iova_to_phys: translate iova to physical address |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 176 | * @add_device: add device to iommu grouping |
| 177 | * @remove_device: remove device from iommu grouping |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 178 | * @device_group: find iommu group for a particular device |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 179 | * @domain_get_attr: Query domain attributes |
| 180 | * @domain_set_attr: Change domain attributes |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 181 | * @get_resv_regions: Request list of reserved regions for a device |
| 182 | * @put_resv_regions: Free list of reserved regions for a device |
| 183 | * @apply_resv_region: Temporary helper call-back for iova reserved ranges |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 184 | * @domain_window_enable: Configure and enable a particular window for a domain |
| 185 | * @domain_window_disable: Disable a particular window for a domain |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 186 | * @of_xlate: add OF master IDs to iommu grouping |
Geert Uytterhoeven | a7055d5 | 2019-02-20 14:00:53 +0100 | [diff] [blame] | 187 | * @is_attach_deferred: Check if domain attach should be deferred from iommu |
| 188 | * driver init to device driver init (default no) |
Robin Murphy | d16e0fa | 2016-04-07 18:42:06 +0100 | [diff] [blame] | 189 | * @pgsize_bitmap: bitmap of all possible supported page sizes |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 190 | */ |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 191 | struct iommu_ops { |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 192 | bool (*capable)(enum iommu_cap); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 193 | |
| 194 | /* Domain allocation and freeing by the iommu driver */ |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 195 | struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 196 | void (*domain_free)(struct iommu_domain *); |
| 197 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 198 | int (*attach_dev)(struct iommu_domain *domain, struct device *dev); |
| 199 | void (*detach_dev)(struct iommu_domain *domain, struct device *dev); |
Joerg Roedel | 6765178 | 2010-01-21 16:32:27 +0100 | [diff] [blame] | 200 | int (*map)(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 201 | phys_addr_t paddr, size_t size, int prot); |
| 202 | size_t (*unmap)(struct iommu_domain *domain, unsigned long iova, |
| 203 | size_t size); |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 204 | void (*flush_iotlb_all)(struct iommu_domain *domain); |
| 205 | void (*iotlb_range_add)(struct iommu_domain *domain, |
| 206 | unsigned long iova, size_t size); |
Dmitry Osipenko | 1d7ae53 | 2018-12-12 23:38:47 +0300 | [diff] [blame] | 207 | void (*iotlb_sync_map)(struct iommu_domain *domain); |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 208 | void (*iotlb_sync)(struct iommu_domain *domain); |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 209 | 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] | 210 | int (*add_device)(struct device *dev); |
| 211 | void (*remove_device)(struct device *dev); |
Joerg Roedel | 46c6b2b | 2015-10-21 23:51:36 +0200 | [diff] [blame] | 212 | struct iommu_group *(*device_group)(struct device *dev); |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 213 | int (*domain_get_attr)(struct iommu_domain *domain, |
| 214 | enum iommu_attr attr, void *data); |
| 215 | int (*domain_set_attr)(struct iommu_domain *domain, |
| 216 | enum iommu_attr attr, void *data); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 217 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 218 | /* Request/Free a list of reserved regions for a device */ |
| 219 | void (*get_resv_regions)(struct device *dev, struct list_head *list); |
| 220 | void (*put_resv_regions)(struct device *dev, struct list_head *list); |
| 221 | void (*apply_resv_region)(struct device *dev, |
| 222 | struct iommu_domain *domain, |
| 223 | struct iommu_resv_region *region); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 224 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 225 | /* Window handling functions */ |
| 226 | int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 227 | phys_addr_t paddr, u64 size, int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 228 | void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr); |
| 229 | |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 230 | int (*of_xlate)(struct device *dev, struct of_phandle_args *args); |
Baoquan He | e01d191 | 2017-08-09 16:33:40 +0800 | [diff] [blame] | 231 | bool (*is_attach_deferred)(struct iommu_domain *domain, struct device *dev); |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 232 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 233 | unsigned long pgsize_bitmap; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 234 | }; |
| 235 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 236 | /** |
| 237 | * struct iommu_device - IOMMU core representation of one IOMMU hardware |
| 238 | * instance |
| 239 | * @list: Used by the iommu-core to keep a list of registered iommus |
| 240 | * @ops: iommu-ops for talking to this iommu |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 241 | * @dev: struct device for sysfs handling |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 242 | */ |
| 243 | struct iommu_device { |
| 244 | struct list_head list; |
| 245 | const struct iommu_ops *ops; |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 246 | struct fwnode_handle *fwnode; |
Joerg Roedel | 2926a2aa | 2017-08-14 17:19:26 +0200 | [diff] [blame] | 247 | struct device *dev; |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | int iommu_device_register(struct iommu_device *iommu); |
| 251 | void iommu_device_unregister(struct iommu_device *iommu); |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 252 | int iommu_device_sysfs_add(struct iommu_device *iommu, |
| 253 | struct device *parent, |
| 254 | const struct attribute_group **groups, |
| 255 | const char *fmt, ...) __printf(4, 5); |
| 256 | void iommu_device_sysfs_remove(struct iommu_device *iommu); |
Joerg Roedel | e3d10af | 2017-02-01 17:23:22 +0100 | [diff] [blame] | 257 | int iommu_device_link(struct iommu_device *iommu, struct device *link); |
| 258 | void iommu_device_unlink(struct iommu_device *iommu, struct device *link); |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 259 | |
| 260 | static inline void iommu_device_set_ops(struct iommu_device *iommu, |
| 261 | const struct iommu_ops *ops) |
| 262 | { |
| 263 | iommu->ops = ops; |
| 264 | } |
| 265 | |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 266 | static inline void iommu_device_set_fwnode(struct iommu_device *iommu, |
| 267 | struct fwnode_handle *fwnode) |
| 268 | { |
| 269 | iommu->fwnode = fwnode; |
| 270 | } |
| 271 | |
Joerg Roedel | 2926a2aa | 2017-08-14 17:19:26 +0200 | [diff] [blame] | 272 | static inline struct iommu_device *dev_to_iommu_device(struct device *dev) |
| 273 | { |
| 274 | return (struct iommu_device *)dev_get_drvdata(dev); |
| 275 | } |
| 276 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 277 | #define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */ |
| 278 | #define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */ |
| 279 | #define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */ |
| 280 | #define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */ |
| 281 | #define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */ |
| 282 | #define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */ |
| 283 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 284 | 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] | 285 | extern bool iommu_present(struct bus_type *bus); |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 286 | extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap); |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 287 | extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); |
Alexey Kardashevskiy | aa16bea | 2013-03-25 10:23:49 +1100 | [diff] [blame] | 288 | extern struct iommu_group *iommu_group_get_by_id(int id); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 289 | extern void iommu_domain_free(struct iommu_domain *domain); |
| 290 | extern int iommu_attach_device(struct iommu_domain *domain, |
| 291 | struct device *dev); |
| 292 | extern void iommu_detach_device(struct iommu_domain *domain, |
| 293 | struct device *dev); |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 294 | extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev); |
Robin Murphy | 6af588f | 2018-09-12 16:24:12 +0100 | [diff] [blame] | 295 | extern struct iommu_domain *iommu_get_dma_domain(struct device *dev); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 296 | extern int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 297 | phys_addr_t paddr, size_t size, int prot); |
| 298 | extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 299 | size_t size); |
| 300 | extern size_t iommu_unmap_fast(struct iommu_domain *domain, |
| 301 | unsigned long iova, size_t size); |
Christoph Hellwig | d88e61f | 2018-07-30 09:36:26 +0200 | [diff] [blame] | 302 | extern size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova, |
| 303 | struct scatterlist *sg,unsigned int nents, int prot); |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 304 | 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] | 305 | extern void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 306 | iommu_fault_handler_t handler, void *token); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 307 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 308 | extern void iommu_get_resv_regions(struct device *dev, struct list_head *list); |
| 309 | 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] | 310 | extern int iommu_request_dm_for_dev(struct device *dev); |
Eric Auger | 2b20cbb | 2017-01-19 20:57:49 +0000 | [diff] [blame] | 311 | extern struct iommu_resv_region * |
Robin Murphy | 9d3a4de | 2017-03-16 17:00:16 +0000 | [diff] [blame] | 312 | iommu_alloc_resv_region(phys_addr_t start, size_t length, int prot, |
| 313 | enum iommu_resv_type type); |
Eric Auger | 6c65fb3 | 2017-01-19 20:57:51 +0000 | [diff] [blame] | 314 | extern int iommu_get_group_resv_regions(struct iommu_group *group, |
| 315 | struct list_head *head); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 316 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 317 | extern int iommu_attach_group(struct iommu_domain *domain, |
| 318 | struct iommu_group *group); |
| 319 | extern void iommu_detach_group(struct iommu_domain *domain, |
| 320 | struct iommu_group *group); |
| 321 | extern struct iommu_group *iommu_group_alloc(void); |
| 322 | extern void *iommu_group_get_iommudata(struct iommu_group *group); |
| 323 | extern void iommu_group_set_iommudata(struct iommu_group *group, |
| 324 | void *iommu_data, |
| 325 | void (*release)(void *iommu_data)); |
| 326 | extern int iommu_group_set_name(struct iommu_group *group, const char *name); |
| 327 | extern int iommu_group_add_device(struct iommu_group *group, |
| 328 | struct device *dev); |
| 329 | extern void iommu_group_remove_device(struct device *dev); |
| 330 | extern int iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 331 | int (*fn)(struct device *, void *)); |
| 332 | extern struct iommu_group *iommu_group_get(struct device *dev); |
Robin Murphy | 13f59a7 | 2016-11-11 17:59:21 +0000 | [diff] [blame] | 333 | extern struct iommu_group *iommu_group_ref_get(struct iommu_group *group); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 334 | extern void iommu_group_put(struct iommu_group *group); |
| 335 | extern int iommu_group_register_notifier(struct iommu_group *group, |
| 336 | struct notifier_block *nb); |
| 337 | extern int iommu_group_unregister_notifier(struct iommu_group *group, |
| 338 | struct notifier_block *nb); |
| 339 | extern int iommu_group_id(struct iommu_group *group); |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 340 | extern struct iommu_group *iommu_group_get_for_dev(struct device *dev); |
Joerg Roedel | 6827ca8 | 2015-05-28 18:41:35 +0200 | [diff] [blame] | 341 | extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 342 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 343 | extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr, |
| 344 | void *data); |
| 345 | extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr, |
| 346 | void *data); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 347 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 348 | /* Window handling function prototypes */ |
| 349 | 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] | 350 | phys_addr_t offset, u64 size, |
| 351 | int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 352 | 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] | 353 | |
Joerg Roedel | 207c6e3 | 2017-04-26 15:39:28 +0200 | [diff] [blame] | 354 | extern int report_iommu_fault(struct iommu_domain *domain, struct device *dev, |
| 355 | unsigned long iova, int flags); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 356 | |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 357 | static inline void iommu_flush_tlb_all(struct iommu_domain *domain) |
| 358 | { |
| 359 | if (domain->ops->flush_iotlb_all) |
| 360 | domain->ops->flush_iotlb_all(domain); |
| 361 | } |
| 362 | |
| 363 | static inline void iommu_tlb_range_add(struct iommu_domain *domain, |
| 364 | unsigned long iova, size_t size) |
| 365 | { |
| 366 | if (domain->ops->iotlb_range_add) |
| 367 | domain->ops->iotlb_range_add(domain, iova, size); |
| 368 | } |
| 369 | |
| 370 | static inline void iommu_tlb_sync(struct iommu_domain *domain) |
| 371 | { |
| 372 | if (domain->ops->iotlb_sync) |
| 373 | domain->ops->iotlb_sync(domain); |
| 374 | } |
| 375 | |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 376 | /* PCI device grouping function */ |
| 377 | extern struct iommu_group *pci_device_group(struct device *dev); |
Joerg Roedel | 6eab556 | 2015-10-21 23:51:38 +0200 | [diff] [blame] | 378 | /* Generic device grouping function */ |
| 379 | extern struct iommu_group *generic_device_group(struct device *dev); |
Nipun Gupta | eab03e2 | 2018-09-10 19:19:18 +0530 | [diff] [blame] | 380 | /* FSL-MC device grouping function */ |
| 381 | struct iommu_group *fsl_mc_device_group(struct device *dev); |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 382 | |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 383 | /** |
| 384 | * struct iommu_fwspec - per-device IOMMU instance data |
| 385 | * @ops: ops for this device's IOMMU |
| 386 | * @iommu_fwnode: firmware handle for this device's IOMMU |
| 387 | * @iommu_priv: IOMMU driver private data for this device |
| 388 | * @num_ids: number of associated device IDs |
| 389 | * @ids: IDs which this device may present to the IOMMU |
| 390 | */ |
| 391 | struct iommu_fwspec { |
| 392 | const struct iommu_ops *ops; |
| 393 | struct fwnode_handle *iommu_fwnode; |
| 394 | void *iommu_priv; |
Jean-Philippe Brucker | 5702ee2 | 2019-04-17 19:24:42 +0100 | [diff] [blame^] | 395 | u32 flags; |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 396 | unsigned int num_ids; |
| 397 | u32 ids[1]; |
| 398 | }; |
| 399 | |
Jean-Philippe Brucker | 5702ee2 | 2019-04-17 19:24:42 +0100 | [diff] [blame^] | 400 | /* ATS is supported */ |
| 401 | #define IOMMU_FWSPEC_PCI_RC_ATS (1 << 0) |
| 402 | |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 403 | int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode, |
| 404 | const struct iommu_ops *ops); |
| 405 | void iommu_fwspec_free(struct device *dev); |
| 406 | 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] | 407 | const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode); |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 408 | |
Joerg Roedel | b4ef725 | 2018-11-28 13:35:24 +0100 | [diff] [blame] | 409 | static inline struct iommu_fwspec *dev_iommu_fwspec_get(struct device *dev) |
| 410 | { |
| 411 | return dev->iommu_fwspec; |
| 412 | } |
| 413 | |
| 414 | static inline void dev_iommu_fwspec_set(struct device *dev, |
| 415 | struct iommu_fwspec *fwspec) |
| 416 | { |
| 417 | dev->iommu_fwspec = fwspec; |
| 418 | } |
| 419 | |
Joerg Roedel | cc5aed4 | 2018-11-30 10:31:59 +0100 | [diff] [blame] | 420 | int iommu_probe_device(struct device *dev); |
| 421 | void iommu_release_device(struct device *dev); |
| 422 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 423 | #else /* CONFIG_IOMMU_API */ |
| 424 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 425 | struct iommu_ops {}; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 426 | struct iommu_group {}; |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 427 | struct iommu_fwspec {}; |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 428 | struct iommu_device {}; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 429 | |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 430 | static inline bool iommu_present(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 431 | { |
| 432 | return false; |
| 433 | } |
| 434 | |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 435 | static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) |
| 436 | { |
| 437 | return false; |
| 438 | } |
| 439 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 440 | static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 441 | { |
| 442 | return NULL; |
| 443 | } |
| 444 | |
Alexey Kardashevskiy | b62dfd2 | 2013-11-21 17:41:14 +1100 | [diff] [blame] | 445 | static inline struct iommu_group *iommu_group_get_by_id(int id) |
| 446 | { |
| 447 | return NULL; |
| 448 | } |
| 449 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 450 | static inline void iommu_domain_free(struct iommu_domain *domain) |
| 451 | { |
| 452 | } |
| 453 | |
| 454 | static inline int iommu_attach_device(struct iommu_domain *domain, |
| 455 | struct device *dev) |
| 456 | { |
| 457 | return -ENODEV; |
| 458 | } |
| 459 | |
| 460 | static inline void iommu_detach_device(struct iommu_domain *domain, |
| 461 | struct device *dev) |
| 462 | { |
| 463 | } |
| 464 | |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 465 | static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev) |
| 466 | { |
| 467 | return NULL; |
| 468 | } |
| 469 | |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 470 | static inline int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Dmitry Osipenko | ebae3e8 | 2017-07-05 20:27:53 +0300 | [diff] [blame] | 471 | phys_addr_t paddr, size_t size, int prot) |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 472 | { |
| 473 | return -ENODEV; |
| 474 | } |
| 475 | |
Suravee Suthikulpanit | c5611a8 | 2018-02-05 05:45:53 -0500 | [diff] [blame] | 476 | static inline size_t iommu_unmap(struct iommu_domain *domain, |
| 477 | unsigned long iova, size_t size) |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 478 | { |
Suravee Suthikulpanit | c5611a8 | 2018-02-05 05:45:53 -0500 | [diff] [blame] | 479 | return 0; |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 480 | } |
| 481 | |
Suravee Suthikulpanit | c5611a8 | 2018-02-05 05:45:53 -0500 | [diff] [blame] | 482 | static inline size_t iommu_unmap_fast(struct iommu_domain *domain, |
| 483 | unsigned long iova, int gfp_order) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 484 | { |
Suravee Suthikulpanit | c5611a8 | 2018-02-05 05:45:53 -0500 | [diff] [blame] | 485 | return 0; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 486 | } |
| 487 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 488 | static inline size_t iommu_map_sg(struct iommu_domain *domain, |
| 489 | unsigned long iova, struct scatterlist *sg, |
| 490 | unsigned int nents, int prot) |
| 491 | { |
Suravee Suthikulpanit | c5611a8 | 2018-02-05 05:45:53 -0500 | [diff] [blame] | 492 | return 0; |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Joerg Roedel | add02cfd | 2017-08-23 15:50:04 +0200 | [diff] [blame] | 495 | static inline void iommu_flush_tlb_all(struct iommu_domain *domain) |
| 496 | { |
| 497 | } |
| 498 | |
| 499 | static inline void iommu_tlb_range_add(struct iommu_domain *domain, |
| 500 | unsigned long iova, size_t size) |
| 501 | { |
| 502 | } |
| 503 | |
| 504 | static inline void iommu_tlb_sync(struct iommu_domain *domain) |
| 505 | { |
| 506 | } |
| 507 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 508 | static inline int iommu_domain_window_enable(struct iommu_domain *domain, |
| 509 | u32 wnd_nr, phys_addr_t paddr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 510 | u64 size, int prot) |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 511 | { |
| 512 | return -ENODEV; |
| 513 | } |
| 514 | |
| 515 | static inline void iommu_domain_window_disable(struct iommu_domain *domain, |
| 516 | u32 wnd_nr) |
| 517 | { |
| 518 | } |
| 519 | |
Varun Sethi | bb5547a | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 520 | 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] | 521 | { |
| 522 | return 0; |
| 523 | } |
| 524 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 525 | static inline void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 526 | iommu_fault_handler_t handler, void *token) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 527 | { |
| 528 | } |
| 529 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 530 | static inline void iommu_get_resv_regions(struct device *dev, |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 531 | struct list_head *list) |
| 532 | { |
| 533 | } |
| 534 | |
Eric Auger | e5b5234 | 2017-01-19 20:57:47 +0000 | [diff] [blame] | 535 | static inline void iommu_put_resv_regions(struct device *dev, |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 536 | struct list_head *list) |
| 537 | { |
| 538 | } |
| 539 | |
Eric Auger | 6c65fb3 | 2017-01-19 20:57:51 +0000 | [diff] [blame] | 540 | static inline int iommu_get_group_resv_regions(struct iommu_group *group, |
| 541 | struct list_head *head) |
| 542 | { |
| 543 | return -ENODEV; |
| 544 | } |
| 545 | |
Joerg Roedel | d290f1e | 2015-05-28 18:41:36 +0200 | [diff] [blame] | 546 | static inline int iommu_request_dm_for_dev(struct device *dev) |
| 547 | { |
| 548 | return -ENODEV; |
| 549 | } |
| 550 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 551 | static inline int iommu_attach_group(struct iommu_domain *domain, |
| 552 | struct iommu_group *group) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 553 | { |
| 554 | return -ENODEV; |
| 555 | } |
| 556 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 557 | static inline void iommu_detach_group(struct iommu_domain *domain, |
| 558 | struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 559 | { |
| 560 | } |
| 561 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 562 | static inline struct iommu_group *iommu_group_alloc(void) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 563 | { |
| 564 | return ERR_PTR(-ENODEV); |
| 565 | } |
| 566 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 567 | static inline void *iommu_group_get_iommudata(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 568 | { |
| 569 | return NULL; |
| 570 | } |
| 571 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 572 | static inline void iommu_group_set_iommudata(struct iommu_group *group, |
| 573 | void *iommu_data, |
| 574 | void (*release)(void *iommu_data)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 575 | { |
| 576 | } |
| 577 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 578 | static inline int iommu_group_set_name(struct iommu_group *group, |
| 579 | const char *name) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 580 | { |
| 581 | return -ENODEV; |
| 582 | } |
| 583 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 584 | static inline int iommu_group_add_device(struct iommu_group *group, |
| 585 | struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 586 | { |
| 587 | return -ENODEV; |
| 588 | } |
| 589 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 590 | static inline void iommu_group_remove_device(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 591 | { |
| 592 | } |
| 593 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 594 | static inline int iommu_group_for_each_dev(struct iommu_group *group, |
| 595 | void *data, |
| 596 | int (*fn)(struct device *, void *)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 597 | { |
| 598 | return -ENODEV; |
| 599 | } |
| 600 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 601 | static inline struct iommu_group *iommu_group_get(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 602 | { |
| 603 | return NULL; |
| 604 | } |
| 605 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 606 | static inline void iommu_group_put(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 607 | { |
| 608 | } |
| 609 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 610 | static inline int iommu_group_register_notifier(struct iommu_group *group, |
| 611 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 612 | { |
| 613 | return -ENODEV; |
| 614 | } |
| 615 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 616 | static inline int iommu_group_unregister_notifier(struct iommu_group *group, |
| 617 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 618 | { |
| 619 | return 0; |
| 620 | } |
| 621 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 622 | static inline int iommu_group_id(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 623 | { |
| 624 | return -ENODEV; |
| 625 | } |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 626 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 627 | static inline int iommu_domain_get_attr(struct iommu_domain *domain, |
| 628 | enum iommu_attr attr, void *data) |
| 629 | { |
| 630 | return -EINVAL; |
| 631 | } |
| 632 | |
| 633 | static inline int iommu_domain_set_attr(struct iommu_domain *domain, |
| 634 | enum iommu_attr attr, void *data) |
| 635 | { |
| 636 | return -EINVAL; |
| 637 | } |
| 638 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 639 | static inline int iommu_device_register(struct iommu_device *iommu) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 640 | { |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 641 | return -ENODEV; |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 642 | } |
| 643 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 644 | static inline void iommu_device_set_ops(struct iommu_device *iommu, |
| 645 | const struct iommu_ops *ops) |
| 646 | { |
| 647 | } |
| 648 | |
Joerg Roedel | c73e1ac | 2017-02-07 18:18:46 +0100 | [diff] [blame] | 649 | static inline void iommu_device_set_fwnode(struct iommu_device *iommu, |
| 650 | struct fwnode_handle *fwnode) |
| 651 | { |
| 652 | } |
| 653 | |
Joerg Roedel | 2926a2aa | 2017-08-14 17:19:26 +0200 | [diff] [blame] | 654 | static inline struct iommu_device *dev_to_iommu_device(struct device *dev) |
| 655 | { |
| 656 | return NULL; |
| 657 | } |
| 658 | |
Joerg Roedel | b0119e8 | 2017-02-01 13:23:08 +0100 | [diff] [blame] | 659 | static inline void iommu_device_unregister(struct iommu_device *iommu) |
| 660 | { |
| 661 | } |
| 662 | |
Joerg Roedel | 39ab955 | 2017-02-01 16:56:46 +0100 | [diff] [blame] | 663 | static inline int iommu_device_sysfs_add(struct iommu_device *iommu, |
| 664 | struct device *parent, |
| 665 | const struct attribute_group **groups, |
| 666 | const char *fmt, ...) |
| 667 | { |
| 668 | return -ENODEV; |
| 669 | } |
| 670 | |
| 671 | static inline void iommu_device_sysfs_remove(struct iommu_device *iommu) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 672 | { |
| 673 | } |
| 674 | |
Alex Williamson | e09f8ea | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 675 | static inline int iommu_device_link(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 676 | { |
| 677 | return -EINVAL; |
| 678 | } |
| 679 | |
Alex Williamson | e09f8ea | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 680 | static inline void iommu_device_unlink(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 681 | { |
| 682 | } |
| 683 | |
Robin Murphy | 57f98d2 | 2016-09-13 10:54:14 +0100 | [diff] [blame] | 684 | static inline int iommu_fwspec_init(struct device *dev, |
| 685 | struct fwnode_handle *iommu_fwnode, |
| 686 | const struct iommu_ops *ops) |
| 687 | { |
| 688 | return -ENODEV; |
| 689 | } |
| 690 | |
| 691 | static inline void iommu_fwspec_free(struct device *dev) |
| 692 | { |
| 693 | } |
| 694 | |
| 695 | static inline int iommu_fwspec_add_ids(struct device *dev, u32 *ids, |
| 696 | int num_ids) |
| 697 | { |
| 698 | return -ENODEV; |
| 699 | } |
| 700 | |
Lorenzo Pieralisi | e4f10ff | 2016-11-21 10:01:36 +0000 | [diff] [blame] | 701 | static inline |
Joerg Roedel | 534766d | 2017-01-31 16:58:42 +0100 | [diff] [blame] | 702 | const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode) |
Lorenzo Pieralisi | e4f10ff | 2016-11-21 10:01:36 +0000 | [diff] [blame] | 703 | { |
| 704 | return NULL; |
| 705 | } |
| 706 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 707 | #endif /* CONFIG_IOMMU_API */ |
| 708 | |
Gary R Hook | bad614b | 2018-06-12 16:41:21 -0500 | [diff] [blame] | 709 | #ifdef CONFIG_IOMMU_DEBUGFS |
| 710 | extern struct dentry *iommu_debugfs_dir; |
| 711 | void iommu_debugfs_setup(void); |
| 712 | #else |
| 713 | static inline void iommu_debugfs_setup(void) {} |
| 714 | #endif |
| 715 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 716 | #endif /* __LINUX_IOMMU_H */ |