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 | e038dfd | 2015-04-01 19:03:31 -0700 | [diff] [blame] | 34 | #define IOMMU_PRIV (1 << 5) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 35 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 36 | struct iommu_ops; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 37 | struct iommu_group; |
Joerg Roedel | ff21776 | 2011-08-26 16:48:26 +0200 | [diff] [blame] | 38 | struct bus_type; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 39 | struct device; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 40 | struct iommu_domain; |
Joerg Roedel | ba1eabfa | 2012-08-03 15:55:41 +0200 | [diff] [blame] | 41 | struct notifier_block; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 42 | |
| 43 | /* iommu fault flags */ |
Sushmita Susheelendra | 5e36b91 | 2015-06-02 15:46:24 -0600 | [diff] [blame] | 44 | #define IOMMU_FAULT_READ (1 << 0) |
| 45 | #define IOMMU_FAULT_WRITE (1 << 1) |
| 46 | #define IOMMU_FAULT_TRANSLATION (1 << 2) |
| 47 | #define IOMMU_FAULT_PERMISSION (1 << 3) |
Mitchel Humpherys | 0cc54a2 | 2015-08-19 10:57:55 -0700 | [diff] [blame] | 48 | #define IOMMU_FAULT_EXTERNAL (1 << 4) |
| 49 | #define IOMMU_FAULT_TRANSACTION_STALLED (1 << 5) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 50 | |
| 51 | typedef int (*iommu_fault_handler_t)(struct iommu_domain *, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 52 | struct device *, unsigned long, int, void *); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 53 | |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 54 | struct iommu_domain_geometry { |
| 55 | dma_addr_t aperture_start; /* First address that can be mapped */ |
| 56 | dma_addr_t aperture_end; /* Last address that can be mapped */ |
| 57 | bool force_aperture; /* DMA only allowed in mappable range? */ |
| 58 | }; |
| 59 | |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 60 | /* Domain feature flags */ |
| 61 | #define __IOMMU_DOMAIN_PAGING (1U << 0) /* Support for iommu_map/unmap */ |
| 62 | #define __IOMMU_DOMAIN_DMA_API (1U << 1) /* Domain for use in DMA-API |
| 63 | implementation */ |
| 64 | #define __IOMMU_DOMAIN_PT (1U << 2) /* Domain is identity mapped */ |
| 65 | |
| 66 | /* |
| 67 | * This are the possible domain-types |
| 68 | * |
| 69 | * IOMMU_DOMAIN_BLOCKED - All DMA is blocked, can be used to isolate |
| 70 | * devices |
| 71 | * IOMMU_DOMAIN_IDENTITY - DMA addresses are system physical addresses |
| 72 | * IOMMU_DOMAIN_UNMANAGED - DMA mappings managed by IOMMU-API user, used |
| 73 | * for VMs |
| 74 | * IOMMU_DOMAIN_DMA - Internally used for DMA-API implementations. |
| 75 | * This flag allows IOMMU drivers to implement |
| 76 | * certain optimizations for these domains |
| 77 | */ |
| 78 | #define IOMMU_DOMAIN_BLOCKED (0U) |
| 79 | #define IOMMU_DOMAIN_IDENTITY (__IOMMU_DOMAIN_PT) |
| 80 | #define IOMMU_DOMAIN_UNMANAGED (__IOMMU_DOMAIN_PAGING) |
| 81 | #define IOMMU_DOMAIN_DMA (__IOMMU_DOMAIN_PAGING | \ |
| 82 | __IOMMU_DOMAIN_DMA_API) |
| 83 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 84 | struct iommu_domain { |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 85 | unsigned type; |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 86 | const struct iommu_ops *ops; |
Robin Murphy | d16e0fa | 2016-04-07 18:42:06 +0100 | [diff] [blame] | 87 | unsigned long pgsize_bitmap; /* Bitmap of page sizes in use */ |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 88 | iommu_fault_handler_t handler; |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 89 | void *handler_token; |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 90 | struct iommu_domain_geometry geometry; |
Robin Murphy | 0db2e5d | 2015-10-01 20:13:58 +0100 | [diff] [blame] | 91 | void *iova_cookie; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
Joerg Roedel | 1aed074 | 2014-09-03 18:34:04 +0200 | [diff] [blame] | 94 | enum iommu_cap { |
| 95 | IOMMU_CAP_CACHE_COHERENCY, /* IOMMU can enforce cache coherent DMA |
| 96 | transactions */ |
| 97 | IOMMU_CAP_INTR_REMAP, /* IOMMU supports interrupt isolation */ |
Antonios Motakis | c498664 | 2014-10-13 14:06:17 +0100 | [diff] [blame] | 98 | IOMMU_CAP_NOEXEC, /* IOMMU_NOEXEC flag */ |
Joerg Roedel | 1aed074 | 2014-09-03 18:34:04 +0200 | [diff] [blame] | 99 | }; |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 100 | |
Varun Sethi | 7cabf49 | 2013-07-15 10:20:56 +0530 | [diff] [blame] | 101 | /* |
| 102 | * Following constraints are specifc to FSL_PAMUV1: |
| 103 | * -aperture must be power of 2, and naturally aligned |
| 104 | * -number of windows must be power of 2, and address space size |
| 105 | * of each window is determined by aperture size / # of windows |
| 106 | * -the actual size of the mapped region of a window must be power |
| 107 | * of 2 starting with 4KB and physical address must be naturally |
| 108 | * aligned. |
| 109 | * DOMAIN_ATTR_FSL_PAMUV1 corresponds to the above mentioned contraints. |
| 110 | * The caller can invoke iommu_domain_get_attr to check if the underlying |
| 111 | * iommu implementation supports these constraints. |
| 112 | */ |
| 113 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 114 | enum iommu_attr { |
Joerg Roedel | 0ff64f8 | 2012-01-26 19:40:53 +0100 | [diff] [blame] | 115 | DOMAIN_ATTR_GEOMETRY, |
Joerg Roedel | d2e1216 | 2013-01-29 13:49:04 +0100 | [diff] [blame] | 116 | DOMAIN_ATTR_PAGING, |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 117 | DOMAIN_ATTR_WINDOWS, |
Varun Sethi | 7cabf49 | 2013-07-15 10:20:56 +0530 | [diff] [blame] | 118 | DOMAIN_ATTR_FSL_PAMU_STASH, |
| 119 | DOMAIN_ATTR_FSL_PAMU_ENABLE, |
| 120 | DOMAIN_ATTR_FSL_PAMUV1, |
Will Deacon | c02607a | 2014-09-29 10:05:06 -0600 | [diff] [blame] | 121 | DOMAIN_ATTR_NESTING, /* two stages of translation */ |
Mitchel Humpherys | 19f19d5 | 2014-11-24 12:31:02 -0800 | [diff] [blame] | 122 | DOMAIN_ATTR_PT_BASE_ADDR, |
Jeremy Gebben | e352bb0 | 2015-06-16 10:54:01 -0600 | [diff] [blame] | 123 | DOMAIN_ATTR_CONTEXT_BANK, |
Jeremy Gebben | 1b34ee1 | 2015-07-10 16:43:23 -0600 | [diff] [blame] | 124 | DOMAIN_ATTR_DYNAMIC, |
Jeremy Gebben | e70da58 | 2015-07-10 16:43:22 -0600 | [diff] [blame] | 125 | DOMAIN_ATTR_TTBR0, |
| 126 | DOMAIN_ATTR_CONTEXTIDR, |
| 127 | DOMAIN_ATTR_PROCID, |
Mitchel Humpherys | e78b0a5 | 2015-09-25 17:26:31 -0700 | [diff] [blame] | 128 | DOMAIN_ATTR_NON_FATAL_FAULTS, |
Patrick Daly | bb82f96 | 2016-03-10 15:25:51 -0800 | [diff] [blame] | 129 | DOMAIN_ATTR_S1_BYPASS, |
Joerg Roedel | a8b8a88 | 2013-01-29 14:36:31 +0100 | [diff] [blame] | 130 | DOMAIN_ATTR_MAX, |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 131 | }; |
| 132 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 133 | /** |
| 134 | * struct iommu_dm_region - descriptor for a direct mapped memory region |
| 135 | * @list: Linked list pointers |
| 136 | * @start: System physical start address of the region |
| 137 | * @length: Length of the region in bytes |
| 138 | * @prot: IOMMU Protection flags (READ/WRITE/...) |
| 139 | */ |
| 140 | struct iommu_dm_region { |
| 141 | struct list_head list; |
| 142 | phys_addr_t start; |
| 143 | size_t length; |
| 144 | int prot; |
| 145 | }; |
| 146 | |
Mitchel Humpherys | c75ae49 | 2015-07-15 18:27:36 -0700 | [diff] [blame^] | 147 | extern struct dentry *iommu_debugfs_top; |
| 148 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 149 | #ifdef CONFIG_IOMMU_API |
| 150 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 151 | /** |
| 152 | * struct iommu_ops - iommu ops and capabilities |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 153 | * @capable: check capability |
| 154 | * @domain_alloc: allocate iommu domain |
| 155 | * @domain_free: free iommu domain |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 156 | * @attach_dev: attach device to an iommu domain |
| 157 | * @detach_dev: detach device from an iommu domain |
| 158 | * @map: map a physically contiguous memory region to an iommu domain |
| 159 | * @unmap: unmap a physically contiguous memory region from an iommu domain |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 160 | * @map_sg: map a scatter-gather list of physically contiguous memory chunks |
| 161 | * to an iommu domain |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 162 | * @iova_to_phys: translate iova to physical address |
Mitchel Humpherys | 36b8c32 | 2015-07-06 15:24:22 -0700 | [diff] [blame] | 163 | * @iova_to_phys_hard: translate iova to physical address using IOMMU hardware |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 164 | * @add_device: add device to iommu grouping |
| 165 | * @remove_device: remove device from iommu grouping |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 166 | * @device_group: find iommu group for a particular device |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 167 | * @domain_get_attr: Query domain attributes |
| 168 | * @domain_set_attr: Change domain attributes |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 169 | * @get_dm_regions: Request list of direct mapping requirements for a device |
| 170 | * @put_dm_regions: Free list of direct mapping requirements for a device |
Joerg Roedel | 33b21a6 | 2016-07-05 13:07:53 +0200 | [diff] [blame] | 171 | * @apply_dm_region: Temporary helper call-back for iova reserved ranges |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 172 | * @domain_window_enable: Configure and enable a particular window for a domain |
| 173 | * @domain_window_disable: Disable a particular window for a domain |
| 174 | * @domain_set_windows: Set the number of windows for a domain |
| 175 | * @domain_get_windows: Return the number of windows for a domain |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 176 | * @of_xlate: add OF master IDs to iommu grouping |
Robin Murphy | d16e0fa | 2016-04-07 18:42:06 +0100 | [diff] [blame] | 177 | * @pgsize_bitmap: bitmap of all possible supported page sizes |
Mitchel Humpherys | 8488df2 | 2015-07-09 16:59:02 -0700 | [diff] [blame] | 178 | * @trigger_fault: trigger a fault on the device attached to an iommu domain |
Mitchel Humpherys | 3ede5d9 | 2015-08-21 14:06:14 -0700 | [diff] [blame] | 179 | * @reg_read: read an IOMMU register |
| 180 | * @reg_write: write an IOMMU register |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 181 | */ |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 182 | struct iommu_ops { |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 183 | bool (*capable)(enum iommu_cap); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 184 | |
| 185 | /* Domain allocation and freeing by the iommu driver */ |
Joerg Roedel | 8539c7c | 2015-03-26 13:43:05 +0100 | [diff] [blame] | 186 | struct iommu_domain *(*domain_alloc)(unsigned iommu_domain_type); |
Joerg Roedel | 938c470 | 2015-03-26 13:43:04 +0100 | [diff] [blame] | 187 | void (*domain_free)(struct iommu_domain *); |
| 188 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 189 | int (*attach_dev)(struct iommu_domain *domain, struct device *dev); |
| 190 | void (*detach_dev)(struct iommu_domain *domain, struct device *dev); |
Joerg Roedel | 6765178 | 2010-01-21 16:32:27 +0100 | [diff] [blame] | 191 | int (*map)(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 5009065 | 2011-11-10 11:32:25 +0200 | [diff] [blame] | 192 | phys_addr_t paddr, size_t size, int prot); |
| 193 | size_t (*unmap)(struct iommu_domain *domain, unsigned long iova, |
| 194 | size_t size); |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 195 | size_t (*map_sg)(struct iommu_domain *domain, unsigned long iova, |
| 196 | struct scatterlist *sg, unsigned int nents, int prot); |
Varun Sethi | bb5547ac | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 197 | phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, dma_addr_t iova); |
Mitchel Humpherys | 36b8c32 | 2015-07-06 15:24:22 -0700 | [diff] [blame] | 198 | phys_addr_t (*iova_to_phys_hard)(struct iommu_domain *domain, |
| 199 | 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 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 208 | /* Request/Free a list of direct mapping requirements for a device */ |
| 209 | void (*get_dm_regions)(struct device *dev, struct list_head *list); |
| 210 | void (*put_dm_regions)(struct device *dev, struct list_head *list); |
Joerg Roedel | 33b21a6 | 2016-07-05 13:07:53 +0200 | [diff] [blame] | 211 | void (*apply_dm_region)(struct device *dev, struct iommu_domain *domain, |
| 212 | struct iommu_dm_region *region); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 213 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 214 | /* Window handling functions */ |
| 215 | int (*domain_window_enable)(struct iommu_domain *domain, u32 wnd_nr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 216 | phys_addr_t paddr, u64 size, int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 217 | void (*domain_window_disable)(struct iommu_domain *domain, u32 wnd_nr); |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 218 | /* Set the number of windows per domain */ |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 219 | int (*domain_set_windows)(struct iommu_domain *domain, u32 w_count); |
Magnus Damm | 0d9bacb | 2016-01-19 14:28:48 +0900 | [diff] [blame] | 220 | /* Get the number of windows per domain */ |
Joerg Roedel | 6935671 | 2013-02-04 14:00:01 +0100 | [diff] [blame] | 221 | u32 (*domain_get_windows)(struct iommu_domain *domain); |
Mitchel Humpherys | 8488df2 | 2015-07-09 16:59:02 -0700 | [diff] [blame] | 222 | void (*trigger_fault)(struct iommu_domain *domain, unsigned long flags); |
Mitchel Humpherys | 3ede5d9 | 2015-08-21 14:06:14 -0700 | [diff] [blame] | 223 | unsigned long (*reg_read)(struct iommu_domain *domain, |
| 224 | unsigned long offset); |
| 225 | void (*reg_write)(struct iommu_domain *domain, unsigned long val, |
| 226 | unsigned long offset); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 227 | |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 228 | int (*of_xlate)(struct device *dev, struct of_phandle_args *args); |
Will Deacon | d0f60a4 | 2014-08-27 16:15:59 +0100 | [diff] [blame] | 229 | |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 230 | unsigned long pgsize_bitmap; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 231 | }; |
| 232 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 233 | #define IOMMU_GROUP_NOTIFY_ADD_DEVICE 1 /* Device added */ |
| 234 | #define IOMMU_GROUP_NOTIFY_DEL_DEVICE 2 /* Pre Device removed */ |
| 235 | #define IOMMU_GROUP_NOTIFY_BIND_DRIVER 3 /* Pre Driver bind */ |
| 236 | #define IOMMU_GROUP_NOTIFY_BOUND_DRIVER 4 /* Post Driver bind */ |
| 237 | #define IOMMU_GROUP_NOTIFY_UNBIND_DRIVER 5 /* Pre Driver unbind */ |
| 238 | #define IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER 6 /* Post Driver unbind */ |
| 239 | |
Thierry Reding | b22f643 | 2014-06-27 09:03:12 +0200 | [diff] [blame] | 240 | 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] | 241 | extern bool iommu_present(struct bus_type *bus); |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 242 | extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap); |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 243 | extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); |
Alexey Kardashevskiy | aa16bea | 2013-03-25 10:23:49 +1100 | [diff] [blame] | 244 | extern struct iommu_group *iommu_group_get_by_id(int id); |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 245 | extern void iommu_domain_free(struct iommu_domain *domain); |
| 246 | extern int iommu_attach_device(struct iommu_domain *domain, |
| 247 | struct device *dev); |
| 248 | extern void iommu_detach_device(struct iommu_domain *domain, |
| 249 | struct device *dev); |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 250 | extern struct iommu_domain *iommu_get_domain_for_dev(struct device *dev); |
Mitchel Humpherys | fad2592 | 2015-05-01 17:13:21 -0700 | [diff] [blame] | 251 | extern size_t iommu_pgsize(unsigned long pgsize_bitmap, |
| 252 | unsigned long addr_merge, size_t size); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 253 | extern int iommu_map(struct iommu_domain *domain, unsigned long iova, |
Ohad Ben-Cohen | 7d3002c | 2011-11-10 11:32:26 +0200 | [diff] [blame] | 254 | phys_addr_t paddr, size_t size, int prot); |
| 255 | extern size_t iommu_unmap(struct iommu_domain *domain, unsigned long iova, |
| 256 | size_t size); |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 257 | extern size_t default_iommu_map_sg(struct iommu_domain *domain, unsigned long iova, |
| 258 | struct scatterlist *sg,unsigned int nents, |
| 259 | int prot); |
Varun Sethi | bb5547ac | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 260 | extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova); |
Mitchel Humpherys | 36b8c32 | 2015-07-06 15:24:22 -0700 | [diff] [blame] | 261 | extern phys_addr_t iommu_iova_to_phys_hard(struct iommu_domain *domain, |
| 262 | dma_addr_t iova); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 263 | extern void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 264 | iommu_fault_handler_t handler, void *token); |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 265 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 266 | extern void iommu_get_dm_regions(struct device *dev, struct list_head *list); |
| 267 | extern void iommu_put_dm_regions(struct device *dev, struct list_head *list); |
Joerg Roedel | d290f1e | 2015-05-28 18:41:36 +0200 | [diff] [blame] | 268 | extern int iommu_request_dm_for_dev(struct device *dev); |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 269 | |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 270 | extern int iommu_attach_group(struct iommu_domain *domain, |
| 271 | struct iommu_group *group); |
| 272 | extern void iommu_detach_group(struct iommu_domain *domain, |
| 273 | struct iommu_group *group); |
| 274 | extern struct iommu_group *iommu_group_alloc(void); |
| 275 | extern void *iommu_group_get_iommudata(struct iommu_group *group); |
| 276 | extern void iommu_group_set_iommudata(struct iommu_group *group, |
| 277 | void *iommu_data, |
| 278 | void (*release)(void *iommu_data)); |
| 279 | extern int iommu_group_set_name(struct iommu_group *group, const char *name); |
| 280 | extern int iommu_group_add_device(struct iommu_group *group, |
| 281 | struct device *dev); |
| 282 | extern void iommu_group_remove_device(struct device *dev); |
| 283 | extern int iommu_group_for_each_dev(struct iommu_group *group, void *data, |
| 284 | int (*fn)(struct device *, void *)); |
| 285 | extern struct iommu_group *iommu_group_get(struct device *dev); |
| 286 | extern void iommu_group_put(struct iommu_group *group); |
| 287 | extern int iommu_group_register_notifier(struct iommu_group *group, |
| 288 | struct notifier_block *nb); |
| 289 | extern int iommu_group_unregister_notifier(struct iommu_group *group, |
| 290 | struct notifier_block *nb); |
| 291 | extern int iommu_group_id(struct iommu_group *group); |
Alex Williamson | 104a1c1 | 2014-07-03 09:51:18 -0600 | [diff] [blame] | 292 | extern struct iommu_group *iommu_group_get_for_dev(struct device *dev); |
Joerg Roedel | 6827ca8 | 2015-05-28 18:41:35 +0200 | [diff] [blame] | 293 | extern struct iommu_domain *iommu_group_default_domain(struct iommu_group *); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 294 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 295 | extern int iommu_domain_get_attr(struct iommu_domain *domain, enum iommu_attr, |
| 296 | void *data); |
| 297 | extern int iommu_domain_set_attr(struct iommu_domain *domain, enum iommu_attr, |
| 298 | void *data); |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 299 | struct device *iommu_device_create(struct device *parent, void *drvdata, |
| 300 | const struct attribute_group **groups, |
Nicolas Iooss | 8db1486 | 2015-07-17 16:23:42 -0700 | [diff] [blame] | 301 | const char *fmt, ...) __printf(4, 5); |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 302 | void iommu_device_destroy(struct device *dev); |
| 303 | int iommu_device_link(struct device *dev, struct device *link); |
| 304 | void iommu_device_unlink(struct device *dev, struct device *link); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 305 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 306 | /* Window handling function prototypes */ |
| 307 | 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] | 308 | phys_addr_t offset, u64 size, |
| 309 | int prot); |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 310 | 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] | 311 | /** |
| 312 | * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework |
| 313 | * @domain: the iommu domain where the fault has happened |
| 314 | * @dev: the device where the fault has happened |
| 315 | * @iova: the faulting address |
| 316 | * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...) |
| 317 | * |
| 318 | * This function should be called by the low-level IOMMU implementations |
| 319 | * whenever IOMMU faults happen, to allow high-level users, that are |
| 320 | * interested in such events, to know about them. |
| 321 | * |
| 322 | * This event may be useful for several possible use cases: |
| 323 | * - mere logging of the event |
| 324 | * - dynamic TLB/PTE loading |
| 325 | * - if restarting of the faulting device is required |
| 326 | * |
| 327 | * Returns 0 on success and an appropriate error code otherwise (if dynamic |
| 328 | * PTE/TLB loading will one day be supported, implementations will be able |
| 329 | * 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] | 330 | * |
| 331 | * Specifically, -ENOSYS is returned if a fault handler isn't installed |
| 332 | * (though fault handlers can also return -ENOSYS, in case they want to |
| 333 | * elicit the default behavior of the IOMMU drivers). |
Sushmita Susheelendra | 5e36b91 | 2015-06-02 15:46:24 -0600 | [diff] [blame] | 334 | |
| 335 | * Client fault handler returns -EBUSY to signal to the IOMMU driver |
| 336 | * that the client will take responsibility for any further fault |
| 337 | * handling, including clearing fault status registers or retrying |
| 338 | * the faulting transaction. |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 339 | */ |
| 340 | static inline int report_iommu_fault(struct iommu_domain *domain, |
| 341 | struct device *dev, unsigned long iova, int flags) |
| 342 | { |
Ohad Ben-Cohen | 0ed6d2d | 2011-09-27 07:36:40 -0400 | [diff] [blame] | 343 | int ret = -ENOSYS; |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 344 | |
| 345 | /* |
| 346 | * if upper layers showed interest and installed a fault handler, |
| 347 | * invoke it. |
| 348 | */ |
| 349 | if (domain->handler) |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 350 | ret = domain->handler(domain, dev, iova, flags, |
| 351 | domain->handler_token); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 352 | |
Shuah Khan | 56fa484 | 2013-09-24 15:21:20 -0600 | [diff] [blame] | 353 | trace_io_page_fault(dev, iova, flags); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 354 | return ret; |
| 355 | } |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 356 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 357 | static inline size_t iommu_map_sg(struct iommu_domain *domain, |
| 358 | unsigned long iova, struct scatterlist *sg, |
| 359 | unsigned int nents, int prot) |
| 360 | { |
| 361 | return domain->ops->map_sg(domain, iova, sg, nents, prot); |
| 362 | } |
| 363 | |
Mitchel Humpherys | 8488df2 | 2015-07-09 16:59:02 -0700 | [diff] [blame] | 364 | extern void iommu_trigger_fault(struct iommu_domain *domain, |
| 365 | unsigned long flags); |
| 366 | |
Mitchel Humpherys | 3ede5d9 | 2015-08-21 14:06:14 -0700 | [diff] [blame] | 367 | extern unsigned long iommu_reg_read(struct iommu_domain *domain, |
| 368 | unsigned long offset); |
| 369 | extern void iommu_reg_write(struct iommu_domain *domain, unsigned long offset, |
| 370 | unsigned long val); |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 371 | /* PCI device grouping function */ |
| 372 | extern struct iommu_group *pci_device_group(struct device *dev); |
Joerg Roedel | 6eab556 | 2015-10-21 23:51:38 +0200 | [diff] [blame] | 373 | /* Generic device grouping function */ |
| 374 | extern struct iommu_group *generic_device_group(struct device *dev); |
Joerg Roedel | 5e62292 | 2015-10-21 23:51:37 +0200 | [diff] [blame] | 375 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 376 | #else /* CONFIG_IOMMU_API */ |
| 377 | |
Joerg Roedel | 39d4ebb | 2011-09-06 16:48:40 +0200 | [diff] [blame] | 378 | struct iommu_ops {}; |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 379 | struct iommu_group {}; |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 380 | |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 381 | static inline bool iommu_present(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 382 | { |
| 383 | return false; |
| 384 | } |
| 385 | |
Joerg Roedel | 3c0e0ca | 2014-09-03 18:47:25 +0200 | [diff] [blame] | 386 | static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) |
| 387 | { |
| 388 | return false; |
| 389 | } |
| 390 | |
Joerg Roedel | 905d66c | 2011-09-06 16:03:26 +0200 | [diff] [blame] | 391 | static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 392 | { |
| 393 | return NULL; |
| 394 | } |
| 395 | |
Alexey Kardashevskiy | b62dfd2 | 2013-11-21 17:41:14 +1100 | [diff] [blame] | 396 | static inline struct iommu_group *iommu_group_get_by_id(int id) |
| 397 | { |
| 398 | return NULL; |
| 399 | } |
| 400 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 401 | static inline void iommu_domain_free(struct iommu_domain *domain) |
| 402 | { |
| 403 | } |
| 404 | |
| 405 | static inline int iommu_attach_device(struct iommu_domain *domain, |
| 406 | struct device *dev) |
| 407 | { |
| 408 | return -ENODEV; |
| 409 | } |
| 410 | |
| 411 | static inline void iommu_detach_device(struct iommu_domain *domain, |
| 412 | struct device *dev) |
| 413 | { |
| 414 | } |
| 415 | |
Joerg Roedel | 2c1296d | 2015-05-28 18:41:32 +0200 | [diff] [blame] | 416 | static inline struct iommu_domain *iommu_get_domain_for_dev(struct device *dev) |
| 417 | { |
| 418 | return NULL; |
| 419 | } |
| 420 | |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 421 | static inline int iommu_map(struct iommu_domain *domain, unsigned long iova, |
| 422 | phys_addr_t paddr, int gfp_order, int prot) |
| 423 | { |
| 424 | return -ENODEV; |
| 425 | } |
| 426 | |
| 427 | static inline int iommu_unmap(struct iommu_domain *domain, unsigned long iova, |
| 428 | int gfp_order) |
| 429 | { |
| 430 | return -ENODEV; |
| 431 | } |
| 432 | |
Olav Haugan | 315786e | 2014-10-25 09:55:16 -0700 | [diff] [blame] | 433 | static inline size_t iommu_map_sg(struct iommu_domain *domain, |
| 434 | unsigned long iova, struct scatterlist *sg, |
| 435 | unsigned int nents, int prot) |
| 436 | { |
| 437 | return -ENODEV; |
| 438 | } |
| 439 | |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 440 | static inline int iommu_domain_window_enable(struct iommu_domain *domain, |
| 441 | u32 wnd_nr, phys_addr_t paddr, |
Varun Sethi | 80f97f0 | 2013-03-29 01:24:00 +0530 | [diff] [blame] | 442 | u64 size, int prot) |
Joerg Roedel | d7787d5 | 2013-01-29 14:26:20 +0100 | [diff] [blame] | 443 | { |
| 444 | return -ENODEV; |
| 445 | } |
| 446 | |
| 447 | static inline void iommu_domain_window_disable(struct iommu_domain *domain, |
| 448 | u32 wnd_nr) |
| 449 | { |
| 450 | } |
| 451 | |
Varun Sethi | bb5547ac | 2013-03-29 01:23:58 +0530 | [diff] [blame] | 452 | 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] | 453 | { |
| 454 | return 0; |
| 455 | } |
| 456 | |
Mitchel Humpherys | 36b8c32 | 2015-07-06 15:24:22 -0700 | [diff] [blame] | 457 | static inline phys_addr_t iommu_iova_to_phys_hard(struct iommu_domain *domain, |
| 458 | dma_addr_t iova) |
| 459 | { |
| 460 | return 0; |
| 461 | } |
| 462 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 463 | static inline void iommu_set_fault_handler(struct iommu_domain *domain, |
Ohad Ben-Cohen | 77ca233 | 2012-05-21 20:20:05 +0300 | [diff] [blame] | 464 | iommu_fault_handler_t handler, void *token) |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 465 | { |
| 466 | } |
| 467 | |
Joerg Roedel | a1015c2 | 2015-05-28 18:41:33 +0200 | [diff] [blame] | 468 | static inline void iommu_get_dm_regions(struct device *dev, |
| 469 | struct list_head *list) |
| 470 | { |
| 471 | } |
| 472 | |
| 473 | static inline void iommu_put_dm_regions(struct device *dev, |
| 474 | struct list_head *list) |
| 475 | { |
| 476 | } |
| 477 | |
Joerg Roedel | d290f1e | 2015-05-28 18:41:36 +0200 | [diff] [blame] | 478 | static inline int iommu_request_dm_for_dev(struct device *dev) |
| 479 | { |
| 480 | return -ENODEV; |
| 481 | } |
| 482 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 483 | static inline int iommu_attach_group(struct iommu_domain *domain, |
| 484 | struct iommu_group *group) |
Alex Williamson | 1460432 | 2011-10-21 15:56:05 -0400 | [diff] [blame] | 485 | { |
| 486 | return -ENODEV; |
| 487 | } |
| 488 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 489 | static inline void iommu_detach_group(struct iommu_domain *domain, |
| 490 | struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 491 | { |
| 492 | } |
| 493 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 494 | static inline struct iommu_group *iommu_group_alloc(void) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 495 | { |
| 496 | return ERR_PTR(-ENODEV); |
| 497 | } |
| 498 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 499 | static inline void *iommu_group_get_iommudata(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 500 | { |
| 501 | return NULL; |
| 502 | } |
| 503 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 504 | static inline void iommu_group_set_iommudata(struct iommu_group *group, |
| 505 | void *iommu_data, |
| 506 | void (*release)(void *iommu_data)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 507 | { |
| 508 | } |
| 509 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 510 | static inline int iommu_group_set_name(struct iommu_group *group, |
| 511 | const char *name) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 512 | { |
| 513 | return -ENODEV; |
| 514 | } |
| 515 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 516 | static inline int iommu_group_add_device(struct iommu_group *group, |
| 517 | struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 518 | { |
| 519 | return -ENODEV; |
| 520 | } |
| 521 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 522 | static inline void iommu_group_remove_device(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 523 | { |
| 524 | } |
| 525 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 526 | static inline int iommu_group_for_each_dev(struct iommu_group *group, |
| 527 | void *data, |
| 528 | int (*fn)(struct device *, void *)) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 529 | { |
| 530 | return -ENODEV; |
| 531 | } |
| 532 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 533 | static inline struct iommu_group *iommu_group_get(struct device *dev) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 534 | { |
| 535 | return NULL; |
| 536 | } |
| 537 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 538 | static inline void iommu_group_put(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 539 | { |
| 540 | } |
| 541 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 542 | static inline int iommu_group_register_notifier(struct iommu_group *group, |
| 543 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 544 | { |
| 545 | return -ENODEV; |
| 546 | } |
| 547 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 548 | static inline int iommu_group_unregister_notifier(struct iommu_group *group, |
| 549 | struct notifier_block *nb) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 550 | { |
| 551 | return 0; |
| 552 | } |
| 553 | |
Alex Williamson | bef83de | 2012-09-24 21:23:25 -0600 | [diff] [blame] | 554 | static inline int iommu_group_id(struct iommu_group *group) |
Alex Williamson | d72e31c | 2012-05-30 14:18:53 -0600 | [diff] [blame] | 555 | { |
| 556 | return -ENODEV; |
| 557 | } |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 558 | |
Joerg Roedel | 0cd76dd | 2012-01-26 19:40:52 +0100 | [diff] [blame] | 559 | static inline int iommu_domain_get_attr(struct iommu_domain *domain, |
| 560 | enum iommu_attr attr, void *data) |
| 561 | { |
| 562 | return -EINVAL; |
| 563 | } |
| 564 | |
| 565 | static inline int iommu_domain_set_attr(struct iommu_domain *domain, |
| 566 | enum iommu_attr attr, void *data) |
| 567 | { |
| 568 | return -EINVAL; |
| 569 | } |
| 570 | |
Alex Williamson | e09f8ea5 | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 571 | static inline struct device *iommu_device_create(struct device *parent, |
| 572 | void *drvdata, |
| 573 | const struct attribute_group **groups, |
| 574 | const char *fmt, ...) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 575 | { |
| 576 | return ERR_PTR(-ENODEV); |
| 577 | } |
| 578 | |
Alex Williamson | e09f8ea5 | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 579 | static inline void iommu_device_destroy(struct device *dev) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 580 | { |
| 581 | } |
| 582 | |
Alex Williamson | e09f8ea5 | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 583 | static inline int iommu_device_link(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 584 | { |
| 585 | return -EINVAL; |
| 586 | } |
| 587 | |
Alex Williamson | e09f8ea5 | 2014-07-07 14:31:36 -0600 | [diff] [blame] | 588 | static inline void iommu_device_unlink(struct device *dev, struct device *link) |
Alex Williamson | c61959e | 2014-06-12 16:12:24 -0600 | [diff] [blame] | 589 | { |
| 590 | } |
| 591 | |
Mitchel Humpherys | 8488df2 | 2015-07-09 16:59:02 -0700 | [diff] [blame] | 592 | static inline void iommu_trigger_fault(struct iommu_domain *domain, |
| 593 | unsigned long flags) |
| 594 | { |
| 595 | } |
| 596 | |
Mitchel Humpherys | 3ede5d9 | 2015-08-21 14:06:14 -0700 | [diff] [blame] | 597 | static inline unsigned long iommu_reg_read(struct iommu_domain *domain, |
| 598 | unsigned long offset) |
| 599 | { |
| 600 | return 0; |
| 601 | } |
| 602 | |
| 603 | static inline void iommu_reg_write(struct iommu_domain *domain, |
| 604 | unsigned long val, unsigned long offset) |
| 605 | { |
| 606 | } |
| 607 | |
Joerg Roedel | 4a77a6c | 2008-11-26 17:02:33 +0100 | [diff] [blame] | 608 | #endif /* CONFIG_IOMMU_API */ |
| 609 | |
| 610 | #endif /* __LINUX_IOMMU_H */ |