Skip to content

Commit

Permalink
drm/i915/display: Do not check psr2 if psr/panel replay is not supported
Browse files Browse the repository at this point in the history
Do not continue to psr2 checks if psr or panel replay is not supported.

Cc: Animesh Manna <animesh.manna@intel.com>

Fixes: b8cf5b5 ("drm/i915/panelreplay: Initializaton and compute config for panel replay")
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/9670
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231120130214.3332726-1-jouni.hogander@intel.com
  • Loading branch information
Jouni Högander committed Nov 23, 2023
1 parent 2bb7a27 commit 8a9fd9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/gpu/drm/i915/display/intel_psr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1373,6 +1373,9 @@ void intel_psr_compute_config(struct intel_dp *intel_dp,
else
crtc_state->has_psr = _psr_compute_config(intel_dp, crtc_state);

if (!(crtc_state->has_panel_replay || crtc_state->has_psr))
return;

crtc_state->has_psr2 = intel_psr2_config_valid(intel_dp, crtc_state);

crtc_state->infoframes.enable |= intel_hdmi_infoframe_enable(DP_SDP_VSC);
Expand Down

0 comments on commit 8a9fd9e

Please sign in to comment.