Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 3 | * Copyright (c) 2011-2013, The Linux Foundation. All rights reserved. |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 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 Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 31 | #include <cutils/log.h> |
| 32 | |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 33 | #define ROUND_UP_PAGESIZE(x) ( (((unsigned long)(x)) + PAGE_SIZE-1) & \ |
| 34 | (~(PAGE_SIZE-1)) ) |
| 35 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 36 | enum { |
| 37 | /* gralloc usage bits indicating the type |
| 38 | * of allocation that should be used */ |
| 39 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 40 | /* SYSTEM heap comes from kernel vmalloc, |
| 41 | * can never be uncached, is not secured*/ |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 42 | 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 Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 45 | /* IOMMU heap comes from manually allocated pages, |
| 46 | * can be cached/uncached, is not secured */ |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 47 | GRALLOC_USAGE_PRIVATE_IOMMU_HEAP = GRALLOC_USAGE_PRIVATE_2, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 48 | /* MM heap is a carveout heap for video, can be secured*/ |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 49 | GRALLOC_USAGE_PRIVATE_MM_HEAP = GRALLOC_USAGE_PRIVATE_3, |
Arun Kumar K.R | 0daaa99 | 2013-03-12 15:08:29 -0700 | [diff] [blame] | 50 | /* ADSP heap is a carveout heap, is not secured*/ |
| 51 | GRALLOC_USAGE_PRIVATE_ADSP_HEAP = 0x01000000, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 52 | |
| 53 | /* Set this for allocating uncached memory (using O_DSYNC) |
| 54 | * cannot be used with noncontiguous heaps */ |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 55 | GRALLOC_USAGE_PRIVATE_UNCACHED = 0x02000000, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 56 | |
Arun Kumar K.R | a297845 | 2013-02-07 01:34:24 -0800 | [diff] [blame] | 57 | /* Buffer content should be displayed on an primary display only */ |
| 58 | GRALLOC_USAGE_PRIVATE_INTERNAL_ONLY = 0x04000000, |
| 59 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 60 | /* Buffer content should be displayed on an external display only */ |
Naseer Ahmed | 4c588a2 | 2012-07-31 19:12:17 -0700 | [diff] [blame] | 61 | GRALLOC_USAGE_PRIVATE_EXTERNAL_ONLY = 0x08000000, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 62 | |
Manoj Kumar AVM | 1f6a821 | 2014-02-19 18:53:14 -0800 | [diff] [blame^] | 63 | /* This flag is set for WFD usecase */ |
| 64 | GRALLOC_USAGE_PRIVATE_WFD = 0x00200000, |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 65 | |
Arun Kumar K.R | ff78b89 | 2013-05-24 12:37:51 -0700 | [diff] [blame] | 66 | /* CAMERA heap is a carveout heap for camera, is not secured*/ |
| 67 | GRALLOC_USAGE_PRIVATE_CAMERA_HEAP = 0x00400000, |
Ramkumar Radhakrishnan | ba71338 | 2013-08-30 18:41:07 -0700 | [diff] [blame] | 68 | |
| 69 | /* This flag is used for SECURE display usecase */ |
| 70 | GRALLOC_USAGE_PRIVATE_SECURE_DISPLAY = 0x00800000, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | enum { |
| 74 | /* Gralloc perform enums |
| 75 | */ |
Naseer Ahmed | 7421472 | 2013-02-09 08:11:36 -0500 | [diff] [blame] | 76 | GRALLOC_MODULE_PERFORM_CREATE_HANDLE_FROM_BUFFER = 1, |
Manoj Kumar AVM | 8a22081 | 2013-10-10 11:46:06 -0700 | [diff] [blame] | 77 | // This will be deprecated from latest graphics drivers. This is kept |
| 78 | // for those backward compatibility i.e., newer Display HAL + older graphics |
| 79 | // libraries |
Naomi Luis | a44100c | 2013-02-08 12:42:03 -0800 | [diff] [blame] | 80 | GRALLOC_MODULE_PERFORM_GET_STRIDE, |
Naseer Ahmed | a978f95 | 2013-09-26 14:36:28 -0400 | [diff] [blame] | 81 | GRALLOC_MODULE_PERFORM_GET_CUSTOM_STRIDE_FROM_HANDLE, |
Manoj Kumar AVM | 8a22081 | 2013-10-10 11:46:06 -0700 | [diff] [blame] | 82 | GRALLOC_MODULE_PERFORM_GET_ATTRIBUTES, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 83 | }; |
| 84 | |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 85 | #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 |\ |
Arun Kumar K.R | 0daaa99 | 2013-03-12 15:08:29 -0700 | [diff] [blame] | 89 | GRALLOC_USAGE_PRIVATE_ADSP_HEAP) |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 90 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 91 | #define INTERLACE_MASK 0x80 |
| 92 | #define S3D_FORMAT_MASK 0xFF000 |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 93 | /*****************************************************************************/ |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 94 | enum { |
| 95 | /* OEM specific HAL formats */ |
Naseer Ahmed | 65f1656 | 2012-06-15 20:53:42 -0700 | [diff] [blame] | 96 | HAL_PIXEL_FORMAT_NV12_ENCODEABLE = 0x102, |
Sushil Chauhan | c5e6148 | 2012-08-22 17:13:32 -0700 | [diff] [blame] | 97 | HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS = 0x7FA30C04, |
Naseer Ahmed | 65f1656 | 2012-06-15 20:53:42 -0700 | [diff] [blame] | 98 | HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED = 0x7FA30C03, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 99 | HAL_PIXEL_FORMAT_YCbCr_420_SP = 0x109, |
Naseer Ahmed | ad766cd | 2012-07-31 18:52:22 -0700 | [diff] [blame] | 100 | HAL_PIXEL_FORMAT_YCrCb_420_SP_ADRENO = 0x7FA30C01, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 101 | HAL_PIXEL_FORMAT_YCrCb_422_SP = 0x10B, |
| 102 | HAL_PIXEL_FORMAT_R_8 = 0x10D, |
| 103 | HAL_PIXEL_FORMAT_RG_88 = 0x10E, |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 104 | HAL_PIXEL_FORMAT_YCbCr_444_SP = 0x10F, |
| 105 | HAL_PIXEL_FORMAT_YCrCb_444_SP = 0x110, |
Ramkumar Radhakrishnan | b52399c | 2013-08-06 20:17:29 -0700 | [diff] [blame] | 106 | HAL_PIXEL_FORMAT_YCrCb_422_I = 0x111, |
Sushil Chauhan | 1f6d68f | 2013-10-11 11:49:35 -0700 | [diff] [blame] | 107 | HAL_PIXEL_FORMAT_BGRX_8888 = 0x112, |
Ramkumar Radhakrishnan | ff51102 | 2013-07-23 16:12:08 -0700 | [diff] [blame] | 108 | HAL_PIXEL_FORMAT_NV21_ZSL = 0x113, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 109 | HAL_PIXEL_FORMAT_INTERLACE = 0x180, |
Ranjith Kagathi Ananda | 9b275a0 | 2013-11-25 12:12:20 -0800 | [diff] [blame] | 110 | //v4l2_fourcc('Y', 'U', 'Y', 'L'). 24 bpp YUYV 4:2:2 10 bit per component |
| 111 | HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT = 0x4C595559, |
Ranjith Kagathi Ananda | 251f6d9 | 2014-01-02 16:50:10 -0800 | [diff] [blame] | 112 | //v4l2_fourcc('Y', 'B', 'W', 'C'). 10 bit per component. This compressed |
| 113 | //format reduces the memory access bandwidth |
| 114 | HAL_PIXEL_FORMAT_YCbCr_422_I_10BIT_COMPRESSED = 0x43574259, |
Naseer Ahmed | 63326f4 | 2013-12-18 02:45:48 -0500 | [diff] [blame] | 115 | |
| 116 | //Khronos ASTC formats |
| 117 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0, |
| 118 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1, |
| 119 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2, |
| 120 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3, |
| 121 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4, |
| 122 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5, |
| 123 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6, |
| 124 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_8x8_KHR = 0x93B7, |
| 125 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x5_KHR = 0x93B8, |
| 126 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x6_KHR = 0x93B9, |
| 127 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x8_KHR = 0x93BA, |
| 128 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_10x10_KHR = 0x93BB, |
| 129 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x10_KHR = 0x93BC, |
| 130 | HAL_PIXEL_FORMAT_COMPRESSED_RGBA_ASTC_12x12_KHR = 0x93BD, |
| 131 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0, |
| 132 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR = 0x93D1, |
| 133 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR = 0x93D2, |
| 134 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR = 0x93D3, |
| 135 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR = 0x93D4, |
| 136 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5, |
| 137 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6, |
| 138 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7, |
| 139 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8, |
| 140 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9, |
| 141 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA, |
| 142 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB, |
| 143 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC, |
| 144 | HAL_PIXEL_FORMAT_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD, |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | /* possible formats for 3D content*/ |
| 148 | enum { |
| 149 | HAL_NO_3D = 0x0000, |
| 150 | HAL_3D_IN_SIDE_BY_SIDE_L_R = 0x10000, |
| 151 | HAL_3D_IN_TOP_BOTTOM = 0x20000, |
| 152 | HAL_3D_IN_INTERLEAVE = 0x40000, |
| 153 | HAL_3D_IN_SIDE_BY_SIDE_R_L = 0x80000, |
| 154 | HAL_3D_OUT_SIDE_BY_SIDE = 0x1000, |
| 155 | HAL_3D_OUT_TOP_BOTTOM = 0x2000, |
| 156 | HAL_3D_OUT_INTERLEAVE = 0x4000, |
| 157 | HAL_3D_OUT_MONOSCOPIC = 0x8000 |
| 158 | }; |
| 159 | |
| 160 | enum { |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 161 | BUFFER_TYPE_UI = 0, |
| 162 | BUFFER_TYPE_VIDEO |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 163 | }; |
| 164 | |
| 165 | /*****************************************************************************/ |
| 166 | |
| 167 | #ifdef __cplusplus |
| 168 | struct private_handle_t : public native_handle { |
| 169 | #else |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 170 | struct private_handle_t { |
| 171 | native_handle_t nativeHandle; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 172 | #endif |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 173 | enum { |
| 174 | PRIV_FLAGS_FRAMEBUFFER = 0x00000001, |
| 175 | PRIV_FLAGS_USES_PMEM = 0x00000002, |
| 176 | PRIV_FLAGS_USES_PMEM_ADSP = 0x00000004, |
| 177 | PRIV_FLAGS_USES_ION = 0x00000008, |
| 178 | PRIV_FLAGS_USES_ASHMEM = 0x00000010, |
| 179 | PRIV_FLAGS_NEEDS_FLUSH = 0x00000020, |
| 180 | PRIV_FLAGS_DO_NOT_FLUSH = 0x00000040, |
| 181 | PRIV_FLAGS_SW_LOCK = 0x00000080, |
| 182 | PRIV_FLAGS_NONCONTIGUOUS_MEM = 0x00000100, |
| 183 | // Set by HWC when storing the handle |
| 184 | PRIV_FLAGS_HWC_LOCK = 0x00000200, |
| 185 | PRIV_FLAGS_SECURE_BUFFER = 0x00000400, |
| 186 | // For explicit synchronization |
| 187 | PRIV_FLAGS_UNSYNCHRONIZED = 0x00000800, |
| 188 | // Not mapped in userspace |
| 189 | PRIV_FLAGS_NOT_MAPPED = 0x00001000, |
| 190 | // Display on external only |
| 191 | PRIV_FLAGS_EXTERNAL_ONLY = 0x00002000, |
Naseer Ahmed | 5980250 | 2012-08-21 17:03:27 -0400 | [diff] [blame] | 192 | PRIV_FLAGS_VIDEO_ENCODER = 0x00010000, |
| 193 | PRIV_FLAGS_CAMERA_WRITE = 0x00020000, |
| 194 | PRIV_FLAGS_CAMERA_READ = 0x00040000, |
Naseer Ahmed | e41ad9c | 2013-04-05 17:59:28 -0400 | [diff] [blame] | 195 | PRIV_FLAGS_HW_COMPOSER = 0x00080000, |
Shuzhen Wang | 46ca226 | 2013-04-10 23:02:22 -0700 | [diff] [blame] | 196 | PRIV_FLAGS_HW_TEXTURE = 0x00100000, |
Naseer Ahmed | fc940ef | 2013-04-29 15:47:47 -0400 | [diff] [blame] | 197 | PRIV_FLAGS_ITU_R_601 = 0x00200000, |
| 198 | PRIV_FLAGS_ITU_R_601_FR = 0x00400000, |
| 199 | PRIV_FLAGS_ITU_R_709 = 0x00800000, |
Ramkumar Radhakrishnan | ba71338 | 2013-08-30 18:41:07 -0700 | [diff] [blame] | 200 | PRIV_FLAGS_SECURE_DISPLAY = 0x01000000, |
Manoj Kumar AVM | 8a22081 | 2013-10-10 11:46:06 -0700 | [diff] [blame] | 201 | // Buffer is rendered in Tile Format |
| 202 | PRIV_FLAGS_TILE_RENDERED = 0x02000000 |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 203 | }; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 204 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 205 | // file-descriptors |
| 206 | int fd; |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 207 | int fd_metadata; // fd for the meta-data |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 208 | // ints |
| 209 | int magic; |
| 210 | int flags; |
| 211 | int size; |
| 212 | int offset; |
| 213 | int bufferType; |
| 214 | int base; |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 215 | int offset_metadata; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 216 | // The gpu address mapped into the mmu. |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 217 | int gpuaddr; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 218 | int format; |
| 219 | int width; |
| 220 | int height; |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 221 | int base_metadata; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 222 | |
| 223 | #ifdef __cplusplus |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 224 | static const int sNumInts = 12; |
| 225 | static const int sNumFds = 2; |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 226 | static const int sMagic = 'gmsm'; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 227 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 228 | private_handle_t(int fd, int size, int flags, int bufferType, |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 229 | int format,int width, int height, int eFd = -1, |
| 230 | int eOffset = 0, int eBase = 0) : |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 231 | fd(fd), fd_metadata(eFd), magic(sMagic), |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 232 | flags(flags), size(size), offset(0), bufferType(bufferType), |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 233 | base(0), offset_metadata(eOffset), gpuaddr(0), |
| 234 | format(format), width(width), height(height), |
Ramkumar Radhakrishnan | 47573e2 | 2012-11-07 11:36:41 -0800 | [diff] [blame] | 235 | base_metadata(eBase) |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 236 | { |
| 237 | version = sizeof(native_handle); |
| 238 | numInts = sNumInts; |
| 239 | numFds = sNumFds; |
| 240 | } |
| 241 | ~private_handle_t() { |
| 242 | magic = 0; |
| 243 | } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 244 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 245 | bool usesPhysicallyContiguousMemory() { |
| 246 | return (flags & PRIV_FLAGS_USES_PMEM) != 0; |
| 247 | } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 248 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 249 | static int validate(const native_handle* h) { |
| 250 | const private_handle_t* hnd = (const private_handle_t*)h; |
| 251 | if (!h || h->version != sizeof(native_handle) || |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 252 | h->numInts != sNumInts || h->numFds != sNumFds || |
| 253 | hnd->magic != sMagic) |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 254 | { |
| 255 | ALOGD("Invalid gralloc handle (at %p): " |
| 256 | "ver(%d/%d) ints(%d/%d) fds(%d/%d) magic(%c%c%c%c/%c%c%c%c)", |
| 257 | h, |
| 258 | h ? h->version : -1, sizeof(native_handle), |
| 259 | h ? h->numInts : -1, sNumInts, |
| 260 | h ? h->numFds : -1, sNumFds, |
| 261 | hnd ? (((hnd->magic >> 24) & 0xFF)? |
| 262 | ((hnd->magic >> 24) & 0xFF) : '-') : '?', |
| 263 | hnd ? (((hnd->magic >> 16) & 0xFF)? |
| 264 | ((hnd->magic >> 16) & 0xFF) : '-') : '?', |
| 265 | hnd ? (((hnd->magic >> 8) & 0xFF)? |
| 266 | ((hnd->magic >> 8) & 0xFF) : '-') : '?', |
| 267 | hnd ? (((hnd->magic >> 0) & 0xFF)? |
| 268 | ((hnd->magic >> 0) & 0xFF) : '-') : '?', |
| 269 | (sMagic >> 24) & 0xFF, |
| 270 | (sMagic >> 16) & 0xFF, |
| 271 | (sMagic >> 8) & 0xFF, |
| 272 | (sMagic >> 0) & 0xFF); |
| 273 | return -EINVAL; |
| 274 | } |
| 275 | return 0; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 276 | } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 277 | |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 278 | static private_handle_t* dynamicCast(const native_handle* in) { |
| 279 | if (validate(in) == 0) { |
| 280 | return (private_handle_t*) in; |
| 281 | } |
| 282 | return NULL; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 283 | } |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 284 | #endif |
Naseer Ahmed | 29a2681 | 2012-06-14 00:56:20 -0700 | [diff] [blame] | 285 | }; |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 286 | |
| 287 | #endif /* GRALLOC_PRIV_H_ */ |