linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/8] Add minimal boot support for IPQ5018
@ 2023-05-10 13:41 Sricharan Ramabadhran
  2023-05-10 13:41 ` [PATCH v4 1/8] dt-bindings: arm64: Add IPQ5018 clock and reset Sricharan Ramabadhran
                   ` (7 more replies)
  0 siblings, 8 replies; 27+ messages in thread
From: Sricharan Ramabadhran @ 2023-05-10 13:41 UTC (permalink / raw)
  To: agross, andersson, konrad.dybcio, robh+dt,
	krzysztof.kozlowski+dt, mturquette, sboyd, ulf.hansson,
	linus.walleij, catalin.marinas, will, p.zabel, linux-arm-msm,
	devicetree, linux-kernel, linux-mmc, linux-gpio,
	linux-arm-kernel, quic_srichara

The IPQ5018 is Qualcomm's 802.11ax SoC for Routers,
Gateways and Access Points.

This series adds minimal board boot support for ipq5018-mp03.1-c2 board.

[v4]
       Fixed all comments for clocks, schema, dts
       Added Reviewed-by tags.

[v3]
	Fixed all comments for clocks, schema fixes
        Picked up Reviewed-by from Bjorn for pinctrl driver

[v2]
	Fixed all comments and rebased for TOT.

Sricharan Ramabadhran (8):
  dt-bindings: arm64: Add IPQ5018 clock and reset
  clk: qcom: Add Global Clock controller (GCC) driver for IPQ5018
  dt-bindings: pinctrl: qcom: Add support for ipq5018
  pinctrl: qcom: Add IPQ5018 pinctrl driver
  dt-bindings: qcom: Add ipq5018 bindings
  dt-bindings: firmware: document IPQ5018 SCM
  arm64: dts: Add ipq5018 SoC and rdp432-c2 board support
  arm64: defconfig: Enable IPQ5018 SoC base configs

 .../devicetree/bindings/arm/qcom.yaml         |    7 +
 .../bindings/clock/qcom,ipq5018-gcc.yaml      |   63 +
 .../bindings/firmware/qcom,scm.yaml           |    1 +
 .../bindings/pinctrl/qcom,ipq5018-tlmm.yaml   |  127 +
 arch/arm64/boot/dts/qcom/Makefile             |    1 +
 .../arm64/boot/dts/qcom/ipq5018-rdp432-c2.dts |   72 +
 arch/arm64/boot/dts/qcom/ipq5018.dtsi         |  250 ++
 arch/arm64/configs/defconfig                  |    3 +
 drivers/clk/qcom/Kconfig                      |   10 +-
 drivers/clk/qcom/Makefile                     |    1 +
 drivers/clk/qcom/gcc-ipq5018.c                | 3731 +++++++++++++++++
 drivers/pinctrl/qcom/Kconfig                  |   10 +
 drivers/pinctrl/qcom/Makefile                 |    1 +
 drivers/pinctrl/qcom/pinctrl-ipq5018.c        |  791 ++++
 include/dt-bindings/clock/qcom,gcc-ipq5018.h  |  183 +
 include/dt-bindings/reset/qcom,gcc-ipq5018.h  |  122 +
 16 files changed, 5371 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/qcom,ipq5018-gcc.yaml
 create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,ipq5018-tlmm.yaml
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dts
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5018.dtsi
 create mode 100644 drivers/clk/qcom/gcc-ipq5018.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq5018.c
 create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq5018.h
 create mode 100644 include/dt-bindings/reset/qcom,gcc-ipq5018.h

-- 
2.34.1


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

end of thread, other threads:[~2023-06-14 12:18 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-10 13:41 [PATCH v4 0/8] Add minimal boot support for IPQ5018 Sricharan Ramabadhran
2023-05-10 13:41 ` [PATCH v4 1/8] dt-bindings: arm64: Add IPQ5018 clock and reset Sricharan Ramabadhran
2023-05-10 13:41 ` [PATCH v4 2/8] clk: qcom: Add Global Clock controller (GCC) driver for IPQ5018 Sricharan Ramabadhran
2023-05-11 10:55   ` Robert Marko
2023-05-26 19:17   ` Konrad Dybcio
2023-06-13 13:16     ` Sricharan Ramabadhran
2023-06-13 15:23       ` Konrad Dybcio
2023-06-14 11:00         ` Sricharan Ramabadhran
2023-06-14 12:17           ` Konrad Dybcio
2023-05-10 13:41 ` [PATCH v4 3/8] dt-bindings: pinctrl: qcom: Add support for ipq5018 Sricharan Ramabadhran
2023-05-10 14:26   ` Krzysztof Kozlowski
2023-05-10 13:41 ` [PATCH v4 4/8] pinctrl: qcom: Add IPQ5018 pinctrl driver Sricharan Ramabadhran
2023-05-10 14:24   ` andy.shevchenko
2023-05-11  6:19     ` Sricharan Ramabadhran
2023-05-10 13:41 ` [PATCH v4 5/8] dt-bindings: qcom: Add ipq5018 bindings Sricharan Ramabadhran
2023-05-10 14:27   ` Krzysztof Kozlowski
2023-05-10 13:41 ` [PATCH v4 6/8] dt-bindings: firmware: document IPQ5018 SCM Sricharan Ramabadhran
2023-05-10 14:28   ` Krzysztof Kozlowski
2023-05-11  6:14     ` Sricharan Ramabadhran
2023-05-10 13:41 ` [PATCH v4 7/8] arm64: dts: Add ipq5018 SoC and rdp432-c2 board support Sricharan Ramabadhran
2023-05-10 14:30   ` Krzysztof Kozlowski
2023-05-11 10:24   ` Robert Marko
2023-05-11 10:54     ` Sricharan Ramabadhran
2023-05-11 10:59       ` Robert Marko
2023-05-12  7:42         ` Sricharan Ramabadhran
2023-05-10 13:41 ` [PATCH v4 8/8] arm64: defconfig: Enable IPQ5018 SoC base configs Sricharan Ramabadhran
2023-05-10 14:31   ` Krzysztof Kozlowski

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