Linux USB
 help / color / mirror / Atom feed
From: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
To: Jack Pham <quic_jackp@quicinc.com>
Cc: Wesley Cheng <quic_wcheng@quicinc.com>,
	"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
	Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>
Subject: Re: [PATCH v3] usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC
Date: Tue, 28 Feb 2023 23:41:37 +0000	[thread overview]
Message-ID: <20230228234135.gafwzmokvxmlfhvs@synopsys.com> (raw)
In-Reply-To: <20230228232846.GB3727894@hu-jackp-lv.qualcomm.com>

On Tue, Feb 28, 2023, Jack Pham wrote:
> On Tue, Feb 28, 2023 at 12:24:18PM -0800, Wesley Cheng wrote:
> > Previously, there was a 100uS delay inserted after issuing an end transfer
> > command for specific controller revisions.  This was due to the fact that
> > there was a GUCTL2 bit field which enabled synchronous completion of the
> > end transfer command once the CMDACT bit was cleared in the DEPCMD
> > register.  Since this bit does not exist for all controller revisions, add
> > the delay back in, and increase the duration to 1ms for the controller to
> > complete the command.
> > 
> > An issue was seen where the USB request buffer was unmapped while the DWC3
> > controller was still accessing the TRB.  However, it was confirmed that the
> > end transfer command was successfully submitted. (no end transfer timeout)
> > In situations, such as dwc3_gadget_soft_disconnect() and
> > __dwc3_gadget_ep_disable(), the dwc3_remove_request() is utilized, which
> > will issue the end transfer command, and follow up with
> > dwc3_gadget_giveback().  At least for the USB ep disable path, it is
> > required for any pending and started requests to be completed and returned
> > to the function driver in the same context of the disable call.  Without
> > the GUCTL2 bit, it is not ensured that the end transfer is completed before
> > the buffers are unmapped.
> > 
> > Signed-off-by: Wesley Cheng <quic_wcheng@quicinc.com>
> > ---
> > Changes in v3:
> > - Fixed subject title and modified commit text to reference the new 1ms
> > delay
> > 
> > Changes in v2:
> > - Increase delay value to 1ms
> > - Make this applicable to DWC32 revisions as well
> > 
> >  drivers/usb/dwc3/gadget.c | 15 ++++++++++++---
> >  1 file changed, 12 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> > index 3c63fa97a680..15adf07a4df4 100644
> > --- a/drivers/usb/dwc3/gadget.c
> > +++ b/drivers/usb/dwc3/gadget.c
> > @@ -1699,6 +1699,7 @@ static int __dwc3_gadget_get_frame(struct dwc3 *dwc)
> >   */
> >  static int __dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt)
> >  {
> > +	struct dwc3 *dwc = dep->dwc;
> >  	struct dwc3_gadget_ep_cmd_params params;
> >  	u32 cmd;
> >  	int ret;
> > @@ -1722,10 +1723,14 @@ static int __dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool int
> >  	WARN_ON_ONCE(ret);
> >  	dep->resource_index = 0;
> >  
> > -	if (!interrupt)
> > +	if (!interrupt) {
> > +		if (DWC3_IP_IS(DWC32) || DWC3_IP_IS(DWC31) ||
> > +			DWC3_VER_IS_PRIOR(DWC3, 310A))
> 
> How about a little more succinctly:
> 
> 		if (!DWC3_IP_IS(DWC3) || DWC3_VER_IS_PRIOR(DWC3, 310A))
> ?
> 

or this:
	if (!DWC3_VER_IS_WITHIN(DWC3, 310A, ANY))


BR,
Thinh

  reply	other threads:[~2023-02-28 23:41 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-28 20:24 [PATCH v3] usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC Wesley Cheng
2023-02-28 23:28 ` Jack Pham
2023-02-28 23:41   ` Thinh Nguyen [this message]
2023-02-28 23:44 ` Thinh Nguyen

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=20230228234135.gafwzmokvxmlfhvs@synopsys.com \
    --to=thinh.nguyen@synopsys.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=quic_jackp@quicinc.com \
    --cc=quic_wcheng@quicinc.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