All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/4] Add U-Boot support for Qualcomm IPQ9650 SoC
@ 2026-07-22 10:46 Badhrinath S via U-Boot
  2026-07-22 10:46 ` [PATCH v4 1/4] clk: qcom: Add initial Clock driver for ipq9650 Badhrinath S via U-Boot
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Badhrinath S via U-Boot @ 2026-07-22 10:46 UTC (permalink / raw)
  To: trini, casey.connolly, neil.armstrong, sumit.garg, peng.fan,
	jh80.chung, lukma, badhrinath.s, michal.simek, luca.weiss, danila,
	adrian, aswin.murugan, david.wronek, u-boot, u-boot-qcom

This patch series adds U-Boot support for the Qualcomm IPQ9650 SoC

This series enables:
- Clock control via GCC
- Pin multiplexing via TLMM
- eMMC boot support via SDHCI
- Serial console via GENI UART

The relevant DT files are available in linux-next [1].

Testing:
- Successfully boots to U-Boot prompt on IPQ9650 RDP488 board
- Serial console functional at 115200 baud
- eMMC detection and read/write operations verified

1 - https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/arch/arm64/boot/dts/qcom/ipq9650.dtsi
    https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/arch/arm64/boot/dts/qcom/ipq9650-rdp488.dts
    https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/include/dt-bindings/clock/qcom,ipq9650-gcc.h
    https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/include/dt-bindings/reset/qcom,ipq9650-gcc.h

Changes in v2:
- Fix SPDX license identifiers to GPL-2.0-only across multiple patches
- Address review comment from Ferass
- Link to v1 https://lore.kernel.org/u-boot/20260605094801.4130128-1-badhrinath.s@oss.qualcomm.com/

Changes in v3:
- Removed the sdhc node from this patch as requested. The SDHC-related changes will be upstreamed
  separately by the kernel team.
- For the defconfigs, the common IPQ settings have been moved to qcom_ipqdefconfig, while
  qcom_ipq9650_mmc_defconfig contains only board-specific options.
- Link to v2 https://lore.kernel.org/u-boot/20260610053655.2825589-1-badhrinath.s@oss.qualcomm.com/

Changes in v4:
- Renamed qcom_ipqdefconfig to qcom_ipq.config
- Removed optional DEBUG_UART configs
- Link to v3 https://lore.kernel.org/u-boot/20260716062318.4121929-1-badhrina@qti.qualcomm.com/

Badhrinath S (4):
  clk: qcom: Add initial Clock driver for ipq9650
  pinctrl: qcom: Add ipq9650 pinctrl driver
  arm: dts: ipq9650: Add override dtsi
  configs: Add defconfig for ipq9650 RDP488

 arch/arm/dts/ipq9650-rdp488-u-boot.dtsi |  15 +
 configs/qcom_ipq.config                 |  37 ++
 configs/qcom_ipq9650_mmc_defconfig      |  17 +
 drivers/clk/qcom/Kconfig                |   8 +
 drivers/clk/qcom/Makefile               |   1 +
 drivers/clk/qcom/clock-ipq9650.c        |  95 ++++++
 drivers/pinctrl/qcom/Kconfig            |   8 +
 drivers/pinctrl/qcom/Makefile           |   1 +
 drivers/pinctrl/qcom/pinctrl-ipq9650.c  | 430 ++++++++++++++++++++++++
 9 files changed, 612 insertions(+)
 create mode 100644 arch/arm/dts/ipq9650-rdp488-u-boot.dtsi
 create mode 100644 configs/qcom_ipq.config
 create mode 100644 configs/qcom_ipq9650_mmc_defconfig
 create mode 100644 drivers/clk/qcom/clock-ipq9650.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq9650.c

-- 
2.34.1


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

end of thread, other threads:[~2026-07-29  9:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-22 10:46 [PATCH v4 0/4] Add U-Boot support for Qualcomm IPQ9650 SoC Badhrinath S via U-Boot
2026-07-22 10:46 ` [PATCH v4 1/4] clk: qcom: Add initial Clock driver for ipq9650 Badhrinath S via U-Boot
2026-07-22 11:38   ` Varadarajan Narayanan via U-Boot
2026-07-29  9:17     ` Badhrinath S via U-Boot
2026-07-22 10:46 ` [PATCH v4 2/4] pinctrl: qcom: Add ipq9650 pinctrl driver Badhrinath S via U-Boot
2026-07-22 11:40   ` Varadarajan Narayanan via U-Boot
2026-07-22 10:46 ` [PATCH v4 3/4] arm: dts: ipq9650: Add override dtsi Badhrinath S via U-Boot
2026-07-22 11:43   ` Varadarajan Narayanan via U-Boot
2026-07-22 10:46 ` [PATCH v4 4/4] configs: Add defconfig for ipq9650 RDP488 Badhrinath S via U-Boot

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.