mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 04:48:04 +09:00
usb: musb: gadget: restart request on clearing endpoint halt
commita666e3e609upstream. Commit46034dca51(USB: musb_gadget_ep0: stop abusing musb_gadget_set_halt()) forgot to restart a queued request after clearing the endpoint halt feature. This results in a couple of USB resets while enumerating the file-backed storage gadget due to CSW packet not being sent for the MODE SENSE(10) command. Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
679a100ab2
commit
cbf9ca5da6
@@ -1088,7 +1088,7 @@ struct free_record {
|
||||
/*
|
||||
* Context: controller locked, IRQs blocked.
|
||||
*/
|
||||
static void musb_ep_restart(struct musb *musb, struct musb_request *req)
|
||||
void musb_ep_restart(struct musb *musb, struct musb_request *req)
|
||||
{
|
||||
DBG(3, "<== %s request %p len %u on hw_ep%d\n",
|
||||
req->tx ? "TX/IN" : "RX/OUT",
|
||||
|
||||
@@ -105,4 +105,6 @@ extern void musb_g_giveback(struct musb_ep *, struct usb_request *, int);
|
||||
|
||||
extern int musb_gadget_set_halt(struct usb_ep *ep, int value);
|
||||
|
||||
extern void musb_ep_restart(struct musb *, struct musb_request *);
|
||||
|
||||
#endif /* __MUSB_GADGET_H */
|
||||
|
||||
@@ -369,6 +369,7 @@ stall:
|
||||
ctrlrequest->wIndex & 0x0f;
|
||||
struct musb_ep *musb_ep;
|
||||
struct musb_hw_ep *ep;
|
||||
struct musb_request *request;
|
||||
void __iomem *regs;
|
||||
int is_in;
|
||||
u16 csr;
|
||||
@@ -411,6 +412,14 @@ stall:
|
||||
csr);
|
||||
}
|
||||
|
||||
/* Maybe start the first request in the queue */
|
||||
request = to_musb_request(
|
||||
next_request(musb_ep));
|
||||
if (!musb_ep->busy && request) {
|
||||
DBG(3, "restarting the request\n");
|
||||
musb_ep_restart(musb, request);
|
||||
}
|
||||
|
||||
/* select ep0 again */
|
||||
musb_ep_select(mbase, 0);
|
||||
handled = 1;
|
||||
|
||||
Reference in New Issue
Block a user