linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v8 0/7] Initial support of MSM8937 and Xiaomi Redmi 3S
@ 2025-08-31 12:29 Barnabás Czémán
  2025-08-31 12:29 ` [PATCH v8 1/7] dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller Barnabás Czémán
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Barnabás Czémán @ 2025-08-31 12:29 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, Joerg Roedel,
	Will Deacon, Robin Murphy, Konrad Dybcio, Sean Paul,
	Marijn Suijten, David Airlie, Simona Vetter, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, Dmitry Baryshkov, Rob Clark,
	Abhinav Kumar, Jessica Zhang, Robert Marko, Das Srinagesh,
	Srinivas Kandagatla, Rob Clark, Dmitry Baryshkov
  Cc: linux-arm-msm, linux-clk, devicetree, linux-kernel, linux-gpio,
	iommu, dri-devel, freedreno, phone-devel,
	~postmarketos/upstreaming, linux, Barnabás Czémán,
	Krzysztof Kozlowski, Daniil Titov, Dmitry Baryshkov, Dang Huynh,
	Konrad Dybcio

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 v8:
- msm8937:
  - Fix scm compatible.
  - Fix position of sram@60000 node.
- Document qcom,scm-msm8937 compatible
- Link to v7: https://lore.kernel.org/r/20250831-msm8937-v7-0-232a9fb19ab7@mainlining.org

Changes in v7:
- gpu.yaml: update adreno 505 pattern
- Link to v6: https://lore.kernel.org/r/20250820-msm8937-v6-0-b090b2acb67e@mainlining.org

Changes in v6:
- msm8937:
  - Fix nodes ordering.
  - Format clocks, reg, dmas and -names properties.
  - Add gpu_speedbin.
- Describe A505 clocks.
- Link to v5: https://lore.kernel.org/r/20250421-msm8937-v5-0-bf9879ef14d9@mainlining.org

Changes in v5:
- msm8937:
  - Remove wrongly defined idle-states.
  - Fix thermal zones.
  - Use the header with DSI phy clock IDs.
  - Fix the nodes order.
  - Fix the pinctrls style.
  - Follow gcc header changes.
- msm8937-xiaomi-land:
  - Remove headphone switch and speaker amplifier bindings.
  - Unify status property style.
- gcc bindings:
  - Expand MSM8953 gcc schema with MSM8937.
  - Add MSM8937 prefix for MSM8937 specific clocks.
- gcc:
  - Follow the bindings changes.
- Drop alwayson clock documentation it will be handled in another
  patchset.
- Link to v4: https://lore.kernel.org/r/20250315-msm8937-v4-0-1f132e870a49@mainlining.org

Changes in v4:
- Add missing rpmcc include for qcom,gcc-msm8937 dtbinding exmaple.
- msm8937: add missing space after s9-p1@230
- msm8937-xiaomi-land: replace LED_FUNCTION_INDICATOR to LED_FUNCTION_STATUS
- Remove applied patches
- Link to v3: https://lore.kernel.org/r/20250224-msm8937-v3-0-dad7c182cccb@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

---
Barnabás Czémán (5):
      dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller
      dt-bindings: firmware: qcom,scm: Add MSM8937
      dt-bindings: display/msm/gpu: describe A505 clocks
      dt-bindings: arm: qcom: Add Xiaomi Redmi 3S
      arm64: dts: qcom: Add Xiaomi Redmi 3S

Dang Huynh (1):
      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    |    6 +
 .../bindings/clock/qcom,gcc-msm8953.yaml           |   11 +-
 .../devicetree/bindings/display/msm/gpu.yaml       |    2 +-
 .../devicetree/bindings/firmware/qcom,scm.yaml     |    3 +
 arch/arm64/boot/dts/qcom/Makefile                  |    1 +
 arch/arm64/boot/dts/qcom/msm8937-xiaomi-land.dts   |  381 ++++
 arch/arm64/boot/dts/qcom/msm8937.dtsi              | 2134 ++++++++++++++++++++
 drivers/clk/qcom/Kconfig                           |    6 +-
 drivers/clk/qcom/gcc-msm8917.c                     |  617 +++++-
 include/dt-bindings/clock/qcom,gcc-msm8917.h       |   19 +
 10 files changed, 3169 insertions(+), 11 deletions(-)
---
base-commit: 3cace99d63192a7250461b058279a42d91075d0c
change-id: 20250210-msm8937-228ef0dc3ec9

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


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

end of thread, other threads:[~2025-09-03 10:54 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-31 12:29 [PATCH v8 0/7] Initial support of MSM8937 and Xiaomi Redmi 3S Barnabás Czémán
2025-08-31 12:29 ` [PATCH v8 1/7] dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller Barnabás Czémán
2025-08-31 12:29 ` [PATCH v8 2/7] clk: qcom: gcc: Add support for Global Clock controller found on MSM8937 Barnabás Czémán
2025-08-31 12:29 ` [PATCH v8 3/7] dt-bindings: firmware: qcom,scm: Add MSM8937 Barnabás Czémán
2025-08-31 17:26   ` Krzysztof Kozlowski
2025-08-31 12:29 ` [PATCH v8 4/7] dt-bindings: display/msm/gpu: describe A505 clocks Barnabás Czémán
2025-08-31 12:29 ` [PATCH v8 5/7] arm64: dts: qcom: Add initial support for MSM8937 Barnabás Czémán
2025-09-02 14:15   ` Dmitry Baryshkov
2025-09-03 10:42   ` Konrad Dybcio
2025-09-03 10:47     ` Barnabás Czémán
2025-09-03 10:54       ` Konrad Dybcio
2025-08-31 12:29 ` [PATCH v8 6/7] dt-bindings: arm: qcom: Add Xiaomi Redmi 3S Barnabás Czémán
2025-08-31 12:29 ` [PATCH v8 7/7] arm64: dts: " Barnabás Czémán

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