Commit da5daae8 authored by Yassine Oudjana's avatar Yassine Oudjana Committed by Bjorn Andersson

clk: qcom: msm8996-cpu: Use parent_data/_hws for all clocks

Replace parent_names in PLLs, secondary muxes and primary muxes with
parent_data. For primary muxes there were never any *cl_pll_acd clocks,
so instead of adding them, put the primary PLLs in both PLL_INDEX and
ACD_INDEX, then make sure ACD_INDEX is always picked over PLL_INDEX when
setting parent since we always want ACD when using the primary PLLs.
Signed-off-by: default avatarYassine Oudjana <y.oudjana@protonmail.com>
[DB: switch to parent_hws for pmux clocks]
Signed-off-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: default avatarBjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220714100351.1834711-2-dmitry.baryshkov@linaro.org
parent b4feed4a
...@@ -112,14 +112,18 @@ static const struct alpha_pll_config hfpll_config = { ...@@ -112,14 +112,18 @@ static const struct alpha_pll_config hfpll_config = {
.early_output_mask = BIT(3), .early_output_mask = BIT(3),
}; };
static const struct clk_parent_data pll_parent[] = {
{ .fw_name = "xo" },
};
static struct clk_alpha_pll pwrcl_pll = { static struct clk_alpha_pll pwrcl_pll = {
.offset = PWRCL_REG_OFFSET, .offset = PWRCL_REG_OFFSET,
.regs = prim_pll_regs, .regs = prim_pll_regs,
.flags = SUPPORTS_DYNAMIC_UPDATE | SUPPORTS_FSM_MODE, .flags = SUPPORTS_DYNAMIC_UPDATE | SUPPORTS_FSM_MODE,
.clkr.hw.init = &(struct clk_init_data){ .clkr.hw.init = &(struct clk_init_data){
.name = "pwrcl_pll", .name = "pwrcl_pll",
.parent_names = (const char *[]){ "xo" }, .parent_data = pll_parent,
.num_parents = 1, .num_parents = ARRAY_SIZE(pll_parent),
.ops = &clk_alpha_pll_huayra_ops, .ops = &clk_alpha_pll_huayra_ops,
}, },
}; };
...@@ -130,8 +134,8 @@ static struct clk_alpha_pll perfcl_pll = { ...@@ -130,8 +134,8 @@ static struct clk_alpha_pll perfcl_pll = {
.flags = SUPPORTS_DYNAMIC_UPDATE | SUPPORTS_FSM_MODE, .flags = SUPPORTS_DYNAMIC_UPDATE | SUPPORTS_FSM_MODE,
.clkr.hw.init = &(struct clk_init_data){ .clkr.hw.init = &(struct clk_init_data){
.name = "perfcl_pll", .name = "perfcl_pll",
.parent_names = (const char *[]){ "xo" }, .parent_data = pll_parent,
.num_parents = 1, .num_parents = ARRAY_SIZE(pll_parent),
.ops = &clk_alpha_pll_huayra_ops, .ops = &clk_alpha_pll_huayra_ops,
}, },
}; };
...@@ -190,8 +194,8 @@ static struct clk_alpha_pll pwrcl_alt_pll = { ...@@ -190,8 +194,8 @@ static struct clk_alpha_pll pwrcl_alt_pll = {
.flags = SUPPORTS_OFFLINE_REQ | SUPPORTS_FSM_MODE, .flags = SUPPORTS_OFFLINE_REQ | SUPPORTS_FSM_MODE,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "pwrcl_alt_pll", .name = "pwrcl_alt_pll",
.parent_names = (const char *[]){ "xo" }, .parent_data = pll_parent,
.num_parents = 1, .num_parents = ARRAY_SIZE(pll_parent),
.ops = &clk_alpha_pll_hwfsm_ops, .ops = &clk_alpha_pll_hwfsm_ops,
}, },
}; };
...@@ -204,8 +208,8 @@ static struct clk_alpha_pll perfcl_alt_pll = { ...@@ -204,8 +208,8 @@ static struct clk_alpha_pll perfcl_alt_pll = {
.flags = SUPPORTS_OFFLINE_REQ | SUPPORTS_FSM_MODE, .flags = SUPPORTS_OFFLINE_REQ | SUPPORTS_FSM_MODE,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "perfcl_alt_pll", .name = "perfcl_alt_pll",
.parent_names = (const char *[]){ "xo" }, .parent_data = pll_parent,
.num_parents = 1, .num_parents = ARRAY_SIZE(pll_parent),
.ops = &clk_alpha_pll_hwfsm_ops, .ops = &clk_alpha_pll_hwfsm_ops,
}, },
}; };
...@@ -252,6 +256,9 @@ static int clk_cpu_8996_pmux_set_parent(struct clk_hw *hw, u8 index) ...@@ -252,6 +256,9 @@ static int clk_cpu_8996_pmux_set_parent(struct clk_hw *hw, u8 index)
u32 val; u32 val;
val = index; val = index;
/* We always want ACD when using the primary PLL */
if (val == PLL_INDEX)
val = ACD_INDEX;
val <<= cpuclk->shift; val <<= cpuclk->shift;
return regmap_update_bits(clkr->regmap, cpuclk->reg, mask, val); return regmap_update_bits(clkr->regmap, cpuclk->reg, mask, val);
...@@ -282,17 +289,24 @@ static const struct clk_ops clk_cpu_8996_pmux_ops = { ...@@ -282,17 +289,24 @@ static const struct clk_ops clk_cpu_8996_pmux_ops = {
.determine_rate = clk_cpu_8996_pmux_determine_rate, .determine_rate = clk_cpu_8996_pmux_determine_rate,
}; };
static const struct clk_parent_data pwrcl_smux_parents[] = {
{ .fw_name = "xo" },
{ .hw = &pwrcl_pll_postdiv.hw },
};
static const struct clk_parent_data perfcl_smux_parents[] = {
{ .fw_name = "xo" },
{ .hw = &perfcl_pll_postdiv.hw },
};
static struct clk_regmap_mux pwrcl_smux = { static struct clk_regmap_mux pwrcl_smux = {
.reg = PWRCL_REG_OFFSET + MUX_OFFSET, .reg = PWRCL_REG_OFFSET + MUX_OFFSET,
.shift = 2, .shift = 2,
.width = 2, .width = 2,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "pwrcl_smux", .name = "pwrcl_smux",
.parent_names = (const char *[]){ .parent_data = pwrcl_smux_parents,
"xo", .num_parents = ARRAY_SIZE(pwrcl_smux_parents),
"pwrcl_pll_postdiv",
},
.num_parents = 2,
.ops = &clk_regmap_mux_closest_ops, .ops = &clk_regmap_mux_closest_ops,
.flags = CLK_SET_RATE_PARENT, .flags = CLK_SET_RATE_PARENT,
}, },
...@@ -304,16 +318,27 @@ static struct clk_regmap_mux perfcl_smux = { ...@@ -304,16 +318,27 @@ static struct clk_regmap_mux perfcl_smux = {
.width = 2, .width = 2,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "perfcl_smux", .name = "perfcl_smux",
.parent_names = (const char *[]){ .parent_data = perfcl_smux_parents,
"xo", .num_parents = ARRAY_SIZE(perfcl_smux_parents),
"perfcl_pll_postdiv",
},
.num_parents = 2,
.ops = &clk_regmap_mux_closest_ops, .ops = &clk_regmap_mux_closest_ops,
.flags = CLK_SET_RATE_PARENT, .flags = CLK_SET_RATE_PARENT,
}, },
}; };
static const struct clk_hw *pwrcl_pmux_parents[] = {
[SMUX_INDEX] = &pwrcl_smux.clkr.hw,
[PLL_INDEX] = &pwrcl_pll.clkr.hw,
[ACD_INDEX] = &pwrcl_pll.clkr.hw,
[ALT_INDEX] = &pwrcl_alt_pll.clkr.hw,
};
static const struct clk_hw *perfcl_pmux_parents[] = {
[SMUX_INDEX] = &perfcl_smux.clkr.hw,
[PLL_INDEX] = &perfcl_pll.clkr.hw,
[ACD_INDEX] = &perfcl_pll.clkr.hw,
[ALT_INDEX] = &perfcl_alt_pll.clkr.hw,
};
static struct clk_cpu_8996_pmux pwrcl_pmux = { static struct clk_cpu_8996_pmux pwrcl_pmux = {
.reg = PWRCL_REG_OFFSET + MUX_OFFSET, .reg = PWRCL_REG_OFFSET + MUX_OFFSET,
.shift = 0, .shift = 0,
...@@ -323,13 +348,8 @@ static struct clk_cpu_8996_pmux pwrcl_pmux = { ...@@ -323,13 +348,8 @@ static struct clk_cpu_8996_pmux pwrcl_pmux = {
.nb.notifier_call = cpu_clk_notifier_cb, .nb.notifier_call = cpu_clk_notifier_cb,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "pwrcl_pmux", .name = "pwrcl_pmux",
.parent_names = (const char *[]){ .parent_hws = pwrcl_pmux_parents,
"pwrcl_smux", .num_parents = ARRAY_SIZE(pwrcl_pmux_parents),
"pwrcl_pll",
"pwrcl_pll_acd",
"pwrcl_alt_pll",
},
.num_parents = 4,
.ops = &clk_cpu_8996_pmux_ops, .ops = &clk_cpu_8996_pmux_ops,
/* CPU clock is critical and should never be gated */ /* CPU clock is critical and should never be gated */
.flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL, .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
...@@ -345,13 +365,8 @@ static struct clk_cpu_8996_pmux perfcl_pmux = { ...@@ -345,13 +365,8 @@ static struct clk_cpu_8996_pmux perfcl_pmux = {
.nb.notifier_call = cpu_clk_notifier_cb, .nb.notifier_call = cpu_clk_notifier_cb,
.clkr.hw.init = &(struct clk_init_data) { .clkr.hw.init = &(struct clk_init_data) {
.name = "perfcl_pmux", .name = "perfcl_pmux",
.parent_names = (const char *[]){ .parent_hws = perfcl_pmux_parents,
"perfcl_smux", .num_parents = ARRAY_SIZE(perfcl_pmux_parents),
"perfcl_pll",
"perfcl_pll_acd",
"perfcl_alt_pll",
},
.num_parents = 4,
.ops = &clk_cpu_8996_pmux_ops, .ops = &clk_cpu_8996_pmux_ops,
/* CPU clock is critical and should never be gated */ /* CPU clock is critical and should never be gated */
.flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL, .flags = CLK_SET_RATE_PARENT | CLK_IS_CRITICAL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment