blob: f973b76cccd4df62ad7b53367a491e963440609e [file] [log] [blame]
Iliyan Malchev202a77d2012-06-11 14:41:12 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
Arun Kumar K.R563fbde2014-11-24 08:51:17 -08003 * Copyright (c) 2011-2015, 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
Sushil Chauhana9d47002015-02-18 14:55:03 -080036/* Gralloc usage bits indicating the type of allocation that should be used */
37/* SYSTEM heap comes from kernel vmalloc, can never be uncached,
38 * is not secured */
39#define GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP GRALLOC_USAGE_PRIVATE_0
Iliyan Malchev202a77d2012-06-11 14:41:12 -070040
Sushil Chauhana9d47002015-02-18 14:55:03 -080041/* Non linear, Universal Bandwidth Compression */
42#define GRALLOC_USAGE_PRIVATE_ALLOC_UBWC GRALLOC_USAGE_PRIVATE_1
Sushil Chauhanc8da3372014-12-30 10:23:22 -080043
Sushil Chauhana9d47002015-02-18 14:55:03 -080044/* IOMMU heap comes from manually allocated pages, can be cached/uncached,
45 * is not secured */
46#define GRALLOC_USAGE_PRIVATE_IOMMU_HEAP GRALLOC_USAGE_PRIVATE_2
Sushil Chauhanc8da3372014-12-30 10:23:22 -080047
Sushil Chauhana9d47002015-02-18 14:55:03 -080048/* MM heap is a carveout heap for video, can be secured */
49#define GRALLOC_USAGE_PRIVATE_MM_HEAP GRALLOC_USAGE_PRIVATE_3
Iliyan Malchev202a77d2012-06-11 14:41:12 -070050
Sushil Chauhana9d47002015-02-18 14:55:03 -080051/* ADSP heap is a carveout heap, is not secured */
52#define GRALLOC_USAGE_PRIVATE_ADSP_HEAP 0x01000000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070053
Sushil Chauhana9d47002015-02-18 14:55:03 -080054/* Set this for allocating uncached memory (using O_DSYNC),
55 * cannot be used with noncontiguous heaps */
56#define GRALLOC_USAGE_PRIVATE_UNCACHED 0x02000000
Arun Kumar K.Ra2978452013-02-07 01:34:24 -080057
Sushil Chauhana9d47002015-02-18 14:55:03 -080058/* Buffer content should be displayed on an primary display only */
59#define GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY 0x04000000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070060
Sushil Chauhana9d47002015-02-18 14:55:03 -080061/* Buffer content should be displayed on an external display only */
62#define GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY 0x08000000
Naseer Ahmed29a26812012-06-14 00:56:20 -070063
Sushil Chauhana9d47002015-02-18 14:55:03 -080064/* This flag is set for WFD usecase */
65#define GRALLOC_USAGE_PRIVATE_WFD 0x00200000
Ramkumar Radhakrishnanba713382013-08-30 18:41:07 -070066
Sushil Chauhana9d47002015-02-18 14:55:03 -080067/* CAMERA heap is a carveout heap for camera, is not secured */
68#define GRALLOC_USAGE_PRIVATE_CAMERA_HEAP 0x00400000
69
70/* This flag is used for SECURE display usecase */
71#define GRALLOC_USAGE_PRIVATE_SECURE_DISPLAY 0x00800000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070072
Arun Kumar K.R1dfcdbb2014-11-24 08:41:35 -080073/* define Gralloc perform */
74#define GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER 1
75// This will be used by the graphics drivers to know if certain features
76// are defined in this display HAL.
77// Ex: Newer GFX libraries + Older Display HAL
78#define GRALLOC_MODULE_PERFORM_GET_STRIDE 2
79#define GRALLOC_MODULE_PERFORM_GET_CUSTOM_STRIDE_FROM_HANDLE 3
80#define GRALLOC_MODULE_PERFORM_GET_CUSTOM_STRIDE_AND_HEIGHT_FROM_HANDLE 4
81#define GRALLOC_MODULE_PERFORM_GET_ATTRIBUTES 5
82#define GRALLOC_MODULE_PERFORM_GET_COLOR_SPACE_FROM_HANDLE 6
83#define GRALLOC_MODULE_PERFORM_GET_YUV_PLANE_INFO 7
Arun Kumar K.R563fbde2014-11-24 08:51:17 -080084#define GRALLOC_MODULE_PERFORM_GET_MAP_SECURE_BUFFER_INFO 8
Sushil Chauhana9d47002015-02-18 14:55:03 -080085#define GRALLOC_MODULE_PERFORM_GET_UBWC_FLAG 9
Iliyan Malchev202a77d2012-06-11 14:41:12 -070086
Sushil Chauhanc8da3372014-12-30 10:23:22 -080087#define GRALLOC_HEAP_MASK (GRALLOC_USAGE_PRIVATE_SYSTEM_HEAP |\
Naseer Ahmed01d3fd32012-07-14 21:08:13 -070088 GRALLOC_USAGE_PRIVATE_IOMMU_HEAP |\
89 GRALLOC_USAGE_PRIVATE_MM_HEAP |\
Arun Kumar K.R0daaa992013-03-12 15:08:29 -070090 GRALLOC_USAGE_PRIVATE_ADSP_HEAP)
Iliyan Malchev202a77d2012-06-11 14:41:12 -070091
Iliyan Malchev202a77d2012-06-11 14:41:12 -070092#define INTERLACE_MASK 0x80
Iliyan Malchev202a77d2012-06-11 14:41:12 -070093/*****************************************************************************/
Naseer Ahmed63326f42013-12-18 02:45:48 -050094
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -080095/* OEM specific HAL formats */
96
Arun Kumar K.R6364fa62015-01-08 16:08:51 -080097#define HAL_PIXEL_FORMAT_RGBA_5551 6
98#define HAL_PIXEL_FORMAT_RGBA_4444 7
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -080099#define HAL_PIXEL_FORMAT_NV12_ENCODEABLE 0x102
100#define HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS 0x7FA30C04
101#define HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED 0x7FA30C03
102#define HAL_PIXEL_FORMAT_YCbCr_420_SP 0x109
103#define HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO 0x7FA30C01
104#define HAL_PIXEL_FORMAT_YCrCb_422_SP 0x10B
105#define HAL_PIXEL_FORMAT_R_8 0x10D
106#define HAL_PIXEL_FORMAT_RG_88 0x10E
107#define HAL_PIXEL_FORMAT_YCbCr_444_SP 0x10F
108#define HAL_PIXEL_FORMAT_YCrCb_444_SP 0x110
109#define HAL_PIXEL_FORMAT_YCrCb_422_I 0x111
110#define HAL_PIXEL_FORMAT_BGRX_8888 0x112
111#define HAL_PIXEL_FORMAT_NV21_ZSL 0x113
112#define HAL_PIXEL_FORMAT_INTERLACE 0x180
113
114//v4l2_fourcc('Y', 'U', 'Y', 'L'). 24 bpp YUYV 4:2:2 10 bit per component
115#define HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT 0x4C595559
116
117//v4l2_fourcc('Y', 'B', 'W', 'C'). 10 bit per component. This compressed
118//format reduces the memory access bandwidth
119#define HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT_COMPRESSED 0x43574259
120
Sushil Chauhan65e26302015-01-14 10:48:57 -0800121// UBWC aligned Venus format
122#define HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS_UBWC 0x7FA30C06
123
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -0800124//Khronos ASTC formats
125#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0
126#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1
127#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2
128#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3
129#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4
130#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5
131#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6
132#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7
133#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8
134#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9
135#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA
136#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB
137#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC
138#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD
139#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0
140#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1
141#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2
142#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3
143#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4
144#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5
145#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6
146#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7
147#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8
148#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9
149#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA
150#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB
151#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC
152#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700153
154/* possible formats for 3D content*/
155enum {
Naseer Ahmed3324ff72015-01-21 17:14:44 -0500156 HAL_NO_3D = 0x0,
157 HAL_3D_SIDE_BY_SIDE_L_R = 0x1,
158 HAL_3D_SIDE_BY_SIDE_R_L = 0x2,
159 HAL_3D_TOP_BOTTOM = 0x4,
160 HAL_3D_IN_SIDE_BY_SIDE_L_R = 0x10000, //unused legacy format
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700161};
162
163enum {
Naseer Ahmed29a26812012-06-14 00:56:20 -0700164 BUFFER_TYPE_UI = 0,
165 BUFFER_TYPE_VIDEO
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700166};
167
168/*****************************************************************************/
169
170#ifdef __cplusplus
171struct private_handle_t : public native_handle {
172#else
Naseer Ahmed29a26812012-06-14 00:56:20 -0700173 struct private_handle_t {
174 native_handle_t nativeHandle;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700175#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700176 enum {
177 PRIV_FLAGS_FRAMEBUFFER = 0x00000001,
178 PRIV_FLAGS_USES_PMEM = 0x00000002,
179 PRIV_FLAGS_USES_PMEM_ADSP = 0x00000004,
180 PRIV_FLAGS_USES_ION = 0x00000008,
181 PRIV_FLAGS_USES_ASHMEM = 0x00000010,
182 PRIV_FLAGS_NEEDS_FLUSH = 0x00000020,
Saurabh Shah1adcafe2014-12-19 10:05:41 -0800183 PRIV_FLAGS_NON_CPU_WRITER = 0x00000080,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700184 PRIV_FLAGS_NONCONTIGUOUS_MEM = 0x00000100,
Saurabh Shah1adcafe2014-12-19 10:05:41 -0800185 PRIV_FLAGS_CACHED = 0x00000200,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700186 PRIV_FLAGS_SECURE_BUFFER = 0x00000400,
187 // For explicit synchronization
188 PRIV_FLAGS_UNSYNCHRONIZED = 0x00000800,
189 // Not mapped in userspace
190 PRIV_FLAGS_NOT_MAPPED = 0x00001000,
191 // Display on external only
192 PRIV_FLAGS_EXTERNAL_ONLY = 0x00002000,
Justin Philipd6166602014-08-12 13:42:21 +0530193 // Set by HWC for protected non secure buffers
194 PRIV_FLAGS_PROTECTED_BUFFER = 0x00004000,
Naseer Ahmed59802502012-08-21 17:03:27 -0400195 PRIV_FLAGS_VIDEO_ENCODER = 0x00010000,
196 PRIV_FLAGS_CAMERA_WRITE = 0x00020000,
197 PRIV_FLAGS_CAMERA_READ = 0x00040000,
Naseer Ahmede41ad9c2013-04-05 17:59:28 -0400198 PRIV_FLAGS_HW_COMPOSER = 0x00080000,
Shuzhen Wang46ca2262013-04-10 23:02:22 -0700199 PRIV_FLAGS_HW_TEXTURE = 0x00100000,
Naseer Ahmedfc940ef2013-04-29 15:47:47 -0400200 PRIV_FLAGS_ITU_R_601 = 0x00200000,
201 PRIV_FLAGS_ITU_R_601_FR = 0x00400000,
202 PRIV_FLAGS_ITU_R_709 = 0x00800000,
Ramkumar Radhakrishnanba713382013-08-30 18:41:07 -0700203 PRIV_FLAGS_SECURE_DISPLAY = 0x01000000,
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700204 // Buffer is rendered in Tile Format
Ramkumar Radhakrishnan9d20b392013-11-15 19:32:47 -0800205 PRIV_FLAGS_TILE_RENDERED = 0x02000000,
206 // Buffer rendered using CPU/SW renderer
Sushil Chauhan65e26302015-01-14 10:48:57 -0800207 PRIV_FLAGS_CPU_RENDERED = 0x04000000,
208 // Buffer is allocated with UBWC alignment
209 PRIV_FLAGS_UBWC_ALIGNED = 0x08000000
Naseer Ahmed29a26812012-06-14 00:56:20 -0700210 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700211
Naseer Ahmed29a26812012-06-14 00:56:20 -0700212 // file-descriptors
213 int fd;
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800214 int fd_metadata; // fd for the meta-data
Naseer Ahmed29a26812012-06-14 00:56:20 -0700215 // ints
216 int magic;
217 int flags;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700218 unsigned int size;
219 unsigned int offset;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700220 int bufferType;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700221 uint64_t base __attribute__((aligned(8)));
222 unsigned int offset_metadata;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700223 // The gpu address mapped into the mmu.
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700224 uint64_t gpuaddr __attribute__((aligned(8)));
Naseer Ahmed29a26812012-06-14 00:56:20 -0700225 int format;
226 int width;
227 int height;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700228 uint64_t base_metadata __attribute__((aligned(8)));
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700229
230#ifdef __cplusplus
Naseer Ahmeda163b732013-02-12 14:53:33 -0500231 static const int sNumFds = 2;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700232 static inline int sNumInts() {
233 return ((sizeof(private_handle_t) - sizeof(native_handle_t)) /
234 sizeof(int)) - sNumFds;
235 }
Naseer Ahmed29a26812012-06-14 00:56:20 -0700236 static const int sMagic = 'gmsm';
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700237
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700238 private_handle_t(int fd, unsigned int size, int flags, int bufferType,
Arun Kumar K.R6c85f052014-01-21 21:47:41 -0800239 int format, int width, int height, int eFd = -1,
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700240 unsigned int eOffset = 0, uint64_t eBase = 0) :
Naseer Ahmeda163b732013-02-12 14:53:33 -0500241 fd(fd), fd_metadata(eFd), magic(sMagic),
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800242 flags(flags), size(size), offset(0), bufferType(bufferType),
Naseer Ahmeda163b732013-02-12 14:53:33 -0500243 base(0), offset_metadata(eOffset), gpuaddr(0),
244 format(format), width(width), height(height),
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800245 base_metadata(eBase)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700246 {
Arun Kumar K.R6c85f052014-01-21 21:47:41 -0800247 version = (int) sizeof(native_handle);
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700248 numInts = sNumInts();
Naseer Ahmed29a26812012-06-14 00:56:20 -0700249 numFds = sNumFds;
250 }
251 ~private_handle_t() {
252 magic = 0;
253 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700254
Naseer Ahmed29a26812012-06-14 00:56:20 -0700255 bool usesPhysicallyContiguousMemory() {
256 return (flags & PRIV_FLAGS_USES_PMEM) != 0;
257 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700258
Naseer Ahmed29a26812012-06-14 00:56:20 -0700259 static int validate(const native_handle* h) {
260 const private_handle_t* hnd = (const private_handle_t*)h;
261 if (!h || h->version != sizeof(native_handle) ||
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700262 h->numInts != sNumInts() || h->numFds != sNumFds ||
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700263 hnd->magic != sMagic)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700264 {
265 ALOGD("Invalid gralloc handle (at %p): "
Shalaj Jaina70b4352014-06-15 13:47:47 -0700266 "ver(%d/%zu) ints(%d/%d) fds(%d/%d)"
Arun Kumar K.R6c85f052014-01-21 21:47:41 -0800267 "magic(%c%c%c%c/%c%c%c%c)",
Naseer Ahmed29a26812012-06-14 00:56:20 -0700268 h,
269 h ? h->version : -1, sizeof(native_handle),
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700270 h ? h->numInts : -1, sNumInts(),
Naseer Ahmed29a26812012-06-14 00:56:20 -0700271 h ? h->numFds : -1, sNumFds,
272 hnd ? (((hnd->magic >> 24) & 0xFF)?
273 ((hnd->magic >> 24) & 0xFF) : '-') : '?',
274 hnd ? (((hnd->magic >> 16) & 0xFF)?
275 ((hnd->magic >> 16) & 0xFF) : '-') : '?',
276 hnd ? (((hnd->magic >> 8) & 0xFF)?
277 ((hnd->magic >> 8) & 0xFF) : '-') : '?',
278 hnd ? (((hnd->magic >> 0) & 0xFF)?
279 ((hnd->magic >> 0) & 0xFF) : '-') : '?',
280 (sMagic >> 24) & 0xFF,
281 (sMagic >> 16) & 0xFF,
282 (sMagic >> 8) & 0xFF,
283 (sMagic >> 0) & 0xFF);
284 return -EINVAL;
285 }
286 return 0;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700287 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700288
Naseer Ahmed29a26812012-06-14 00:56:20 -0700289 static private_handle_t* dynamicCast(const native_handle* in) {
290 if (validate(in) == 0) {
291 return (private_handle_t*) in;
292 }
293 return NULL;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700294 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700295#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700296 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700297
298#endif /* GRALLOC_PRIV_H_ */