Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1460768

[PATCH v11 5/7] drm/i915/skl: Ensure pipes with changed wms get added to the state

From Lyude <cpaul@redhat.com>
Newsgroups linux.kernel
Subject [PATCH v11 5/7] drm/i915/skl: Ensure pipes with changed wms get added to the state
Date 2016-08-11 22:00 +0200
Message-ID <s54j0-8i5-29@gated-at.bofh.it> (permalink)
References <s54iZ-8i5-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


If we're enabling a pipe, we'll need to modify the watermarks on all
active planes. Since those planes won't be added to the state on
their own, we need to add them ourselves.

Signed-off-by: Lyude <cpaul@redhat.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Cc: stable@vger.kernel.org
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Daniel Vetter <daniel.vetter@intel.com>
Cc: Radhakrishna Sripada <radhakrishna.sripada@intel.com>
Cc: Hans de Goede <hdegoede@redhat.com>
---
 drivers/gpu/drm/i915/intel_pm.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index e8653d8..f2e0071 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -4058,6 +4058,10 @@ skl_compute_ddb(struct drm_atomic_state *state)
 		ret = skl_allocate_pipe_ddb(cstate, ddb);
 		if (ret)
 			return ret;
+
+		ret = drm_atomic_add_affected_planes(state, &intel_crtc->base);
+		if (ret)
+			return ret;
 	}
 
 	return 0;
-- 
2.7.4

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v11 0/7] Finally fix watermarks Lyude <cpaul@redhat.com> - 2016-08-11 22:00 +0200
  [PATCH v11 5/7] drm/i915/skl: Ensure pipes with changed wms get added to the state Lyude <cpaul@redhat.com> - 2016-08-11 22:00 +0200
  [PATCH v11 7/7] drm/i915/skl: Update DDB values atomically with wms/plane attrs Lyude <cpaul@redhat.com> - 2016-08-11 22:00 +0200
    Re: [PATCH v11 7/7] drm/i915/skl: Update DDB values atomically with  wms/plane attrs Ville Syrjälä <ville.syrjala@linux.intel.com> - 2016-08-12 15:40 +0200

csiph-web