devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/8] Add minimal boot support for IPQ5424
@ 2024-09-13 12:12 Sricharan R
  2024-09-13 12:12 ` [PATCH 1/8] dt-bindings: clock: Add Qualcomm IPQ5424 GCC Sricharan R
                   ` (7 more replies)
  0 siblings, 8 replies; 35+ messages in thread
From: Sricharan R @ 2024-09-13 12:12 UTC (permalink / raw)
  To: andersson, konradybcio, robh, krzk+dt, conor+dt, mturquette,
	sboyd, ulf.hansson, linus.walleij, catalin.marinas, p.zabel,
	geert+renesas, dmitry.baryshkov, neil.armstrong, linux-arm-msm,
	devicetree, linux-kernel, linux-clk, linux-mmc, linux-gpio,
	linux-arm-kernel
  Cc: quic_varada, quic_srichara

From: Sricharan Ramabadhran <quic_srichara@quicinc.com>

The IPQ5424 is Qualcomm's 802.11be SoC for Routers, Gateways and
Access Points.

This series adds minimal board boot support for ipq5424-rdp466 board.

Depends upon [1]

[1] https://patchwork.kernel.org/project/linux-clk/patch/20240626143302.810632-2-quic_devipriy@quicinc.com/

Sricharan Ramabadhran (8):
  dt-bindings: clock: Add Qualcomm IPQ5424 GCC
  dt-bindings: pinctrl: qcom: add IPQ5332 pinctrl
  dt-bindings: mmc: sdhci-msm: add IPQ5424 compatible
  pinctrl: qcom: Introduce IPQ5424 TLMM driver
  clk: qcom: add Global Clock controller (GCC) driver for IPQ5424 SoC
  dt-bindings: qcom: Add ipq5424 boards
  arm64: dts: qcom: add IPQ5424 SoC and rdp466 board support
  arm64: defconfig: Enable IPQ5424 SoC base configs

 .../devicetree/bindings/arm/qcom.yaml         |    6 +
 .../bindings/clock/qcom,ipq5424-gcc.yaml      |   58 +
 .../devicetree/bindings/mmc/sdhci-msm.yaml    |    1 +
 .../bindings/pinctrl/qcom,ipq5424-tlmm.yaml   |  115 +
 arch/arm64/boot/dts/qcom/Makefile             |    1 +
 arch/arm64/boot/dts/qcom/ipq5424-rdp466.dts   |   63 +
 arch/arm64/boot/dts/qcom/ipq5424.dtsi         |  294 ++
 arch/arm64/configs/defconfig                  |    2 +
 drivers/clk/qcom/Kconfig                      |    7 +
 drivers/clk/qcom/Makefile                     |    1 +
 drivers/clk/qcom/gcc-ipq5424.c                | 3333 +++++++++++++++++
 drivers/pinctrl/qcom/Kconfig.msm              |    9 +
 drivers/pinctrl/qcom/Makefile                 |    1 +
 drivers/pinctrl/qcom/pinctrl-ipq5424.c        |  792 ++++
 include/dt-bindings/clock/qcom,ipq5424-gcc.h  |  156 +
 include/dt-bindings/reset/qcom,ipq5424-gcc.h  |  310 ++
 16 files changed, 5149 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/qcom,ipq5424-gcc.yaml
 create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,ipq5424-tlmm.yaml
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5424-rdp466.dts
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5424.dtsi
 create mode 100644 drivers/clk/qcom/gcc-ipq5424.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq5424.c
 create mode 100644 include/dt-bindings/clock/qcom,ipq5424-gcc.h
 create mode 100644 include/dt-bindings/reset/qcom,ipq5424-gcc.h

-- 
2.34.1


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

end of thread, other threads:[~2024-09-26  7:14 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 12:12 [PATCH 0/8] Add minimal boot support for IPQ5424 Sricharan R
2024-09-13 12:12 ` [PATCH 1/8] dt-bindings: clock: Add Qualcomm IPQ5424 GCC Sricharan R
2024-09-19 12:26   ` Krzysztof Kozlowski
2024-09-20 11:56     ` Sricharan Ramabadhran
2024-09-20 12:44       ` Krzysztof Kozlowski
2024-09-24 12:10         ` Sricharan Ramabadhran
2024-09-24 18:38           ` Krzysztof Kozlowski
2024-09-25  6:30             ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 2/8] dt-bindings: pinctrl: qcom: add IPQ5332 pinctrl Sricharan R
2024-09-19 12:26   ` Krzysztof Kozlowski
2024-09-20 11:57     ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 3/8] dt-bindings: mmc: sdhci-msm: add IPQ5424 compatible Sricharan R
2024-09-18 15:59   ` Rob Herring (Arm)
2024-09-13 12:12 ` [PATCH 4/8] pinctrl: qcom: Introduce IPQ5424 TLMM driver Sricharan R
2024-09-13 12:39   ` Dmitry Baryshkov
2024-09-15  4:24     ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 5/8] clk: qcom: add Global Clock controller (GCC) driver for IPQ5424 SoC Sricharan R
2024-09-13 12:46   ` Dmitry Baryshkov
2024-09-16  7:50     ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 6/8] dt-bindings: qcom: Add ipq5424 boards Sricharan R
2024-09-19 12:28   ` Krzysztof Kozlowski
2024-09-20 11:58     ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 7/8] arm64: dts: qcom: add IPQ5424 SoC and rdp466 board support Sricharan R
2024-09-13 12:52   ` Dmitry Baryshkov
2024-09-17  6:28     ` Sricharan Ramabadhran
2024-09-17  7:25       ` Dmitry Baryshkov
2024-09-19 12:31     ` Krzysztof Kozlowski
2024-09-20 11:59       ` Sricharan Ramabadhran
2024-09-19 12:30   ` Krzysztof Kozlowski
2024-09-23  9:27     ` Sricharan Ramabadhran
2024-09-13 12:12 ` [PATCH 8/8] arm64: defconfig: Enable IPQ5424 SoC base configs Sricharan R
2024-09-13 12:53   ` Dmitry Baryshkov
2024-09-25 19:04     ` Sricharan Ramabadhran
2024-09-25 21:31       ` Dmitry Baryshkov
2024-09-26  7:14         ` 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).