blob: b85e7c1dec1c80fe0411b685df5c81c59185e6eb [file] [log] [blame]
Prabhanjan Kandula96e92342016-03-24 21:03:35 +05301/*
Naseer Ahmeda422f352017-12-01 15:33:56 -05002 * Copyright (c) 2011-2018, 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#ifndef __GR_ADRENO_INFO_H__
31#define __GR_ADRENO_INFO_H__
32
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053033#include <media/msm_media_info.h>
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053034
Naseer Ahmeda422f352017-12-01 15:33:56 -050035namespace gralloc {
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053036
37// Adreno Pixel Formats
38typedef enum {
39 ADRENO_PIXELFORMAT_UNKNOWN = 0,
Saurabh Shah3cc87ed2017-10-24 14:09:35 -070040 ADRENO_PIXELFORMAT_R16G16B16A16_FLOAT = 10,
Arun Kumar K.Rb97ca302017-04-06 15:59:33 -070041 ADRENO_PIXELFORMAT_R10G10B10A2_UNORM = 24, // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053042 ADRENO_PIXELFORMAT_R8G8B8A8 = 28,
43 ADRENO_PIXELFORMAT_R8G8B8A8_SRGB = 29,
44 ADRENO_PIXELFORMAT_B5G6R5 = 85,
45 ADRENO_PIXELFORMAT_B5G5R5A1 = 86,
46 ADRENO_PIXELFORMAT_B8G8R8A8 = 90,
47 ADRENO_PIXELFORMAT_B8G8R8A8_SRGB = 91,
48 ADRENO_PIXELFORMAT_B8G8R8X8_SRGB = 93,
49 ADRENO_PIXELFORMAT_NV12 = 103,
Rohit Kulkarni7943ec92016-12-20 18:18:46 -080050 ADRENO_PIXELFORMAT_P010 = 104,
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053051 ADRENO_PIXELFORMAT_YUY2 = 107,
52 ADRENO_PIXELFORMAT_B4G4R4A4 = 115,
53 ADRENO_PIXELFORMAT_NV12_EXT = 506, // NV12 with non-std alignment and offsets
54 ADRENO_PIXELFORMAT_R8G8B8X8 = 507, // GL_RGB8 (Internal)
55 ADRENO_PIXELFORMAT_R8G8B8 = 508, // GL_RGB8
56 ADRENO_PIXELFORMAT_A1B5G5R5 = 519, // GL_RGB5_A1
57 ADRENO_PIXELFORMAT_R8G8B8X8_SRGB = 520, // GL_SRGB8
58 ADRENO_PIXELFORMAT_R8G8B8_SRGB = 521, // GL_SRGB8
Arun Kumar K.Rb97ca302017-04-06 15:59:33 -070059 ADRENO_PIXELFORMAT_A2B10G10R10_UNORM = 532,
Naseer Ahmeda422f352017-12-01 15:33:56 -050060 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
Arun Kumar K.Rb97ca302017-04-06 15:59:33 -070061 ADRENO_PIXELFORMAT_R10G10B10X2_UNORM = 537,
Naseer Ahmeda422f352017-12-01 15:33:56 -050062 // Vertex, Normalized GL_UNSIGNED_INT_10_10_10_2_OES
63 ADRENO_PIXELFORMAT_R5G6B5 = 610, // RGBA version of B5G6R5
64 ADRENO_PIXELFORMAT_R5G5B5A1 = 611, // RGBA version of B5G5R5A1
65 ADRENO_PIXELFORMAT_R4G4B4A4 = 612, // RGBA version of B4G4R4A4
66 ADRENO_PIXELFORMAT_UYVY = 614, // YUV 4:2:2 packed progressive (1 plane)
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053067 ADRENO_PIXELFORMAT_NV21 = 619,
68 ADRENO_PIXELFORMAT_Y8U8V8A8 = 620, // YUV 4:4:4 packed (1 plane)
69 ADRENO_PIXELFORMAT_Y8 = 625, // Single 8-bit luma only channel YUV format
Saurabh Shah3cc87ed2017-10-24 14:09:35 -070070 ADRENO_PIXELFORMAT_TP10 = 654, // YUV 4:2:0 planar 10 bits/comp (2 planes)
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053071} ADRENOPIXELFORMAT;
72
73class AdrenoMemInfo {
74 public:
Prabhanjan Kandula96e92342016-03-24 21:03:35 +053075 /*
76 * Function to compute aligned width and aligned height based on
77 * width, height, format and usage flags.
78 *
79 * @return aligned width, aligned height
80 */
81 void GetAlignedWidthAndHeight(int width, int height, int format, int usage,
82 unsigned int *aligned_w, unsigned int *aligned_h, bool ubwc_enabled,
83 bool tile_enabled);
84
85 /*
86 * Function to compute the adreno aligned width and aligned height
87 * based on the width and format.
88 *
89 * @return aligned width, aligned height
90 */
91 void AlignUnCompressedRGB(int width, int height, int format, int tileEnabled,
92 unsigned int *aligned_w, unsigned int *aligned_h);
93
94 /*
95 * Function to compute the adreno aligned width and aligned height
96 * based on the width and format.
97 *
98 * @return aligned width, aligned height
99 */
100 void AlignCompressedRGB(int width, int height, int format, unsigned int *aligned_w,
101 unsigned int *aligned_h);
102
103 /*
104 * Function to compute the pixel alignment requirement.
105 *
106 * @return alignment
107 */
108 uint32_t GetGpuPixelAlignment();
109
110 /*
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530111 * Function to query whether GPU supports UBWC for given HAL format
112 * @return > 0 : supported
113 * 0 : not supported
114 */
115 bool IsUBWCSupportedByGPU(int format);
116
117 /*
118 * Function to get the corresponding Adreno format for given HAL format
119 */
120 ADRENOPIXELFORMAT GetGpuPixelFormat(int hal_format);
121
Saurabh Shah14c8e5b2017-04-07 10:37:23 -0700122 static AdrenoMemInfo *GetInstance();
123
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530124 private:
Saurabh Shah5180c2d2017-07-26 11:09:27 -0700125 AdrenoMemInfo();
Saurabh Shah14c8e5b2017-04-07 10:37:23 -0700126 ~AdrenoMemInfo();
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530127 // link(s)to adreno surface padding library.
128 int (*LINK_adreno_compute_padding)(int width, int bpp, int surface_tile_height,
129 int screen_tile_height, int padding_threshold) = NULL;
130 void (*LINK_adreno_compute_aligned_width_and_height)(int width, int height, int bpp,
131 int tile_mode, int raster_mode,
132 int padding_threshold, int *aligned_w,
133 int *aligned_h) = NULL;
Prabhanjan Kandula7783d962017-04-21 01:38:32 -0700134 void (*LINK_adreno_compute_fmt_aligned_width_and_height)(int width, int height, int plane_id,
135 int format, int num_samples,
136 int tile_mode, int raster_mode,
137 int padding_threshold, int *aligned_w,
138 int *aligned_h) = NULL;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530139 void (*LINK_adreno_compute_compressedfmt_aligned_width_and_height)(
140 int width, int height, int format, int tile_mode, int raster_mode, int padding_threshold,
141 int *aligned_w, int *aligned_h, int *bpp) = NULL;
142 int (*LINK_adreno_isUBWCSupportedByGpu)(ADRENOPIXELFORMAT format) = NULL;
143 unsigned int (*LINK_adreno_get_gpu_pixel_alignment)() = NULL;
144
145 bool gfx_ubwc_disable_ = false;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530146 void *libadreno_utils_ = NULL;
Saurabh Shah14c8e5b2017-04-07 10:37:23 -0700147
148 static AdrenoMemInfo *s_instance;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530149};
150
Naseer Ahmeda422f352017-12-01 15:33:56 -0500151} // namespace gralloc
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530152
153#endif // __GR_ADRENO_INFO_H__