We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc363e commit d76c0a2Copy full SHA for d76c0a2
drivers/gpu/drm/amd/display/dc/optc/dcn32/dcn32_optc.c
@@ -293,9 +293,16 @@ static void optc32_set_drr(
293
}
294
295
optc->funcs->set_vtotal_min_max(optc, params->vertical_total_min - 1, params->vertical_total_max - 1);
296
- }
+ optc32_setup_manual_trigger(optc);
297
+ } else {
298
+ REG_UPDATE_4(OTG_V_TOTAL_CONTROL,
299
+ OTG_SET_V_TOTAL_MIN_MASK, 0,
300
+ OTG_V_TOTAL_MIN_SEL, 0,
301
+ OTG_V_TOTAL_MAX_SEL, 0,
302
+ OTG_FORCE_LOCK_ON_EVENT, 0);
303
- optc32_setup_manual_trigger(optc);
304
+ optc->funcs->set_vtotal_min_max(optc, 0, 0);
305
+ }
306
307
308
static struct timing_generator_funcs dcn32_tg_funcs = {
0 commit comments