diff options
author | Dennis Chan <[email protected]> | 2024-04-02 10:58:01 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2024-04-30 09:45:26 -0400 |
commit | cbc7d7d4469faa490ff535fbcc6fa9f5a97788fe (patch) | |
tree | d9ff1785260acb747f0708aa7134a9c522586333 | |
parent | a4a755c422242c27cb0f7900ac00cf33ac17b1ce (diff) |
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 <[email protected]>
Acked-by: Aurabindo Pillai <[email protected]>
Signed-off-by: Dennis Chan <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-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 { |