Skip to content

Commit e3d4ead

Browse files
vsyrjalarodrigovivi
authored andcommitted
drm/i915/psr: Disable PSR when bigjoiner is used
Bigjoiner seem to be causing all kinds of grief to the PSR code currently. I don't believe there is any hardware issue but the code simply not handling this correctly. For now just disable PSR when bigjoiner is needed. Cc: [email protected] Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: Arun R Murthy <[email protected]> Acked-by: Jouni Högander <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> (cherry picked from commit 372fa0c) Signed-off-by: Rodrigo Vivi <[email protected]>
1 parent 152191e commit e3d4ead

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

drivers/gpu/drm/i915/display/intel_psr.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,6 +1422,17 @@ void intel_psr_compute_config(struct intel_dp *intel_dp,
14221422
return;
14231423
}
14241424

1425+
/*
1426+
* FIXME figure out what is wrong with PSR+bigjoiner and
1427+
* fix it. Presumably something related to the fact that
1428+
* PSR is a transcoder level feature.
1429+
*/
1430+
if (crtc_state->bigjoiner_pipes) {
1431+
drm_dbg_kms(&dev_priv->drm,
1432+
"PSR disabled due to bigjoiner\n");
1433+
return;
1434+
}
1435+
14251436
if (CAN_PANEL_REPLAY(intel_dp))
14261437
crtc_state->has_panel_replay = true;
14271438
else

0 commit comments

Comments
 (0)