2 * Copyright 2012-16 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include "dce_transform.h"
27 #include "reg_helper.h"
29 #include "basics/conversion.h"
36 #define FN(reg_name, field_name) \
37 xfm_dce->xfm_shift->field_name, xfm_dce->xfm_mask->field_name
42 xfm_dce->base.ctx->logger
44 #define IDENTITY_RATIO(ratio) (dc_fixpt_u2d19(ratio) == (1 << 19))
45 #define GAMUT_MATRIX_SIZE 12
48 enum dcp_out_trunc_round_mode
{
49 DCP_OUT_TRUNC_ROUND_MODE_TRUNCATE
,
50 DCP_OUT_TRUNC_ROUND_MODE_ROUND
53 enum dcp_out_trunc_round_depth
{
54 DCP_OUT_TRUNC_ROUND_DEPTH_14BIT
,
55 DCP_OUT_TRUNC_ROUND_DEPTH_13BIT
,
56 DCP_OUT_TRUNC_ROUND_DEPTH_12BIT
,
57 DCP_OUT_TRUNC_ROUND_DEPTH_11BIT
,
58 DCP_OUT_TRUNC_ROUND_DEPTH_10BIT
,
59 DCP_OUT_TRUNC_ROUND_DEPTH_9BIT
,
60 DCP_OUT_TRUNC_ROUND_DEPTH_8BIT
63 /* defines the various methods of bit reduction available for use */
64 enum dcp_bit_depth_reduction_mode
{
65 DCP_BIT_DEPTH_REDUCTION_MODE_DITHER
,
66 DCP_BIT_DEPTH_REDUCTION_MODE_ROUND
,
67 DCP_BIT_DEPTH_REDUCTION_MODE_TRUNCATE
,
68 DCP_BIT_DEPTH_REDUCTION_MODE_DISABLED
,
69 DCP_BIT_DEPTH_REDUCTION_MODE_INVALID
72 enum dcp_spatial_dither_mode
{
73 DCP_SPATIAL_DITHER_MODE_AAAA
,
74 DCP_SPATIAL_DITHER_MODE_A_AA_A
,
75 DCP_SPATIAL_DITHER_MODE_AABBAABB
,
76 DCP_SPATIAL_DITHER_MODE_AABBCCAABBCC
,
77 DCP_SPATIAL_DITHER_MODE_INVALID
80 enum dcp_spatial_dither_depth
{
81 DCP_SPATIAL_DITHER_DEPTH_30BPP
,
82 DCP_SPATIAL_DITHER_DEPTH_24BPP
86 /* 00 - BITS2:0 Bypass */
87 CSC_COLOR_MODE_GRAPHICS_BYPASS
,
88 /* 01 - hard coded coefficient TV RGB */
89 CSC_COLOR_MODE_GRAPHICS_PREDEFINED
,
90 /* 04 - programmable OUTPUT CSC coefficient */
91 CSC_COLOR_MODE_GRAPHICS_OUTPUT_CSC
,
94 enum grph_color_adjust_option
{
95 GRPH_COLOR_MATRIX_HW_DEFAULT
= 1,
99 static const struct out_csc_color_matrix global_color_matrix
[] = {
101 { 0x2000, 0, 0, 0, 0, 0x2000, 0, 0, 0, 0, 0x2000, 0} },
102 { COLOR_SPACE_SRGB_LIMITED
,
103 { 0x1B60, 0, 0, 0x200, 0, 0x1B60, 0, 0x200, 0, 0, 0x1B60, 0x200} },
104 { COLOR_SPACE_YCBCR601
,
105 { 0xE00, 0xF447, 0xFDB9, 0x1000, 0x82F, 0x1012, 0x31F, 0x200, 0xFB47,
106 0xF6B9, 0xE00, 0x1000} },
107 { COLOR_SPACE_YCBCR709
, { 0xE00, 0xF349, 0xFEB7, 0x1000, 0x5D2, 0x1394, 0x1FA,
108 0x200, 0xFCCB, 0xF535, 0xE00, 0x1000} },
109 /* TODO: correct values below */
110 { COLOR_SPACE_YCBCR601_LIMITED
, { 0xE00, 0xF447, 0xFDB9, 0x1000, 0x991,
111 0x12C9, 0x3A6, 0x200, 0xFB47, 0xF6B9, 0xE00, 0x1000} },
112 { COLOR_SPACE_YCBCR709_LIMITED
, { 0xE00, 0xF349, 0xFEB7, 0x1000, 0x6CE, 0x16E3,
113 0x24F, 0x200, 0xFCCB, 0xF535, 0xE00, 0x1000} }
116 static bool setup_scaling_configuration(
117 struct dce_transform
*xfm_dce
,
118 const struct scaler_data
*data
)
120 REG_SET(SCL_BYPASS_CONTROL
, 0, SCL_BYPASS_MODE
, 0);
122 if (data
->taps
.h_taps
+ data
->taps
.v_taps
<= 2) {
124 if (xfm_dce
->xfm_mask
->SCL_PSCL_EN
!= 0)
125 REG_UPDATE_2(SCL_MODE
, SCL_MODE
, 0, SCL_PSCL_EN
, 0);
127 REG_UPDATE(SCL_MODE
, SCL_MODE
, 0);
131 REG_SET_2(SCL_TAP_CONTROL
, 0,
132 SCL_H_NUM_OF_TAPS
, data
->taps
.h_taps
- 1,
133 SCL_V_NUM_OF_TAPS
, data
->taps
.v_taps
- 1);
135 if (data
->format
<= PIXEL_FORMAT_GRPH_END
)
136 REG_UPDATE(SCL_MODE
, SCL_MODE
, 1);
138 REG_UPDATE(SCL_MODE
, SCL_MODE
, 2);
140 if (xfm_dce
->xfm_mask
->SCL_PSCL_EN
!= 0)
141 REG_UPDATE(SCL_MODE
, SCL_PSCL_EN
, 1);
143 /* 1 - Replace out of bound pixels with edge */
144 REG_SET(SCL_CONTROL
, 0, SCL_BOUNDARY_MODE
, 1);
149 static void program_overscan(
150 struct dce_transform
*xfm_dce
,
151 const struct scaler_data
*data
)
153 int overscan_right
= data
->h_active
154 - data
->recout
.x
- data
->recout
.width
;
155 int overscan_bottom
= data
->v_active
156 - data
->recout
.y
- data
->recout
.height
;
158 if (xfm_dce
->base
.ctx
->dc
->debug
.visual_confirm
!= VISUAL_CONFIRM_DISABLE
) {
159 overscan_bottom
+= 2;
163 if (overscan_right
< 0) {
167 if (overscan_bottom
< 0) {
172 REG_SET_2(EXT_OVERSCAN_LEFT_RIGHT
, 0,
173 EXT_OVERSCAN_LEFT
, data
->recout
.x
,
174 EXT_OVERSCAN_RIGHT
, overscan_right
);
175 REG_SET_2(EXT_OVERSCAN_TOP_BOTTOM
, 0,
176 EXT_OVERSCAN_TOP
, data
->recout
.y
,
177 EXT_OVERSCAN_BOTTOM
, overscan_bottom
);
180 static void program_multi_taps_filter(
181 struct dce_transform
*xfm_dce
,
183 const uint16_t *coeffs
,
184 enum ram_filter_type filter_type
)
188 int taps_pairs
= (taps
+ 1) / 2;
189 int phases_to_program
= SCL_PHASES
/ 2 + 1;
191 uint32_t power_ctl
= 0;
196 /*We need to disable power gating on coeff memory to do programming*/
197 if (REG(DCFE_MEM_PWR_CTRL
)) {
198 power_ctl
= REG_READ(DCFE_MEM_PWR_CTRL
);
199 REG_SET(DCFE_MEM_PWR_CTRL
, power_ctl
, SCL_COEFF_MEM_PWR_DIS
, 1);
201 REG_WAIT(DCFE_MEM_PWR_STATUS
, SCL_COEFF_MEM_PWR_STATE
, 0, 1, 10);
203 for (phase
= 0; phase
< phases_to_program
; phase
++) {
204 /*we always program N/2 + 1 phases, total phases N, but N/2-1 are just mirror
205 phase 0 is unique and phase N/2 is unique if N is even*/
206 for (pair
= 0; pair
< taps_pairs
; pair
++) {
207 uint16_t odd_coeff
= 0;
208 uint16_t even_coeff
= coeffs
[array_idx
];
210 REG_SET_3(SCL_COEF_RAM_SELECT
, 0,
211 SCL_C_RAM_FILTER_TYPE
, filter_type
,
212 SCL_C_RAM_PHASE
, phase
,
213 SCL_C_RAM_TAP_PAIR_IDX
, pair
);
215 if (taps
% 2 && pair
== taps_pairs
- 1)
218 odd_coeff
= coeffs
[array_idx
+ 1];
222 REG_SET_4(SCL_COEF_RAM_TAP_DATA
, 0,
223 SCL_C_RAM_EVEN_TAP_COEF_EN
, 1,
224 SCL_C_RAM_EVEN_TAP_COEF
, even_coeff
,
225 SCL_C_RAM_ODD_TAP_COEF_EN
, 1,
226 SCL_C_RAM_ODD_TAP_COEF
, odd_coeff
);
230 /*We need to restore power gating on coeff memory to initial state*/
231 if (REG(DCFE_MEM_PWR_CTRL
))
232 REG_WRITE(DCFE_MEM_PWR_CTRL
, power_ctl
);
235 static void program_viewport(
236 struct dce_transform
*xfm_dce
,
237 const struct rect
*view_port
)
239 REG_SET_2(VIEWPORT_START
, 0,
240 VIEWPORT_X_START
, view_port
->x
,
241 VIEWPORT_Y_START
, view_port
->y
);
243 REG_SET_2(VIEWPORT_SIZE
, 0,
244 VIEWPORT_HEIGHT
, view_port
->height
,
245 VIEWPORT_WIDTH
, view_port
->width
);
247 /* TODO: add stereo support */
250 static void calculate_inits(
251 struct dce_transform
*xfm_dce
,
252 const struct scaler_data
*data
,
253 struct scl_ratios_inits
*inits
)
255 struct fixed31_32 h_init
;
256 struct fixed31_32 v_init
;
258 inits
->h_int_scale_ratio
=
259 dc_fixpt_u2d19(data
->ratios
.horz
) << 5;
260 inits
->v_int_scale_ratio
=
261 dc_fixpt_u2d19(data
->ratios
.vert
) << 5;
267 dc_fixpt_from_int(data
->taps
.h_taps
+ 1)),
269 inits
->h_init
.integer
= dc_fixpt_floor(h_init
);
270 inits
->h_init
.fraction
= dc_fixpt_u0d19(h_init
) << 5;
276 dc_fixpt_from_int(data
->taps
.v_taps
+ 1)),
278 inits
->v_init
.integer
= dc_fixpt_floor(v_init
);
279 inits
->v_init
.fraction
= dc_fixpt_u0d19(v_init
) << 5;
282 static void program_scl_ratios_inits(
283 struct dce_transform
*xfm_dce
,
284 struct scl_ratios_inits
*inits
)
287 REG_SET(SCL_HORZ_FILTER_SCALE_RATIO
, 0,
288 SCL_H_SCALE_RATIO
, inits
->h_int_scale_ratio
);
290 REG_SET(SCL_VERT_FILTER_SCALE_RATIO
, 0,
291 SCL_V_SCALE_RATIO
, inits
->v_int_scale_ratio
);
293 REG_SET_2(SCL_HORZ_FILTER_INIT
, 0,
294 SCL_H_INIT_INT
, inits
->h_init
.integer
,
295 SCL_H_INIT_FRAC
, inits
->h_init
.fraction
);
297 REG_SET_2(SCL_VERT_FILTER_INIT
, 0,
298 SCL_V_INIT_INT
, inits
->v_init
.integer
,
299 SCL_V_INIT_FRAC
, inits
->v_init
.fraction
);
301 REG_WRITE(SCL_AUTOMATIC_MODE_CONTROL
, 0);
304 static const uint16_t *get_filter_coeffs_16p(int taps
, struct fixed31_32 ratio
)
307 return get_filter_4tap_16p(ratio
);
309 return get_filter_3tap_16p(ratio
);
311 return get_filter_2tap_16p();
315 /* should never happen, bug */
321 static void dce_transform_set_scaler(
322 struct transform
*xfm
,
323 const struct scaler_data
*data
)
325 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
326 bool is_scaling_required
;
327 bool filter_updated
= false;
328 const uint16_t *coeffs_v
, *coeffs_h
;
330 /*Use all three pieces of memory always*/
331 REG_SET_2(LB_MEMORY_CTRL
, 0,
333 LB_MEMORY_SIZE
, xfm_dce
->lb_memory_size
);
335 /* Clear SCL_F_SHARP_CONTROL value to 0 */
336 REG_WRITE(SCL_F_SHARP_CONTROL
, 0);
338 /* 1. Program overscan */
339 program_overscan(xfm_dce
, data
);
341 /* 2. Program taps and configuration */
342 is_scaling_required
= setup_scaling_configuration(xfm_dce
, data
);
344 if (is_scaling_required
) {
345 /* 3. Calculate and program ratio, filter initialization */
346 struct scl_ratios_inits inits
= { 0 };
348 calculate_inits(xfm_dce
, data
, &inits
);
350 program_scl_ratios_inits(xfm_dce
, &inits
);
352 coeffs_v
= get_filter_coeffs_16p(data
->taps
.v_taps
, data
->ratios
.vert
);
353 coeffs_h
= get_filter_coeffs_16p(data
->taps
.h_taps
, data
->ratios
.horz
);
355 if (coeffs_v
!= xfm_dce
->filter_v
|| coeffs_h
!= xfm_dce
->filter_h
) {
356 /* 4. Program vertical filters */
357 if (xfm_dce
->filter_v
== NULL
)
358 REG_SET(SCL_VERT_FILTER_CONTROL
, 0,
359 SCL_V_2TAP_HARDCODE_COEF_EN
, 0);
360 program_multi_taps_filter(
364 FILTER_TYPE_RGB_Y_VERTICAL
);
365 program_multi_taps_filter(
369 FILTER_TYPE_ALPHA_VERTICAL
);
371 /* 5. Program horizontal filters */
372 if (xfm_dce
->filter_h
== NULL
)
373 REG_SET(SCL_HORZ_FILTER_CONTROL
, 0,
374 SCL_H_2TAP_HARDCODE_COEF_EN
, 0);
375 program_multi_taps_filter(
379 FILTER_TYPE_RGB_Y_HORIZONTAL
);
380 program_multi_taps_filter(
384 FILTER_TYPE_ALPHA_HORIZONTAL
);
386 xfm_dce
->filter_v
= coeffs_v
;
387 xfm_dce
->filter_h
= coeffs_h
;
388 filter_updated
= true;
392 /* 6. Program the viewport */
393 program_viewport(xfm_dce
, &data
->viewport
);
395 /* 7. Set bit to flip to new coefficient memory */
397 REG_UPDATE(SCL_UPDATE
, SCL_COEF_UPDATE_COMPLETE
, 1);
399 REG_UPDATE(LB_DATA_FORMAT
, ALPHA_EN
, data
->lb_params
.alpha_en
);
402 /*****************************************************************************
405 * @param depth : bit depth to set the clamp to (should match denorm)
408 * Programs clamp according to panel bit depth.
410 *******************************************************************************/
411 static void set_clamp(
412 struct dce_transform
*xfm_dce
,
413 enum dc_color_depth depth
)
417 /* At the clamp block the data will be MSB aligned, so we set the max
419 * For example, the max value for 6 bits MSB aligned (14 bit bus) would
420 * be "11 1111 0000 0000" in binary, so 0x3F00.
423 case COLOR_DEPTH_666
:
424 /* 6bit MSB aligned on 14 bit bus '11 1111 0000 0000' */
427 case COLOR_DEPTH_888
:
428 /* 8bit MSB aligned on 14 bit bus '11 1111 1100 0000' */
431 case COLOR_DEPTH_101010
:
432 /* 10bit MSB aligned on 14 bit bus '11 1111 1111 1100' */
435 case COLOR_DEPTH_121212
:
436 /* 12bit MSB aligned on 14 bit bus '11 1111 1111 1111' */
441 BREAK_TO_DEBUGGER(); /* Invalid clamp bit depth */
443 REG_SET_2(OUT_CLAMP_CONTROL_B_CB
, 0,
444 OUT_CLAMP_MIN_B_CB
, 0,
445 OUT_CLAMP_MAX_B_CB
, clamp_max
);
447 REG_SET_2(OUT_CLAMP_CONTROL_G_Y
, 0,
448 OUT_CLAMP_MIN_G_Y
, 0,
449 OUT_CLAMP_MAX_G_Y
, clamp_max
);
451 REG_SET_2(OUT_CLAMP_CONTROL_R_CR
, 0,
452 OUT_CLAMP_MIN_R_CR
, 0,
453 OUT_CLAMP_MAX_R_CR
, clamp_max
);
456 /*******************************************************************************
460 * Programs Round/Truncate
462 * @param [in] mode :round or truncate
463 * @param [in] depth :bit depth to round/truncate to
464 OUT_ROUND_TRUNC_MODE 3:0 0xA Output data round or truncate mode
466 00 - truncate to u0.12
467 01 - truncate to u0.11
468 02 - truncate to u0.10
469 03 - truncate to u0.9
470 04 - truncate to u0.8
472 06 - truncate to u0.14
473 07 - truncate to u0.13 set_reg_field_value(
476 OUT_CLAMP_CONTROL_R_CR,
487 ******************************************************************************/
488 static void set_round(
489 struct dce_transform
*xfm_dce
,
490 enum dcp_out_trunc_round_mode mode
,
491 enum dcp_out_trunc_round_depth depth
)
496 /* set up bit depth */
498 case DCP_OUT_TRUNC_ROUND_DEPTH_14BIT
:
501 case DCP_OUT_TRUNC_ROUND_DEPTH_13BIT
:
504 case DCP_OUT_TRUNC_ROUND_DEPTH_12BIT
:
507 case DCP_OUT_TRUNC_ROUND_DEPTH_11BIT
:
510 case DCP_OUT_TRUNC_ROUND_DEPTH_10BIT
:
513 case DCP_OUT_TRUNC_ROUND_DEPTH_9BIT
:
516 case DCP_OUT_TRUNC_ROUND_DEPTH_8BIT
:
521 BREAK_TO_DEBUGGER(); /* Invalid dcp_out_trunc_round_depth */
524 /* set up round or truncate */
526 case DCP_OUT_TRUNC_ROUND_MODE_TRUNCATE
:
529 case DCP_OUT_TRUNC_ROUND_MODE_ROUND
:
533 BREAK_TO_DEBUGGER(); /* Invalid dcp_out_trunc_round_mode */
536 depth_bits
|= mode_bit
<< 3;
538 REG_SET(OUT_ROUND_CONTROL
, 0, OUT_ROUND_TRUNC_MODE
, depth_bits
);
541 /*****************************************************************************
547 * @param [in] dither_enable : enable dither
548 * @param [in] dither_mode : dither mode to set
549 * @param [in] dither_depth : bit depth to dither to
550 * @param [in] frame_random_enable : enable frame random
551 * @param [in] rgb_random_enable : enable rgb random
552 * @param [in] highpass_random_enable : enable highpass random
554 ******************************************************************************/
556 static void set_dither(
557 struct dce_transform
*xfm_dce
,
559 enum dcp_spatial_dither_mode dither_mode
,
560 enum dcp_spatial_dither_depth dither_depth
,
561 bool frame_random_enable
,
562 bool rgb_random_enable
,
563 bool highpass_random_enable
)
565 int dither_depth_bits
= 0;
566 int dither_mode_bits
= 0;
568 switch (dither_mode
) {
569 case DCP_SPATIAL_DITHER_MODE_AAAA
:
570 dither_mode_bits
= 0;
572 case DCP_SPATIAL_DITHER_MODE_A_AA_A
:
573 dither_mode_bits
= 1;
575 case DCP_SPATIAL_DITHER_MODE_AABBAABB
:
576 dither_mode_bits
= 2;
578 case DCP_SPATIAL_DITHER_MODE_AABBCCAABBCC
:
579 dither_mode_bits
= 3;
582 /* Invalid dcp_spatial_dither_mode */
586 switch (dither_depth
) {
587 case DCP_SPATIAL_DITHER_DEPTH_30BPP
:
588 dither_depth_bits
= 0;
590 case DCP_SPATIAL_DITHER_DEPTH_24BPP
:
591 dither_depth_bits
= 1;
594 /* Invalid dcp_spatial_dither_depth */
598 /* write the register */
599 REG_SET_6(DCP_SPATIAL_DITHER_CNTL
, 0,
600 DCP_SPATIAL_DITHER_EN
, dither_enable
,
601 DCP_SPATIAL_DITHER_MODE
, dither_mode_bits
,
602 DCP_SPATIAL_DITHER_DEPTH
, dither_depth_bits
,
603 DCP_FRAME_RANDOM_ENABLE
, frame_random_enable
,
604 DCP_RGB_RANDOM_ENABLE
, rgb_random_enable
,
605 DCP_HIGHPASS_RANDOM_ENABLE
, highpass_random_enable
);
608 /*****************************************************************************
609 * dce_transform_bit_depth_reduction_program
612 * Programs the DCP bit depth reduction registers (Clamp, Round/Truncate,
615 * @param depth : bit depth to set the clamp to (should match denorm)
617 ******************************************************************************/
618 static void program_bit_depth_reduction(
619 struct dce_transform
*xfm_dce
,
620 enum dc_color_depth depth
,
621 const struct bit_depth_reduction_params
*bit_depth_params
)
623 enum dcp_out_trunc_round_depth trunc_round_depth
;
624 enum dcp_out_trunc_round_mode trunc_mode
;
625 bool spatial_dither_enable
;
627 ASSERT(depth
< COLOR_DEPTH_121212
); /* Invalid clamp bit depth */
629 spatial_dither_enable
= bit_depth_params
->flags
.SPATIAL_DITHER_ENABLED
;
630 /* Default to 12 bit truncation without rounding */
631 trunc_round_depth
= DCP_OUT_TRUNC_ROUND_DEPTH_12BIT
;
632 trunc_mode
= DCP_OUT_TRUNC_ROUND_MODE_TRUNCATE
;
634 if (bit_depth_params
->flags
.TRUNCATE_ENABLED
) {
635 /* Don't enable dithering if truncation is enabled */
636 spatial_dither_enable
= false;
637 trunc_mode
= bit_depth_params
->flags
.TRUNCATE_MODE
?
638 DCP_OUT_TRUNC_ROUND_MODE_ROUND
:
639 DCP_OUT_TRUNC_ROUND_MODE_TRUNCATE
;
641 if (bit_depth_params
->flags
.TRUNCATE_DEPTH
== 0 ||
642 bit_depth_params
->flags
.TRUNCATE_DEPTH
== 1)
643 trunc_round_depth
= DCP_OUT_TRUNC_ROUND_DEPTH_8BIT
;
644 else if (bit_depth_params
->flags
.TRUNCATE_DEPTH
== 2)
645 trunc_round_depth
= DCP_OUT_TRUNC_ROUND_DEPTH_10BIT
;
648 * Invalid truncate/round depth. Setting here to 12bit
649 * to prevent use-before-initialize errors.
651 trunc_round_depth
= DCP_OUT_TRUNC_ROUND_DEPTH_12BIT
;
656 set_clamp(xfm_dce
, depth
);
657 set_round(xfm_dce
, trunc_mode
, trunc_round_depth
);
659 spatial_dither_enable
,
660 DCP_SPATIAL_DITHER_MODE_A_AA_A
,
661 DCP_SPATIAL_DITHER_DEPTH_30BPP
,
662 bit_depth_params
->flags
.FRAME_RANDOM
,
663 bit_depth_params
->flags
.RGB_RANDOM
,
664 bit_depth_params
->flags
.HIGHPASS_RANDOM
);
667 static int dce_transform_get_max_num_of_supported_lines(
668 struct dce_transform
*xfm_dce
,
669 enum lb_pixel_depth depth
,
672 int pixels_per_entries
= 0;
673 int max_pixels_supports
= 0;
677 /* Find number of pixels that can fit into a single LB entry and
678 * take floor of the value since we cannot store a single pixel
679 * across multiple entries. */
681 case LB_PIXEL_DEPTH_18BPP
:
682 pixels_per_entries
= xfm_dce
->lb_bits_per_entry
/ 18;
685 case LB_PIXEL_DEPTH_24BPP
:
686 pixels_per_entries
= xfm_dce
->lb_bits_per_entry
/ 24;
689 case LB_PIXEL_DEPTH_30BPP
:
690 pixels_per_entries
= xfm_dce
->lb_bits_per_entry
/ 30;
693 case LB_PIXEL_DEPTH_36BPP
:
694 pixels_per_entries
= xfm_dce
->lb_bits_per_entry
/ 36;
698 DC_LOG_WARNING("%s: Invalid LB pixel depth",
704 ASSERT(pixels_per_entries
);
706 max_pixels_supports
=
708 xfm_dce
->lb_memory_size
;
710 return (max_pixels_supports
/ pixel_width
);
713 static void set_denormalization(
714 struct dce_transform
*xfm_dce
,
715 enum dc_color_depth depth
)
720 case COLOR_DEPTH_666
:
721 /* 63/64 for 6 bit output color depth */
724 case COLOR_DEPTH_888
:
725 /* Unity for 8 bit output color depth
726 * because prescale is disabled by default */
729 case COLOR_DEPTH_101010
:
730 /* 1023/1024 for 10 bit output color depth */
733 case COLOR_DEPTH_121212
:
734 /* 4095/4096 for 12 bit output color depth */
737 case COLOR_DEPTH_141414
:
738 case COLOR_DEPTH_161616
:
740 /* not valid used case! */
744 REG_SET(DENORM_CONTROL
, 0, DENORM_MODE
, denorm_mode
);
747 static void dce_transform_set_pixel_storage_depth(
748 struct transform
*xfm
,
749 enum lb_pixel_depth depth
,
750 const struct bit_depth_reduction_params
*bit_depth_params
)
752 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
753 int pixel_depth
, expan_mode
;
754 enum dc_color_depth color_depth
;
757 case LB_PIXEL_DEPTH_18BPP
:
758 color_depth
= COLOR_DEPTH_666
;
762 case LB_PIXEL_DEPTH_24BPP
:
763 color_depth
= COLOR_DEPTH_888
;
767 case LB_PIXEL_DEPTH_30BPP
:
768 color_depth
= COLOR_DEPTH_101010
;
772 case LB_PIXEL_DEPTH_36BPP
:
773 color_depth
= COLOR_DEPTH_121212
;
778 color_depth
= COLOR_DEPTH_101010
;
785 set_denormalization(xfm_dce
, color_depth
);
786 program_bit_depth_reduction(xfm_dce
, color_depth
, bit_depth_params
);
788 REG_UPDATE_2(LB_DATA_FORMAT
,
789 PIXEL_DEPTH
, pixel_depth
,
790 PIXEL_EXPAN_MODE
, expan_mode
);
792 if (!(xfm_dce
->lb_pixel_depth_supported
& depth
)) {
793 /*we should use unsupported capabilities
794 * unless it is required by w/a*/
795 DC_LOG_WARNING("%s: Capability not supported",
800 static void program_gamut_remap(
801 struct dce_transform
*xfm_dce
,
802 const uint16_t *reg_val
)
805 REG_SET_2(GAMUT_REMAP_C11_C12
, 0,
806 GAMUT_REMAP_C11
, reg_val
[0],
807 GAMUT_REMAP_C12
, reg_val
[1]);
808 REG_SET_2(GAMUT_REMAP_C13_C14
, 0,
809 GAMUT_REMAP_C13
, reg_val
[2],
810 GAMUT_REMAP_C14
, reg_val
[3]);
811 REG_SET_2(GAMUT_REMAP_C21_C22
, 0,
812 GAMUT_REMAP_C21
, reg_val
[4],
813 GAMUT_REMAP_C22
, reg_val
[5]);
814 REG_SET_2(GAMUT_REMAP_C23_C24
, 0,
815 GAMUT_REMAP_C23
, reg_val
[6],
816 GAMUT_REMAP_C24
, reg_val
[7]);
817 REG_SET_2(GAMUT_REMAP_C31_C32
, 0,
818 GAMUT_REMAP_C31
, reg_val
[8],
819 GAMUT_REMAP_C32
, reg_val
[9]);
820 REG_SET_2(GAMUT_REMAP_C33_C34
, 0,
821 GAMUT_REMAP_C33
, reg_val
[10],
822 GAMUT_REMAP_C34
, reg_val
[11]);
824 REG_SET(GAMUT_REMAP_CONTROL
, 0, GRPH_GAMUT_REMAP_MODE
, 1);
826 REG_SET(GAMUT_REMAP_CONTROL
, 0, GRPH_GAMUT_REMAP_MODE
, 0);
831 *****************************************************************************
832 * Function: dal_transform_wide_gamut_set_gamut_remap
834 * @param [in] const struct xfm_grph_csc_adjustment *adjust
839 * @note calculate and apply color temperature adjustment to in Rgb color space
843 *****************************************************************************
845 static void dce_transform_set_gamut_remap(
846 struct transform
*xfm
,
847 const struct xfm_grph_csc_adjustment
*adjust
)
849 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
852 if (adjust
->gamut_adjust_type
!= GRAPHICS_GAMUT_ADJUST_TYPE_SW
)
853 /* Bypass if type is bypass or hw */
854 program_gamut_remap(xfm_dce
, NULL
);
856 struct fixed31_32 arr_matrix
[GAMUT_MATRIX_SIZE
];
857 uint16_t arr_reg_val
[GAMUT_MATRIX_SIZE
];
859 for (i
= 0; i
< GAMUT_MATRIX_SIZE
; i
++)
860 arr_matrix
[i
] = adjust
->temperature_matrix
[i
];
862 convert_float_matrix(
863 arr_reg_val
, arr_matrix
, GAMUT_MATRIX_SIZE
);
865 program_gamut_remap(xfm_dce
, arr_reg_val
);
869 static uint32_t decide_taps(struct fixed31_32 ratio
, uint32_t in_taps
, bool chroma
)
873 if (IDENTITY_RATIO(ratio
)) {
875 } else if (in_taps
!= 0) {
891 bool dce_transform_get_optimal_number_of_taps(
892 struct transform
*xfm
,
893 struct scaler_data
*scl_data
,
894 const struct scaling_taps
*in_taps
)
896 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
897 int pixel_width
= scl_data
->viewport
.width
;
898 int max_num_of_lines
;
900 if (xfm_dce
->prescaler_on
&&
901 (scl_data
->viewport
.width
> scl_data
->recout
.width
))
902 pixel_width
= scl_data
->recout
.width
;
904 max_num_of_lines
= dce_transform_get_max_num_of_supported_lines(
906 scl_data
->lb_params
.depth
,
909 /* Fail if in_taps are impossible */
910 if (in_taps
->v_taps
>= max_num_of_lines
)
914 * Set taps according to this policy (in this order)
915 * - Use 1 for no scaling
917 * - Use 4 and reduce as required by line buffer size
918 * - Decide chroma taps if chroma is scaled
920 * Ignore input chroma taps. Decide based on non-chroma
922 scl_data
->taps
.h_taps
= decide_taps(scl_data
->ratios
.horz
, in_taps
->h_taps
, false);
923 scl_data
->taps
.v_taps
= decide_taps(scl_data
->ratios
.vert
, in_taps
->v_taps
, false);
924 scl_data
->taps
.h_taps_c
= decide_taps(scl_data
->ratios
.horz_c
, in_taps
->h_taps
, true);
925 scl_data
->taps
.v_taps_c
= decide_taps(scl_data
->ratios
.vert_c
, in_taps
->v_taps
, true);
927 if (!IDENTITY_RATIO(scl_data
->ratios
.vert
)) {
928 /* reduce v_taps if needed but ensure we have at least two */
929 if (in_taps
->v_taps
== 0
930 && max_num_of_lines
<= scl_data
->taps
.v_taps
931 && scl_data
->taps
.v_taps
> 1) {
932 scl_data
->taps
.v_taps
= max_num_of_lines
- 1;
935 if (scl_data
->taps
.v_taps
<= 1)
939 if (!IDENTITY_RATIO(scl_data
->ratios
.vert_c
)) {
940 /* reduce chroma v_taps if needed but ensure we have at least two */
941 if (max_num_of_lines
<= scl_data
->taps
.v_taps_c
&& scl_data
->taps
.v_taps_c
> 1) {
942 scl_data
->taps
.v_taps_c
= max_num_of_lines
- 1;
945 if (scl_data
->taps
.v_taps_c
<= 1)
949 /* we've got valid taps */
953 static void dce_transform_reset(struct transform
*xfm
)
955 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
957 xfm_dce
->filter_h
= NULL
;
958 xfm_dce
->filter_v
= NULL
;
961 static void program_color_matrix(
962 struct dce_transform
*xfm_dce
,
963 const struct out_csc_color_matrix
*tbl_entry
,
964 enum grph_color_adjust_option options
)
967 REG_SET_2(OUTPUT_CSC_C11_C12
, 0,
968 OUTPUT_CSC_C11
, tbl_entry
->regval
[0],
969 OUTPUT_CSC_C12
, tbl_entry
->regval
[1]);
972 REG_SET_2(OUTPUT_CSC_C13_C14
, 0,
973 OUTPUT_CSC_C11
, tbl_entry
->regval
[2],
974 OUTPUT_CSC_C12
, tbl_entry
->regval
[3]);
977 REG_SET_2(OUTPUT_CSC_C21_C22
, 0,
978 OUTPUT_CSC_C11
, tbl_entry
->regval
[4],
979 OUTPUT_CSC_C12
, tbl_entry
->regval
[5]);
982 REG_SET_2(OUTPUT_CSC_C23_C24
, 0,
983 OUTPUT_CSC_C11
, tbl_entry
->regval
[6],
984 OUTPUT_CSC_C12
, tbl_entry
->regval
[7]);
987 REG_SET_2(OUTPUT_CSC_C31_C32
, 0,
988 OUTPUT_CSC_C11
, tbl_entry
->regval
[8],
989 OUTPUT_CSC_C12
, tbl_entry
->regval
[9]);
992 REG_SET_2(OUTPUT_CSC_C33_C34
, 0,
993 OUTPUT_CSC_C11
, tbl_entry
->regval
[10],
994 OUTPUT_CSC_C12
, tbl_entry
->regval
[11]);
998 static bool configure_graphics_mode(
999 struct dce_transform
*xfm_dce
,
1000 enum csc_color_mode config
,
1001 enum graphics_csc_adjust_type csc_adjust_type
,
1002 enum dc_color_space color_space
)
1004 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1005 OUTPUT_CSC_GRPH_MODE
, 0);
1007 if (csc_adjust_type
== GRAPHICS_CSC_ADJUST_TYPE_SW
) {
1008 if (config
== CSC_COLOR_MODE_GRAPHICS_OUTPUT_CSC
) {
1009 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1010 OUTPUT_CSC_GRPH_MODE
, 4);
1013 switch (color_space
) {
1014 case COLOR_SPACE_SRGB
:
1016 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1017 OUTPUT_CSC_GRPH_MODE
, 0);
1019 case COLOR_SPACE_SRGB_LIMITED
:
1021 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1022 OUTPUT_CSC_GRPH_MODE
, 1);
1024 case COLOR_SPACE_YCBCR601
:
1025 case COLOR_SPACE_YCBCR601_LIMITED
:
1027 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1028 OUTPUT_CSC_GRPH_MODE
, 2);
1030 case COLOR_SPACE_YCBCR709
:
1031 case COLOR_SPACE_YCBCR709_LIMITED
:
1033 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1034 OUTPUT_CSC_GRPH_MODE
, 3);
1040 } else if (csc_adjust_type
== GRAPHICS_CSC_ADJUST_TYPE_HW
) {
1041 switch (color_space
) {
1042 case COLOR_SPACE_SRGB
:
1044 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1045 OUTPUT_CSC_GRPH_MODE
, 0);
1048 case COLOR_SPACE_SRGB_LIMITED
:
1050 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1051 OUTPUT_CSC_GRPH_MODE
, 1);
1053 case COLOR_SPACE_YCBCR601
:
1054 case COLOR_SPACE_YCBCR601_LIMITED
:
1056 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1057 OUTPUT_CSC_GRPH_MODE
, 2);
1059 case COLOR_SPACE_YCBCR709
:
1060 case COLOR_SPACE_YCBCR709_LIMITED
:
1062 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1063 OUTPUT_CSC_GRPH_MODE
, 3);
1071 REG_SET(OUTPUT_CSC_CONTROL
, 0,
1072 OUTPUT_CSC_GRPH_MODE
, 0);
1077 void dce110_opp_set_csc_adjustment(
1078 struct transform
*xfm
,
1079 const struct out_csc_color_matrix
*tbl_entry
)
1081 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
1082 enum csc_color_mode config
=
1083 CSC_COLOR_MODE_GRAPHICS_OUTPUT_CSC
;
1085 program_color_matrix(
1086 xfm_dce
, tbl_entry
, GRPH_COLOR_MATRIX_SW
);
1088 /* We did everything ,now program DxOUTPUT_CSC_CONTROL */
1089 configure_graphics_mode(xfm_dce
, config
, GRAPHICS_CSC_ADJUST_TYPE_SW
,
1090 tbl_entry
->color_space
);
1093 void dce110_opp_set_csc_default(
1094 struct transform
*xfm
,
1095 const struct default_adjustment
*default_adjust
)
1097 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
1098 enum csc_color_mode config
=
1099 CSC_COLOR_MODE_GRAPHICS_PREDEFINED
;
1101 if (default_adjust
->force_hw_default
== false) {
1102 const struct out_csc_color_matrix
*elm
;
1103 /* currently parameter not in use */
1104 enum grph_color_adjust_option option
=
1105 GRPH_COLOR_MATRIX_HW_DEFAULT
;
1108 * HW default false we program locally defined matrix
1109 * HW default true we use predefined hw matrix and we
1110 * do not need to program matrix
1111 * OEM wants the HW default via runtime parameter.
1113 option
= GRPH_COLOR_MATRIX_SW
;
1115 for (i
= 0; i
< ARRAY_SIZE(global_color_matrix
); ++i
) {
1116 elm
= &global_color_matrix
[i
];
1117 if (elm
->color_space
!= default_adjust
->out_color_space
)
1119 /* program the matrix with default values from this
1121 program_color_matrix(xfm_dce
, elm
, option
);
1122 config
= CSC_COLOR_MODE_GRAPHICS_OUTPUT_CSC
;
1127 /* configure the what we programmed :
1128 * 1. Default values from this file
1129 * 2. Use hardware default from ROM_A and we do not need to program
1132 configure_graphics_mode(xfm_dce
, config
,
1133 default_adjust
->csc_adjust_type
,
1134 default_adjust
->out_color_space
);
1137 static void program_pwl(struct dce_transform
*xfm_dce
,
1138 const struct pwl_params
*params
)
1141 uint8_t max_tries
= 10;
1142 uint8_t counter
= 0;
1144 const struct pwl_result_data
*rgb
= params
->rgb_resulted
;
1146 /* Power on LUT memory */
1147 if (REG(DCFE_MEM_PWR_CTRL
))
1148 REG_UPDATE(DCFE_MEM_PWR_CTRL
,
1149 DCP_REGAMMA_MEM_PWR_DIS
, 1);
1151 REG_UPDATE(DCFE_MEM_LIGHT_SLEEP_CNTL
,
1152 REGAMMA_LUT_LIGHT_SLEEP_DIS
, 1);
1154 while (counter
< max_tries
) {
1155 if (REG(DCFE_MEM_PWR_STATUS
)) {
1156 REG_GET(DCFE_MEM_PWR_STATUS
,
1157 DCP_REGAMMA_MEM_PWR_STATE
,
1164 REG_GET(DCFE_MEM_LIGHT_SLEEP_CNTL
,
1165 REGAMMA_LUT_MEM_PWR_STATE
,
1174 if (counter
== max_tries
) {
1175 DC_LOG_WARNING("%s: regamma lut was not powered on "
1176 "in a timely manner,"
1177 " programming still proceeds\n",
1181 REG_UPDATE(REGAMMA_LUT_WRITE_EN_MASK
,
1182 REGAMMA_LUT_WRITE_EN_MASK
, 7);
1184 REG_WRITE(REGAMMA_LUT_INDEX
, 0);
1186 /* Program REGAMMA_LUT_DATA */
1187 while (i
!= params
->hw_points_num
) {
1189 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->red_reg
);
1190 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->green_reg
);
1191 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->blue_reg
);
1192 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->delta_red_reg
);
1193 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->delta_green_reg
);
1194 REG_WRITE(REGAMMA_LUT_DATA
, rgb
->delta_blue_reg
);
1200 /* we are done with DCP LUT memory; re-enable low power mode */
1201 if (REG(DCFE_MEM_PWR_CTRL
))
1202 REG_UPDATE(DCFE_MEM_PWR_CTRL
,
1203 DCP_REGAMMA_MEM_PWR_DIS
, 0);
1205 REG_UPDATE(DCFE_MEM_LIGHT_SLEEP_CNTL
,
1206 REGAMMA_LUT_LIGHT_SLEEP_DIS
, 0);
1209 static void regamma_config_regions_and_segments(struct dce_transform
*xfm_dce
,
1210 const struct pwl_params
*params
)
1212 const struct gamma_curve
*curve
;
1214 REG_SET_2(REGAMMA_CNTLA_START_CNTL
, 0,
1215 REGAMMA_CNTLA_EXP_REGION_START
, params
->arr_points
[0].custom_float_x
,
1216 REGAMMA_CNTLA_EXP_REGION_START_SEGMENT
, 0);
1218 REG_SET(REGAMMA_CNTLA_SLOPE_CNTL
, 0,
1219 REGAMMA_CNTLA_EXP_REGION_LINEAR_SLOPE
, params
->arr_points
[0].custom_float_slope
);
1221 REG_SET(REGAMMA_CNTLA_END_CNTL1
, 0,
1222 REGAMMA_CNTLA_EXP_REGION_END
, params
->arr_points
[1].custom_float_x
);
1224 REG_SET_2(REGAMMA_CNTLA_END_CNTL2
, 0,
1225 REGAMMA_CNTLA_EXP_REGION_END_BASE
, params
->arr_points
[1].custom_float_y
,
1226 REGAMMA_CNTLA_EXP_REGION_END_SLOPE
, params
->arr_points
[1].custom_float_slope
);
1228 curve
= params
->arr_curve_points
;
1230 REG_SET_4(REGAMMA_CNTLA_REGION_0_1
, 0,
1231 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1232 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1233 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1234 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1237 REG_SET_4(REGAMMA_CNTLA_REGION_2_3
, 0,
1238 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1239 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1240 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1241 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1244 REG_SET_4(REGAMMA_CNTLA_REGION_4_5
, 0,
1245 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1246 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1247 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1248 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1251 REG_SET_4(REGAMMA_CNTLA_REGION_6_7
, 0,
1252 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1253 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1254 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1255 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1258 REG_SET_4(REGAMMA_CNTLA_REGION_8_9
, 0,
1259 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1260 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1261 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1262 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1265 REG_SET_4(REGAMMA_CNTLA_REGION_10_11
, 0,
1266 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1267 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1268 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1269 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1272 REG_SET_4(REGAMMA_CNTLA_REGION_12_13
, 0,
1273 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1274 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1275 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1276 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1279 REG_SET_4(REGAMMA_CNTLA_REGION_14_15
, 0,
1280 REGAMMA_CNTLA_EXP_REGION0_LUT_OFFSET
, curve
[0].offset
,
1281 REGAMMA_CNTLA_EXP_REGION0_NUM_SEGMENTS
, curve
[0].segments_num
,
1282 REGAMMA_CNTLA_EXP_REGION1_LUT_OFFSET
, curve
[1].offset
,
1283 REGAMMA_CNTLA_EXP_REGION1_NUM_SEGMENTS
, curve
[1].segments_num
);
1288 void dce110_opp_program_regamma_pwl(struct transform
*xfm
,
1289 const struct pwl_params
*params
)
1291 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
1294 regamma_config_regions_and_segments(xfm_dce
, params
);
1297 program_pwl(xfm_dce
, params
);
1300 void dce110_opp_power_on_regamma_lut(struct transform
*xfm
,
1303 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
1305 if (REG(DCFE_MEM_PWR_CTRL
))
1306 REG_UPDATE_2(DCFE_MEM_PWR_CTRL
,
1307 DCP_REGAMMA_MEM_PWR_DIS
, power_on
,
1308 DCP_LUT_MEM_PWR_DIS
, power_on
);
1310 REG_UPDATE_2(DCFE_MEM_LIGHT_SLEEP_CNTL
,
1311 REGAMMA_LUT_LIGHT_SLEEP_DIS
, power_on
,
1312 DCP_LUT_LIGHT_SLEEP_DIS
, power_on
);
1316 void dce110_opp_set_regamma_mode(struct transform
*xfm
,
1317 enum opp_regamma mode
)
1319 struct dce_transform
*xfm_dce
= TO_DCE_TRANSFORM(xfm
);
1321 REG_SET(REGAMMA_CONTROL
, 0,
1322 GRPH_REGAMMA_MODE
, mode
);
1325 static const struct transform_funcs dce_transform_funcs
= {
1326 .transform_reset
= dce_transform_reset
,
1327 .transform_set_scaler
= dce_transform_set_scaler
,
1328 .transform_set_gamut_remap
= dce_transform_set_gamut_remap
,
1329 .opp_set_csc_adjustment
= dce110_opp_set_csc_adjustment
,
1330 .opp_set_csc_default
= dce110_opp_set_csc_default
,
1331 .opp_power_on_regamma_lut
= dce110_opp_power_on_regamma_lut
,
1332 .opp_program_regamma_pwl
= dce110_opp_program_regamma_pwl
,
1333 .opp_set_regamma_mode
= dce110_opp_set_regamma_mode
,
1334 .transform_set_pixel_storage_depth
= dce_transform_set_pixel_storage_depth
,
1335 .transform_get_optimal_number_of_taps
= dce_transform_get_optimal_number_of_taps
1338 /*****************************************/
1339 /* Constructor, Destructor */
1340 /*****************************************/
1342 void dce_transform_construct(
1343 struct dce_transform
*xfm_dce
,
1344 struct dc_context
*ctx
,
1346 const struct dce_transform_registers
*regs
,
1347 const struct dce_transform_shift
*xfm_shift
,
1348 const struct dce_transform_mask
*xfm_mask
)
1350 xfm_dce
->base
.ctx
= ctx
;
1352 xfm_dce
->base
.inst
= inst
;
1353 xfm_dce
->base
.funcs
= &dce_transform_funcs
;
1355 xfm_dce
->regs
= regs
;
1356 xfm_dce
->xfm_shift
= xfm_shift
;
1357 xfm_dce
->xfm_mask
= xfm_mask
;
1359 xfm_dce
->prescaler_on
= true;
1360 xfm_dce
->lb_pixel_depth_supported
=
1361 LB_PIXEL_DEPTH_18BPP
|
1362 LB_PIXEL_DEPTH_24BPP
|
1363 LB_PIXEL_DEPTH_30BPP
;
1365 xfm_dce
->lb_bits_per_entry
= LB_BITS_PER_ENTRY
;
1366 xfm_dce
->lb_memory_size
= LB_TOTAL_NUMBER_OF_ENTRIES
; /*0x6B0*/