OMAPDSS: DSI: workaround for HSDiv problem
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 12 Oct 2012 13:27:28 +0000 (16:27 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 5 Nov 2012 09:14:05 +0000 (11:14 +0200)
It looks like on many OMAP versions powers for both HSClk and HSDiv to
be enabled to have a functional HSDiv.

This patch fixes the issue by forcing both powers on.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/dsi.c

index ea5c660..e773f44 100644 (file)
@@ -1741,6 +1741,12 @@ int dsi_pll_init(struct platform_device *dsidev, bool enable_hsclk,
 
        DSSDBG("PLL init\n");
 
+       /*
+        * It seems that on many OMAPs we need to enable both to have a
+        * functional HSDivider.
+        */
+       enable_hsclk = enable_hsdiv = true;
+
        if (dsi->vdds_dsi_reg == NULL) {
                struct regulator *vdds_dsi;