On 11/17, Stephen Boyd wrote:
> +static struct clk_alpha_pll mmpll0_early = {
> +     .offset = 0x0,
> +     .vco_table = mmpll_p_vco,
> +     .num_vco = ARRAY_SIZE(mmpll_p_vco),
> +     .clkr.hw.init = &(struct clk_init_data){
> +             .name = "mmpll0_early",
> +             .parent_names = (const char *[]){ "xo" },
> +             .num_parents = 1,
> +             .ops = &clk_alpha_pll_ops,
> +     },
> +};
> +
> +static struct clk_alpha_pll_postdiv mmpll0 = {
> +     .offset = 0x0,
> +     .width = 4,
> +     .clkr.hw.init = &(struct clk_init_data){
> +             .name = "mmpll0",
> +             .parent_names = (const char *[]){ "mmpll0_early" },
> +             .num_parents = 1,
> +             .ops = &clk_alpha_pll_postdiv_ops,
> +             .flags = CLK_SET_RATE_PARENT,
> +     },
> +};
> +
> +static struct clk_alpha_pll mmpll1_early = {
> +     .offset = 0x30,
> +     .vco_table = mmpll_p_vco,
> +     .num_vco = ARRAY_SIZE(mmpll_p_vco),
> +     .clkr.hw.init = &(struct clk_init_data){
> +             .name = "mmpll1_early",
> +             .parent_names = (const char *[]){ "xo" },
> +             .num_parents = 1,
> +             .ops = &clk_alpha_pll_ops,
> +     },
> +};
> +
> +static struct clk_alpha_pll_postdiv mmpll1 = {
> +     .offset = 0x30,
> +     .width = 4,
> +     .clkr.hw.init = &(struct clk_init_data){
> +             .name = "mmpll1",
> +             .parent_names = (const char *[]){ "mmpll1_early" },
> +             .num_parents = 1,
> +             .ops = &clk_alpha_pll_postdiv_ops,
> +             .flags = CLK_SET_RATE_PARENT,
> +     },
> +};

These are missing the .enable_reg and .enable_mask members to do
the proper FSM voting. I'll add that in v2.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line "unsubscribe linux-clk" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to