* Re: [PATCH 00/15] clk: qcom: use parent_hws/_data for APQ8064 clocks
@ 2022-08-03 10:45 Shinjo Park
0 siblings, 0 replies; 4+ messages in thread
From: Shinjo Park @ 2022-08-03 10:45 UTC (permalink / raw)
To: dmitry.baryshkov
Cc: agross, bjorn.andersson, devicetree, krzysztof.kozlowski+dt,
linux-arm-msm, linux-clk, mturquette, quic_tdas, robh+dt, swboyd
Tested-by: Shinjo Park <peremen@gmail.com> # tested on Gasio GzOne w/ MSM8960
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 00/15] clk: qcom: use parent_hws/_data for APQ8064 clocks
@ 2022-06-23 12:04 Dmitry Baryshkov
2022-07-04 20:14 ` David Heidelberg
2022-09-09 10:16 ` Dmitry Baryshkov
0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2022-06-23 12:04 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette,
Rob Herring, Krzysztof Kozlowski, Taniya Das
Cc: linux-arm-msm, linux-clk, devicetree
This series converts the APQ8064/MSM8960 clock drivers, bindings and DTs
to use parent_hws/_data and excplicit clock binding in DT.
Dependencies: [1] (whole series), [2], [3]
[1] https://lore.kernel.org/linux-arm-msm/20220521151437.1489111-1-dmitry.baryshkov@linaro.org/
[2] https://lore.kernel.org/linux-arm-msm/20220617122922.769562-2-dmitry.baryshkov@linaro.org/
[3] https://lore.kernel.org/linux-arm-msm/20220617122922.769562-3-dmitry.baryshkov@linaro.org/
Dmitry Baryshkov (15):
dt-bindings: clocks: qcom,gcc-apq8064: define clocks/-names properties
dt-bindings: clocks: qcom,mmcc: define clocks/clock-names for MSM8960
clk: qcom: gcc-msm8960: use ARRAY_SIZE instead of specifying
num_parents
clk: qcom: gcc-msm8960: use parent_hws/_data instead of parent_names
clk: qcom: lcc-msm8960: use macros to implement mi2s clocks
clk: qcom: lcc-msm8960: use parent_hws/_data instead of parent_names
clk: qcom: mmcc-msm8960: use ARRAY_SIZE instead of specifying
num_parents
clk: qcom: mmcc-msm8960: move clock parent tables down
clk: qcom: mmcc-msm8960: use parent_hws/_data instead of parent_names
ARM: dts: qcom: apq8064: add clocks to the LCC device node
ARM: dts: qcom: msm8960: add clocks to the LCC device node
ARM: dts: qcom: apq8064: add clocks to the GCC device node
ARM: dts: qcom: msm8960: add clocks to the GCC device node
ARM: dts: qcom: apq8064: add clocks to the MMCC device node
ARM: dts: qcom: msm8960: add clocks to the MMCC device node
.../bindings/clock/qcom,gcc-apq8064.yaml | 9 +
.../devicetree/bindings/clock/qcom,mmcc.yaml | 31 ++
arch/arm/boot/dts/qcom-apq8064.dtsi | 35 ++
arch/arm/boot/dts/qcom-msm8960.dtsi | 39 +-
drivers/clk/qcom/gcc-msm8960.c | 436 ++++++++++-------
drivers/clk/qcom/lcc-msm8960.c | 211 +++-----
drivers/clk/qcom/mmcc-msm8960.c | 454 +++++++++++-------
7 files changed, 713 insertions(+), 502 deletions(-)
--
2.35.1
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 00/15] clk: qcom: use parent_hws/_data for APQ8064 clocks
2022-06-23 12:04 Dmitry Baryshkov
@ 2022-07-04 20:14 ` David Heidelberg
2022-09-09 10:16 ` Dmitry Baryshkov
1 sibling, 0 replies; 4+ messages in thread
From: David Heidelberg @ 2022-07-04 20:14 UTC (permalink / raw)
To: dmitry.baryshkov
Cc: agross, bjorn.andersson, devicetree, krzysztof.kozlowski+dt,
linux-arm-msm, linux-clk, mturquette, quic_tdas, robh+dt, swboyd
Tested-by: David Heidelberg <david@ixit.cz> # tested on Nexus 7 (2013)
--
David Heidelberg
Consultant Software Engineer
Matrix: @okias:matrix.org
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 00/15] clk: qcom: use parent_hws/_data for APQ8064 clocks
2022-06-23 12:04 Dmitry Baryshkov
2022-07-04 20:14 ` David Heidelberg
@ 2022-09-09 10:16 ` Dmitry Baryshkov
1 sibling, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2022-09-09 10:16 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette,
Rob Herring, Krzysztof Kozlowski, Taniya Das
Cc: linux-arm-msm, linux-clk, devicetree
On 23/06/2022 15:04, Dmitry Baryshkov wrote:
> This series converts the APQ8064/MSM8960 clock drivers, bindings and DTs
> to use parent_hws/_data and excplicit clock binding in DT.
>
> Dependencies: [1] (whole series), [2], [3]
>
> [1] https://lore.kernel.org/linux-arm-msm/20220521151437.1489111-1-dmitry.baryshkov@linaro.org/
> [2] https://lore.kernel.org/linux-arm-msm/20220617122922.769562-2-dmitry.baryshkov@linaro.org/
> [3] https://lore.kernel.org/linux-arm-msm/20220617122922.769562-3-dmitry.baryshkov@linaro.org/
>
Bjorn, Gracious ping for this patchset
> Dmitry Baryshkov (15):
> dt-bindings: clocks: qcom,gcc-apq8064: define clocks/-names properties
> dt-bindings: clocks: qcom,mmcc: define clocks/clock-names for MSM8960
> clk: qcom: gcc-msm8960: use ARRAY_SIZE instead of specifying
> num_parents
> clk: qcom: gcc-msm8960: use parent_hws/_data instead of parent_names
> clk: qcom: lcc-msm8960: use macros to implement mi2s clocks
> clk: qcom: lcc-msm8960: use parent_hws/_data instead of parent_names
> clk: qcom: mmcc-msm8960: use ARRAY_SIZE instead of specifying
> num_parents
> clk: qcom: mmcc-msm8960: move clock parent tables down
> clk: qcom: mmcc-msm8960: use parent_hws/_data instead of parent_names
> ARM: dts: qcom: apq8064: add clocks to the LCC device node
> ARM: dts: qcom: msm8960: add clocks to the LCC device node
> ARM: dts: qcom: apq8064: add clocks to the GCC device node
> ARM: dts: qcom: msm8960: add clocks to the GCC device node
> ARM: dts: qcom: apq8064: add clocks to the MMCC device node
> ARM: dts: qcom: msm8960: add clocks to the MMCC device node
>
> .../bindings/clock/qcom,gcc-apq8064.yaml | 9 +
> .../devicetree/bindings/clock/qcom,mmcc.yaml | 31 ++
> arch/arm/boot/dts/qcom-apq8064.dtsi | 35 ++
> arch/arm/boot/dts/qcom-msm8960.dtsi | 39 +-
> drivers/clk/qcom/gcc-msm8960.c | 436 ++++++++++-------
> drivers/clk/qcom/lcc-msm8960.c | 211 +++-----
> drivers/clk/qcom/mmcc-msm8960.c | 454 +++++++++++-------
> 7 files changed, 713 insertions(+), 502 deletions(-)
>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-09-09 10:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-03 10:45 [PATCH 00/15] clk: qcom: use parent_hws/_data for APQ8064 clocks Shinjo Park
-- strict thread matches above, loose matches on Subject: below --
2022-06-23 12:04 Dmitry Baryshkov
2022-07-04 20:14 ` David Heidelberg
2022-09-09 10:16 ` Dmitry Baryshkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox