devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/11] Add clock drivers for Milos (SM7635)
@ 2025-07-04  7:16 Luca Weiss
  2025-07-04  7:16 ` [PATCH v2 01/11] clk: qcom: common: Add support to register rcg dfs in qcom_cc_really_probe Luca Weiss
                   ` (10 more replies)
  0 siblings, 11 replies; 27+ messages in thread
From: Luca Weiss @ 2025-07-04  7:16 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Konrad Dybcio
  Cc: ~postmarketos/upstreaming, phone-devel, linux-arm-msm, linux-clk,
	devicetree, linux-kernel, Luca Weiss

Document and add the clock drivers for GCC, CAMCC, DISPCC, GPUCC and
VIDEOCC on the Milos SoC (e.g. SM7635).

Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
---
Changes in v2:
- Rebrand SM7635 to Milos as requested: https://lore.kernel.org/linux-arm-msm/aGMI1Zv6D+K+vWZL@hu-bjorande-lv.qualcomm.com/
- Use new qcom_cc_driver_data to configure e.g. always-on clks instead
  of in probe function, plus some other related bits from the probe
  function
- Add patch to support registering rcg dfs in qcom_cc_really_probe
- Link to v1: https://lore.kernel.org/r/20250625-sm7635-clocks-v1-0-ca3120e3a80e@fairphone.com

---
Luca Weiss (11):
      clk: qcom: common: Add support to register rcg dfs in qcom_cc_really_probe
      dt-bindings: clock: qcom: document the Milos Global Clock Controller
      clk: qcom: Add Global Clock controller (GCC) driver for Milos
      dt-bindings: clock: qcom: document the Milos Camera Clock Controller
      clk: qcom: Add Camera Clock controller (CAMCC) driver for Milos
      dt-bindings: clock: qcom: document the Milos Display Clock Controller
      clk: qcom: Add Display Clock controller (DISPCC) driver for Milos
      dt-bindings: clock: qcom: document the Milos GPU Clock Controller
      clk: qcom: Add Graphics Clock controller (GPUCC) driver for Milos
      dt-bindings: clock: qcom: document the Milos Video Clock Controller
      clk: qcom: Add Video Clock controller (VIDEOCC) driver for Milos

 .../bindings/clock/qcom,milos-camcc.yaml           |   51 +
 .../bindings/clock/qcom,milos-dispcc.yaml          |   63 +
 .../devicetree/bindings/clock/qcom,milos-gcc.yaml  |   62 +
 .../bindings/clock/qcom,milos-videocc.yaml         |   53 +
 .../bindings/clock/qcom,sm8450-gpucc.yaml          |    2 +
 drivers/clk/qcom/Kconfig                           |   47 +
 drivers/clk/qcom/Makefile                          |    5 +
 drivers/clk/qcom/camcc-milos.c                     | 2161 +++++++++++++
 drivers/clk/qcom/common.c                          |    8 +
 drivers/clk/qcom/common.h                          |    2 +
 drivers/clk/qcom/dispcc-milos.c                    |  974 ++++++
 drivers/clk/qcom/gcc-milos.c                       | 3225 ++++++++++++++++++++
 drivers/clk/qcom/gpucc-milos.c                     |  562 ++++
 drivers/clk/qcom/videocc-milos.c                   |  403 +++
 include/dt-bindings/clock/qcom,milos-camcc.h       |  131 +
 include/dt-bindings/clock/qcom,milos-dispcc.h      |   61 +
 include/dt-bindings/clock/qcom,milos-gcc.h         |  210 ++
 include/dt-bindings/clock/qcom,milos-gpucc.h       |   56 +
 include/dt-bindings/clock/qcom,milos-videocc.h     |   36 +
 19 files changed, 8112 insertions(+)
---
base-commit: b803ad80123e6efccfeeffa7cd37f98f642e37f4
change-id: 20250620-sm7635-clocks-7699d338dc37

Best regards,
-- 
Luca Weiss <luca.weiss@fairphone.com>


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

end of thread, other threads:[~2025-07-14 12:32 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-04  7:16 [PATCH v2 00/11] Add clock drivers for Milos (SM7635) Luca Weiss
2025-07-04  7:16 ` [PATCH v2 01/11] clk: qcom: common: Add support to register rcg dfs in qcom_cc_really_probe Luca Weiss
2025-07-04 11:06   ` Konrad Dybcio
2025-07-08  5:34   ` Jagadeesh Kona
2025-07-09 11:48     ` Luca Weiss
2025-07-14 11:04       ` Jagadeesh Kona
2025-07-14 12:32         ` Dmitry Baryshkov
2025-07-04  7:16 ` [PATCH v2 02/11] dt-bindings: clock: qcom: document the Milos Global Clock Controller Luca Weiss
2025-07-04 12:28   ` Krzysztof Kozlowski
2025-07-04  7:16 ` [PATCH v2 03/11] clk: qcom: Add Global Clock controller (GCC) driver for Milos Luca Weiss
2025-07-04 11:51   ` Konrad Dybcio
2025-07-04  7:16 ` [PATCH v2 04/11] dt-bindings: clock: qcom: document the Milos Camera Clock Controller Luca Weiss
2025-07-04 12:29   ` Krzysztof Kozlowski
2025-07-04  7:16 ` [PATCH v2 05/11] clk: qcom: Add Camera Clock controller (CAMCC) driver for Milos Luca Weiss
2025-07-04 11:52   ` Konrad Dybcio
2025-07-04  7:16 ` [PATCH v2 06/11] dt-bindings: clock: qcom: document the Milos Display Clock Controller Luca Weiss
2025-07-04 12:29   ` Krzysztof Kozlowski
2025-07-04  7:16 ` [PATCH v2 07/11] clk: qcom: Add Display Clock controller (DISPCC) driver for Milos Luca Weiss
2025-07-04 11:53   ` Konrad Dybcio
2025-07-04  7:17 ` [PATCH v2 08/11] dt-bindings: clock: qcom: document the Milos GPU Clock Controller Luca Weiss
2025-07-04 12:30   ` Krzysztof Kozlowski
2025-07-04  7:17 ` [PATCH v2 09/11] clk: qcom: Add Graphics Clock controller (GPUCC) driver for Milos Luca Weiss
2025-07-04 14:13   ` Dmitry Baryshkov
2025-07-04  7:17 ` [PATCH v2 10/11] dt-bindings: clock: qcom: document the Milos Video Clock Controller Luca Weiss
2025-07-04 12:30   ` Krzysztof Kozlowski
2025-07-04  7:17 ` [PATCH v2 11/11] clk: qcom: Add Video Clock controller (VIDEOCC) driver for Milos Luca Weiss
2025-07-04 11:54   ` Konrad Dybcio

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