All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: Jiazi Liu <jiazi.liu1984@gmail.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>,
	Jiazi Liu <liujiazi@amazon.com>
Subject: Re: [PATCH 1/1] usb: dwc3: ep0: skip CLEAR_HALT on non-stalled endpoints
Date: Tue, 4 Aug 2026 23:17:08 +0000	[thread overview]
Message-ID: <anJxm7K1F48Ba4H-@vbox> (raw)
In-Reply-To: <20260727095827.11807-1-liujiazi@amazon.com>

On Mon, Jul 27, 2026, Jiazi Liu wrote:
> Mac hosts send CLEAR_FEATURE(HALT) to all endpoints immediately after
> SET_CONFIGURATION, even when no endpoint is actually stalled. This
> causes __dwc3_gadget_ep_set_halt() to be called unnecessarily, which
> can disrupt ongoing transfers on active endpoints.

Can you provide more details on what disruptions you saw and on what
endpoints (e.g. transfers on endpoints not targeted by this request?)

> 
> Fix this by checking the DWC3_EP_STALL flag before processing
> CLEAR_FEATURE(HALT). If the endpoint is not stalled, simply acknowledge
> the host request without calling into the endpoint halt path.

No. We should not do this. Host does ClEAR_FEATURE(HALT) sometime to
reset the packet sequence number for various reasons such as error
recovery. If we don't also perform set_halt from gadget side, then the
data sequence will potentially be out of sync.

BR,
Thinh

> 
> Signed-off-by: Jiazi Liu <liujiazi@amazon.com>
> ---
>  drivers/usb/dwc3/ep0.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c
> index bfe616194dfa..b577a1b764fc 100644
> --- a/drivers/usb/dwc3/ep0.c
> +++ b/drivers/usb/dwc3/ep0.c
> @@ -554,6 +554,9 @@ static int dwc3_ep0_handle_endpoint(struct dwc3 *dwc,
>  		if (set == 0 && (dep->flags & DWC3_EP_WEDGE))
>  			break;
>  
> +		if (set == 0 && !(dep->flags & DWC3_EP_STALL))
> +			break;
> +
>  		ret = __dwc3_gadget_ep_set_halt(dep, set, true);
>  		if (ret)
>  			return -EINVAL;
> -- 
> 2.50.1 (Apple Git-155)
> 

      reply	other threads:[~2026-08-04 23:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-27  9:58 [PATCH 1/1] usb: dwc3: ep0: skip CLEAR_HALT on non-stalled endpoints Jiazi Liu
2026-08-04 23:17 ` Thinh Nguyen [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=anJxm7K1F48Ba4H-@vbox \
    --to=thinh.nguyen@synopsys.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jiazi.liu1984@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=liujiazi@amazon.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.