blob: 8f411dc5192cc3692c2408b9f596e98b314c8c54 [file] [log] [blame]
Iliyan Malchev202a77d2012-06-11 14:41:12 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef GRALLOC_PRIV_H_
19#define GRALLOC_PRIV_H_
20
21#include <stdint.h>
22#include <limits.h>
23#include <sys/cdefs.h>
24#include <hardware/gralloc.h>
25#include <pthread.h>
26#include <errno.h>
27#include <unistd.h>
28
29#include <cutils/native_handle.h>
30
Iliyan Malchev202a77d2012-06-11 14:41:12 -070031#include <cutils/log.h>
32
33enum {
34 /* gralloc usage bits indicating the type
35 * of allocation that should be used */
36
Iliyan Malchev202a77d2012-06-11 14:41:12 -070037 /* SYSTEM heap comes from kernel vmalloc,
38 * can never be uncached, is not secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070039 GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP = GRALLOC_USAGE_PRIVATE_0,
40 /* SF heap is used for application buffers, is not secured */
41 GRALLOC_USAGE_PRIVATE_UI_CONTIG_HEAP = GRALLOC_USAGE_PRIVATE_1,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070042 /* IOMMU heap comes from manually allocated pages,
43 * can be cached/uncached, is not secured */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070044 GRALLOC_USAGE_PRIVATE_IOMMU_HEAP = GRALLOC_USAGE_PRIVATE_2,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070045 /* MM heap is a carveout heap for video, can be secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070046 GRALLOC_USAGE_PRIVATE_MM_HEAP = GRALLOC_USAGE_PRIVATE_3,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070047 /* CAMERA heap is a carveout heap for camera, is not secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070048 GRALLOC_USAGE_PRIVATE_CAMERA_HEAP = 0x01000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070049
50 /* Set this for allocating uncached memory (using O_DSYNC)
51 * cannot be used with noncontiguous heaps */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070052 GRALLOC_USAGE_PRIVATE_UNCACHED = 0x02000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070053
54 /* This flag can be set to disable genlock synchronization
55 * for the gralloc buffer. If this flag is set the caller
56 * is required to perform explicit synchronization.
57 * WARNING - flag is outside the standard PRIVATE region
58 * and may need to be moved if the gralloc API changes
59 */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070060 GRALLOC_USAGE_PRIVATE_UNSYNCHRONIZED = 0X04000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070061
62 /* Buffer content should be displayed on an external display only */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070063 GRALLOC_USAGE_EXTERNAL_ONLY = 0x08000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070064
65 /* Only this buffer content should be displayed on external, even if
66 * other EXTERNAL_ONLY buffers are available. Used during suspend.
67 */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070068 GRALLOC_USAGE_EXTERNAL_BLOCK = 0x00100000,
Naseer Ahmed29a26812012-06-14 00:56:20 -070069
70 /* Use this flag to request content protected buffers. Please note
71 * that this flag is different from the GRALLOC_USAGE_PROTECTED flag
72 * which can be used for buffers that are not secured for DRM
73 * but still need to be protected from screen captures
74 * 0x00040000 is reserved and these values are subject to change.
75 */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070076 GRALLOC_USAGE_PRIVATE_CP_BUFFER = 0x00200000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070077};
78
79enum {
80 /* Gralloc perform enums
81 */
82 GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER = 0x080000001,
83};
84
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070085#define GRALLOC_HEAP_MASK (GRALLOC_USAGE_PRIVATE_UI_CONTIG_HEAP |\
86 GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP |\
87 GRALLOC_USAGE_PRIVATE_IOMMU_HEAP |\
88 GRALLOC_USAGE_PRIVATE_MM_HEAP |\
89 GRALLOC_USAGE_PRIVATE_CAMERA_HEAP)
Iliyan Malchev202a77d2012-06-11 14:41:12 -070090
Iliyan Malchev202a77d2012-06-11 14:41:12 -070091#define INTERLACE_MASK 0x80
92#define S3D_FORMAT_MASK 0xFF000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070093/*****************************************************************************/
Iliyan Malchev202a77d2012-06-11 14:41:12 -070094enum {
95 /* OEM specific HAL formats */
Naseer Ahmed65f16562012-06-15 20:53:42 -070096 HAL_PIXEL_FORMAT_NV12_ENCODEABLE = 0x102,
97 HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED = 0x7FA30C03,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070098 HAL_PIXEL_FORMAT_YCbCr_420_SP = 0x109,
Naseer Ahmedad766cd2012-07-31 18:52:22 -070099 HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO = 0x7FA30C01,
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700100 HAL_PIXEL_FORMAT_YCrCb_422_SP = 0x10B,
101 HAL_PIXEL_FORMAT_R_8 = 0x10D,
102 HAL_PIXEL_FORMAT_RG_88 = 0x10E,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700103 HAL_PIXEL_FORMAT_YCbCr_444_SP = 0x10F,
104 HAL_PIXEL_FORMAT_YCrCb_444_SP = 0x110,
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700105 HAL_PIXEL_FORMAT_INTERLACE = 0x180,
106
107};
108
109/* possible formats for 3D content*/
110enum {
111 HAL_NO_3D = 0x0000,
112 HAL_3D_IN_SIDE_BY_SIDE_L_R = 0x10000,
113 HAL_3D_IN_TOP_BOTTOM = 0x20000,
114 HAL_3D_IN_INTERLEAVE = 0x40000,
115 HAL_3D_IN_SIDE_BY_SIDE_R_L = 0x80000,
116 HAL_3D_OUT_SIDE_BY_SIDE = 0x1000,
117 HAL_3D_OUT_TOP_BOTTOM = 0x2000,
118 HAL_3D_OUT_INTERLEAVE = 0x4000,
119 HAL_3D_OUT_MONOSCOPIC = 0x8000
120};
121
122enum {
Naseer Ahmed29a26812012-06-14 00:56:20 -0700123 BUFFER_TYPE_UI = 0,
124 BUFFER_TYPE_VIDEO
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700125};
126
127/*****************************************************************************/
128
129#ifdef __cplusplus
130struct private_handle_t : public native_handle {
131#else
Naseer Ahmed29a26812012-06-14 00:56:20 -0700132 struct private_handle_t {
133 native_handle_t nativeHandle;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700134#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700135 enum {
136 PRIV_FLAGS_FRAMEBUFFER = 0x00000001,
137 PRIV_FLAGS_USES_PMEM = 0x00000002,
138 PRIV_FLAGS_USES_PMEM_ADSP = 0x00000004,
139 PRIV_FLAGS_USES_ION = 0x00000008,
140 PRIV_FLAGS_USES_ASHMEM = 0x00000010,
141 PRIV_FLAGS_NEEDS_FLUSH = 0x00000020,
142 PRIV_FLAGS_DO_NOT_FLUSH = 0x00000040,
143 PRIV_FLAGS_SW_LOCK = 0x00000080,
144 PRIV_FLAGS_NONCONTIGUOUS_MEM = 0x00000100,
145 // Set by HWC when storing the handle
146 PRIV_FLAGS_HWC_LOCK = 0x00000200,
147 PRIV_FLAGS_SECURE_BUFFER = 0x00000400,
148 // For explicit synchronization
149 PRIV_FLAGS_UNSYNCHRONIZED = 0x00000800,
150 // Not mapped in userspace
151 PRIV_FLAGS_NOT_MAPPED = 0x00001000,
152 // Display on external only
153 PRIV_FLAGS_EXTERNAL_ONLY = 0x00002000,
154 // Display only this buffer on external
155 PRIV_FLAGS_EXTERNAL_BLOCK = 0x00004000,
156 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700157
Naseer Ahmed29a26812012-06-14 00:56:20 -0700158 // file-descriptors
159 int fd;
160 // genlock handle to be dup'd by the binder
161 int genlockHandle;
162 // ints
163 int magic;
164 int flags;
165 int size;
166 int offset;
167 int bufferType;
168 int base;
169 // The gpu address mapped into the mmu.
170 // If using ashmem, set to 0, they don't care
171 int gpuaddr;
172 int pid;
173 int format;
174 int width;
175 int height;
176 // local fd of the genlock device.
177 int genlockPrivFd;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700178
179#ifdef __cplusplus
Naseer Ahmed29a26812012-06-14 00:56:20 -0700180 static const int sNumInts = 12;
181 static const int sNumFds = 2;
182 static const int sMagic = 'gmsm';
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700183
Naseer Ahmed29a26812012-06-14 00:56:20 -0700184 private_handle_t(int fd, int size, int flags, int bufferType,
185 int format,int width, int height) :
186 fd(fd), genlockHandle(-1), magic(sMagic),
187 flags(flags), size(size), offset(0),
188 bufferType(bufferType), base(0), gpuaddr(0),
189 pid(getpid()), format(format),
190 width(width), height(height), genlockPrivFd(-1)
191 {
192 version = sizeof(native_handle);
193 numInts = sNumInts;
194 numFds = sNumFds;
195 }
196 ~private_handle_t() {
197 magic = 0;
198 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700199
Naseer Ahmed29a26812012-06-14 00:56:20 -0700200 bool usesPhysicallyContiguousMemory() {
201 return (flags & PRIV_FLAGS_USES_PMEM) != 0;
202 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700203
Naseer Ahmed29a26812012-06-14 00:56:20 -0700204 static int validate(const native_handle* h) {
205 const private_handle_t* hnd = (const private_handle_t*)h;
206 if (!h || h->version != sizeof(native_handle) ||
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700207 h->numInts != sNumInts || h->numFds != sNumFds ||
208 hnd->magic != sMagic)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700209 {
210 ALOGD("Invalid gralloc handle (at %p): "
211 "ver(%d/%d) ints(%d/%d) fds(%d/%d) magic(%c%c%c%c/%c%c%c%c)",
212 h,
213 h ? h->version : -1, sizeof(native_handle),
214 h ? h->numInts : -1, sNumInts,
215 h ? h->numFds : -1, sNumFds,
216 hnd ? (((hnd->magic >> 24) & 0xFF)?
217 ((hnd->magic >> 24) & 0xFF) : '-') : '?',
218 hnd ? (((hnd->magic >> 16) & 0xFF)?
219 ((hnd->magic >> 16) & 0xFF) : '-') : '?',
220 hnd ? (((hnd->magic >> 8) & 0xFF)?
221 ((hnd->magic >> 8) & 0xFF) : '-') : '?',
222 hnd ? (((hnd->magic >> 0) & 0xFF)?
223 ((hnd->magic >> 0) & 0xFF) : '-') : '?',
224 (sMagic >> 24) & 0xFF,
225 (sMagic >> 16) & 0xFF,
226 (sMagic >> 8) & 0xFF,
227 (sMagic >> 0) & 0xFF);
228 return -EINVAL;
229 }
230 return 0;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700231 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700232
Naseer Ahmed29a26812012-06-14 00:56:20 -0700233 static private_handle_t* dynamicCast(const native_handle* in) {
234 if (validate(in) == 0) {
235 return (private_handle_t*) in;
236 }
237 return NULL;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700238 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700239#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700240 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700241
242#endif /* GRALLOC_PRIV_H_ */