]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: dw-mipi-dsi: permit configuring the escape clock rate
authorNeil Armstrong <narmstrong@baylibre.com>
Fri, 2 Oct 2020 09:16:09 +0000 (11:16 +0200)
committerAnatolij Gustschin <agust@denx.de>
Sun, 18 Oct 2020 08:36:05 +0000 (10:36 +0200)
The Amlogic D-PHY in the Amlogic AXG SoC Family does support a frequency
higher than 10MHz for the TX Escape Clock, thus make the target rate
configurable.

This is based on the Linux commit [1] and adapted to the U-Boot driver.

[1] a328ca7e4af3 ("drm/bridge: dw-mipi-dsi: permit configuring the escape clock rate")

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
drivers/video/dw_mipi_dsi.c
include/mipi_dsi.h

index 44a60ac53212f11d6d33d6d45b5316f63d7b7185..4055ef49b6ee9441ec4e365d2bbbd5641c247516 100644 (file)
@@ -485,15 +485,27 @@ static void dw_mipi_dsi_set_mode(struct dw_mipi_dsi *dsi,
 
 static void dw_mipi_dsi_init_pll(struct dw_mipi_dsi *dsi)
 {
+       const struct mipi_dsi_phy_ops *phy_ops = dsi->phy_ops;
+       unsigned int esc_rate;
+       u32 esc_clk_division;
+
        /*
         * The maximum permitted escape clock is 20MHz and it is derived from
-        * lanebyteclk, which is running at "lane_mbps / 8".  Thus we want:
+        * lanebyteclk, which is running at "lane_mbps / 8".
+        */
+       if (phy_ops->get_esc_clk_rate)
+               phy_ops->get_esc_clk_rate(dsi->device, &esc_rate);
+       else
+               esc_rate = 20; /* Default to 20MHz */
+
+       /*
+        * We want:
         *
-        *     (lane_mbps >> 3) / esc_clk_division < 20
+        *     (lane_mbps >> 3) / esc_clk_division < X
         * which is:
-        *     (lane_mbps >> 3) / 20 > esc_clk_division
+        *     (lane_mbps >> 3) / X > esc_clk_division
         */
-       u32 esc_clk_division = (dsi->lane_mbps >> 3) / 20 + 1;
+       esc_clk_division = (dsi->lane_mbps >> 3) / esc_rate + 1;
 
        dsi_write(dsi, DSI_PWR_UP, RESET);
 
index 55c7ab33286ccbb95c4d30263a0de50ba7776e55..4ca05f71e29903c5f995a5fe5299484aea5c1e01 100644 (file)
@@ -123,6 +123,7 @@ struct mipi_dsi_phy_ops {
        void (*post_set_mode)(void *priv_data,  unsigned long mode_flags);
        int (*get_timing)(void *priv_data, unsigned int lane_mbps,
                          struct mipi_dsi_phy_timing *timing);
+       void (*get_esc_clk_rate)(void *priv_data, unsigned int *esc_clk_rate);
 };
 
 /**