This series adds dispcc, videocc and camcc support for SM7150. This series also introduces various fixes for sm7150-gcc. David Wronek and Jens Reidel were added as maintainers. These people will be able to test new features at any time or make fixes if necessary. Changes in v3: - Split patch 1 into two patches (patch 1 and patch 2) (Konrad) - Drop CLK_GET_RATE_NOCACHE from dispcc (Konrad) - Fix DisplayPort clocks (based on a series of patches from Dmitry Baryshkov): https://lore.kernel.org/all/20240424-dispcc-dp-clocks-v2-0-b44038f3fa96@xxxxxxxxxx/ - Fix typo in cover-letter-v2 - Link to v2: https://lore.kernel.org/all/20240321202814.59835-1-danila@xxxxxxxxxxx/ Changes in v2: - Drop patch 1 from v1 - Add Rob's R-b tag to patches no. 3, 5 and 7 - Switch disp_cc/dispcc, cam_cc/camcc and video_cc/videocc - Make clk_init_data const for dispcc (For some reason this was missed in the first version) - Add gdsc cxcs for videocc - Fix topology around titan_top power domain for camcc - Drop the CAMCC_ prefix from camcc gdsc names - Add flags for camcc gdscs - Link to v1: https://lore.kernel.org/all/20240220165240.154716-1-danila@xxxxxxxxxxx/ To: Bjorn Andersson <andersson@xxxxxxxxxx> To: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> To: Michael Turquette <mturquette@xxxxxxxxxxxx> To: Stephen Boyd <sboyd@xxxxxxxxxx> To: Rob Herring <robh@xxxxxxxxxx> To: Krzysztof Kozlowski <krzk+dt@xxxxxxxxxx> To: Conor Dooley <conor+dt@xxxxxxxxxx> To: David Wronek <david@xxxxxxxxxxxxxx> To: Jens Reidel <adrian@xxxxxxxxxxxx> Cc: linux-arm-msm@xxxxxxxxxxxxxxx Cc: linux-clk@xxxxxxxxxxxxxxx Cc: devicetree@xxxxxxxxxxxxxxx Cc: linux-kernel@xxxxxxxxxxxxxxx Signed-off-by: Danila Tikhonov <danila@xxxxxxxxxxx> .../bindings/clock/qcom,sm7150-camcc.yaml | 60 + .../bindings/clock/qcom,sm7150-dispcc.yaml | 75 + .../bindings/clock/qcom,sm7150-videocc.yaml | 58 + drivers/clk/qcom/Kconfig | 29 + drivers/clk/qcom/Makefile | 3 + drivers/clk/qcom/camcc-sm7150.c | 2061 +++++++++++++++++ drivers/clk/qcom/dispcc-sm7150.c | 1006 ++++++++ drivers/clk/qcom/gcc-sm7150.c | 392 ++-- drivers/clk/qcom/videocc-sm7150.c | 357 +++ include/dt-bindings/clock/qcom,sm7150-camcc.h | 113 + .../dt-bindings/clock/qcom,sm7150-dispcc.h | 59 + .../dt-bindings/clock/qcom,sm7150-videocc.h | 28 + 12 files changed, 4045 insertions(+), 196 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/qcom,sm7150-camcc.yaml create mode 100644 Documentation/devicetree/bindings/clock/qcom,sm7150-dispcc.yaml create mode 100644 Documentation/devicetree/bindings/clock/qcom,sm7150-videocc.yaml create mode 100644 drivers/clk/qcom/camcc-sm7150.c create mode 100644 drivers/clk/qcom/dispcc-sm7150.c create mode 100644 drivers/clk/qcom/videocc-sm7150.c create mode 100644 include/dt-bindings/clock/qcom,sm7150-camcc.h create mode 100644 include/dt-bindings/clock/qcom,sm7150-dispcc.h create mode 100644 include/dt-bindings/clock/qcom,sm7150-videocc.h -- 2.44.0