1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#ifndef __DAL_TRANSFORM_H__
27#define __DAL_TRANSFORM_H__
28
29#include "hw_shared.h"
30#include "dc_hw_types.h"
31#include "fixed31_32.h"
32
33#define CSC_TEMPERATURE_MATRIX_SIZE 12
34
35struct bit_depth_reduction_params;
36
37struct transform {
38 const struct transform_funcs *funcs;
39 struct dc_context *ctx;
40 int inst;
41 struct dpp_caps *caps;
42 struct pwl_params regamma_params;
43};
44
45
46enum colorimetry {
47 COLORIMETRY_NO_DATA = 0,
48 COLORIMETRY_ITU601 = 1,
49 COLORIMETRY_ITU709 = 2,
50 COLORIMETRY_EXTENDED = 3
51};
52
53enum colorimetry_ext {
54 COLORIMETRYEX_XVYCC601 = 0,
55 COLORIMETRYEX_XVYCC709 = 1,
56 COLORIMETRYEX_SYCC601 = 2,
57 COLORIMETRYEX_ADOBEYCC601 = 3,
58 COLORIMETRYEX_ADOBERGB = 4,
59 COLORIMETRYEX_BT2020YCC = 5,
60 COLORIMETRYEX_BT2020RGBYCBCR = 6,
61 COLORIMETRYEX_RESERVED = 7
62};
63
64enum active_format_info {
65 ACTIVE_FORMAT_NO_DATA = 0,
66 ACTIVE_FORMAT_VALID = 1
67};
68
69
70enum active_format_aspect_ratio {
71 ACTIVE_FORMAT_ASPECT_RATIO_SAME_AS_PICTURE = 8,
72 ACTIVE_FORMAT_ASPECT_RATIO_4_3 = 9,
73 ACTIVE_FORMAT_ASPECT_RATIO_16_9 = 0XA,
74 ACTIVE_FORMAT_ASPECT_RATIO_14_9 = 0XB
75};
76
77enum bar_info {
78 BAR_INFO_NOT_VALID = 0,
79 BAR_INFO_VERTICAL_VALID = 1,
80 BAR_INFO_HORIZONTAL_VALID = 2,
81 BAR_INFO_BOTH_VALID = 3
82};
83
84enum picture_scaling {
85 PICTURE_SCALING_UNIFORM = 0,
86 PICTURE_SCALING_HORIZONTAL = 1,
87 PICTURE_SCALING_VERTICAL = 2,
88 PICTURE_SCALING_BOTH = 3
89};
90
91
92enum rgb_quantization_range {
93 RGB_QUANTIZATION_DEFAULT_RANGE = 0,
94 RGB_QUANTIZATION_LIMITED_RANGE = 1,
95 RGB_QUANTIZATION_FULL_RANGE = 2,
96 RGB_QUANTIZATION_RESERVED = 3
97};
98
99
100enum yyc_quantization_range {
101 YYC_QUANTIZATION_LIMITED_RANGE = 0,
102 YYC_QUANTIZATION_FULL_RANGE = 1,
103 YYC_QUANTIZATION_RESERVED2 = 2,
104 YYC_QUANTIZATION_RESERVED3 = 3
105};
106
107enum graphics_gamut_adjust_type {
108 GRAPHICS_GAMUT_ADJUST_TYPE_BYPASS = 0,
109 GRAPHICS_GAMUT_ADJUST_TYPE_HW,
110 GRAPHICS_GAMUT_ADJUST_TYPE_SW
111};
112
113enum lb_memory_config {
114
115 LB_MEMORY_CONFIG_0 = 0,
116
117
118 LB_MEMORY_CONFIG_1 = 1,
119
120
121 LB_MEMORY_CONFIG_2 = 2,
122
123
124
125
126 LB_MEMORY_CONFIG_3 = 3
127};
128
129struct xfm_grph_csc_adjustment {
130 struct fixed31_32 temperature_matrix[CSC_TEMPERATURE_MATRIX_SIZE];
131 enum graphics_gamut_adjust_type gamut_adjust_type;
132};
133
134struct overscan_info {
135 int left;
136 int right;
137 int top;
138 int bottom;
139};
140
141struct scaling_ratios {
142 struct fixed31_32 horz;
143 struct fixed31_32 vert;
144 struct fixed31_32 horz_c;
145 struct fixed31_32 vert_c;
146};
147
148struct sharpness_adj {
149 int horz;
150 int vert;
151};
152
153struct line_buffer_params {
154 bool alpha_en;
155 bool pixel_expan_mode;
156 bool interleave_en;
157 int dynamic_pixel_depth;
158 enum lb_pixel_depth depth;
159};
160
161struct scl_inits {
162 struct fixed31_32 h;
163 struct fixed31_32 h_c;
164 struct fixed31_32 v;
165 struct fixed31_32 v_bot;
166 struct fixed31_32 v_c;
167 struct fixed31_32 v_c_bot;
168};
169
170struct scaler_data {
171 int h_active;
172 int v_active;
173 struct scaling_taps taps;
174 struct rect viewport;
175 struct rect viewport_c;
176 struct rect recout;
177 struct scaling_ratios ratios;
178 struct scl_inits inits;
179 struct sharpness_adj sharpness;
180 enum pixel_format format;
181 struct line_buffer_params lb_params;
182};
183
184struct transform_funcs {
185 void (*transform_reset)(struct transform *xfm);
186
187 void (*transform_set_scaler)(struct transform *xfm,
188 const struct scaler_data *scl_data);
189
190 void (*transform_set_pixel_storage_depth)(
191 struct transform *xfm,
192 enum lb_pixel_depth depth,
193 const struct bit_depth_reduction_params *bit_depth_params);
194
195 bool (*transform_get_optimal_number_of_taps)(
196 struct transform *xfm,
197 struct scaler_data *scl_data,
198 const struct scaling_taps *in_taps);
199
200 void (*transform_set_gamut_remap)(
201 struct transform *xfm,
202 const struct xfm_grph_csc_adjustment *adjust);
203
204 void (*opp_set_csc_default)(
205 struct transform *xfm,
206 const struct default_adjustment *default_adjust);
207
208 void (*opp_set_csc_adjustment)(
209 struct transform *xfm,
210 const struct out_csc_color_matrix *tbl_entry);
211
212 void (*opp_power_on_regamma_lut)(
213 struct transform *xfm,
214 bool power_on);
215
216 void (*opp_program_regamma_lut)(
217 struct transform *xfm,
218 const struct pwl_result_data *rgb,
219 uint32_t num);
220
221 void (*opp_configure_regamma_lut)(
222 struct transform *xfm,
223 bool is_ram_a);
224
225 void (*opp_program_regamma_lutb_settings)(
226 struct transform *xfm,
227 const struct pwl_params *params);
228
229 void (*opp_program_regamma_luta_settings)(
230 struct transform *xfm,
231 const struct pwl_params *params);
232
233 void (*opp_program_regamma_pwl)(
234 struct transform *xfm, const struct pwl_params *params);
235
236 void (*opp_set_regamma_mode)(
237 struct transform *xfm_base,
238 enum opp_regamma mode);
239
240 void (*ipp_set_degamma)(
241 struct transform *xfm_base,
242 enum ipp_degamma_mode mode);
243
244 void (*ipp_program_input_lut)(
245 struct transform *xfm_base,
246 const struct dc_gamma *gamma);
247
248 void (*ipp_program_degamma_pwl)(struct transform *xfm_base,
249 const struct pwl_params *params);
250
251 void (*ipp_setup)(
252 struct transform *xfm_base,
253 enum surface_pixel_format format,
254 enum expansion_mode mode,
255 struct dc_csc_transform input_csc_color_matrix,
256 enum dc_color_space input_color_space);
257
258 void (*ipp_full_bypass)(struct transform *xfm_base);
259
260 void (*set_cursor_attributes)(
261 struct transform *xfm_base,
262 const struct dc_cursor_attributes *attr);
263
264};
265
266const uint16_t *get_filter_2tap_16p(void);
267const uint16_t *get_filter_2tap_64p(void);
268const uint16_t *get_filter_3tap_16p(struct fixed31_32 ratio);
269const uint16_t *get_filter_3tap_64p(struct fixed31_32 ratio);
270const uint16_t *get_filter_4tap_16p(struct fixed31_32 ratio);
271const uint16_t *get_filter_4tap_64p(struct fixed31_32 ratio);
272const uint16_t *get_filter_5tap_64p(struct fixed31_32 ratio);
273const uint16_t *get_filter_6tap_64p(struct fixed31_32 ratio);
274const uint16_t *get_filter_7tap_64p(struct fixed31_32 ratio);
275const uint16_t *get_filter_8tap_64p(struct fixed31_32 ratio);
276
277
278
279enum dscl_data_processing_format {
280 DSCL_DATA_PRCESSING_FIXED_FORMAT,
281 DSCL_DATA_PRCESSING_FLOAT_FORMAT,
282};
283
284
285
286
287
288
289
290struct dpp_caps {
291
292 enum dscl_data_processing_format dscl_data_proc_format;
293
294
295
296
297
298 void (*dscl_calc_lb_num_partitions)(
299 const struct scaler_data *scl_data,
300 enum lb_memory_config lb_config,
301 int *num_part_y,
302 int *num_part_c);
303};
304
305
306#endif
307