All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] Add minimal boot support for IPQ5332
@ 2023-01-25 10:45 ` Kathiravan Thirumoorthy
  0 siblings, 0 replies; 67+ messages in thread
From: Kathiravan Thirumoorthy @ 2023-01-25 10:45 UTC (permalink / raw)
  To: agross, andersson, konrad.dybcio, robh+dt,
	krzysztof.kozlowski+dt, mturquette, sboyd, ulf.hansson,
	linus.walleij, catalin.marinas, will, shawnguo, arnd,
	marcel.ziswiler, dmitry.baryshkov, nfraprado, broonie, robimarko,
	quic_gurus, bhupesh.sharma, linux-arm-msm, devicetree,
	linux-kernel, linux-clk, linux-mmc, linux-gpio, linux-arm-kernel
  Cc: Kathiravan T

From: Kathiravan T <quic_kathirav@quicinc.com>

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

This series adds minimal board boot support for ipq5332-mi01.2 board.

Also, this series depends on the below patch
https://lore.kernel.org/linux-arm-msm/20230120082631.22053-1-quic_kathirav@quicinc.com/

Kathiravan T (10):
  dt-bindings: pinctrl: qcom: add IPQ5332 pinctrl
  pinctrl: qcom: Introduce IPQ5332 TLMM driver
  clk: qcom: Add STROMER PLUS PLL type for IPQ5332
  dt-bindings: clock: Add Qualcomm IPQ5332 GCC
  clk: qcom: add Global Clock controller (GCC) driver for IPQ5332 SoC
  dt-bindings: qcom: add ipq5332 boards
  dt-bindings: firmware: document IPQ5332 SCM
  dt-bindings: mmc: sdhci-msm: add IPQ5332 compatible
  arm64: dts: qcom: add IPQ5332 SoC and MI01.2 board support
  arm64: defconfig: Enable IPQ5332 SoC base configs

 .../devicetree/bindings/arm/qcom.yaml         |    7 +
 .../bindings/clock/qcom,ipq5332-gcc.yaml      |   55 +
 .../bindings/firmware/qcom,scm.yaml           |    1 +
 .../devicetree/bindings/mmc/sdhci-msm.yaml    |    1 +
 .../pinctrl/qcom,ipq5332-pinctrl.yaml         |  134 +
 arch/arm64/boot/dts/qcom/Makefile             |    1 +
 arch/arm64/boot/dts/qcom/ipq5332-mi01.2.dts   |   71 +
 arch/arm64/boot/dts/qcom/ipq5332.dtsi         |  273 ++
 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-ipq5332.c                | 3954 +++++++++++++++++
 drivers/pinctrl/qcom/Kconfig                  |   10 +
 drivers/pinctrl/qcom/Makefile                 |    1 +
 drivers/pinctrl/qcom/pinctrl-ipq5332.c        | 1008 +++++
 include/dt-bindings/clock/qcom,gcc-ipq5332.h  |  359 ++
 18 files changed, 5897 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/qcom,ipq5332-gcc.yaml
 create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,ipq5332-pinctrl.yaml
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5332-mi01.2.dts
 create mode 100644 arch/arm64/boot/dts/qcom/ipq5332.dtsi
 create mode 100644 drivers/clk/qcom/gcc-ipq5332.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq5332.c
 create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq5332.h

-- 
2.34.1


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

end of thread, other threads:[~2023-01-31 19:25 UTC | newest]

Thread overview: 67+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-25 10:45 [PATCH 00/10] Add minimal boot support for IPQ5332 Kathiravan Thirumoorthy
2023-01-25 10:45 ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 01/10] dt-bindings: pinctrl: qcom: add IPQ5332 pinctrl Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:10   ` Krzysztof Kozlowski
2023-01-25 11:10     ` Krzysztof Kozlowski
2023-01-25 15:49     ` Kathiravan Thirumoorthy
2023-01-25 15:49       ` Kathiravan Thirumoorthy
2023-01-25 16:20       ` Krzysztof Kozlowski
2023-01-25 16:20         ` Krzysztof Kozlowski
2023-01-25 16:38         ` Kathiravan Thirumoorthy
2023-01-25 16:38           ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 02/10] pinctrl: qcom: Introduce IPQ5332 TLMM driver Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 03/10] clk: qcom: Add STROMER PLUS PLL type for IPQ5332 Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 20:35   ` Stephen Boyd
2023-01-25 20:35     ` Stephen Boyd
2023-01-25 10:45 ` [PATCH 04/10] dt-bindings: clock: Add Qualcomm IPQ5332 GCC Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:13   ` Krzysztof Kozlowski
2023-01-25 11:13     ` Krzysztof Kozlowski
2023-01-25 15:50     ` Kathiravan Thirumoorthy
2023-01-25 15:50       ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 05/10] clk: qcom: add Global Clock controller (GCC) driver for IPQ5332 SoC Kathiravan Thirumoorthy
2023-01-25 11:14   ` Krzysztof Kozlowski
2023-01-25 11:14     ` Krzysztof Kozlowski
2023-01-25 15:53     ` Kathiravan Thirumoorthy
2023-01-25 15:53       ` Kathiravan Thirumoorthy
2023-01-25 20:54   ` Stephen Boyd
2023-01-25 20:54     ` Stephen Boyd
2023-01-26 16:45     ` Kathiravan Thirumoorthy
2023-01-26 16:45       ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 06/10] dt-bindings: qcom: add ipq5332 boards Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:15   ` Krzysztof Kozlowski
2023-01-25 11:15     ` Krzysztof Kozlowski
2023-01-25 15:55     ` Kathiravan Thirumoorthy
2023-01-25 15:55       ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 07/10] dt-bindings: firmware: document IPQ5332 SCM Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:16   ` Krzysztof Kozlowski
2023-01-25 11:16     ` Krzysztof Kozlowski
2023-01-25 15:55     ` Kathiravan Thirumoorthy
2023-01-25 15:55       ` Kathiravan Thirumoorthy
2023-01-25 10:45 ` [PATCH 08/10] dt-bindings: mmc: sdhci-msm: add IPQ5332 compatible Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:17   ` Krzysztof Kozlowski
2023-01-25 11:17     ` Krzysztof Kozlowski
2023-01-27 10:56   ` Ulf Hansson
2023-01-27 10:56     ` Ulf Hansson
2023-01-25 10:45 ` [PATCH 09/10] arm64: dts: qcom: add IPQ5332 SoC and MI01.2 board support Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy
2023-01-25 11:22   ` Krzysztof Kozlowski
2023-01-25 11:22     ` Krzysztof Kozlowski
2023-01-25 16:05     ` Kathiravan Thirumoorthy
2023-01-25 16:05       ` Kathiravan Thirumoorthy
2023-01-25 21:59   ` Konrad Dybcio
2023-01-25 21:59     ` Konrad Dybcio
2023-01-26 16:50     ` Kathiravan Thirumoorthy
2023-01-26 16:50       ` Kathiravan Thirumoorthy
2023-01-30 11:56       ` Kathiravan Thirumoorthy
2023-01-30 11:56         ` Kathiravan Thirumoorthy
2023-01-31 19:24         ` Krzysztof Kozlowski
2023-01-31 19:24           ` Krzysztof Kozlowski
2023-01-25 10:45 ` [PATCH 10/10] arm64: defconfig: Enable IPQ5332 SoC base configs Kathiravan Thirumoorthy
2023-01-25 10:45   ` Kathiravan Thirumoorthy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.