1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright 2023 Advanced Micro Devices, Inc.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  * Authors: AMD
24  *
25  */
26 
27 #include "core_types.h"
28 #include "dcn35/dcn35_dpp.h"
29 #include "reg_helper.h"
30 
31 #define REG(reg) dpp->tf_regs->reg
32 
33 #define CTX dpp->base.ctx
34 
35 #undef FN
36 #define FN(reg_name, field_name)                                       \
37 	((const struct dcn35_dpp_shift *)(dpp->tf_shift))->field_name, \
38 	((const struct dcn35_dpp_mask *)(dpp->tf_mask))->field_name
39 
dpp35_dppclk_control(struct dpp * dpp_base,bool dppclk_div,bool enable)40 void dpp35_dppclk_control(
41 		struct dpp *dpp_base,
42 		bool dppclk_div,
43 		bool enable)
44 {
45 	struct dcn20_dpp *dpp = TO_DCN20_DPP(dpp_base);
46 
47 	if (enable) {
48 		if (dpp->tf_mask->DPPCLK_RATE_CONTROL)
49 			REG_UPDATE_2(DPP_CONTROL,
50 				DPPCLK_RATE_CONTROL, dppclk_div,
51 				DPP_CLOCK_ENABLE, 1);
52 		else
53 			if (dpp->dispclk_r_gate_disable)
54 				REG_UPDATE_2(DPP_CONTROL,
55 					DPP_CLOCK_ENABLE, 1,
56 					DISPCLK_R_GATE_DISABLE, 1);
57 			else
58 				REG_UPDATE(DPP_CONTROL,
59 						DPP_CLOCK_ENABLE, 1);
60 	} else
61 		if (dpp->dispclk_r_gate_disable)
62 			REG_UPDATE_2(DPP_CONTROL,
63 				DPP_CLOCK_ENABLE, 0,
64 				DISPCLK_R_GATE_DISABLE, 0);
65 		else
66 			REG_UPDATE(DPP_CONTROL,
67 					DPP_CLOCK_ENABLE, 0);
68 }
69 
dpp35_program_bias_and_scale_fcnv(struct dpp * dpp_base,struct dc_bias_and_scale * params)70 void dpp35_program_bias_and_scale_fcnv(
71 	struct dpp *dpp_base,
72 	struct dc_bias_and_scale *params)
73 {
74 	struct dcn20_dpp *dpp = TO_DCN20_DPP(dpp_base);
75 
76 	if (!params->bias_and_scale_valid) {
77 		REG_SET(FCNV_FP_BIAS_R, 0, FCNV_FP_BIAS_R, 0);
78 		REG_SET(FCNV_FP_BIAS_G, 0, FCNV_FP_BIAS_G, 0);
79 		REG_SET(FCNV_FP_BIAS_B, 0, FCNV_FP_BIAS_B, 0);
80 
81 		REG_SET(FCNV_FP_SCALE_R, 0, FCNV_FP_SCALE_R, 0x1F000);
82 		REG_SET(FCNV_FP_SCALE_G, 0, FCNV_FP_SCALE_G, 0x1F000);
83 		REG_SET(FCNV_FP_SCALE_B, 0, FCNV_FP_SCALE_B, 0x1F000);
84 	} else {
85 		REG_SET(FCNV_FP_BIAS_R, 0, FCNV_FP_BIAS_R, params->bias_red);
86 		REG_SET(FCNV_FP_BIAS_G, 0, FCNV_FP_BIAS_G, params->bias_green);
87 		REG_SET(FCNV_FP_BIAS_B, 0, FCNV_FP_BIAS_B, params->bias_blue);
88 
89 		REG_SET(FCNV_FP_SCALE_R, 0, FCNV_FP_SCALE_R, params->scale_red);
90 		REG_SET(FCNV_FP_SCALE_G, 0, FCNV_FP_SCALE_G, params->scale_green);
91 		REG_SET(FCNV_FP_SCALE_B, 0, FCNV_FP_SCALE_B, params->scale_blue);
92 	}
93 }
94 
95 static struct dpp_funcs dcn35_dpp_funcs = {
96 	.dpp_program_gamcor_lut		= dpp3_program_gamcor_lut,
97 	.dpp_read_state				= dpp30_read_state,
98 	.dpp_reset					= dpp_reset,
99 	.dpp_set_scaler				= dpp1_dscl_set_scaler_manual_scale,
100 	.dpp_get_optimal_number_of_taps	= dpp3_get_optimal_number_of_taps,
101 	.dpp_set_gamut_remap		= dpp3_cm_set_gamut_remap,
102 	.dpp_set_csc_adjustment		= NULL,
103 	.dpp_set_csc_default		= NULL,
104 	.dpp_program_regamma_pwl	= NULL,
105 	.dpp_set_pre_degam			= dpp3_set_pre_degam,
106 	.dpp_program_input_lut		= NULL,
107 	.dpp_full_bypass			= dpp1_full_bypass,
108 	.dpp_setup					= dpp3_cnv_setup,
109 	.dpp_program_degamma_pwl	= NULL,
110 	.dpp_program_cm_dealpha		= dpp3_program_cm_dealpha,
111 	.dpp_program_cm_bias		= dpp3_program_cm_bias,
112 
113 	.dpp_program_blnd_lut		= NULL, // BLNDGAM is removed completely in DCN3.2 DPP
114 	.dpp_program_shaper_lut		= NULL, // CM SHAPER block is removed in DCN3.2 DPP, (it is in MPCC, programmable before or after BLND)
115 	.dpp_program_3dlut			= NULL, // CM 3DLUT block is removed in DCN3.2 DPP, (it is in MPCC, programmable before or after BLND)
116 
117 	.dpp_program_bias_and_scale	= dpp35_program_bias_and_scale_fcnv,
118 	.dpp_cnv_set_alpha_keyer	= dpp2_cnv_set_alpha_keyer,
119 	.set_cursor_attributes		= dpp3_set_cursor_attributes,
120 	.set_cursor_position		= dpp1_set_cursor_position,
121 	.set_optional_cursor_attributes	= dpp1_cnv_set_optional_cursor_attributes,
122 	.dpp_dppclk_control			= dpp35_dppclk_control,
123 	.dpp_set_hdr_multiplier		= dpp3_set_hdr_multiplier,
124 	.dpp_get_gamut_remap		= dpp3_cm_get_gamut_remap,
125 };
126 
127 
dpp35_construct(struct dcn3_dpp * dpp,struct dc_context * ctx,uint32_t inst,const struct dcn3_dpp_registers * tf_regs,const struct dcn35_dpp_shift * tf_shift,const struct dcn35_dpp_mask * tf_mask)128 bool dpp35_construct(
129 	struct dcn3_dpp *dpp, struct dc_context *ctx,
130 	uint32_t inst, const struct dcn3_dpp_registers *tf_regs,
131 	const struct dcn35_dpp_shift *tf_shift,
132 	const struct dcn35_dpp_mask *tf_mask)
133 {
134 	bool ret = dpp32_construct(dpp, ctx, inst, tf_regs,
135 			      (const struct dcn3_dpp_shift *)(tf_shift),
136 			      (const struct dcn3_dpp_mask *)(tf_mask));
137 
138 	dpp->base.funcs = &dcn35_dpp_funcs;
139 
140 	// w/a for cursor memory stuck in LS by programming DISPCLK_R_GATE_DISABLE, limit w/a to some ASIC revs
141 	if (dpp->base.ctx->asic_id.hw_internal_rev <= 0x10)
142 		dpp->dispclk_r_gate_disable = true;
143 	return ret;
144 }
145 
dpp35_set_fgcg(struct dcn3_dpp * dpp,bool enable)146 void dpp35_set_fgcg(struct dcn3_dpp *dpp, bool enable)
147 {
148 	REG_UPDATE(DPP_CONTROL, DPP_FGCG_REP_DIS, !enable);
149 }
150