1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/*
* include/linux/omap_ion.h
*
* Copyright (C) 2011 Google, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef _LINUX_OMAP_ION_H
#define _LINUX_OMAP_ION_H
#include <linux/types.h>
/**
* struct omap_ion_tiler_alloc_data - metadata passed from userspace for allocations
* @w: width of the allocation
* @h: height of the allocation
* @fmt: format of the data (8, 16, 32bit or page)
* @flags: flags passed to heap
* @stride: stride of the allocation, returned to caller from kernel
* @handle: pointer that will be populated with a cookie to use to refer
* to this allocation
*
* Provided by userspace as an argument to the ioctl
*/
struct omap_ion_tiler_alloc_data {
size_t w;
size_t h;
int fmt;
unsigned int flags;
struct ion_handle *handle;
size_t stride;
size_t offset;
};
#ifdef __KERNEL__
int omap_ion_tiler_alloc(struct ion_client *client,
struct omap_ion_tiler_alloc_data *data);
int omap_ion_nonsecure_tiler_alloc(struct ion_client *client,
struct omap_ion_tiler_alloc_data *data);
/* given a handle in the tiler, return a list of tiler pages that back it */
int omap_tiler_pages(struct ion_client *client, struct ion_handle *handle,
int *n, u32 ** tiler_pages);
#endif /* __KERNEL__ */
/* additional heaps used only on omap */
enum {
OMAP_ION_HEAP_TYPE_TILER = ION_HEAP_TYPE_CUSTOM + 1,
};
#define OMAP_ION_HEAP_TILER_MASK (1 << OMAP_ION_HEAP_TYPE_TILER)
enum {
OMAP_ION_TILER_ALLOC,
};
/**
* These should match the defines in the tiler driver
*/
enum {
TILER_PIXEL_FMT_MIN = 0,
TILER_PIXEL_FMT_8BIT = 0,
TILER_PIXEL_FMT_16BIT = 1,
TILER_PIXEL_FMT_32BIT = 2,
TILER_PIXEL_FMT_PAGE = 3,
TILER_PIXEL_FMT_MAX = 3
};
/**
* List of heaps in the system
*/
enum {
OMAP_ION_HEAP_LARGE_SURFACES,
OMAP_ION_HEAP_TILER,
OMAP_ION_HEAP_SECURE_INPUT,
OMAP_ION_HEAP_NONSECURE_TILER,
};
#endif /* _LINUX_ION_H */
|