Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/display: fix dpms_off issue when disabling bios mode

[Why]
disable_vbios_mode_if_required() will set dpms_off to false
during boot when pixel clk dismatches with driver requires.
This will cause extra backlight on and off if OS call 2
times setmode.

[How]
Set dpms_off to true to keep power_off and
let OS control BL by display's powerState.

Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Tom Chung <chiahsuan.chung@amd.com>
Signed-off-by: Zhongwei Zhang <Zhongwei.Zhang@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Zhongwei Zhang and committed by
Alex Deucher
5aa66375 a5d313b4

+1 -1
+1 -1
drivers/gpu/drm/amd/display/dc/core/dc.c
··· 1192 1192 1193 1193 if (pix_clk_100hz != requested_pix_clk_100hz) { 1194 1194 core_link_disable_stream(pipe); 1195 - pipe->stream->dpms_off = false; 1195 + pipe->stream->dpms_off = true; 1196 1196 } 1197 1197 } 1198 1198 }