|
@@ -5049,6 +5049,9 @@ static void ironlake_crtc_disable(struct drm_crtc *crtc)
|
|
|
|
|
|
ironlake_fdi_pll_disable(intel_crtc);
|
|
|
}
|
|
|
+
|
|
|
+ intel_crtc->active = false;
|
|
|
+ intel_update_watermarks(crtc);
|
|
|
}
|
|
|
|
|
|
static void haswell_crtc_disable(struct drm_crtc *crtc)
|
|
@@ -5094,6 +5097,9 @@ static void haswell_crtc_disable(struct drm_crtc *crtc)
|
|
|
for_each_encoder_on_crtc(dev, crtc, encoder)
|
|
|
if (encoder->post_disable)
|
|
|
encoder->post_disable(encoder);
|
|
|
+
|
|
|
+ intel_crtc->active = false;
|
|
|
+ intel_update_watermarks(crtc);
|
|
|
}
|
|
|
|
|
|
static void i9xx_pfit_enable(struct intel_crtc *crtc)
|
|
@@ -6158,6 +6164,9 @@ static void i9xx_crtc_disable(struct drm_crtc *crtc)
|
|
|
|
|
|
if (!IS_GEN2(dev))
|
|
|
intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
|
|
|
+
|
|
|
+ intel_crtc->active = false;
|
|
|
+ intel_update_watermarks(crtc);
|
|
|
}
|
|
|
|
|
|
static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
|