From: "gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>
To: Wesley Cheng <quic_wcheng@quicinc.com>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
"balbi@kernel.org" <balbi@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"quic_jackp@quicinc.com" <quic_jackp@quicinc.com>
Subject: Re: [PATCH v2 3/5] usb: dwc3: gadget: Adjust IRQ management during soft disconnect/connect
Date: Fri, 15 Jul 2022 13:45:11 +0200 [thread overview]
Message-ID: <YtFTRyTPxM4M3+7j@kroah.com> (raw)
In-Reply-To: <03434e9c-7a1c-4819-6bfe-54f56401348c@quicinc.com>
On Thu, Jul 14, 2022 at 10:41:01AM -0700, Wesley Cheng wrote:
> Hi Thinh,
>
> On 7/14/2022 10:38 AM, Thinh Nguyen wrote:
> > On 7/12/2022, Wesley Cheng wrote:
> > > Local interrupts are currently being disabled as part of aquiring the
> > > spin lock before issuing the endxfer command. Leave interrupts enabled, so
> > > that EP0 events can continue to be processed. Also, ensure that there are
> > > no pending interrupts before attempting to handle any soft
> > > connect/disconnect.
> > >
> > > Fixes: 861c010a2ee1 ("usb: dwc3: gadget: Refactor pullup()")
> > > Signed-off-by: Wesley Cheng <quic_wcheng@quicinc.com>
> > > ---
> > > drivers/usb/dwc3/gadget.c | 21 ++++++++++++---------
> > > 1 file changed, 12 insertions(+), 9 deletions(-)
> > >
> > > diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> > > index a455f8d4631d..ee85b773e3fe 100644
> > > --- a/drivers/usb/dwc3/gadget.c
> > > +++ b/drivers/usb/dwc3/gadget.c
> > > @@ -1674,6 +1674,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_gadget_ep_cmd_params params;
> > > + struct dwc3 *dwc = dep->dwc;
> > > u32 cmd;
> > > int ret;
> > > @@ -1682,7 +1683,9 @@ static int __dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool int
> > > cmd |= interrupt ? DWC3_DEPCMD_CMDIOC : 0;
> > > cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
> > > memset(¶ms, 0, sizeof(params));
> > > + spin_unlock(&dwc->lock);
> > > ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
> > > + spin_lock(&dwc->lock);
> > > WARN_ON_ONCE(ret);
> > > dep->resource_index = 0;
> > > @@ -2029,12 +2032,11 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
> > > struct dwc3_ep *dep = to_dwc3_ep(ep);
> > > struct dwc3 *dwc = dep->dwc;
> > > - unsigned long flags;
> > > int ret = 0;
> > > trace_dwc3_ep_dequeue(req);
> > > - spin_lock_irqsave(&dwc->lock, flags);
> > > + spin_lock(&dwc->lock);
> > > list_for_each_entry(r, &dep->cancelled_list, list) {
> > > if (r == req)
> > > @@ -2073,7 +2075,7 @@ static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
> > > request, ep->name);
> > > ret = -EINVAL;
> > > out:
> > > - spin_unlock_irqrestore(&dwc->lock, flags);
> > > + spin_unlock(&dwc->lock);
> > > return ret;
> > > }
> > > @@ -2489,9 +2491,7 @@ static int __dwc3_gadget_start(struct dwc3 *dwc);
> > > static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc)
> > > {
> > > - unsigned long flags;
> > > -
> > > - spin_lock_irqsave(&dwc->lock, flags);
> > > + spin_lock(&dwc->lock);
> > > dwc->connected = false;
> > > /*
> > > @@ -2506,10 +2506,10 @@ static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc)
> > > reinit_completion(&dwc->ep0_in_setup);
> > > - spin_unlock_irqrestore(&dwc->lock, flags);
> > > + spin_unlock(&dwc->lock);
> > > ret = wait_for_completion_timeout(&dwc->ep0_in_setup,
> > > msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT));
> > > - spin_lock_irqsave(&dwc->lock, flags);
> > > + spin_lock(&dwc->lock);
> > > if (ret == 0)
> > > dev_warn(dwc->dev, "timed out waiting for SETUP phase\n");
> > > }
> > > @@ -2523,7 +2523,7 @@ static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc)
> > > */
> > > dwc3_stop_active_transfers(dwc);
> > > __dwc3_gadget_stop(dwc);
> > > - spin_unlock_irqrestore(&dwc->lock, flags);
> > > + spin_unlock(&dwc->lock);
> > > /*
> > > * Note: if the GEVNTCOUNT indicates events in the event buffer, the
> > > @@ -2569,6 +2569,8 @@ static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
> > > return 0;
> > > }
> > > + synchronize_irq(dwc->irq_gadget);
> > > +
> > > if (!is_on) {
> > > ret = dwc3_gadget_soft_disconnect(dwc);
> > > } else {
> > > @@ -3729,6 +3731,7 @@ void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force,
> > > */
> > > __dwc3_stop_active_transfer(dep, force, interrupt);
> > > +
> > > }
> > > static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
> >
> > Hi Greg,
> >
> > Please don't pick up this patch yet. We're still in discussion with
> > this. I have some concern with unlocking/locking when sending End
> > Transfer command. For example, this patch may cause issues with
> > DWC3_EP_END_TRANSFER_PENDING checks.
> >
>
> Agreed.
>
> > Hi Wesley,
> >
> > Did you try out my suggestion yet?
> >
>
> In process of testing. Will update you in a few days, since it might take a
> day or so to reproduce.
Ok, I'll drop this whole series from my tree for now. Please resend
when you have it working.
greg k-h
next prev parent reply other threads:[~2022-07-15 11:45 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-13 0:35 [PATCH v2 0/5] Fix controller halt and endxfer timeout issues Wesley Cheng
2022-07-13 0:35 ` [PATCH v2 1/5] usb: dwc3: Do not service EP0 and conndone events if soft disconnected Wesley Cheng
2022-07-13 0:35 ` [PATCH v2 2/5] usb: dwc3: gadget: Force sending delayed status during soft disconnect Wesley Cheng
2022-07-13 0:35 ` [PATCH v2 3/5] usb: dwc3: gadget: Adjust IRQ management during soft disconnect/connect Wesley Cheng
2022-07-14 17:38 ` Thinh Nguyen
2022-07-14 17:41 ` Wesley Cheng
2022-07-15 11:45 ` gregkh [this message]
2022-07-20 18:50 ` Wesley Cheng
2022-07-21 0:26 ` Thinh Nguyen
2022-07-13 0:35 ` [PATCH v2 4/5] usb: dwc3: Allow end transfer commands to be sent during soft disconnect Wesley Cheng
2022-07-21 22:08 ` Thinh Nguyen
2022-07-21 22:13 ` Wesley Cheng
2022-07-21 22:20 ` Thinh Nguyen
2022-07-21 22:40 ` Wesley Cheng
2022-07-22 0:00 ` Thinh Nguyen
2022-07-22 0:04 ` Wesley Cheng
2022-07-22 2:27 ` Wesley Cheng
2022-07-22 19:59 ` Thinh Nguyen
2022-07-13 0:35 ` [PATCH v2 5/5] usb: dwc3: gadget: Increase DWC3 controller halt timeout Wesley Cheng
2022-07-13 2:56 ` Jack Pham
2022-07-13 11:40 ` John Keeping
2022-07-13 21:53 ` Jack Pham
2022-07-14 0:56 ` 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=YtFTRyTPxM4M3+7j@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=Thinh.Nguyen@synopsys.com \
--cc=balbi@kernel.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;
as well as URLs for NNTP newsgroup(s).