Commit 31ae71fc authored by Maarten Lankhorst's avatar Maarten Lankhorst

drm/i915: Nuke fbc members from intel_crtc->atomic, v4.

Whenever there's an update to the primary plane,
fbc_pre_update and fbc_post_update are called. Kill off
intel_crtc->atomic.update_fbc and now that intel_crtc->atomic
is empty, kill it off too.

Changes since v1:
- Add a intel_fbc_supports_rotation helper.
Changes since v2:
- Remove intel_fbc_supports_rotation_helper.
- Remove unrelated changes.
Changes since v3:
- Rebase
Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1457516145-32117-2-git-send-email-maarten.lankhorst@linux.intel.comReviewed-by: default avatarPaulo Zanoni <paulo.r.zanoni@intel.com>
parent cd202f69
...@@ -4673,11 +4673,9 @@ static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state) ...@@ -4673,11 +4673,9 @@ static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
{ {
struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
struct drm_atomic_state *old_state = old_crtc_state->base.state; struct drm_atomic_state *old_state = old_crtc_state->base.state;
struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
struct intel_crtc_state *pipe_config = struct intel_crtc_state *pipe_config =
to_intel_crtc_state(crtc->base.state); to_intel_crtc_state(crtc->base.state);
struct drm_device *dev = crtc->base.dev; struct drm_device *dev = crtc->base.dev;
struct drm_i915_private *dev_priv = dev->dev_private;
struct drm_plane *primary = crtc->base.primary; struct drm_plane *primary = crtc->base.primary;
struct drm_plane_state *old_pri_state = struct drm_plane_state *old_pri_state =
drm_atomic_get_existing_plane_state(old_state, primary); drm_atomic_get_existing_plane_state(old_state, primary);
...@@ -4689,22 +4687,19 @@ static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state) ...@@ -4689,22 +4687,19 @@ static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
if (pipe_config->update_wm_post && pipe_config->base.active) if (pipe_config->update_wm_post && pipe_config->base.active)
intel_update_watermarks(&crtc->base); intel_update_watermarks(&crtc->base);
if (atomic->update_fbc)
intel_fbc_post_update(crtc);
if (old_pri_state) { if (old_pri_state) {
struct intel_plane_state *primary_state = struct intel_plane_state *primary_state =
to_intel_plane_state(primary->state); to_intel_plane_state(primary->state);
struct intel_plane_state *old_primary_state = struct intel_plane_state *old_primary_state =
to_intel_plane_state(old_pri_state); to_intel_plane_state(old_pri_state);
intel_fbc_post_update(crtc);
if (primary_state->visible && if (primary_state->visible &&
(needs_modeset(&pipe_config->base) || (needs_modeset(&pipe_config->base) ||
!old_primary_state->visible)) !old_primary_state->visible))
intel_post_enable_primary(&crtc->base); intel_post_enable_primary(&crtc->base);
} }
memset(atomic, 0, sizeof(*atomic));
} }
static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state) static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
...@@ -4712,7 +4707,6 @@ static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state) ...@@ -4712,7 +4707,6 @@ static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc); struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
struct drm_device *dev = crtc->base.dev; struct drm_device *dev = crtc->base.dev;
struct drm_i915_private *dev_priv = dev->dev_private; struct drm_i915_private *dev_priv = dev->dev_private;
struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
struct intel_crtc_state *pipe_config = struct intel_crtc_state *pipe_config =
to_intel_crtc_state(crtc->base.state); to_intel_crtc_state(crtc->base.state);
struct drm_atomic_state *old_state = old_crtc_state->base.state; struct drm_atomic_state *old_state = old_crtc_state->base.state;
...@@ -4721,15 +4715,14 @@ static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state) ...@@ -4721,15 +4715,14 @@ static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
drm_atomic_get_existing_plane_state(old_state, primary); drm_atomic_get_existing_plane_state(old_state, primary);
bool modeset = needs_modeset(&pipe_config->base); bool modeset = needs_modeset(&pipe_config->base);
if (atomic->update_fbc)
intel_fbc_pre_update(crtc);
if (old_pri_state) { if (old_pri_state) {
struct intel_plane_state *primary_state = struct intel_plane_state *primary_state =
to_intel_plane_state(primary->state); to_intel_plane_state(primary->state);
struct intel_plane_state *old_primary_state = struct intel_plane_state *old_primary_state =
to_intel_plane_state(old_pri_state); to_intel_plane_state(old_pri_state);
intel_fbc_pre_update(crtc);
if (old_primary_state->visible && if (old_primary_state->visible &&
(modeset || !primary_state->visible)) (modeset || !primary_state->visible))
intel_pre_disable_primary(&crtc->base); intel_pre_disable_primary(&crtc->base);
...@@ -11847,27 +11840,17 @@ int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state, ...@@ -11847,27 +11840,17 @@ int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
if (visible || was_visible) if (visible || was_visible)
pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit; pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
switch (plane->type) { /*
case DRM_PLANE_TYPE_PRIMARY: * WaCxSRDisabledForSpriteScaling:ivb
intel_crtc->atomic.update_fbc = true; *
* cstate->update_wm was already set above, so this flag will
break; * take effect when we commit and program watermarks.
case DRM_PLANE_TYPE_CURSOR: */
break; if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) &&
case DRM_PLANE_TYPE_OVERLAY: needs_scaling(to_intel_plane_state(plane_state)) &&
/* !needs_scaling(old_plane_state))
* WaCxSRDisabledForSpriteScaling:ivb pipe_config->disable_lp_wm = true;
*
* cstate->update_wm was already set above, so this flag will
* take effect when we commit and program watermarks.
*/
if (IS_IVYBRIDGE(dev) &&
needs_scaling(to_intel_plane_state(plane_state)) &&
!needs_scaling(old_plane_state))
pipe_config->disable_lp_wm = true;
break;
}
return 0; return 0;
} }
...@@ -13310,9 +13293,6 @@ static int intel_atomic_check(struct drm_device *dev, ...@@ -13310,9 +13293,6 @@ static int intel_atomic_check(struct drm_device *dev,
struct intel_crtc_state *pipe_config = struct intel_crtc_state *pipe_config =
to_intel_crtc_state(crtc_state); to_intel_crtc_state(crtc_state);
memset(&to_intel_crtc(crtc)->atomic, 0,
sizeof(struct intel_crtc_atomic_commit));
/* Catch I915_MODE_FLAG_INHERITED */ /* Catch I915_MODE_FLAG_INHERITED */
if (crtc_state->mode.private_flags != crtc->state->mode.private_flags) if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
crtc_state->mode_changed = true; crtc_state->mode_changed = true;
...@@ -13621,7 +13601,8 @@ static int intel_atomic_commit(struct drm_device *dev, ...@@ -13621,7 +13601,8 @@ static int intel_atomic_commit(struct drm_device *dev,
if (!modeset) if (!modeset)
intel_pre_plane_update(to_intel_crtc_state(old_crtc_state)); intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
if (crtc->state->active && intel_crtc->atomic.update_fbc) if (crtc->state->active &&
drm_atomic_get_existing_plane_state(state, crtc->primary))
intel_fbc_enable(intel_crtc); intel_fbc_enable(intel_crtc);
if (crtc->state->active && if (crtc->state->active &&
......
...@@ -596,19 +596,6 @@ struct intel_mmio_flip { ...@@ -596,19 +596,6 @@ struct intel_mmio_flip {
unsigned int rotation; unsigned int rotation;
}; };
/*
* Tracking of operations that need to be performed at the beginning/end of an
* atomic commit, outside the atomic section where interrupts are disabled.
* These are generally operations that grab mutexes or might otherwise sleep
* and thus can't be run with interrupts disabled.
*/
struct intel_crtc_atomic_commit {
/* Sleepable operations to perform before commit */
/* Sleepable operations to perform after commit */
bool update_fbc;
};
struct intel_crtc { struct intel_crtc {
struct drm_crtc base; struct drm_crtc base;
enum pipe pipe; enum pipe pipe;
...@@ -669,8 +656,6 @@ struct intel_crtc { ...@@ -669,8 +656,6 @@ struct intel_crtc {
int scanline_start; int scanline_start;
} debug; } debug;
struct intel_crtc_atomic_commit atomic;
/* scalers available on this crtc */ /* scalers available on this crtc */
int num_scalers; int num_scalers;
......
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