From: Sean Anderson <sean.anderson@linux.dev>
To: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Cc: "open list:DESIGNWARE USB3 DRD IP DRIVER"
<linux-usb@vger.kernel.org>, Neal Frager <neal.frager@amd.com>,
Michal Simek <michal.simek@amd.com>,
open list <linux-kernel@vger.kernel.org>,
"moderated list:ARM/ZYNQ ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: [PATCH] usb: dwc3: Always deassert xilinx resets
Date: Fri, 9 Jan 2026 10:52:18 -0500 [thread overview]
Message-ID: <be8a566a-163f-4d20-b712-67de6f63a6b5@linux.dev> (raw)
In-Reply-To: <20260109004901.ygts6mmcxy4vs3y2@synopsys.com>
On 1/8/26 19:49, Thinh Nguyen wrote:
> On Tue, Jan 06, 2026, Sean Anderson wrote:
>> If we don't have a usb3 phy we don't need to assert the core resets.
>> Deassert them even if we didn't assert them to support booting when the
>> bootloader never released the core from reset.
>>
>
>> Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
>> ---
>>
>> drivers/usb/dwc3/dwc3-xilinx.c | 67 ++++++++++++++++------------------
>> 1 file changed, 32 insertions(+), 35 deletions(-)
>>
>
> This sounds like a fix. Does it need to be Cc Stable and backported?
No, it's not a fix since the bootloaders currently in use on this
platform always initialize the serdes. But I want to add support for
skipping this initialization and this patch is necessary for that.
--Sean
> Regardless,
>
> Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
>
> Thanks,
> Thinh
>
>> diff --git a/drivers/usb/dwc3/dwc3-xilinx.c b/drivers/usb/dwc3/dwc3-xilinx.c
>> index 0a8c47876ff9..f41b0da5e89d 100644
>> --- a/drivers/usb/dwc3/dwc3-xilinx.c
>> +++ b/drivers/usb/dwc3/dwc3-xilinx.c
>> @@ -132,21 +132,6 @@ static int dwc3_xlnx_init_zynqmp(struct dwc3_xlnx *priv_data)
>> goto err;
>> }
>>
>> - /*
>> - * The following core resets are not required unless a USB3 PHY
>> - * is used, and the subsequent register settings are not required
>> - * unless a core reset is performed (they should be set properly
>> - * by the first-stage boot loader, but may be reverted by a core
>> - * reset). They may also break the configuration if USB3 is actually
>> - * in use but the usb3-phy entry is missing from the device tree.
>> - * Therefore, skip these operations in this case.
>> - */
>> - if (!priv_data->usb3_phy) {
>> - /* Deselect the PIPE Clock Select bit in FPD PIPE Clock register */
>> - writel(PIPE_CLK_DESELECT, priv_data->regs + XLNX_USB_FPD_PIPE_CLK);
>> - goto skip_usb3_phy;
>> - }
>> -
>> crst = devm_reset_control_get_exclusive(dev, "usb_crst");
>> if (IS_ERR(crst)) {
>> ret = PTR_ERR(crst);
>> @@ -171,22 +156,31 @@ static int dwc3_xlnx_init_zynqmp(struct dwc3_xlnx *priv_data)
>> goto err;
>> }
>>
>> - ret = reset_control_assert(crst);
>> - if (ret < 0) {
>> - dev_err(dev, "Failed to assert core reset\n");
>> - goto err;
>> - }
>> + /*
>> + * Asserting the core resets is not required unless a USB3 PHY is used.
>> + * They may also break the configuration if USB3 is actually in use but
>> + * the usb3-phy entry is missing from the device tree. Therefore, skip
>> + * a full reset cycle and just deassert the resets if the phy is
>> + * absent.
>> + */
>> + if (priv_data->usb3_phy) {
>> + ret = reset_control_assert(crst);
>> + if (ret < 0) {
>> + dev_err(dev, "Failed to assert core reset\n");
>> + goto err;
>> + }
>>
>> - ret = reset_control_assert(hibrst);
>> - if (ret < 0) {
>> - dev_err(dev, "Failed to assert hibernation reset\n");
>> - goto err;
>> - }
>> + ret = reset_control_assert(hibrst);
>> + if (ret < 0) {
>> + dev_err(dev, "Failed to assert hibernation reset\n");
>> + goto err;
>> + }
>>
>> - ret = reset_control_assert(apbrst);
>> - if (ret < 0) {
>> - dev_err(dev, "Failed to assert APB reset\n");
>> - goto err;
>> + ret = reset_control_assert(apbrst);
>> + if (ret < 0) {
>> + dev_err(dev, "Failed to assert APB reset\n");
>> + goto err;
>> + }
>> }
>>
>> ret = phy_init(priv_data->usb3_phy);
>> @@ -201,11 +195,15 @@ static int dwc3_xlnx_init_zynqmp(struct dwc3_xlnx *priv_data)
>> goto err;
>> }
>>
>> - /* Set PIPE Power Present signal in FPD Power Present Register*/
>> - writel(FPD_POWER_PRSNT_OPTION, priv_data->regs + XLNX_USB_FPD_POWER_PRSNT);
>> -
>> - /* Set the PIPE Clock Select bit in FPD PIPE Clock register */
>> - writel(PIPE_CLK_SELECT, priv_data->regs + XLNX_USB_FPD_PIPE_CLK);
>> + if (priv_data->usb3_phy) {
>> + /* Set PIPE Power Present signal in FPD Power Present Register*/
>> + writel(FPD_POWER_PRSNT_OPTION, priv_data->regs + XLNX_USB_FPD_POWER_PRSNT);
>> + /* Set the PIPE Clock Select bit in FPD PIPE Clock register */
>> + writel(PIPE_CLK_SELECT, priv_data->regs + XLNX_USB_FPD_PIPE_CLK);
>> + } else {
>> + /* Deselect the PIPE Clock Select bit in FPD PIPE Clock register */
>> + writel(PIPE_CLK_DESELECT, priv_data->regs + XLNX_USB_FPD_PIPE_CLK);
>> + }
>>
>> ret = reset_control_deassert(crst);
>> if (ret < 0) {
>> @@ -225,7 +223,6 @@ static int dwc3_xlnx_init_zynqmp(struct dwc3_xlnx *priv_data)
>> goto err;
>> }
>>
>> -skip_usb3_phy:
>> /* ulpi reset via gpio-modepin or gpio-framework driver */
>> reset_gpio = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
>> if (IS_ERR(reset_gpio)) {
>> --
>> 2.35.1.1320.gc452695387.dirty
>>
prev parent reply other threads:[~2026-01-09 15:52 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-06 17:10 [PATCH] usb: dwc3: Always deassert xilinx resets Sean Anderson
2026-01-09 0:49 ` Thinh Nguyen
2026-01-09 6:01 ` Pandey, Radhey Shyam
2026-01-09 15:51 ` Sean Anderson
2026-01-13 0:49 ` Thinh Nguyen
2026-01-13 15:45 ` Sean Anderson
2026-01-13 23:53 ` Thinh Nguyen
2026-01-13 0:43 ` Thinh Nguyen
2026-01-09 15:52 ` Sean Anderson [this message]
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=be8a566a-163f-4d20-b712-67de6f63a6b5@linux.dev \
--to=sean.anderson@linux.dev \
--cc=Thinh.Nguyen@synopsys.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=michal.simek@amd.com \
--cc=neal.frager@amd.com \
--cc=p.zabel@pengutronix.de \
--cc=radhey.shyam.pandey@amd.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