aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/gma500/cdv_intel_dp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/gma500/cdv_intel_dp.c')
-rw-r--r--drivers/gpu/drm/gma500/cdv_intel_dp.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/gpu/drm/gma500/cdv_intel_dp.c b/drivers/gpu/drm/gma500/cdv_intel_dp.c
index 0571ef9b889b..9bacce3ce53c 100644
--- a/drivers/gpu/drm/gma500/cdv_intel_dp.c
+++ b/drivers/gpu/drm/gma500/cdv_intel_dp.c
@@ -1778,6 +1778,28 @@ static bool cdv_intel_dpc_is_edp(struct drm_device *dev)
1778 return false; 1778 return false;
1779} 1779}
1780 1780
1781/* Cedarview display clock gating
1782
1783 We need this disable dot get correct behaviour while enabling
1784 DP/eDP. TODO - investigate if we can turn it back to normality
1785 after enabling */
1786static void cdv_disable_intel_clock_gating(struct drm_device *dev)
1787{
1788 u32 reg_value;
1789 reg_value = REG_READ(DSPCLK_GATE_D);
1790
1791 reg_value |= (DPUNIT_PIPEB_GATE_DISABLE |
1792 DPUNIT_PIPEA_GATE_DISABLE |
1793 DPCUNIT_CLOCK_GATE_DISABLE |
1794 DPLSUNIT_CLOCK_GATE_DISABLE |
1795 DPOUNIT_CLOCK_GATE_DISABLE |
1796 DPIOUNIT_CLOCK_GATE_DISABLE);
1797
1798 REG_WRITE(DSPCLK_GATE_D, reg_value);
1799
1800 udelay(500);
1801}
1802
1781void 1803void
1782cdv_intel_dp_init(struct drm_device *dev, struct psb_intel_mode_device *mode_dev, int output_reg) 1804cdv_intel_dp_init(struct drm_device *dev, struct psb_intel_mode_device *mode_dev, int output_reg)
1783{ 1805{
@@ -1841,6 +1863,8 @@ cdv_intel_dp_init(struct drm_device *dev, struct psb_intel_mode_device *mode_dev
1841 break; 1863 break;
1842 } 1864 }
1843 1865
1866 cdv_disable_intel_clock_gating(dev);
1867
1844 cdv_intel_dp_i2c_init(psb_intel_connector, psb_intel_encoder, name); 1868 cdv_intel_dp_i2c_init(psb_intel_connector, psb_intel_encoder, name);
1845 /* FIXME:fail check */ 1869 /* FIXME:fail check */
1846 cdv_intel_dp_add_properties(connector); 1870 cdv_intel_dp_add_properties(connector);