clk: rockchip: fix the rk3399 cifout clock
authorXing Zheng <zhengxing@rock-chips.com>
Wed, 20 Apr 2016 11:11:32 +0000 (19:11 +0800)
committerHeiko Stuebner <heiko@sntech.de>
Mon, 25 Apr 2016 20:54:51 +0000 (22:54 +0200)
The cifout clock is incorrect due to the manual error, we need to
fix it.

Signed-off-by: Xing Zheng <zhengxing@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/clk/rockchip/clk-rk3399.c

index 7ecb7d68a3282f70056ea4852a820eca7a5107ae..5248726af86db8a2962974f3096a4884029befd1 100644 (file)
@@ -158,7 +158,7 @@ PNAME(mux_dclk_vop0_p)                      = { "dclk_vop0_div",
 PNAME(mux_dclk_vop1_p)                 = { "dclk_vop1_div",
                                            "dclk_vop1_frac" };
 
-PNAME(mux_clk_cif_p)                   = { "clk_cifout_div", "xin24m" };
+PNAME(mux_clk_cif_p)                   = { "clk_cifout_src", "xin24m" };
 
 PNAME(mux_pll_src_24m_usbphy480m_p)    = { "xin24m", "clk_usbphy_480m" };
 PNAME(mux_pll_src_24m_pciephy_p)       = { "xin24m", "clk_pciephy_ref100m" };
@@ -1254,11 +1254,12 @@ static struct rockchip_clk_branch rk3399_clk_branches[] __initdata = {
                        RK3399_CLKGATE_CON(27), 6, GFLAGS),
 
        /* cif */
-       COMPOSITE(0, "clk_cifout_div", mux_pll_src_cpll_gpll_npll_p, 0,
-                       RK3399_CLKSEL_CON(56), 6, 2, MFLAGS, 0, 5, DFLAGS,
+       COMPOSITE_NODIV(0, "clk_cifout_src", mux_pll_src_cpll_gpll_npll_p, 0,
+                       RK3399_CLKSEL_CON(56), 6, 2, MFLAGS,
                        RK3399_CLKGATE_CON(10), 7, GFLAGS),
-       MUX(SCLK_CIF_OUT, "clk_cifout", mux_clk_cif_p, CLK_SET_RATE_PARENT,
-                       RK3399_CLKSEL_CON(56), 5, 1, MFLAGS),
+
+       COMPOSITE_NOGATE(SCLK_CIF_OUT, "clk_cifout", mux_clk_cif_p, 0,
+                        RK3399_CLKSEL_CON(56), 5, 1, MFLAGS, 0, 5, DFLAGS),
 
        /* gic */
        COMPOSITE(ACLK_GIC_PRE, "aclk_gic_pre", mux_pll_src_cpll_gpll_p, CLK_IGNORE_UNUSED,
This page took 0.025501 seconds and 5 git commands to generate.