1 // SPDX-License-Identifier: GPL-2.0
3 * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com
11 #include <linux/kernel.h>
12 #include <linux/delay.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/interrupt.h>
19 #include <linux/list.h>
20 #include <linux/dma-mapping.h>
22 #include <linux/usb/ch9.h>
23 #include <linux/usb/gadget.h>
30 #define DWC3_ALIGN_FRAME(d, n) (((d)->frame_number + ((d)->interval * (n))) \
31 & ~((d)->interval - 1))
34 * dwc3_gadget_set_test_mode - enables usb2 test modes
35 * @dwc: pointer to our context structure
36 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
38 * Caller should take care of locking. This function will return 0 on
39 * success or -EINVAL if wrong Test Selector is passed.
41 int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
45 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
46 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
51 case USB_TEST_SE0_NAK:
53 case USB_TEST_FORCE_ENABLE:
60 dwc3_gadget_dctl_write_safe(dwc, reg);
66 * dwc3_gadget_get_link_state - gets current state of usb link
67 * @dwc: pointer to our context structure
69 * Caller should take care of locking. This function will
70 * return the link state on success (>= 0) or -ETIMEDOUT.
72 int dwc3_gadget_get_link_state(struct dwc3 *dwc)
76 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
78 return DWC3_DSTS_USBLNKST(reg);
82 * dwc3_gadget_set_link_state - sets usb link to a particular state
83 * @dwc: pointer to our context structure
84 * @state: the state to put link into
86 * Caller should take care of locking. This function will
87 * return 0 on success or -ETIMEDOUT.
89 int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
95 * Wait until device controller is ready. Only applies to 1.94a and
98 if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) {
100 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
101 if (reg & DWC3_DSTS_DCNRD)
111 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
112 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
114 /* set no action before sending new link state change */
115 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
117 /* set requested state */
118 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
119 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
122 * The following code is racy when called from dwc3_gadget_wakeup,
123 * and is not needed, at least on newer versions
125 if (!DWC3_VER_IS_PRIOR(DWC3, 194A))
128 /* wait for a change in DSTS */
131 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
133 if (DWC3_DSTS_USBLNKST(reg) == state)
143 * dwc3_ep_inc_trb - increment a trb index.
144 * @index: Pointer to the TRB index to increment.
146 * The index should never point to the link TRB. After incrementing,
147 * if it is point to the link TRB, wrap around to the beginning. The
148 * link TRB is always at the last TRB entry.
150 static void dwc3_ep_inc_trb(u8 *index)
153 if (*index == (DWC3_TRB_NUM - 1))
158 * dwc3_ep_inc_enq - increment endpoint's enqueue pointer
159 * @dep: The endpoint whose enqueue pointer we're incrementing
161 static void dwc3_ep_inc_enq(struct dwc3_ep *dep)
163 dwc3_ep_inc_trb(&dep->trb_enqueue);
167 * dwc3_ep_inc_deq - increment endpoint's dequeue pointer
168 * @dep: The endpoint whose enqueue pointer we're incrementing
170 static void dwc3_ep_inc_deq(struct dwc3_ep *dep)
172 dwc3_ep_inc_trb(&dep->trb_dequeue);
175 static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep,
176 struct dwc3_request *req, int status)
178 struct dwc3 *dwc = dep->dwc;
180 list_del(&req->list);
182 req->needs_extra_trb = false;
184 if (req->request.status == -EINPROGRESS)
185 req->request.status = status;
188 usb_gadget_unmap_request_by_dev(dwc->sysdev,
189 &req->request, req->direction);
192 trace_dwc3_gadget_giveback(req);
195 pm_runtime_put(dwc->dev);
199 * dwc3_gadget_giveback - call struct usb_request's ->complete callback
200 * @dep: The endpoint to whom the request belongs to
201 * @req: The request we're giving back
202 * @status: completion code for the request
204 * Must be called with controller's lock held and interrupts disabled. This
205 * function will unmap @req and call its ->complete() callback to notify upper
206 * layers that it has completed.
208 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
211 struct dwc3 *dwc = dep->dwc;
213 dwc3_gadget_del_and_unmap_request(dep, req, status);
214 req->status = DWC3_REQUEST_STATUS_COMPLETED;
216 spin_unlock(&dwc->lock);
217 usb_gadget_giveback_request(&dep->endpoint, &req->request);
218 spin_lock(&dwc->lock);
222 * dwc3_send_gadget_generic_command - issue a generic command for the controller
223 * @dwc: pointer to the controller context
224 * @cmd: the command to be issued
225 * @param: command parameter
227 * Caller should take care of locking. Issue @cmd with a given @param to @dwc
228 * and wait for its completion.
230 int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned int cmd,
238 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
239 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
242 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
243 if (!(reg & DWC3_DGCMD_CMDACT)) {
244 status = DWC3_DGCMD_STATUS(reg);
256 trace_dwc3_gadget_generic_cmd(cmd, param, status);
261 static int __dwc3_gadget_wakeup(struct dwc3 *dwc);
264 * dwc3_send_gadget_ep_cmd - issue an endpoint command
265 * @dep: the endpoint to which the command is going to be issued
266 * @cmd: the command to be issued
267 * @params: parameters to the command
269 * Caller should handle locking. This function will issue @cmd with given
270 * @params to @dep and wait for its completion.
272 int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned int cmd,
273 struct dwc3_gadget_ep_cmd_params *params)
275 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
276 struct dwc3 *dwc = dep->dwc;
278 u32 saved_config = 0;
285 * When operating in USB 2.0 speeds (HS/FS), if GUSB2PHYCFG.ENBLSLPM or
286 * GUSB2PHYCFG.SUSPHY is set, it must be cleared before issuing an
289 * Save and clear both GUSB2PHYCFG.ENBLSLPM and GUSB2PHYCFG.SUSPHY
290 * settings. Restore them after the command is completed.
292 * DWC_usb3 3.30a and DWC_usb31 1.90a programming guide section 3.2.2
294 if (dwc->gadget->speed <= USB_SPEED_HIGH) {
295 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
296 if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) {
297 saved_config |= DWC3_GUSB2PHYCFG_SUSPHY;
298 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
301 if (reg & DWC3_GUSB2PHYCFG_ENBLSLPM) {
302 saved_config |= DWC3_GUSB2PHYCFG_ENBLSLPM;
303 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
307 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
310 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) {
313 needs_wakeup = (dwc->link_state == DWC3_LINK_STATE_U1 ||
314 dwc->link_state == DWC3_LINK_STATE_U2 ||
315 dwc->link_state == DWC3_LINK_STATE_U3);
317 if (unlikely(needs_wakeup)) {
318 ret = __dwc3_gadget_wakeup(dwc);
319 dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n",
324 dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0);
325 dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1);
326 dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2);
329 * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're
330 * not relying on XferNotReady, we can make use of a special "No
331 * Response Update Transfer" command where we should clear both CmdAct
334 * With this, we don't need to wait for command completion and can
335 * straight away issue further commands to the endpoint.
337 * NOTICE: We're making an assumption that control endpoints will never
338 * make use of Update Transfer command. This is a safe assumption
339 * because we can never have more than one request at a time with
340 * Control Endpoints. If anybody changes that assumption, this chunk
341 * needs to be updated accordingly.
343 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER &&
344 !usb_endpoint_xfer_isoc(desc))
345 cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT);
347 cmd |= DWC3_DEPCMD_CMDACT;
349 dwc3_writel(dep->regs, DWC3_DEPCMD, cmd);
351 reg = dwc3_readl(dep->regs, DWC3_DEPCMD);
352 if (!(reg & DWC3_DEPCMD_CMDACT)) {
353 cmd_status = DWC3_DEPCMD_STATUS(reg);
355 switch (cmd_status) {
359 case DEPEVT_TRANSFER_NO_RESOURCE:
360 dev_WARN(dwc->dev, "No resource for %s\n",
364 case DEPEVT_TRANSFER_BUS_EXPIRY:
366 * SW issues START TRANSFER command to
367 * isochronous ep with future frame interval. If
368 * future interval time has already passed when
369 * core receives the command, it will respond
370 * with an error status of 'Bus Expiry'.
372 * Instead of always returning -EINVAL, let's
373 * give a hint to the gadget driver that this is
374 * the case by returning -EAGAIN.
379 dev_WARN(dwc->dev, "UNKNOWN cmd status\n");
388 cmd_status = -ETIMEDOUT;
391 trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status);
393 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) {
395 dep->flags |= DWC3_EP_TRANSFER_STARTED;
397 if (ret != -ETIMEDOUT)
398 dwc3_gadget_ep_get_transfer_index(dep);
402 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
404 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
410 static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep)
412 struct dwc3 *dwc = dep->dwc;
413 struct dwc3_gadget_ep_cmd_params params;
414 u32 cmd = DWC3_DEPCMD_CLEARSTALL;
417 * As of core revision 2.60a the recommended programming model
418 * is to set the ClearPendIN bit when issuing a Clear Stall EP
419 * command for IN endpoints. This is to prevent an issue where
420 * some (non-compliant) hosts may not send ACK TPs for pending
421 * IN transfers due to a mishandled error condition. Synopsys
424 if (dep->direction &&
425 !DWC3_VER_IS_PRIOR(DWC3, 260A) &&
426 (dwc->gadget->speed >= USB_SPEED_SUPER))
427 cmd |= DWC3_DEPCMD_CLEARPENDIN;
429 memset(¶ms, 0, sizeof(params));
431 return dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
434 static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
435 struct dwc3_trb *trb)
437 u32 offset = (char *) trb - (char *) dep->trb_pool;
439 return dep->trb_pool_dma + offset;
442 static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
444 struct dwc3 *dwc = dep->dwc;
449 dep->trb_pool = dma_alloc_coherent(dwc->sysdev,
450 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
451 &dep->trb_pool_dma, GFP_KERNEL);
452 if (!dep->trb_pool) {
453 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
461 static void dwc3_free_trb_pool(struct dwc3_ep *dep)
463 struct dwc3 *dwc = dep->dwc;
465 dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
466 dep->trb_pool, dep->trb_pool_dma);
468 dep->trb_pool = NULL;
469 dep->trb_pool_dma = 0;
472 static int dwc3_gadget_set_xfer_resource(struct dwc3_ep *dep)
474 struct dwc3_gadget_ep_cmd_params params;
476 memset(¶ms, 0x00, sizeof(params));
478 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
480 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE,
485 * dwc3_gadget_start_config - configure ep resources
486 * @dep: endpoint that is being enabled
488 * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's
489 * completion, it will set Transfer Resource for all available endpoints.
491 * The assignment of transfer resources cannot perfectly follow the data book
492 * due to the fact that the controller driver does not have all knowledge of the
493 * configuration in advance. It is given this information piecemeal by the
494 * composite gadget framework after every SET_CONFIGURATION and
495 * SET_INTERFACE. Trying to follow the databook programming model in this
496 * scenario can cause errors. For two reasons:
498 * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every
499 * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is
500 * incorrect in the scenario of multiple interfaces.
502 * 2) The databook does not mention doing more %DWC3_DEPCMD_DEPXFERCFG for new
503 * endpoint on alt setting (8.1.6).
505 * The following simplified method is used instead:
507 * All hardware endpoints can be assigned a transfer resource and this setting
508 * will stay persistent until either a core reset or hibernation. So whenever we
509 * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do
510 * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are
511 * guaranteed that there are as many transfer resources as endpoints.
513 * This function is called for each endpoint when it is being enabled but is
514 * triggered only when called for EP0-out, which always happens first, and which
515 * should only happen in one of the above conditions.
517 static int dwc3_gadget_start_config(struct dwc3_ep *dep)
519 struct dwc3_gadget_ep_cmd_params params;
528 memset(¶ms, 0x00, sizeof(params));
529 cmd = DWC3_DEPCMD_DEPSTARTCFG;
532 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
536 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
537 struct dwc3_ep *dep = dwc->eps[i];
542 ret = dwc3_gadget_set_xfer_resource(dep);
550 static int dwc3_gadget_set_ep_config(struct dwc3_ep *dep, unsigned int action)
552 const struct usb_ss_ep_comp_descriptor *comp_desc;
553 const struct usb_endpoint_descriptor *desc;
554 struct dwc3_gadget_ep_cmd_params params;
555 struct dwc3 *dwc = dep->dwc;
557 comp_desc = dep->endpoint.comp_desc;
558 desc = dep->endpoint.desc;
560 memset(¶ms, 0x00, sizeof(params));
562 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
563 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
565 /* Burst size is only needed in SuperSpeed mode */
566 if (dwc->gadget->speed >= USB_SPEED_SUPER) {
567 u32 burst = dep->endpoint.maxburst;
569 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1);
572 params.param0 |= action;
573 if (action == DWC3_DEPCFG_ACTION_RESTORE)
574 params.param2 |= dep->saved_state;
576 if (usb_endpoint_xfer_control(desc))
577 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN;
579 if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc))
580 params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN;
582 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
583 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
584 | DWC3_DEPCFG_XFER_COMPLETE_EN
585 | DWC3_DEPCFG_STREAM_EVENT_EN;
586 dep->stream_capable = true;
589 if (!usb_endpoint_xfer_control(desc))
590 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
593 * We are doing 1:1 mapping for endpoints, meaning
594 * Physical Endpoints 2 maps to Logical Endpoint 2 and
595 * so on. We consider the direction bit as part of the physical
596 * endpoint number. So USB endpoint 0x81 is 0x03.
598 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
601 * We must use the lower 16 TX FIFOs even though
605 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
607 if (desc->bInterval) {
608 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
609 dep->interval = 1 << (desc->bInterval - 1);
612 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, ¶ms);
615 static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force,
619 * __dwc3_gadget_ep_enable - initializes a hw endpoint
620 * @dep: endpoint to be initialized
621 * @action: one of INIT, MODIFY or RESTORE
623 * Caller should take care of locking. Execute all necessary commands to
624 * initialize a HW endpoint so it can be used by a gadget driver.
626 static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, unsigned int action)
628 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
629 struct dwc3 *dwc = dep->dwc;
634 if (!(dep->flags & DWC3_EP_ENABLED)) {
635 ret = dwc3_gadget_start_config(dep);
640 ret = dwc3_gadget_set_ep_config(dep, action);
644 if (!(dep->flags & DWC3_EP_ENABLED)) {
645 struct dwc3_trb *trb_st_hw;
646 struct dwc3_trb *trb_link;
648 dep->type = usb_endpoint_type(desc);
649 dep->flags |= DWC3_EP_ENABLED;
651 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
652 reg |= DWC3_DALEPENA_EP(dep->number);
653 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
655 if (usb_endpoint_xfer_control(desc))
658 /* Initialize the TRB ring */
659 dep->trb_dequeue = 0;
660 dep->trb_enqueue = 0;
661 memset(dep->trb_pool, 0,
662 sizeof(struct dwc3_trb) * DWC3_TRB_NUM);
664 /* Link TRB. The HWO bit is never reset */
665 trb_st_hw = &dep->trb_pool[0];
667 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
668 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
669 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
670 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
671 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
675 * Issue StartTransfer here with no-op TRB so we can always rely on No
676 * Response Update Transfer command.
678 if (usb_endpoint_xfer_bulk(desc) ||
679 usb_endpoint_xfer_int(desc)) {
680 struct dwc3_gadget_ep_cmd_params params;
681 struct dwc3_trb *trb;
685 memset(¶ms, 0, sizeof(params));
686 trb = &dep->trb_pool[0];
687 trb_dma = dwc3_trb_dma_offset(dep, trb);
689 params.param0 = upper_32_bits(trb_dma);
690 params.param1 = lower_32_bits(trb_dma);
692 cmd = DWC3_DEPCMD_STARTTRANSFER;
694 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
698 if (dep->stream_capable) {
700 * For streams, at start, there maybe a race where the
701 * host primes the endpoint before the function driver
702 * queues a request to initiate a stream. In that case,
703 * the controller will not see the prime to generate the
704 * ERDY and start stream. To workaround this, issue a
705 * no-op TRB as normal, but end it immediately. As a
706 * result, when the function driver queues the request,
707 * the next START_TRANSFER command will cause the
708 * controller to generate an ERDY to initiate the
711 dwc3_stop_active_transfer(dep, true, true);
714 * All stream eps will reinitiate stream on NoStream
715 * rejection until we can determine that the host can
716 * prime after the first transfer.
718 dep->flags |= DWC3_EP_FORCE_RESTART_STREAM;
723 trace_dwc3_gadget_ep_enable(dep);
728 static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
730 struct dwc3_request *req;
732 dwc3_stop_active_transfer(dep, true, false);
734 /* - giveback all requests to gadget driver */
735 while (!list_empty(&dep->started_list)) {
736 req = next_request(&dep->started_list);
738 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
741 while (!list_empty(&dep->pending_list)) {
742 req = next_request(&dep->pending_list);
744 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
747 while (!list_empty(&dep->cancelled_list)) {
748 req = next_request(&dep->cancelled_list);
750 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
755 * __dwc3_gadget_ep_disable - disables a hw endpoint
756 * @dep: the endpoint to disable
758 * This function undoes what __dwc3_gadget_ep_enable did and also removes
759 * requests which are currently being processed by the hardware and those which
760 * are not yet scheduled.
762 * Caller should take care of locking.
764 static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
766 struct dwc3 *dwc = dep->dwc;
769 trace_dwc3_gadget_ep_disable(dep);
771 dwc3_remove_requests(dwc, dep);
773 /* make sure HW endpoint isn't stalled */
774 if (dep->flags & DWC3_EP_STALL)
775 __dwc3_gadget_ep_set_halt(dep, 0, false);
777 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
778 reg &= ~DWC3_DALEPENA_EP(dep->number);
779 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
781 dep->stream_capable = false;
785 /* Clear out the ep descriptors for non-ep0 */
786 if (dep->number > 1) {
787 dep->endpoint.comp_desc = NULL;
788 dep->endpoint.desc = NULL;
794 /* -------------------------------------------------------------------------- */
796 static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
797 const struct usb_endpoint_descriptor *desc)
802 static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
807 /* -------------------------------------------------------------------------- */
809 static int dwc3_gadget_ep_enable(struct usb_ep *ep,
810 const struct usb_endpoint_descriptor *desc)
817 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
818 pr_debug("dwc3: invalid parameters\n");
822 if (!desc->wMaxPacketSize) {
823 pr_debug("dwc3: missing wMaxPacketSize\n");
827 dep = to_dwc3_ep(ep);
830 if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED,
831 "%s is already enabled\n",
835 spin_lock_irqsave(&dwc->lock, flags);
836 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
837 spin_unlock_irqrestore(&dwc->lock, flags);
842 static int dwc3_gadget_ep_disable(struct usb_ep *ep)
850 pr_debug("dwc3: invalid parameters\n");
854 dep = to_dwc3_ep(ep);
857 if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED),
858 "%s is already disabled\n",
862 spin_lock_irqsave(&dwc->lock, flags);
863 ret = __dwc3_gadget_ep_disable(dep);
864 spin_unlock_irqrestore(&dwc->lock, flags);
869 static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
872 struct dwc3_request *req;
873 struct dwc3_ep *dep = to_dwc3_ep(ep);
875 req = kzalloc(sizeof(*req), gfp_flags);
879 req->direction = dep->direction;
880 req->epnum = dep->number;
882 req->status = DWC3_REQUEST_STATUS_UNKNOWN;
884 trace_dwc3_alloc_request(req);
886 return &req->request;
889 static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
890 struct usb_request *request)
892 struct dwc3_request *req = to_dwc3_request(request);
894 trace_dwc3_free_request(req);
899 * dwc3_ep_prev_trb - returns the previous TRB in the ring
900 * @dep: The endpoint with the TRB ring
901 * @index: The index of the current TRB in the ring
903 * Returns the TRB prior to the one pointed to by the index. If the
904 * index is 0, we will wrap backwards, skip the link TRB, and return
905 * the one just before that.
907 static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index)
912 tmp = DWC3_TRB_NUM - 1;
914 return &dep->trb_pool[tmp - 1];
917 static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep)
919 struct dwc3_trb *tmp;
923 * If enqueue & dequeue are equal than it is either full or empty.
925 * One way to know for sure is if the TRB right before us has HWO bit
926 * set or not. If it has, then we're definitely full and can't fit any
927 * more transfers in our ring.
929 if (dep->trb_enqueue == dep->trb_dequeue) {
930 tmp = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
931 if (tmp->ctrl & DWC3_TRB_CTRL_HWO)
934 return DWC3_TRB_NUM - 1;
937 trbs_left = dep->trb_dequeue - dep->trb_enqueue;
938 trbs_left &= (DWC3_TRB_NUM - 1);
940 if (dep->trb_dequeue < dep->trb_enqueue)
946 static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb,
947 dma_addr_t dma, unsigned int length, unsigned int chain,
948 unsigned int node, unsigned int stream_id,
949 unsigned int short_not_ok, unsigned int no_interrupt,
950 unsigned int is_last, bool must_interrupt)
952 struct dwc3 *dwc = dep->dwc;
953 struct usb_gadget *gadget = dwc->gadget;
954 enum usb_device_speed speed = gadget->speed;
956 trb->size = DWC3_TRB_SIZE_LENGTH(length);
957 trb->bpl = lower_32_bits(dma);
958 trb->bph = upper_32_bits(dma);
960 switch (usb_endpoint_type(dep->endpoint.desc)) {
961 case USB_ENDPOINT_XFER_CONTROL:
962 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
965 case USB_ENDPOINT_XFER_ISOC:
967 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
970 * USB Specification 2.0 Section 5.9.2 states that: "If
971 * there is only a single transaction in the microframe,
972 * only a DATA0 data packet PID is used. If there are
973 * two transactions per microframe, DATA1 is used for
974 * the first transaction data packet and DATA0 is used
975 * for the second transaction data packet. If there are
976 * three transactions per microframe, DATA2 is used for
977 * the first transaction data packet, DATA1 is used for
978 * the second, and DATA0 is used for the third."
980 * IOW, we should satisfy the following cases:
982 * 1) length <= maxpacket
985 * 2) maxpacket < length <= (2 * maxpacket)
988 * 3) (2 * maxpacket) < length <= (3 * maxpacket)
989 * - DATA2, DATA1, DATA0
991 if (speed == USB_SPEED_HIGH) {
992 struct usb_ep *ep = &dep->endpoint;
993 unsigned int mult = 2;
994 unsigned int maxp = usb_endpoint_maxp(ep->desc);
996 if (length <= (2 * maxp))
1002 trb->size |= DWC3_TRB_SIZE_PCM1(mult);
1005 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS;
1008 /* always enable Interrupt on Missed ISOC */
1009 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
1012 case USB_ENDPOINT_XFER_BULK:
1013 case USB_ENDPOINT_XFER_INT:
1014 trb->ctrl = DWC3_TRBCTL_NORMAL;
1018 * This is only possible with faulty memory because we
1019 * checked it already :)
1021 dev_WARN(dwc->dev, "Unknown endpoint type %d\n",
1022 usb_endpoint_type(dep->endpoint.desc));
1026 * Enable Continue on Short Packet
1027 * when endpoint is not a stream capable
1029 if (usb_endpoint_dir_out(dep->endpoint.desc)) {
1030 if (!dep->stream_capable)
1031 trb->ctrl |= DWC3_TRB_CTRL_CSP;
1034 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
1037 if ((!no_interrupt && !chain) || must_interrupt)
1038 trb->ctrl |= DWC3_TRB_CTRL_IOC;
1041 trb->ctrl |= DWC3_TRB_CTRL_CHN;
1042 else if (dep->stream_capable && is_last)
1043 trb->ctrl |= DWC3_TRB_CTRL_LST;
1045 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
1046 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id);
1048 trb->ctrl |= DWC3_TRB_CTRL_HWO;
1050 dwc3_ep_inc_enq(dep);
1052 trace_dwc3_prepare_trb(dep, trb);
1056 * dwc3_prepare_one_trb - setup one TRB from one request
1057 * @dep: endpoint for which this request is prepared
1058 * @req: dwc3_request pointer
1059 * @trb_length: buffer size of the TRB
1060 * @chain: should this TRB be chained to the next?
1061 * @node: only for isochronous endpoints. First TRB needs different type.
1062 * @use_bounce_buffer: set to use bounce buffer
1063 * @must_interrupt: set to interrupt on TRB completion
1065 static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
1066 struct dwc3_request *req, unsigned int trb_length,
1067 unsigned int chain, unsigned int node, bool use_bounce_buffer,
1068 bool must_interrupt)
1070 struct dwc3_trb *trb;
1072 unsigned int stream_id = req->request.stream_id;
1073 unsigned int short_not_ok = req->request.short_not_ok;
1074 unsigned int no_interrupt = req->request.no_interrupt;
1075 unsigned int is_last = req->request.is_last;
1077 if (use_bounce_buffer)
1078 dma = dep->dwc->bounce_addr;
1079 else if (req->request.num_sgs > 0)
1080 dma = sg_dma_address(req->start_sg);
1082 dma = req->request.dma;
1084 trb = &dep->trb_pool[dep->trb_enqueue];
1087 dwc3_gadget_move_started_request(req);
1089 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
1094 __dwc3_prepare_one_trb(dep, trb, dma, trb_length, chain, node,
1095 stream_id, short_not_ok, no_interrupt, is_last,
1099 static bool dwc3_needs_extra_trb(struct dwc3_ep *dep, struct dwc3_request *req)
1101 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1102 unsigned int rem = req->request.length % maxp;
1104 if ((req->request.length && req->request.zero && !rem &&
1105 !usb_endpoint_xfer_isoc(dep->endpoint.desc)) ||
1106 (!req->direction && rem))
1113 * dwc3_prepare_last_sg - prepare TRBs for the last SG entry
1114 * @dep: The endpoint that the request belongs to
1115 * @req: The request to prepare
1116 * @entry_length: The last SG entry size
1117 * @node: Indicates whether this is not the first entry (for isoc only)
1119 * Return the number of TRBs prepared.
1121 static int dwc3_prepare_last_sg(struct dwc3_ep *dep,
1122 struct dwc3_request *req, unsigned int entry_length,
1125 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1126 unsigned int rem = req->request.length % maxp;
1127 unsigned int num_trbs = 1;
1129 if (dwc3_needs_extra_trb(dep, req))
1132 if (dwc3_calc_trbs_left(dep) < num_trbs)
1135 req->needs_extra_trb = num_trbs > 1;
1137 /* Prepare a normal TRB */
1138 if (req->direction || req->request.length)
1139 dwc3_prepare_one_trb(dep, req, entry_length,
1140 req->needs_extra_trb, node, false, false);
1142 /* Prepare extra TRBs for ZLP and MPS OUT transfer alignment */
1143 if ((!req->direction && !req->request.length) || req->needs_extra_trb)
1144 dwc3_prepare_one_trb(dep, req,
1145 req->direction ? 0 : maxp - rem,
1146 false, 1, true, false);
1151 static int dwc3_prepare_trbs_sg(struct dwc3_ep *dep,
1152 struct dwc3_request *req)
1154 struct scatterlist *sg = req->start_sg;
1155 struct scatterlist *s;
1157 unsigned int length = req->request.length;
1158 unsigned int remaining = req->request.num_mapped_sgs
1159 - req->num_queued_sgs;
1160 unsigned int num_trbs = req->num_trbs;
1161 bool needs_extra_trb = dwc3_needs_extra_trb(dep, req);
1164 * If we resume preparing the request, then get the remaining length of
1165 * the request and resume where we left off.
1167 for_each_sg(req->request.sg, s, req->num_queued_sgs, i)
1168 length -= sg_dma_len(s);
1170 for_each_sg(sg, s, remaining, i) {
1171 unsigned int num_trbs_left = dwc3_calc_trbs_left(dep);
1172 unsigned int trb_length;
1173 bool must_interrupt = false;
1174 bool last_sg = false;
1176 trb_length = min_t(unsigned int, length, sg_dma_len(s));
1178 length -= trb_length;
1181 * IOMMU driver is coalescing the list of sgs which shares a
1182 * page boundary into one and giving it to USB driver. With
1183 * this the number of sgs mapped is not equal to the number of
1184 * sgs passed. So mark the chain bit to false if it isthe last
1187 if ((i == remaining - 1) || !length)
1194 if (!dwc3_prepare_last_sg(dep, req, trb_length, i))
1198 * Look ahead to check if we have enough TRBs for the
1199 * next SG entry. If not, set interrupt on this TRB to
1200 * resume preparing the next SG entry when more TRBs are
1203 if (num_trbs_left == 1 || (needs_extra_trb &&
1204 num_trbs_left <= 2 &&
1205 sg_dma_len(sg_next(s)) >= length))
1206 must_interrupt = true;
1208 dwc3_prepare_one_trb(dep, req, trb_length, 1, i, false,
1213 * There can be a situation where all sgs in sglist are not
1214 * queued because of insufficient trb number. To handle this
1215 * case, update start_sg to next sg to be queued, so that
1216 * we have free trbs we can continue queuing from where we
1217 * previously stopped
1220 req->start_sg = sg_next(s);
1222 req->num_queued_sgs++;
1225 * The number of pending SG entries may not correspond to the
1226 * number of mapped SG entries. If all the data are queued, then
1227 * don't include unused SG entries.
1230 req->num_pending_sgs -= req->request.num_mapped_sgs - req->num_queued_sgs;
1238 return req->num_trbs - num_trbs;
1241 static int dwc3_prepare_trbs_linear(struct dwc3_ep *dep,
1242 struct dwc3_request *req)
1244 return dwc3_prepare_last_sg(dep, req, req->request.length, 0);
1248 * dwc3_prepare_trbs - setup TRBs from requests
1249 * @dep: endpoint for which requests are being prepared
1251 * The function goes through the requests list and sets up TRBs for the
1252 * transfers. The function returns once there are no more TRBs available or
1253 * it runs out of requests.
1255 * Returns the number of TRBs prepared or negative errno.
1257 static int dwc3_prepare_trbs(struct dwc3_ep *dep)
1259 struct dwc3_request *req, *n;
1262 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
1265 * We can get in a situation where there's a request in the started list
1266 * but there weren't enough TRBs to fully kick it in the first time
1267 * around, so it has been waiting for more TRBs to be freed up.
1269 * In that case, we should check if we have a request with pending_sgs
1270 * in the started list and prepare TRBs for that request first,
1271 * otherwise we will prepare TRBs completely out of order and that will
1274 list_for_each_entry(req, &dep->started_list, list) {
1275 if (req->num_pending_sgs > 0) {
1276 ret = dwc3_prepare_trbs_sg(dep, req);
1277 if (!ret || req->num_pending_sgs)
1281 if (!dwc3_calc_trbs_left(dep))
1285 * Don't prepare beyond a transfer. In DWC_usb32, its transfer
1286 * burst capability may try to read and use TRBs beyond the
1287 * active transfer instead of stopping.
1289 if (dep->stream_capable && req->request.is_last)
1293 list_for_each_entry_safe(req, n, &dep->pending_list, list) {
1294 struct dwc3 *dwc = dep->dwc;
1296 ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request,
1301 req->sg = req->request.sg;
1302 req->start_sg = req->sg;
1303 req->num_queued_sgs = 0;
1304 req->num_pending_sgs = req->request.num_mapped_sgs;
1306 if (req->num_pending_sgs > 0) {
1307 ret = dwc3_prepare_trbs_sg(dep, req);
1308 if (req->num_pending_sgs)
1311 ret = dwc3_prepare_trbs_linear(dep, req);
1314 if (!ret || !dwc3_calc_trbs_left(dep))
1318 * Don't prepare beyond a transfer. In DWC_usb32, its transfer
1319 * burst capability may try to read and use TRBs beyond the
1320 * active transfer instead of stopping.
1322 if (dep->stream_capable && req->request.is_last)
1329 static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep);
1331 static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep)
1333 struct dwc3_gadget_ep_cmd_params params;
1334 struct dwc3_request *req;
1340 * Note that it's normal to have no new TRBs prepared (i.e. ret == 0).
1341 * This happens when we need to stop and restart a transfer such as in
1342 * the case of reinitiating a stream or retrying an isoc transfer.
1344 ret = dwc3_prepare_trbs(dep);
1348 starting = !(dep->flags & DWC3_EP_TRANSFER_STARTED);
1351 * If there's no new TRB prepared and we don't need to restart a
1352 * transfer, there's no need to update the transfer.
1354 if (!ret && !starting)
1357 req = next_request(&dep->started_list);
1359 dep->flags |= DWC3_EP_PENDING_REQUEST;
1363 memset(¶ms, 0, sizeof(params));
1366 params.param0 = upper_32_bits(req->trb_dma);
1367 params.param1 = lower_32_bits(req->trb_dma);
1368 cmd = DWC3_DEPCMD_STARTTRANSFER;
1370 if (dep->stream_capable)
1371 cmd |= DWC3_DEPCMD_PARAM(req->request.stream_id);
1373 if (usb_endpoint_xfer_isoc(dep->endpoint.desc))
1374 cmd |= DWC3_DEPCMD_PARAM(dep->frame_number);
1376 cmd = DWC3_DEPCMD_UPDATETRANSFER |
1377 DWC3_DEPCMD_PARAM(dep->resource_index);
1380 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
1382 struct dwc3_request *tmp;
1387 dwc3_stop_active_transfer(dep, true, true);
1389 list_for_each_entry_safe(req, tmp, &dep->started_list, list)
1390 dwc3_gadget_move_cancelled_request(req);
1392 /* If ep isn't started, then there's no end transfer pending */
1393 if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING))
1394 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
1399 if (dep->stream_capable && req->request.is_last)
1400 dep->flags |= DWC3_EP_WAIT_TRANSFER_COMPLETE;
1405 static int __dwc3_gadget_get_frame(struct dwc3 *dwc)
1409 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1410 return DWC3_DSTS_SOFFN(reg);
1414 * dwc3_gadget_start_isoc_quirk - workaround invalid frame number
1415 * @dep: isoc endpoint
1417 * This function tests for the correct combination of BIT[15:14] from the 16-bit
1418 * microframe number reported by the XferNotReady event for the future frame
1419 * number to start the isoc transfer.
1421 * In DWC_usb31 version 1.70a-ea06 and prior, for highspeed and fullspeed
1422 * isochronous IN, BIT[15:14] of the 16-bit microframe number reported by the
1423 * XferNotReady event are invalid. The driver uses this number to schedule the
1424 * isochronous transfer and passes it to the START TRANSFER command. Because
1425 * this number is invalid, the command may fail. If BIT[15:14] matches the
1426 * internal 16-bit microframe, the START TRANSFER command will pass and the
1427 * transfer will start at the scheduled time, if it is off by 1, the command
1428 * will still pass, but the transfer will start 2 seconds in the future. For all
1429 * other conditions, the START TRANSFER command will fail with bus-expiry.
1431 * In order to workaround this issue, we can test for the correct combination of
1432 * BIT[15:14] by sending START TRANSFER commands with different values of
1433 * BIT[15:14]: 'b00, 'b01, 'b10, and 'b11. Each combination is 2^14 uframe apart
1434 * (or 2 seconds). 4 seconds into the future will result in a bus-expiry status.
1435 * As the result, within the 4 possible combinations for BIT[15:14], there will
1436 * be 2 successful and 2 failure START COMMAND status. One of the 2 successful
1437 * command status will result in a 2-second delay start. The smaller BIT[15:14]
1438 * value is the correct combination.
1440 * Since there are only 4 outcomes and the results are ordered, we can simply
1441 * test 2 START TRANSFER commands with BIT[15:14] combinations 'b00 and 'b01 to
1442 * deduce the smaller successful combination.
1444 * Let test0 = test status for combination 'b00 and test1 = test status for 'b01
1445 * of BIT[15:14]. The correct combination is as follow:
1447 * if test0 fails and test1 passes, BIT[15:14] is 'b01
1448 * if test0 fails and test1 fails, BIT[15:14] is 'b10
1449 * if test0 passes and test1 fails, BIT[15:14] is 'b11
1450 * if test0 passes and test1 passes, BIT[15:14] is 'b00
1452 * Synopsys STAR 9001202023: Wrong microframe number for isochronous IN
1455 static int dwc3_gadget_start_isoc_quirk(struct dwc3_ep *dep)
1461 while (dep->combo_num < 2) {
1462 struct dwc3_gadget_ep_cmd_params params;
1463 u32 test_frame_number;
1467 * Check if we can start isoc transfer on the next interval or
1468 * 4 uframes in the future with BIT[15:14] as dep->combo_num
1470 test_frame_number = dep->frame_number & DWC3_FRNUMBER_MASK;
1471 test_frame_number |= dep->combo_num << 14;
1472 test_frame_number += max_t(u32, 4, dep->interval);
1474 params.param0 = upper_32_bits(dep->dwc->bounce_addr);
1475 params.param1 = lower_32_bits(dep->dwc->bounce_addr);
1477 cmd = DWC3_DEPCMD_STARTTRANSFER;
1478 cmd |= DWC3_DEPCMD_PARAM(test_frame_number);
1479 cmd_status = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
1481 /* Redo if some other failure beside bus-expiry is received */
1482 if (cmd_status && cmd_status != -EAGAIN) {
1483 dep->start_cmd_status = 0;
1488 /* Store the first test status */
1489 if (dep->combo_num == 0)
1490 dep->start_cmd_status = cmd_status;
1495 * End the transfer if the START_TRANSFER command is successful
1496 * to wait for the next XferNotReady to test the command again
1498 if (cmd_status == 0) {
1499 dwc3_stop_active_transfer(dep, true, true);
1504 /* test0 and test1 are both completed at this point */
1505 test0 = (dep->start_cmd_status == 0);
1506 test1 = (cmd_status == 0);
1508 if (!test0 && test1)
1510 else if (!test0 && !test1)
1512 else if (test0 && !test1)
1514 else if (test0 && test1)
1517 dep->frame_number &= DWC3_FRNUMBER_MASK;
1518 dep->frame_number |= dep->combo_num << 14;
1519 dep->frame_number += max_t(u32, 4, dep->interval);
1521 /* Reinitialize test variables */
1522 dep->start_cmd_status = 0;
1525 return __dwc3_gadget_kick_transfer(dep);
1528 static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep)
1530 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
1531 struct dwc3 *dwc = dep->dwc;
1535 if (list_empty(&dep->pending_list) &&
1536 list_empty(&dep->started_list)) {
1537 dep->flags |= DWC3_EP_PENDING_REQUEST;
1541 if (!dwc->dis_start_transfer_quirk &&
1542 (DWC3_VER_IS_PRIOR(DWC31, 170A) ||
1543 DWC3_VER_TYPE_IS_WITHIN(DWC31, 170A, EA01, EA06))) {
1544 if (dwc->gadget->speed <= USB_SPEED_HIGH && dep->direction)
1545 return dwc3_gadget_start_isoc_quirk(dep);
1548 if (desc->bInterval <= 14 &&
1549 dwc->gadget->speed >= USB_SPEED_HIGH) {
1550 u32 frame = __dwc3_gadget_get_frame(dwc);
1551 bool rollover = frame <
1552 (dep->frame_number & DWC3_FRNUMBER_MASK);
1555 * frame_number is set from XferNotReady and may be already
1556 * out of date. DSTS only provides the lower 14 bit of the
1557 * current frame number. So add the upper two bits of
1558 * frame_number and handle a possible rollover.
1559 * This will provide the correct frame_number unless more than
1560 * rollover has happened since XferNotReady.
1563 dep->frame_number = (dep->frame_number & ~DWC3_FRNUMBER_MASK) |
1566 dep->frame_number += BIT(14);
1569 for (i = 0; i < DWC3_ISOC_MAX_RETRIES; i++) {
1570 dep->frame_number = DWC3_ALIGN_FRAME(dep, i + 1);
1572 ret = __dwc3_gadget_kick_transfer(dep);
1578 * After a number of unsuccessful start attempts due to bus-expiry
1579 * status, issue END_TRANSFER command and retry on the next XferNotReady
1582 if (ret == -EAGAIN) {
1583 struct dwc3_gadget_ep_cmd_params params;
1586 cmd = DWC3_DEPCMD_ENDTRANSFER |
1587 DWC3_DEPCMD_CMDIOC |
1588 DWC3_DEPCMD_PARAM(dep->resource_index);
1590 dep->resource_index = 0;
1591 memset(¶ms, 0, sizeof(params));
1593 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
1595 dep->flags |= DWC3_EP_END_TRANSFER_PENDING;
1601 static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1603 struct dwc3 *dwc = dep->dwc;
1605 if (!dep->endpoint.desc || !dwc->pullups_connected) {
1606 dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n",
1611 if (WARN(req->dep != dep, "request %pK belongs to '%s'\n",
1612 &req->request, req->dep->name))
1615 if (WARN(req->status < DWC3_REQUEST_STATUS_COMPLETED,
1616 "%s: request %pK already in flight\n",
1617 dep->name, &req->request))
1620 pm_runtime_get(dwc->dev);
1622 req->request.actual = 0;
1623 req->request.status = -EINPROGRESS;
1625 trace_dwc3_ep_queue(req);
1627 list_add_tail(&req->list, &dep->pending_list);
1628 req->status = DWC3_REQUEST_STATUS_QUEUED;
1630 if (dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE)
1634 * Start the transfer only after the END_TRANSFER is completed
1635 * and endpoint STALL is cleared.
1637 if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) ||
1638 (dep->flags & DWC3_EP_WEDGE) ||
1639 (dep->flags & DWC3_EP_STALL)) {
1640 dep->flags |= DWC3_EP_DELAY_START;
1645 * NOTICE: Isochronous endpoints should NEVER be prestarted. We must
1646 * wait for a XferNotReady event so we will know what's the current
1647 * (micro-)frame number.
1649 * Without this trick, we are very, very likely gonna get Bus Expiry
1650 * errors which will force us issue EndTransfer command.
1652 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1653 if (!(dep->flags & DWC3_EP_PENDING_REQUEST) &&
1654 !(dep->flags & DWC3_EP_TRANSFER_STARTED))
1657 if ((dep->flags & DWC3_EP_PENDING_REQUEST)) {
1658 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED))
1659 return __dwc3_gadget_start_isoc(dep);
1663 return __dwc3_gadget_kick_transfer(dep);
1666 static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1669 struct dwc3_request *req = to_dwc3_request(request);
1670 struct dwc3_ep *dep = to_dwc3_ep(ep);
1671 struct dwc3 *dwc = dep->dwc;
1673 unsigned long flags;
1677 spin_lock_irqsave(&dwc->lock, flags);
1678 ret = __dwc3_gadget_ep_queue(dep, req);
1679 spin_unlock_irqrestore(&dwc->lock, flags);
1684 static void dwc3_gadget_ep_skip_trbs(struct dwc3_ep *dep, struct dwc3_request *req)
1688 /* If req->trb is not set, then the request has not started */
1693 * If request was already started, this means we had to
1694 * stop the transfer. With that we also need to ignore
1695 * all TRBs used by the request, however TRBs can only
1696 * be modified after completion of END_TRANSFER
1697 * command. So what we do here is that we wait for
1698 * END_TRANSFER completion and only after that, we jump
1699 * over TRBs by clearing HWO and incrementing dequeue
1702 for (i = 0; i < req->num_trbs; i++) {
1703 struct dwc3_trb *trb;
1705 trb = &dep->trb_pool[dep->trb_dequeue];
1706 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1707 dwc3_ep_inc_deq(dep);
1713 static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep)
1715 struct dwc3_request *req;
1716 struct dwc3_request *tmp;
1718 list_for_each_entry_safe(req, tmp, &dep->cancelled_list, list) {
1719 dwc3_gadget_ep_skip_trbs(dep, req);
1720 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1724 static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1725 struct usb_request *request)
1727 struct dwc3_request *req = to_dwc3_request(request);
1728 struct dwc3_request *r = NULL;
1730 struct dwc3_ep *dep = to_dwc3_ep(ep);
1731 struct dwc3 *dwc = dep->dwc;
1733 unsigned long flags;
1736 trace_dwc3_ep_dequeue(req);
1738 spin_lock_irqsave(&dwc->lock, flags);
1740 list_for_each_entry(r, &dep->cancelled_list, list) {
1745 list_for_each_entry(r, &dep->pending_list, list) {
1747 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1752 list_for_each_entry(r, &dep->started_list, list) {
1754 struct dwc3_request *t;
1756 /* wait until it is processed */
1757 dwc3_stop_active_transfer(dep, true, true);
1760 * Remove any started request if the transfer is
1763 list_for_each_entry_safe(r, t, &dep->started_list, list)
1764 dwc3_gadget_move_cancelled_request(r);
1770 dev_err(dwc->dev, "request %pK was not queued to %s\n",
1774 spin_unlock_irqrestore(&dwc->lock, flags);
1779 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol)
1781 struct dwc3_gadget_ep_cmd_params params;
1782 struct dwc3 *dwc = dep->dwc;
1783 struct dwc3_request *req;
1784 struct dwc3_request *tmp;
1787 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1788 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1792 memset(¶ms, 0x00, sizeof(params));
1795 struct dwc3_trb *trb;
1797 unsigned int transfer_in_flight;
1798 unsigned int started;
1800 if (dep->number > 1)
1801 trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
1803 trb = &dwc->ep0_trb[dep->trb_enqueue];
1805 transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO;
1806 started = !list_empty(&dep->started_list);
1808 if (!protocol && ((dep->direction && transfer_in_flight) ||
1809 (!dep->direction && started))) {
1813 ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL,
1816 dev_err(dwc->dev, "failed to set STALL on %s\n",
1819 dep->flags |= DWC3_EP_STALL;
1822 * Don't issue CLEAR_STALL command to control endpoints. The
1823 * controller automatically clears the STALL when it receives
1826 if (dep->number <= 1) {
1827 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
1831 dwc3_stop_active_transfer(dep, true, true);
1833 list_for_each_entry_safe(req, tmp, &dep->started_list, list)
1834 dwc3_gadget_move_cancelled_request(req);
1836 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) {
1837 dep->flags |= DWC3_EP_PENDING_CLEAR_STALL;
1841 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
1843 ret = dwc3_send_clear_stall_ep_cmd(dep);
1845 dev_err(dwc->dev, "failed to clear STALL on %s\n",
1850 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
1852 if ((dep->flags & DWC3_EP_DELAY_START) &&
1853 !usb_endpoint_xfer_isoc(dep->endpoint.desc))
1854 __dwc3_gadget_kick_transfer(dep);
1856 dep->flags &= ~DWC3_EP_DELAY_START;
1862 static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1864 struct dwc3_ep *dep = to_dwc3_ep(ep);
1865 struct dwc3 *dwc = dep->dwc;
1867 unsigned long flags;
1871 spin_lock_irqsave(&dwc->lock, flags);
1872 ret = __dwc3_gadget_ep_set_halt(dep, value, false);
1873 spin_unlock_irqrestore(&dwc->lock, flags);
1878 static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1880 struct dwc3_ep *dep = to_dwc3_ep(ep);
1881 struct dwc3 *dwc = dep->dwc;
1882 unsigned long flags;
1885 spin_lock_irqsave(&dwc->lock, flags);
1886 dep->flags |= DWC3_EP_WEDGE;
1888 if (dep->number == 0 || dep->number == 1)
1889 ret = __dwc3_gadget_ep0_set_halt(ep, 1);
1891 ret = __dwc3_gadget_ep_set_halt(dep, 1, false);
1892 spin_unlock_irqrestore(&dwc->lock, flags);
1897 /* -------------------------------------------------------------------------- */
1899 static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1900 .bLength = USB_DT_ENDPOINT_SIZE,
1901 .bDescriptorType = USB_DT_ENDPOINT,
1902 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1905 static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1906 .enable = dwc3_gadget_ep0_enable,
1907 .disable = dwc3_gadget_ep0_disable,
1908 .alloc_request = dwc3_gadget_ep_alloc_request,
1909 .free_request = dwc3_gadget_ep_free_request,
1910 .queue = dwc3_gadget_ep0_queue,
1911 .dequeue = dwc3_gadget_ep_dequeue,
1912 .set_halt = dwc3_gadget_ep0_set_halt,
1913 .set_wedge = dwc3_gadget_ep_set_wedge,
1916 static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1917 .enable = dwc3_gadget_ep_enable,
1918 .disable = dwc3_gadget_ep_disable,
1919 .alloc_request = dwc3_gadget_ep_alloc_request,
1920 .free_request = dwc3_gadget_ep_free_request,
1921 .queue = dwc3_gadget_ep_queue,
1922 .dequeue = dwc3_gadget_ep_dequeue,
1923 .set_halt = dwc3_gadget_ep_set_halt,
1924 .set_wedge = dwc3_gadget_ep_set_wedge,
1927 /* -------------------------------------------------------------------------- */
1929 static int dwc3_gadget_get_frame(struct usb_gadget *g)
1931 struct dwc3 *dwc = gadget_to_dwc(g);
1933 return __dwc3_gadget_get_frame(dwc);
1936 static int __dwc3_gadget_wakeup(struct dwc3 *dwc)
1946 * According to the Databook Remote wakeup request should
1947 * be issued only when the device is in early suspend state.
1949 * We can check that via USB Link State bits in DSTS register.
1951 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1953 link_state = DWC3_DSTS_USBLNKST(reg);
1955 switch (link_state) {
1956 case DWC3_LINK_STATE_RESET:
1957 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
1958 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
1959 case DWC3_LINK_STATE_RESUME:
1965 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
1967 dev_err(dwc->dev, "failed to put link in Recovery\n");
1971 /* Recent versions do this automatically */
1972 if (DWC3_VER_IS_PRIOR(DWC3, 194A)) {
1973 /* write zeroes to Link Change Request */
1974 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
1975 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
1976 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1979 /* poll until Link State changes to ON */
1983 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1985 /* in HS, means ON */
1986 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
1990 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
1991 dev_err(dwc->dev, "failed to send remote wakeup\n");
1998 static int dwc3_gadget_wakeup(struct usb_gadget *g)
2000 struct dwc3 *dwc = gadget_to_dwc(g);
2001 unsigned long flags;
2004 spin_lock_irqsave(&dwc->lock, flags);
2005 ret = __dwc3_gadget_wakeup(dwc);
2006 spin_unlock_irqrestore(&dwc->lock, flags);
2011 static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
2014 struct dwc3 *dwc = gadget_to_dwc(g);
2015 unsigned long flags;
2017 spin_lock_irqsave(&dwc->lock, flags);
2018 g->is_selfpowered = !!is_selfpowered;
2019 spin_unlock_irqrestore(&dwc->lock, flags);
2024 static void dwc3_stop_active_transfers(struct dwc3 *dwc)
2028 for (epnum = 2; epnum < dwc->num_eps; epnum++) {
2029 struct dwc3_ep *dep;
2031 dep = dwc->eps[epnum];
2035 dwc3_remove_requests(dwc, dep);
2039 static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend)
2044 if (pm_runtime_suspended(dwc->dev))
2047 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2049 if (DWC3_VER_IS_WITHIN(DWC3, ANY, 187A)) {
2050 reg &= ~DWC3_DCTL_TRGTULST_MASK;
2051 reg |= DWC3_DCTL_TRGTULST_RX_DET;
2054 if (!DWC3_VER_IS_PRIOR(DWC3, 194A))
2055 reg &= ~DWC3_DCTL_KEEP_CONNECT;
2056 reg |= DWC3_DCTL_RUN_STOP;
2058 if (dwc->has_hibernation)
2059 reg |= DWC3_DCTL_KEEP_CONNECT;
2061 dwc->pullups_connected = true;
2063 reg &= ~DWC3_DCTL_RUN_STOP;
2065 if (dwc->has_hibernation && !suspend)
2066 reg &= ~DWC3_DCTL_KEEP_CONNECT;
2068 dwc->pullups_connected = false;
2071 dwc3_gadget_dctl_write_safe(dwc, reg);
2074 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2075 reg &= DWC3_DSTS_DEVCTRLHLT;
2076 } while (--timeout && !(!is_on ^ !reg));
2084 static void dwc3_gadget_disable_irq(struct dwc3 *dwc);
2085 static void __dwc3_gadget_stop(struct dwc3 *dwc);
2087 static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
2089 struct dwc3 *dwc = gadget_to_dwc(g);
2090 unsigned long flags;
2096 * Per databook, when we want to stop the gadget, if a control transfer
2097 * is still in process, complete it and get the core into setup phase.
2099 if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) {
2100 reinit_completion(&dwc->ep0_in_setup);
2102 ret = wait_for_completion_timeout(&dwc->ep0_in_setup,
2103 msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT));
2105 dev_err(dwc->dev, "timed out waiting for SETUP phase\n");
2111 * Synchronize any pending event handling before executing the controller
2115 dwc3_gadget_disable_irq(dwc);
2116 synchronize_irq(dwc->irq_gadget);
2119 spin_lock_irqsave(&dwc->lock, flags);
2125 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
2126 * Section 4.1.8 Table 4-7, it states that for a device-initiated
2127 * disconnect, the SW needs to ensure that it sends "a DEPENDXFER
2128 * command for any active transfers" before clearing the RunStop
2131 dwc3_stop_active_transfers(dwc);
2132 __dwc3_gadget_stop(dwc);
2135 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
2136 * Section 1.3.4, it mentions that for the DEVCTRLHLT bit, the
2137 * "software needs to acknowledge the events that are generated
2138 * (by writing to GEVNTCOUNTn) while it is waiting for this bit
2139 * to be set to '1'."
2141 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
2142 count &= DWC3_GEVNTCOUNT_MASK;
2144 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
2145 dwc->ev_buf->lpos = (dwc->ev_buf->lpos + count) %
2146 dwc->ev_buf->length;
2150 ret = dwc3_gadget_run_stop(dwc, is_on, false);
2151 spin_unlock_irqrestore(&dwc->lock, flags);
2156 static void dwc3_gadget_enable_irq(struct dwc3 *dwc)
2160 /* Enable all but Start and End of Frame IRQs */
2161 reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
2162 DWC3_DEVTEN_EVNTOVERFLOWEN |
2163 DWC3_DEVTEN_CMDCMPLTEN |
2164 DWC3_DEVTEN_ERRTICERREN |
2165 DWC3_DEVTEN_WKUPEVTEN |
2166 DWC3_DEVTEN_CONNECTDONEEN |
2167 DWC3_DEVTEN_USBRSTEN |
2168 DWC3_DEVTEN_DISCONNEVTEN);
2170 if (DWC3_VER_IS_PRIOR(DWC3, 250A))
2171 reg |= DWC3_DEVTEN_ULSTCNGEN;
2173 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
2176 static void dwc3_gadget_disable_irq(struct dwc3 *dwc)
2178 /* mask all interrupts */
2179 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2182 static irqreturn_t dwc3_interrupt(int irq, void *_dwc);
2183 static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc);
2186 * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG
2187 * @dwc: pointer to our context structure
2189 * The following looks like complex but it's actually very simple. In order to
2190 * calculate the number of packets we can burst at once on OUT transfers, we're
2191 * gonna use RxFIFO size.
2193 * To calculate RxFIFO size we need two numbers:
2194 * MDWIDTH = size, in bits, of the internal memory bus
2195 * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits)
2197 * Given these two numbers, the formula is simple:
2199 * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16;
2201 * 24 bytes is for 3x SETUP packets
2202 * 16 bytes is a clock domain crossing tolerance
2204 * Given RxFIFO Size, NUMP = RxFIFOSize / 1024;
2206 static void dwc3_gadget_setup_nump(struct dwc3 *dwc)
2213 ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7);
2214 mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0);
2215 if (DWC3_IP_IS(DWC32))
2216 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
2218 nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024;
2219 nump = min_t(u32, nump, 16);
2222 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2223 reg &= ~DWC3_DCFG_NUMP_MASK;
2224 reg |= nump << DWC3_DCFG_NUMP_SHIFT;
2225 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2228 static int __dwc3_gadget_start(struct dwc3 *dwc)
2230 struct dwc3_ep *dep;
2235 * Use IMOD if enabled via dwc->imod_interval. Otherwise, if
2236 * the core supports IMOD, disable it.
2238 if (dwc->imod_interval) {
2239 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
2240 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
2241 } else if (dwc3_has_imod(dwc)) {
2242 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0);
2246 * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP
2247 * field instead of letting dwc3 itself calculate that automatically.
2249 * This way, we maximize the chances that we'll be able to get several
2250 * bursts of data without going through any sort of endpoint throttling.
2252 reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG);
2253 if (DWC3_IP_IS(DWC3))
2254 reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL;
2256 reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL;
2258 dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg);
2260 dwc3_gadget_setup_nump(dwc);
2262 /* Start with SuperSpeed Default */
2263 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2266 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
2268 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2273 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
2275 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2279 /* begin to receive SETUP packets */
2280 dwc->ep0state = EP0_SETUP_PHASE;
2281 dwc->link_state = DWC3_LINK_STATE_SS_DIS;
2282 dwc3_ep0_out_start(dwc);
2284 dwc3_gadget_enable_irq(dwc);
2289 __dwc3_gadget_ep_disable(dwc->eps[0]);
2295 static int dwc3_gadget_start(struct usb_gadget *g,
2296 struct usb_gadget_driver *driver)
2298 struct dwc3 *dwc = gadget_to_dwc(g);
2299 unsigned long flags;
2303 irq = dwc->irq_gadget;
2304 ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt,
2305 IRQF_SHARED, "dwc3", dwc->ev_buf);
2307 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
2312 spin_lock_irqsave(&dwc->lock, flags);
2313 if (dwc->gadget_driver) {
2314 dev_err(dwc->dev, "%s is already bound to %s\n",
2316 dwc->gadget_driver->driver.name);
2321 dwc->gadget_driver = driver;
2323 if (pm_runtime_active(dwc->dev))
2324 __dwc3_gadget_start(dwc);
2326 spin_unlock_irqrestore(&dwc->lock, flags);
2331 spin_unlock_irqrestore(&dwc->lock, flags);
2338 static void __dwc3_gadget_stop(struct dwc3 *dwc)
2340 dwc3_gadget_disable_irq(dwc);
2341 __dwc3_gadget_ep_disable(dwc->eps[0]);
2342 __dwc3_gadget_ep_disable(dwc->eps[1]);
2345 static int dwc3_gadget_stop(struct usb_gadget *g)
2347 struct dwc3 *dwc = gadget_to_dwc(g);
2348 unsigned long flags;
2350 spin_lock_irqsave(&dwc->lock, flags);
2352 if (pm_runtime_suspended(dwc->dev))
2355 __dwc3_gadget_stop(dwc);
2358 dwc->gadget_driver = NULL;
2359 spin_unlock_irqrestore(&dwc->lock, flags);
2361 free_irq(dwc->irq_gadget, dwc->ev_buf);
2366 static void dwc3_gadget_config_params(struct usb_gadget *g,
2367 struct usb_dcd_config_params *params)
2369 struct dwc3 *dwc = gadget_to_dwc(g);
2371 params->besl_baseline = USB_DEFAULT_BESL_UNSPECIFIED;
2372 params->besl_deep = USB_DEFAULT_BESL_UNSPECIFIED;
2374 /* Recommended BESL */
2375 if (!dwc->dis_enblslpm_quirk) {
2377 * If the recommended BESL baseline is 0 or if the BESL deep is
2378 * less than 2, Microsoft's Windows 10 host usb stack will issue
2379 * a usb reset immediately after it receives the extended BOS
2380 * descriptor and the enumeration will fail. To maintain
2381 * compatibility with the Windows' usb stack, let's set the
2382 * recommended BESL baseline to 1 and clamp the BESL deep to be
2385 params->besl_baseline = 1;
2386 if (dwc->is_utmi_l1_suspend)
2388 clamp_t(u8, dwc->hird_threshold, 2, 15);
2391 /* U1 Device exit Latency */
2392 if (dwc->dis_u1_entry_quirk)
2393 params->bU1devExitLat = 0;
2395 params->bU1devExitLat = DWC3_DEFAULT_U1_DEV_EXIT_LAT;
2397 /* U2 Device exit Latency */
2398 if (dwc->dis_u2_entry_quirk)
2399 params->bU2DevExitLat = 0;
2401 params->bU2DevExitLat =
2402 cpu_to_le16(DWC3_DEFAULT_U2_DEV_EXIT_LAT);
2405 static void dwc3_gadget_set_speed(struct usb_gadget *g,
2406 enum usb_device_speed speed)
2408 struct dwc3 *dwc = gadget_to_dwc(g);
2409 unsigned long flags;
2412 spin_lock_irqsave(&dwc->lock, flags);
2413 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2414 reg &= ~(DWC3_DCFG_SPEED_MASK);
2417 * WORKAROUND: DWC3 revision < 2.20a have an issue
2418 * which would cause metastability state on Run/Stop
2419 * bit if we try to force the IP to USB2-only mode.
2421 * Because of that, we cannot configure the IP to any
2422 * speed other than the SuperSpeed
2426 * STAR#9000525659: Clock Domain Crossing on DCTL in
2429 if (DWC3_VER_IS_PRIOR(DWC3, 220A) &&
2430 !dwc->dis_metastability_quirk) {
2431 reg |= DWC3_DCFG_SUPERSPEED;
2435 reg |= DWC3_DCFG_LOWSPEED;
2437 case USB_SPEED_FULL:
2438 reg |= DWC3_DCFG_FULLSPEED;
2440 case USB_SPEED_HIGH:
2441 reg |= DWC3_DCFG_HIGHSPEED;
2443 case USB_SPEED_SUPER:
2444 reg |= DWC3_DCFG_SUPERSPEED;
2446 case USB_SPEED_SUPER_PLUS:
2447 if (DWC3_IP_IS(DWC3))
2448 reg |= DWC3_DCFG_SUPERSPEED;
2450 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
2453 dev_err(dwc->dev, "invalid speed (%d)\n", speed);
2455 if (DWC3_IP_IS(DWC3))
2456 reg |= DWC3_DCFG_SUPERSPEED;
2458 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
2461 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2463 spin_unlock_irqrestore(&dwc->lock, flags);
2466 static const struct usb_gadget_ops dwc3_gadget_ops = {
2467 .get_frame = dwc3_gadget_get_frame,
2468 .wakeup = dwc3_gadget_wakeup,
2469 .set_selfpowered = dwc3_gadget_set_selfpowered,
2470 .pullup = dwc3_gadget_pullup,
2471 .udc_start = dwc3_gadget_start,
2472 .udc_stop = dwc3_gadget_stop,
2473 .udc_set_speed = dwc3_gadget_set_speed,
2474 .get_config_params = dwc3_gadget_config_params,
2477 /* -------------------------------------------------------------------------- */
2479 static int dwc3_gadget_init_control_endpoint(struct dwc3_ep *dep)
2481 struct dwc3 *dwc = dep->dwc;
2483 usb_ep_set_maxpacket_limit(&dep->endpoint, 512);
2484 dep->endpoint.maxburst = 1;
2485 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
2486 if (!dep->direction)
2487 dwc->gadget->ep0 = &dep->endpoint;
2489 dep->endpoint.caps.type_control = true;
2494 static int dwc3_gadget_init_in_endpoint(struct dwc3_ep *dep)
2496 struct dwc3 *dwc = dep->dwc;
2500 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
2501 if (DWC3_IP_IS(DWC32))
2502 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
2504 /* MDWIDTH is represented in bits, we need it in bytes */
2507 size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(dep->number >> 1));
2508 if (DWC3_IP_IS(DWC3))
2509 size = DWC3_GTXFIFOSIZ_TXFDEP(size);
2511 size = DWC31_GTXFIFOSIZ_TXFDEP(size);
2513 /* FIFO Depth is in MDWDITH bytes. Multiply */
2517 * To meet performance requirement, a minimum TxFIFO size of 3x
2518 * MaxPacketSize is recommended for endpoints that support burst and a
2519 * minimum TxFIFO size of 2x MaxPacketSize for endpoints that don't
2520 * support burst. Use those numbers and we can calculate the max packet
2523 if (dwc->maximum_speed >= USB_SPEED_SUPER)
2528 usb_ep_set_maxpacket_limit(&dep->endpoint, size);
2530 dep->endpoint.max_streams = 16;
2531 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2532 list_add_tail(&dep->endpoint.ep_list,
2533 &dwc->gadget->ep_list);
2534 dep->endpoint.caps.type_iso = true;
2535 dep->endpoint.caps.type_bulk = true;
2536 dep->endpoint.caps.type_int = true;
2538 return dwc3_alloc_trb_pool(dep);
2541 static int dwc3_gadget_init_out_endpoint(struct dwc3_ep *dep)
2543 struct dwc3 *dwc = dep->dwc;
2547 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
2548 if (DWC3_IP_IS(DWC32))
2549 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
2551 /* MDWIDTH is represented in bits, convert to bytes */
2554 /* All OUT endpoints share a single RxFIFO space */
2555 size = dwc3_readl(dwc->regs, DWC3_GRXFIFOSIZ(0));
2556 if (DWC3_IP_IS(DWC3))
2557 size = DWC3_GRXFIFOSIZ_RXFDEP(size);
2559 size = DWC31_GRXFIFOSIZ_RXFDEP(size);
2561 /* FIFO depth is in MDWDITH bytes */
2565 * To meet performance requirement, a minimum recommended RxFIFO size
2566 * is defined as follow:
2567 * RxFIFO size >= (3 x MaxPacketSize) +
2568 * (3 x 8 bytes setup packets size) + (16 bytes clock crossing margin)
2570 * Then calculate the max packet limit as below.
2572 size -= (3 * 8) + 16;
2578 usb_ep_set_maxpacket_limit(&dep->endpoint, size);
2579 dep->endpoint.max_streams = 16;
2580 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2581 list_add_tail(&dep->endpoint.ep_list,
2582 &dwc->gadget->ep_list);
2583 dep->endpoint.caps.type_iso = true;
2584 dep->endpoint.caps.type_bulk = true;
2585 dep->endpoint.caps.type_int = true;
2587 return dwc3_alloc_trb_pool(dep);
2590 static int dwc3_gadget_init_endpoint(struct dwc3 *dwc, u8 epnum)
2592 struct dwc3_ep *dep;
2593 bool direction = epnum & 1;
2595 u8 num = epnum >> 1;
2597 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
2602 dep->number = epnum;
2603 dep->direction = direction;
2604 dep->regs = dwc->regs + DWC3_DEP_BASE(epnum);
2605 dwc->eps[epnum] = dep;
2607 dep->start_cmd_status = 0;
2609 snprintf(dep->name, sizeof(dep->name), "ep%u%s", num,
2610 direction ? "in" : "out");
2612 dep->endpoint.name = dep->name;
2614 if (!(dep->number > 1)) {
2615 dep->endpoint.desc = &dwc3_gadget_ep0_desc;
2616 dep->endpoint.comp_desc = NULL;
2620 ret = dwc3_gadget_init_control_endpoint(dep);
2622 ret = dwc3_gadget_init_in_endpoint(dep);
2624 ret = dwc3_gadget_init_out_endpoint(dep);
2629 dep->endpoint.caps.dir_in = direction;
2630 dep->endpoint.caps.dir_out = !direction;
2632 INIT_LIST_HEAD(&dep->pending_list);
2633 INIT_LIST_HEAD(&dep->started_list);
2634 INIT_LIST_HEAD(&dep->cancelled_list);
2639 static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total)
2643 INIT_LIST_HEAD(&dwc->gadget->ep_list);
2645 for (epnum = 0; epnum < total; epnum++) {
2648 ret = dwc3_gadget_init_endpoint(dwc, epnum);
2656 static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
2658 struct dwc3_ep *dep;
2661 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2662 dep = dwc->eps[epnum];
2666 * Physical endpoints 0 and 1 are special; they form the
2667 * bi-directional USB endpoint 0.
2669 * For those two physical endpoints, we don't allocate a TRB
2670 * pool nor do we add them the endpoints list. Due to that, we
2671 * shouldn't do these two operations otherwise we would end up
2672 * with all sorts of bugs when removing dwc3.ko.
2674 if (epnum != 0 && epnum != 1) {
2675 dwc3_free_trb_pool(dep);
2676 list_del(&dep->endpoint.ep_list);
2683 /* -------------------------------------------------------------------------- */
2685 static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep,
2686 struct dwc3_request *req, struct dwc3_trb *trb,
2687 const struct dwc3_event_depevt *event, int status, int chain)
2691 dwc3_ep_inc_deq(dep);
2693 trace_dwc3_complete_trb(dep, trb);
2697 * If we're in the middle of series of chained TRBs and we
2698 * receive a short transfer along the way, DWC3 will skip
2699 * through all TRBs including the last TRB in the chain (the
2700 * where CHN bit is zero. DWC3 will also avoid clearing HWO
2701 * bit and SW has to do it manually.
2703 * We're going to do that here to avoid problems of HW trying
2704 * to use bogus TRBs for transfers.
2706 if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO))
2707 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2710 * For isochronous transfers, the first TRB in a service interval must
2711 * have the Isoc-First type. Track and report its interval frame number.
2713 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
2714 (trb->ctrl & DWC3_TRBCTL_ISOCHRONOUS_FIRST)) {
2715 unsigned int frame_number;
2717 frame_number = DWC3_TRB_CTRL_GET_SID_SOFN(trb->ctrl);
2718 frame_number &= ~(dep->interval - 1);
2719 req->request.frame_number = frame_number;
2723 * We use bounce buffer for requests that needs extra TRB or OUT ZLP. If
2724 * this TRB points to the bounce buffer address, it's a MPS alignment
2725 * TRB. Don't add it to req->remaining calculation.
2727 if (trb->bpl == lower_32_bits(dep->dwc->bounce_addr) &&
2728 trb->bph == upper_32_bits(dep->dwc->bounce_addr)) {
2729 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2733 count = trb->size & DWC3_TRB_SIZE_MASK;
2734 req->remaining += count;
2736 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
2739 if (event->status & DEPEVT_STATUS_SHORT && !chain)
2742 if ((trb->ctrl & DWC3_TRB_CTRL_IOC) ||
2743 (trb->ctrl & DWC3_TRB_CTRL_LST))
2749 static int dwc3_gadget_ep_reclaim_trb_sg(struct dwc3_ep *dep,
2750 struct dwc3_request *req, const struct dwc3_event_depevt *event,
2753 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue];
2754 struct scatterlist *sg = req->sg;
2755 struct scatterlist *s;
2756 unsigned int pending = req->num_pending_sgs;
2760 for_each_sg(sg, s, pending, i) {
2761 trb = &dep->trb_pool[dep->trb_dequeue];
2763 req->sg = sg_next(s);
2764 req->num_pending_sgs--;
2766 ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req,
2767 trb, event, status, true);
2775 static int dwc3_gadget_ep_reclaim_trb_linear(struct dwc3_ep *dep,
2776 struct dwc3_request *req, const struct dwc3_event_depevt *event,
2779 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue];
2781 return dwc3_gadget_ep_reclaim_completed_trb(dep, req, trb,
2782 event, status, false);
2785 static bool dwc3_gadget_ep_request_completed(struct dwc3_request *req)
2787 return req->num_pending_sgs == 0;
2790 static int dwc3_gadget_ep_cleanup_completed_request(struct dwc3_ep *dep,
2791 const struct dwc3_event_depevt *event,
2792 struct dwc3_request *req, int status)
2796 if (req->num_pending_sgs)
2797 ret = dwc3_gadget_ep_reclaim_trb_sg(dep, req, event,
2800 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event,
2803 req->request.actual = req->request.length - req->remaining;
2805 if (!dwc3_gadget_ep_request_completed(req))
2808 if (req->needs_extra_trb) {
2809 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event,
2811 req->needs_extra_trb = false;
2814 dwc3_gadget_giveback(dep, req, status);
2820 static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep,
2821 const struct dwc3_event_depevt *event, int status)
2823 struct dwc3_request *req;
2824 struct dwc3_request *tmp;
2826 list_for_each_entry_safe(req, tmp, &dep->started_list, list) {
2829 ret = dwc3_gadget_ep_cleanup_completed_request(dep, event,
2836 static bool dwc3_gadget_ep_should_continue(struct dwc3_ep *dep)
2838 struct dwc3_request *req;
2840 if (!list_empty(&dep->pending_list))
2844 * We only need to check the first entry of the started list. We can
2845 * assume the completed requests are removed from the started list.
2847 req = next_request(&dep->started_list);
2851 return !dwc3_gadget_ep_request_completed(req);
2854 static void dwc3_gadget_endpoint_frame_from_event(struct dwc3_ep *dep,
2855 const struct dwc3_event_depevt *event)
2857 dep->frame_number = event->parameters;
2860 static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep,
2861 const struct dwc3_event_depevt *event, int status)
2863 struct dwc3 *dwc = dep->dwc;
2864 bool no_started_trb = true;
2866 dwc3_gadget_ep_cleanup_completed_requests(dep, event, status);
2868 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
2871 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
2872 list_empty(&dep->started_list) &&
2873 (list_empty(&dep->pending_list) || status == -EXDEV))
2874 dwc3_stop_active_transfer(dep, true, true);
2875 else if (dwc3_gadget_ep_should_continue(dep))
2876 if (__dwc3_gadget_kick_transfer(dep) == 0)
2877 no_started_trb = false;
2881 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
2882 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
2884 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) {
2888 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
2891 if (!(dep->flags & DWC3_EP_ENABLED))
2894 if (!list_empty(&dep->started_list))
2895 return no_started_trb;
2898 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2900 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2905 return no_started_trb;
2908 static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep,
2909 const struct dwc3_event_depevt *event)
2913 if (usb_endpoint_xfer_isoc(dep->endpoint.desc))
2914 dwc3_gadget_endpoint_frame_from_event(dep, event);
2916 if (event->status & DEPEVT_STATUS_BUSERR)
2917 status = -ECONNRESET;
2919 if (event->status & DEPEVT_STATUS_MISSED_ISOC)
2922 dwc3_gadget_endpoint_trbs_complete(dep, event, status);
2925 static void dwc3_gadget_endpoint_transfer_complete(struct dwc3_ep *dep,
2926 const struct dwc3_event_depevt *event)
2930 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
2932 if (event->status & DEPEVT_STATUS_BUSERR)
2933 status = -ECONNRESET;
2935 if (dwc3_gadget_endpoint_trbs_complete(dep, event, status))
2936 dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
2939 static void dwc3_gadget_endpoint_transfer_not_ready(struct dwc3_ep *dep,
2940 const struct dwc3_event_depevt *event)
2942 dwc3_gadget_endpoint_frame_from_event(dep, event);
2945 * The XferNotReady event is generated only once before the endpoint
2946 * starts. It will be generated again when END_TRANSFER command is
2947 * issued. For some controller versions, the XferNotReady event may be
2948 * generated while the END_TRANSFER command is still in process. Ignore
2949 * it and wait for the next XferNotReady event after the command is
2952 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
2955 (void) __dwc3_gadget_start_isoc(dep);
2958 static void dwc3_gadget_endpoint_command_complete(struct dwc3_ep *dep,
2959 const struct dwc3_event_depevt *event)
2961 u8 cmd = DEPEVT_PARAMETER_CMD(event->parameters);
2963 if (cmd != DWC3_DEPCMD_ENDTRANSFER)
2966 dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING;
2967 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
2968 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
2970 if (dep->flags & DWC3_EP_PENDING_CLEAR_STALL) {
2971 struct dwc3 *dwc = dep->dwc;
2973 dep->flags &= ~DWC3_EP_PENDING_CLEAR_STALL;
2974 if (dwc3_send_clear_stall_ep_cmd(dep)) {
2975 struct usb_ep *ep0 = &dwc->eps[0]->endpoint;
2977 dev_err(dwc->dev, "failed to clear STALL on %s\n", dep->name);
2978 if (dwc->delayed_status)
2979 __dwc3_gadget_ep0_set_halt(ep0, 1);
2983 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
2984 if (dwc->delayed_status)
2985 dwc3_ep0_send_delayed_status(dwc);
2988 if ((dep->flags & DWC3_EP_DELAY_START) &&
2989 !usb_endpoint_xfer_isoc(dep->endpoint.desc))
2990 __dwc3_gadget_kick_transfer(dep);
2992 dep->flags &= ~DWC3_EP_DELAY_START;
2995 static void dwc3_gadget_endpoint_stream_event(struct dwc3_ep *dep,
2996 const struct dwc3_event_depevt *event)
2998 struct dwc3 *dwc = dep->dwc;
3000 if (event->status == DEPEVT_STREAMEVT_FOUND) {
3001 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED;
3005 /* Note: NoStream rejection event param value is 0 and not 0xFFFF */
3006 switch (event->parameters) {
3007 case DEPEVT_STREAM_PRIME:
3009 * If the host can properly transition the endpoint state from
3010 * idle to prime after a NoStream rejection, there's no need to
3011 * force restarting the endpoint to reinitiate the stream. To
3012 * simplify the check, assume the host follows the USB spec if
3013 * it primed the endpoint more than once.
3015 if (dep->flags & DWC3_EP_FORCE_RESTART_STREAM) {
3016 if (dep->flags & DWC3_EP_FIRST_STREAM_PRIMED)
3017 dep->flags &= ~DWC3_EP_FORCE_RESTART_STREAM;
3019 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED;
3023 case DEPEVT_STREAM_NOSTREAM:
3024 if ((dep->flags & DWC3_EP_IGNORE_NEXT_NOSTREAM) ||
3025 !(dep->flags & DWC3_EP_FORCE_RESTART_STREAM) ||
3026 !(dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE))
3030 * If the host rejects a stream due to no active stream, by the
3031 * USB and xHCI spec, the endpoint will be put back to idle
3032 * state. When the host is ready (buffer added/updated), it will
3033 * prime the endpoint to inform the usb device controller. This
3034 * triggers the device controller to issue ERDY to restart the
3035 * stream. However, some hosts don't follow this and keep the
3036 * endpoint in the idle state. No prime will come despite host
3037 * streams are updated, and the device controller will not be
3038 * triggered to generate ERDY to move the next stream data. To
3039 * workaround this and maintain compatibility with various
3040 * hosts, force to reinitate the stream until the host is ready
3041 * instead of waiting for the host to prime the endpoint.
3043 if (DWC3_VER_IS_WITHIN(DWC32, 100A, ANY)) {
3044 unsigned int cmd = DWC3_DGCMD_SET_ENDPOINT_PRIME;
3046 dwc3_send_gadget_generic_command(dwc, cmd, dep->number);
3048 dep->flags |= DWC3_EP_DELAY_START;
3049 dwc3_stop_active_transfer(dep, true, true);
3056 dep->flags &= ~DWC3_EP_IGNORE_NEXT_NOSTREAM;
3059 static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
3060 const struct dwc3_event_depevt *event)
3062 struct dwc3_ep *dep;
3063 u8 epnum = event->endpoint_number;
3065 dep = dwc->eps[epnum];
3067 if (!(dep->flags & DWC3_EP_ENABLED)) {
3068 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED))
3071 /* Handle only EPCMDCMPLT when EP disabled */
3072 if (event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT)
3076 if (epnum == 0 || epnum == 1) {
3077 dwc3_ep0_interrupt(dwc, event);
3081 switch (event->endpoint_event) {
3082 case DWC3_DEPEVT_XFERINPROGRESS:
3083 dwc3_gadget_endpoint_transfer_in_progress(dep, event);
3085 case DWC3_DEPEVT_XFERNOTREADY:
3086 dwc3_gadget_endpoint_transfer_not_ready(dep, event);
3088 case DWC3_DEPEVT_EPCMDCMPLT:
3089 dwc3_gadget_endpoint_command_complete(dep, event);
3091 case DWC3_DEPEVT_XFERCOMPLETE:
3092 dwc3_gadget_endpoint_transfer_complete(dep, event);
3094 case DWC3_DEPEVT_STREAMEVT:
3095 dwc3_gadget_endpoint_stream_event(dep, event);
3097 case DWC3_DEPEVT_RXTXFIFOEVT:
3102 static void dwc3_disconnect_gadget(struct dwc3 *dwc)
3104 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
3105 spin_unlock(&dwc->lock);
3106 dwc->gadget_driver->disconnect(dwc->gadget);
3107 spin_lock(&dwc->lock);
3111 static void dwc3_suspend_gadget(struct dwc3 *dwc)
3113 if (dwc->gadget_driver && dwc->gadget_driver->suspend) {
3114 spin_unlock(&dwc->lock);
3115 dwc->gadget_driver->suspend(dwc->gadget);
3116 spin_lock(&dwc->lock);
3120 static void dwc3_resume_gadget(struct dwc3 *dwc)
3122 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
3123 spin_unlock(&dwc->lock);
3124 dwc->gadget_driver->resume(dwc->gadget);
3125 spin_lock(&dwc->lock);
3129 static void dwc3_reset_gadget(struct dwc3 *dwc)
3131 if (!dwc->gadget_driver)
3134 if (dwc->gadget->speed != USB_SPEED_UNKNOWN) {
3135 spin_unlock(&dwc->lock);
3136 usb_gadget_udc_reset(dwc->gadget, dwc->gadget_driver);
3137 spin_lock(&dwc->lock);
3141 static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force,
3144 struct dwc3_gadget_ep_cmd_params params;
3148 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED) ||
3149 (dep->flags & DWC3_EP_END_TRANSFER_PENDING))
3153 * NOTICE: We are violating what the Databook says about the
3154 * EndTransfer command. Ideally we would _always_ wait for the
3155 * EndTransfer Command Completion IRQ, but that's causing too
3156 * much trouble synchronizing between us and gadget driver.
3158 * We have discussed this with the IP Provider and it was
3159 * suggested to giveback all requests here.
3161 * Note also that a similar handling was tested by Synopsys
3162 * (thanks a lot Paul) and nothing bad has come out of it.
3163 * In short, what we're doing is issuing EndTransfer with
3164 * CMDIOC bit set and delay kicking transfer until the
3165 * EndTransfer command had completed.
3167 * As of IP version 3.10a of the DWC_usb3 IP, the controller
3168 * supports a mode to work around the above limitation. The
3169 * software can poll the CMDACT bit in the DEPCMD register
3170 * after issuing a EndTransfer command. This mode is enabled
3171 * by writing GUCTL2[14]. This polling is already done in the
3172 * dwc3_send_gadget_ep_cmd() function so if the mode is
3173 * enabled, the EndTransfer command will have completed upon
3174 * returning from this function.
3176 * This mode is NOT available on the DWC_usb31 IP.
3179 cmd = DWC3_DEPCMD_ENDTRANSFER;
3180 cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0;
3181 cmd |= interrupt ? DWC3_DEPCMD_CMDIOC : 0;
3182 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
3183 memset(¶ms, 0, sizeof(params));
3184 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms);
3186 dep->resource_index = 0;
3189 * The END_TRANSFER command will cause the controller to generate a
3190 * NoStream Event, and it's not due to the host DP NoStream rejection.
3191 * Ignore the next NoStream event.
3193 if (dep->stream_capable)
3194 dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM;
3197 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
3199 dep->flags |= DWC3_EP_END_TRANSFER_PENDING;
3202 static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
3206 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
3207 struct dwc3_ep *dep;
3210 dep = dwc->eps[epnum];
3214 if (!(dep->flags & DWC3_EP_STALL))
3217 dep->flags &= ~DWC3_EP_STALL;
3219 ret = dwc3_send_clear_stall_ep_cmd(dep);
3224 static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
3228 dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RX_DET);
3230 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3231 reg &= ~DWC3_DCTL_INITU1ENA;
3232 reg &= ~DWC3_DCTL_INITU2ENA;
3233 dwc3_gadget_dctl_write_safe(dwc, reg);
3235 dwc3_disconnect_gadget(dwc);
3237 dwc->gadget->speed = USB_SPEED_UNKNOWN;
3238 dwc->setup_packet_pending = false;
3239 usb_gadget_set_state(dwc->gadget, USB_STATE_NOTATTACHED);
3241 dwc->connected = false;
3244 static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
3248 dwc->connected = true;
3251 * WORKAROUND: DWC3 revisions <1.88a have an issue which
3252 * would cause a missing Disconnect Event if there's a
3253 * pending Setup Packet in the FIFO.
3255 * There's no suggested workaround on the official Bug
3256 * report, which states that "unless the driver/application
3257 * is doing any special handling of a disconnect event,
3258 * there is no functional issue".
3260 * Unfortunately, it turns out that we _do_ some special
3261 * handling of a disconnect event, namely complete all
3262 * pending transfers, notify gadget driver of the
3263 * disconnection, and so on.
3265 * Our suggested workaround is to follow the Disconnect
3266 * Event steps here, instead, based on a setup_packet_pending
3267 * flag. Such flag gets set whenever we have a SETUP_PENDING
3268 * status for EP0 TRBs and gets cleared on XferComplete for the
3273 * STAR#9000466709: RTL: Device : Disconnect event not
3274 * generated if setup packet pending in FIFO
3276 if (DWC3_VER_IS_PRIOR(DWC3, 188A)) {
3277 if (dwc->setup_packet_pending)
3278 dwc3_gadget_disconnect_interrupt(dwc);
3281 dwc3_reset_gadget(dwc);
3283 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
3284 * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW
3285 * needs to ensure that it sends "a DEPENDXFER command for any active
3288 dwc3_stop_active_transfers(dwc);
3290 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3291 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
3292 dwc3_gadget_dctl_write_safe(dwc, reg);
3293 dwc->test_mode = false;
3294 dwc3_clear_stall_all_ep(dwc);
3296 /* Reset device address to zero */
3297 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
3298 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
3299 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
3302 static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
3304 struct dwc3_ep *dep;
3309 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
3310 speed = reg & DWC3_DSTS_CONNECTSPD;
3314 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
3315 * each time on Connect Done.
3317 * Currently we always use the reset value. If any platform
3318 * wants to set this to a different value, we need to add a
3319 * setting and update GCTL.RAMCLKSEL here.
3323 case DWC3_DSTS_SUPERSPEED_PLUS:
3324 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
3325 dwc->gadget->ep0->maxpacket = 512;
3326 dwc->gadget->speed = USB_SPEED_SUPER_PLUS;
3328 case DWC3_DSTS_SUPERSPEED:
3330 * WORKAROUND: DWC3 revisions <1.90a have an issue which
3331 * would cause a missing USB3 Reset event.
3333 * In such situations, we should force a USB3 Reset
3334 * event by calling our dwc3_gadget_reset_interrupt()
3339 * STAR#9000483510: RTL: SS : USB3 reset event may
3340 * not be generated always when the link enters poll
3342 if (DWC3_VER_IS_PRIOR(DWC3, 190A))
3343 dwc3_gadget_reset_interrupt(dwc);
3345 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
3346 dwc->gadget->ep0->maxpacket = 512;
3347 dwc->gadget->speed = USB_SPEED_SUPER;
3349 case DWC3_DSTS_HIGHSPEED:
3350 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
3351 dwc->gadget->ep0->maxpacket = 64;
3352 dwc->gadget->speed = USB_SPEED_HIGH;
3354 case DWC3_DSTS_FULLSPEED:
3355 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
3356 dwc->gadget->ep0->maxpacket = 64;
3357 dwc->gadget->speed = USB_SPEED_FULL;
3359 case DWC3_DSTS_LOWSPEED:
3360 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
3361 dwc->gadget->ep0->maxpacket = 8;
3362 dwc->gadget->speed = USB_SPEED_LOW;
3366 dwc->eps[1]->endpoint.maxpacket = dwc->gadget->ep0->maxpacket;
3368 /* Enable USB2 LPM Capability */
3370 if (!DWC3_VER_IS_WITHIN(DWC3, ANY, 194A) &&
3371 (speed != DWC3_DSTS_SUPERSPEED) &&
3372 (speed != DWC3_DSTS_SUPERSPEED_PLUS)) {
3373 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
3374 reg |= DWC3_DCFG_LPM_CAP;
3375 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
3377 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3378 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
3380 reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold |
3381 (dwc->is_utmi_l1_suspend << 4));
3384 * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and
3385 * DCFG.LPMCap is set, core responses with an ACK and the
3386 * BESL value in the LPM token is less than or equal to LPM
3389 WARN_ONCE(DWC3_VER_IS_PRIOR(DWC3, 240A) && dwc->has_lpm_erratum,
3390 "LPM Erratum not available on dwc3 revisions < 2.40a\n");
3392 if (dwc->has_lpm_erratum && !DWC3_VER_IS_PRIOR(DWC3, 240A))
3393 reg |= DWC3_DCTL_NYET_THRES(dwc->lpm_nyet_threshold);
3395 dwc3_gadget_dctl_write_safe(dwc, reg);
3397 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3398 reg &= ~DWC3_DCTL_HIRD_THRES_MASK;
3399 dwc3_gadget_dctl_write_safe(dwc, reg);
3403 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY);
3405 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
3410 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY);
3412 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
3417 * Configure PHY via GUSB3PIPECTLn if required.
3419 * Update GTXFIFOSIZn
3421 * In both cases reset values should be sufficient.
3425 static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
3428 * TODO take core out of low power mode when that's
3432 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
3433 spin_unlock(&dwc->lock);
3434 dwc->gadget_driver->resume(dwc->gadget);
3435 spin_lock(&dwc->lock);
3439 static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
3440 unsigned int evtinfo)
3442 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
3443 unsigned int pwropt;
3446 * WORKAROUND: DWC3 < 2.50a have an issue when configured without
3447 * Hibernation mode enabled which would show up when device detects
3448 * host-initiated U3 exit.
3450 * In that case, device will generate a Link State Change Interrupt
3451 * from U3 to RESUME which is only necessary if Hibernation is
3454 * There are no functional changes due to such spurious event and we
3455 * just need to ignore it.
3459 * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation
3462 pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
3463 if (DWC3_VER_IS_PRIOR(DWC3, 250A) &&
3464 (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) {
3465 if ((dwc->link_state == DWC3_LINK_STATE_U3) &&
3466 (next == DWC3_LINK_STATE_RESUME)) {
3472 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
3473 * on the link partner, the USB session might do multiple entry/exit
3474 * of low power states before a transfer takes place.
3476 * Due to this problem, we might experience lower throughput. The
3477 * suggested workaround is to disable DCTL[12:9] bits if we're
3478 * transitioning from U1/U2 to U0 and enable those bits again
3479 * after a transfer completes and there are no pending transfers
3480 * on any of the enabled endpoints.
3482 * This is the first half of that workaround.
3486 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
3487 * core send LGO_Ux entering U0
3489 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) {
3490 if (next == DWC3_LINK_STATE_U0) {
3494 switch (dwc->link_state) {
3495 case DWC3_LINK_STATE_U1:
3496 case DWC3_LINK_STATE_U2:
3497 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3498 u1u2 = reg & (DWC3_DCTL_INITU2ENA
3499 | DWC3_DCTL_ACCEPTU2ENA
3500 | DWC3_DCTL_INITU1ENA
3501 | DWC3_DCTL_ACCEPTU1ENA);
3504 dwc->u1u2 = reg & u1u2;
3508 dwc3_gadget_dctl_write_safe(dwc, reg);
3518 case DWC3_LINK_STATE_U1:
3519 if (dwc->speed == USB_SPEED_SUPER)
3520 dwc3_suspend_gadget(dwc);
3522 case DWC3_LINK_STATE_U2:
3523 case DWC3_LINK_STATE_U3:
3524 dwc3_suspend_gadget(dwc);
3526 case DWC3_LINK_STATE_RESUME:
3527 dwc3_resume_gadget(dwc);
3534 dwc->link_state = next;
3537 static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc,
3538 unsigned int evtinfo)
3540 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
3542 if (dwc->link_state != next && next == DWC3_LINK_STATE_U3)
3543 dwc3_suspend_gadget(dwc);
3545 dwc->link_state = next;
3548 static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc,
3549 unsigned int evtinfo)
3551 unsigned int is_ss = evtinfo & BIT(4);
3554 * WORKAROUND: DWC3 revison 2.20a with hibernation support
3555 * have a known issue which can cause USB CV TD.9.23 to fail
3558 * Because of this issue, core could generate bogus hibernation
3559 * events which SW needs to ignore.
3563 * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0
3564 * Device Fallback from SuperSpeed
3566 if (is_ss ^ (dwc->speed == USB_SPEED_SUPER))
3569 /* enter hibernation here */
3572 static void dwc3_gadget_interrupt(struct dwc3 *dwc,
3573 const struct dwc3_event_devt *event)
3575 switch (event->type) {
3576 case DWC3_DEVICE_EVENT_DISCONNECT:
3577 dwc3_gadget_disconnect_interrupt(dwc);
3579 case DWC3_DEVICE_EVENT_RESET:
3580 dwc3_gadget_reset_interrupt(dwc);
3582 case DWC3_DEVICE_EVENT_CONNECT_DONE:
3583 dwc3_gadget_conndone_interrupt(dwc);
3585 case DWC3_DEVICE_EVENT_WAKEUP:
3586 dwc3_gadget_wakeup_interrupt(dwc);
3588 case DWC3_DEVICE_EVENT_HIBER_REQ:
3589 if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation,
3590 "unexpected hibernation event\n"))
3593 dwc3_gadget_hibernation_interrupt(dwc, event->event_info);
3595 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
3596 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
3598 case DWC3_DEVICE_EVENT_EOPF:
3599 /* It changed to be suspend event for version 2.30a and above */
3600 if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) {
3602 * Ignore suspend event until the gadget enters into
3603 * USB_STATE_CONFIGURED state.
3605 if (dwc->gadget->state >= USB_STATE_CONFIGURED)
3606 dwc3_gadget_suspend_interrupt(dwc,
3610 case DWC3_DEVICE_EVENT_SOF:
3611 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
3612 case DWC3_DEVICE_EVENT_CMD_CMPL:
3613 case DWC3_DEVICE_EVENT_OVERFLOW:
3616 dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
3620 static void dwc3_process_event_entry(struct dwc3 *dwc,
3621 const union dwc3_event *event)
3623 trace_dwc3_event(event->raw, dwc);
3625 if (!event->type.is_devspec)
3626 dwc3_endpoint_interrupt(dwc, &event->depevt);
3627 else if (event->type.type == DWC3_EVENT_TYPE_DEV)
3628 dwc3_gadget_interrupt(dwc, &event->devt);
3630 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
3633 static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt)
3635 struct dwc3 *dwc = evt->dwc;
3636 irqreturn_t ret = IRQ_NONE;
3642 if (!(evt->flags & DWC3_EVENT_PENDING))
3646 union dwc3_event event;
3648 event.raw = *(u32 *) (evt->cache + evt->lpos);
3650 dwc3_process_event_entry(dwc, &event);
3653 * FIXME we wrap around correctly to the next entry as
3654 * almost all entries are 4 bytes in size. There is one
3655 * entry which has 12 bytes which is a regular entry
3656 * followed by 8 bytes data. ATM I don't know how
3657 * things are organized if we get next to the a
3658 * boundary so I worry about that once we try to handle
3661 evt->lpos = (evt->lpos + 4) % evt->length;
3666 evt->flags &= ~DWC3_EVENT_PENDING;
3669 /* Unmask interrupt */
3670 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
3671 reg &= ~DWC3_GEVNTSIZ_INTMASK;
3672 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
3674 if (dwc->imod_interval) {
3675 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
3676 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
3682 static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt)
3684 struct dwc3_event_buffer *evt = _evt;
3685 struct dwc3 *dwc = evt->dwc;
3686 unsigned long flags;
3687 irqreturn_t ret = IRQ_NONE;
3689 spin_lock_irqsave(&dwc->lock, flags);
3690 ret = dwc3_process_event_buf(evt);
3691 spin_unlock_irqrestore(&dwc->lock, flags);
3696 static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
3698 struct dwc3 *dwc = evt->dwc;
3703 if (pm_runtime_suspended(dwc->dev)) {
3704 pm_runtime_get(dwc->dev);
3705 disable_irq_nosync(dwc->irq_gadget);
3706 dwc->pending_events = true;
3711 * With PCIe legacy interrupt, test shows that top-half irq handler can
3712 * be called again after HW interrupt deassertion. Check if bottom-half
3713 * irq event handler completes before caching new event to prevent
3716 if (evt->flags & DWC3_EVENT_PENDING)
3719 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
3720 count &= DWC3_GEVNTCOUNT_MASK;
3725 evt->flags |= DWC3_EVENT_PENDING;
3727 /* Mask interrupt */
3728 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
3729 reg |= DWC3_GEVNTSIZ_INTMASK;
3730 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
3732 amount = min(count, evt->length - evt->lpos);
3733 memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount);
3736 memcpy(evt->cache, evt->buf, count - amount);
3738 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
3740 return IRQ_WAKE_THREAD;
3743 static irqreturn_t dwc3_interrupt(int irq, void *_evt)
3745 struct dwc3_event_buffer *evt = _evt;
3747 return dwc3_check_event_buf(evt);
3750 static int dwc3_gadget_get_irq(struct dwc3 *dwc)
3752 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
3755 irq = platform_get_irq_byname_optional(dwc3_pdev, "peripheral");
3759 if (irq == -EPROBE_DEFER)
3762 irq = platform_get_irq_byname_optional(dwc3_pdev, "dwc_usb3");
3766 if (irq == -EPROBE_DEFER)
3769 irq = platform_get_irq(dwc3_pdev, 0);
3780 static void dwc_gadget_release(struct device *dev)
3782 struct usb_gadget *gadget = container_of(dev, struct usb_gadget, dev);
3788 * dwc3_gadget_init - initializes gadget related registers
3789 * @dwc: pointer to our controller context structure
3791 * Returns 0 on success otherwise negative errno.
3793 int dwc3_gadget_init(struct dwc3 *dwc)
3799 irq = dwc3_gadget_get_irq(dwc);
3805 dwc->irq_gadget = irq;
3807 dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev,
3808 sizeof(*dwc->ep0_trb) * 2,
3809 &dwc->ep0_trb_addr, GFP_KERNEL);
3810 if (!dwc->ep0_trb) {
3811 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
3816 dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL);
3817 if (!dwc->setup_buf) {
3822 dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE,
3823 &dwc->bounce_addr, GFP_KERNEL);
3829 init_completion(&dwc->ep0_in_setup);
3830 dwc->gadget = kzalloc(sizeof(struct usb_gadget), GFP_KERNEL);
3837 usb_initialize_gadget(dwc->dev, dwc->gadget, dwc_gadget_release);
3838 dev = &dwc->gadget->dev;
3839 dev->platform_data = dwc;
3840 dwc->gadget->ops = &dwc3_gadget_ops;
3841 dwc->gadget->speed = USB_SPEED_UNKNOWN;
3842 dwc->gadget->sg_supported = true;
3843 dwc->gadget->name = "dwc3-gadget";
3844 dwc->gadget->lpm_capable = true;
3847 * FIXME We might be setting max_speed to <SUPER, however versions
3848 * <2.20a of dwc3 have an issue with metastability (documented
3849 * elsewhere in this driver) which tells us we can't set max speed to
3850 * anything lower than SUPER.
3852 * Because gadget.max_speed is only used by composite.c and function
3853 * drivers (i.e. it won't go into dwc3's registers) we are allowing this
3854 * to happen so we avoid sending SuperSpeed Capability descriptor
3855 * together with our BOS descriptor as that could confuse host into
3856 * thinking we can handle super speed.
3858 * Note that, in fact, we won't even support GetBOS requests when speed
3859 * is less than super speed because we don't have means, yet, to tell
3860 * composite.c that we are USB 2.0 + LPM ECN.
3862 if (DWC3_VER_IS_PRIOR(DWC3, 220A) &&
3863 !dwc->dis_metastability_quirk)
3864 dev_info(dwc->dev, "changing max_speed on rev %08x\n",
3867 dwc->gadget->max_speed = dwc->maximum_speed;
3870 * REVISIT: Here we should clear all pending IRQs to be
3871 * sure we're starting from a well known location.
3874 ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps);
3878 ret = usb_add_gadget(dwc->gadget);
3880 dev_err(dwc->dev, "failed to add gadget\n");
3884 dwc3_gadget_set_speed(dwc->gadget, dwc->maximum_speed);
3889 dwc3_gadget_free_endpoints(dwc);
3891 usb_put_gadget(dwc->gadget);
3893 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
3897 kfree(dwc->setup_buf);
3900 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
3901 dwc->ep0_trb, dwc->ep0_trb_addr);
3907 /* -------------------------------------------------------------------------- */
3909 void dwc3_gadget_exit(struct dwc3 *dwc)
3911 usb_del_gadget_udc(dwc->gadget);
3912 dwc3_gadget_free_endpoints(dwc);
3913 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
3915 kfree(dwc->setup_buf);
3916 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
3917 dwc->ep0_trb, dwc->ep0_trb_addr);
3920 int dwc3_gadget_suspend(struct dwc3 *dwc)
3922 if (!dwc->gadget_driver)
3925 dwc3_gadget_run_stop(dwc, false, false);
3926 dwc3_disconnect_gadget(dwc);
3927 __dwc3_gadget_stop(dwc);
3932 int dwc3_gadget_resume(struct dwc3 *dwc)
3936 if (!dwc->gadget_driver)
3939 ret = __dwc3_gadget_start(dwc);
3943 ret = dwc3_gadget_run_stop(dwc, true, false);
3950 __dwc3_gadget_stop(dwc);
3956 void dwc3_gadget_process_pending_events(struct dwc3 *dwc)
3958 if (dwc->pending_events) {
3959 dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf);
3960 dwc->pending_events = false;
3961 enable_irq(dwc->irq_gadget);