Commit e282bb2b authored by Mitul Golani's avatar Mitul Golani Committed by Ankit Nautiyal

drm/i915/display: Add crtc state dump for Adaptive Sync SDP

Add crtc state dump for Adaptive Sync SDP to know which
crtc specifically caused the failure.

--v1:
- Rebase Patches to latest.
Signed-off-by: default avatarMitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Reviewed-by: default avatarAnkit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: default avatarAnkit Nautiyal <ankit.k.nautiyal@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240322031157.3823909-4-mitulkumar.ajitkumar.golani@intel.com
parent 0bbb8f59
...@@ -286,6 +286,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config, ...@@ -286,6 +286,9 @@ void intel_crtc_state_dump(const struct intel_crtc_state *pipe_config,
if (pipe_config->infoframes.enable & if (pipe_config->infoframes.enable &
intel_hdmi_infoframe_enable(DP_SDP_VSC)) intel_hdmi_infoframe_enable(DP_SDP_VSC))
drm_dp_vsc_sdp_log(&p, &pipe_config->infoframes.vsc); drm_dp_vsc_sdp_log(&p, &pipe_config->infoframes.vsc);
if (pipe_config->infoframes.enable &
intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
drm_dp_as_sdp_log(&p, &pipe_config->infoframes.as_sdp);
if (pipe_config->has_audio) if (pipe_config->has_audio)
intel_dump_buffer("ELD: ", pipe_config->eld, intel_dump_buffer("ELD: ", pipe_config->eld,
......
...@@ -1347,6 +1347,7 @@ struct intel_crtc_state { ...@@ -1347,6 +1347,7 @@ struct intel_crtc_state {
union hdmi_infoframe hdmi; union hdmi_infoframe hdmi;
union hdmi_infoframe drm; union hdmi_infoframe drm;
struct drm_dp_vsc_sdp vsc; struct drm_dp_vsc_sdp vsc;
struct drm_dp_as_sdp as_sdp;
} infoframes; } infoframes;
u8 eld[MAX_ELD_BYTES]; u8 eld[MAX_ELD_BYTES];
......
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