2 * ep0.c - DesignWare USB3 DRD Controller Endpoint 0 Handling
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The names of the above-listed copyright holders may not be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
22 * ALTERNATIVELY, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2, as published by the Free
24 * Software Foundation.
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
27 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
28 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/kernel.h>
40 #include <linux/slab.h>
41 #include <linux/spinlock.h>
42 #include <linux/platform_device.h>
43 #include <linux/pm_runtime.h>
44 #include <linux/interrupt.h>
46 #include <linux/list.h>
47 #include <linux/dma-mapping.h>
49 #include <linux/usb/ch9.h>
50 #include <linux/usb/gadget.h>
51 #include <linux/usb/composite.h>
57 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
58 static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
59 struct dwc3_ep *dep, struct dwc3_request *req);
61 static const char *dwc3_ep0_state_string(enum dwc3_ep0_state state)
70 case EP0_STATUS_PHASE:
71 return "Status Phase";
77 static int dwc3_ep0_start_trans(struct dwc3 *dwc, u8 epnum, dma_addr_t buf_dma,
80 struct dwc3_gadget_ep_cmd_params params;
86 dep = dwc->eps[epnum];
87 if (dep->flags & DWC3_EP_BUSY) {
88 dev_vdbg(dwc->dev, "%s: still busy\n", dep->name);
94 trb->bpl = lower_32_bits(buf_dma);
95 trb->bph = upper_32_bits(buf_dma);
99 trb->ctrl |= (DWC3_TRB_CTRL_HWO
102 | DWC3_TRB_CTRL_ISP_IMI);
104 memset(¶ms, 0, sizeof(params));
105 params.param0 = upper_32_bits(dwc->ep0_trb_addr);
106 params.param1 = lower_32_bits(dwc->ep0_trb_addr);
108 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
109 DWC3_DEPCMD_STARTTRANSFER, ¶ms);
111 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
115 dep->flags |= DWC3_EP_BUSY;
116 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
119 dwc->ep0_next_event = DWC3_EP0_COMPLETE;
124 static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
125 struct dwc3_request *req)
127 struct dwc3 *dwc = dep->dwc;
129 req->request.actual = 0;
130 req->request.status = -EINPROGRESS;
131 req->epnum = dep->number;
133 list_add_tail(&req->list, &dep->request_list);
136 * Gadget driver might not be quick enough to queue a request
137 * before we get a Transfer Not Ready event on this endpoint.
139 * In that case, we will set DWC3_EP_PENDING_REQUEST. When that
140 * flag is set, it's telling us that as soon as Gadget queues the
141 * required request, we should kick the transfer here because the
142 * IRQ we were waiting for is long gone.
144 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
147 direction = !!(dep->flags & DWC3_EP0_DIR_IN);
149 if (dwc->ep0state != EP0_DATA_PHASE) {
150 dev_WARN(dwc->dev, "Unexpected pending request\n");
154 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
156 dep->flags &= ~(DWC3_EP_PENDING_REQUEST |
163 * In case gadget driver asked us to delay the STATUS phase,
166 if (dwc->delayed_status) {
169 direction = !dwc->ep0_expect_in;
170 dwc->delayed_status = false;
172 if (dwc->ep0state == EP0_STATUS_PHASE)
173 __dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
175 dev_dbg(dwc->dev, "too early for delayed status\n");
181 * Unfortunately we have uncovered a limitation wrt the Data Phase.
183 * Section 9.4 says we can wait for the XferNotReady(DATA) event to
184 * come before issueing Start Transfer command, but if we do, we will
185 * miss situations where the host starts another SETUP phase instead of
186 * the DATA phase. Such cases happen at least on TD.7.6 of the Link
187 * Layer Compliance Suite.
189 * The problem surfaces due to the fact that in case of back-to-back
190 * SETUP packets there will be no XferNotReady(DATA) generated and we
191 * will be stuck waiting for XferNotReady(DATA) forever.
193 * By looking at tables 9-13 and 9-14 of the Databook, we can see that
194 * it tells us to start Data Phase right away. It also mentions that if
195 * we receive a SETUP phase instead of the DATA phase, core will issue
196 * XferComplete for the DATA phase, before actually initiating it in
197 * the wire, with the TRB's status set to "SETUP_PENDING". Such status
198 * can only be used to print some debugging logs, as the core expects
199 * us to go through to the STATUS phase and start a CONTROL_STATUS TRB,
200 * just so it completes right away, without transferring anything and,
201 * only then, we can go back to the SETUP phase.
203 * Because of this scenario, SNPS decided to change the programming
204 * model of control transfers and support on-demand transfers only for
205 * the STATUS phase. To fix the issue we have now, we will always wait
206 * for gadget driver to queue the DATA phase's struct usb_request, then
207 * start it right away.
209 * If we're actually in a 2-stage transfer, we will wait for
210 * XferNotReady(STATUS).
212 if (dwc->three_stage_setup) {
215 direction = dwc->ep0_expect_in;
216 dwc->ep0state = EP0_DATA_PHASE;
218 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
220 dep->flags &= ~DWC3_EP0_DIR_IN;
226 int dwc3_gadget_ep0_queue(struct usb_ep *ep, struct usb_request *request,
229 struct dwc3_request *req = to_dwc3_request(request);
230 struct dwc3_ep *dep = to_dwc3_ep(ep);
231 struct dwc3 *dwc = dep->dwc;
237 spin_lock_irqsave(&dwc->lock, flags);
238 if (!dep->endpoint.desc) {
239 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
245 /* we share one TRB for ep0/1 */
246 if (!list_empty(&dep->request_list)) {
251 dev_vdbg(dwc->dev, "queueing request %p to %s length %d, state '%s'\n",
252 request, dep->name, request->length,
253 dwc3_ep0_state_string(dwc->ep0state));
255 ret = __dwc3_gadget_ep0_queue(dep, req);
258 spin_unlock_irqrestore(&dwc->lock, flags);
263 static void dwc3_ep0_stall_and_restart(struct dwc3 *dwc)
267 /* reinitialize physical ep1 */
269 dep->flags = DWC3_EP_ENABLED;
271 /* stall is always issued on EP0 */
273 __dwc3_gadget_ep_set_halt(dep, 1);
274 dep->flags = DWC3_EP_ENABLED;
275 dwc->delayed_status = false;
277 if (!list_empty(&dep->request_list)) {
278 struct dwc3_request *req;
280 req = next_request(&dep->request_list);
281 dwc3_gadget_giveback(dep, req, -ECONNRESET);
284 dwc->ep0state = EP0_SETUP_PHASE;
285 dwc3_ep0_out_start(dwc);
288 int dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
290 struct dwc3_ep *dep = to_dwc3_ep(ep);
291 struct dwc3 *dwc = dep->dwc;
293 dwc3_ep0_stall_and_restart(dwc);
298 void dwc3_ep0_out_start(struct dwc3 *dwc)
302 ret = dwc3_ep0_start_trans(dwc, 0, dwc->ctrl_req_addr, 8,
303 DWC3_TRBCTL_CONTROL_SETUP);
307 static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le)
310 u32 windex = le16_to_cpu(wIndex_le);
313 epnum = (windex & USB_ENDPOINT_NUMBER_MASK) << 1;
314 if ((windex & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
317 dep = dwc->eps[epnum];
318 if (dep->flags & DWC3_EP_ENABLED)
324 static void dwc3_ep0_status_cmpl(struct usb_ep *ep, struct usb_request *req)
330 static int dwc3_ep0_handle_status(struct dwc3 *dwc,
331 struct usb_ctrlrequest *ctrl)
337 __le16 *response_pkt;
339 recip = ctrl->bRequestType & USB_RECIP_MASK;
341 case USB_RECIP_DEVICE:
343 * LTM will be set once we know how to set this in HW.
345 usb_status |= dwc->is_selfpowered << USB_DEVICE_SELF_POWERED;
347 if (dwc->speed == DWC3_DSTS_SUPERSPEED) {
348 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
349 if (reg & DWC3_DCTL_INITU1ENA)
350 usb_status |= 1 << USB_DEV_STAT_U1_ENABLED;
351 if (reg & DWC3_DCTL_INITU2ENA)
352 usb_status |= 1 << USB_DEV_STAT_U2_ENABLED;
357 case USB_RECIP_INTERFACE:
359 * Function Remote Wake Capable D0
360 * Function Remote Wakeup D1
364 case USB_RECIP_ENDPOINT:
365 dep = dwc3_wIndex_to_dep(dwc, ctrl->wIndex);
369 if (dep->flags & DWC3_EP_STALL)
370 usb_status = 1 << USB_ENDPOINT_HALT;
376 response_pkt = (__le16 *) dwc->setup_buf;
377 *response_pkt = cpu_to_le16(usb_status);
380 dwc->ep0_usb_req.dep = dep;
381 dwc->ep0_usb_req.request.length = sizeof(*response_pkt);
382 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
383 dwc->ep0_usb_req.request.complete = dwc3_ep0_status_cmpl;
385 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
388 static int dwc3_ep0_handle_feature(struct dwc3 *dwc,
389 struct usb_ctrlrequest *ctrl, int set)
397 enum usb_device_state state;
399 wValue = le16_to_cpu(ctrl->wValue);
400 wIndex = le16_to_cpu(ctrl->wIndex);
401 recip = ctrl->bRequestType & USB_RECIP_MASK;
402 state = dwc->gadget.state;
405 case USB_RECIP_DEVICE:
408 case USB_DEVICE_REMOTE_WAKEUP:
411 * 9.4.1 says only only for SS, in AddressState only for
412 * default control pipe
414 case USB_DEVICE_U1_ENABLE:
415 if (state != USB_STATE_CONFIGURED)
417 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
420 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
422 reg |= DWC3_DCTL_INITU1ENA;
424 reg &= ~DWC3_DCTL_INITU1ENA;
425 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
428 case USB_DEVICE_U2_ENABLE:
429 if (state != USB_STATE_CONFIGURED)
431 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
434 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
436 reg |= DWC3_DCTL_INITU2ENA;
438 reg &= ~DWC3_DCTL_INITU2ENA;
439 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
442 case USB_DEVICE_LTM_ENABLE:
446 case USB_DEVICE_TEST_MODE:
447 if ((wIndex & 0xff) != 0)
452 dwc->test_mode_nr = wIndex >> 8;
453 dwc->test_mode = true;
460 case USB_RECIP_INTERFACE:
462 case USB_INTRF_FUNC_SUSPEND:
463 if (wIndex & USB_INTRF_FUNC_SUSPEND_LP)
464 /* XXX enable Low power suspend */
466 if (wIndex & USB_INTRF_FUNC_SUSPEND_RW)
467 /* XXX enable remote wakeup */
475 case USB_RECIP_ENDPOINT:
477 case USB_ENDPOINT_HALT:
478 dep = dwc3_wIndex_to_dep(dwc, wIndex);
481 ret = __dwc3_gadget_ep_set_halt(dep, set);
497 static int dwc3_ep0_set_address(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
499 enum usb_device_state state = dwc->gadget.state;
503 addr = le16_to_cpu(ctrl->wValue);
505 dev_dbg(dwc->dev, "invalid device address %d\n", addr);
509 if (state == USB_STATE_CONFIGURED) {
510 dev_dbg(dwc->dev, "trying to set address when configured\n");
514 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
515 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
516 reg |= DWC3_DCFG_DEVADDR(addr);
517 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
520 usb_gadget_set_state(&dwc->gadget, USB_STATE_ADDRESS);
522 usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
527 static int dwc3_ep0_delegate_req(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
531 spin_unlock(&dwc->lock);
532 ret = dwc->gadget_driver->setup(&dwc->gadget, ctrl);
533 spin_lock(&dwc->lock);
537 static int dwc3_ep0_set_config(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
539 enum usb_device_state state = dwc->gadget.state;
544 dwc->start_config_issued = false;
545 cfg = le16_to_cpu(ctrl->wValue);
548 case USB_STATE_DEFAULT:
552 case USB_STATE_ADDRESS:
553 ret = dwc3_ep0_delegate_req(dwc, ctrl);
554 /* if the cfg matches and the cfg is non zero */
555 if (cfg && (!ret || (ret == USB_GADGET_DELAYED_STATUS))) {
556 usb_gadget_set_state(&dwc->gadget,
557 USB_STATE_CONFIGURED);
560 * Enable transition to U1/U2 state when
561 * nothing is pending from application.
563 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
564 reg |= (DWC3_DCTL_ACCEPTU1ENA | DWC3_DCTL_ACCEPTU2ENA);
565 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
567 dwc->resize_fifos = true;
568 dev_dbg(dwc->dev, "resize fifos flag SET\n");
572 case USB_STATE_CONFIGURED:
573 ret = dwc3_ep0_delegate_req(dwc, ctrl);
575 usb_gadget_set_state(&dwc->gadget,
584 static void dwc3_ep0_set_sel_cmpl(struct usb_ep *ep, struct usb_request *req)
586 struct dwc3_ep *dep = to_dwc3_ep(ep);
587 struct dwc3 *dwc = dep->dwc;
601 memcpy(&timing, req->buf, sizeof(timing));
603 dwc->u1sel = timing.u1sel;
604 dwc->u1pel = timing.u1pel;
605 dwc->u2sel = le16_to_cpu(timing.u2sel);
606 dwc->u2pel = le16_to_cpu(timing.u2pel);
608 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
609 if (reg & DWC3_DCTL_INITU2ENA)
611 if (reg & DWC3_DCTL_INITU1ENA)
615 * According to Synopsys Databook, if parameter is
616 * greater than 125, a value of zero should be
617 * programmed in the register.
622 /* now that we have the time, issue DGCMD Set Sel */
623 ret = dwc3_send_gadget_generic_command(dwc,
624 DWC3_DGCMD_SET_PERIODIC_PAR, param);
628 static int dwc3_ep0_set_sel(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
631 enum usb_device_state state = dwc->gadget.state;
635 if (state == USB_STATE_DEFAULT)
638 wValue = le16_to_cpu(ctrl->wValue);
639 wLength = le16_to_cpu(ctrl->wLength);
642 dev_err(dwc->dev, "Set SEL should be 6 bytes, got %d\n",
648 * To handle Set SEL we need to receive 6 bytes from Host. So let's
649 * queue a usb_request for 6 bytes.
651 * Remember, though, this controller can't handle non-wMaxPacketSize
652 * aligned transfers on the OUT direction, so we queue a request for
653 * wMaxPacketSize instead.
656 dwc->ep0_usb_req.dep = dep;
657 dwc->ep0_usb_req.request.length = dep->endpoint.maxpacket;
658 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
659 dwc->ep0_usb_req.request.complete = dwc3_ep0_set_sel_cmpl;
661 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
664 static int dwc3_ep0_set_isoch_delay(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
670 wValue = le16_to_cpu(ctrl->wValue);
671 wLength = le16_to_cpu(ctrl->wLength);
672 wIndex = le16_to_cpu(ctrl->wIndex);
674 if (wIndex || wLength)
678 * REVISIT It's unclear from Databook what to do with this
679 * value. For now, just cache it.
681 dwc->isoch_delay = wValue;
686 static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
690 switch (ctrl->bRequest) {
691 case USB_REQ_GET_STATUS:
692 dev_vdbg(dwc->dev, "USB_REQ_GET_STATUS\n");
693 ret = dwc3_ep0_handle_status(dwc, ctrl);
695 case USB_REQ_CLEAR_FEATURE:
696 dev_vdbg(dwc->dev, "USB_REQ_CLEAR_FEATURE\n");
697 ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
699 case USB_REQ_SET_FEATURE:
700 dev_vdbg(dwc->dev, "USB_REQ_SET_FEATURE\n");
701 ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
703 case USB_REQ_SET_ADDRESS:
704 dev_vdbg(dwc->dev, "USB_REQ_SET_ADDRESS\n");
705 ret = dwc3_ep0_set_address(dwc, ctrl);
707 case USB_REQ_SET_CONFIGURATION:
708 dev_vdbg(dwc->dev, "USB_REQ_SET_CONFIGURATION\n");
709 ret = dwc3_ep0_set_config(dwc, ctrl);
711 case USB_REQ_SET_SEL:
712 dev_vdbg(dwc->dev, "USB_REQ_SET_SEL\n");
713 ret = dwc3_ep0_set_sel(dwc, ctrl);
715 case USB_REQ_SET_ISOCH_DELAY:
716 dev_vdbg(dwc->dev, "USB_REQ_SET_ISOCH_DELAY\n");
717 ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
720 dev_vdbg(dwc->dev, "Forwarding to gadget driver\n");
721 ret = dwc3_ep0_delegate_req(dwc, ctrl);
728 static void dwc3_ep0_inspect_setup(struct dwc3 *dwc,
729 const struct dwc3_event_depevt *event)
731 struct usb_ctrlrequest *ctrl = dwc->ctrl_req;
735 if (!dwc->gadget_driver)
738 len = le16_to_cpu(ctrl->wLength);
740 dwc->three_stage_setup = false;
741 dwc->ep0_expect_in = false;
742 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
744 dwc->three_stage_setup = true;
745 dwc->ep0_expect_in = !!(ctrl->bRequestType & USB_DIR_IN);
746 dwc->ep0_next_event = DWC3_EP0_NRDY_DATA;
749 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD)
750 ret = dwc3_ep0_std_request(dwc, ctrl);
752 ret = dwc3_ep0_delegate_req(dwc, ctrl);
754 if (ret == USB_GADGET_DELAYED_STATUS)
755 dwc->delayed_status = true;
759 dwc3_ep0_stall_and_restart(dwc);
762 static void dwc3_ep0_complete_data(struct dwc3 *dwc,
763 const struct dwc3_event_depevt *event)
765 struct dwc3_request *r = NULL;
766 struct usb_request *ur;
767 struct dwc3_trb *trb;
774 epnum = event->endpoint_number;
777 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
779 r = next_request(&ep0->request_list);
784 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
785 if (status == DWC3_TRBSTS_SETUP_PENDING) {
786 dev_dbg(dwc->dev, "Setup Pending received\n");
789 dwc3_gadget_giveback(ep0, r, -ECONNRESET);
794 length = trb->size & DWC3_TRB_SIZE_MASK;
796 if (dwc->ep0_bounced) {
797 unsigned transfer_size = ur->length;
798 unsigned maxp = ep0->endpoint.maxpacket;
800 transfer_size += (maxp - (transfer_size % maxp));
801 transferred = min_t(u32, ur->length,
802 transfer_size - length);
803 memcpy(ur->buf, dwc->ep0_bounce, transferred);
805 transferred = ur->length - length;
808 ur->actual += transferred;
810 if ((epnum & 1) && ur->actual < ur->length) {
811 /* for some reason we did not get everything out */
813 dwc3_ep0_stall_and_restart(dwc);
816 * handle the case where we have to send a zero packet. This
817 * seems to be case when req.length > maxpacket. Could it be?
820 dwc3_gadget_giveback(ep0, r, 0);
824 static void dwc3_ep0_complete_status(struct dwc3 *dwc,
825 const struct dwc3_event_depevt *event)
827 struct dwc3_request *r;
829 struct dwc3_trb *trb;
835 if (!list_empty(&dep->request_list)) {
836 r = next_request(&dep->request_list);
838 dwc3_gadget_giveback(dep, r, 0);
841 if (dwc->test_mode) {
844 ret = dwc3_gadget_set_test_mode(dwc, dwc->test_mode_nr);
846 dev_dbg(dwc->dev, "Invalid Test #%d\n",
848 dwc3_ep0_stall_and_restart(dwc);
853 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
854 if (status == DWC3_TRBSTS_SETUP_PENDING)
855 dev_dbg(dwc->dev, "Setup Pending received\n");
857 dwc->ep0state = EP0_SETUP_PHASE;
858 dwc3_ep0_out_start(dwc);
861 static void dwc3_ep0_xfer_complete(struct dwc3 *dwc,
862 const struct dwc3_event_depevt *event)
864 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
866 dep->flags &= ~DWC3_EP_BUSY;
867 dep->resource_index = 0;
868 dwc->setup_packet_pending = false;
870 switch (dwc->ep0state) {
871 case EP0_SETUP_PHASE:
872 dev_vdbg(dwc->dev, "Inspecting Setup Bytes\n");
873 dwc3_ep0_inspect_setup(dwc, event);
877 dev_vdbg(dwc->dev, "Data Phase\n");
878 dwc3_ep0_complete_data(dwc, event);
881 case EP0_STATUS_PHASE:
882 dev_vdbg(dwc->dev, "Status Phase\n");
883 dwc3_ep0_complete_status(dwc, event);
886 WARN(true, "UNKNOWN ep0state %d\n", dwc->ep0state);
890 static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
891 struct dwc3_ep *dep, struct dwc3_request *req)
895 req->direction = !!dep->number;
897 if (req->request.length == 0) {
898 ret = dwc3_ep0_start_trans(dwc, dep->number,
899 dwc->ctrl_req_addr, 0,
900 DWC3_TRBCTL_CONTROL_DATA);
901 } else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)
902 && (dep->number == 0)) {
906 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
909 dev_dbg(dwc->dev, "failed to map request\n");
913 WARN_ON(req->request.length > DWC3_EP0_BOUNCE_SIZE);
915 maxpacket = dep->endpoint.maxpacket;
916 transfer_size = roundup(req->request.length, maxpacket);
918 dwc->ep0_bounced = true;
921 * REVISIT in case request length is bigger than
922 * DWC3_EP0_BOUNCE_SIZE we will need two chained
923 * TRBs to handle the transfer.
925 ret = dwc3_ep0_start_trans(dwc, dep->number,
926 dwc->ep0_bounce_addr, transfer_size,
927 DWC3_TRBCTL_CONTROL_DATA);
929 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
932 dev_dbg(dwc->dev, "failed to map request\n");
936 ret = dwc3_ep0_start_trans(dwc, dep->number, req->request.dma,
937 req->request.length, DWC3_TRBCTL_CONTROL_DATA);
943 static int dwc3_ep0_start_control_status(struct dwc3_ep *dep)
945 struct dwc3 *dwc = dep->dwc;
948 type = dwc->three_stage_setup ? DWC3_TRBCTL_CONTROL_STATUS3
949 : DWC3_TRBCTL_CONTROL_STATUS2;
951 return dwc3_ep0_start_trans(dwc, dep->number,
952 dwc->ctrl_req_addr, 0, type);
955 static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep)
957 if (dwc->resize_fifos) {
958 dev_dbg(dwc->dev, "starting to resize fifos\n");
959 dwc3_gadget_resize_tx_fifos(dwc);
960 dwc->resize_fifos = 0;
963 WARN_ON(dwc3_ep0_start_control_status(dep));
966 static void dwc3_ep0_do_control_status(struct dwc3 *dwc,
967 const struct dwc3_event_depevt *event)
969 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
971 __dwc3_ep0_do_control_status(dwc, dep);
974 static void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep)
976 struct dwc3_gadget_ep_cmd_params params;
980 if (!dep->resource_index)
983 cmd = DWC3_DEPCMD_ENDTRANSFER;
984 cmd |= DWC3_DEPCMD_CMDIOC;
985 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
986 memset(¶ms, 0, sizeof(params));
987 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, ¶ms);
989 dep->resource_index = 0;
992 static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
993 const struct dwc3_event_depevt *event)
995 dwc->setup_packet_pending = true;
997 switch (event->status) {
998 case DEPEVT_STATUS_CONTROL_DATA:
999 dev_vdbg(dwc->dev, "Control Data\n");
1002 * We already have a DATA transfer in the controller's cache,
1003 * if we receive a XferNotReady(DATA) we will ignore it, unless
1004 * it's for the wrong direction.
1006 * In that case, we must issue END_TRANSFER command to the Data
1007 * Phase we already have started and issue SetStall on the
1010 if (dwc->ep0_expect_in != event->endpoint_number) {
1011 struct dwc3_ep *dep = dwc->eps[dwc->ep0_expect_in];
1013 dev_vdbg(dwc->dev, "Wrong direction for Data phase\n");
1014 dwc3_ep0_end_control_data(dwc, dep);
1015 dwc3_ep0_stall_and_restart(dwc);
1021 case DEPEVT_STATUS_CONTROL_STATUS:
1022 if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
1025 dev_vdbg(dwc->dev, "Control Status\n");
1027 dwc->ep0state = EP0_STATUS_PHASE;
1029 if (dwc->delayed_status) {
1030 WARN_ON_ONCE(event->endpoint_number != 1);
1031 dev_vdbg(dwc->dev, "Mass Storage delayed status\n");
1035 dwc3_ep0_do_control_status(dwc, event);
1039 void dwc3_ep0_interrupt(struct dwc3 *dwc,
1040 const struct dwc3_event_depevt *event)
1042 u8 epnum = event->endpoint_number;
1044 dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
1045 dwc3_ep_event_string(event->endpoint_event),
1046 epnum >> 1, (epnum & 1) ? "in" : "out",
1047 dwc3_ep0_state_string(dwc->ep0state));
1049 switch (event->endpoint_event) {
1050 case DWC3_DEPEVT_XFERCOMPLETE:
1051 dwc3_ep0_xfer_complete(dwc, event);
1054 case DWC3_DEPEVT_XFERNOTREADY:
1055 dwc3_ep0_xfernotready(dwc, event);
1058 case DWC3_DEPEVT_XFERINPROGRESS:
1059 case DWC3_DEPEVT_RXTXFIFOEVT:
1060 case DWC3_DEPEVT_STREAMEVT:
1061 case DWC3_DEPEVT_EPCMDCMPLT: