linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3 0/9] Add minimal boot support for IPQ5018
@ 2023-04-14 10:29 Sricharan Ramabadhran
  2023-04-14 10:29 ` [PATCH V3 1/9] dt-bindings: arm64: Add IPQ5018 clock and reset Sricharan Ramabadhran
                   ` (9 more replies)
  0 siblings, 10 replies; 29+ messages in thread
From: Sricharan Ramabadhran @ 2023-04-14 10:29 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.

[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 (9):
  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
  dt-bindings: mmc: sdhci-msm: Document the IPQ5018 compatible
  arm64: dts: Add ipq5018 SoC and rdp432-c2 board support
  arm64: defconfig: Enable IPQ5018 SoC base configs

 Documentation/devicetree/bindings/arm/qcom.yaml    |    7 +
 .../bindings/clock/qcom,ipq5018-gcc.yaml           |   63 +
 .../devicetree/bindings/firmware/qcom,scm.yaml     |    1 +
 .../devicetree/bindings/mmc/sdhci-msm.yaml         |    1 +
 .../bindings/pinctrl/qcom,ipq5018-tlmm.yaml        |  129 +
 arch/arm64/boot/dts/qcom/Makefile                  |    1 +
 arch/arm64/boot/dts/qcom/ipq5018-rdp432-c2.dts     |   72 +
 arch/arm64/boot/dts/qcom/ipq5018.dtsi              |  248 ++
 arch/arm64/configs/defconfig                       |    3 +
 drivers/clk/qcom/Kconfig                           |    7 +
 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 +
 17 files changed, 5371 insertions(+)
 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.7.4


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

end of thread, other threads:[~2023-04-17 14:55 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-14 10:29 [PATCH V3 0/9] Add minimal boot support for IPQ5018 Sricharan Ramabadhran
2023-04-14 10:29 ` [PATCH V3 1/9] dt-bindings: arm64: Add IPQ5018 clock and reset Sricharan Ramabadhran
2023-04-16  9:01   ` Krzysztof Kozlowski
2023-04-14 10:29 ` [PATCH V3 2/9] clk: qcom: Add Global Clock controller (GCC) driver for IPQ5018 Sricharan Ramabadhran
2023-04-14 11:29   ` Konrad Dybcio
2023-04-14 12:18     ` Sricharan Ramabadhran
2023-04-14 10:29 ` [PATCH V3 3/9] dt-bindings: pinctrl: qcom: Add support for ipq5018 Sricharan Ramabadhran
2023-04-14 12:37   ` Rob Herring
2023-04-16  9:05   ` Krzysztof Kozlowski
2023-04-17  6:13     ` Sricharan Ramabadhran
2023-04-17  6:22       ` Krzysztof Kozlowski
2023-04-14 10:29 ` [PATCH V3 4/9] pinctrl: qcom: Add IPQ5018 pinctrl driver Sricharan Ramabadhran
2023-04-14 10:29 ` [PATCH V3 5/9] dt-bindings: qcom: Add ipq5018 bindings Sricharan Ramabadhran
2023-04-16  9:05   ` Krzysztof Kozlowski
2023-04-17  6:13     ` Sricharan Ramabadhran
2023-04-16  9:12   ` Krzysztof Kozlowski
2023-04-14 10:29 ` [PATCH V3 6/9] dt-bindings: firmware: document IPQ5018 SCM Sricharan Ramabadhran
2023-04-16  9:06   ` Krzysztof Kozlowski
2023-04-17  6:14     ` Sricharan Ramabadhran
2023-04-14 10:29 ` [PATCH V3 7/9] dt-bindings: mmc: sdhci-msm: Document the IPQ5018 compatible Sricharan Ramabadhran
2023-04-16  9:08   ` Krzysztof Kozlowski
2023-04-17 14:54   ` Ulf Hansson
2023-04-14 10:29 ` [PATCH V3 8/9] arm64: dts: Add ipq5018 SoC and rdp432-c2 board support Sricharan Ramabadhran
2023-04-14 11:31   ` Konrad Dybcio
2023-04-17  6:02     ` Sricharan Ramabadhran
2023-04-16  9:15   ` Krzysztof Kozlowski
2023-04-14 10:29 ` [PATCH V3 9/9] arm64: defconfig: Enable IPQ5018 SoC base configs Sricharan Ramabadhran
2023-04-16  9:07 ` [PATCH V3 0/9] Add minimal boot support for IPQ5018 Krzysztof Kozlowski
2023-04-17  4:50   ` Sricharan Ramabadhran

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