aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2010-10-07 19:01:23 -0400
committerChris Wilson <chris@chris-wilson.co.uk>2010-10-08 05:28:27 -0400
commit895692befab73fd399d854c7db41d6d7260af2da (patch)
treedbe98553bdd8b1ace5fa21838c5a6e784e433e07
parent869184a675662bddcdf76c5b95665272facff2b8 (diff)
drm/i915/dp: don't bother with DP PLL for PCH attached eDP
We don't use the CPU DP PLL with PCH attached eDP panels, so don't bother to enable it. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--drivers/gpu/drm/i915/intel_dp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index d4ef20598da8..ada7319f0eaf 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -775,7 +775,7 @@ intel_dp_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
775 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev)) 775 if (intel_crtc->pipe == 1 && !HAS_PCH_CPT(dev))
776 intel_dp->DP |= DP_PIPEB_SELECT; 776 intel_dp->DP |= DP_PIPEB_SELECT;
777 777
778 if (is_edp(intel_dp)) { 778 if (is_edp(intel_dp) && !is_pch_edp(intel_dp)) {
779 /* don't miss out required setting for eDP */ 779 /* don't miss out required setting for eDP */
780 intel_dp->DP |= DP_PLL_ENABLE; 780 intel_dp->DP |= DP_PLL_ENABLE;
781 if (adjusted_mode->clock < 200000) 781 if (adjusted_mode->clock < 200000)