U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Varadarajan Narayanan via U-Boot <u-boot@lists.u-boot-project.org>
To: Sumit Garg <sumit.garg@kernel.org>,
	u-boot-qcom@groups.io, u-boot@lists.u-boot-project.org
Cc: Lukasz Majewski <lukma@denx.de>,
	Casey Connolly <casey.connolly@linaro.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Tom Rini <trini@konsulko.com>,
	Balaji Selvanathan <balaji.selvanathan@oss.qualcomm.com>,
	David Lechner <dlechner@baylibre.com>,
	Luca Weiss <luca.weiss@fairphone.com>,
	Biswapriyo Nath <nathbappai@gmail.com>,
	Peng Fan <peng.fan@nxp.com>,
	Jaehoon Chung <jh80.chung@samsung.com>,
	Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>,
	Sumit Garg <sumit.garg@oss.qualcomm.com>
Subject: [PATCH 0/5] Enable fastboot support for IPQ9574 based boards
Date: Thu, 06 Aug 2026 07:51:03 +0530	[thread overview]
Message-ID: <20260806-fastboot-v1-0-cab7d64e592b@oss.qualcomm.com> (raw)

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

v3: - Rebase to top of tree
    - Drop DT changes
    - Pick up R-b tags
    - Include Linux kernel version information in relevant commits
    - Update documentation about 'n/w driver'
    v2: https://lore.kernel.org/u-boot/20251218061557.1999367-1-varadarajan.narayanan@oss.qualcomm.com/

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

Signed-off-by: Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
---
Varadarajan Narayanan (5):
      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
      doc: board/qualcomm: Update RDP flashing instructions

 configs/qcom_ipq9574_mmc_defconfig                 |   18 +-
 doc/board/qualcomm/rdp.rst                         |   16 +
 drivers/clk/qcom/clock-ipq9574.c                   |   28 +
 drivers/phy/qcom/Kconfig                           |    8 +
 drivers/phy/qcom/Makefile                          |    1 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-misc-v4.h        |   17 +
 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-usb-v8.h         |   38 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v4_20.h          |   15 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v5_20.h          |   21 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v6-n4.h          |   32 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v6.h             |    2 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v7.h             |   34 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v8.h             |   32 +
 drivers/phy/qcom/phy-qcom-qmp-pcs-v8_50.h          |   13 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v2.h     |  109 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v6.h     |    7 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v7.h     |   87 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-com-v8.h     |   75 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-com.h        |  231 +-
 drivers/phy/qcom/phy-qcom-qmp-qserdes-lalb-v8.h    |  639 ++++++
 drivers/phy/qcom/phy-qcom-qmp-qserdes-ln-shrd-v5.h |   11 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v2.h    |  205 ++
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v4_20.h |   43 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v5_20.h |   86 +
 .../phy/qcom/phy-qcom-qmp-qserdes-txrx-v5_5nm.h    |  328 +++
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v6.h    |    1 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v6_n4.h |   64 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v7.h    |   80 +
 drivers/phy/qcom/phy-qcom-qmp-qserdes-txrx-v8.h    |   68 +
 drivers/phy/qcom/phy-qcom-qmp-ufs.c                |  136 +-
 drivers/phy/qcom/phy-qcom-qmp-usb.c                | 2198 ++++++++++++++++++++
 .../phy/qcom/phy-qcom-qmp-usb43-qserdes-com-v8.h   |  224 ++
 drivers/phy/qcom/phy-qcom-qmp.h                    |  142 +-
 drivers/phy/qcom/phy-qcom-qusb2.c                  |  356 +++-
 37 files changed, 5081 insertions(+), 354 deletions(-)
---
base-commit: baa64b2f892890f00a377eac4a3e685472bb56b5
change-id: 20260805-fastboot-fa492e2d87b8

Best regards,
-- 
Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>


             reply	other threads:[~2026-08-06  2:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-06  2:21 Varadarajan Narayanan via U-Boot [this message]
2026-08-06  2:21 ` [PATCH 1/5] clk/qcom: Add USB related clocks for IPQ9574 Varadarajan Narayanan via U-Boot
2026-08-06  2:21 ` [PATCH 2/5] phy: Add IPQ9574 support to Qualcomm QUSB2 phy Varadarajan Narayanan via U-Boot
2026-08-06  2:21 ` [PATCH 3/5] phy: qcom: Add QMP USB PHY driver Varadarajan Narayanan via U-Boot
2026-08-06  2:21 ` [PATCH 4/5] configs: ipq9574: Enable fastboot support Varadarajan Narayanan via U-Boot
2026-08-06  2:21 ` [PATCH 5/5] doc: board/qualcomm: Update RDP flashing instructions Varadarajan Narayanan via U-Boot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260806-fastboot-v1-0-cab7d64e592b@oss.qualcomm.com \
    --to=u-boot@lists.u-boot-project.org \
    --cc=balaji.selvanathan@oss.qualcomm.com \
    --cc=casey.connolly@linaro.org \
    --cc=dlechner@baylibre.com \
    --cc=jh80.chung@samsung.com \
    --cc=luca.weiss@fairphone.com \
    --cc=lukma@denx.de \
    --cc=nathbappai@gmail.com \
    --cc=neil.armstrong@linaro.org \
    --cc=peng.fan@nxp.com \
    --cc=sumit.garg@kernel.org \
    --cc=sumit.garg@oss.qualcomm.com \
    --cc=trini@konsulko.com \
    --cc=u-boot-qcom@groups.io \
    --cc=varadarajan.narayanan@oss.qualcomm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox