Skip to content

Commit 3070d93

Browse files
mattropejnikula
authored andcommitted
drm/i915/adl_p: Also disable underrun recovery with MSO
One of the cases that the bspec lists for when underrun recovery must be disabled is "COG;" that note actually refers to eDP multi-segmented operation (MSO). Let's ensure the this additional restriction is honored by the driver. Bspec: 50351 Cc: Ville Syrjälä <[email protected]> Fixes: ba3b049 ("drm/i915/adl_p: Allow underrun recovery when possible") Signed-off-by: Matt Roper <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: José Roberto de Souza <[email protected]> (cherry picked from commit c00e14c) Signed-off-by: Jani Nikula <[email protected]>
1 parent 37bf34e commit 3070d93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,6 +2226,9 @@ static bool underrun_recovery_supported(const struct intel_crtc_state *crtc_stat
22262226
if (crtc_state->has_psr2)
22272227
return false;
22282228

2229+
if (crtc_state->splitter.enable)
2230+
return false;
2231+
22292232
return true;
22302233
}
22312234

0 commit comments

Comments
 (0)