U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND v2 0/6] Enable fastboot support for IPQ9574 based boards
@ 2025-12-18  6:15 Varadarajan Narayanan
  2025-12-18  6:15 ` [RESEND v2 1/6] clk/qcom: Add USB related clocks for IPQ9574 Varadarajan Narayanan
                   ` (5 more replies)
  0 siblings, 6 replies; 19+ messages in thread
From: Varadarajan Narayanan @ 2025-12-18  6:15 UTC (permalink / raw)
  To: trini, casey.connolly, neil.armstrong, sumit.garg, peng.fan,
	jh80.chung, lukma, varadarajan.narayanan, marek.vasut+renesas,
	michal.simek, alexeymin, u-boot, u-boot-qcom

This series enables MMC based fastboot flashing for IPQ9574 boards.
For this the following are added/enabled
	* USB2 & USB3 phys support
	* USB Gadget support, Fastboot-MMC related configs
	* Flashing related documentation

v2: Resend of https://lore.kernel.org/u-boot/20250715101538.4072985-1-quic_varada@quicinc.com/#t
    Rebased to latest top of tree
    Updated author and Signed-off-by email id from quicinc.com to oss.qualcomm.com

Varadarajan Narayanan (6):
  clk/qcom: Add USB related clocks for IPQ9574
  phy: Add IPQ9574 support to Qualcomm QUSB2 phy
  phy: qcom: Add QMP USB PHY driver
  configs: ipq9574: Enable fastboot support
  dts: ipq9574-rdp433-u-boot: Enable USB device mode and MMC
  doc: board/qualcomm: Update RDP flashing instructions

 arch/arm/dts/ipq9574-rdp433-u-boot.dtsi       |    6 +
 configs/qcom_ipq9574_mmc_defconfig            |   22 +-
 doc/board/qualcomm/rdp.rst                    |   14 +
 drivers/clk/qcom/clock-ipq9574.c              |   28 +
 drivers/phy/qcom/Kconfig                      |    8 +
 drivers/phy/qcom/Makefile                     |    1 +
 drivers/phy/qcom/phy-qcom-qmp-common.h        |   62 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-misc-v4.h   |   17 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v4.h    |   34 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v5.h    |   36 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v6.h    |   17 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v7.h    |   17 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v7.h        |   32 +
 .../phy/qcom/phy-qcom-qmp-qserdes-com-v7.h    |   87 +
 .../phy/qcom/phy-qcom-qmp-qserdes-txrx-v7.h   |   78 +
 drivers/phy/qcom/phy-qcom-qmp-usb.c           | 2114 +++++++++++++++++
 drivers/phy/qcom/phy-qcom-qmp.h               |   15 +
 drivers/phy/qcom/phy-qcom-qusb2.c             |   42 +
 18 files changed, 2629 insertions(+), 1 deletion(-)
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-common.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-misc-v4.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v4.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v5.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v6.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-usb-v7.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-pcs-v7.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v7.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v7.h
 create mode 100644 drivers/phy/qcom/phy-qcom-qmp-usb.c


base-commit: 47b50fb1125c539d80ed3e7f739c02c6486e1b52
-- 
2.34.1


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

end of thread, other threads:[~2026-01-12 14:56 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-18  6:15 [RESEND v2 0/6] Enable fastboot support for IPQ9574 based boards Varadarajan Narayanan
2025-12-18  6:15 ` [RESEND v2 1/6] clk/qcom: Add USB related clocks for IPQ9574 Varadarajan Narayanan
2025-12-19 13:58   ` Sumit Garg
2026-01-12 14:56   ` Casey Connolly
2025-12-18  6:15 ` [RESEND v2 2/6] phy: Add IPQ9574 support to Qualcomm QUSB2 phy Varadarajan Narayanan
2025-12-19 14:00   ` Sumit Garg
2026-01-12 14:56   ` Casey Connolly
2025-12-18  6:15 ` [RESEND v2 3/6] phy: qcom: Add QMP USB PHY driver Varadarajan Narayanan
2025-12-19 14:13   ` Sumit Garg
2025-12-18  6:15 ` [RESEND v2 4/6] configs: ipq9574: Enable fastboot support Varadarajan Narayanan
2025-12-19 14:29   ` Sumit Garg
2025-12-22  8:44     ` Varadarajan Narayanan
2026-01-12 14:56     ` Casey Connolly
2025-12-18  6:15 ` [RESEND v2 5/6] dts: ipq9574-rdp433-u-boot: Enable USB device mode and MMC Varadarajan Narayanan
2025-12-19 14:41   ` Sumit Garg
2025-12-18  6:15 ` [RESEND v2 6/6] doc: board/qualcomm: Update RDP flashing instructions Varadarajan Narayanan
2025-12-19 14:43   ` Sumit Garg
2025-12-23  5:11     ` Varadarajan Narayanan
2025-12-23  8:27       ` Sumit Garg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox