blob: 2736fadbe4b8f49c7a69e44b6dc3ebe67a9da5ea [file] [log] [blame]
Prabhanjan Kandula96e92342016-03-24 21:03:35 +05301/*
Saurabh Shahc5b2b702016-10-24 17:16:01 -07002 * Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
Prabhanjan Kandula96e92342016-03-24 21:03:35 +05303
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 Shah14c8e5b2017-04-07 10:37:23 -070033#include <mutex>
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053034
35#include "gralloc_priv.h"
36#include "gr_adreno_info.h"
37#include "gr_utils.h"
38
Saurabh Shah14c8e5b2017-04-07 10:37:23 -070039using std::lock_guard;
40using std::mutex;
41
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053042namespace gralloc1 {
43
Saurabh Shah14c8e5b2017-04-07 10:37:23 -070044AdrenoMemInfo *AdrenoMemInfo::s_instance = nullptr;
45
46AdrenoMemInfo *AdrenoMemInfo::GetInstance() {
47 static mutex s_lock;
48 lock_guard<mutex> obj(s_lock);
49 if (!s_instance) {
50 s_instance = new AdrenoMemInfo();
51 if (!s_instance->Init()) {
52 delete s_instance;
53 s_instance = nullptr;
54 }
55 }
56
57 return s_instance;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053058}
59
60bool AdrenoMemInfo::Init() {
61 libadreno_utils_ = ::dlopen("libadreno_utils.so", RTLD_NOW);
62 if (libadreno_utils_) {
63 *reinterpret_cast<void **>(&LINK_adreno_compute_aligned_width_and_height) =
64 ::dlsym(libadreno_utils_, "compute_aligned_width_and_height");
65 *reinterpret_cast<void **>(&LINK_adreno_compute_padding) =
66 ::dlsym(libadreno_utils_, "compute_surface_padding");
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053067 *reinterpret_cast<void **>(&LINK_adreno_compute_compressedfmt_aligned_width_and_height) =
68 ::dlsym(libadreno_utils_, "compute_compressedfmt_aligned_width_and_height");
69 *reinterpret_cast<void **>(&LINK_adreno_isUBWCSupportedByGpu) =
70 ::dlsym(libadreno_utils_, "isUBWCSupportedByGpu");
71 *reinterpret_cast<void **>(&LINK_adreno_get_gpu_pixel_alignment) =
72 ::dlsym(libadreno_utils_, "get_gpu_pixel_alignment");
73 } else {
74 ALOGE(" Failed to load libadreno_utils.so");
75 return false;
76 }
77
78 // Check if the overriding property debug.gralloc.gfx_ubwc_disable_
79 // that disables UBWC allocations for the graphics stack is set
80 char property[PROPERTY_VALUE_MAX];
81 property_get("debug.gralloc.gfx_ubwc_disable_", property, "0");
82 if (!(strncmp(property, "1", PROPERTY_VALUE_MAX)) ||
83 !(strncmp(property, "true", PROPERTY_VALUE_MAX))) {
84 gfx_ubwc_disable_ = true;
85 }
86
87 if ((property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) &&
88 (!strncmp(property, "1", PROPERTY_VALUE_MAX) ||
89 (!strncasecmp(property, "true", PROPERTY_VALUE_MAX)))) {
90 map_fb_ = true;
91 }
92
93 return true;
94}
95
96AdrenoMemInfo::~AdrenoMemInfo() {
97 if (libadreno_utils_) {
98 ::dlclose(libadreno_utils_);
99 }
100}
101
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530102void AdrenoMemInfo::AlignUnCompressedRGB(int width, int height, int format, int tile_enabled,
103 unsigned int *aligned_w, unsigned int *aligned_h) {
104 *aligned_w = (unsigned int)ALIGN(width, 32);
105 *aligned_h = (unsigned int)ALIGN(height, 32);
106
107 // Don't add any additional padding if debug.gralloc.map_fb_memory
108 // is enabled
109 if (map_fb_) {
110 return;
111 }
112
113 int bpp = 4;
114 switch (format) {
115 case HAL_PIXEL_FORMAT_RGB_888:
116 bpp = 3;
117 break;
118 case HAL_PIXEL_FORMAT_RGB_565:
119 case HAL_PIXEL_FORMAT_BGR_565:
120 case HAL_PIXEL_FORMAT_RGBA_5551:
121 case HAL_PIXEL_FORMAT_RGBA_4444:
122 bpp = 2;
123 break;
124 default:
125 break;
126 }
127
128 int raster_mode = 0; // Adreno unknown raster mode.
129 int padding_threshold = 512; // Threshold for padding surfaces.
130 // the function below computes aligned width and aligned height
131 // based on linear or macro tile mode selected.
132 if (LINK_adreno_compute_aligned_width_and_height) {
133 LINK_adreno_compute_aligned_width_and_height(
134 width, height, bpp, tile_enabled, raster_mode, padding_threshold,
135 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h));
136 } else if (LINK_adreno_compute_padding) {
137 int surface_tile_height = 1; // Linear surface
138 *aligned_w = UINT(LINK_adreno_compute_padding(width, bpp, surface_tile_height, raster_mode,
139 padding_threshold));
140 ALOGW("%s: Warning!! Old GFX API is used to calculate stride", __FUNCTION__);
141 } else {
142 ALOGW(
143 "%s: Warning!! Symbols compute_surface_padding and "
144 "compute_aligned_width_and_height not found",
145 __FUNCTION__);
146 }
147}
148
149void AdrenoMemInfo::AlignCompressedRGB(int width, int height, int format, unsigned int *aligned_w,
150 unsigned int *aligned_h) {
151 if (LINK_adreno_compute_compressedfmt_aligned_width_and_height) {
152 int bytesPerPixel = 0;
153 int raster_mode = 0; // Adreno unknown raster mode.
154 int padding_threshold = 512; // Threshold for padding
155 // surfaces.
156
157 LINK_adreno_compute_compressedfmt_aligned_width_and_height(
158 width, height, format, 0, raster_mode, padding_threshold,
159 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h), &bytesPerPixel);
160 } else {
161 ALOGW("%s: Warning!! compute_compressedfmt_aligned_width_and_height not found", __FUNCTION__);
162 }
163}
164
165bool AdrenoMemInfo::IsUBWCSupportedByGPU(int format) {
166 if (!gfx_ubwc_disable_ && LINK_adreno_isUBWCSupportedByGpu) {
167 ADRENOPIXELFORMAT gpu_format = GetGpuPixelFormat(format);
168 return LINK_adreno_isUBWCSupportedByGpu(gpu_format);
169 }
170
171 return false;
172}
173
174uint32_t AdrenoMemInfo::GetGpuPixelAlignment() {
175 if (LINK_adreno_get_gpu_pixel_alignment) {
176 return LINK_adreno_get_gpu_pixel_alignment();
177 }
178
179 return 1;
180}
181
182ADRENOPIXELFORMAT AdrenoMemInfo::GetGpuPixelFormat(int hal_format) {
183 switch (hal_format) {
184 case HAL_PIXEL_FORMAT_RGBA_8888:
185 return ADRENO_PIXELFORMAT_R8G8B8A8;
186 case HAL_PIXEL_FORMAT_RGBX_8888:
187 return ADRENO_PIXELFORMAT_R8G8B8X8;
188 case HAL_PIXEL_FORMAT_RGB_565:
189 return ADRENO_PIXELFORMAT_B5G6R5;
190 case HAL_PIXEL_FORMAT_BGR_565:
191 return ADRENO_PIXELFORMAT_R5G6B5;
192 case HAL_PIXEL_FORMAT_NV12_ENCODEABLE:
193 return ADRENO_PIXELFORMAT_NV12;
194 case HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS:
195 case HAL_PIXEL_FORMAT_YCbCr_420_SP_VENUS_UBWC:
196 return ADRENO_PIXELFORMAT_NV12_EXT;
Rohit Kulkarni7943ec92016-12-20 18:18:46 -0800197 case HAL_PIXEL_FORMAT_YCbCr_420_TP10_UBWC:
198 return ADRENO_PIXELFORMAT_TP10;
199 case HAL_PIXEL_FORMAT_YCbCr_420_P010:
200 case HAL_PIXEL_FORMAT_YCbCr_420_P010_UBWC:
201 return ADRENO_PIXELFORMAT_P010;
Arun Kumar K.Rb97ca302017-04-06 15:59:33 -0700202 case HAL_PIXEL_FORMAT_RGBA_1010102:
203 return ADRENO_PIXELFORMAT_R10G10B10A2_UNORM;
204 case HAL_PIXEL_FORMAT_RGBX_1010102:
205 return ADRENO_PIXELFORMAT_R10G10B10X2_UNORM;
206 case HAL_PIXEL_FORMAT_ABGR_2101010:
207 return ADRENO_PIXELFORMAT_A2B10G10R10_UNORM;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530208 default:
209 ALOGE("%s: No map for format: 0x%x", __FUNCTION__, hal_format);
210 break;
211 }
212
213 return ADRENO_PIXELFORMAT_UNKNOWN;
214}
215
216} // namespace gralloc1