summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/dc_types.h
diff options
context:
space:
mode:
authorDennis Chan <Dennis.Chan@amd.com>2023-05-03 14:20:17 +0800
committerAlex Deucher <alexander.deucher@amd.com>2023-11-07 11:17:34 -0500
commit39ad51cb61556892ce8af02b995136cd2711527b (patch)
treebd851634c21beed3989ccfe81994c530be0dbe13 /drivers/gpu/drm/amd/display/dc/dc_types.h
parent85de32cd7b383f5d84195aed0c53e920e6786005 (diff)
downloadlinux-stable-39ad51cb61556892ce8af02b995136cd2711527b.tar.gz
linux-stable-39ad51cb61556892ce8af02b995136cd2711527b.tar.bz2
linux-stable-39ad51cb61556892ce8af02b995136cd2711527b.zip
drm/amd/display: Introduce flag for disabling Replay desync recovery
[why] It's useful to disable the recovery mechanism when debugging replay desync errors. Signed-off-by: Dennis Chan <Dennis.Chan@amd.com> Acked-by: Hersen Wu <hersenxs.wu@amd.com> Reviewed-by: Robin Chen <robin.chen@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dc_types.h')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dc_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dc_types.h b/drivers/gpu/drm/amd/display/dc/dc_types.h
index 40dc51853d62..bb159b6b1b76 100644
--- a/drivers/gpu/drm/amd/display/dc/dc_types.h
+++ b/drivers/gpu/drm/amd/display/dc/dc_types.h
@@ -1037,7 +1037,8 @@ struct replay_config {
bool replay_smu_opt_supported; // SMU optimization is supported
unsigned int replay_enable_option; // Replay enablement option
uint32_t debug_flags; // Replay debug flags
- bool replay_timing_sync_supported; // Replay desync is supported
+ bool replay_timing_sync_supported; // Replay desync is supported
+ bool force_disable_desync_error_check; // Replay desync is supported
union replay_error_status replay_error_status; // Replay error status
};