Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/gpu/ion/ion_priv.h |
| 3 | * |
| 4 | * Copyright (C) 2011 Google, Inc. |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 5 | * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 6 | * |
| 7 | * This software is licensed under the terms of the GNU General Public |
| 8 | * License version 2, as published by the Free Software Foundation, and |
| 9 | * may be copied, distributed, and modified under those terms. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | */ |
| 17 | |
| 18 | #ifndef _ION_PRIV_H |
| 19 | #define _ION_PRIV_H |
| 20 | |
| 21 | #include <linux/kref.h> |
| 22 | #include <linux/mm_types.h> |
| 23 | #include <linux/mutex.h> |
| 24 | #include <linux/rbtree.h> |
| 25 | #include <linux/ion.h> |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 26 | #include <linux/iommu.h> |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 27 | #include <linux/seq_file.h> |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 28 | |
Olav Haugan | b367659 | 2012-03-02 15:02:25 -0800 | [diff] [blame] | 29 | enum { |
| 30 | DI_PARTITION_NUM = 0, |
| 31 | DI_DOMAIN_NUM = 1, |
| 32 | DI_MAX, |
| 33 | }; |
| 34 | |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 35 | /** |
| 36 | * struct ion_iommu_map - represents a mapping of an ion buffer to an iommu |
| 37 | * @iova_addr - iommu virtual address |
| 38 | * @node - rb node to exist in the buffer's tree of iommu mappings |
| 39 | * @domain_info - contains the partition number and domain number |
| 40 | * domain_info[1] = domain number |
| 41 | * domain_info[0] = partition number |
| 42 | * @ref - for reference counting this mapping |
| 43 | * @mapped_size - size of the iova space mapped |
| 44 | * (may not be the same as the buffer size) |
Olav Haugan | b367659 | 2012-03-02 15:02:25 -0800 | [diff] [blame] | 45 | * @flags - iommu domain/partition specific flags. |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 46 | * |
| 47 | * Represents a mapping of one ion buffer to a particular iommu domain |
| 48 | * and address range. There may exist other mappings of this buffer in |
| 49 | * different domains or address ranges. All mappings will have the same |
| 50 | * cacheability and security. |
| 51 | */ |
| 52 | struct ion_iommu_map { |
| 53 | unsigned long iova_addr; |
| 54 | struct rb_node node; |
| 55 | union { |
Olav Haugan | b367659 | 2012-03-02 15:02:25 -0800 | [diff] [blame] | 56 | int domain_info[DI_MAX]; |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 57 | uint64_t key; |
| 58 | }; |
| 59 | struct ion_buffer *buffer; |
| 60 | struct kref ref; |
| 61 | int mapped_size; |
Olav Haugan | b367659 | 2012-03-02 15:02:25 -0800 | [diff] [blame] | 62 | unsigned long flags; |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 63 | }; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 64 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 65 | struct ion_buffer *ion_handle_buffer(struct ion_handle *handle); |
| 66 | |
| 67 | /** |
| 68 | * struct ion_buffer - metadata for a particular buffer |
| 69 | * @ref: refernce count |
| 70 | * @node: node in the ion_device buffers tree |
| 71 | * @dev: back pointer to the ion_device |
| 72 | * @heap: back pointer to the heap the buffer came from |
| 73 | * @flags: buffer specific flags |
| 74 | * @size: size of the buffer |
| 75 | * @priv_virt: private data to the buffer representable as |
| 76 | * a void * |
| 77 | * @priv_phys: private data to the buffer representable as |
| 78 | * an ion_phys_addr_t (and someday a phys_addr_t) |
| 79 | * @lock: protects the buffers cnt fields |
| 80 | * @kmap_cnt: number of times the buffer is mapped to the kernel |
| 81 | * @vaddr: the kenrel mapping if kmap_cnt is not zero |
| 82 | * @dmap_cnt: number of times the buffer is mapped for dma |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame^] | 83 | * @sg_table: the sg table for the buffer if dmap_cnt is not zero |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 84 | */ |
| 85 | struct ion_buffer { |
| 86 | struct kref ref; |
| 87 | struct rb_node node; |
| 88 | struct ion_device *dev; |
| 89 | struct ion_heap *heap; |
| 90 | unsigned long flags; |
| 91 | size_t size; |
| 92 | union { |
| 93 | void *priv_virt; |
| 94 | ion_phys_addr_t priv_phys; |
| 95 | }; |
| 96 | struct mutex lock; |
| 97 | int kmap_cnt; |
| 98 | void *vaddr; |
| 99 | int dmap_cnt; |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame^] | 100 | struct sg_table *sg_table; |
Laura Abbott | 894fd58 | 2011-08-19 13:33:56 -0700 | [diff] [blame] | 101 | int umap_cnt; |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 102 | unsigned int iommu_map_cnt; |
| 103 | struct rb_root iommu_maps; |
Laura Abbott | 404f824 | 2011-10-31 14:22:53 -0700 | [diff] [blame] | 104 | int marked; |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | /** |
| 108 | * struct ion_heap_ops - ops to operate on a given heap |
| 109 | * @allocate: allocate memory |
| 110 | * @free: free memory |
| 111 | * @phys get physical address of a buffer (only define on |
| 112 | * physically contiguous heaps) |
| 113 | * @map_dma map the memory for dma to a scatterlist |
| 114 | * @unmap_dma unmap the memory for dma |
| 115 | * @map_kernel map memory to the kernel |
| 116 | * @unmap_kernel unmap memory to the kernel |
| 117 | * @map_user map memory to userspace |
Alex Bird | 8a3ede3 | 2011-11-07 12:33:42 -0800 | [diff] [blame] | 118 | * @unmap_user unmap memory to userspace |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 119 | */ |
| 120 | struct ion_heap_ops { |
| 121 | int (*allocate) (struct ion_heap *heap, |
| 122 | struct ion_buffer *buffer, unsigned long len, |
| 123 | unsigned long align, unsigned long flags); |
| 124 | void (*free) (struct ion_buffer *buffer); |
| 125 | int (*phys) (struct ion_heap *heap, struct ion_buffer *buffer, |
| 126 | ion_phys_addr_t *addr, size_t *len); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame^] | 127 | struct sg_table *(*map_dma) (struct ion_heap *heap, |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 128 | struct ion_buffer *buffer); |
| 129 | void (*unmap_dma) (struct ion_heap *heap, struct ion_buffer *buffer); |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame^] | 130 | void * (*map_kernel) (struct ion_heap *heap, struct ion_buffer *buffer); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 131 | void (*unmap_kernel) (struct ion_heap *heap, struct ion_buffer *buffer); |
| 132 | int (*map_user) (struct ion_heap *mapper, struct ion_buffer *buffer, |
Laura Abbott | b14ed96 | 2012-01-30 14:18:08 -0800 | [diff] [blame^] | 133 | struct vm_area_struct *vma); |
Alex Bird | 8a3ede3 | 2011-11-07 12:33:42 -0800 | [diff] [blame] | 134 | void (*unmap_user) (struct ion_heap *mapper, struct ion_buffer *buffer); |
Laura Abbott | abcb6f7 | 2011-10-04 16:26:49 -0700 | [diff] [blame] | 135 | int (*cache_op)(struct ion_heap *heap, struct ion_buffer *buffer, |
| 136 | void *vaddr, unsigned int offset, |
| 137 | unsigned int length, unsigned int cmd); |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 138 | int (*map_iommu)(struct ion_buffer *buffer, |
| 139 | struct ion_iommu_map *map_data, |
| 140 | unsigned int domain_num, |
| 141 | unsigned int partition_num, |
| 142 | unsigned long align, |
| 143 | unsigned long iova_length, |
| 144 | unsigned long flags); |
| 145 | void (*unmap_iommu)(struct ion_iommu_map *data); |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 146 | int (*print_debug)(struct ion_heap *heap, struct seq_file *s, |
| 147 | const struct rb_root *mem_map); |
Laura Abbott | 7e44648 | 2012-06-13 15:59:39 -0700 | [diff] [blame] | 148 | int (*secure_heap)(struct ion_heap *heap, int version, void *data); |
| 149 | int (*unsecure_heap)(struct ion_heap *heap, int version, void *data); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 150 | }; |
| 151 | |
| 152 | /** |
| 153 | * struct ion_heap - represents a heap in the system |
| 154 | * @node: rb node to put the heap on the device's tree of heaps |
| 155 | * @dev: back pointer to the ion_device |
| 156 | * @type: type of heap |
| 157 | * @ops: ops struct as above |
| 158 | * @id: id of heap, also indicates priority of this heap when |
| 159 | * allocating. These are specified by platform data and |
| 160 | * MUST be unique |
| 161 | * @name: used for debugging |
| 162 | * |
| 163 | * Represents a pool of memory from which buffers can be made. In some |
| 164 | * systems the only heap is regular system memory allocated via vmalloc. |
| 165 | * On others, some blocks might require large physically contiguous buffers |
| 166 | * that are allocated from a specially reserved heap. |
| 167 | */ |
| 168 | struct ion_heap { |
| 169 | struct rb_node node; |
| 170 | struct ion_device *dev; |
| 171 | enum ion_heap_type type; |
| 172 | struct ion_heap_ops *ops; |
| 173 | int id; |
| 174 | const char *name; |
| 175 | }; |
| 176 | |
| 177 | /** |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 178 | * struct mem_map_data - represents information about the memory map for a heap |
| 179 | * @node: rb node used to store in the tree of mem_map_data |
| 180 | * @addr: start address of memory region. |
| 181 | * @addr: end address of memory region. |
| 182 | * @size: size of memory region |
| 183 | * @client_name: name of the client who owns this buffer. |
| 184 | * |
| 185 | */ |
| 186 | struct mem_map_data { |
| 187 | struct rb_node node; |
| 188 | unsigned long addr; |
| 189 | unsigned long addr_end; |
| 190 | unsigned long size; |
| 191 | const char *client_name; |
| 192 | }; |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 193 | |
| 194 | #define iommu_map_domain(__m) ((__m)->domain_info[1]) |
| 195 | #define iommu_map_partition(__m) ((__m)->domain_info[0]) |
| 196 | |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 197 | /** |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 198 | * ion_device_create - allocates and returns an ion device |
| 199 | * @custom_ioctl: arch specific ioctl function if applicable |
| 200 | * |
| 201 | * returns a valid device or -PTR_ERR |
| 202 | */ |
| 203 | struct ion_device *ion_device_create(long (*custom_ioctl) |
| 204 | (struct ion_client *client, |
| 205 | unsigned int cmd, |
| 206 | unsigned long arg)); |
| 207 | |
| 208 | /** |
| 209 | * ion_device_destroy - free and device and it's resource |
| 210 | * @dev: the device |
| 211 | */ |
| 212 | void ion_device_destroy(struct ion_device *dev); |
| 213 | |
| 214 | /** |
| 215 | * ion_device_add_heap - adds a heap to the ion device |
| 216 | * @dev: the device |
| 217 | * @heap: the heap to add |
| 218 | */ |
| 219 | void ion_device_add_heap(struct ion_device *dev, struct ion_heap *heap); |
| 220 | |
| 221 | /** |
| 222 | * functions for creating and destroying the built in ion heaps. |
| 223 | * architectures can add their own custom architecture specific |
| 224 | * heaps as appropriate. |
| 225 | */ |
| 226 | |
| 227 | struct ion_heap *ion_heap_create(struct ion_platform_heap *); |
| 228 | void ion_heap_destroy(struct ion_heap *); |
| 229 | |
| 230 | struct ion_heap *ion_system_heap_create(struct ion_platform_heap *); |
| 231 | void ion_system_heap_destroy(struct ion_heap *); |
| 232 | |
| 233 | struct ion_heap *ion_system_contig_heap_create(struct ion_platform_heap *); |
| 234 | void ion_system_contig_heap_destroy(struct ion_heap *); |
| 235 | |
| 236 | struct ion_heap *ion_carveout_heap_create(struct ion_platform_heap *); |
| 237 | void ion_carveout_heap_destroy(struct ion_heap *); |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 238 | |
| 239 | struct ion_heap *ion_iommu_heap_create(struct ion_platform_heap *); |
| 240 | void ion_iommu_heap_destroy(struct ion_heap *); |
| 241 | |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 242 | struct ion_heap *ion_cp_heap_create(struct ion_platform_heap *); |
| 243 | void ion_cp_heap_destroy(struct ion_heap *); |
| 244 | |
Laura Abbott | caafeea | 2011-12-13 11:43:10 -0800 | [diff] [blame] | 245 | struct ion_heap *ion_reusable_heap_create(struct ion_platform_heap *); |
| 246 | void ion_reusable_heap_destroy(struct ion_heap *); |
| 247 | |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 248 | /** |
| 249 | * kernel api to allocate/free from carveout -- used when carveout is |
| 250 | * used to back an architecture specific custom heap |
| 251 | */ |
| 252 | ion_phys_addr_t ion_carveout_allocate(struct ion_heap *heap, unsigned long size, |
| 253 | unsigned long align); |
| 254 | void ion_carveout_free(struct ion_heap *heap, ion_phys_addr_t addr, |
| 255 | unsigned long size); |
Laura Abbott | 8c01736 | 2011-09-22 20:59:12 -0700 | [diff] [blame] | 256 | |
| 257 | |
| 258 | struct ion_heap *msm_get_contiguous_heap(void); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 259 | /** |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 260 | * The carveout/cp heap returns physical addresses, since 0 may be a valid |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 261 | * physical address, this is used to indicate allocation failed |
| 262 | */ |
| 263 | #define ION_CARVEOUT_ALLOCATE_FAIL -1 |
Olav Haugan | 0a85251 | 2012-01-09 10:20:55 -0800 | [diff] [blame] | 264 | #define ION_CP_ALLOCATE_FAIL -1 |
Rebecca Schultz Zavin | c80005a | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 265 | |
Laura Abbott | caafeea | 2011-12-13 11:43:10 -0800 | [diff] [blame] | 266 | /** |
| 267 | * The reserved heap returns physical addresses, since 0 may be a valid |
| 268 | * physical address, this is used to indicate allocation failed |
| 269 | */ |
| 270 | #define ION_RESERVED_ALLOCATE_FAIL -1 |
| 271 | |
| 272 | /** |
| 273 | * ion_map_fmem_buffer - map fmem allocated memory into the kernel |
| 274 | * @buffer - buffer to map |
| 275 | * @phys_base - physical base of the heap |
| 276 | * @virt_base - virtual base of the heap |
| 277 | * @flags - flags for the heap |
| 278 | * |
| 279 | * Map fmem allocated memory into the kernel address space. This |
| 280 | * is designed to be used by other heaps that need fmem behavior. |
| 281 | * The virtual range must be pre-allocated. |
| 282 | */ |
| 283 | void *ion_map_fmem_buffer(struct ion_buffer *buffer, unsigned long phys_base, |
| 284 | void *virt_base, unsigned long flags); |
| 285 | |
Olav Haugan | 41f8579 | 2012-02-08 15:28:05 -0800 | [diff] [blame] | 286 | /** |
| 287 | * ion_do_cache_op - do cache operations. |
| 288 | * |
| 289 | * @client - pointer to ION client. |
| 290 | * @handle - pointer to buffer handle. |
| 291 | * @uaddr - virtual address to operate on. |
| 292 | * @offset - offset from physical address. |
| 293 | * @len - Length of data to do cache operation on. |
| 294 | * @cmd - Cache operation to perform: |
| 295 | * ION_IOC_CLEAN_CACHES |
| 296 | * ION_IOC_INV_CACHES |
| 297 | * ION_IOC_CLEAN_INV_CACHES |
| 298 | * |
| 299 | * Returns 0 on success |
| 300 | */ |
| 301 | int ion_do_cache_op(struct ion_client *client, struct ion_handle *handle, |
| 302 | void *uaddr, unsigned long offset, unsigned long len, |
| 303 | unsigned int cmd); |
| 304 | |
Olav Haugan | 0671b9a | 2012-05-25 11:58:56 -0700 | [diff] [blame] | 305 | void ion_cp_heap_get_base(struct ion_heap *heap, unsigned long *base, |
| 306 | unsigned long *size); |
| 307 | |
| 308 | void ion_mem_map_show(struct ion_heap *heap); |
Rebecca Schultz Zavin | 0c38bfd | 2011-06-29 19:44:29 -0700 | [diff] [blame] | 309 | |
| 310 | #endif /* _ION_PRIV_H */ |