LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible
@ 2021-08-05 22:23 Konrad Dybcio
2021-08-05 22:24 ` [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks Konrad Dybcio
2021-08-06 1:48 ` [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Stephen Boyd
0 siblings, 2 replies; 5+ messages in thread
From: Konrad Dybcio @ 2021-08-05 22:23 UTC (permalink / raw)
To: ~postmarketos/upstreaming
Cc: martin.botka, angelogioacchino.delregno, marijn.suijten,
jamipkettunen, Konrad Dybcio, Andy Gross, Bjorn Andersson,
Michael Turquette, Stephen Boyd, Rob Herring, linux-arm-msm,
linux-clk, devicetree, linux-kernel
Add the dt-binding for the RPM Clock Controller on the MDM9607 SoC.
Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
---
Documentation/devicetree/bindings/clock/qcom,rpmcc.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt b/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
index 6cf5a7ec2b4c..d31d98437d11 100644
--- a/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
+++ b/Documentation/devicetree/bindings/clock/qcom,rpmcc.txt
@@ -10,6 +10,7 @@ Required properties :
- compatible : shall contain only one of the following. The generic
compatible "qcom,rpmcc" should be also included.
+ "qcom,rpmcc-mdm9607", "qcom,rpmcc"
"qcom,rpmcc-msm8660", "qcom,rpmcc"
"qcom,rpmcc-apq8060", "qcom,rpmcc"
"qcom,rpmcc-msm8226", "qcom,rpmcc"
--
2.32.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks
2021-08-05 22:23 [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Konrad Dybcio
@ 2021-08-05 22:24 ` Konrad Dybcio
2021-08-06 1:48 ` Stephen Boyd
2021-08-06 1:50 ` Stephen Boyd
2021-08-06 1:48 ` [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Stephen Boyd
1 sibling, 2 replies; 5+ messages in thread
From: Konrad Dybcio @ 2021-08-05 22:24 UTC (permalink / raw)
To: ~postmarketos/upstreaming
Cc: martin.botka, angelogioacchino.delregno, marijn.suijten,
jamipkettunen, Konrad Dybcio, Andy Gross, Bjorn Andersson,
Michael Turquette, Stephen Boyd, Rob Herring, linux-arm-msm,
linux-clk, devicetree, linux-kernel
Add support for RPM-managed clocks on the MDM9607 platform.
Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
---
drivers/clk/qcom/clk-smd-rpm.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/clk/qcom/clk-smd-rpm.c b/drivers/clk/qcom/clk-smd-rpm.c
index 800b2fef1887..05bca01bf476 100644
--- a/drivers/clk/qcom/clk-smd-rpm.c
+++ b/drivers/clk/qcom/clk-smd-rpm.c
@@ -913,7 +913,30 @@ static const struct rpm_smd_clk_desc rpm_clk_sdm660 = {
.num_clks = ARRAY_SIZE(sdm660_clks),
};
+static struct clk_smd_rpm *mdm9607_clks[] = {
+ [RPM_SMD_XO_CLK_SRC] = &sdm660_bi_tcxo,
+ [RPM_SMD_XO_A_CLK_SRC] = &sdm660_bi_tcxo_a,
+ [RPM_SMD_PCNOC_CLK] = &msm8916_pcnoc_clk,
+ [RPM_SMD_PCNOC_A_CLK] = &msm8916_pcnoc_a_clk,
+ [RPM_SMD_BIMC_CLK] = &msm8916_bimc_clk,
+ [RPM_SMD_BIMC_A_CLK] = &msm8916_bimc_a_clk,
+ [RPM_SMD_QPIC_CLK] = &qcs404_qpic_clk,
+ [RPM_SMD_QPIC_CLK_A] = &qcs404_qpic_a_clk,
+ [RPM_SMD_QDSS_CLK] = &msm8916_qdss_clk,
+ [RPM_SMD_QDSS_A_CLK] = &msm8916_qdss_a_clk,
+ [RPM_SMD_BB_CLK1] = &msm8916_bb_clk1,
+ [RPM_SMD_BB_CLK1_A] = &msm8916_bb_clk1_a,
+ [RPM_SMD_BB_CLK1_PIN] = &msm8916_bb_clk1_pin,
+ [RPM_SMD_BB_CLK1_A_PIN] = &msm8916_bb_clk1_a_pin,
+};
+
+static const struct rpm_smd_clk_desc rpm_clk_mdm9607 = {
+ .clks = mdm9607_clks,
+ .num_clks = ARRAY_SIZE(mdm9607_clks),
+};
+
static const struct of_device_id rpm_smd_clk_match_table[] = {
+ { .compatible = "qcom,rpmcc-mdm9607", .data = &rpm_clk_mdm9607 },
{ .compatible = "qcom,rpmcc-msm8226", .data = &rpm_clk_msm8974 },
{ .compatible = "qcom,rpmcc-msm8916", .data = &rpm_clk_msm8916 },
{ .compatible = "qcom,rpmcc-msm8936", .data = &rpm_clk_msm8936 },
--
2.32.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible
2021-08-05 22:23 [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Konrad Dybcio
2021-08-05 22:24 ` [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks Konrad Dybcio
@ 2021-08-06 1:48 ` Stephen Boyd
1 sibling, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2021-08-06 1:48 UTC (permalink / raw)
To: Konrad Dybcio, ~postmarketos/upstreaming
Cc: martin.botka, angelogioacchino.delregno, marijn.suijten,
jamipkettunen, Konrad Dybcio, Andy Gross, Bjorn Andersson,
Michael Turquette, Rob Herring, linux-arm-msm, linux-clk,
devicetree, linux-kernel
Quoting Konrad Dybcio (2021-08-05 15:23:59)
> Add the dt-binding for the RPM Clock Controller on the MDM9607 SoC.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> ---
Applied to clk-next
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks
2021-08-05 22:24 ` [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks Konrad Dybcio
@ 2021-08-06 1:48 ` Stephen Boyd
2021-08-06 1:50 ` Stephen Boyd
1 sibling, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2021-08-06 1:48 UTC (permalink / raw)
To: Konrad Dybcio, ~postmarketos/upstreaming
Cc: martin.botka, angelogioacchino.delregno, marijn.suijten,
jamipkettunen, Konrad Dybcio, Andy Gross, Bjorn Andersson,
Michael Turquette, Rob Herring, linux-arm-msm, linux-clk,
devicetree, linux-kernel
Quoting Konrad Dybcio (2021-08-05 15:24:00)
> Add support for RPM-managed clocks on the MDM9607 platform.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> ---
Applied to clk-next
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks
2021-08-05 22:24 ` [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks Konrad Dybcio
2021-08-06 1:48 ` Stephen Boyd
@ 2021-08-06 1:50 ` Stephen Boyd
1 sibling, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2021-08-06 1:50 UTC (permalink / raw)
To: Konrad Dybcio, ~postmarketos/upstreaming
Cc: martin.botka, angelogioacchino.delregno, marijn.suijten,
jamipkettunen, Konrad Dybcio, Andy Gross, Bjorn Andersson,
Michael Turquette, Rob Herring, linux-arm-msm, linux-clk,
devicetree, linux-kernel
Quoting Konrad Dybcio (2021-08-05 15:24:00)
> Add support for RPM-managed clocks on the MDM9607 platform.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> ---
Applied to clk-next
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-08-06 1:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05 22:23 [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Konrad Dybcio
2021-08-05 22:24 ` [PATCH 2/2] clk: qcom: smd-rpm: Add mdm9607 clocks Konrad Dybcio
2021-08-06 1:48 ` Stephen Boyd
2021-08-06 1:50 ` Stephen Boyd
2021-08-06 1:48 ` [PATCH 1/2] dt-bindings: clock: qcom: rpmcc: Document MDM9607 compatible Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).