clk: qcom: rpmh: add clocks for sa8775p
Extend the driver with a description of clocks for sa8775p platforms. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Signed-off-by: Bjorn Andersson <andersson@kernel.org> Link: https://lore.kernel.org/r/20230109174511.1740856-6-brgl@bgdev.plpull/938/head
parent
9d4d6d5e2f
commit
ce273e690d
|
|
@ -406,6 +406,22 @@ static const struct clk_rpmh_desc clk_rpmh_sdm845 = {
|
||||||
.num_clks = ARRAY_SIZE(sdm845_rpmh_clocks),
|
.num_clks = ARRAY_SIZE(sdm845_rpmh_clocks),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct clk_hw *sa8775p_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_CLK1] = &clk_rpmh_ln_bb_clk1_a2.hw,
|
||||||
|
[RPMH_LN_BB_CLK2] = &clk_rpmh_ln_bb_clk2_a2.hw,
|
||||||
|
[RPMH_LN_BB_CLK2_A] = &clk_rpmh_ln_bb_clk2_a4_ao.hw,
|
||||||
|
[RPMH_IPA_CLK] = &clk_rpmh_ipa.hw,
|
||||||
|
[RPMH_PKA_CLK] = &clk_rpmh_pka.hw,
|
||||||
|
[RPMH_HWKM_CLK] = &clk_rpmh_hwkm.hw,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct clk_rpmh_desc clk_rpmh_sa8775p = {
|
||||||
|
.clks = sa8775p_rpmh_clocks,
|
||||||
|
.num_clks = ARRAY_SIZE(sa8775p_rpmh_clocks),
|
||||||
|
};
|
||||||
|
|
||||||
static struct clk_hw *sdm670_rpmh_clocks[] = {
|
static struct clk_hw *sdm670_rpmh_clocks[] = {
|
||||||
[RPMH_CXO_CLK] = &clk_rpmh_bi_tcxo_div2.hw,
|
[RPMH_CXO_CLK] = &clk_rpmh_bi_tcxo_div2.hw,
|
||||||
[RPMH_CXO_CLK_A] = &clk_rpmh_bi_tcxo_div2_ao.hw,
|
[RPMH_CXO_CLK_A] = &clk_rpmh_bi_tcxo_div2_ao.hw,
|
||||||
|
|
@ -765,6 +781,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,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,sc7180-rpmh-clk", .data = &clk_rpmh_sc7180},
|
{ .compatible = "qcom,sc7180-rpmh-clk", .data = &clk_rpmh_sc7180},
|
||||||
{ .compatible = "qcom,sc8180x-rpmh-clk", .data = &clk_rpmh_sc8180x},
|
{ .compatible = "qcom,sc8180x-rpmh-clk", .data = &clk_rpmh_sc8180x},
|
||||||
{ .compatible = "qcom,sc8280xp-rpmh-clk", .data = &clk_rpmh_sc8280xp},
|
{ .compatible = "qcom,sc8280xp-rpmh-clk", .data = &clk_rpmh_sc8280xp},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue