devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] Add support for videocc, camcc, dispcc and gpucc on Qualcomm QCS615 platform
@ 2024-10-18 19:15 Taniya Das
  2024-10-18 19:15 ` [PATCH 01/11] clk: qcom: Update the support for alpha mode configuration Taniya Das
                   ` (10 more replies)
  0 siblings, 11 replies; 38+ messages in thread
From: Taniya Das @ 2024-10-18 19:15 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Abhishek Sahu,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Catalin Marinas,
	Will Deacon
  Cc: Ajit Pandey, Imran Shaik, Jagadeesh Kona, Stephen Boyd,
	linux-arm-msm, linux-clk, linux-kernel, devicetree,
	linux-arm-kernel, Taniya Das

Add support for multimedia clock controllers on Qualcomm QCS615 platform.
Update the defconfig to enable these clock controllers.

Global clock controller support
https://lore.kernel.org/all/20240920-qcs615-clock-driver-v2-0-2f6de44eb2aa@quicinc.com/

Signed-off-by: Taniya Das <quic_tdas@quicinc.com>
---
Taniya Das (11):
      clk: qcom: Update the support for alpha mode configuration
      clk: qcom: clk-alpha-pll: Add support for dynamic update for slewing PLLs
      dt-bindings: clock: Add Qualcomm QCS615 Camera clock controller
      clk: qcom: camcc-qcs615: Add QCS615 camera clock controller driver
      dt-bindings: clock: Add Qualcomm QCS615 Display clock controller
      clk: qcom: dispcc-qcs615: Add QCS615 display clock controller driver
      dt-bindings: clock: Add Qualcomm QCS615 Graphics clock controller
      clk: qcom: gpucc-qcs615: Add QCS615 graphics clock controller driver
      dt-bindings: clock: Add Qualcomm QCS615 Video clock controller
      clk: qcom: videocc-qcs615: Add QCS615 video clock controller driver
      arm64: defconfig: Enable QCS615 clock controllers

 .../bindings/clock/qcom,qcs615-camcc.yaml          |   60 +
 .../bindings/clock/qcom,qcs615-dispcc.yaml         |   73 +
 .../bindings/clock/qcom,qcs615-gpucc.yaml          |   66 +
 .../bindings/clock/qcom,qcs615-videocc.yaml        |   64 +
 arch/arm64/configs/defconfig                       |    4 +
 drivers/clk/qcom/Kconfig                           |   35 +
 drivers/clk/qcom/Makefile                          |    4 +
 drivers/clk/qcom/camcc-qcs615.c                    | 1588 ++++++++++++++++++++
 drivers/clk/qcom/clk-alpha-pll.c                   |  174 +++
 drivers/clk/qcom/clk-alpha-pll.h                   |    1 +
 drivers/clk/qcom/dispcc-qcs615.c                   |  786 ++++++++++
 drivers/clk/qcom/gpucc-qcs615.c                    |  525 +++++++
 drivers/clk/qcom/videocc-qcs615.c                  |  332 ++++
 include/dt-bindings/clock/qcom,qcs615-camcc.h      |  110 ++
 include/dt-bindings/clock/qcom,qcs615-dispcc.h     |   52 +
 include/dt-bindings/clock/qcom,qcs615-gpucc.h      |   39 +
 include/dt-bindings/clock/qcom,qcs615-videocc.h    |   30 +
 17 files changed, 3943 insertions(+)
---
base-commit: 15e7d45e786a62a211dd0098fee7c57f84f8c681
change-id: 20241016-qcs615-mm-clockcontroller-cff9aea7a006

Best regards,
-- 
Taniya Das <quic_tdas@quicinc.com>


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

end of thread, other threads:[~2024-11-01  7:51 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-18 19:15 [PATCH 00/11] Add support for videocc, camcc, dispcc and gpucc on Qualcomm QCS615 platform Taniya Das
2024-10-18 19:15 ` [PATCH 01/11] clk: qcom: Update the support for alpha mode configuration Taniya Das
2024-10-18 20:06   ` Dmitry Baryshkov
2024-10-21 19:50   ` Gabor Juhos
2024-10-18 19:15 ` [PATCH 02/11] clk: qcom: clk-alpha-pll: Add support for dynamic update for slewing PLLs Taniya Das
2024-10-18 20:20   ` Christophe JAILLET
2024-10-30 17:52     ` Taniya Das
2024-10-18 19:15 ` [PATCH 03/11] dt-bindings: clock: Add Qualcomm QCS615 Camera clock controller Taniya Das
2024-10-22  6:01   ` Krzysztof Kozlowski
2024-10-30 17:53     ` Taniya Das
2024-10-18 19:15 ` [PATCH 04/11] clk: qcom: camcc-qcs615: Add QCS615 camera clock controller driver Taniya Das
2024-10-18 20:19   ` Dmitry Baryshkov
2024-10-30 17:54     ` Taniya Das
2024-10-18 20:22   ` Dmitry Baryshkov
2024-10-19  0:38     ` Bryan O'Donoghue
2024-10-30 17:56     ` Taniya Das
2024-10-18 19:15 ` [PATCH 05/11] dt-bindings: clock: Add Qualcomm QCS615 Display clock controller Taniya Das
2024-10-18 20:33   ` Rob Herring (Arm)
2024-10-18 19:15 ` [PATCH 06/11] clk: qcom: dispcc-qcs615: Add QCS615 display clock controller driver Taniya Das
2024-10-18 20:25   ` Dmitry Baryshkov
2024-10-30 17:58     ` Taniya Das
2024-10-31 15:12       ` Dmitry Baryshkov
2024-10-18 19:15 ` [PATCH 07/11] dt-bindings: clock: Add Qualcomm QCS615 Graphics clock controller Taniya Das
2024-10-18 20:33   ` Rob Herring (Arm)
2024-10-18 19:15 ` [PATCH 08/11] clk: qcom: gpucc-qcs615: Add QCS615 graphics clock controller driver Taniya Das
2024-10-18 20:28   ` Dmitry Baryshkov
2024-10-30 18:03     ` Taniya Das
2024-10-31 15:14       ` Dmitry Baryshkov
2024-11-01  7:15         ` Taniya Das
2024-11-01  7:51           ` Dmitry Baryshkov
2024-10-18 19:15 ` [PATCH 09/11] dt-bindings: clock: Add Qualcomm QCS615 Video clock controller Taniya Das
2024-10-18 20:33   ` Rob Herring (Arm)
2024-10-18 19:15 ` [PATCH 10/11] clk: qcom: videocc-qcs615: Add QCS615 video clock controller driver Taniya Das
2024-10-18 20:31   ` Dmitry Baryshkov
2024-10-30 18:04     ` Taniya Das
2024-10-18 19:15 ` [PATCH 11/11] arm64: defconfig: Enable QCS615 clock controllers Taniya Das
2024-10-18 20:32   ` Dmitry Baryshkov
2024-10-30 18:05     ` Taniya Das

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