clk: qcom: rpmhcc: Add support for QCS615 Clocks
Add the RPMHCC clocks required for QCS615 SoC. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Taniya Das <quic_tdas@quicinc.com> Link: https://lore.kernel.org/r/20241022-qcs615-clock-driver-v4-2-3d716ad0d987@quicinc.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>pull/1131/head
parent
9446506226
commit
42a1905a10
|
|
@ -807,6 +807,24 @@ static const struct clk_rpmh_desc clk_rpmh_x1e80100 = {
|
||||||
.num_clks = ARRAY_SIZE(x1e80100_rpmh_clocks),
|
.num_clks = ARRAY_SIZE(x1e80100_rpmh_clocks),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct clk_hw *qcs615_rpmh_clocks[] = {
|
||||||
|
[RPMH_CXO_CLK] = &clk_rpmh_bi_tcxo_div2.hw,
|
||||||
|
[RPMH_CXO_CLK_A] = &clk_rpmh_bi_tcxo_div2_ao.hw,
|
||||||
|
[RPMH_LN_BB_CLK2] = &clk_rpmh_ln_bb_clk2_a2.hw,
|
||||||
|
[RPMH_LN_BB_CLK2_A] = &clk_rpmh_ln_bb_clk2_a2_ao.hw,
|
||||||
|
[RPMH_LN_BB_CLK3] = &clk_rpmh_ln_bb_clk3_a2.hw,
|
||||||
|
[RPMH_LN_BB_CLK3_A] = &clk_rpmh_ln_bb_clk3_a2_ao.hw,
|
||||||
|
[RPMH_RF_CLK1] = &clk_rpmh_rf_clk1_a.hw,
|
||||||
|
[RPMH_RF_CLK1_A] = &clk_rpmh_rf_clk1_a_ao.hw,
|
||||||
|
[RPMH_RF_CLK2] = &clk_rpmh_rf_clk2_a.hw,
|
||||||
|
[RPMH_RF_CLK2_A] = &clk_rpmh_rf_clk2_a_ao.hw,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct clk_rpmh_desc clk_rpmh_qcs615 = {
|
||||||
|
.clks = qcs615_rpmh_clocks,
|
||||||
|
.num_clks = ARRAY_SIZE(qcs615_rpmh_clocks),
|
||||||
|
};
|
||||||
|
|
||||||
static struct clk_hw *of_clk_rpmh_hw_get(struct of_phandle_args *clkspec,
|
static struct clk_hw *of_clk_rpmh_hw_get(struct of_phandle_args *clkspec,
|
||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
|
|
@ -890,6 +908,7 @@ static int clk_rpmh_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id clk_rpmh_match_table[] = {
|
static const struct of_device_id clk_rpmh_match_table[] = {
|
||||||
|
{ .compatible = "qcom,qcs615-rpmh-clk", .data = &clk_rpmh_qcs615},
|
||||||
{ .compatible = "qcom,qdu1000-rpmh-clk", .data = &clk_rpmh_qdu1000},
|
{ .compatible = "qcom,qdu1000-rpmh-clk", .data = &clk_rpmh_qdu1000},
|
||||||
{ .compatible = "qcom,sa8775p-rpmh-clk", .data = &clk_rpmh_sa8775p},
|
{ .compatible = "qcom,sa8775p-rpmh-clk", .data = &clk_rpmh_sa8775p},
|
||||||
{ .compatible = "qcom,sar2130p-rpmh-clk", .data = &clk_rpmh_sar2130p},
|
{ .compatible = "qcom,sar2130p-rpmh-clk", .data = &clk_rpmh_sar2130p},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue