aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorShobhit Kumar <shobhit.kumar@intel.com>2014-06-25 02:50:39 -0400
committerJani Nikula <jani.nikula@intel.com>2014-06-25 04:22:18 -0400
commit8525a235c96a548873c6c5644f50df32b31f04c6 (patch)
tree8c78db3b1b35841bfeb7eda008dd3314df6d6088 /drivers/gpu
parent5b5ffff0d25060ab0e21fa0f6cd16428e87bf1ea (diff)
drm/i915: vlv_prepare_pll is only needed in case of non DSI interfaces
For MIPI, DSI PLL is configured separately in vlv_configure_dsi_pll during the DSI enable sequence Causing WARN dump otherwise in dpio_reads v2: Add IS_CHERRYVIEW check as suggested by Ville Signed-off-by: Shobhit Kumar <shobhit.kumar@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/intel_display.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index 9188fede99ef..5f285fba4e41 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -4564,7 +4564,10 @@ static void valleyview_crtc_enable(struct drm_crtc *crtc)
4564 if (intel_crtc->active) 4564 if (intel_crtc->active)
4565 return; 4565 return;
4566 4566
4567 vlv_prepare_pll(intel_crtc); 4567 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4568
4569 if (!is_dsi && !IS_CHERRYVIEW(dev))
4570 vlv_prepare_pll(intel_crtc);
4568 4571
4569 /* Set up the display plane register */ 4572 /* Set up the display plane register */
4570 dspcntr = DISPPLANE_GAMMA_ENABLE; 4573 dspcntr = DISPPLANE_GAMMA_ENABLE;
@@ -4598,8 +4601,6 @@ static void valleyview_crtc_enable(struct drm_crtc *crtc)
4598 if (encoder->pre_pll_enable) 4601 if (encoder->pre_pll_enable)
4599 encoder->pre_pll_enable(encoder); 4602 encoder->pre_pll_enable(encoder);
4600 4603
4601 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4602
4603 if (!is_dsi) { 4604 if (!is_dsi) {
4604 if (IS_CHERRYVIEW(dev)) 4605 if (IS_CHERRYVIEW(dev))
4605 chv_enable_pll(intel_crtc); 4606 chv_enable_pll(intel_crtc);