devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/6] Add support for Clock controllers for Kaanapali
@ 2025-10-30 11:09 Taniya Das
  2025-10-30 11:09 ` [PATCH v2 1/6] dt-bindings: clock: qcom-rpmhcc: Add RPMHCC " Taniya Das
                   ` (7 more replies)
  0 siblings, 8 replies; 27+ messages in thread
From: Taniya Das @ 2025-10-30 11:09 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, jingyi.wang
  Cc: aiqun.yu, Ajit Pandey, Imran Shaik, Jagadeesh Kona, linux-arm-msm,
	linux-clk, devicetree, linux-kernel, Taniya Das, Dmitry Baryshkov,
	Krzysztof Kozlowski

Add support for Global clock controller(GCC), TCSR and the RPMH clock
controller for the Qualcomm Kaanapali SoC.

Kaanapali(Snapdragon SoC from Qualcomm):
https://www.qualcomm.com/products/mobile/snapdragon/smartphones/snapdragon-8-series-mobile-platforms/snapdragon-8-elite-gen-5

Changes in v2:
  - Update the commit message for all dt-bindings to incorporate
    "SoC/platform" inplace of drivers [Krzysztof]
  - Add RB tag from [Krzysztof] for dt-bindings
  - Split the TCSRCC to a new driver instead of reusing the SM8750
    driver with offset updates [Dmitry]
  - Update the new RPMH clocks to use 'clkN' convention [Dmitry]
  - Add RB tag from [Dmitry] for GCC
  - This series does not have any strict PLL code dependencies [Bjorn], thus
    drop them and will be added in the Multimedia clock controller
    series. Drop the following patches.
	- Update the PLL support for cal_l
	- Add support for controlling Pongo EKO_T PLL
	- Add support for controlling Rivian PLL
  - Link to v1: https://lore.kernel.org/lkml/20250924-knp-clk-v1-0-29b02b818782@oss.qualcomm.com/

Signed-off-by: Taniya Das <taniya.das@oss.qualcomm.com>
---
Taniya Das (6):
      dt-bindings: clock: qcom-rpmhcc: Add RPMHCC for Kaanapali
      dt-bindings: clock: qcom: Document the Kaanapali TCSR Clock Controller
      dt-bindings: clock: qcom: Add Kaanapali Global clock controller
      clk: qcom: rpmh: Add support for Kaanapali rpmh clocks
      clk: qcom: Add TCSR clock driver for Kaanapali
      clk: qcom: Add support for Global clock controller on Kaanapali

 .../devicetree/bindings/clock/qcom,rpmhcc.yaml     |    1 +
 .../bindings/clock/qcom,sm8550-tcsr.yaml           |    1 +
 .../devicetree/bindings/clock/qcom,sm8750-gcc.yaml |    8 +-
 drivers/clk/qcom/Kconfig                           |   17 +
 drivers/clk/qcom/Makefile                          |    2 +
 drivers/clk/qcom/clk-rpmh.c                        |   42 +
 drivers/clk/qcom/gcc-kaanapali.c                   | 3541 ++++++++++++++++++++
 drivers/clk/qcom/tcsrcc-kaanapali.c                |  141 +
 include/dt-bindings/clock/qcom,kaanapali-gcc.h     |  241 ++
 9 files changed, 3992 insertions(+), 2 deletions(-)
---
base-commit: 8fec172c82c2b5f6f8e47ab837c1dc91ee3d1b87
change-id: 20251027-gcc_kaanapali-v2-901def0e1a52

Best regards,
-- 
Taniya Das <taniya.das@oss.qualcomm.com>


^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2025-11-21 17:26 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-30 11:09 [PATCH v2 0/6] Add support for Clock controllers for Kaanapali Taniya Das
2025-10-30 11:09 ` [PATCH v2 1/6] dt-bindings: clock: qcom-rpmhcc: Add RPMHCC " Taniya Das
2025-10-30 11:09 ` [PATCH v2 2/6] dt-bindings: clock: qcom: Document the Kaanapali TCSR Clock Controller Taniya Das
2025-10-30 11:09 ` [PATCH v2 3/6] dt-bindings: clock: qcom: Add Kaanapali Global clock controller Taniya Das
2025-10-30 11:09 ` [PATCH v2 4/6] clk: qcom: rpmh: Add support for Kaanapali rpmh clocks Taniya Das
2025-11-11 10:30   ` Jagadeesh Kona
2025-11-11 10:46   ` Dmitry Baryshkov
2025-11-11 11:44     ` Aiqun(Maria) Yu
2025-11-11 12:16       ` Dmitry Baryshkov
2025-11-12  9:21         ` Konrad Dybcio
2025-11-14  8:43     ` Taniya Das
2025-11-14 11:08       ` Dmitry Baryshkov
2025-11-17  7:58         ` Taniya Das
2025-11-18  4:34           ` Dmitry Baryshkov
2025-11-18  4:48             ` Taniya Das
2025-11-19  8:08               ` Dmitry Baryshkov
2025-10-30 11:09 ` [PATCH v2 5/6] clk: qcom: Add TCSR clock driver for Kaanapali Taniya Das
2025-11-04  3:35   ` Aiqun(Maria) Yu
2025-11-11 10:47   ` Dmitry Baryshkov
2025-11-18  6:44   ` Jingyi Wang
2025-11-21 17:26     ` Taniya Das
2025-10-30 11:09 ` [PATCH v2 6/6] clk: qcom: Add support for Global clock controller on Kaanapali Taniya Das
2025-11-03 13:32   ` Konrad Dybcio
2025-11-11 10:48   ` Dmitry Baryshkov
2025-11-21 17:24     ` Taniya Das
2025-11-04  1:58 ` (subset) [PATCH v2 0/6] Add support for Clock controllers for Kaanapali Bjorn Andersson
2025-11-11 10:44 ` Dmitry Baryshkov

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).