drm/i915: don't disable fdi links harder in ilk_crtc_enable
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 6 Sep 2012 20:08:33 +0000 (22:08 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 20 Sep 2012 12:23:08 +0000 (14:23 +0200)
Because they should have been disabled when shutting down the display
pipe previously. To ensure that this is the case, add a few assserts
instead of unconditionally disabling the fdi link.

Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_display.c

index b20fad3d9f0439188c061312688c45b20661c484..5e42a03f268501dc8f2b0cd6c53d069b61a9f0cf 100644 (file)
@@ -3184,10 +3184,12 @@ static void ironlake_crtc_enable(struct drm_crtc *crtc)
 
        is_pch_port = intel_crtc_driving_pch(crtc);
 
-       if (is_pch_port)
+       if (is_pch_port) {
                ironlake_fdi_pll_enable(intel_crtc);
-       else
-               ironlake_fdi_disable(crtc);
+       } else {
+               assert_fdi_tx_disabled(dev_priv, pipe);
+               assert_fdi_rx_disabled(dev_priv, pipe);
+       }
 
        for_each_encoder_on_crtc(dev, crtc, encoder)
                if (encoder->pre_enable)
This page took 0.031136 seconds and 5 git commands to generate.