aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2014-07-11 11:28:45 -0400
committerPhilipp Zabel <p.zabel@pengutronix.de>2015-03-31 05:59:32 -0400
commite0d155cadbc569319e49b97ebb8b062e241483e6 (patch)
treecc585bfc5d598c4876c7825c863e3225b8e801e0
parentdd7fa6d88796b1aaa511abbac38963aa1c443443 (diff)
drm/imx: ipuv3-crtc: Allow to divide DI clock from TVEv2
This patch allows the IPU to divide the 27 MHz input clock from the TVE by two to obtain the 13.5 MHz pixel clock needed for NTSC/PAL SD modes. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r--drivers/gpu/drm/imx/ipuv3-crtc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c
index 09d6f98f4cbd..4a393f609220 100644
--- a/drivers/gpu/drm/imx/ipuv3-crtc.c
+++ b/drivers/gpu/drm/imx/ipuv3-crtc.c
@@ -161,13 +161,15 @@ static int ipu_crtc_mode_set(struct drm_crtc *crtc,
161 __func__, encoder_types); 161 __func__, encoder_types);
162 162
163 /* 163 /*
164 * If we have DAC, TVDAC or LDB, then we need the IPU DI clock 164 * If we have DAC or LDB, then we need the IPU DI clock to be
165 * to be the same as the LDB DI clock. 165 * the same as the LDB DI clock. For TVDAC, derive the IPU DI
166 * clock from 27 MHz TVE_DI clock, but allow to divide it.
166 */ 167 */
167 if (encoder_types & (BIT(DRM_MODE_ENCODER_DAC) | 168 if (encoder_types & (BIT(DRM_MODE_ENCODER_DAC) |
168 BIT(DRM_MODE_ENCODER_TVDAC) |
169 BIT(DRM_MODE_ENCODER_LVDS))) 169 BIT(DRM_MODE_ENCODER_LVDS)))
170 sig_cfg.clkflags = IPU_DI_CLKMODE_SYNC | IPU_DI_CLKMODE_EXT; 170 sig_cfg.clkflags = IPU_DI_CLKMODE_SYNC | IPU_DI_CLKMODE_EXT;
171 else if (encoder_types & BIT(DRM_MODE_ENCODER_TVDAC))
172 sig_cfg.clkflags = IPU_DI_CLKMODE_EXT;
171 else 173 else
172 sig_cfg.clkflags = 0; 174 sig_cfg.clkflags = 0;
173 175