1 /* 2 * Copyright (c) 2011-2020, The Linux Foundation. All rights reserved. 3 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are 6 * met: 7 * * Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * * Redistributions in binary form must reproduce the above 10 * copyright notice, this list of conditions and the following 11 * disclaimer in the documentation and/or other materials provided 12 * with the distribution. 13 * * Neither the name of The Linux Foundation nor the names of its 14 * contributors may be used to endorse or promote products derived 15 * from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED 18 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 26 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 */ 29 30 #ifndef __GR_ADRENO_INFO_H__ 31 #define __GR_ADRENO_INFO_H__ 32 33 #ifndef QMAA 34 #include <media/msm_media_info.h> 35 #endif 36 37 #include "gr_utils.h" 38 39 typedef enum { 40 SURFACE_TILE_MODE_DISABLE = 0x0, // used for linear surface 41 SURFACE_TILE_MODE_ENABLE = 0x1 // used for tiled surface 42 } surface_tile_mode_t; 43 44 typedef enum { 45 SURFACE_RASTER_MODE_UNKNOWN = 0x0, // used when we don't know the raster mode to be used 46 SURFACE_RASTER_MODE_TW = 0x1, // raster_mode = TypeWriter (TW) 47 SURFACE_RASTER_MODE_CB = 0x2, // raster_mode = CheckerBoard (CB) 48 } surface_rastermode_t; 49 50 // Adreno Pixel Formats 51 typedef enum { 52 ADRENO_PIXELFORMAT_UNKNOWN = 0, 53 ADRENO_PIXELFORMAT_R16G16B16A16_FLOAT = 10, 54 ADRENO_PIXELFORMAT_R10G10B10A2_UNORM = 24, // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES 55 ADRENO_PIXELFORMAT_R8G8B8A8 = 28, 56 ADRENO_PIXELFORMAT_R8G8B8A8_SRGB = 29, 57 ADRENO_PIXELFORMAT_D32_FLOAT = 40, 58 ADRENO_PIXELFORMAT_D24_UNORM_S8_UINT = 45, 59 ADRENO_PIXELFORMAT_R8G8_UNORM = 49, 60 ADRENO_PIXELFORMAT_D16_UNORM = 55, 61 ADRENO_PIXELFORMAT_R8_UNORM = 61, 62 ADRENO_PIXELFORMAT_B5G6R5 = 85, 63 ADRENO_PIXELFORMAT_B5G5R5A1 = 86, 64 ADRENO_PIXELFORMAT_B8G8R8A8_UNORM = 87, 65 ADRENO_PIXELFORMAT_B8G8R8A8 = 90, 66 ADRENO_PIXELFORMAT_B8G8R8A8_SRGB = 91, 67 ADRENO_PIXELFORMAT_B8G8R8X8_SRGB = 93, 68 ADRENO_PIXELFORMAT_NV12 = 103, 69 ADRENO_PIXELFORMAT_P010 = 104, 70 ADRENO_PIXELFORMAT_YUY2 = 107, 71 ADRENO_PIXELFORMAT_B4G4R4A4 = 115, 72 ADRENO_PIXELFORMAT_NV12_EXT = 506, // NV12 with non-std alignment and offsets 73 ADRENO_PIXELFORMAT_R8G8B8X8 = 507, // GL_RGB8 (Internal) 74 ADRENO_PIXELFORMAT_R8G8B8 = 508, // GL_RGB8 75 ADRENO_PIXELFORMAT_A1B5G5R5 = 519, // GL_RGB5_A1 76 ADRENO_PIXELFORMAT_R8G8B8X8_SRGB = 520, // GL_SRGB8 77 ADRENO_PIXELFORMAT_R8G8B8_SRGB = 521, // GL_SRGB8 78 ADRENO_PIXELFORMAT_A2B10G10R10_UNORM = 532, 79 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES 80 ADRENO_PIXELFORMAT_R10G10B10X2_UNORM = 537, 81 ADRENO_PIXELFORMAT_D24_UNORM_X8_UINT = 548, 82 ADRENO_PIXELFORMAT_D24_UNORM = 549, 83 ADRENO_PIXELFORMAT_D32_FLOAT_X24S8_UINT = 551, 84 ADRENO_PIXELFORMAT_S8_UINT = 552, 85 ADRENO_PIXELFORMAT_ASTC_4X4 = 568, // ASTC Compressed 86 ADRENO_PIXELFORMAT_ASTC_5X4 = 569, // ASTC Compressed 87 ADRENO_PIXELFORMAT_ASTC_5X5 = 570, // ASTC Compressed 88 ADRENO_PIXELFORMAT_ASTC_6X5 = 571, // ASTC Compressed 89 ADRENO_PIXELFORMAT_ASTC_6X6 = 572, // ASTC Compressed 90 ADRENO_PIXELFORMAT_ASTC_8X5 = 573, // ASTC Compressed 91 ADRENO_PIXELFORMAT_ASTC_8X6 = 574, // ASTC Compressed 92 ADRENO_PIXELFORMAT_ASTC_8X8 = 575, // ASTC Compressed 93 ADRENO_PIXELFORMAT_ASTC_10X5 = 576, // ASTC Compressed 94 ADRENO_PIXELFORMAT_ASTC_10X6 = 577, // ASTC Compressed 95 ADRENO_PIXELFORMAT_ASTC_10X8 = 578, // ASTC Compressed 96 ADRENO_PIXELFORMAT_ASTC_10X10 = 579, // ASTC Compressed 97 ADRENO_PIXELFORMAT_ASTC_12X10 = 580, // ASTC Compressed 98 ADRENO_PIXELFORMAT_ASTC_12X12 = 581, // ASTC Compressed 99 ADRENO_PIXELFORMAT_ASTC_4X4_SRGB = 582, // ASTC Compressed 100 ADRENO_PIXELFORMAT_ASTC_5X4_SRGB = 583, // ASTC Compressed 101 ADRENO_PIXELFORMAT_ASTC_5X5_SRGB = 584, // ASTC Compressed 102 ADRENO_PIXELFORMAT_ASTC_6X5_SRGB = 585, // ASTC Compressed 103 ADRENO_PIXELFORMAT_ASTC_6X6_SRGB = 586, // ASTC Compressed 104 ADRENO_PIXELFORMAT_ASTC_8X5_SRGB = 587, // ASTC Compressed 105 ADRENO_PIXELFORMAT_ASTC_8X6_SRGB = 588, // ASTC Compressed 106 ADRENO_PIXELFORMAT_ASTC_8X8_SRGB = 589, // ASTC Compressed 107 ADRENO_PIXELFORMAT_ASTC_10X5_SRGB = 590, // ASTC Compressed 108 ADRENO_PIXELFORMAT_ASTC_10X6_SRGB = 591, // ASTC Compressed 109 ADRENO_PIXELFORMAT_ASTC_10X8_SRGB = 592, // ASTC Compressed 110 ADRENO_PIXELFORMAT_ASTC_10X10_SRGB = 593, // ASTC Compressed 111 ADRENO_PIXELFORMAT_ASTC_12X10_SRGB = 594, // ASTC Compressed 112 ADRENO_PIXELFORMAT_ASTC_12X12_SRGB = 595, // ASTC Compressed 113 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES 114 ADRENO_PIXELFORMAT_R5G6B5 = 610, // RGBA version of B5G6R5 115 ADRENO_PIXELFORMAT_R5G5B5A1 = 611, // RGBA version of B5G5R5A1 116 ADRENO_PIXELFORMAT_R4G4B4A4 = 612, // RGBA version of B4G4R4A4 117 ADRENO_PIXELFORMAT_UYVY = 614, // YUV 4:2:2 packed progressive (1 plane) 118 ADRENO_PIXELFORMAT_NV21 = 619, 119 ADRENO_PIXELFORMAT_Y8U8V8A8 = 620, // YUV 4:4:4 packed (1 plane) 120 ADRENO_PIXELFORMAT_Y8 = 625, // Single 8-bit luma only channel YUV format 121 ADRENO_PIXELFORMAT_TP10 = 654, // YUV 4:2:0 planar 10 bits/comp (2 planes) 122 } ADRENOPIXELFORMAT; 123 124 125 126 namespace gralloc { 127 128 class AdrenoMemInfo { 129 public: 130 /* 131 * Function to compute aligned width and aligned height based on 132 * width, height, format and usage flags. 133 * 134 * @return aligned width, aligned height 135 */ 136 void GetAlignedWidthAndHeight(int width, int height, int format, int usage, 137 unsigned int *aligned_w, unsigned int *aligned_h, bool ubwc_enabled, 138 bool tile_enabled); 139 140 /* 141 * Function to compute the adreno aligned width and aligned height 142 * based on the width and format. 143 * 144 * @return aligned width, aligned height 145 */ 146 void AlignUnCompressedRGB(int width, int height, int format, int tileEnabled, 147 unsigned int *aligned_w, unsigned int *aligned_h); 148 149 /* 150 * Function to compute the adreno aligned width and aligned height 151 * based on the width and format. 152 * 153 * @return aligned width, aligned height 154 */ 155 void AlignCompressedRGB(int width, int height, int format, unsigned int *aligned_w, 156 unsigned int *aligned_h); 157 158 /* 159 * Function to compute the pixel alignment requirement. 160 * 161 * @return alignment 162 */ 163 uint32_t GetGpuPixelAlignment(); 164 165 /* 166 * Function to query whether GPU supports UBWC for given HAL format 167 * @return > 0 : supported 168 * 0 : not supported 169 */ 170 bool IsUBWCSupportedByGPU(int format); 171 172 /* 173 * Function to check if GPU supports PI or not 174 */ 175 bool IsPISupportedByGPU(int format, uint64_t usage); 176 /* 177 * Function to get the corresponding Adreno format for given HAL format 178 */ 179 ADRENOPIXELFORMAT GetGpuPixelFormat(int hal_format); 180 181 /* 182 * Function to get graphics metadata blob size 183 * @return graphics metadata size 184 */ 185 uint32_t AdrenoGetMetadataBlobSize(); 186 187 /* 188 * Function to populate the graphics metadata blob 189 * @return 1 : Successful 190 * 2 : Unsuccessful 191 */ 192 int AdrenoInitMemoryLayout(void *metadata_blob, int width, int height, int depth, int format, 193 int num_samples, int isUBWC, uint64_t usage, uint32_t num_planes); 194 /* 195 * Function to get buffer size for based on graphcis metadata 196 * @return buffer size 197 */ 198 uint32_t AdrenoGetAlignedGpuBufferSize(void *metadata_blob); 199 200 /* 201 * Function to check if adreno size calculation APIs are avaliable 202 * @return true : Avaliable 203 * false : Unavaliable 204 */ 205 bool AdrenoSizeAPIAvaliable(); 206 207 void AdrenoSetProperties(gralloc::GrallocProperties props); 208 209 static AdrenoMemInfo *GetInstance(); 210 211 private: 212 AdrenoMemInfo(); 213 ~AdrenoMemInfo(); 214 // link(s)to adreno surface padding library. 215 int (*LINK_adreno_compute_padding)(int width, int bpp, int surface_tile_height, 216 surface_rastermode_t raster_mode, 217 int padding_threshold) = NULL; 218 void (*LINK_adreno_compute_aligned_width_and_height)(int width, int height, int bpp, 219 surface_tile_mode_t tile_mode, 220 surface_rastermode_t raster_mode, 221 int padding_threshold, int *aligned_w, 222 int *aligned_h) = NULL; 223 void (*LINK_adreno_compute_fmt_aligned_width_and_height)(int width, int height, int plane_id, 224 ADRENOPIXELFORMAT format, 225 uint32_t num_samples, 226 surface_tile_mode_t tile_mode, 227 surface_rastermode_t raster_mode, 228 int padding_threshold, int *aligned_w, 229 int *aligned_h) = NULL; 230 void (*LINK_adreno_compute_compressedfmt_aligned_width_and_height)( 231 int width, int height, int format, surface_tile_mode_t tile_mode, 232 surface_rastermode_t raster_mode, int padding_threshold, 233 int *aligned_w, int *aligned_h, int *bpp) = NULL; 234 int (*LINK_adreno_isUBWCSupportedByGpu)(ADRENOPIXELFORMAT format) = NULL; 235 unsigned int (*LINK_adreno_get_gpu_pixel_alignment)(void) = NULL; 236 237 uint32_t (*LINK_adreno_get_metadata_blob_size)(void) = NULL; 238 int (*LINK_adreno_init_memory_layout)(void* metadata_blob, int width, int height, int depth, 239 ADRENOPIXELFORMAT format, uint32_t num_samples, surface_tile_mode_t tile_mode, 240 uint64_t usage, uint32_t num_planes) = NULL; 241 uint64_t (*LINK_adreno_get_aligned_gpu_buffer_size)(void* metadata_blob) = NULL; 242 int (*LINK_adreno_isPISupportedByGpu)(int format, uint64_t usage) = NULL; 243 244 bool gfx_ubwc_disable_ = false; 245 bool gfx_ahardware_buffer_disable_ = false; 246 void *libadreno_utils_ = NULL; 247 248 static AdrenoMemInfo *s_instance; 249 }; 250 251 } // namespace gralloc 252 253 #endif // __GR_ADRENO_INFO_H__ 254