Commit 756c1b87 authored by Ville Syrjälä's avatar Ville Syrjälä Committed by Manasi Navare

drm/i915: Disable legacy cursor fastpath for bigjoiner

The legacy cursor fastpath code doesn't deal with bigjoiner.
Disable the fastpath for now.
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarManasi Navare <manasi.d.navare@intel.com>
Signed-off-by: default avatarManasi Navare <manasi.d.navare@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20201117194718.11462-13-manasi.d.navare@intel.com
parent 498fab06
...@@ -16931,9 +16931,11 @@ intel_legacy_cursor_update(struct drm_plane *_plane, ...@@ -16931,9 +16931,11 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
/* /*
* When crtc is inactive or there is a modeset pending, * When crtc is inactive or there is a modeset pending,
* wait for it to complete in the slowpath * wait for it to complete in the slowpath
*
* FIXME bigjoiner fastpath would be good
*/ */
if (!crtc_state->hw.active || needs_modeset(crtc_state) || if (!crtc_state->hw.active || needs_modeset(crtc_state) ||
crtc_state->update_pipe) crtc_state->update_pipe || crtc_state->bigjoiner)
goto slow; goto slow;
/* /*
......
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