From: Zhuang Jin Can <jin.can.zhuang@intel.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Felipe Balbi <balbi@ti.com>, USB list <linux-usb@vger.kernel.org>,
linux-omap@vger.kernel.org,
Kernel development list <linux-kernel@vger.kernel.org>,
liping.zhou@intel.com, david.a.cohen@linux.intel.com
Subject: Re: [PATCH] usb: dwc3: ep0: fix delayed status is queued too early
Date: Thu, 8 May 2014 00:39:02 -0400 [thread overview]
Message-ID: <20140508043902.GI19925@intel.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1405071050530.1325-100000@iolanthe.rowland.org>
On Wed, May 07, 2014 at 11:03:42AM -0400, Alan Stern wrote:
> On Wed, 7 May 2014, Zhuang Jin Can wrote:
>
> > A delayed status request may be queued before composite framework returns
> > USB_GADGET_DELAYED_STATUS, because the thread queueing the request can run
> > on a different core in parallel with the control request irq.
> >
> > SETUP XferComplete IRQ fsg_main_thread
> > ---------------------- ---------------
> > | |
> > spin_lock_irqsave(&dwc->lock) sleeping
> > | |
> > ... ...
> > dwc3_ep0_inspect_setup() |
> > | |
> > dwc3_ep0_delegate_req() |
> > | |
> > ... |
> > spin_unlock(&dwc->lock); |
> > | |
> > fsg_set_alt() ======> Signal Wakeup ====> |
> > | |
> > other gadgets->set_alt() handle exception
> > | |
> > | usb_composite_setup_continue()
> > | |
> > | spin_lock_irqsave(&dwc->lock)
> > | __dwc3_gadget_ep0_queue()
> > | delay_status is false
> > | spin_unlock_irqrestore(&dwc->lock)
> > | |
> > | sleeping
> > spin_lock(&dwc->lock); |
> > | |
> > delayed_status=true |
> > | |
> >
> > STATUS XferNotReady IRQ
> > ------------------------
> > |
> > dwc3_ep0_xfernotready()
> > |
> > delayed_status is true, return;
> >
> > The result is the status packet will never be transferred, and
> > delayed_status is not cleared.
> >
> > Signed-off-by: Zhuang Jin Can <jin.can.zhuang@intel.com>
> > Reported-by: Zhou Liping <liping.zhou@intel.com>
>
> A similar problem can occur in the opposite sense: The thread queuing
> the delayed status request might be delayed for so long that another
> SETUP packet arrives from the host first. In that case, the delayed
> status request is a response for a stale transfer, so it must not be
> sent to the host.
>
> Do dwc3 and composite.c handle this case correctly?
>
So the situation you describe is that we get the STATUS XferNotReady
event, but gadget queues a status request when control transfer already
failed. dwc3 can't move to SETUP phase until the status request arrives,
so any SETUP transaction from host will fail. If status request
eventually arrives, it already missed the first control transfer, and
I don't know how the controller will behave. If we still can get a
STATUS XferComplete event without actually transfer anything on the
bus, then we can move back to SETUP PHASE which will remove the stale
delayed status request and start the new SETUP transaction. But I think
in this situation, the host should already lose it patience and start
to reset the bus.
Per my understanding, it's impossible for dwc3 to send a stale STATUS
request for a new SETUP transaction.
> Back in the old g_file_storage driver, I addressed this issue by
> keeping a counter of all the setup requests. When it came time to send
> a delayed status response, the response would be sent only if the
> counter had not changed from when the original setup request was
> received.
>
> As far as I can see, composite.c doesn't do anything like that.
>
> Alan Stern
next prev parent reply other threads:[~2014-05-07 16:42 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-07 21:53 [PATCH] usb: dwc3: ep0: fix delayed status is queued too early Zhuang Jin Can
2014-05-07 15:03 ` Alan Stern
2014-05-08 4:39 ` Zhuang Jin Can [this message]
2014-05-07 16:59 ` Alan Stern
2014-05-08 16:00 ` Zhuang Jin Can
2014-05-08 14:25 ` Alan Stern
2014-05-09 3:01 ` Zhuang Jin Can
2014-05-08 15:22 ` Alan Stern
2014-05-09 5:03 ` Zhuang Jin Can
2014-05-08 19:55 ` Paul Zimmerman
2014-05-08 21:18 ` Alan Stern
2014-05-08 23:01 ` Paul Zimmerman
2014-05-09 14:08 ` Alan Stern
2014-05-14 1:45 ` Zhuang Jin Can
2014-05-13 15:05 ` Felipe Balbi
2014-05-14 3:28 ` Zhuang Jin Can
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=20140508043902.GI19925@intel.com \
--to=jin.can.zhuang@intel.com \
--cc=balbi@ti.com \
--cc=david.a.cohen@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=liping.zhou@intel.com \
--cc=stern@rowland.harvard.edu \
/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