Commit ccc759dc authored by Gustavo Padovan's avatar Gustavo Padovan Committed by Daniel Vetter

drm/i915: Merge of visible and !visible paths for primary planes

Fold intel_pipe_set_base() in the update primary plane path merging
pieces of code that are common to both paths.

Basically the the pin/unpin procedures are the same for both paths
and some checks can also be shared (some of the were moved to the
check() stage)

v2: take Ville's comments:
	- remove unnecessary plane check
	- move mutex lock to inside the conditional
	- make the pin fail message a debug one
	- add a fixme for the fastboot hack
	- call intel_frontbuffer_flip() after FBC update

v3: take more Ville's comments:
	- fold update code under if (intel_crtc->active), and do the
	visible/!visible split inside.
	- check ret inside the same conditional we assign it

v4: don't use intel_enable_primary_hw_plane(), the primary_enabled
check inside will break page flips

v5: take more Ville's comments:
	- set primary_enabled to true and add BDW hack
	- unify if (old_fb) and if (old_fb != fb)

v6: take more Ville's comments:
	- make was_primary bool and fix its check
	- add the BDW vblank wait comment
Suggested-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent d68a08af
...@@ -11671,12 +11671,23 @@ intel_check_primary_plane(struct drm_plane *plane, ...@@ -11671,12 +11671,23 @@ intel_check_primary_plane(struct drm_plane *plane,
struct drm_rect *dest = &state->dst; struct drm_rect *dest = &state->dst;
struct drm_rect *src = &state->src; struct drm_rect *src = &state->src;
const struct drm_rect *clip = &state->clip; const struct drm_rect *clip = &state->clip;
int ret;
return drm_plane_helper_check_update(plane, crtc, fb, ret = drm_plane_helper_check_update(plane, crtc, fb,
src, dest, clip, src, dest, clip,
DRM_PLANE_HELPER_NO_SCALING, DRM_PLANE_HELPER_NO_SCALING,
DRM_PLANE_HELPER_NO_SCALING, DRM_PLANE_HELPER_NO_SCALING,
false, true, &state->visible); false, true, &state->visible);
if (ret)
return ret;
/* no fb bound */
if (state->visible && !fb) {
DRM_ERROR("No FB bound\n");
return -EINVAL;
}
return 0;
} }
static int static int
...@@ -11688,6 +11699,8 @@ intel_commit_primary_plane(struct drm_plane *plane, ...@@ -11688,6 +11699,8 @@ intel_commit_primary_plane(struct drm_plane *plane,
struct drm_device *dev = crtc->dev; struct drm_device *dev = crtc->dev;
struct drm_i915_private *dev_priv = dev->dev_private; struct drm_i915_private *dev_priv = dev->dev_private;
struct intel_crtc *intel_crtc = to_intel_crtc(crtc); struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
enum pipe pipe = intel_crtc->pipe;
struct drm_framebuffer *old_fb = plane->fb;
struct drm_i915_gem_object *obj = intel_fb_obj(fb); struct drm_i915_gem_object *obj = intel_fb_obj(fb);
struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb); struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->fb);
struct intel_plane *intel_plane = to_intel_plane(plane); struct intel_plane *intel_plane = to_intel_plane(plane);
...@@ -11696,76 +11709,100 @@ intel_commit_primary_plane(struct drm_plane *plane, ...@@ -11696,76 +11709,100 @@ intel_commit_primary_plane(struct drm_plane *plane,
intel_crtc_wait_for_pending_flips(crtc); intel_crtc_wait_for_pending_flips(crtc);
/* if (intel_crtc_has_pending_flip(crtc)) {
* If clipping results in a non-visible primary plane, we'll disable DRM_ERROR("pipe is still busy with an old pageflip\n");
* the primary plane. Note that this is a bit different than what return -EBUSY;
* happens if userspace explicitly disables the plane by passing fb=0 }
* because plane->fb still gets set and pinned.
*/ if (plane->fb != fb) {
if (!state->visible) {
mutex_lock(&dev->struct_mutex); mutex_lock(&dev->struct_mutex);
ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
if (ret == 0)
i915_gem_track_fb(old_obj, obj,
INTEL_FRONTBUFFER_PRIMARY(pipe));
mutex_unlock(&dev->struct_mutex);
if (ret != 0) {
DRM_DEBUG_KMS("pin & fence failed\n");
return ret;
}
}
crtc->primary->fb = fb;
crtc->x = src->x1;
crtc->y = src->y1;
intel_plane->crtc_x = state->orig_dst.x1;
intel_plane->crtc_y = state->orig_dst.y1;
intel_plane->crtc_w = drm_rect_width(&state->orig_dst);
intel_plane->crtc_h = drm_rect_height(&state->orig_dst);
intel_plane->src_x = state->orig_src.x1;
intel_plane->src_y = state->orig_src.y1;
intel_plane->src_w = drm_rect_width(&state->orig_src);
intel_plane->src_h = drm_rect_height(&state->orig_src);
intel_plane->obj = obj;
if (intel_crtc->active) {
/* /*
* Try to pin the new fb first so that we can bail out if we * FBC does not work on some platforms for rotated
* fail. * planes, so disable it when rotation is not 0 and
* update it when rotation is set back to 0.
*
* FIXME: This is redundant with the fbc update done in
* the primary plane enable function except that that
* one is done too late. We eventually need to unify
* this.
*/ */
if (plane->fb != fb) { if (intel_crtc->primary_enabled &&
ret = intel_pin_and_fence_fb_obj(dev, obj, NULL); INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
if (ret) { dev_priv->fbc.plane == intel_crtc->plane &&
mutex_unlock(&dev->struct_mutex); intel_plane->rotation != BIT(DRM_ROTATE_0)) {
return ret; intel_disable_fbc(dev);
}
} }
i915_gem_track_fb(old_obj, obj, if (state->visible) {
INTEL_FRONTBUFFER_PRIMARY(intel_crtc->pipe)); bool was_enabled = intel_crtc->primary_enabled;
if (intel_crtc->primary_enabled)
intel_disable_primary_hw_plane(plane, crtc);
/* FIXME: kill this fastboot hack */
intel_update_pipe_size(intel_crtc);
if (plane->fb != fb) intel_crtc->primary_enabled = true;
if (plane->fb)
intel_unpin_fb_obj(old_obj);
mutex_unlock(&dev->struct_mutex); dev_priv->display.update_primary_plane(crtc, plane->fb,
crtc->x, crtc->y);
} else {
if (intel_crtc && intel_crtc->active &&
intel_crtc->primary_enabled) {
/* /*
* FBC does not work on some platforms for rotated * BDW signals flip done immediately if the plane
* planes, so disable it when rotation is not 0 and * is disabled, even if the plane enable is already
* update it when rotation is set back to 0. * armed to occur at the next vblank :(
*
* FIXME: This is redundant with the fbc update done in
* the primary plane enable function except that that
* one is done too late. We eventually need to unify
* this.
*/ */
if (INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) && if (IS_BROADWELL(dev) && !was_enabled)
dev_priv->fbc.plane == intel_crtc->plane && intel_wait_for_vblank(dev, intel_crtc->pipe);
intel_plane->rotation != BIT(DRM_ROTATE_0)) { } else {
intel_disable_fbc(dev); /*
} * If clipping results in a non-visible primary plane,
* we'll disable the primary plane. Note that this is
* a bit different than what happens if userspace
* explicitly disables the plane by passing fb=0
* because plane->fb still gets set and pinned.
*/
intel_disable_primary_hw_plane(plane, crtc);
} }
ret = intel_pipe_set_base(crtc, src->x1, src->y1, fb);
if (ret)
return ret;
if (!intel_crtc->primary_enabled) intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_PRIMARY(pipe));
intel_enable_primary_hw_plane(plane, crtc);
mutex_lock(&dev->struct_mutex);
intel_update_fbc(dev);
mutex_unlock(&dev->struct_mutex);
} }
intel_plane->crtc_x = state->orig_dst.x1; if (old_fb && old_fb != fb) {
intel_plane->crtc_y = state->orig_dst.y1; if (intel_crtc->active)
intel_plane->crtc_w = drm_rect_width(&state->orig_dst); intel_wait_for_vblank(dev, intel_crtc->pipe);
intel_plane->crtc_h = drm_rect_height(&state->orig_dst);
intel_plane->src_x = state->orig_src.x1; mutex_lock(&dev->struct_mutex);
intel_plane->src_y = state->orig_src.y1; intel_unpin_fb_obj(old_obj);
intel_plane->src_w = drm_rect_width(&state->orig_src); mutex_unlock(&dev->struct_mutex);
intel_plane->src_h = drm_rect_height(&state->orig_src); }
intel_plane->obj = obj;
return 0; return 0;
} }
......
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