blob: 7ad680172aa680d30c08adc5e990194ed445e5f9 [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#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
35namespace gralloc1 {
36
37// Adreno Pixel Formats
38typedef enum {
39 ADRENO_PIXELFORMAT_UNKNOWN = 0,
40 ADRENO_PIXELFORMAT_R8G8B8A8 = 28,
41 ADRENO_PIXELFORMAT_R8G8B8A8_SRGB = 29,
42 ADRENO_PIXELFORMAT_B5G6R5 = 85,
43 ADRENO_PIXELFORMAT_B5G5R5A1 = 86,
44 ADRENO_PIXELFORMAT_B8G8R8A8 = 90,
45 ADRENO_PIXELFORMAT_B8G8R8A8_SRGB = 91,
46 ADRENO_PIXELFORMAT_B8G8R8X8_SRGB = 93,
47 ADRENO_PIXELFORMAT_NV12 = 103,
48 ADRENO_PIXELFORMAT_YUY2 = 107,
49 ADRENO_PIXELFORMAT_B4G4R4A4 = 115,
50 ADRENO_PIXELFORMAT_NV12_EXT = 506, // NV12 with non-std alignment and offsets
51 ADRENO_PIXELFORMAT_R8G8B8X8 = 507, // GL_RGB8 (Internal)
52 ADRENO_PIXELFORMAT_R8G8B8 = 508, // GL_RGB8
53 ADRENO_PIXELFORMAT_A1B5G5R5 = 519, // GL_RGB5_A1
54 ADRENO_PIXELFORMAT_R8G8B8X8_SRGB = 520, // GL_SRGB8
55 ADRENO_PIXELFORMAT_R8G8B8_SRGB = 521, // GL_SRGB8
56 ADRENO_PIXELFORMAT_R5G6B5 = 610, // RGBA version of B5G6R5
57 ADRENO_PIXELFORMAT_R5G5B5A1 = 611, // RGBA version of B5G5R5A1
58 ADRENO_PIXELFORMAT_R4G4B4A4 = 612, // RGBA version of B4G4R4A4
59 ADRENO_PIXELFORMAT_UYVY = 614, // YUV 4:2:2 packed progressive (1 plane)
60 ADRENO_PIXELFORMAT_NV21 = 619,
61 ADRENO_PIXELFORMAT_Y8U8V8A8 = 620, // YUV 4:4:4 packed (1 plane)
62 ADRENO_PIXELFORMAT_Y8 = 625, // Single 8-bit luma only channel YUV format
63} ADRENOPIXELFORMAT;
64
65class AdrenoMemInfo {
66 public:
67 AdrenoMemInfo();
68
69 ~AdrenoMemInfo();
70
71 bool Init();
72
73 /*
74 * Function to compute aligned width and aligned height based on
75 * width, height, format and usage flags.
76 *
77 * @return aligned width, aligned height
78 */
79 void GetAlignedWidthAndHeight(int width, int height, int format, int usage,
80 unsigned int *aligned_w, unsigned int *aligned_h, bool ubwc_enabled,
81 bool tile_enabled);
82
83 /*
84 * Function to compute the adreno aligned width and aligned height
85 * based on the width and format.
86 *
87 * @return aligned width, aligned height
88 */
89 void AlignUnCompressedRGB(int width, int height, int format, int tileEnabled,
90 unsigned int *aligned_w, unsigned int *aligned_h);
91
92 /*
93 * Function to compute the adreno aligned width and aligned height
94 * based on the width and format.
95 *
96 * @return aligned width, aligned height
97 */
98 void AlignCompressedRGB(int width, int height, int format, unsigned int *aligned_w,
99 unsigned int *aligned_h);
100
101 /*
102 * Function to compute the pixel alignment requirement.
103 *
104 * @return alignment
105 */
106 uint32_t GetGpuPixelAlignment();
107
108 /*
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530109 * Function to query whether GPU supports UBWC for given HAL format
110 * @return > 0 : supported
111 * 0 : not supported
112 */
113 bool IsUBWCSupportedByGPU(int format);
114
115 /*
116 * Function to get the corresponding Adreno format for given HAL format
117 */
118 ADRENOPIXELFORMAT GetGpuPixelFormat(int hal_format);
119
120 private:
121 // link(s)to adreno surface padding library.
122 int (*LINK_adreno_compute_padding)(int width, int bpp, int surface_tile_height,
123 int screen_tile_height, int padding_threshold) = NULL;
124 void (*LINK_adreno_compute_aligned_width_and_height)(int width, int height, int bpp,
125 int tile_mode, int raster_mode,
126 int padding_threshold, int *aligned_w,
127 int *aligned_h) = NULL;
Prabhanjan Kandula96e92342016-03-24 21:03:35 +0530128 void (*LINK_adreno_compute_compressedfmt_aligned_width_and_height)(
129 int width, int height, int format, int tile_mode, int raster_mode, int padding_threshold,
130 int *aligned_w, int *aligned_h, int *bpp) = NULL;
131 int (*LINK_adreno_isUBWCSupportedByGpu)(ADRENOPIXELFORMAT format) = NULL;
132 unsigned int (*LINK_adreno_get_gpu_pixel_alignment)() = NULL;
133
134 bool gfx_ubwc_disable_ = false;
135 bool map_fb_ = false;
136 void *libadreno_utils_ = NULL;
137};
138
139} // namespace gralloc1
140
141#endif // __GR_ADRENO_INFO_H__