linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/8] Initial support of MSM8937 and Xiaomi Redmi 3S
@ 2025-02-24  1:56 Barnabás Czémán
  2025-02-24  1:56 ` [PATCH v3 1/8] dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller Barnabás Czémán
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Barnabás Czémán @ 2025-02-24  1:56 UTC (permalink / raw)
  To: Bjorn Andersson, Michael Turquette, Stephen Boyd, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Stephan Gerhold,
	Otto Pflüger, Linus Walleij, Lee Jones, Srinivas Kandagatla,
	Joerg Roedel, Will Deacon, Robin Murphy, Konrad Dybcio, Rob Clark,
	Sean Paul, Abhinav Kumar, Dmitry Baryshkov, Marijn Suijten,
	David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann
  Cc: linux-arm-msm, linux-clk, devicetree, linux-kernel, linux-gpio,
	iommu, dri-devel, freedreno, Barnabás Czémán,
	Daniil Titov, Dang Huynh, Krzysztof Kozlowski, Adam Skladowski

This patch series add initial support for MSM8937 SoC
and Xiaomi Redmi 3S (land).

The series is extending the MSM8917 gcc and pinctrl drivers
because they are sibling SoCs.
MSM8937 have 4 more A53 cores and have one more dsi port then
MSM8917.
It implements little-big architecture and uses Adreno 505.

Signed-off-by: Barnabás Czémán <barnabas.czeman@mainlining.org>
---
Changes in v3:
- Fix qcom,gcc-msm8937 dtbinding example 
- Link to v2: https://lore.kernel.org/r/20250223-msm8937-v2-0-b99722363ed3@mainlining.org

Changes in v2:
- drop applied patches
- drop gcc schema commits infavor of a new schema for gcc-msm8937
- document always on clock for adreno 505/506/510
- msm8937:
  - set cache size
  - rename cpu labels
  - fix style issues addressed by review
- msm8937-xiaom-land:
  - remove unused serial0 alias
  - remove regulator-always-on from pm8937_l6
  - add blue indicator led for aw2013
- Link to v1: https://lore.kernel.org/r/20250211-msm8937-v1-0-7d27ed67f708@mainlining.org

---
Adam Skladowski (1):
      dt-bindings: drm/msm/gpu: Document AON clock for A505/A506/A510

Barnabás Czémán (4):
      dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller
      dt-bindings: iommu: qcom,iommu: Add MSM8937 IOMMU to SMMUv1 compatibles
      dt-bindings: arm: qcom: Add Xiaomi Redmi 3S
      arm64: dts: qcom: Add Xiaomi Redmi 3S

Dang Huynh (2):
      pinctrl: qcom: msm8917: Add MSM8937 wsa_reset pin
      arm64: dts: qcom: Add initial support for MSM8937

Daniil Titov (1):
      clk: qcom: gcc: Add support for Global Clock controller found on MSM8937

 Documentation/devicetree/bindings/arm/qcom.yaml    |    7 +
 .../bindings/clock/qcom,gcc-msm8937.yaml           |   73 +
 .../devicetree/bindings/display/msm/gpu.yaml       |    6 +-
 .../devicetree/bindings/iommu/qcom,iommu.yaml      |    1 +
 arch/arm64/boot/dts/qcom/Makefile                  |    1 +
 arch/arm64/boot/dts/qcom/msm8937-xiaomi-land.dts   |  408 ++++
 arch/arm64/boot/dts/qcom/msm8937.dtsi              | 2149 ++++++++++++++++++++
 drivers/clk/qcom/Kconfig                           |    6 +-
 drivers/clk/qcom/gcc-msm8917.c                     |  617 +++++-
 drivers/pinctrl/qcom/Kconfig.msm                   |    4 +-
 drivers/pinctrl/qcom/pinctrl-msm8917.c             |    8 +-
 include/dt-bindings/clock/qcom,gcc-msm8917.h       |   17 +
 12 files changed, 3285 insertions(+), 12 deletions(-)
---
base-commit: d4b0fd87ff0d4338b259dc79b2b3c6f7e70e8afa
change-id: 20250210-msm8937-228ef0dc3ec9

Best regards,
-- 
Barnabás Czémán <barnabas.czeman@mainlining.org>


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

end of thread, other threads:[~2025-03-01  7:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-24  1:56 [PATCH v3 0/8] Initial support of MSM8937 and Xiaomi Redmi 3S Barnabás Czémán
2025-02-24  1:56 ` [PATCH v3 1/8] dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller Barnabás Czémán
2025-02-24  3:45   ` Rob Herring (Arm)
2025-02-24  1:56 ` [PATCH v3 2/8] clk: qcom: gcc: Add support for Global Clock controller found on MSM8937 Barnabás Czémán
2025-02-24  1:56 ` [PATCH v3 3/8] pinctrl: qcom: msm8917: Add MSM8937 wsa_reset pin Barnabás Czémán
2025-02-24  1:56 ` [PATCH v3 4/8] dt-bindings: iommu: qcom,iommu: Add MSM8937 IOMMU to SMMUv1 compatibles Barnabás Czémán
2025-02-24  3:45   ` Rob Herring (Arm)
2025-02-24  1:56 ` [PATCH v3 5/8] dt-bindings: drm/msm/gpu: Document AON clock for A505/A506/A510 Barnabás Czémán
2025-02-24  3:45   ` Rob Herring (Arm)
2025-02-24  1:56 ` [PATCH v3 6/8] arm64: dts: qcom: Add initial support for MSM8937 Barnabás Czémán
2025-02-24  1:56 ` [PATCH v3 7/8] dt-bindings: arm: qcom: Add Xiaomi Redmi 3S Barnabás Czémán
2025-02-24  3:45   ` Rob Herring (Arm)
2025-02-24  1:56 ` [PATCH v3 8/8] arm64: dts: " Barnabás Czémán
2025-03-01  7:46 ` [PATCH v3 0/8] Initial support of MSM8937 and " Will Deacon

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