|
@@ -4300,10 +4300,6 @@ static void i9xx_pfit_enable(struct intel_crtc *crtc)
|
|
|
I915_WRITE(BCLRPAT(crtc->pipe), 0);
|
|
|
}
|
|
|
|
|
|
-#define for_each_power_domain(domain, mask) \
|
|
|
- for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
|
|
|
- if ((1 << (domain)) & (mask))
|
|
|
-
|
|
|
enum intel_display_power_domain
|
|
|
intel_display_port_power_domain(struct intel_encoder *intel_encoder)
|
|
|
{
|
|
@@ -4872,21 +4868,14 @@ static void intel_crtc_update_sarea(struct drm_crtc *crtc,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * Sets the power management mode of the pipe and plane.
|
|
|
- */
|
|
|
-void intel_crtc_update_dpms(struct drm_crtc *crtc)
|
|
|
+/* Master function to enable/disable CRTC and corresponding power wells */
|
|
|
+void intel_crtc_control(struct drm_crtc *crtc, bool enable)
|
|
|
{
|
|
|
struct drm_device *dev = crtc->dev;
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
|
|
- struct intel_encoder *intel_encoder;
|
|
|
enum intel_display_power_domain domain;
|
|
|
unsigned long domains;
|
|
|
- bool enable = false;
|
|
|
-
|
|
|
- for_each_encoder_on_crtc(dev, crtc, intel_encoder)
|
|
|
- enable |= intel_encoder->connectors_active;
|
|
|
|
|
|
if (enable) {
|
|
|
if (!intel_crtc->active) {
|
|
@@ -4907,6 +4896,21 @@ void intel_crtc_update_dpms(struct drm_crtc *crtc)
|
|
|
intel_crtc->enabled_power_domains = 0;
|
|
|
}
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Sets the power management mode of the pipe and plane.
|
|
|
+ */
|
|
|
+void intel_crtc_update_dpms(struct drm_crtc *crtc)
|
|
|
+{
|
|
|
+ struct drm_device *dev = crtc->dev;
|
|
|
+ struct intel_encoder *intel_encoder;
|
|
|
+ bool enable = false;
|
|
|
+
|
|
|
+ for_each_encoder_on_crtc(dev, crtc, intel_encoder)
|
|
|
+ enable |= intel_encoder->connectors_active;
|
|
|
+
|
|
|
+ intel_crtc_control(crtc, enable);
|
|
|
|
|
|
intel_crtc_update_sarea(crtc, enable);
|
|
|
}
|