Skip to content

Commit b0a3e84

Browse files
Tom Chungalexdeucher
Tom Chung
authored andcommittedJan 13, 2025
drm/amd/display: Fix PSR-SU not support but still call the amdgpu_dm_psr_enable
[Why] The enum DC_PSR_VERSION_SU_1 of psr_version is 1 and DC_PSR_VERSION_UNSUPPORTED is 0xFFFFFFFF. The original code may has chance trigger the amdgpu_dm_psr_enable() while psr version is set to DC_PSR_VERSION_UNSUPPORTED. [How] Modify the condition to psr->psr_version == DC_PSR_VERSION_SU_1 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> (cherry picked from commit f765e7c) Cc: stable@vger.kernel.org
1 parent 36b23e3 commit b0a3e84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8929,7 +8929,7 @@ static void amdgpu_dm_enable_self_refresh(struct amdgpu_crtc *acrtc_attach,
89298929
(current_ts - psr->psr_dirty_rects_change_timestamp_ns) > 500000000) {
89308930
if (pr->replay_feature_enabled && !pr->replay_allow_active)
89318931
amdgpu_dm_replay_enable(acrtc_state->stream, true);
8932-
if (psr->psr_version >= DC_PSR_VERSION_SU_1 &&
8932+
if (psr->psr_version == DC_PSR_VERSION_SU_1 &&
89338933
!psr->psr_allow_active && !aconn->disallow_edp_enter_psr)
89348934
amdgpu_dm_psr_enable(acrtc_state->stream);
89358935
}

0 commit comments

Comments
 (0)
Please sign in to comment.