diff mbox series

[v4,03/12] clk: imx7d: fix mipi dphy div parent

Message ID 20180517125033.18050-4-rui.silva@linaro.org
State Superseded
Headers show
Series media: staging/imx7: add i.MX7 media driver | expand

Commit Message

Rui Miguel Silva May 17, 2018, 12:50 p.m. UTC
Fix the mipi dphy root divider to mipi_dphy_pre_div, this would remove a orphan
clock and set the correct parent.

before:
cat clk_orphan_summary
                                 enable  prepare  protect
   clock                          count    count    count        rate   accuracy   phase
----------------------------------------------------------------------------------------
 mipi_dphy_post_div                   1        1        0           0          0 0
    mipi_dphy_root_clk                1        1        0           0          0 0

cat clk_dump | grep mipi_dphy
mipi_dphy_post_div                    1        1        0           0          0 0
    mipi_dphy_root_clk                1        1        0           0          0 0

after:
cat clk_dump | grep mipi_dphy
   mipi_dphy_src                     1        1        0    24000000          0 0
       mipi_dphy_cg                  1        1        0    24000000          0 0
          mipi_dphy_pre_div          1        1        0    24000000          0 0
             mipi_dphy_post_div      1        1        0    24000000          0 0
                mipi_dphy_root_clk   1        1        0    24000000          0 0

Fixes: 8f6d8094b215 ("ARM: imx: add imx7d clk tree support")

Cc: linux-clk@vger.kernel.org
Acked-by: Dong Aisheng <Aisheng.dong@nxp.com>

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>

---
 drivers/clk/imx/clk-imx7d.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.17.0

Comments

Rui Miguel Silva May 18, 2018, 8:30 a.m. UTC | #1
Hi Stephen,
On Thu 17 May 2018 at 18:05, Stephen Boyd wrote:
> Quoting Rui Miguel Silva (2018-05-17 05:50:24)

>> Fix the mipi dphy root divider to mipi_dphy_pre_div, this would 

>> remove a orphan

>> clock and set the correct parent.

>> 

>> before:

>> cat clk_orphan_summary

>>                                  enable  prepare  protect

>>    clock                          count    count    count 

>>    rate   accuracy   phase

>> ----------------------------------------------------------------------------------------

>>  mipi_dphy_post_div                   1        1        0 

>>  0          0 0

>>     mipi_dphy_root_clk                1        1        0 

>>     0          0 0

>> 

>> cat clk_dump | grep mipi_dphy

>> mipi_dphy_post_div                    1        1        0 

>> 0          0 0

>>     mipi_dphy_root_clk                1        1        0 

>>     0          0 0

>> 

>> after:

>> cat clk_dump | grep mipi_dphy

>>    mipi_dphy_src                     1        1        0 

>>    24000000          0 0

>>        mipi_dphy_cg                  1        1        0 

>>        24000000          0 0

>>           mipi_dphy_pre_div          1        1        0 

>>           24000000          0 0

>>              mipi_dphy_post_div      1        1        0 

>>              24000000          0 0

>>                 mipi_dphy_root_clk   1        1        0 

>>                 24000000          0 0

>> 

>> Fixes: 8f6d8094b215 ("ARM: imx: add imx7d clk tree support")

>> 

>> Cc: linux-clk@vger.kernel.org

>> Acked-by: Dong Aisheng <Aisheng.dong@nxp.com>

>> Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>

>> ---

>

> I only get two patches out of the 12 and I don't get a cover 

> letter.

> Did you want me to pick up these clk patches into clk-next? 

> Where are

> the other patches? Can you cc lkml on all your kernel emails so 

> I can

> easily find them?


Yea, sorry, You are right, I will cc all patches to the lists. v5 
is on
the way and I will do that.

---
Cheers,
	Rui
diff mbox series

Patch

diff --git a/drivers/clk/imx/clk-imx7d.c b/drivers/clk/imx/clk-imx7d.c
index 975a20d3cc94..f7f4db2e6fa6 100644
--- a/drivers/clk/imx/clk-imx7d.c
+++ b/drivers/clk/imx/clk-imx7d.c
@@ -729,7 +729,7 @@  static void __init imx7d_clocks_init(struct device_node *ccm_node)
 	clks[IMX7D_LCDIF_PIXEL_ROOT_DIV] = imx_clk_divider2("lcdif_pixel_post_div", "lcdif_pixel_pre_div", base + 0xa300, 0, 6);
 	clks[IMX7D_MIPI_DSI_ROOT_DIV] = imx_clk_divider2("mipi_dsi_post_div", "mipi_dsi_pre_div", base + 0xa380, 0, 6);
 	clks[IMX7D_MIPI_CSI_ROOT_DIV] = imx_clk_divider2("mipi_csi_post_div", "mipi_csi_pre_div", base + 0xa400, 0, 6);
-	clks[IMX7D_MIPI_DPHY_ROOT_DIV] = imx_clk_divider2("mipi_dphy_post_div", "mipi_csi_dphy_div", base + 0xa480, 0, 6);
+	clks[IMX7D_MIPI_DPHY_ROOT_DIV] = imx_clk_divider2("mipi_dphy_post_div", "mipi_dphy_pre_div", base + 0xa480, 0, 6);
 	clks[IMX7D_SAI1_ROOT_DIV] = imx_clk_divider2("sai1_post_div", "sai1_pre_div", base + 0xa500, 0, 6);
 	clks[IMX7D_SAI2_ROOT_DIV] = imx_clk_divider2("sai2_post_div", "sai2_pre_div", base + 0xa580, 0, 6);
 	clks[IMX7D_SAI3_ROOT_DIV] = imx_clk_divider2("sai3_post_div", "sai3_pre_div", base + 0xa600, 0, 6);