Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 1 | /* |
Saurabh Shah | c5b2b70 | 2016-10-24 17:16:01 -0700 | [diff] [blame] | 2 | * Copyright (c) 2011-2017, The Linux Foundation. All rights reserved. |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 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 | #include <cutils/log.h> |
| 31 | #include <cutils/properties.h> |
| 32 | #include <dlfcn.h> |
Saurabh Shah | 14c8e5b | 2017-04-07 10:37:23 -0700 | [diff] [blame] | 33 | #include <mutex> |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 34 | |
| 35 | #include "gralloc_priv.h" |
| 36 | #include "gr_adreno_info.h" |
| 37 | #include "gr_utils.h" |
| 38 | |
Saurabh Shah | 14c8e5b | 2017-04-07 10:37:23 -0700 | [diff] [blame] | 39 | using std::lock_guard; |
| 40 | using std::mutex; |
| 41 | |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 42 | namespace gralloc1 { |
| 43 | |
Saurabh Shah | 14c8e5b | 2017-04-07 10:37:23 -0700 | [diff] [blame] | 44 | AdrenoMemInfo *AdrenoMemInfo::s_instance = nullptr; |
| 45 | |
| 46 | AdrenoMemInfo *AdrenoMemInfo::GetInstance() { |
| 47 | static mutex s_lock; |
| 48 | lock_guard<mutex> obj(s_lock); |
| 49 | if (!s_instance) { |
| 50 | s_instance = new AdrenoMemInfo(); |
Saurabh Shah | 14c8e5b | 2017-04-07 10:37:23 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | return s_instance; |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 54 | } |
| 55 | |
Saurabh Shah | 5180c2d | 2017-07-26 11:09:27 -0700 | [diff] [blame] | 56 | AdrenoMemInfo::AdrenoMemInfo() { |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 57 | libadreno_utils_ = ::dlopen("libadreno_utils.so", RTLD_NOW); |
| 58 | if (libadreno_utils_) { |
| 59 | *reinterpret_cast<void **>(&LINK_adreno_compute_aligned_width_and_height) = |
| 60 | ::dlsym(libadreno_utils_, "compute_aligned_width_and_height"); |
Prabhanjan Kandula | 7783d96 | 2017-04-21 01:38:32 -0700 | [diff] [blame] | 61 | *reinterpret_cast<void **>(&LINK_adreno_compute_fmt_aligned_width_and_height) = |
| 62 | ::dlsym(libadreno_utils_, "compute_fmt_aligned_width_and_height"); |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 63 | *reinterpret_cast<void **>(&LINK_adreno_compute_padding) = |
| 64 | ::dlsym(libadreno_utils_, "compute_surface_padding"); |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 65 | *reinterpret_cast<void **>(&LINK_adreno_compute_compressedfmt_aligned_width_and_height) = |
| 66 | ::dlsym(libadreno_utils_, "compute_compressedfmt_aligned_width_and_height"); |
| 67 | *reinterpret_cast<void **>(&LINK_adreno_isUBWCSupportedByGpu) = |
| 68 | ::dlsym(libadreno_utils_, "isUBWCSupportedByGpu"); |
| 69 | *reinterpret_cast<void **>(&LINK_adreno_get_gpu_pixel_alignment) = |
| 70 | ::dlsym(libadreno_utils_, "get_gpu_pixel_alignment"); |
| 71 | } else { |
| 72 | ALOGE(" Failed to load libadreno_utils.so"); |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 73 | } |
| 74 | |
Ramkumar Radhakrishnan | 45aace4 | 2017-05-02 15:32:58 -0700 | [diff] [blame] | 75 | // Check if the overriding property debug.gralloc.gfx_ubwc_disable |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 76 | // that disables UBWC allocations for the graphics stack is set |
| 77 | char property[PROPERTY_VALUE_MAX]; |
Ramkumar Radhakrishnan | 45aace4 | 2017-05-02 15:32:58 -0700 | [diff] [blame] | 78 | property_get("debug.gralloc.gfx_ubwc_disable", property, "0"); |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 79 | if (!(strncmp(property, "1", PROPERTY_VALUE_MAX)) || |
| 80 | !(strncmp(property, "true", PROPERTY_VALUE_MAX))) { |
| 81 | gfx_ubwc_disable_ = true; |
| 82 | } |
| 83 | |
| 84 | if ((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && |
| 85 | (!strncmp(property, "1", PROPERTY_VALUE_MAX) || |
| 86 | (!strncasecmp(property, "true", PROPERTY_VALUE_MAX)))) { |
| 87 | map_fb_ = true; |
| 88 | } |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | AdrenoMemInfo::~AdrenoMemInfo() { |
| 92 | if (libadreno_utils_) { |
| 93 | ::dlclose(libadreno_utils_); |
| 94 | } |
| 95 | } |
| 96 | |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 97 | void AdrenoMemInfo::AlignUnCompressedRGB(int width, int height, int format, int tile_enabled, |
| 98 | unsigned int *aligned_w, unsigned int *aligned_h) { |
| 99 | *aligned_w = (unsigned int)ALIGN(width, 32); |
| 100 | *aligned_h = (unsigned int)ALIGN(height, 32); |
| 101 | |
| 102 | // Don't add any additional padding if debug.gralloc.map_fb_memory |
| 103 | // is enabled |
| 104 | if (map_fb_) { |
| 105 | return; |
| 106 | } |
| 107 | |
| 108 | int bpp = 4; |
| 109 | switch (format) { |
| 110 | case HAL_PIXEL_FORMAT_RGB_888: |
Camus Wong | 5c5e6fb | 2017-03-21 17:02:48 -0400 | [diff] [blame] | 111 | case HAL_PIXEL_FORMAT_BGR_888: |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 112 | bpp = 3; |
| 113 | break; |
| 114 | case HAL_PIXEL_FORMAT_RGB_565: |
| 115 | case HAL_PIXEL_FORMAT_BGR_565: |
| 116 | case HAL_PIXEL_FORMAT_RGBA_5551: |
| 117 | case HAL_PIXEL_FORMAT_RGBA_4444: |
| 118 | bpp = 2; |
| 119 | break; |
| 120 | default: |
| 121 | break; |
| 122 | } |
| 123 | |
| 124 | int raster_mode = 0; // Adreno unknown raster mode. |
| 125 | int padding_threshold = 512; // Threshold for padding surfaces. |
| 126 | // the function below computes aligned width and aligned height |
| 127 | // based on linear or macro tile mode selected. |
Prabhanjan Kandula | 7783d96 | 2017-04-21 01:38:32 -0700 | [diff] [blame] | 128 | if (LINK_adreno_compute_fmt_aligned_width_and_height) { |
| 129 | // We call into adreno_utils only for RGB formats. So plane_id is 0 and |
| 130 | // num_samples is 1 always. We may have to add uitility function to |
| 131 | // find out these if there is a need to call this API for YUV formats. |
| 132 | LINK_adreno_compute_fmt_aligned_width_and_height( |
| 133 | width, height, 0/*plane_id*/, GetGpuPixelFormat(format), 1/*num_samples*/, |
| 134 | tile_enabled, raster_mode, padding_threshold, |
| 135 | reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h)); |
| 136 | } else if (LINK_adreno_compute_aligned_width_and_height) { |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 137 | LINK_adreno_compute_aligned_width_and_height( |
| 138 | width, height, bpp, tile_enabled, raster_mode, padding_threshold, |
| 139 | reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h)); |
| 140 | } else if (LINK_adreno_compute_padding) { |
| 141 | int surface_tile_height = 1; // Linear surface |
| 142 | *aligned_w = UINT(LINK_adreno_compute_padding(width, bpp, surface_tile_height, raster_mode, |
| 143 | padding_threshold)); |
| 144 | ALOGW("%s: Warning!! Old GFX API is used to calculate stride", __FUNCTION__); |
| 145 | } else { |
| 146 | ALOGW( |
| 147 | "%s: Warning!! Symbols compute_surface_padding and " |
Prabhanjan Kandula | 7783d96 | 2017-04-21 01:38:32 -0700 | [diff] [blame] | 148 | "compute_fmt_aligned_width_and_height and " |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 149 | "compute_aligned_width_and_height not found", |
| 150 | __FUNCTION__); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void AdrenoMemInfo::AlignCompressedRGB(int width, int height, int format, unsigned int *aligned_w, |
| 155 | unsigned int *aligned_h) { |
| 156 | if (LINK_adreno_compute_compressedfmt_aligned_width_and_height) { |
| 157 | int bytesPerPixel = 0; |
| 158 | int raster_mode = 0; // Adreno unknown raster mode. |
| 159 | int padding_threshold = 512; // Threshold for padding |
| 160 | // surfaces. |
| 161 | |
| 162 | LINK_adreno_compute_compressedfmt_aligned_width_and_height( |
| 163 | width, height, format, 0, raster_mode, padding_threshold, |
| 164 | reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h), &bytesPerPixel); |
| 165 | } else { |
Saurabh Shah | 5180c2d | 2017-07-26 11:09:27 -0700 | [diff] [blame] | 166 | *aligned_w = (unsigned int)ALIGN(width, 32); |
| 167 | *aligned_h = (unsigned int)ALIGN(height, 32); |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 168 | ALOGW("%s: Warning!! compute_compressedfmt_aligned_width_and_height not found", __FUNCTION__); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | bool AdrenoMemInfo::IsUBWCSupportedByGPU(int format) { |
| 173 | if (!gfx_ubwc_disable_ && LINK_adreno_isUBWCSupportedByGpu) { |
| 174 | ADRENOPIXELFORMAT gpu_format = GetGpuPixelFormat(format); |
| 175 | return LINK_adreno_isUBWCSupportedByGpu(gpu_format); |
| 176 | } |
| 177 | |
| 178 | return false; |
| 179 | } |
| 180 | |
| 181 | uint32_t AdrenoMemInfo::GetGpuPixelAlignment() { |
| 182 | if (LINK_adreno_get_gpu_pixel_alignment) { |
| 183 | return LINK_adreno_get_gpu_pixel_alignment(); |
| 184 | } |
| 185 | |
| 186 | return 1; |
| 187 | } |
| 188 | |
| 189 | ADRENOPIXELFORMAT AdrenoMemInfo::GetGpuPixelFormat(int hal_format) { |
| 190 | switch (hal_format) { |
| 191 | case HAL_PIXEL_FORMAT_RGBA_8888: |
| 192 | return ADRENO_PIXELFORMAT_R8G8B8A8; |
| 193 | case HAL_PIXEL_FORMAT_RGBX_8888: |
| 194 | return ADRENO_PIXELFORMAT_R8G8B8X8; |
Saurabh Shah | d954f10 | 2018-03-12 12:26:12 -0700 | [diff] [blame^] | 195 | case HAL_PIXEL_FORMAT_BGRA_8888: |
| 196 | return ADRENO_PIXELFORMAT_B8G8R8A8; |
| 197 | case HAL_PIXEL_FORMAT_RGB_888: |
| 198 | return ADRENO_PIXELFORMAT_R8G8B8; |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 199 | case HAL_PIXEL_FORMAT_RGB_565: |
| 200 | return ADRENO_PIXELFORMAT_B5G6R5; |
| 201 | case HAL_PIXEL_FORMAT_BGR_565: |
| 202 | return ADRENO_PIXELFORMAT_R5G6B5; |
Saurabh Shah | d954f10 | 2018-03-12 12:26:12 -0700 | [diff] [blame^] | 203 | case HAL_PIXEL_FORMAT_RGBA_5551: |
| 204 | return ADRENO_PIXELFORMAT_R5G5B5A1; |
| 205 | case HAL_PIXEL_FORMAT_RGBA_4444: |
| 206 | return ADRENO_PIXELFORMAT_R4G4B4A4; |
| 207 | case HAL_PIXEL_FORMAT_RGBA_1010102: |
| 208 | return ADRENO_PIXELFORMAT_R10G10B10A2_UNORM; |
| 209 | case HAL_PIXEL_FORMAT_RGBX_1010102: |
| 210 | return ADRENO_PIXELFORMAT_R10G10B10X2_UNORM; |
| 211 | case HAL_PIXEL_FORMAT_ABGR_2101010: |
| 212 | return ADRENO_PIXELFORMAT_A2B10G10R10_UNORM; |
| 213 | case HAL_PIXEL_FORMAT_RGBA_FP16: |
| 214 | return ADRENO_PIXELFORMAT_R16G16B16A16_FLOAT; |
| 215 | |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 216 | case HAL_PIXEL_FORMAT_NV12_ENCODEABLE: |
| 217 | return ADRENO_PIXELFORMAT_NV12; |
| 218 | case HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS: |
| 219 | case HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS_UBWC: |
| 220 | return ADRENO_PIXELFORMAT_NV12_EXT; |
Rohit Kulkarni | 7943ec9 | 2016-12-20 18:18:46 -0800 | [diff] [blame] | 221 | case HAL_PIXEL_FORMAT_YCbCr_420_TP10_UBWC: |
| 222 | return ADRENO_PIXELFORMAT_TP10; |
| 223 | case HAL_PIXEL_FORMAT_YCbCr_420_P010: |
| 224 | case HAL_PIXEL_FORMAT_YCbCr_420_P010_UBWC: |
Mathew Joseph Karimpanal | a73082e | 2017-10-16 18:01:21 +0530 | [diff] [blame] | 225 | case HAL_PIXEL_FORMAT_YCbCr_420_P010_VENUS: |
Rohit Kulkarni | 7943ec9 | 2016-12-20 18:18:46 -0800 | [diff] [blame] | 226 | return ADRENO_PIXELFORMAT_P010; |
Saurabh Shah | d954f10 | 2018-03-12 12:26:12 -0700 | [diff] [blame^] | 227 | |
Prabhanjan Kandula | 96e9234 | 2016-03-24 21:03:35 +0530 | [diff] [blame] | 228 | default: |
| 229 | ALOGE("%s: No map for format: 0x%x", __FUNCTION__, hal_format); |
| 230 | break; |
| 231 | } |
| 232 | |
| 233 | return ADRENO_PIXELFORMAT_UNKNOWN; |
| 234 | } |
| 235 | |
| 236 | } // namespace gralloc1 |