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 "dcn35_optc.h"
28
29 #include "dcn30/dcn30_optc.h"
30 #include "dcn31/dcn31_optc.h"
31 #include "dcn32/dcn32_optc.h"
32 #include "reg_helper.h"
33 #include "dc.h"
34 #include "dcn_calc_math.h"
35 #include "dc_dmub_srv.h"
36
37 #define REG(reg)\
38 optc1->tg_regs->reg
39
40 #define CTX \
41 optc1->base.ctx
42
43 #undef FN
44 #define FN(reg_name, field_name) \
45 optc1->tg_shift->field_name, optc1->tg_mask->field_name
46
47 /**
48 * optc35_set_odm_combine() - Enable CRTC - call ASIC Control Object to enable Timing generator.
49 *
50 * @optc: Output Pipe Timing Combine instance reference.
51 * @opp_id: Output Plane Processor instance ID.
52 * @opp_cnt: Output Plane Processor count.
53 * @segment_width: Width of the segment.
54 * @last_segment_width: Width of the last segment.
55 *
56 * Return: void.
57 */
optc35_set_odm_combine(struct timing_generator * optc,int * opp_id,int opp_cnt,int segment_width,int last_segment_width)58 static void optc35_set_odm_combine(struct timing_generator *optc, int *opp_id, int opp_cnt,
59 int segment_width, int last_segment_width)
60 {
61 struct optc *optc1 = DCN10TG_FROM_TG(optc);
62 uint32_t memory_mask = 0;
63 int h_active = segment_width * opp_cnt;
64 /* Each memory instance is 2048x(314x2) bits to support half line of 4096 */
65 int odm_mem_count = (h_active + 2047) / 2048;
66
67 /*
68 * display <= 4k : 2 memories + 2 pipes
69 * 4k < display <= 8k : 4 memories + 2 pipes
70 * 8k < display <= 12k : 6 memories + 4 pipes
71 */
72 if (opp_cnt == 4) {
73 if (odm_mem_count <= 2)
74 memory_mask = 0x3;
75 else if (odm_mem_count <= 4)
76 memory_mask = 0xf;
77 else
78 memory_mask = 0x3f;
79 } else {
80 if (odm_mem_count <= 2)
81 memory_mask = 0x1 << (opp_id[0] * 2) | 0x1 << (opp_id[1] * 2);
82 else if (odm_mem_count <= 4)
83 memory_mask = 0x3 << (opp_id[0] * 2) | 0x3 << (opp_id[1] * 2);
84 else
85 memory_mask = 0x77;
86 }
87
88 REG_SET(OPTC_MEMORY_CONFIG, 0,
89 OPTC_MEM_SEL, memory_mask);
90
91 if (opp_cnt == 2) {
92 REG_SET_3(OPTC_DATA_SOURCE_SELECT, 0,
93 OPTC_NUM_OF_INPUT_SEGMENT, 1,
94 OPTC_SEG0_SRC_SEL, opp_id[0],
95 OPTC_SEG1_SRC_SEL, opp_id[1]);
96 } else if (opp_cnt == 4) {
97 REG_SET_5(OPTC_DATA_SOURCE_SELECT, 0,
98 OPTC_NUM_OF_INPUT_SEGMENT, 3,
99 OPTC_SEG0_SRC_SEL, opp_id[0],
100 OPTC_SEG1_SRC_SEL, opp_id[1],
101 OPTC_SEG2_SRC_SEL, opp_id[2],
102 OPTC_SEG3_SRC_SEL, opp_id[3]);
103 }
104
105 REG_UPDATE(OPTC_WIDTH_CONTROL,
106 OPTC_SEGMENT_WIDTH, segment_width);
107
108 REG_UPDATE(OTG_H_TIMING_CNTL, OTG_H_TIMING_DIV_MODE, opp_cnt - 1);
109 optc1->opp_count = opp_cnt;
110 }
111
optc35_enable_crtc(struct timing_generator * optc)112 static bool optc35_enable_crtc(struct timing_generator *optc)
113 {
114 struct optc *optc1 = DCN10TG_FROM_TG(optc);
115
116 /* opp instance for OTG, 1 to 1 mapping and odm will adjust */
117 REG_UPDATE(OPTC_DATA_SOURCE_SELECT,
118 OPTC_SEG0_SRC_SEL, optc->inst);
119
120 /* VTG enable first is for HW workaround */
121 REG_UPDATE(CONTROL,
122 VTG0_ENABLE, 1);
123
124 REG_SEQ_START();
125
126 /* Enable CRTC */
127 REG_UPDATE_2(OTG_CONTROL,
128 OTG_DISABLE_POINT_CNTL, 2,
129 OTG_MASTER_EN, 1);
130
131 REG_SEQ_SUBMIT();
132 REG_SEQ_WAIT_DONE();
133
134 return true;
135 }
136
137 /* disable_crtc */
optc35_disable_crtc(struct timing_generator * optc)138 static bool optc35_disable_crtc(struct timing_generator *optc)
139 {
140 struct optc *optc1 = DCN10TG_FROM_TG(optc);
141
142 REG_UPDATE_5(OPTC_DATA_SOURCE_SELECT,
143 OPTC_SEG0_SRC_SEL, 0xf,
144 OPTC_SEG1_SRC_SEL, 0xf,
145 OPTC_SEG2_SRC_SEL, 0xf,
146 OPTC_SEG3_SRC_SEL, 0xf,
147 OPTC_NUM_OF_INPUT_SEGMENT, 0);
148
149 REG_UPDATE(OPTC_MEMORY_CONFIG,
150 OPTC_MEM_SEL, 0);
151
152 /* disable otg request until end of the first line
153 * in the vertical blank region
154 */
155 REG_UPDATE(OTG_CONTROL,
156 OTG_MASTER_EN, 0);
157
158 REG_UPDATE(CONTROL,
159 VTG0_ENABLE, 0);
160
161 /* CRTC disabled, so disable clock. */
162 REG_WAIT(OTG_CLOCK_CONTROL,
163 OTG_BUSY, 0,
164 1, 100000);
165 optc1_clear_optc_underflow(optc);
166
167 return true;
168 }
169
optc35_phantom_crtc_post_enable(struct timing_generator * optc)170 static void optc35_phantom_crtc_post_enable(struct timing_generator *optc)
171 {
172 struct optc *optc1 = DCN10TG_FROM_TG(optc);
173
174 /* Disable immediately. */
175 REG_UPDATE_2(OTG_CONTROL, OTG_DISABLE_POINT_CNTL, 0, OTG_MASTER_EN, 0);
176
177 /* CRTC disabled, so disable clock. */
178 REG_WAIT(OTG_CLOCK_CONTROL, OTG_BUSY, 0, 1, 100000);
179 }
180
optc35_configure_crc(struct timing_generator * optc,const struct crc_params * params)181 static bool optc35_configure_crc(struct timing_generator *optc,
182 const struct crc_params *params)
183 {
184 struct optc *optc1 = DCN10TG_FROM_TG(optc);
185
186 /* Cannot configure crc on a CRTC that is disabled */
187 if (!optc1_is_tg_enabled(optc))
188 return false;
189
190 if (!params->enable || params->reset)
191 REG_WRITE(OTG_CRC_CNTL, 0);
192
193 if (!params->enable)
194 return true;
195
196 /* Program frame boundaries */
197 switch (params->crc_eng_inst) {
198 case 0:
199 /* Window A x axis start and end. */
200 REG_UPDATE_2(OTG_CRC0_WINDOWA_X_CONTROL,
201 OTG_CRC0_WINDOWA_X_START, params->windowa_x_start,
202 OTG_CRC0_WINDOWA_X_END, params->windowa_x_end);
203
204 /* Window A y axis start and end. */
205 REG_UPDATE_2(OTG_CRC0_WINDOWA_Y_CONTROL,
206 OTG_CRC0_WINDOWA_Y_START, params->windowa_y_start,
207 OTG_CRC0_WINDOWA_Y_END, params->windowa_y_end);
208
209 /* Window B x axis start and end. */
210 REG_UPDATE_2(OTG_CRC0_WINDOWB_X_CONTROL,
211 OTG_CRC0_WINDOWB_X_START, params->windowb_x_start,
212 OTG_CRC0_WINDOWB_X_END, params->windowb_x_end);
213
214 /* Window B y axis start and end. */
215 REG_UPDATE_2(OTG_CRC0_WINDOWB_Y_CONTROL,
216 OTG_CRC0_WINDOWB_Y_START, params->windowb_y_start,
217 OTG_CRC0_WINDOWB_Y_END, params->windowb_y_end);
218
219 if (optc1->base.ctx->dc->debug.otg_crc_db && optc1->tg_mask->OTG_CRC_WINDOW_DB_EN != 0)
220 REG_UPDATE_4(OTG_CRC_CNTL,
221 OTG_CRC_CONT_EN, params->continuous_mode ? 1 : 0,
222 OTG_CRC0_SELECT, params->selection,
223 OTG_CRC_EN, 1,
224 OTG_CRC_WINDOW_DB_EN, 1);
225 else
226 REG_UPDATE_3(OTG_CRC_CNTL,
227 OTG_CRC_CONT_EN, params->continuous_mode ? 1 : 0,
228 OTG_CRC0_SELECT, params->selection,
229 OTG_CRC_EN, 1);
230 break;
231 case 1:
232 /* Window A x axis start and end. */
233 REG_UPDATE_2(OTG_CRC1_WINDOWA_X_CONTROL,
234 OTG_CRC1_WINDOWA_X_START, params->windowa_x_start,
235 OTG_CRC1_WINDOWA_X_END, params->windowa_x_end);
236
237 /* Window A y axis start and end. */
238 REG_UPDATE_2(OTG_CRC1_WINDOWA_Y_CONTROL,
239 OTG_CRC1_WINDOWA_Y_START, params->windowa_y_start,
240 OTG_CRC1_WINDOWA_Y_END, params->windowa_y_end);
241
242 /* Window B x axis start and end. */
243 REG_UPDATE_2(OTG_CRC1_WINDOWB_X_CONTROL,
244 OTG_CRC1_WINDOWB_X_START, params->windowb_x_start,
245 OTG_CRC1_WINDOWB_X_END, params->windowb_x_end);
246
247 /* Window B y axis start and end. */
248 REG_UPDATE_2(OTG_CRC1_WINDOWB_Y_CONTROL,
249 OTG_CRC1_WINDOWB_Y_START, params->windowb_y_start,
250 OTG_CRC1_WINDOWB_Y_END, params->windowb_y_end);
251
252 if (optc1->base.ctx->dc->debug.otg_crc_db && optc1->tg_mask->OTG_CRC_WINDOW_DB_EN != 0)
253 REG_UPDATE_4(OTG_CRC_CNTL,
254 OTG_CRC_CONT_EN, params->continuous_mode ? 1 : 0,
255 OTG_CRC1_SELECT, params->selection,
256 OTG_CRC_EN, 1,
257 OTG_CRC_WINDOW_DB_EN, 1);
258 else
259 REG_UPDATE_3(OTG_CRC_CNTL,
260 OTG_CRC_CONT_EN, params->continuous_mode ? 1 : 0,
261 OTG_CRC1_SELECT, params->selection,
262 OTG_CRC_EN, 1);
263 break;
264 default:
265 return false;
266 }
267 return true;
268 }
269
optc35_setup_manual_trigger(struct timing_generator * optc)270 static void optc35_setup_manual_trigger(struct timing_generator *optc)
271 {
272 if (!optc || !optc->ctx)
273 return;
274
275 struct optc *optc1 = DCN10TG_FROM_TG(optc);
276 struct dc *dc = optc->ctx->dc;
277
278 if (dc->caps.dmub_caps.mclk_sw && !dc->debug.disable_fams)
279 dc_dmub_srv_set_drr_manual_trigger_cmd(dc, optc->inst);
280 else {
281 /*
282 * MIN_MASK_EN is gone and MASK is now always enabled.
283 *
284 * To get it to it work with manual trigger we need to make sure
285 * we program the correct bit.
286 */
287 REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
288 OTG_V_TOTAL_MIN_SEL, 1,
289 OTG_V_TOTAL_MAX_SEL, 1,
290 OTG_FORCE_LOCK_ON_EVENT, 0,
291 OTG_SET_V_TOTAL_MIN_MASK, (1 << 1)); /* TRIGA */
292
293 // Setup manual flow control for EOF via TRIG_A
294 if (optc->funcs && optc->funcs->setup_manual_trigger)
295 optc->funcs->setup_manual_trigger(optc);
296 }
297 }
298
optc35_set_drr(struct timing_generator * optc,const struct drr_params * params)299 void optc35_set_drr(
300 struct timing_generator *optc,
301 const struct drr_params *params)
302 {
303 if (!optc || !params)
304 return;
305
306 struct optc *optc1 = DCN10TG_FROM_TG(optc);
307 uint32_t max_otg_v_total = optc1->max_v_total - 1;
308
309 if (params != NULL &&
310 params->vertical_total_max > 0 &&
311 params->vertical_total_min > 0) {
312
313 if (params->vertical_total_mid != 0) {
314
315 REG_SET(OTG_V_TOTAL_MID, 0,
316 OTG_V_TOTAL_MID, params->vertical_total_mid - 1);
317
318 REG_UPDATE_2(OTG_V_TOTAL_CONTROL,
319 OTG_VTOTAL_MID_REPLACING_MAX_EN, 1,
320 OTG_VTOTAL_MID_FRAME_NUM,
321 (uint8_t)params->vertical_total_mid_frame_num);
322
323 }
324
325 if (optc->funcs && optc->funcs->set_vtotal_min_max)
326 optc->funcs->set_vtotal_min_max(optc,
327 params->vertical_total_min - 1, params->vertical_total_max - 1);
328 optc35_setup_manual_trigger(optc);
329 } else {
330 REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
331 OTG_SET_V_TOTAL_MIN_MASK, 0,
332 OTG_V_TOTAL_MIN_SEL, 0,
333 OTG_V_TOTAL_MAX_SEL, 0,
334 OTG_FORCE_LOCK_ON_EVENT, 0);
335
336 if (optc->funcs && optc->funcs->set_vtotal_min_max)
337 optc->funcs->set_vtotal_min_max(optc, 0, 0);
338 }
339
340 REG_WRITE(OTG_V_COUNT_STOP_CONTROL, max_otg_v_total);
341 REG_WRITE(OTG_V_COUNT_STOP_CONTROL2, 0);
342 }
343
optc35_set_long_vtotal(struct timing_generator * optc,const struct long_vtotal_params * params)344 static void optc35_set_long_vtotal(
345 struct timing_generator *optc,
346 const struct long_vtotal_params *params)
347 {
348 if (!optc || !params)
349 return;
350
351 struct optc *optc1 = DCN10TG_FROM_TG(optc);
352 uint32_t vcount_stop_timer = 0, vcount_stop = 0;
353 uint32_t max_otg_v_total = optc1->max_v_total - 1;
354
355 if (params->vertical_total_min <= max_otg_v_total && params->vertical_total_max <= max_otg_v_total)
356 return;
357
358 if (params->vertical_total_max == 0 || params->vertical_total_min == 0) {
359 REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
360 OTG_SET_V_TOTAL_MIN_MASK, 0,
361 OTG_V_TOTAL_MIN_SEL, 0,
362 OTG_V_TOTAL_MAX_SEL, 0,
363 OTG_FORCE_LOCK_ON_EVENT, 0);
364
365 if (optc->funcs && optc->funcs->set_vtotal_min_max)
366 optc->funcs->set_vtotal_min_max(optc, 0, 0);
367 } else if (params->vertical_total_max == params->vertical_total_min) {
368 vcount_stop = params->vertical_blank_start;
369 vcount_stop_timer = params->vertical_total_max - max_otg_v_total;
370
371 REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
372 OTG_V_TOTAL_MIN_SEL, 1,
373 OTG_V_TOTAL_MAX_SEL, 1,
374 OTG_FORCE_LOCK_ON_EVENT, 0,
375 OTG_SET_V_TOTAL_MIN_MASK, 0);
376
377 if (optc->funcs && optc->funcs->set_vtotal_min_max)
378 optc->funcs->set_vtotal_min_max(optc, max_otg_v_total, max_otg_v_total);
379
380 REG_WRITE(OTG_V_COUNT_STOP_CONTROL, vcount_stop);
381 REG_WRITE(OTG_V_COUNT_STOP_CONTROL2, vcount_stop_timer);
382 } else {
383 // Variable rate, keep DRR trigger mask
384 if (params->vertical_total_min > max_otg_v_total) {
385 // cannot be supported
386 // If MAX_OTG_V_COUNT < DRR trigger < v_total_min < v_total_max,
387 // DRR trigger will drop the vtotal counting directly to a new frame.
388 // But it should trigger between v_total_min and v_total_max.
389 ASSERT(0);
390
391 REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
392 OTG_SET_V_TOTAL_MIN_MASK, 0,
393 OTG_V_TOTAL_MIN_SEL, 0,
394 OTG_V_TOTAL_MAX_SEL, 0,
395 OTG_FORCE_LOCK_ON_EVENT, 0);
396
397 if (optc->funcs && optc->funcs->set_vtotal_min_max)
398 optc->funcs->set_vtotal_min_max(optc, 0, 0);
399
400 REG_WRITE(OTG_V_COUNT_STOP_CONTROL, max_otg_v_total);
401 REG_WRITE(OTG_V_COUNT_STOP_CONTROL2, 0);
402 } else {
403 // For total_min <= MAX_OTG_V_COUNT and total_max > MAX_OTG_V_COUNT
404 vcount_stop = params->vertical_total_min;
405 vcount_stop_timer = params->vertical_total_max - max_otg_v_total;
406
407 // Example:
408 // params->vertical_total_min 1000
409 // params->vertical_total_max 2000
410 // MAX_OTG_V_COUNT_STOP = 1500
411 //
412 // If DRR event not happened,
413 // time 0,1,2,3,4,...1000,1001,........,1500,1501,1502, ...1999
414 // vcount 0,1,2,3,4....1000...................,1001,1002,1003,...1399
415 // vcount2 0,1,2,3,4,..499,
416 // else (DRR event happened, ex : at line 1004)
417 // time 0,1,2,3,4,...1000,1001.....1004, 0
418 // vcount 0,1,2,3,4....1000,.............. 0 (new frame)
419 // vcount2 0,1,2, 3, -
420 if (optc->funcs && optc->funcs->set_vtotal_min_max)
421 optc->funcs->set_vtotal_min_max(optc,
422 params->vertical_total_min - 1, max_otg_v_total);
423 optc35_setup_manual_trigger(optc);
424
425 REG_WRITE(OTG_V_COUNT_STOP_CONTROL, vcount_stop);
426 REG_WRITE(OTG_V_COUNT_STOP_CONTROL2, vcount_stop_timer);
427 }
428 }
429 }
430
431 static struct timing_generator_funcs dcn35_tg_funcs = {
432 .validate_timing = optc1_validate_timing,
433 .program_timing = optc1_program_timing,
434 .setup_vertical_interrupt0 = optc1_setup_vertical_interrupt0,
435 .setup_vertical_interrupt1 = optc1_setup_vertical_interrupt1,
436 .setup_vertical_interrupt2 = optc1_setup_vertical_interrupt2,
437 .program_global_sync = optc1_program_global_sync,
438 .enable_crtc = optc35_enable_crtc,
439 .disable_crtc = optc35_disable_crtc,
440 .immediate_disable_crtc = optc31_immediate_disable_crtc,
441 .phantom_crtc_post_enable = optc35_phantom_crtc_post_enable,
442 /* used by enable_timing_synchronization. Not need for FPGA */
443 .is_counter_moving = optc1_is_counter_moving,
444 .get_position = optc1_get_position,
445 .get_frame_count = optc1_get_vblank_counter,
446 .get_scanoutpos = optc1_get_crtc_scanoutpos,
447 .get_otg_active_size = optc1_get_otg_active_size,
448 .set_early_control = optc1_set_early_control,
449 /* used by enable_timing_synchronization. Not need for FPGA */
450 .wait_for_state = optc1_wait_for_state,
451 .set_blank_color = optc3_program_blank_color,
452 .did_triggered_reset_occur = optc1_did_triggered_reset_occur,
453 .triplebuffer_lock = optc3_triplebuffer_lock,
454 .triplebuffer_unlock = optc2_triplebuffer_unlock,
455 .enable_reset_trigger = optc1_enable_reset_trigger,
456 .enable_crtc_reset = optc1_enable_crtc_reset,
457 .disable_reset_trigger = optc1_disable_reset_trigger,
458 .lock = optc3_lock,
459 .unlock = optc1_unlock,
460 .lock_doublebuffer_enable = optc3_lock_doublebuffer_enable,
461 .lock_doublebuffer_disable = optc3_lock_doublebuffer_disable,
462 .enable_optc_clock = optc1_enable_optc_clock,
463 .set_drr = optc35_set_drr,
464 .get_last_used_drr_vtotal = optc2_get_last_used_drr_vtotal,
465 .set_vtotal_min_max = optc1_set_vtotal_min_max,
466 .set_static_screen_control = optc1_set_static_screen_control,
467 .program_stereo = optc1_program_stereo,
468 .is_stereo_left_eye = optc1_is_stereo_left_eye,
469 .tg_init = optc3_tg_init,
470 .is_tg_enabled = optc1_is_tg_enabled,
471 .is_optc_underflow_occurred = optc1_is_optc_underflow_occurred,
472 .clear_optc_underflow = optc1_clear_optc_underflow,
473 .setup_global_swap_lock = NULL,
474 .get_crc = optc1_get_crc,
475 .configure_crc = optc35_configure_crc,
476 .set_dsc_config = optc3_set_dsc_config,
477 .get_dsc_status = optc2_get_dsc_status,
478 .set_dwb_source = NULL,
479 .set_odm_bypass = optc32_set_odm_bypass,
480 .set_odm_combine = optc35_set_odm_combine,
481 .get_optc_source = optc2_get_optc_source,
482 .set_h_timing_div_manual_mode = optc32_set_h_timing_div_manual_mode,
483 .set_out_mux = optc3_set_out_mux,
484 .set_drr_trigger_window = optc3_set_drr_trigger_window,
485 .set_vtotal_change_limit = optc3_set_vtotal_change_limit,
486 .set_gsl = optc2_set_gsl,
487 .set_gsl_source_select = optc2_set_gsl_source_select,
488 .set_vtg_params = optc1_set_vtg_params,
489 .program_manual_trigger = optc2_program_manual_trigger,
490 .setup_manual_trigger = optc2_setup_manual_trigger,
491 .get_hw_timing = optc1_get_hw_timing,
492 .init_odm = optc3_init_odm,
493 .set_long_vtotal = optc35_set_long_vtotal,
494 .is_two_pixels_per_container = optc1_is_two_pixels_per_container,
495 };
496
dcn35_timing_generator_init(struct optc * optc1)497 void dcn35_timing_generator_init(struct optc *optc1)
498 {
499 optc1->base.funcs = &dcn35_tg_funcs;
500
501 optc1->max_h_total = optc1->tg_mask->OTG_H_TOTAL + 1;
502 optc1->max_v_total = optc1->tg_mask->OTG_V_TOTAL + 1;
503
504 optc1->min_h_blank = 32;
505 optc1->min_v_blank = 3;
506 optc1->min_v_blank_interlace = 5;
507 optc1->min_h_sync_width = 4;
508 optc1->min_v_sync_width = 1;
509
510 dcn35_timing_generator_set_fgcg(
511 optc1, CTX->dc->debug.enable_fine_grain_clock_gating.bits.optc);
512 }
513
dcn35_timing_generator_set_fgcg(struct optc * optc1,bool enable)514 void dcn35_timing_generator_set_fgcg(struct optc *optc1, bool enable)
515 {
516 REG_UPDATE(OPTC_CLOCK_CONTROL, OPTC_FGCG_REP_DIS, !enable);
517 }
518