1 /*
2  * Copyright 2020 Advanced Micro Devices, Inc.
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
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.
21  *
22  * Authors: AMD
23  *
24  */
25 
26 #include "reg_helper.h"
27 #include "dcn30_optc.h"
28 #include "dc.h"
29 #include "dcn_calc_math.h"
30 #include "dc_dmub_srv.h"
31 
32 #include "dml/dcn30/dcn30_fpu.h"
33 
34 #define REG(reg)\
35 	optc1->tg_regs->reg
36 
37 #define CTX \
38 	optc1->base.ctx
39 
40 #undef FN
41 #define FN(reg_name, field_name) \
42 	optc1->tg_shift->field_name, optc1->tg_mask->field_name
43 
44 void optc3_triplebuffer_lock(struct timing_generator *optc)
45 {
46 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
47 
48 	REG_UPDATE(OTG_GLOBAL_CONTROL2,
49 		OTG_MASTER_UPDATE_LOCK_SEL, optc->inst);
50 
51 	REG_SET(OTG_VUPDATE_KEEPOUT, 0,
52 		OTG_MASTER_UPDATE_LOCK_VUPDATE_KEEPOUT_EN, 1);
53 
54 	REG_SET(OTG_MASTER_UPDATE_LOCK, 0,
55 		OTG_MASTER_UPDATE_LOCK, 1);
56 
57 	if (optc->ctx->dce_environment != DCE_ENV_FPGA_MAXIMUS)
58 		REG_WAIT(OTG_MASTER_UPDATE_LOCK,
59 				UPDATE_LOCK_STATUS, 1,
60 				1, 10);
61 }
62 
63 void optc3_lock_doublebuffer_enable(struct timing_generator *optc)
64 {
65 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
66 	uint32_t v_blank_start = 0;
67 	uint32_t v_blank_end = 0;
68 	uint32_t h_blank_start = 0;
69 	uint32_t h_blank_end = 0;
70 
71 	REG_GET_2(OTG_V_BLANK_START_END,
72 		OTG_V_BLANK_START, &v_blank_start,
73 		OTG_V_BLANK_END, &v_blank_end);
74 	REG_GET_2(OTG_H_BLANK_START_END,
75 		OTG_H_BLANK_START, &h_blank_start,
76 		OTG_H_BLANK_END, &h_blank_end);
77 
78 	REG_UPDATE_2(OTG_GLOBAL_CONTROL1,
79 		MASTER_UPDATE_LOCK_DB_START_Y, v_blank_start - 1,
80 		MASTER_UPDATE_LOCK_DB_END_Y, v_blank_start);
81 	REG_UPDATE_2(OTG_GLOBAL_CONTROL4,
82 		DIG_UPDATE_POSITION_X, h_blank_start - 180 - 1,
83 		DIG_UPDATE_POSITION_Y, v_blank_start - 1);
84 	// there is a DIG_UPDATE_VCOUNT_MODE and it is 0.
85 
86 	REG_UPDATE_3(OTG_GLOBAL_CONTROL0,
87 		MASTER_UPDATE_LOCK_DB_START_X, h_blank_start - 200 - 1,
88 		MASTER_UPDATE_LOCK_DB_END_X, h_blank_start - 180,
89 		MASTER_UPDATE_LOCK_DB_EN, 1);
90 	REG_UPDATE(OTG_GLOBAL_CONTROL2, GLOBAL_UPDATE_LOCK_EN, 1);
91 
92 	REG_SET_3(OTG_VUPDATE_KEEPOUT, 0,
93 		MASTER_UPDATE_LOCK_VUPDATE_KEEPOUT_START_OFFSET, 0,
94 		MASTER_UPDATE_LOCK_VUPDATE_KEEPOUT_END_OFFSET, 100,
95 		OTG_MASTER_UPDATE_LOCK_VUPDATE_KEEPOUT_EN, 1);
96 }
97 
98 void optc3_lock_doublebuffer_disable(struct timing_generator *optc)
99 {
100 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
101 
102 	REG_UPDATE_2(OTG_GLOBAL_CONTROL0,
103 		MASTER_UPDATE_LOCK_DB_START_X, 0,
104 		MASTER_UPDATE_LOCK_DB_END_X, 0);
105 	REG_UPDATE_2(OTG_GLOBAL_CONTROL1,
106 		MASTER_UPDATE_LOCK_DB_START_Y, 0,
107 		MASTER_UPDATE_LOCK_DB_END_Y, 0);
108 
109 	REG_UPDATE(OTG_GLOBAL_CONTROL2, GLOBAL_UPDATE_LOCK_EN, 0);
110 	REG_UPDATE(OTG_GLOBAL_CONTROL0, MASTER_UPDATE_LOCK_DB_EN, 0);
111 }
112 
113 void optc3_lock(struct timing_generator *optc)
114 {
115 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
116 
117 	REG_UPDATE(OTG_GLOBAL_CONTROL2,
118 		OTG_MASTER_UPDATE_LOCK_SEL, optc->inst);
119 	REG_SET(OTG_MASTER_UPDATE_LOCK, 0,
120 		OTG_MASTER_UPDATE_LOCK, 1);
121 
122 	REG_WAIT(OTG_MASTER_UPDATE_LOCK,
123 			UPDATE_LOCK_STATUS, 1,
124 			1, 10);
125 }
126 
127 void optc3_set_out_mux(struct timing_generator *optc, enum otg_out_mux_dest dest)
128 {
129 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
130 
131 	REG_UPDATE(OTG_CONTROL, OTG_OUT_MUX, dest);
132 }
133 
134 void optc3_program_blank_color(struct timing_generator *optc,
135 		const struct tg_color *blank_color)
136 {
137 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
138 
139 	REG_SET_3(OTG_BLANK_DATA_COLOR, 0,
140 		OTG_BLANK_DATA_COLOR_BLUE_CB, blank_color->color_b_cb,
141 		OTG_BLANK_DATA_COLOR_GREEN_Y, blank_color->color_g_y,
142 		OTG_BLANK_DATA_COLOR_RED_CR, blank_color->color_r_cr);
143 
144 	REG_SET_3(OTG_BLANK_DATA_COLOR_EXT, 0,
145 		OTG_BLANK_DATA_COLOR_BLUE_CB_EXT, blank_color->color_b_cb >> 10,
146 		OTG_BLANK_DATA_COLOR_GREEN_Y_EXT, blank_color->color_g_y >> 10,
147 		OTG_BLANK_DATA_COLOR_RED_CR_EXT, blank_color->color_r_cr >> 10);
148 }
149 
150 void optc3_set_drr_trigger_window(struct timing_generator *optc,
151 		uint32_t window_start, uint32_t window_end)
152 {
153 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
154 
155 	REG_SET_2(OTG_DRR_TRIGGER_WINDOW, 0,
156 		OTG_DRR_TRIGGER_WINDOW_START_X, window_start,
157 		OTG_DRR_TRIGGER_WINDOW_END_X, window_end);
158 }
159 
160 void optc3_set_vtotal_change_limit(struct timing_generator *optc,
161 		uint32_t limit)
162 {
163 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
164 
165 
166 	REG_SET(OTG_DRR_V_TOTAL_CHANGE, 0,
167 		OTG_DRR_V_TOTAL_CHANGE_LIMIT, limit);
168 }
169 
170 
171 /* Set DSC-related configuration.
172  *   dsc_mode: 0 disables DSC, other values enable DSC in specified format
173  *   sc_bytes_per_pixel: Bytes per pixel in u3.28 format
174  *   dsc_slice_width: Slice width in pixels
175  */
176 void optc3_set_dsc_config(struct timing_generator *optc,
177 		enum optc_dsc_mode dsc_mode,
178 		uint32_t dsc_bytes_per_pixel,
179 		uint32_t dsc_slice_width)
180 {
181 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
182 
183 	optc2_set_dsc_config(optc, dsc_mode, dsc_bytes_per_pixel,
184 		dsc_slice_width);
185 
186 		REG_UPDATE(OTG_V_SYNC_A_CNTL, OTG_V_SYNC_MODE, 0);
187 
188 }
189 
190 void optc3_set_vrr_m_const(struct timing_generator *optc,
191 		double vtotal_avg)
192 {
193 	DC_FP_START();
194 	optc3_fpu_set_vrr_m_const(optc, vtotal_avg);
195 	DC_FP_END();
196 }
197 
198 void optc3_set_odm_bypass(struct timing_generator *optc,
199 		const struct dc_crtc_timing *dc_crtc_timing)
200 {
201 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
202 	enum h_timing_div_mode h_div = H_TIMING_NO_DIV;
203 
204 	REG_SET_5(OPTC_DATA_SOURCE_SELECT, 0,
205 			OPTC_NUM_OF_INPUT_SEGMENT, 0,
206 			OPTC_SEG0_SRC_SEL, optc->inst,
207 			OPTC_SEG1_SRC_SEL, 0xf,
208 			OPTC_SEG2_SRC_SEL, 0xf,
209 			OPTC_SEG3_SRC_SEL, 0xf
210 			);
211 
212 	h_div = optc1_is_two_pixels_per_containter(dc_crtc_timing);
213 	REG_SET(OTG_H_TIMING_CNTL, 0,
214 			OTG_H_TIMING_DIV_MODE, h_div);
215 
216 	REG_SET(OPTC_MEMORY_CONFIG, 0,
217 			OPTC_MEM_SEL, 0);
218 	optc1->opp_count = 1;
219 }
220 
221 static void optc3_set_odm_combine(struct timing_generator *optc, int *opp_id, int opp_cnt,
222 		struct dc_crtc_timing *timing)
223 {
224 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
225 	int mpcc_hactive = (timing->h_addressable + timing->h_border_left + timing->h_border_right)
226 			/ opp_cnt;
227 	uint32_t memory_mask = 0;
228 
229 	/* TODO: In pseudocode but does not affect maximus, delete comment if we dont need on asic
230 	 * REG_SET(OTG_GLOBAL_CONTROL2, 0, GLOBAL_UPDATE_LOCK_EN, 1);
231 	 * Program OTG register MASTER_UPDATE_LOCK_DB_X/Y to the position before DP frame start
232 	 * REG_SET_2(OTG_GLOBAL_CONTROL1, 0,
233 	 *		MASTER_UPDATE_LOCK_DB_X, 160,
234 	 *		MASTER_UPDATE_LOCK_DB_Y, 240);
235 	 */
236 
237 	ASSERT(opp_cnt == 2 || opp_cnt == 4);
238 
239 	/* 2 pieces of memory required for up to 5120 displays, 4 for up to 8192,
240 	 * however, for ODM combine we can simplify by always using 4.
241 	 */
242 	if (opp_cnt == 2) {
243 		/* To make sure there's no memory overlap, each instance "reserves" 2
244 		 * memories and they are uniquely combined here.
245 		 */
246 		memory_mask = 0x3 << (opp_id[0] * 2) | 0x3 << (opp_id[1] * 2);
247 	} else if (opp_cnt == 4) {
248 		/* To make sure there's no memory overlap, each instance "reserves" 1
249 		 * memory and they are uniquely combined here.
250 		 */
251 		memory_mask = 0x1 << (opp_id[0] * 2) | 0x1 << (opp_id[1] * 2) | 0x1 << (opp_id[2] * 2) | 0x1 << (opp_id[3] * 2);
252 	}
253 
254 	if (REG(OPTC_MEMORY_CONFIG))
255 		REG_SET(OPTC_MEMORY_CONFIG, 0,
256 			OPTC_MEM_SEL, memory_mask);
257 
258 	if (opp_cnt == 2) {
259 		REG_SET_3(OPTC_DATA_SOURCE_SELECT, 0,
260 				OPTC_NUM_OF_INPUT_SEGMENT, 1,
261 				OPTC_SEG0_SRC_SEL, opp_id[0],
262 				OPTC_SEG1_SRC_SEL, opp_id[1]);
263 	} else if (opp_cnt == 4) {
264 		REG_SET_5(OPTC_DATA_SOURCE_SELECT, 0,
265 				OPTC_NUM_OF_INPUT_SEGMENT, 3,
266 				OPTC_SEG0_SRC_SEL, opp_id[0],
267 				OPTC_SEG1_SRC_SEL, opp_id[1],
268 				OPTC_SEG2_SRC_SEL, opp_id[2],
269 				OPTC_SEG3_SRC_SEL, opp_id[3]);
270 	}
271 
272 	REG_UPDATE(OPTC_WIDTH_CONTROL,
273 			OPTC_SEGMENT_WIDTH, mpcc_hactive);
274 
275 	REG_SET(OTG_H_TIMING_CNTL, 0, OTG_H_TIMING_DIV_MODE, opp_cnt - 1);
276 	optc1->opp_count = opp_cnt;
277 }
278 
279 /**
280  * optc3_set_timing_double_buffer() - DRR double buffering control
281  *
282  * Sets double buffer point for V_TOTAL, H_TOTAL, VTOTAL_MIN,
283  * VTOTAL_MAX, VTOTAL_MIN_SEL and VTOTAL_MAX_SEL registers.
284  *
285  * Options: any time,  start of frame, dp start of frame (range timing)
286  */
287 static void optc3_set_timing_double_buffer(struct timing_generator *optc, bool enable)
288 {
289 	struct optc *optc1 = DCN10TG_FROM_TG(optc);
290 	uint32_t mode = enable ? 2 : 0;
291 
292 	REG_UPDATE(OTG_DOUBLE_BUFFER_CONTROL,
293 		   OTG_DRR_TIMING_DBUF_UPDATE_MODE, mode);
294 }
295 
296 void optc3_tg_init(struct timing_generator *optc)
297 {
298 	optc3_set_timing_double_buffer(optc, true);
299 	optc1_clear_optc_underflow(optc);
300 }
301 
302 static struct timing_generator_funcs dcn30_tg_funcs = {
303 		.validate_timing = optc1_validate_timing,
304 		.program_timing = optc1_program_timing,
305 		.setup_vertical_interrupt0 = optc1_setup_vertical_interrupt0,
306 		.setup_vertical_interrupt1 = optc1_setup_vertical_interrupt1,
307 		.setup_vertical_interrupt2 = optc1_setup_vertical_interrupt2,
308 		.program_global_sync = optc1_program_global_sync,
309 		.enable_crtc = optc2_enable_crtc,
310 		.disable_crtc = optc1_disable_crtc,
311 		/* used by enable_timing_synchronization. Not need for FPGA */
312 		.is_counter_moving = optc1_is_counter_moving,
313 		.get_position = optc1_get_position,
314 		.get_frame_count = optc1_get_vblank_counter,
315 		.get_scanoutpos = optc1_get_crtc_scanoutpos,
316 		.get_otg_active_size = optc1_get_otg_active_size,
317 		.set_early_control = optc1_set_early_control,
318 		/* used by enable_timing_synchronization. Not need for FPGA */
319 		.wait_for_state = optc1_wait_for_state,
320 		.set_blank_color = optc3_program_blank_color,
321 		.did_triggered_reset_occur = optc1_did_triggered_reset_occur,
322 		.triplebuffer_lock = optc3_triplebuffer_lock,
323 		.triplebuffer_unlock = optc2_triplebuffer_unlock,
324 		.enable_reset_trigger = optc1_enable_reset_trigger,
325 		.enable_crtc_reset = optc1_enable_crtc_reset,
326 		.disable_reset_trigger = optc1_disable_reset_trigger,
327 		.lock = optc3_lock,
328 		.is_locked = optc1_is_locked,
329 		.unlock = optc1_unlock,
330 		.lock_doublebuffer_enable = optc3_lock_doublebuffer_enable,
331 		.lock_doublebuffer_disable = optc3_lock_doublebuffer_disable,
332 		.enable_optc_clock = optc1_enable_optc_clock,
333 		.set_drr = optc1_set_drr,
334 		.get_last_used_drr_vtotal = optc2_get_last_used_drr_vtotal,
335 		.set_static_screen_control = optc1_set_static_screen_control,
336 		.program_stereo = optc1_program_stereo,
337 		.is_stereo_left_eye = optc1_is_stereo_left_eye,
338 		.tg_init = optc3_tg_init,
339 		.is_tg_enabled = optc1_is_tg_enabled,
340 		.is_optc_underflow_occurred = optc1_is_optc_underflow_occurred,
341 		.clear_optc_underflow = optc1_clear_optc_underflow,
342 		.setup_global_swap_lock = NULL,
343 		.get_crc = optc1_get_crc,
344 		.configure_crc = optc2_configure_crc,
345 		.set_dsc_config = optc3_set_dsc_config,
346 		.get_dsc_status = optc2_get_dsc_status,
347 		.set_dwb_source = NULL,
348 		.set_odm_bypass = optc3_set_odm_bypass,
349 		.set_odm_combine = optc3_set_odm_combine,
350 		.get_optc_source = optc2_get_optc_source,
351 		.set_out_mux = optc3_set_out_mux,
352 		.set_drr_trigger_window = optc3_set_drr_trigger_window,
353 		.set_vtotal_change_limit = optc3_set_vtotal_change_limit,
354 		.set_gsl = optc2_set_gsl,
355 		.set_gsl_source_select = optc2_set_gsl_source_select,
356 		.set_vtg_params = optc1_set_vtg_params,
357 		.program_manual_trigger = optc2_program_manual_trigger,
358 		.setup_manual_trigger = optc2_setup_manual_trigger,
359 		.get_hw_timing = optc1_get_hw_timing,
360 };
361 
362 void dcn30_timing_generator_init(struct optc *optc1)
363 {
364 	optc1->base.funcs = &dcn30_tg_funcs;
365 
366 	optc1->max_h_total = optc1->tg_mask->OTG_H_TOTAL + 1;
367 	optc1->max_v_total = optc1->tg_mask->OTG_V_TOTAL + 1;
368 
369 	optc1->min_h_blank = 32;
370 	optc1->min_v_blank = 3;
371 	optc1->min_v_blank_interlace = 5;
372 	optc1->min_h_sync_width = 4;
373 	optc1->min_v_sync_width = 1;
374 }
375 
376