diff options
author | 2024-04-02 10:58:01 +0800 | |
---|---|---|
committer | 2024-04-30 09:45:26 -0400 | |
commit | cbc7d7d4469faa490ff535fbcc6fa9f5a97788fe (patch) | |
tree | d9ff1785260acb747f0708aa7134a9c522586333 | |
parent | drm/amd/display: Drop unnecessary semicolon (diff) | |
download | linux-rng-cbc7d7d4469faa490ff535fbcc6fa9f5a97788fe.tar.xz linux-rng-cbc7d7d4469faa490ff535fbcc6fa9f5a97788fe.zip |
drm/amd/display: Fix Replay Desync Error Test
When PHY power off, the DP_SEC_CNTL cannot be configured and cause
disable Adaptive sync SDP failed. Regarding the issue, the driver will
disabled AS-SDP in replay state machine.
Reviewed-by: ChunTao Tso <chuntao.tso@amd.com>
Acked-by: Aurabindo Pillai <aurabindo.pillai@amd.com>
Signed-off-by: Dennis Chan <dennis.chan@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dc_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dc_types.h b/drivers/gpu/drm/amd/display/dc/dc_types.h index 6c85ca3b1e1a..d79de4780151 100644 --- a/drivers/gpu/drm/amd/display/dc/dc_types.h +++ b/drivers/gpu/drm/amd/display/dc/dc_types.h @@ -1035,6 +1035,7 @@ enum replay_FW_Message_type { Replay_Set_Timing_Sync_Supported, Replay_Set_Residency_Frameupdate_Timer, Replay_Set_Pseudo_VTotal, + Replay_Disabled_Adaptive_Sync_SDP, }; union replay_error_status { |