blob: 273e57e357ebdb6e5a5c2354bff434a7f6a40e86 [file] [log] [blame]
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -07001/*
2 * drivers/gpu/ion/ion_priv.h
3 *
4 * Copyright (C) 2011 Google, Inc.
Olav Haugan0a852512012-01-09 10:20:55 -08005 * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -07006 *
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 Abbott8c017362011-09-22 20:59:12 -070026#include <linux/iommu.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070027#include <linux/seq_file.h>
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070028
Olav Hauganb3676592012-03-02 15:02:25 -080029enum {
30 DI_PARTITION_NUM = 0,
31 DI_DOMAIN_NUM = 1,
32 DI_MAX,
33};
34
Laura Abbott8c017362011-09-22 20:59:12 -070035/**
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 Hauganb3676592012-03-02 15:02:25 -080045 * @flags - iommu domain/partition specific flags.
Laura Abbott8c017362011-09-22 20:59:12 -070046 *
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 */
52struct ion_iommu_map {
53 unsigned long iova_addr;
54 struct rb_node node;
55 union {
Olav Hauganb3676592012-03-02 15:02:25 -080056 int domain_info[DI_MAX];
Laura Abbott8c017362011-09-22 20:59:12 -070057 uint64_t key;
58 };
59 struct ion_buffer *buffer;
60 struct kref ref;
61 int mapped_size;
Olav Hauganb3676592012-03-02 15:02:25 -080062 unsigned long flags;
Laura Abbott8c017362011-09-22 20:59:12 -070063};
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -070064
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -070065struct 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 Abbottb14ed962012-01-30 14:18:08 -080083 * @sg_table: the sg table for the buffer if dmap_cnt is not zero
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -070084*/
85struct 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 Abbottb14ed962012-01-30 14:18:08 -0800100 struct sg_table *sg_table;
Laura Abbott894fd582011-08-19 13:33:56 -0700101 int umap_cnt;
Laura Abbott8c017362011-09-22 20:59:12 -0700102 unsigned int iommu_map_cnt;
103 struct rb_root iommu_maps;
Laura Abbott404f8242011-10-31 14:22:53 -0700104 int marked;
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700105};
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 Bird8a3ede32011-11-07 12:33:42 -0800118 * @unmap_user unmap memory to userspace
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700119 */
120struct 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 Abbottb14ed962012-01-30 14:18:08 -0800127 struct sg_table *(*map_dma) (struct ion_heap *heap,
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700128 struct ion_buffer *buffer);
129 void (*unmap_dma) (struct ion_heap *heap, struct ion_buffer *buffer);
Laura Abbottb14ed962012-01-30 14:18:08 -0800130 void * (*map_kernel) (struct ion_heap *heap, struct ion_buffer *buffer);
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700131 void (*unmap_kernel) (struct ion_heap *heap, struct ion_buffer *buffer);
132 int (*map_user) (struct ion_heap *mapper, struct ion_buffer *buffer,
Laura Abbottb14ed962012-01-30 14:18:08 -0800133 struct vm_area_struct *vma);
Alex Bird8a3ede32011-11-07 12:33:42 -0800134 void (*unmap_user) (struct ion_heap *mapper, struct ion_buffer *buffer);
Laura Abbottabcb6f72011-10-04 16:26:49 -0700135 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 Abbott8c017362011-09-22 20:59:12 -0700138 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 Haugan0671b9a2012-05-25 11:58:56 -0700146 int (*print_debug)(struct ion_heap *heap, struct seq_file *s,
147 const struct rb_root *mem_map);
Laura Abbott7e446482012-06-13 15:59:39 -0700148 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 Zavin0c38bfd2011-06-29 19:44:29 -0700150};
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 */
168struct 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 Haugan0671b9a2012-05-25 11:58:56 -0700178 * 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 */
186struct 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 Abbott8c017362011-09-22 20:59:12 -0700193
194#define iommu_map_domain(__m) ((__m)->domain_info[1])
195#define iommu_map_partition(__m) ((__m)->domain_info[0])
196
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700197/**
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700198 * 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 */
203struct 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 */
212void 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 */
219void 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
227struct ion_heap *ion_heap_create(struct ion_platform_heap *);
228void ion_heap_destroy(struct ion_heap *);
229
230struct ion_heap *ion_system_heap_create(struct ion_platform_heap *);
231void ion_system_heap_destroy(struct ion_heap *);
232
233struct ion_heap *ion_system_contig_heap_create(struct ion_platform_heap *);
234void ion_system_contig_heap_destroy(struct ion_heap *);
235
236struct ion_heap *ion_carveout_heap_create(struct ion_platform_heap *);
237void ion_carveout_heap_destroy(struct ion_heap *);
Laura Abbott8c017362011-09-22 20:59:12 -0700238
239struct ion_heap *ion_iommu_heap_create(struct ion_platform_heap *);
240void ion_iommu_heap_destroy(struct ion_heap *);
241
Olav Haugan0a852512012-01-09 10:20:55 -0800242struct ion_heap *ion_cp_heap_create(struct ion_platform_heap *);
243void ion_cp_heap_destroy(struct ion_heap *);
244
Laura Abbottcaafeea2011-12-13 11:43:10 -0800245struct ion_heap *ion_reusable_heap_create(struct ion_platform_heap *);
246void ion_reusable_heap_destroy(struct ion_heap *);
247
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700248/**
249 * kernel api to allocate/free from carveout -- used when carveout is
250 * used to back an architecture specific custom heap
251 */
252ion_phys_addr_t ion_carveout_allocate(struct ion_heap *heap, unsigned long size,
253 unsigned long align);
254void ion_carveout_free(struct ion_heap *heap, ion_phys_addr_t addr,
255 unsigned long size);
Laura Abbott8c017362011-09-22 20:59:12 -0700256
257
258struct ion_heap *msm_get_contiguous_heap(void);
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700259/**
Olav Haugan0a852512012-01-09 10:20:55 -0800260 * The carveout/cp heap returns physical addresses, since 0 may be a valid
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700261 * physical address, this is used to indicate allocation failed
262 */
263#define ION_CARVEOUT_ALLOCATE_FAIL -1
Olav Haugan0a852512012-01-09 10:20:55 -0800264#define ION_CP_ALLOCATE_FAIL -1
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700265
Laura Abbottcaafeea2011-12-13 11:43:10 -0800266/**
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 */
283void *ion_map_fmem_buffer(struct ion_buffer *buffer, unsigned long phys_base,
284 void *virt_base, unsigned long flags);
285
Olav Haugan41f85792012-02-08 15:28:05 -0800286/**
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 */
301int 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 Haugan0671b9a2012-05-25 11:58:56 -0700305void ion_cp_heap_get_base(struct ion_heap *heap, unsigned long *base,
306 unsigned long *size);
307
308void ion_mem_map_show(struct ion_heap *heap);
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -0700309
310#endif /* _ION_PRIV_H */