From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: Kuen-Han Tsai <khtsai@google.com>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [RFC PATCH] usb: dwc3: Ignore late xferNotReady event to prevent halt timeout
Date: Mon, 4 Aug 2025 18:22:27 +0000 [thread overview]
Message-ID: <20250804182220.mho2qjdtmvdkicec@synopsys.com> (raw)
In-Reply-To: <20250804080809.1700691-1-khtsai@google.com>
Hi,
On Mon, Aug 04, 2025, Kuen-Han Tsai wrote:
> During a device-initiated disconnect, an xferNotReady event for an ISOC
> IN endpoint can be received after the End Transfer command has already
> completed.
Some more info for clarity: the controller generates xferNotReady event
once when the host requests to send/receive data to an endpoint. The End
Transfer command resets the event filter and allow the controller to
generate the xferNotReady event again. This can occur in the middle of
device-initiated disconnect and before the controller is halted.
>
> This late event incorrectly triggers a new Start Transfer, which
> prevents the controller from halting and results in a DSTS.DEVCTRLHLT
> bit polling timeout.
>
> Ignore the late xferNotReady event if the controller is already in a
> disconnected state.
>
> Signed-off-by: Kuen-Han Tsai <khtsai@google.com>
Please also add Fixes tag and Cc stable.
> ---
> Tracing:
>
> # Stop active transfers by sending End Transfer commands
> android.hardwar-913 [004] d..1. 6172.855517: dwc3_gadget_ep_cmd: ep1out: cmd 'End Transfer' [20d08] params 00000000 00000000 00000000 --> status: Successful
> android.hardwar-913 [004] dn.1. 6172.855734: dwc3_gadget_ep_cmd: ep1in: cmd 'End Transfer' [40d08] params 00000000 00000000 00000000 --> status: Successful
> ...
> # Recieve an xferNotReady event on an ISOC IN endpoint
> irq/991-dwc3-29741 [000] D..1. 6172.856166: dwc3_event: event (35d010c6): ep1in: Transfer Not Ready [000035d0] (Not Active)
> irq/991-dwc3-29741 [000] D..1. 6172.856190: dwc3_gadget_ep_cmd: ep1in: cmd 'Start Transfer' [35d60406] params 00000000 ffffb620 00000000 --> status: Successful
> android.hardwar-913 [004] dn.1. 6172.868130: dwc3_gadget_ep_cmd: ep2in: cmd 'End Transfer' [30d08] params 00000000 00000000 00000000 --> status: Timed Out
> ...
> # Start polling DSTS.DEVCTRLHLT
> android.hardwar-913 [000] ..... 6172.869253: dwc3_gadget_run_stop: start polling DWC3_DSTS_DEVCTRLHLT
> ...
> # HALT timeout and show the endpoint status for debugging
> android.hardwar-913 [004] ..... 6177.479946: dwc3_gadget_run_stop: finish polling DWC3_DSTS_DEVCTRLHLT, is_on=0, reg=0
> android.hardwar-913 [004] ..... 6177.479957: dwc3_gadget_ep_status: ep1out: mps 1024/2765 streams 16 burst 5 ring 64/56 flags E:swbp:>
> android.hardwar-913 [004] ..... 6177.479958: dwc3_gadget_ep_status: ep1in: mps 1024/1024 streams 16 burst 2 ring 21/64 flags E:swBp:<
> android.hardwar-913 [004] ..... 6177.479959: dwc3_gadget_ep_status: ep2out: mps 1024/2765 streams 16 burst 5 ring 56/48 flags e:swbp:>
>
> ---
> drivers/usb/dwc3/gadget.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 25db36c63951..506391699a10 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -3896,7 +3896,8 @@ static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
> dwc3_gadget_endpoint_transfer_in_progress(dep, event);
> break;
> case DWC3_DEPEVT_XFERNOTREADY:
> - dwc3_gadget_endpoint_transfer_not_ready(dep, event);
> + if (dwc->connected)
Move this check in dwc3_gadget_endpoint_transfer_not_ready().
> + dwc3_gadget_endpoint_transfer_not_ready(dep, event);
> break;
> case DWC3_DEPEVT_EPCMDCMPLT:
> dwc3_gadget_endpoint_command_complete(dep, event);
> --
> 2.50.1.565.gc32cd1483b-goog
>
And remove the RFC tag in $subject.
Thanks,
Thinh
next prev parent reply other threads:[~2025-08-04 18:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-04 8:08 Kuen-Han Tsai
2025-08-04 16:43 ` Greg KH
2025-08-05 6:30 ` Kuen-Han Tsai
2025-08-04 18:22 ` Thinh Nguyen [this message]
2025-08-05 6:44 ` Kuen-Han Tsai
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=20250804182220.mho2qjdtmvdkicec@synopsys.com \
--to=thinh.nguyen@synopsys.com \
--cc=gregkh@linuxfoundation.org \
--cc=khtsai@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
/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
all inboxes | Powered by JetHome®