blob: 5797546ac4a8836679c0c44b09f67a6758ec43d6 [file] [log] [blame]
Iliyan Malchev202a77d2012-06-11 14:41:12 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
Ramkumar Radhakrishnandb89d1f2016-03-07 20:15:52 -08003 * Copyright (c) 2011 - 2016, 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
Dileep Marchya5b4eaed2016-09-22 12:31:11 +053033#define ROUND_UP_PAGESIZE(x) (unsigned int)( ((x) + getpagesize()-1) & \
34 (~(getpagesize()-1)) )
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -080035
Sushil Chauhana9d47002015-02-18 14:55:03 -080036/* Gralloc usage bits indicating the type of allocation that should be used */
Naseer Ahmed8d0d72a2014-12-19 16:25:09 -050037/* SYSTEM heap comes from kernel vmalloc (ION_SYSTEM_HEAP_ID)
38 * is cached by default and
Sushil Chauhana9d47002015-02-18 14:55:03 -080039 * is not secured */
Naseer Ahmed8d0d72a2014-12-19 16:25:09 -050040
41/* GRALLOC_USAGE_PRIVATE_0 is unused */
Iliyan Malchev202a77d2012-06-11 14:41:12 -070042
Sushil Chauhana9d47002015-02-18 14:55:03 -080043/* Non linear, Universal Bandwidth Compression */
44#define GRALLOC_USAGE_PRIVATE_ALLOC_UBWC GRALLOC_USAGE_PRIVATE_1
Sushil Chauhanc8da3372014-12-30 10:23:22 -080045
Sushil Chauhana9d47002015-02-18 14:55:03 -080046/* IOMMU heap comes from manually allocated pages, can be cached/uncached,
47 * is not secured */
48#define GRALLOC_USAGE_PRIVATE_IOMMU_HEAP GRALLOC_USAGE_PRIVATE_2
Sushil Chauhanc8da3372014-12-30 10:23:22 -080049
Sushil Chauhana9d47002015-02-18 14:55:03 -080050/* MM heap is a carveout heap for video, can be secured */
51#define GRALLOC_USAGE_PRIVATE_MM_HEAP GRALLOC_USAGE_PRIVATE_3
Iliyan Malchev202a77d2012-06-11 14:41:12 -070052
Sushil Chauhana9d47002015-02-18 14:55:03 -080053/* ADSP heap is a carveout heap, is not secured */
54#define GRALLOC_USAGE_PRIVATE_ADSP_HEAP 0x01000000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070055
Sushil Chauhana9d47002015-02-18 14:55:03 -080056/* Set this for allocating uncached memory (using O_DSYNC),
57 * cannot be used with noncontiguous heaps */
58#define GRALLOC_USAGE_PRIVATE_UNCACHED 0x02000000
Arun Kumar K.Ra2978452013-02-07 01:34:24 -080059
Sushil Chauhana9d47002015-02-18 14:55:03 -080060/* Buffer content should be displayed on an primary display only */
61#define GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY 0x04000000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070062
Sushil Chauhana9d47002015-02-18 14:55:03 -080063/* Buffer content should be displayed on an external display only */
64#define GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY 0x08000000
Naseer Ahmed29a26812012-06-14 00:56:20 -070065
Sushil Chauhana9d47002015-02-18 14:55:03 -080066/* This flag is set for WFD usecase */
67#define GRALLOC_USAGE_PRIVATE_WFD 0x00200000
Ramkumar Radhakrishnanba713382013-08-30 18:41:07 -070068
Sushil Chauhana9d47002015-02-18 14:55:03 -080069/* CAMERA heap is a carveout heap for camera, is not secured */
70#define GRALLOC_USAGE_PRIVATE_CAMERA_HEAP 0x00400000
71
72/* This flag is used for SECURE display usecase */
73#define GRALLOC_USAGE_PRIVATE_SECURE_DISPLAY 0x00800000
Iliyan Malchev202a77d2012-06-11 14:41:12 -070074
Arun Kumar K.R1dfcdbb2014-11-24 08:41:35 -080075/* define Gralloc perform */
76#define GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER 1
77// This will be used by the graphics drivers to know if certain features
78// are defined in this display HAL.
79// Ex: Newer GFX libraries + Older Display HAL
80#define GRALLOC_MODULE_PERFORM_GET_STRIDE 2
81#define GRALLOC_MODULE_PERFORM_GET_CUSTOM_STRIDE_FROM_HANDLE 3
82#define GRALLOC_MODULE_PERFORM_GET_CUSTOM_STRIDE_AND_HEIGHT_FROM_HANDLE 4
83#define GRALLOC_MODULE_PERFORM_GET_ATTRIBUTES 5
84#define GRALLOC_MODULE_PERFORM_GET_COLOR_SPACE_FROM_HANDLE 6
85#define GRALLOC_MODULE_PERFORM_GET_YUV_PLANE_INFO 7
Arun Kumar K.R563fbde2014-11-24 08:51:17 -080086#define GRALLOC_MODULE_PERFORM_GET_MAP_SECURE_BUFFER_INFO 8
Sushil Chauhana9d47002015-02-18 14:55:03 -080087#define GRALLOC_MODULE_PERFORM_GET_UBWC_FLAG 9
Sushil Chauhan7dd3a432015-04-08 15:54:42 -070088#define GRALLOC_MODULE_PERFORM_GET_RGB_DATA_ADDRESS 10
Dileep Marchya1a7e1f12015-09-25 19:11:57 -070089#define GRALLOC_MODULE_PERFORM_GET_IGC 11
90#define GRALLOC_MODULE_PERFORM_SET_IGC 12
Saurabh Shah95f83682015-10-16 10:30:04 -070091#define GRALLOC_MODULE_PERFORM_SET_SINGLE_BUFFER_MODE 13
Iliyan Malchev202a77d2012-06-11 14:41:12 -070092
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -080093/* OEM specific HAL formats */
94
Arun Kumar K.R6364fa62015-01-08 16:08:51 -080095#define HAL_PIXEL_FORMAT_RGBA_5551 6
96#define HAL_PIXEL_FORMAT_RGBA_4444 7
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -080097#define HAL_PIXEL_FORMAT_NV12_ENCODEABLE 0x102
98#define HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS 0x7FA30C04
99#define HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED 0x7FA30C03
100#define HAL_PIXEL_FORMAT_YCbCr_420_SP 0x109
101#define HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO 0x7FA30C01
102#define HAL_PIXEL_FORMAT_YCrCb_422_SP 0x10B
103#define HAL_PIXEL_FORMAT_R_8 0x10D
104#define HAL_PIXEL_FORMAT_RG_88 0x10E
105#define HAL_PIXEL_FORMAT_YCbCr_444_SP 0x10F
106#define HAL_PIXEL_FORMAT_YCrCb_444_SP 0x110
107#define HAL_PIXEL_FORMAT_YCrCb_422_I 0x111
108#define HAL_PIXEL_FORMAT_BGRX_8888 0x112
109#define HAL_PIXEL_FORMAT_NV21_ZSL 0x113
Raj Kamal8bb3b8f2015-03-24 16:22:17 +0530110#define HAL_PIXEL_FORMAT_YCrCb_420_SP_VENUS 0x114
Kaushik Kanetkar4cb337c2015-08-29 20:16:54 -0600111#define HAL_PIXEL_FORMAT_BGR_565 0x115
Ramkumar Radhakrishnandb89d1f2016-03-07 20:15:52 -0800112#define HAL_PIXEL_FORMAT_RGBA_1010102 0x116
113#define HAL_PIXEL_FORMAT_ARGB_2101010 0x117
114#define HAL_PIXEL_FORMAT_RGBX_1010102 0x118
115#define HAL_PIXEL_FORMAT_XRGB_2101010 0x119
116#define HAL_PIXEL_FORMAT_BGRA_1010102 0x11A
117#define HAL_PIXEL_FORMAT_ABGR_2101010 0x11B
118#define HAL_PIXEL_FORMAT_BGRX_1010102 0x11C
119#define HAL_PIXEL_FORMAT_XBGR_2101010 0x11D
120#define HAL_PIXEL_FORMAT_YCbCr_420_P010 0x11F
Rahul Sharma61173ea2017-01-05 09:15:40 +0530121#define HAL_PIXEL_FORMAT_CbYCrY_422_I 0x120
122#define HAL_PIXEL_FORMAT_BGR_888 0x121
Ramkumar Radhakrishnandb89d1f2016-03-07 20:15:52 -0800123
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -0800124#define HAL_PIXEL_FORMAT_INTERLACE 0x180
125
126//v4l2_fourcc('Y', 'U', 'Y', 'L'). 24 bpp YUYV 4:2:2 10 bit per component
127#define HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT 0x4C595559
128
129//v4l2_fourcc('Y', 'B', 'W', 'C'). 10 bit per component. This compressed
130//format reduces the memory access bandwidth
131#define HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT_COMPRESSED 0x43574259
132
Sushil Chauhan65e26302015-01-14 10:48:57 -0800133// UBWC aligned Venus format
134#define HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS_UBWC 0x7FA30C06
Arun Kumar K.Re06d05a2016-09-07 17:00:02 -0700135#define HAL_PIXEL_FORMAT_YCbCr_420_TP10_UBWC 0x7FA30C09
Sushil Chauhan65e26302015-01-14 10:48:57 -0800136
Arun Kumar K.R0d5ab452015-01-08 16:03:50 -0800137//Khronos ASTC formats
138#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0
139#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1
140#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2
141#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3
142#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4
143#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5
144#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6
145#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7
146#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8
147#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9
148#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA
149#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB
150#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC
151#define HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD
152#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0
153#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1
154#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2
155#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3
156#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4
157#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5
158#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6
159#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7
160#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8
161#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9
162#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA
163#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB
164#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC
165#define HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700166
Dileep Marchya1a7e1f12015-09-25 19:11:57 -0700167/* possible values for inverse gamma correction */
168#define HAL_IGC_NOT_SPECIFIED 0
169#define HAL_IGC_s_RGB 1
170
Arun Kumar K.Rc18263e2016-10-03 21:26:10 -0700171/* Color Space: Values maps to ColorSpace_t in qdMetadata.h */
172#define HAL_CSC_ITU_R_601 0
173#define HAL_CSC_ITU_R_601_FR 1
174#define HAL_CSC_ITU_R_709 2
175#define HAL_CSC_ITU_R_2020 3
176#define HAL_CSC_ITU_R_2020_FR 4
177
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700178/* possible formats for 3D content*/
179enum {
Naseer Ahmed3324ff72015-01-21 17:14:44 -0500180 HAL_NO_3D = 0x0,
181 HAL_3D_SIDE_BY_SIDE_L_R = 0x1,
182 HAL_3D_SIDE_BY_SIDE_R_L = 0x2,
183 HAL_3D_TOP_BOTTOM = 0x4,
184 HAL_3D_IN_SIDE_BY_SIDE_L_R = 0x10000, //unused legacy format
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700185};
186
187enum {
Naseer Ahmed29a26812012-06-14 00:56:20 -0700188 BUFFER_TYPE_UI = 0,
189 BUFFER_TYPE_VIDEO
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700190};
191
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700192#ifdef __cplusplus
193struct private_handle_t : public native_handle {
194#else
Naseer Ahmed29a26812012-06-14 00:56:20 -0700195 struct private_handle_t {
196 native_handle_t nativeHandle;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700197#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700198 enum {
199 PRIV_FLAGS_FRAMEBUFFER = 0x00000001,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700200 PRIV_FLAGS_USES_ION = 0x00000008,
201 PRIV_FLAGS_USES_ASHMEM = 0x00000010,
202 PRIV_FLAGS_NEEDS_FLUSH = 0x00000020,
Arun Kumar K.R48a57552015-09-03 11:37:35 -0700203 PRIV_FLAGS_INTERNAL_ONLY = 0x00000040,
Saurabh Shah1adcafe2014-12-19 10:05:41 -0800204 PRIV_FLAGS_NON_CPU_WRITER = 0x00000080,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700205 PRIV_FLAGS_NONCONTIGUOUS_MEM = 0x00000100,
Saurabh Shah1adcafe2014-12-19 10:05:41 -0800206 PRIV_FLAGS_CACHED = 0x00000200,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700207 PRIV_FLAGS_SECURE_BUFFER = 0x00000400,
Naseer Ahmed29a26812012-06-14 00:56:20 -0700208 // Display on external only
209 PRIV_FLAGS_EXTERNAL_ONLY = 0x00002000,
Justin Philipd6166602014-08-12 13:42:21 +0530210 // Set by HWC for protected non secure buffers
211 PRIV_FLAGS_PROTECTED_BUFFER = 0x00004000,
Naseer Ahmed59802502012-08-21 17:03:27 -0400212 PRIV_FLAGS_VIDEO_ENCODER = 0x00010000,
213 PRIV_FLAGS_CAMERA_WRITE = 0x00020000,
214 PRIV_FLAGS_CAMERA_READ = 0x00040000,
Naseer Ahmede41ad9c2013-04-05 17:59:28 -0400215 PRIV_FLAGS_HW_COMPOSER = 0x00080000,
Shuzhen Wang46ca2262013-04-10 23:02:22 -0700216 PRIV_FLAGS_HW_TEXTURE = 0x00100000,
Saurabh Shahbddb9522015-09-30 13:31:55 -0700217 PRIV_FLAGS_ITU_R_601 = 0x00200000, //Unused from display
218 PRIV_FLAGS_ITU_R_601_FR = 0x00400000, //Unused from display
219 PRIV_FLAGS_ITU_R_709 = 0x00800000, //Unused from display
Ramkumar Radhakrishnanba713382013-08-30 18:41:07 -0700220 PRIV_FLAGS_SECURE_DISPLAY = 0x01000000,
Manoj Kumar AVM8a220812013-10-10 11:46:06 -0700221 // Buffer is rendered in Tile Format
Ramkumar Radhakrishnan9d20b392013-11-15 19:32:47 -0800222 PRIV_FLAGS_TILE_RENDERED = 0x02000000,
223 // Buffer rendered using CPU/SW renderer
Sushil Chauhan65e26302015-01-14 10:48:57 -0800224 PRIV_FLAGS_CPU_RENDERED = 0x04000000,
225 // Buffer is allocated with UBWC alignment
Surajit Podder074314d2015-06-25 01:43:20 +0530226 PRIV_FLAGS_UBWC_ALIGNED = 0x08000000,
227 // Buffer allocated will be consumed by SF/HWC
228 PRIV_FLAGS_DISP_CONSUMER = 0x10000000
Naseer Ahmed29a26812012-06-14 00:56:20 -0700229 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700230
Naseer Ahmed29a26812012-06-14 00:56:20 -0700231 // file-descriptors
232 int fd;
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800233 int fd_metadata; // fd for the meta-data
Naseer Ahmed29a26812012-06-14 00:56:20 -0700234 // ints
235 int magic;
236 int flags;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700237 unsigned int size;
238 unsigned int offset;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700239 int bufferType;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700240 uint64_t base __attribute__((aligned(8)));
241 unsigned int offset_metadata;
Naseer Ahmed29a26812012-06-14 00:56:20 -0700242 // The gpu address mapped into the mmu.
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700243 uint64_t gpuaddr __attribute__((aligned(8)));
Naseer Ahmed29a26812012-06-14 00:56:20 -0700244 int format;
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700245 int width; // holds aligned width of the actual buffer allocated
246 int height; // holds aligned height of the actual buffer allocated
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700247 uint64_t base_metadata __attribute__((aligned(8)));
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700248 int unaligned_width; // holds width client asked to allocate
249 int unaligned_height; // holds height client asked to allocate
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700250
251#ifdef __cplusplus
Naseer Ahmeda163b732013-02-12 14:53:33 -0500252 static const int sNumFds = 2;
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700253 static inline int sNumInts() {
254 return ((sizeof(private_handle_t) - sizeof(native_handle_t)) /
255 sizeof(int)) - sNumFds;
256 }
Naseer Ahmed29a26812012-06-14 00:56:20 -0700257 static const int sMagic = 'gmsm';
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700258
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700259 private_handle_t(int fd, unsigned int size, int flags, int bufferType,
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700260 int format, int width, int height) :
261 fd(fd), fd_metadata(-1), magic(sMagic),
Ramkumar Radhakrishnan47573e22012-11-07 11:36:41 -0800262 flags(flags), size(size), offset(0), bufferType(bufferType),
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700263 base(0), offset_metadata(0), gpuaddr(0),
Naseer Ahmeda163b732013-02-12 14:53:33 -0500264 format(format), width(width), height(height),
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700265 base_metadata(0), unaligned_width(width),
266 unaligned_height(height)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700267 {
Arun Kumar K.R6c85f052014-01-21 21:47:41 -0800268 version = (int) sizeof(native_handle);
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700269 numInts = sNumInts();
Naseer Ahmed29a26812012-06-14 00:56:20 -0700270 numFds = sNumFds;
271 }
Ramkumar Radhakrishnanba55eac2016-08-26 22:33:48 -0700272
273 private_handle_t(int fd, unsigned int size, int flags, int bufferType,
274 int format, int width, int height,
275 int eFd, unsigned int eOffset, uint64_t eBase) :
276 private_handle_t(fd, size, flags, bufferType, format, width, height)
277 {
278 fd_metadata = eFd;
279 offset_metadata = eOffset;
280 base_metadata = eBase;
281 }
282
283 private_handle_t(int fd, unsigned int size, int flags, int bufferType,
284 int format, int width, int height,
285 int eFd, unsigned int eOffset, uint64_t eBase,
286 int unaligned_w, int unaligned_h) :
287 private_handle_t(fd, size, flags, bufferType, format, width, height,
288 eFd, eOffset, eBase)
289 {
290 unaligned_width = unaligned_w;
291 unaligned_height = unaligned_h;
292 }
293
Naseer Ahmed29a26812012-06-14 00:56:20 -0700294 ~private_handle_t() {
295 magic = 0;
296 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700297
Naseer Ahmed29a26812012-06-14 00:56:20 -0700298 static int validate(const native_handle* h) {
299 const private_handle_t* hnd = (const private_handle_t*)h;
300 if (!h || h->version != sizeof(native_handle) ||
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700301 h->numInts != sNumInts() || h->numFds != sNumFds ||
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700302 hnd->magic != sMagic)
Naseer Ahmed29a26812012-06-14 00:56:20 -0700303 {
304 ALOGD("Invalid gralloc handle (at %p): "
Shalaj Jaina70b4352014-06-15 13:47:47 -0700305 "ver(%d/%zu) ints(%d/%d) fds(%d/%d)"
Arun Kumar K.R6c85f052014-01-21 21:47:41 -0800306 "magic(%c%c%c%c/%c%c%c%c)",
Naseer Ahmed29a26812012-06-14 00:56:20 -0700307 h,
308 h ? h->version : -1, sizeof(native_handle),
Saurabh Shah8f0ea6f2014-05-19 16:48:53 -0700309 h ? h->numInts : -1, sNumInts(),
Naseer Ahmed29a26812012-06-14 00:56:20 -0700310 h ? h->numFds : -1, sNumFds,
311 hnd ? (((hnd->magic >> 24) & 0xFF)?
312 ((hnd->magic >> 24) & 0xFF) : '-') : '?',
313 hnd ? (((hnd->magic >> 16) & 0xFF)?
314 ((hnd->magic >> 16) & 0xFF) : '-') : '?',
315 hnd ? (((hnd->magic >> 8) & 0xFF)?
316 ((hnd->magic >> 8) & 0xFF) : '-') : '?',
317 hnd ? (((hnd->magic >> 0) & 0xFF)?
318 ((hnd->magic >> 0) & 0xFF) : '-') : '?',
319 (sMagic >> 24) & 0xFF,
320 (sMagic >> 16) & 0xFF,
321 (sMagic >> 8) & 0xFF,
322 (sMagic >> 0) & 0xFF);
323 return -EINVAL;
324 }
325 return 0;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700326 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700327
Naseer Ahmed29a26812012-06-14 00:56:20 -0700328 static private_handle_t* dynamicCast(const native_handle* in) {
329 if (validate(in) == 0) {
330 return (private_handle_t*) in;
331 }
332 return NULL;
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700333 }
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700334#endif
Naseer Ahmed29a26812012-06-14 00:56:20 -0700335 };
Iliyan Malchev202a77d2012-06-11 14:41:12 -0700336
337#endif /* GRALLOC_PRIV_H_ */