blob: e06b02675644a7aba59e1d2b11b4570ce66ffa9a [file] [log] [blame]
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -07001/*
2 * include/linux/ion.h
3 *
4 * Copyright (C) 2011 Google, Inc.
Mitchel Humpherysa75e4eb2012-12-14 16:12:23 -08005 * Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
Rebecca Schultz Zavinc80005a2011-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 _LINUX_ION_H
19#define _LINUX_ION_H
20
Laura Abbottabcb6f72011-10-04 16:26:49 -070021#include <linux/ioctl.h>
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070022#include <linux/types.h>
23
24struct ion_handle;
25/**
26 * enum ion_heap_types - list of all possible types of heaps
Iliyan Malchevf22301562011-07-06 16:53:21 -070027 * @ION_HEAP_TYPE_SYSTEM: memory allocated via vmalloc
28 * @ION_HEAP_TYPE_SYSTEM_CONTIG: memory allocated via kmalloc
29 * @ION_HEAP_TYPE_CARVEOUT: memory allocated from a prereserved
Olav Hauganb5be7992011-11-18 14:29:02 -080030 * carveout heap, allocations are physically
31 * contiguous
Olav Haugan0a852512012-01-09 10:20:55 -080032 * @ION_HEAP_END: helper for iterating over heaps
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070033 */
34enum ion_heap_type {
35 ION_HEAP_TYPE_SYSTEM,
36 ION_HEAP_TYPE_SYSTEM_CONTIG,
37 ION_HEAP_TYPE_CARVEOUT,
Rebecca Schultz Zavind2ce6f82012-11-15 10:52:45 -080038 ION_HEAP_TYPE_CHUNK,
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070039 ION_HEAP_TYPE_CUSTOM, /* must be last so device specific heaps always
40 are at the end of this enum */
Rebecca Schultz Zavine6ee1242011-06-30 12:19:55 -070041 ION_NUM_HEAPS,
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070042};
43
Iliyan Malchevf22301562011-07-06 16:53:21 -070044#define ION_HEAP_SYSTEM_MASK (1 << ION_HEAP_TYPE_SYSTEM)
45#define ION_HEAP_SYSTEM_CONTIG_MASK (1 << ION_HEAP_TYPE_SYSTEM_CONTIG)
46#define ION_HEAP_CARVEOUT_MASK (1 << ION_HEAP_TYPE_CARVEOUT)
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070047
Mitchel Humpherys227a6582012-09-11 15:59:11 -070048/**
49 * heap flags - the lower 16 bits are used by core ion, the upper 16
50 * bits are reserved for use by the heaps themselves.
51 */
52#define ION_FLAG_CACHED 1 /* mappings of this buffer should be
53 cached, ion will do cache
54 maintenance when the buffer is
55 mapped for dma */
Rebecca Schultz Zavin3edb9002012-09-19 23:31:05 -070056#define ION_FLAG_CACHED_NEEDS_SYNC 2 /* mappings of this buffer will created
57 at mmap time, if this is set
58 caches must be managed manually */
Laura Abbotta2e93632011-08-19 13:36:32 -070059
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070060#ifdef __KERNEL__
Laura Abbott65576962011-10-31 12:13:25 -070061#include <linux/err.h>
Laura Abbottcffdff52011-09-23 10:40:19 -070062#include <mach/ion.h>
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070063struct ion_device;
64struct ion_heap;
65struct ion_mapper;
66struct ion_client;
67struct ion_buffer;
68
69/* This should be removed some day when phys_addr_t's are fully
70 plumbed in the kernel, and all instances of ion_phys_addr_t should
71 be converted to phys_addr_t. For the time being many kernel interfaces
72 do not accept phys_addr_t's that would have to */
73#define ion_phys_addr_t unsigned long
74
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070075/**
76 * struct ion_platform_heap - defines a heap in the given platform
77 * @type: type of the heap from ion_heap_type enum
Olav Hauganee0f7802011-12-19 13:28:57 -080078 * @id: unique identifier for heap. When allocating (lower numbers
Olav Hauganb5be7992011-11-18 14:29:02 -080079 * will be allocated from first)
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070080 * @name: used for debug purposes
81 * @base: base address of heap in physical memory if applicable
82 * @size: size of the heap in bytes if applicable
Laura Abbottcaafeea2011-12-13 11:43:10 -080083 * @memory_type:Memory type used for the heap
Olav Haugan85c95402012-05-30 17:32:37 -070084 * @has_outer_cache: set to 1 if outer cache is used, 0 otherwise.
Laura Abbottcaafeea2011-12-13 11:43:10 -080085 * @extra_data: Extra data specific to each heap type
Benjamin Gaignard8dff0a62012-06-25 15:30:18 -070086 * @priv: heap private data
Rebecca Schultz Zavind2ce6f82012-11-15 10:52:45 -080087 * @align: required alignment in physical memory if applicable
88 * @priv: private info passed from the board file
89 *
90 * Provided by the board file.
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070091 */
92struct ion_platform_heap {
93 enum ion_heap_type type;
Rebecca Schultz Zavine6ee1242011-06-30 12:19:55 -070094 unsigned int id;
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070095 const char *name;
96 ion_phys_addr_t base;
97 size_t size;
Laura Abbotta2e93632011-08-19 13:36:32 -070098 enum ion_memory_types memory_type;
Olav Haugan85c95402012-05-30 17:32:37 -070099 unsigned int has_outer_cache;
Olav Haugan0703dbf2011-12-19 17:53:38 -0800100 void *extra_data;
Rebecca Schultz Zavind2ce6f82012-11-15 10:52:45 -0800101 ion_phys_addr_t align;
Benjamin Gaignard8dff0a62012-06-25 15:30:18 -0700102 void *priv;
Olav Haugan0703dbf2011-12-19 17:53:38 -0800103};
104
Laura Abbottcaafeea2011-12-13 11:43:10 -0800105/**
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700106 * struct ion_platform_data - array of platform heaps passed from board file
Olav Haugan85c95402012-05-30 17:32:37 -0700107 * @has_outer_cache: set to 1 if outer cache is used, 0 otherwise.
Alex Bird27ca6612011-11-01 14:40:06 -0700108 * @nr: number of structures in the array
Alex Bird27ca6612011-11-01 14:40:06 -0700109 * @heaps: array of platform_heap structions
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700110 *
111 * Provided by the board file in the form of platform data to a platform device.
112 */
113struct ion_platform_data {
Olav Haugan85c95402012-05-30 17:32:37 -0700114 unsigned int has_outer_cache;
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700115 int nr;
Benjamin Gaignard63d81032012-06-25 15:27:30 -0700116 struct ion_platform_heap *heaps;
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700117};
118
Jordan Crouse8cd48322011-10-12 17:05:19 -0600119#ifdef CONFIG_ION
120
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700121/**
Laura Abbottb14ed962012-01-30 14:18:08 -0800122 * ion_reserve() - reserve memory for ion heaps if applicable
123 * @data: platform data specifying starting physical address and
124 * size
125 *
126 * Calls memblock reserve to set aside memory for heaps that are
127 * located at specific memory addresses or of specfic sizes not
128 * managed by the kernel
129 */
130void ion_reserve(struct ion_platform_data *data);
131
132/**
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700133 * ion_client_create() - allocate a client and returns it
134 * @dev: the global ion device
135 * @heap_mask: mask of heaps this client can allocate from
136 * @name: used for debugging
137 */
138struct ion_client *ion_client_create(struct ion_device *dev,
139 unsigned int heap_mask, const char *name);
140
141/**
142 * ion_client_destroy() - free's a client and all it's handles
143 * @client: the client
144 *
145 * Free the provided client and all it's resources including
146 * any handles it is holding.
147 */
148void ion_client_destroy(struct ion_client *client);
149
150/**
151 * ion_alloc - allocate ion memory
152 * @client: the client
153 * @len: size of the allocation
154 * @align: requested allocation alignment, lots of hardware blocks have
155 * alignment requirements of some kind
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700156 * @heap_mask: mask of heaps to allocate from, if multiple bits are set
Rebecca Schultz Zavine6ee1242011-06-30 12:19:55 -0700157 * heaps will be tried in order from lowest to highest order bit
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700158 * @flags: heap flags, the low 16 bits are consumed by ion, the high 16
159 * bits are passed on to the respective heap and can be heap
160 * custom
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700161 *
162 * Allocate memory in one of the heaps provided in heap mask and return
163 * an opaque handle to it.
164 */
165struct ion_handle *ion_alloc(struct ion_client *client, size_t len,
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700166 size_t align, unsigned int heap_mask,
167 unsigned int flags);
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700168
169/**
170 * ion_free - free a handle
171 * @client: the client
172 * @handle: the handle to free
173 *
174 * Free the provided handle.
175 */
176void ion_free(struct ion_client *client, struct ion_handle *handle);
177
178/**
179 * ion_phys - returns the physical address and len of a handle
180 * @client: the client
181 * @handle: the handle
182 * @addr: a pointer to put the address in
183 * @len: a pointer to put the length in
184 *
185 * This function queries the heap for a particular handle to get the
186 * handle's physical address. It't output is only correct if
187 * a heap returns physically contiguous memory -- in other cases
Laura Abbottb14ed962012-01-30 14:18:08 -0800188 * this api should not be implemented -- ion_sg_table should be used
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700189 * instead. Returns -EINVAL if the handle is invalid. This has
190 * no implications on the reference counting of the handle --
191 * the returned value may not be valid if the caller is not
192 * holding a reference.
193 */
194int ion_phys(struct ion_client *client, struct ion_handle *handle,
195 ion_phys_addr_t *addr, size_t *len);
196
197/**
Laura Abbottb14ed962012-01-30 14:18:08 -0800198 * ion_map_dma - return an sg_table describing a handle
199 * @client: the client
200 * @handle: the handle
201 *
202 * This function returns the sg_table describing
203 * a particular ion handle.
204 */
205struct sg_table *ion_sg_table(struct ion_client *client,
206 struct ion_handle *handle);
207
208/**
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700209 * ion_map_kernel - create mapping for the given handle
210 * @client: the client
211 * @handle: handle to map
212 *
213 * Map the given handle into the kernel and return a kernel address that
Mitchel Humpherysc4dba0a2012-11-05 14:06:18 -0800214 * can be used to access this address.
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700215 */
Mitchel Humpherys911b4b72012-09-12 14:42:50 -0700216void *ion_map_kernel(struct ion_client *client, struct ion_handle *handle);
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700217
218/**
219 * ion_unmap_kernel() - destroy a kernel mapping for a handle
220 * @client: the client
221 * @handle: handle to unmap
222 */
223void ion_unmap_kernel(struct ion_client *client, struct ion_handle *handle);
224
225/**
Laura Abbottb14ed962012-01-30 14:18:08 -0800226 * ion_share_dma_buf() - given an ion client, create a dma-buf fd
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700227 * @client: the client
Laura Abbottb14ed962012-01-30 14:18:08 -0800228 * @handle: the handle
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700229 */
Laura Abbottb14ed962012-01-30 14:18:08 -0800230int ion_share_dma_buf(struct ion_client *client, struct ion_handle *handle);
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700231
232/**
Laura Abbottb14ed962012-01-30 14:18:08 -0800233 * ion_import_dma_buf() - given an dma-buf fd from the ion exporter get handle
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700234 * @client: the client
Laura Abbottb14ed962012-01-30 14:18:08 -0800235 * @fd: the dma-buf fd
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700236 *
Laura Abbottb14ed962012-01-30 14:18:08 -0800237 * Given an dma-buf fd that was allocated through ion via ion_share_dma_buf,
238 * import that fd and return a handle representing it. If a dma-buf from
239 * another exporter is passed in this function will return ERR_PTR(-EINVAL)
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700240 */
Laura Abbottb14ed962012-01-30 14:18:08 -0800241struct ion_handle *ion_import_dma_buf(struct ion_client *client, int fd);
Laura Abbott273dd8e2011-10-12 14:26:33 -0700242
Jordan Crouse8cd48322011-10-12 17:05:19 -0600243#else
Laura Abbottb14ed962012-01-30 14:18:08 -0800244static inline void ion_reserve(struct ion_platform_data *data)
245{
246
247}
248
Jordan Crouse8cd48322011-10-12 17:05:19 -0600249static inline struct ion_client *ion_client_create(struct ion_device *dev,
250 unsigned int heap_mask, const char *name)
251{
252 return ERR_PTR(-ENODEV);
253}
Laura Abbott273dd8e2011-10-12 14:26:33 -0700254
Jordan Crouse8cd48322011-10-12 17:05:19 -0600255static inline void ion_client_destroy(struct ion_client *client) { }
256
257static inline struct ion_handle *ion_alloc(struct ion_client *client,
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700258 size_t len, size_t align,
259 unsigned int heap_mask,
260 unsigned int flags)
Jordan Crouse8cd48322011-10-12 17:05:19 -0600261{
262 return ERR_PTR(-ENODEV);
263}
264
265static inline void ion_free(struct ion_client *client,
266 struct ion_handle *handle) { }
267
268
269static inline int ion_phys(struct ion_client *client,
270 struct ion_handle *handle, ion_phys_addr_t *addr, size_t *len)
271{
272 return -ENODEV;
273}
274
Laura Abbottb14ed962012-01-30 14:18:08 -0800275static inline struct sg_table *ion_sg_table(struct ion_client *client,
276 struct ion_handle *handle)
277{
278 return ERR_PTR(-ENODEV);
279}
280
Jordan Crouse8cd48322011-10-12 17:05:19 -0600281static inline void *ion_map_kernel(struct ion_client *client,
Mitchel Humpherysbaa86922012-11-02 16:35:39 -0700282 struct ion_handle *handle)
Jordan Crouse8cd48322011-10-12 17:05:19 -0600283{
284 return ERR_PTR(-ENODEV);
285}
286
287static inline void ion_unmap_kernel(struct ion_client *client,
288 struct ion_handle *handle) { }
289
Laura Abbottb14ed962012-01-30 14:18:08 -0800290static inline int ion_share_dma_buf(struct ion_client *client, struct ion_handle *handle)
Jordan Crouse8cd48322011-10-12 17:05:19 -0600291{
Laura Abbottb14ed962012-01-30 14:18:08 -0800292 return -ENODEV;
Jordan Crouse8cd48322011-10-12 17:05:19 -0600293}
294
Laura Abbottb14ed962012-01-30 14:18:08 -0800295static inline struct ion_handle *ion_import_dma_buf(struct ion_client *client, int fd)
Jordan Crouse8cd48322011-10-12 17:05:19 -0600296{
297 return ERR_PTR(-ENODEV);
298}
299
300static inline int ion_handle_get_flags(struct ion_client *client,
301 struct ion_handle *handle, unsigned long *flags)
302{
303 return -ENODEV;
304}
Laura Abbott8c017362011-09-22 20:59:12 -0700305
Jordan Crouse8cd48322011-10-12 17:05:19 -0600306#endif /* CONFIG_ION */
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700307#endif /* __KERNEL__ */
308
309/**
310 * DOC: Ion Userspace API
311 *
312 * create a client by opening /dev/ion
313 * most operations handled via following ioctls
314 *
315 */
316
317/**
318 * struct ion_allocation_data - metadata passed from userspace for allocations
319 * @len: size of the allocation
320 * @align: required alignment of the allocation
Hanumant Singh7d72bad2012-08-29 18:39:44 -0700321 * @heap_mask: mask of heaps to allocate from
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700322 * @flags: flags passed to heap
323 * @handle: pointer that will be populated with a cookie to use to refer
324 * to this allocation
325 *
326 * Provided by userspace as an argument to the ioctl
327 */
328struct ion_allocation_data {
329 size_t len;
330 size_t align;
Laura Abbott0eec1512012-08-27 13:14:39 -0700331 unsigned int heap_mask;
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700332 unsigned int flags;
333 struct ion_handle *handle;
334};
335
336/**
337 * struct ion_fd_data - metadata passed to/from userspace for a handle/fd pair
338 * @handle: a handle
339 * @fd: a file descriptor representing that handle
340 *
341 * For ION_IOC_SHARE or ION_IOC_MAP userspace populates the handle field with
342 * the handle returned from ion alloc, and the kernel returns the file
343 * descriptor to share or map in the fd field. For ION_IOC_IMPORT, userspace
344 * provides the file descriptor and the kernel returns the handle.
345 */
346struct ion_fd_data {
347 struct ion_handle *handle;
348 int fd;
349};
350
351/**
352 * struct ion_handle_data - a handle passed to/from the kernel
353 * @handle: a handle
354 */
355struct ion_handle_data {
356 struct ion_handle *handle;
357};
358
Rebecca Schultz Zavine6ee1242011-06-30 12:19:55 -0700359/**
360 * struct ion_custom_data - metadata passed to/from userspace for a custom ioctl
361 * @cmd: the custom ioctl function to call
362 * @arg: additional data to pass to the custom ioctl, typically a user
363 * pointer to a predefined structure
364 *
365 * This works just like the regular cmd and arg fields of an ioctl.
366 */
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700367struct ion_custom_data {
368 unsigned int cmd;
369 unsigned long arg;
370};
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700371#define ION_IOC_MAGIC 'I'
372
373/**
374 * DOC: ION_IOC_ALLOC - allocate memory
375 *
376 * Takes an ion_allocation_data struct and returns it with the handle field
377 * populated with the opaque handle for the allocation.
378 */
379#define ION_IOC_ALLOC _IOWR(ION_IOC_MAGIC, 0, \
380 struct ion_allocation_data)
381
382/**
383 * DOC: ION_IOC_FREE - free memory
384 *
385 * Takes an ion_handle_data struct and frees the handle.
386 */
387#define ION_IOC_FREE _IOWR(ION_IOC_MAGIC, 1, struct ion_handle_data)
388
389/**
390 * DOC: ION_IOC_MAP - get a file descriptor to mmap
391 *
392 * Takes an ion_fd_data struct with the handle field populated with a valid
393 * opaque handle. Returns the struct with the fd field set to a file
394 * descriptor open in the current address space. This file descriptor
395 * can then be used as an argument to mmap.
396 */
397#define ION_IOC_MAP _IOWR(ION_IOC_MAGIC, 2, struct ion_fd_data)
398
399/**
400 * DOC: ION_IOC_SHARE - creates a file descriptor to use to share an allocation
401 *
402 * Takes an ion_fd_data struct with the handle field populated with a valid
403 * opaque handle. Returns the struct with the fd field set to a file
404 * descriptor open in the current address space. This file descriptor
405 * can then be passed to another process. The corresponding opaque handle can
406 * be retrieved via ION_IOC_IMPORT.
407 */
408#define ION_IOC_SHARE _IOWR(ION_IOC_MAGIC, 4, struct ion_fd_data)
409
410/**
411 * DOC: ION_IOC_IMPORT - imports a shared file descriptor
412 *
413 * Takes an ion_fd_data struct with the fd field populated with a valid file
414 * descriptor obtained from ION_IOC_SHARE and returns the struct with the handle
415 * filed set to the corresponding opaque handle.
416 */
Laura Abbott0eec1512012-08-27 13:14:39 -0700417#define ION_IOC_IMPORT _IOWR(ION_IOC_MAGIC, 5, struct ion_fd_data)
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700418
419/**
Rebecca Schultz Zavinf4419222012-06-26 13:17:34 -0700420 * DOC: ION_IOC_SYNC - syncs a shared file descriptors to memory
421 *
422 * Deprecated in favor of using the dma_buf api's correctly (syncing
423 * will happend automatically when the buffer is mapped to a device).
424 * If necessary should be used after touching a cached buffer from the cpu,
425 * this will make the buffer in memory coherent.
426 */
427#define ION_IOC_SYNC _IOWR(ION_IOC_MAGIC, 7, struct ion_fd_data)
428
429/**
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700430 * DOC: ION_IOC_CUSTOM - call architecture specific ion ioctl
431 *
432 * Takes the argument of the architecture specific ioctl to call and
433 * passes appropriate userdata for that ioctl
434 */
435#define ION_IOC_CUSTOM _IOWR(ION_IOC_MAGIC, 6, struct ion_custom_data)
436
Laura Abbottabcb6f72011-10-04 16:26:49 -0700437
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -0700438#endif /* _LINUX_ION_H */