linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 0/9] Add minimal boot support for IPQ5424
@ 2024-09-27  6:52 Sricharan R
  2024-09-27  6:52 ` [PATCH V2 1/9] clk: qcom: clk-alpha-pll: Add NSS HUAYRA ALPHA PLL support for ipq9574 Sricharan R
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Sricharan R @ 2024-09-27  6:52 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.

Picked up patch [1] from previous post, this is a dependency for this
series.

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

[v2]
   Fixed all review comments from Dmitry Baryshkov, Krzysztof Kozlowski,
   Varadarajan Narayanan.
   Added Rob Herring acked-by for patch #3.
   Added Krzysztof Kozlowski reviewed-by and acked-by for patch #2,
   and patch #6 respectively.
   Added detailed description about change in respective patch.

Devi Priya (1):
  clk: qcom: clk-alpha-pll: Add NSS HUAYRA ALPHA PLL support for ipq9574

Sricharan Ramabadhran (8):
  dt-bindings: clock: Add Qualcomm IPQ5424 GCC binding
  dt-bindings: pinctrl: qcom: add IPQ5424 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,ipq5332-gcc.yaml      |   37 +-
 .../devicetree/bindings/mmc/sdhci-msm.yaml    |    1 +
 .../bindings/pinctrl/qcom,ipq5424-tlmm.yaml   |  114 +
 arch/arm64/boot/dts/qcom/Makefile             |    1 +
 arch/arm64/boot/dts/qcom/ipq5424-rdp466.dts   |   59 +
 arch/arm64/boot/dts/qcom/ipq5424.dtsi         |  291 ++
 arch/arm64/configs/defconfig                  |    2 +
 drivers/clk/qcom/Kconfig                      |    7 +
 drivers/clk/qcom/Makefile                     |    1 +
 drivers/clk/qcom/clk-alpha-pll.c              |   11 +
 drivers/clk/qcom/clk-alpha-pll.h              |    1 +
 drivers/clk/qcom/gcc-ipq5424.c                | 3309 +++++++++++++++++
 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 ++
 18 files changed, 5105 insertions(+), 3 deletions(-)
 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] 16+ messages in thread

end of thread, other threads:[~2024-10-01 12:27 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-27  6:52 [PATCH V2 0/9] Add minimal boot support for IPQ5424 Sricharan R
2024-09-27  6:52 ` [PATCH V2 1/9] clk: qcom: clk-alpha-pll: Add NSS HUAYRA ALPHA PLL support for ipq9574 Sricharan R
2024-09-27  6:52 ` [PATCH V2 2/9] dt-bindings: clock: Add Qualcomm IPQ5424 GCC binding Sricharan R
2024-09-27  8:43   ` Krzysztof Kozlowski
2024-09-27 13:02     ` Sricharan Ramabadhran
2024-09-27  6:52 ` [PATCH V2 3/9] dt-bindings: pinctrl: qcom: add IPQ5424 pinctrl Sricharan R
2024-10-01 12:18   ` Linus Walleij
2024-09-27  6:52 ` [PATCH V2 4/9] dt-bindings: mmc: sdhci-msm: add IPQ5424 compatible Sricharan R
2024-09-27  6:52 ` [PATCH V2 5/9] pinctrl: qcom: Introduce IPQ5424 TLMM driver Sricharan R
2024-10-01 12:19   ` Linus Walleij
2024-09-27  6:52 ` [PATCH V2 6/9] clk: qcom: add Global Clock controller (GCC) driver for IPQ5424 SoC Sricharan R
2024-09-27  9:02   ` Dmitry Baryshkov
2024-09-27 13:03     ` Sricharan Ramabadhran
2024-09-27  6:52 ` [PATCH V2 7/9] dt-bindings: qcom: Add ipq5424 boards Sricharan R
2024-09-27  6:52 ` [PATCH V2 8/9] arm64: dts: qcom: add IPQ5424 SoC and rdp466 board support Sricharan R
2024-09-27  6:52 ` [PATCH V2 9/9] arm64: defconfig: Enable IPQ5424 RDP466 base configs Sricharan R

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