Commit 4e08378b authored by Mario Limonciello's avatar Mario Limonciello Committed by Alex Deucher

drm/amd/display: Add a new DC debug mask for PSR-SU

Some issues have been raised that appear to be tied to PSR-SU.
To allow users to confirm they're tied to PSR-SU without turning off
PSR entirely introduce a new debug mask:

amdgpu.dcdebugmask=0x200
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarMario Limonciello <mario.limonciello@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent a0d25fcd
...@@ -51,6 +51,9 @@ static bool link_supports_psrsu(struct dc_link *link) ...@@ -51,6 +51,9 @@ static bool link_supports_psrsu(struct dc_link *link)
!link->dpcd_caps.psr_info.psr2_su_y_granularity_cap) !link->dpcd_caps.psr_info.psr2_su_y_granularity_cap)
return false; return false;
if (amdgpu_dc_debug_mask & DC_DISABLE_PSR_SU)
return false;
return dc_dmub_check_min_version(dc->ctx->dmub_srv->dmub); return dc_dmub_check_min_version(dc->ctx->dmub_srv->dmub);
} }
......
...@@ -258,6 +258,7 @@ enum DC_DEBUG_MASK { ...@@ -258,6 +258,7 @@ enum DC_DEBUG_MASK {
DC_DISABLE_REPLAY = 0x50, DC_DISABLE_REPLAY = 0x50,
DC_ENABLE_DPIA_TRACE = 0x80, DC_ENABLE_DPIA_TRACE = 0x80,
DC_ENABLE_DML2 = 0x100, DC_ENABLE_DML2 = 0x100,
DC_DISABLE_PSR_SU = 0x200,
}; };
enum amd_dpm_forced_level; enum amd_dpm_forced_level;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment