Laura Abbott | 6438e53 | 2012-07-20 10:10:41 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_MSM_ION_H |
| 2 | #define _LINUX_MSM_ION_H |
| 3 | |
| 4 | #include <linux/ion.h> |
| 5 | |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 6 | enum msm_ion_heap_types { |
| 7 | ION_HEAP_TYPE_MSM_START = ION_HEAP_TYPE_CUSTOM + 1, |
| 8 | ION_HEAP_TYPE_IOMMU = ION_HEAP_TYPE_MSM_START, |
| 9 | ION_HEAP_TYPE_CP, |
Laura Abbott | a8c373f | 2013-02-15 09:25:35 -0800 | [diff] [blame] | 10 | ION_HEAP_TYPE_SECURE_DMA, |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 11 | }; |
| 12 | |
| 13 | /** |
| 14 | * These are the only ids that should be used for Ion heap ids. |
| 15 | * The ids listed are the order in which allocation will be attempted |
| 16 | * if specified. Don't swap the order of heap ids unless you know what |
| 17 | * you are doing! |
| 18 | * Id's are spaced by purpose to allow new Id's to be inserted in-between (for |
| 19 | * possible fallbacks) |
| 20 | */ |
| 21 | |
| 22 | enum ion_heap_ids { |
| 23 | INVALID_HEAP_ID = -1, |
| 24 | ION_CP_MM_HEAP_ID = 8, |
| 25 | ION_CP_MFC_HEAP_ID = 12, |
| 26 | ION_CP_WB_HEAP_ID = 16, /* 8660 only */ |
| 27 | ION_CAMERA_HEAP_ID = 20, /* 8660 only */ |
Mitchel Humpherys | f921042 | 2013-03-19 17:16:58 -0700 | [diff] [blame] | 28 | ION_SYSTEM_CONTIG_HEAP_ID = 21, |
Laura Abbott | 98e8ddc | 2013-02-09 09:35:30 -0800 | [diff] [blame] | 29 | ION_ADSP_HEAP_ID = 22, |
Neeti Desai | 9dc9db4 | 2012-10-18 17:53:51 -0700 | [diff] [blame] | 30 | ION_PIL1_HEAP_ID = 23, /* Currently used for other PIL images */ |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 31 | ION_SF_HEAP_ID = 24, |
| 32 | ION_IOMMU_HEAP_ID = 25, |
Neeti Desai | 9dc9db4 | 2012-10-18 17:53:51 -0700 | [diff] [blame] | 33 | ION_PIL2_HEAP_ID = 26, /* Currently used for modem firmware images */ |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 34 | ION_QSECOM_HEAP_ID = 27, |
| 35 | ION_AUDIO_HEAP_ID = 28, |
| 36 | |
| 37 | ION_MM_FIRMWARE_HEAP_ID = 29, |
| 38 | ION_SYSTEM_HEAP_ID = 30, |
| 39 | |
| 40 | ION_HEAP_ID_RESERVED = 31 /** Bit reserved for ION_SECURE flag */ |
| 41 | }; |
| 42 | |
| 43 | enum ion_fixed_position { |
| 44 | NOT_FIXED, |
| 45 | FIXED_LOW, |
| 46 | FIXED_MIDDLE, |
| 47 | FIXED_HIGH, |
| 48 | }; |
| 49 | |
| 50 | enum cp_mem_usage { |
| 51 | VIDEO_BITSTREAM = 0x1, |
| 52 | VIDEO_PIXEL = 0x2, |
| 53 | VIDEO_NONPIXEL = 0x3, |
| 54 | MAX_USAGE = 0x4, |
| 55 | UNKNOWN = 0x7FFFFFFF, |
| 56 | }; |
| 57 | |
| 58 | #define ION_HEAP_CP_MASK (1 << ION_HEAP_TYPE_CP) |
| 59 | |
| 60 | /** |
| 61 | * Flag to use when allocating to indicate that a heap is secure. |
| 62 | */ |
| 63 | #define ION_SECURE (1 << ION_HEAP_ID_RESERVED) |
| 64 | |
| 65 | /** |
Laura Abbott | 7db4e0b | 2013-01-03 14:20:16 -0800 | [diff] [blame] | 66 | * Flag for clients to force contiguous memort allocation |
| 67 | * |
| 68 | * Use of this flag is carefully monitored! |
| 69 | */ |
| 70 | #define ION_FORCE_CONTIGUOUS (1 << 30) |
| 71 | |
| 72 | /** |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 73 | * Macro should be used with ion_heap_ids defined above. |
| 74 | */ |
| 75 | #define ION_HEAP(bit) (1 << (bit)) |
| 76 | |
Laura Abbott | 98e8ddc | 2013-02-09 09:35:30 -0800 | [diff] [blame] | 77 | #define ION_ADSP_HEAP_NAME "adsp" |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 78 | #define ION_VMALLOC_HEAP_NAME "vmalloc" |
Mitchel Humpherys | f921042 | 2013-03-19 17:16:58 -0700 | [diff] [blame] | 79 | #define ION_KMALLOC_HEAP_NAME "kmalloc" |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 80 | #define ION_AUDIO_HEAP_NAME "audio" |
| 81 | #define ION_SF_HEAP_NAME "sf" |
| 82 | #define ION_MM_HEAP_NAME "mm" |
| 83 | #define ION_CAMERA_HEAP_NAME "camera_preview" |
| 84 | #define ION_IOMMU_HEAP_NAME "iommu" |
| 85 | #define ION_MFC_HEAP_NAME "mfc" |
| 86 | #define ION_WB_HEAP_NAME "wb" |
| 87 | #define ION_MM_FIRMWARE_HEAP_NAME "mm_fw" |
Neeti Desai | 9dc9db4 | 2012-10-18 17:53:51 -0700 | [diff] [blame] | 88 | #define ION_PIL1_HEAP_NAME "pil_1" |
| 89 | #define ION_PIL2_HEAP_NAME "pil_2" |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 90 | #define ION_QSECOM_HEAP_NAME "qsecom" |
| 91 | #define ION_FMEM_HEAP_NAME "fmem" |
| 92 | |
| 93 | #define ION_SET_CACHED(__cache) (__cache | ION_FLAG_CACHED) |
| 94 | #define ION_SET_UNCACHED(__cache) (__cache & ~ION_FLAG_CACHED) |
| 95 | |
| 96 | #define ION_IS_CACHED(__flags) ((__flags) & ION_FLAG_CACHED) |
| 97 | |
| 98 | #ifdef __KERNEL__ |
| 99 | |
| 100 | /* |
| 101 | * This flag allows clients when mapping into the IOMMU to specify to |
| 102 | * defer un-mapping from the IOMMU until the buffer memory is freed. |
| 103 | */ |
| 104 | #define ION_IOMMU_UNMAP_DELAYED 1 |
| 105 | |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 106 | /* |
| 107 | * This flag allows clients to defer unsecuring a buffer until the buffer |
| 108 | * is actually freed. |
| 109 | */ |
| 110 | #define ION_UNSECURE_DELAYED 1 |
| 111 | |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 112 | /** |
| 113 | * struct ion_cp_heap_pdata - defines a content protection heap in the given |
| 114 | * platform |
| 115 | * @permission_type: Memory ID used to identify the memory to TZ |
| 116 | * @align: Alignment requirement for the memory |
| 117 | * @secure_base: Base address for securing the heap. |
| 118 | * Note: This might be different from actual base address |
| 119 | * of this heap in the case of a shared heap. |
| 120 | * @secure_size: Memory size for securing the heap. |
| 121 | * Note: This might be different from actual size |
| 122 | * of this heap in the case of a shared heap. |
| 123 | * @reusable Flag indicating whether this heap is reusable of not. |
| 124 | * (see FMEM) |
| 125 | * @mem_is_fmem Flag indicating whether this memory is coming from fmem |
| 126 | * or not. |
| 127 | * @fixed_position If nonzero, position in the fixed area. |
| 128 | * @virt_addr: Virtual address used when using fmem. |
| 129 | * @iommu_map_all: Indicates whether we should map whole heap into IOMMU. |
| 130 | * @iommu_2x_map_domain: Indicates the domain to use for overmapping. |
| 131 | * @request_region: function to be called when the number of allocations |
| 132 | * goes from 0 -> 1 |
| 133 | * @release_region: function to be called when the number of allocations |
| 134 | * goes from 1 -> 0 |
| 135 | * @setup_region: function to be called upon ion registration |
| 136 | * @memory_type:Memory type used for the heap |
Mitchel Humpherys | 345f023 | 2013-01-11 10:55:25 -0800 | [diff] [blame] | 137 | * @allow_nonsecure_alloc: allow non-secure allocations from this heap. For |
| 138 | * secure heaps, this flag must be set so allow non-secure |
| 139 | * allocations. For non-secure heaps, this flag is ignored. |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 140 | * |
| 141 | */ |
| 142 | struct ion_cp_heap_pdata { |
| 143 | enum ion_permission_type permission_type; |
| 144 | unsigned int align; |
| 145 | ion_phys_addr_t secure_base; /* Base addr used when heap is shared */ |
| 146 | size_t secure_size; /* Size used for securing heap when heap is shared*/ |
| 147 | int reusable; |
| 148 | int mem_is_fmem; |
Laura Abbott | 3180a5f | 2012-08-03 17:31:03 -0700 | [diff] [blame] | 149 | int is_cma; |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 150 | enum ion_fixed_position fixed_position; |
| 151 | int iommu_map_all; |
| 152 | int iommu_2x_map_domain; |
Laura Abbott | 871ad42 | 2013-03-13 14:28:19 -0700 | [diff] [blame] | 153 | void *virt_addr; |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 154 | int (*request_region)(void *); |
| 155 | int (*release_region)(void *); |
| 156 | void *(*setup_region)(void); |
| 157 | enum ion_memory_types memory_type; |
Mitchel Humpherys | 345f023 | 2013-01-11 10:55:25 -0800 | [diff] [blame] | 158 | int allow_nonsecure_alloc; |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
| 161 | /** |
| 162 | * struct ion_co_heap_pdata - defines a carveout heap in the given platform |
| 163 | * @adjacent_mem_id: Id of heap that this heap must be adjacent to. |
| 164 | * @align: Alignment requirement for the memory |
| 165 | * @mem_is_fmem Flag indicating whether this memory is coming from fmem |
| 166 | * or not. |
| 167 | * @fixed_position If nonzero, position in the fixed area. |
| 168 | * @request_region: function to be called when the number of allocations |
| 169 | * goes from 0 -> 1 |
| 170 | * @release_region: function to be called when the number of allocations |
| 171 | * goes from 1 -> 0 |
| 172 | * @setup_region: function to be called upon ion registration |
| 173 | * @memory_type:Memory type used for the heap |
| 174 | * |
| 175 | */ |
| 176 | struct ion_co_heap_pdata { |
| 177 | int adjacent_mem_id; |
| 178 | unsigned int align; |
| 179 | int mem_is_fmem; |
| 180 | enum ion_fixed_position fixed_position; |
| 181 | int (*request_region)(void *); |
| 182 | int (*release_region)(void *); |
| 183 | void *(*setup_region)(void); |
| 184 | enum ion_memory_types memory_type; |
| 185 | }; |
| 186 | |
| 187 | #ifdef CONFIG_ION |
| 188 | /** |
| 189 | * msm_ion_secure_heap - secure a heap. Wrapper around ion_secure_heap. |
| 190 | * |
| 191 | * @heap_id - heap id to secure. |
| 192 | * |
| 193 | * Secure a heap |
| 194 | * Returns 0 on success |
| 195 | */ |
| 196 | int msm_ion_secure_heap(int heap_id); |
| 197 | |
| 198 | /** |
| 199 | * msm_ion_unsecure_heap - unsecure a heap. Wrapper around ion_unsecure_heap. |
| 200 | * |
| 201 | * @heap_id - heap id to secure. |
| 202 | * |
| 203 | * Un-secure a heap |
| 204 | * Returns 0 on success |
| 205 | */ |
| 206 | int msm_ion_unsecure_heap(int heap_id); |
| 207 | |
| 208 | /** |
| 209 | * msm_ion_secure_heap_2_0 - secure a heap using 2.0 APIs |
| 210 | * Wrapper around ion_secure_heap. |
| 211 | * |
| 212 | * @heap_id - heap id to secure. |
| 213 | * @usage - usage hint to TZ |
| 214 | * |
| 215 | * Secure a heap |
| 216 | * Returns 0 on success |
| 217 | */ |
| 218 | int msm_ion_secure_heap_2_0(int heap_id, enum cp_mem_usage usage); |
| 219 | |
| 220 | /** |
| 221 | * msm_ion_unsecure_heap - unsecure a heap secured with 3.0 APIs. |
| 222 | * Wrapper around ion_unsecure_heap. |
| 223 | * |
| 224 | * @heap_id - heap id to secure. |
| 225 | * @usage - usage hint to TZ |
| 226 | * |
| 227 | * Un-secure a heap |
| 228 | * Returns 0 on success |
| 229 | */ |
| 230 | int msm_ion_unsecure_heap_2_0(int heap_id, enum cp_mem_usage usage); |
Laura Abbott | 9361930 | 2012-10-11 11:51:40 -0700 | [diff] [blame] | 231 | |
| 232 | /** |
| 233 | * msm_ion_secure_buffer - secure an individual buffer |
| 234 | * |
| 235 | * @client - client who has access to the buffer |
| 236 | * @handle - buffer to secure |
| 237 | * @usage - usage hint to TZ |
| 238 | * @flags - flags for the securing |
| 239 | */ |
| 240 | int msm_ion_secure_buffer(struct ion_client *client, struct ion_handle *handle, |
| 241 | enum cp_mem_usage usage, int flags); |
| 242 | |
| 243 | /** |
| 244 | * msm_ion_unsecure_buffer - unsecure an individual buffer |
| 245 | * |
| 246 | * @client - client who has access to the buffer |
| 247 | * @handle - buffer to secure |
| 248 | */ |
| 249 | int msm_ion_unsecure_buffer(struct ion_client *client, |
| 250 | struct ion_handle *handle); |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 251 | #else |
| 252 | static inline int msm_ion_secure_heap(int heap_id) |
| 253 | { |
| 254 | return -ENODEV; |
| 255 | |
| 256 | } |
| 257 | |
| 258 | static inline int msm_ion_unsecure_heap(int heap_id) |
| 259 | { |
| 260 | return -ENODEV; |
| 261 | } |
| 262 | |
| 263 | static inline int msm_ion_secure_heap_2_0(int heap_id, enum cp_mem_usage usage) |
| 264 | { |
| 265 | return -ENODEV; |
| 266 | } |
| 267 | |
| 268 | static inline int msm_ion_unsecure_heap_2_0(int heap_id, |
| 269 | enum cp_mem_usage usage) |
| 270 | { |
| 271 | return -ENODEV; |
| 272 | } |
Mitchel Humpherys | 782653e | 2013-02-25 18:54:53 -0800 | [diff] [blame] | 273 | |
| 274 | static inline int msm_ion_secure_buffer(struct ion_client *client, |
| 275 | struct ion_handle *handle, |
| 276 | enum cp_mem_usage usage, |
| 277 | int flags) |
| 278 | { |
| 279 | return -ENODEV; |
| 280 | } |
| 281 | |
| 282 | static inline int msm_ion_unsecure_buffer(struct ion_client *client, |
| 283 | struct ion_handle *handle) |
| 284 | { |
| 285 | return -ENODEV; |
| 286 | } |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 287 | #endif /* CONFIG_ION */ |
| 288 | |
| 289 | #endif /* __KERNEL */ |
| 290 | |
| 291 | /* struct ion_flush_data - data passed to ion for flushing caches |
| 292 | * |
| 293 | * @handle: handle with data to flush |
| 294 | * @fd: fd to flush |
| 295 | * @vaddr: userspace virtual address mapped with mmap |
| 296 | * @offset: offset into the handle to flush |
| 297 | * @length: length of handle to flush |
| 298 | * |
| 299 | * Performs cache operations on the handle. If p is the start address |
| 300 | * of the handle, p + offset through p + offset + length will have |
| 301 | * the cache operations performed |
| 302 | */ |
| 303 | struct ion_flush_data { |
| 304 | struct ion_handle *handle; |
| 305 | int fd; |
| 306 | void *vaddr; |
| 307 | unsigned int offset; |
| 308 | unsigned int length; |
| 309 | }; |
| 310 | |
Mitchel Humpherys | 362b52b | 2012-09-13 10:53:22 -0700 | [diff] [blame] | 311 | #define ION_IOC_MSM_MAGIC 'M' |
| 312 | |
| 313 | /** |
| 314 | * DOC: ION_IOC_CLEAN_CACHES - clean the caches |
| 315 | * |
| 316 | * Clean the caches of the handle specified. |
| 317 | */ |
| 318 | #define ION_IOC_CLEAN_CACHES _IOWR(ION_IOC_MSM_MAGIC, 0, \ |
| 319 | struct ion_flush_data) |
| 320 | /** |
| 321 | * DOC: ION_IOC_INV_CACHES - invalidate the caches |
| 322 | * |
| 323 | * Invalidate the caches of the handle specified. |
| 324 | */ |
| 325 | #define ION_IOC_INV_CACHES _IOWR(ION_IOC_MSM_MAGIC, 1, \ |
| 326 | struct ion_flush_data) |
| 327 | /** |
| 328 | * DOC: ION_IOC_CLEAN_INV_CACHES - clean and invalidate the caches |
| 329 | * |
| 330 | * Clean and invalidate the caches of the handle specified. |
| 331 | */ |
| 332 | #define ION_IOC_CLEAN_INV_CACHES _IOWR(ION_IOC_MSM_MAGIC, 2, \ |
| 333 | struct ion_flush_data) |
| 334 | |
Laura Abbott | 6438e53 | 2012-07-20 10:10:41 -0700 | [diff] [blame] | 335 | #endif |