Skip to content

Commit 6deeefb

Browse files
Tom Chungalexdeucher
authored andcommitted
drm/amd/display: Disable PSR-SU on eDP panels
[Why] PSR-SU may cause some glitching randomly on several panels. [How] Temporarily disable the PSR-SU and fallback to PSR1 for all eDP panels. Link: https://gitlab.freedesktop.org/drm/amd/-/issues/3388 Cc: Mario Limonciello <mario.limonciello@amd.com> Cc: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Sun peng Li <sunpeng.li@amd.com> Signed-off-by: Tom Chung <chiahsuan.chung@amd.com> Signed-off-by: Roman Li <roman.li@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent dc84a21 commit 6deeefb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_psr.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ static bool link_supports_psrsu(struct dc_link *link)
5454
if (amdgpu_dc_debug_mask & DC_DISABLE_PSR_SU)
5555
return false;
5656

57-
return dc_dmub_check_min_version(dc->ctx->dmub_srv->dmub);
57+
/* Temporarily disable PSR-SU to avoid glitches */
58+
return false;
5859
}
5960

6061
/*

0 commit comments

Comments
 (0)