blob: 719a94171602feb9ccefca51c08f919197b04e0d [file] [log] [blame]
Iliyan Malchev202a77d2012-06-11 14:41:12 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
Naseer Ahmeda163b732013-02-12 14:53:33 -05003 * Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
Iliyan Malchev202a77d2012-06-11 14:41:12 -07004 *
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
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -080033#define ROUND_UP_PAGESIZE(x) ( (((unsigned long)(x)) + PAGE_SIZE-1) & \
34 (~(PAGE_SIZE-1)) )
35
Iliyan Malchev202a77d2012-06-11 14:41:12 -070036enum {
37 /* gralloc usage bits indicating the type
38 * of allocation that should be used */
39
Iliyan Malchev202a77d2012-06-11 14:41:12 -070040 /* SYSTEM heap comes from kernel vmalloc,
41 * can never be uncached, is not secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070042 GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP = GRALLOC_USAGE_PRIVATE_0,
43 /* SF heap is used for application buffers, is not secured */
44 GRALLOC_USAGE_PRIVATE_UI_CONTIG_HEAP = GRALLOC_USAGE_PRIVATE_1,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070045 /* IOMMU heap comes from manually allocated pages,
46 * can be cached/uncached, is not secured */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070047 GRALLOC_USAGE_PRIVATE_IOMMU_HEAP = GRALLOC_USAGE_PRIVATE_2,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070048 /* MM heap is a carveout heap for video, can be secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070049 GRALLOC_USAGE_PRIVATE_MM_HEAP = GRALLOC_USAGE_PRIVATE_3,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070050 /* CAMERA heap is a carveout heap for camera, is not secured*/
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070051 GRALLOC_USAGE_PRIVATE_CAMERA_HEAP = 0x01000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070052
53 /* Set this for allocating uncached memory (using O_DSYNC)
54 * cannot be used with noncontiguous heaps */
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070055 GRALLOC_USAGE_PRIVATE_UNCACHED = 0x02000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070056
Iliyan Malchev202a77d2012-06-11 14:41:12 -070057 /* Buffer content should be displayed on an external display only */
Naseer Ahmed4c588a22012-07-31 19:12:17 -070058 GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY = 0x08000000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070059
60 /* Only this buffer content should be displayed on external, even if
61 * other EXTERNAL_ONLY buffers are available. Used during suspend.
62 */
Naseer Ahmed4c588a22012-07-31 19:12:17 -070063 GRALLOC_USAGE_PRIVATE_EXTERNAL_BLOCK = 0x00100000,
64
65 /* Close Caption displayed on an external display only */
66 GRALLOC_USAGE_PRIVATE_EXTERNAL_CC = 0x00200000,
Naseer Ahmed29a26812012-06-14 00:56:20 -070067
68 /* Use this flag to request content protected buffers. Please note
69 * that this flag is different from the GRALLOC_USAGE_PROTECTED flag
70 * which can be used for buffers that are not secured for DRM
71 * but still need to be protected from screen captures
Naseer Ahmed29a26812012-06-14 00:56:20 -070072 */
Naseer Ahmed4c588a22012-07-31 19:12:17 -070073 GRALLOC_USAGE_PRIVATE_CP_BUFFER = 0x00400000,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070074};
75
76enum {
77 /* Gralloc perform enums
78 */
Naseer Ahmed74214722013-02-09 08:11:36 -050079 GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER = 1,
Naomi Luisa44100c2013-02-08 12:42:03 -080080 GRALLOC_MODULE_PERFORM_GET_STRIDE,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070081};
82
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070083#define GRALLOC_HEAP_MASK (GRALLOC_USAGE_PRIVATE_UI_CONTIG_HEAP |\
84 GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP |\
85 GRALLOC_USAGE_PRIVATE_IOMMU_HEAP |\
86 GRALLOC_USAGE_PRIVATE_MM_HEAP |\
87 GRALLOC_USAGE_PRIVATE_CAMERA_HEAP)
Iliyan Malchev202a77d2012-06-11 14:41:12 -070088
Iliyan Malchev202a77d2012-06-11 14:41:12 -070089#define INTERLACE_MASK 0x80
90#define S3D_FORMAT_MASK 0xFF000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070091/*****************************************************************************/
Iliyan Malchev202a77d2012-06-11 14:41:12 -070092enum {
93 /* OEM specific HAL formats */
Naseer Ahmed65f16562012-06-15 20:53:42 -070094 HAL_PIXEL_FORMAT_NV12_ENCODEABLE = 0x102,
Sushil Chauhanc5e61482012-08-22 17:13:32 -070095 HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS = 0x7FA30C04,
Naseer Ahmed65f16562012-06-15 20:53:42 -070096 HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED = 0x7FA30C03,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070097 HAL_PIXEL_FORMAT_YCbCr_420_SP = 0x109,
Naseer Ahmedad766cd2012-07-31 18:52:22 -070098 HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO = 0x7FA30C01,
Iliyan Malchev202a77d2012-06-11 14:41:12 -070099 HAL_PIXEL_FORMAT_YCrCb_422_SP = 0x10B,
100 HAL_PIXEL_FORMAT_R_8 = 0x10D,
101 HAL_PIXEL_FORMAT_RG_88 = 0x10E,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700102 HAL_PIXEL_FORMAT_YCbCr_444_SP = 0x10F,
103 HAL_PIXEL_FORMAT_YCrCb_444_SP = 0x110,
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700104 HAL_PIXEL_FORMAT_INTERLACE = 0x180,
105
106};
107
108/* possible formats for 3D content*/
109enum {
110 HAL_NO_3D = 0x0000,
111 HAL_3D_IN_SIDE_BY_SIDE_L_R = 0x10000,
112 HAL_3D_IN_TOP_BOTTOM = 0x20000,
113 HAL_3D_IN_INTERLEAVE = 0x40000,
114 HAL_3D_IN_SIDE_BY_SIDE_R_L = 0x80000,
115 HAL_3D_OUT_SIDE_BY_SIDE = 0x1000,
116 HAL_3D_OUT_TOP_BOTTOM = 0x2000,
117 HAL_3D_OUT_INTERLEAVE = 0x4000,
118 HAL_3D_OUT_MONOSCOPIC = 0x8000
119};
120
121enum {
Naseer Ahmed29a26812012-06-14 00:56:20 -0700122 BUFFER_TYPE_UI = 0,
123 BUFFER_TYPE_VIDEO
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700124};
125
126/*****************************************************************************/
127
128#ifdef __cplusplus
129struct private_handle_t : public native_handle {
130#else
Naseer Ahmed29a26812012-06-14 00:56:20 -0700131 struct private_handle_t {
132 native_handle_t nativeHandle;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700133#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700134 enum {
135 PRIV_FLAGS_FRAMEBUFFER = 0x00000001,
136 PRIV_FLAGS_USES_PMEM = 0x00000002,
137 PRIV_FLAGS_USES_PMEM_ADSP = 0x00000004,
138 PRIV_FLAGS_USES_ION = 0x00000008,
139 PRIV_FLAGS_USES_ASHMEM = 0x00000010,
140 PRIV_FLAGS_NEEDS_FLUSH = 0x00000020,
141 PRIV_FLAGS_DO_NOT_FLUSH = 0x00000040,
142 PRIV_FLAGS_SW_LOCK = 0x00000080,
143 PRIV_FLAGS_NONCONTIGUOUS_MEM = 0x00000100,
144 // Set by HWC when storing the handle
145 PRIV_FLAGS_HWC_LOCK = 0x00000200,
146 PRIV_FLAGS_SECURE_BUFFER = 0x00000400,
147 // For explicit synchronization
148 PRIV_FLAGS_UNSYNCHRONIZED = 0x00000800,
149 // Not mapped in userspace
150 PRIV_FLAGS_NOT_MAPPED = 0x00001000,
151 // Display on external only
152 PRIV_FLAGS_EXTERNAL_ONLY = 0x00002000,
153 // Display only this buffer on external
154 PRIV_FLAGS_EXTERNAL_BLOCK = 0x00004000,
Naseer Ahmed4c588a22012-07-31 19:12:17 -0700155 // Display this buffer on external as close caption
156 PRIV_FLAGS_EXTERNAL_CC = 0x00008000,
Naseer Ahmed59802502012-08-21 17:03:27 -0400157 PRIV_FLAGS_VIDEO_ENCODER = 0x00010000,
158 PRIV_FLAGS_CAMERA_WRITE = 0x00020000,
159 PRIV_FLAGS_CAMERA_READ = 0x00040000,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700160 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700161
Naseer Ahmed29a26812012-06-14 00:56:20 -0700162 // file-descriptors
163 int fd;
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800164 int fd_metadata; // fd for the meta-data
Naseer Ahmed29a26812012-06-14 00:56:20 -0700165 // ints
166 int magic;
167 int flags;
168 int size;
169 int offset;
170 int bufferType;
171 int base;
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800172 int offset_metadata;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700173 // The gpu address mapped into the mmu.
Naseer Ahmed29a26812012-06-14 00:56:20 -0700174 int gpuaddr;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700175 int format;
176 int width;
177 int height;
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800178 int base_metadata;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700179
180#ifdef __cplusplus
Naseer Ahmeda163b732013-02-12 14:53:33 -0500181 static const int sNumInts = 12;
182 static const int sNumFds = 2;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700183 static const int sMagic = 'gmsm';
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700184
Naseer Ahmed29a26812012-06-14 00:56:20 -0700185 private_handle_t(int fd, int size, int flags, int bufferType,
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800186 int format,int width, int height, int eFd = -1,
187 int eOffset = 0, int eBase = 0) :
Naseer Ahmeda163b732013-02-12 14:53:33 -0500188 fd(fd), fd_metadata(eFd), magic(sMagic),
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800189 flags(flags), size(size), offset(0), bufferType(bufferType),
Naseer Ahmeda163b732013-02-12 14:53:33 -0500190 base(0), offset_metadata(eOffset), gpuaddr(0),
191 format(format), width(width), height(height),
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800192 base_metadata(eBase)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700193 {
194 version = sizeof(native_handle);
195 numInts = sNumInts;
196 numFds = sNumFds;
197 }
198 ~private_handle_t() {
199 magic = 0;
200 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700201
Naseer Ahmed29a26812012-06-14 00:56:20 -0700202 bool usesPhysicallyContiguousMemory() {
203 return (flags & PRIV_FLAGS_USES_PMEM) != 0;
204 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700205
Naseer Ahmed29a26812012-06-14 00:56:20 -0700206 static int validate(const native_handle* h) {
207 const private_handle_t* hnd = (const private_handle_t*)h;
208 if (!h || h->version != sizeof(native_handle) ||
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700209 h->numInts != sNumInts || h->numFds != sNumFds ||
210 hnd->magic != sMagic)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700211 {
212 ALOGD("Invalid gralloc handle (at %p): "
213 "ver(%d/%d) ints(%d/%d) fds(%d/%d) magic(%c%c%c%c/%c%c%c%c)",
214 h,
215 h ? h->version : -1, sizeof(native_handle),
216 h ? h->numInts : -1, sNumInts,
217 h ? h->numFds : -1, sNumFds,
218 hnd ? (((hnd->magic >> 24) & 0xFF)?
219 ((hnd->magic >> 24) & 0xFF) : '-') : '?',
220 hnd ? (((hnd->magic >> 16) & 0xFF)?
221 ((hnd->magic >> 16) & 0xFF) : '-') : '?',
222 hnd ? (((hnd->magic >> 8) & 0xFF)?
223 ((hnd->magic >> 8) & 0xFF) : '-') : '?',
224 hnd ? (((hnd->magic >> 0) & 0xFF)?
225 ((hnd->magic >> 0) & 0xFF) : '-') : '?',
226 (sMagic >> 24) & 0xFF,
227 (sMagic >> 16) & 0xFF,
228 (sMagic >> 8) & 0xFF,
229 (sMagic >> 0) & 0xFF);
230 return -EINVAL;
231 }
232 return 0;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700233 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700234
Naseer Ahmed29a26812012-06-14 00:56:20 -0700235 static private_handle_t* dynamicCast(const native_handle* in) {
236 if (validate(in) == 0) {
237 return (private_handle_t*) in;
238 }
239 return NULL;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700240 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700241#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700242 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700243
244#endif /* GRALLOC_PRIV_H_ */