ion_priv.h revision b9daf0b60b8a6a5151fca0e8cbb2dab763a3e92a
1/*
2 * drivers/staging/android/ion/ion_priv.h
3 *
4 * Copyright (C) 2011 Google, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#ifndef _ION_PRIV_H
18#define _ION_PRIV_H
19
20#include <linux/device.h>
21#include <linux/dma-direction.h>
22#include <linux/kref.h>
23#include <linux/mm_types.h>
24#include <linux/mutex.h>
25#include <linux/rbtree.h>
26#include <linux/sched.h>
27#include <linux/shrinker.h>
28#include <linux/types.h>
29
30#include "ion.h"
31
32struct ion_buffer *ion_handle_buffer(struct ion_handle *handle);
33
34/**
35 * struct ion_buffer - metadata for a particular buffer
36 * @ref:		refernce count
37 * @node:		node in the ion_device buffers tree
38 * @dev:		back pointer to the ion_device
39 * @heap:		back pointer to the heap the buffer came from
40 * @flags:		buffer specific flags
41 * @size:		size of the buffer
42 * @priv_virt:		private data to the buffer representable as
43 *			a void *
44 * @priv_phys:		private data to the buffer representable as
45 *			an ion_phys_addr_t (and someday a phys_addr_t)
46 * @lock:		protects the buffers cnt fields
47 * @kmap_cnt:		number of times the buffer is mapped to the kernel
48 * @vaddr:		the kenrel mapping if kmap_cnt is not zero
49 * @dmap_cnt:		number of times the buffer is mapped for dma
50 * @sg_table:		the sg table for the buffer if dmap_cnt is not zero
51 * @pages:		flat array of pages in the buffer -- used by fault
52 *			handler and only valid for buffers that are faulted in
53 * @vmas:		list of vma's mapping this buffer
54 * @handle_count:	count of handles referencing this buffer
55 * @task_comm:		taskcomm of last client to reference this buffer in a
56 *			handle, used for debugging
57 * @pid:		pid of last client to reference this buffer in a
58 *			handle, used for debugging
59*/
60struct ion_buffer {
61	struct kref ref;
62	union {
63		struct rb_node node;
64		struct list_head list;
65	};
66	struct ion_device *dev;
67	struct ion_heap *heap;
68	unsigned long flags;
69	size_t size;
70	union {
71		void *priv_virt;
72		ion_phys_addr_t priv_phys;
73	};
74	struct mutex lock;
75	int kmap_cnt;
76	void *vaddr;
77	int dmap_cnt;
78	struct sg_table *sg_table;
79	struct page **pages;
80	struct list_head vmas;
81	/* used to track orphaned buffers */
82	int handle_count;
83	char task_comm[TASK_COMM_LEN];
84	pid_t pid;
85};
86void ion_buffer_destroy(struct ion_buffer *buffer);
87
88/**
89 * struct ion_heap_ops - ops to operate on a given heap
90 * @allocate:		allocate memory
91 * @free:		free memory
92 * @phys		get physical address of a buffer (only define on
93 *			physically contiguous heaps)
94 * @map_dma		map the memory for dma to a scatterlist
95 * @unmap_dma		unmap the memory for dma
96 * @map_kernel		map memory to the kernel
97 * @unmap_kernel	unmap memory to the kernel
98 * @map_user		map memory to userspace
99 *
100 * allocate, phys, and map_user return 0 on success, -errno on error.
101 * map_dma and map_kernel return pointer on success, ERR_PTR on error.
102 */
103struct ion_heap_ops {
104	int (*allocate)(struct ion_heap *heap,
105			struct ion_buffer *buffer, unsigned long len,
106			unsigned long align, unsigned long flags);
107	void (*free)(struct ion_buffer *buffer);
108	int (*phys)(struct ion_heap *heap, struct ion_buffer *buffer,
109		    ion_phys_addr_t *addr, size_t *len);
110	struct sg_table * (*map_dma)(struct ion_heap *heap,
111				     struct ion_buffer *buffer);
112	void (*unmap_dma)(struct ion_heap *heap, struct ion_buffer *buffer);
113	void * (*map_kernel)(struct ion_heap *heap, struct ion_buffer *buffer);
114	void (*unmap_kernel)(struct ion_heap *heap, struct ion_buffer *buffer);
115	int (*map_user)(struct ion_heap *mapper, struct ion_buffer *buffer,
116			struct vm_area_struct *vma);
117	int (*shrink)(struct ion_heap *heap, gfp_t gfp_mask, int nr_to_scan);
118};
119
120/**
121 * heap flags - flags between the heaps and core ion code
122 */
123#define ION_HEAP_FLAG_DEFER_FREE (1 << 0)
124
125/**
126 * struct ion_heap - represents a heap in the system
127 * @node:		rb node to put the heap on the device's tree of heaps
128 * @dev:		back pointer to the ion_device
129 * @type:		type of heap
130 * @ops:		ops struct as above
131 * @flags:		flags
132 * @id:			id of heap, also indicates priority of this heap when
133 *			allocating.  These are specified by platform data and
134 *			MUST be unique
135 * @name:		used for debugging
136 * @shrinker:		a shrinker for the heap
137 * @free_list:		free list head if deferred free is used
138 * @free_list_size	size of the deferred free list in bytes
139 * @lock:		protects the free list
140 * @waitqueue:		queue to wait on from deferred free thread
141 * @task:		task struct of deferred free thread
142 * @debug_show:		called when heap debug file is read to add any
143 *			heap specific debug info to output
144 *
145 * Represents a pool of memory from which buffers can be made.  In some
146 * systems the only heap is regular system memory allocated via vmalloc.
147 * On others, some blocks might require large physically contiguous buffers
148 * that are allocated from a specially reserved heap.
149 */
150struct ion_heap {
151	struct plist_node node;
152	struct ion_device *dev;
153	enum ion_heap_type type;
154	struct ion_heap_ops *ops;
155	unsigned long flags;
156	unsigned int id;
157	const char *name;
158	struct shrinker shrinker;
159	struct list_head free_list;
160	size_t free_list_size;
161	spinlock_t free_lock;
162	wait_queue_head_t waitqueue;
163	struct task_struct *task;
164	int (*debug_show)(struct ion_heap *heap, struct seq_file *, void *);
165};
166
167/**
168 * ion_buffer_cached - this ion buffer is cached
169 * @buffer:		buffer
170 *
171 * indicates whether this ion buffer is cached
172 */
173bool ion_buffer_cached(struct ion_buffer *buffer);
174
175/**
176 * ion_buffer_fault_user_mappings - fault in user mappings of this buffer
177 * @buffer:		buffer
178 *
179 * indicates whether userspace mappings of this buffer will be faulted
180 * in, this can affect how buffers are allocated from the heap.
181 */
182bool ion_buffer_fault_user_mappings(struct ion_buffer *buffer);
183
184/**
185 * ion_device_create - allocates and returns an ion device
186 * @custom_ioctl:	arch specific ioctl function if applicable
187 *
188 * returns a valid device or -PTR_ERR
189 */
190struct ion_device *ion_device_create(long (*custom_ioctl)
191				     (struct ion_client *client,
192				      unsigned int cmd,
193				      unsigned long arg));
194
195/**
196 * ion_device_destroy - free and device and it's resource
197 * @dev:		the device
198 */
199void ion_device_destroy(struct ion_device *dev);
200
201/**
202 * ion_device_add_heap - adds a heap to the ion device
203 * @dev:		the device
204 * @heap:		the heap to add
205 */
206void ion_device_add_heap(struct ion_device *dev, struct ion_heap *heap);
207
208/**
209 * some helpers for common operations on buffers using the sg_table
210 * and vaddr fields
211 */
212void *ion_heap_map_kernel(struct ion_heap *, struct ion_buffer *);
213void ion_heap_unmap_kernel(struct ion_heap *, struct ion_buffer *);
214int ion_heap_map_user(struct ion_heap *, struct ion_buffer *,
215			struct vm_area_struct *);
216int ion_heap_buffer_zero(struct ion_buffer *buffer);
217int ion_heap_pages_zero(struct page *page, size_t size, pgprot_t pgprot);
218
219/**
220 * ion_heap_init_shrinker
221 * @heap:		the heap
222 *
223 * If a heap sets the ION_HEAP_FLAG_DEFER_FREE flag or defines the shrink op
224 * this function will be called to setup a shrinker to shrink the freelists
225 * and call the heap's shrink op.
226 */
227void ion_heap_init_shrinker(struct ion_heap *heap);
228
229/**
230 * ion_heap_init_deferred_free -- initialize deferred free functionality
231 * @heap:		the heap
232 *
233 * If a heap sets the ION_HEAP_FLAG_DEFER_FREE flag this function will
234 * be called to setup deferred frees. Calls to free the buffer will
235 * return immediately and the actual free will occur some time later
236 */
237int ion_heap_init_deferred_free(struct ion_heap *heap);
238
239/**
240 * ion_heap_freelist_add - add a buffer to the deferred free list
241 * @heap:		the heap
242 * @buffer:		the buffer
243 *
244 * Adds an item to the deferred freelist.
245 */
246void ion_heap_freelist_add(struct ion_heap *heap, struct ion_buffer *buffer);
247
248/**
249 * ion_heap_freelist_drain - drain the deferred free list
250 * @heap:		the heap
251 * @size:		ammount of memory to drain in bytes
252 *
253 * Drains the indicated amount of memory from the deferred freelist immediately.
254 * Returns the total amount freed.  The total freed may be higher depending
255 * on the size of the items in the list, or lower if there is insufficient
256 * total memory on the freelist.
257 */
258size_t ion_heap_freelist_drain(struct ion_heap *heap, size_t size);
259
260/**
261 * ion_heap_freelist_size - returns the size of the freelist in bytes
262 * @heap:		the heap
263 */
264size_t ion_heap_freelist_size(struct ion_heap *heap);
265
266
267/**
268 * functions for creating and destroying the built in ion heaps.
269 * architectures can add their own custom architecture specific
270 * heaps as appropriate.
271 */
272
273struct ion_heap *ion_heap_create(struct ion_platform_heap *);
274void ion_heap_destroy(struct ion_heap *);
275struct ion_heap *ion_system_heap_create(struct ion_platform_heap *);
276void ion_system_heap_destroy(struct ion_heap *);
277
278struct ion_heap *ion_system_contig_heap_create(struct ion_platform_heap *);
279void ion_system_contig_heap_destroy(struct ion_heap *);
280
281struct ion_heap *ion_carveout_heap_create(struct ion_platform_heap *);
282void ion_carveout_heap_destroy(struct ion_heap *);
283
284struct ion_heap *ion_chunk_heap_create(struct ion_platform_heap *);
285void ion_chunk_heap_destroy(struct ion_heap *);
286struct ion_heap *ion_cma_heap_create(struct ion_platform_heap *);
287void ion_cma_heap_destroy(struct ion_heap *);
288
289/**
290 * kernel api to allocate/free from carveout -- used when carveout is
291 * used to back an architecture specific custom heap
292 */
293ion_phys_addr_t ion_carveout_allocate(struct ion_heap *heap, unsigned long size,
294				      unsigned long align);
295void ion_carveout_free(struct ion_heap *heap, ion_phys_addr_t addr,
296		       unsigned long size);
297/**
298 * The carveout heap returns physical addresses, since 0 may be a valid
299 * physical address, this is used to indicate allocation failed
300 */
301#define ION_CARVEOUT_ALLOCATE_FAIL -1
302
303/**
304 * functions for creating and destroying a heap pool -- allows you
305 * to keep a pool of pre allocated memory to use from your heap.  Keeping
306 * a pool of memory that is ready for dma, ie any cached mapping have been
307 * invalidated from the cache, provides a significant peformance benefit on
308 * many systems */
309
310/**
311 * struct ion_page_pool - pagepool struct
312 * @high_count:		number of highmem items in the pool
313 * @low_count:		number of lowmem items in the pool
314 * @high_items:		list of highmem items
315 * @low_items:		list of lowmem items
316 * @mutex:		lock protecting this struct and especially the count
317 *			item list
318 * @gfp_mask:		gfp_mask to use from alloc
319 * @order:		order of pages in the pool
320 * @list:		plist node for list of pools
321 *
322 * Allows you to keep a pool of pre allocated pages to use from your heap.
323 * Keeping a pool of pages that is ready for dma, ie any cached mapping have
324 * been invalidated from the cache, provides a significant peformance benefit
325 * on many systems
326 */
327struct ion_page_pool {
328	int high_count;
329	int low_count;
330	struct list_head high_items;
331	struct list_head low_items;
332	struct mutex mutex;
333	gfp_t gfp_mask;
334	unsigned int order;
335	struct plist_node list;
336};
337
338struct ion_page_pool *ion_page_pool_create(gfp_t gfp_mask, unsigned int order);
339void ion_page_pool_destroy(struct ion_page_pool *);
340void *ion_page_pool_alloc(struct ion_page_pool *);
341void ion_page_pool_free(struct ion_page_pool *, struct page *);
342
343/** ion_page_pool_shrink - shrinks the size of the memory cached in the pool
344 * @pool:		the pool
345 * @gfp_mask:		the memory type to reclaim
346 * @nr_to_scan:		number of items to shrink in pages
347 *
348 * returns the number of items freed in pages
349 */
350int ion_page_pool_shrink(struct ion_page_pool *pool, gfp_t gfp_mask,
351			  int nr_to_scan);
352
353/**
354 * ion_pages_sync_for_device - cache flush pages for use with the specified
355 *                             device
356 * @dev:		the device the pages will be used with
357 * @page:		the first page to be flushed
358 * @size:		size in bytes of region to be flushed
359 * @dir:		direction of dma transfer
360 */
361void ion_pages_sync_for_device(struct device *dev, struct page *page,
362		size_t size, enum dma_data_direction dir);
363
364#endif /* _ION_PRIV_H */
365