Message ID | 20221030155520.91629-5-dmitry.baryshkov@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | clk: qcom: update MSM8974 clock controller drivers | expand |
On 30.10.2022 16:55, Dmitry Baryshkov wrote: > Rearrage clock parent tables and PLL declarations (pull parents down > and gpll4 up), so that we can use pll hw clock fields in the next > commit. > > Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- Reviewed-by: Konrad Dybcio <konrad.dybcio@somainline.org> Konrad > drivers/clk/qcom/gcc-msm8974.c | 98 +++++++++++++++++----------------- > 1 file changed, 49 insertions(+), 49 deletions(-) > > diff --git a/drivers/clk/qcom/gcc-msm8974.c b/drivers/clk/qcom/gcc-msm8974.c > index b847ce852ef8..77f3497265a0 100644 > --- a/drivers/clk/qcom/gcc-msm8974.c > +++ b/drivers/clk/qcom/gcc-msm8974.c > @@ -32,28 +32,6 @@ enum { > P_GPLL4, > }; > > -static const struct parent_map gcc_xo_gpll0_map[] = { > - { P_XO, 0 }, > - { P_GPLL0, 1 } > -}; > - > -static const char * const gcc_xo_gpll0[] = { > - "xo", > - "gpll0_vote", > -}; > - > -static const struct parent_map gcc_xo_gpll0_gpll4_map[] = { > - { P_XO, 0 }, > - { P_GPLL0, 1 }, > - { P_GPLL4, 5 } > -}; > - > -static const char * const gcc_xo_gpll0_gpll4[] = { > - "xo", > - "gpll0_vote", > - "gpll4_vote", > -}; > - > static struct clk_pll gpll0 = { > .l_reg = 0x0004, > .m_reg = 0x0008, > @@ -81,6 +59,55 @@ static struct clk_regmap gpll0_vote = { > }, > }; > > +static struct clk_pll gpll4 = { > + .l_reg = 0x1dc4, > + .m_reg = 0x1dc8, > + .n_reg = 0x1dcc, > + .config_reg = 0x1dd4, > + .mode_reg = 0x1dc0, > + .status_reg = 0x1ddc, > + .status_bit = 17, > + .clkr.hw.init = &(struct clk_init_data){ > + .name = "gpll4", > + .parent_names = (const char *[]){ "xo" }, > + .num_parents = 1, > + .ops = &clk_pll_ops, > + }, > +}; > + > +static struct clk_regmap gpll4_vote = { > + .enable_reg = 0x1480, > + .enable_mask = BIT(4), > + .hw.init = &(struct clk_init_data){ > + .name = "gpll4_vote", > + .parent_names = (const char *[]){ "gpll4" }, > + .num_parents = 1, > + .ops = &clk_pll_vote_ops, > + }, > +}; > + > +static const struct parent_map gcc_xo_gpll0_map[] = { > + { P_XO, 0 }, > + { P_GPLL0, 1 } > +}; > + > +static const char * const gcc_xo_gpll0[] = { > + "xo", > + "gpll0_vote", > +}; > + > +static const struct parent_map gcc_xo_gpll0_gpll4_map[] = { > + { P_XO, 0 }, > + { P_GPLL0, 1 }, > + { P_GPLL4, 5 } > +}; > + > +static const char * const gcc_xo_gpll0_gpll4[] = { > + "xo", > + "gpll0_vote", > + "gpll4_vote", > +}; > + > static struct clk_rcg2 config_noc_clk_src = { > .cmd_rcgr = 0x0150, > .hid_width = 5, > @@ -144,33 +171,6 @@ static struct clk_regmap gpll1_vote = { > }, > }; > > -static struct clk_pll gpll4 = { > - .l_reg = 0x1dc4, > - .m_reg = 0x1dc8, > - .n_reg = 0x1dcc, > - .config_reg = 0x1dd4, > - .mode_reg = 0x1dc0, > - .status_reg = 0x1ddc, > - .status_bit = 17, > - .clkr.hw.init = &(struct clk_init_data){ > - .name = "gpll4", > - .parent_names = (const char *[]){ "xo" }, > - .num_parents = 1, > - .ops = &clk_pll_ops, > - }, > -}; > - > -static struct clk_regmap gpll4_vote = { > - .enable_reg = 0x1480, > - .enable_mask = BIT(4), > - .hw.init = &(struct clk_init_data){ > - .name = "gpll4_vote", > - .parent_names = (const char *[]){ "gpll4" }, > - .num_parents = 1, > - .ops = &clk_pll_vote_ops, > - }, > -}; > - > static const struct freq_tbl ftbl_gcc_usb30_master_clk[] = { > F(125000000, P_GPLL0, 1, 5, 24), > { }
diff --git a/drivers/clk/qcom/gcc-msm8974.c b/drivers/clk/qcom/gcc-msm8974.c index b847ce852ef8..77f3497265a0 100644 --- a/drivers/clk/qcom/gcc-msm8974.c +++ b/drivers/clk/qcom/gcc-msm8974.c @@ -32,28 +32,6 @@ enum { P_GPLL4, }; -static const struct parent_map gcc_xo_gpll0_map[] = { - { P_XO, 0 }, - { P_GPLL0, 1 } -}; - -static const char * const gcc_xo_gpll0[] = { - "xo", - "gpll0_vote", -}; - -static const struct parent_map gcc_xo_gpll0_gpll4_map[] = { - { P_XO, 0 }, - { P_GPLL0, 1 }, - { P_GPLL4, 5 } -}; - -static const char * const gcc_xo_gpll0_gpll4[] = { - "xo", - "gpll0_vote", - "gpll4_vote", -}; - static struct clk_pll gpll0 = { .l_reg = 0x0004, .m_reg = 0x0008, @@ -81,6 +59,55 @@ static struct clk_regmap gpll0_vote = { }, }; +static struct clk_pll gpll4 = { + .l_reg = 0x1dc4, + .m_reg = 0x1dc8, + .n_reg = 0x1dcc, + .config_reg = 0x1dd4, + .mode_reg = 0x1dc0, + .status_reg = 0x1ddc, + .status_bit = 17, + .clkr.hw.init = &(struct clk_init_data){ + .name = "gpll4", + .parent_names = (const char *[]){ "xo" }, + .num_parents = 1, + .ops = &clk_pll_ops, + }, +}; + +static struct clk_regmap gpll4_vote = { + .enable_reg = 0x1480, + .enable_mask = BIT(4), + .hw.init = &(struct clk_init_data){ + .name = "gpll4_vote", + .parent_names = (const char *[]){ "gpll4" }, + .num_parents = 1, + .ops = &clk_pll_vote_ops, + }, +}; + +static const struct parent_map gcc_xo_gpll0_map[] = { + { P_XO, 0 }, + { P_GPLL0, 1 } +}; + +static const char * const gcc_xo_gpll0[] = { + "xo", + "gpll0_vote", +}; + +static const struct parent_map gcc_xo_gpll0_gpll4_map[] = { + { P_XO, 0 }, + { P_GPLL0, 1 }, + { P_GPLL4, 5 } +}; + +static const char * const gcc_xo_gpll0_gpll4[] = { + "xo", + "gpll0_vote", + "gpll4_vote", +}; + static struct clk_rcg2 config_noc_clk_src = { .cmd_rcgr = 0x0150, .hid_width = 5, @@ -144,33 +171,6 @@ static struct clk_regmap gpll1_vote = { }, }; -static struct clk_pll gpll4 = { - .l_reg = 0x1dc4, - .m_reg = 0x1dc8, - .n_reg = 0x1dcc, - .config_reg = 0x1dd4, - .mode_reg = 0x1dc0, - .status_reg = 0x1ddc, - .status_bit = 17, - .clkr.hw.init = &(struct clk_init_data){ - .name = "gpll4", - .parent_names = (const char *[]){ "xo" }, - .num_parents = 1, - .ops = &clk_pll_ops, - }, -}; - -static struct clk_regmap gpll4_vote = { - .enable_reg = 0x1480, - .enable_mask = BIT(4), - .hw.init = &(struct clk_init_data){ - .name = "gpll4_vote", - .parent_names = (const char *[]){ "gpll4" }, - .num_parents = 1, - .ops = &clk_pll_vote_ops, - }, -}; - static const struct freq_tbl ftbl_gcc_usb30_master_clk[] = { F(125000000, P_GPLL0, 1, 5, 24), { }