From: Sumit Garg <sumit.garg@kernel.org>
To: Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
Cc: trini@konsulko.com, casey.connolly@linaro.org,
neil.armstrong@linaro.org, peng.fan@nxp.com,
jh80.chung@samsung.com, lukma@denx.de,
marek.vasut+renesas@mailbox.org, michal.simek@amd.com,
alexeymin@postmarketos.org, u-boot@lists.denx.de,
u-boot-qcom@groups.io
Subject: Re: [RESEND v2 4/6] configs: ipq9574: Enable fastboot support
Date: Fri, 19 Dec 2025 19:59:24 +0530 [thread overview]
Message-ID: <aUVhRIWmfRHPnhRV@sumit-xelite> (raw)
In-Reply-To: <20251218061557.1999367-5-varadarajan.narayanan@oss.qualcomm.com>
On Thu, Dec 18, 2025 at 11:45:55AM +0530, Varadarajan Narayanan wrote:
> Enable relevant configs like USB PHY, gadget, fastboot,
> fastboot MMC support etc. to enable fastboot flashing
> of IPQ9574 based boards.
>
> Signed-off-by: Varadarajan Narayanan <varadarajan.narayanan@oss.qualcomm.com>
> ---
> configs/qcom_ipq9574_mmc_defconfig | 22 +++++++++++++++++++++-
> 1 file changed, 21 insertions(+), 1 deletion(-)
>
> diff --git a/configs/qcom_ipq9574_mmc_defconfig b/configs/qcom_ipq9574_mmc_defconfig
> index 6592d9de39d..ac534738994 100644
> --- a/configs/qcom_ipq9574_mmc_defconfig
> +++ b/configs/qcom_ipq9574_mmc_defconfig
> @@ -45,7 +45,7 @@ CONFIG_DWC_ETH_QOS=y
> CONFIG_DWC_ETH_QOS_QCOM=y
> CONFIG_RGMII=y
> CONFIG_PHY=y
> -CONFIG_PHY_QCOM_QMP_UFS=y
Any reason to drop this?
> +CONFIG_PHY_QCOM_QMP_USB=y
> CONFIG_PHY_QCOM_QUSB2=y
> CONFIG_PINCTRL=y
> CONFIG_PINCONF=y
> @@ -54,3 +54,23 @@ CONFIG_DEBUG_UART_ANNOUNCE=y
> CONFIG_MSM_SERIAL=y
> CONFIG_MSM_GENI_SERIAL=y
> CONFIG_SOC_QCOM=y
> +CONFIG_USB=y
> +CONFIG_USB_GADGET=y
> +CONFIG_DM_USB_GADGET=y
> +CONFIG_CMD_USB=y
> +CONFIG_USB_DWC3=y
> +CONFIG_USB_DWC3_GADGET=y
> +CONFIG_MISC=y
> +CONFIG_USB_DWC3_GENERIC=y
> +CONFIG_USB_FUNCTION_FASTBOOT=y
> +CONFIG_FASTBOOT=y
> +CONFIG_CMD_FASTBOOT=y
> +CONFIG_FASTBOOT_BUF_ADDR=y
> +CONFIG_FASTBOOT_BUF_SIZE=y
> +CONFIG_FASTBOOT_FLASH=y
> +CONFIG_FASTBOOT_FLASH_MMC=y
> +CONFIG_FASTBOOT_FLASH_MMC_DEV=0
> +CONFIG_USB_GADGET_VENDOR_NUM=0x18d1
> +CONFIG_USB_GADGET_PRODUCT_NUM=0xd00d
You should rather try to update following for fastboot:
$ git grep -nr ARCH_QCOM drivers/usb/gadget/Kconfig
drivers/usb/gadget/Kconfig:64: default 0x18d1 if ARCH_QCOM
drivers/usb/gadget/Kconfig:92: default 0x4ee0 if ARCH_QCOM
> +CONFIG_FASTBOOT_BUF_ADDR=0x50000000
> +CONFIG_FASTBOOT_BUF_SIZE=0x4000000
-Sumit
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-12-19 14:29 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
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
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=aUVhRIWmfRHPnhRV@sumit-xelite \
--to=sumit.garg@kernel.org \
--cc=alexeymin@postmarketos.org \
--cc=casey.connolly@linaro.org \
--cc=jh80.chung@samsung.com \
--cc=lukma@denx.de \
--cc=marek.vasut+renesas@mailbox.org \
--cc=michal.simek@amd.com \
--cc=neil.armstrong@linaro.org \
--cc=peng.fan@nxp.com \
--cc=trini@konsulko.com \
--cc=u-boot-qcom@groups.io \
--cc=u-boot@lists.denx.de \
--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 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.