blob: 9095ce52c28c69a96fb4dbbb3faa96482e8a3664 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Felipe Balbibfad65e2017-04-19 14:59:27 +03002/*
Felipe Balbi72246da2011-08-19 18:10:58 +03003 * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link
4 *
Alexander A. Klimov10623b82020-07-11 15:58:04 +02005 * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03006 *
7 * Authors: Felipe Balbi <balbi@ti.com>,
8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Felipe Balbi72246da2011-08-19 18:10:58 +03009 */
10
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>
18#include <linux/io.h>
19#include <linux/list.h>
20#include <linux/dma-mapping.h>
21
22#include <linux/usb/ch9.h>
23#include <linux/usb/gadget.h>
24
Felipe Balbi80977dc2014-08-19 16:37:22 -050025#include "debug.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030026#include "core.h"
27#include "gadget.h"
28#include "io.h"
29
Felipe Balbid5370102018-08-14 10:42:43 +030030#define DWC3_ALIGN_FRAME(d, n) (((d)->frame_number + ((d)->interval * (n))) \
Felipe Balbif62afb42018-04-11 10:34:34 +030031 & ~((d)->interval - 1))
32
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020033/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030034 * dwc3_gadget_set_test_mode - enables usb2 test modes
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020035 * @dwc: pointer to our context structure
36 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
37 *
Felipe Balbibfad65e2017-04-19 14:59:27 +030038 * Caller should take care of locking. This function will return 0 on
39 * success or -EINVAL if wrong Test Selector is passed.
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020040 */
41int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
42{
43 u32 reg;
44
45 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
46 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
47
48 switch (mode) {
Greg Kroah-Hartman62fb45d2020-06-18 16:42:06 +020049 case USB_TEST_J:
50 case USB_TEST_K:
51 case USB_TEST_SE0_NAK:
52 case USB_TEST_PACKET:
53 case USB_TEST_FORCE_ENABLE:
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020054 reg |= mode << 1;
55 break;
56 default:
57 return -EINVAL;
58 }
59
Thinh Nguyen5b738212019-10-23 19:15:43 -070060 dwc3_gadget_dctl_write_safe(dwc, reg);
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020061
62 return 0;
63}
64
Felipe Balbi8598bde2012-01-02 18:55:57 +020065/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030066 * dwc3_gadget_get_link_state - gets current state of usb link
Paul Zimmerman911f1f82012-04-27 13:35:15 +030067 * @dwc: pointer to our context structure
68 *
69 * Caller should take care of locking. This function will
70 * return the link state on success (>= 0) or -ETIMEDOUT.
71 */
72int dwc3_gadget_get_link_state(struct dwc3 *dwc)
73{
74 u32 reg;
75
76 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
77
78 return DWC3_DSTS_USBLNKST(reg);
79}
80
81/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030082 * dwc3_gadget_set_link_state - sets usb link to a particular state
Felipe Balbi8598bde2012-01-02 18:55:57 +020083 * @dwc: pointer to our context structure
84 * @state: the state to put link into
85 *
86 * Caller should take care of locking. This function will
Paul Zimmermanaee63e32012-02-24 17:32:15 -080087 * return 0 on success or -ETIMEDOUT.
Felipe Balbi8598bde2012-01-02 18:55:57 +020088 */
89int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
90{
Paul Zimmermanaee63e32012-02-24 17:32:15 -080091 int retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +020092 u32 reg;
93
Paul Zimmerman802fde92012-04-27 13:10:52 +030094 /*
95 * Wait until device controller is ready. Only applies to 1.94a and
96 * later RTL.
97 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -070098 if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) {
Paul Zimmerman802fde92012-04-27 13:10:52 +030099 while (--retries) {
100 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
101 if (reg & DWC3_DSTS_DCNRD)
102 udelay(5);
103 else
104 break;
105 }
106
107 if (retries <= 0)
108 return -ETIMEDOUT;
109 }
110
Felipe Balbi8598bde2012-01-02 18:55:57 +0200111 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
112 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
113
Thinh Nguyen2e708fa2019-10-23 19:15:55 -0700114 /* set no action before sending new link state change */
115 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
116
Felipe Balbi8598bde2012-01-02 18:55:57 +0200117 /* set requested state */
118 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
119 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
120
Paul Zimmerman802fde92012-04-27 13:10:52 +0300121 /*
122 * The following code is racy when called from dwc3_gadget_wakeup,
123 * and is not needed, at least on newer versions
124 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -0700125 if (!DWC3_VER_IS_PRIOR(DWC3, 194A))
Paul Zimmerman802fde92012-04-27 13:10:52 +0300126 return 0;
127
Felipe Balbi8598bde2012-01-02 18:55:57 +0200128 /* wait for a change in DSTS */
Paul Zimmermanaed430e2012-04-27 12:52:01 +0300129 retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200130 while (--retries) {
131 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
132
Felipe Balbi8598bde2012-01-02 18:55:57 +0200133 if (DWC3_DSTS_USBLNKST(reg) == state)
134 return 0;
135
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800136 udelay(5);
Felipe Balbi8598bde2012-01-02 18:55:57 +0200137 }
138
Felipe Balbi8598bde2012-01-02 18:55:57 +0200139 return -ETIMEDOUT;
140}
141
John Youndca01192016-05-19 17:26:05 -0700142/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300143 * dwc3_ep_inc_trb - increment a trb index.
144 * @index: Pointer to the TRB index to increment.
John Youndca01192016-05-19 17:26:05 -0700145 *
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.
149 */
150static void dwc3_ep_inc_trb(u8 *index)
151{
152 (*index)++;
153 if (*index == (DWC3_TRB_NUM - 1))
154 *index = 0;
155}
156
Felipe Balbibfad65e2017-04-19 14:59:27 +0300157/**
158 * dwc3_ep_inc_enq - increment endpoint's enqueue pointer
159 * @dep: The endpoint whose enqueue pointer we're incrementing
160 */
Felipe Balbief966b92016-04-05 13:09:51 +0300161static void dwc3_ep_inc_enq(struct dwc3_ep *dep)
Felipe Balbi457e84b2012-01-18 18:04:09 +0200162{
John Youndca01192016-05-19 17:26:05 -0700163 dwc3_ep_inc_trb(&dep->trb_enqueue);
Felipe Balbief966b92016-04-05 13:09:51 +0300164}
Felipe Balbi457e84b2012-01-18 18:04:09 +0200165
Felipe Balbibfad65e2017-04-19 14:59:27 +0300166/**
167 * dwc3_ep_inc_deq - increment endpoint's dequeue pointer
168 * @dep: The endpoint whose enqueue pointer we're incrementing
169 */
Felipe Balbief966b92016-04-05 13:09:51 +0300170static void dwc3_ep_inc_deq(struct dwc3_ep *dep)
171{
John Youndca01192016-05-19 17:26:05 -0700172 dwc3_ep_inc_trb(&dep->trb_dequeue);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200173}
174
Wei Yongjun69102512018-03-29 02:20:10 +0000175static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep,
Felipe Balbic91815b2018-03-26 13:14:47 +0300176 struct dwc3_request *req, int status)
177{
178 struct dwc3 *dwc = dep->dwc;
179
Felipe Balbic91815b2018-03-26 13:14:47 +0300180 list_del(&req->list);
181 req->remaining = 0;
Jack Phambd6742242019-01-10 12:39:55 -0800182 req->needs_extra_trb = false;
Felipe Balbic91815b2018-03-26 13:14:47 +0300183
184 if (req->request.status == -EINPROGRESS)
185 req->request.status = status;
186
187 if (req->trb)
188 usb_gadget_unmap_request_by_dev(dwc->sysdev,
189 &req->request, req->direction);
190
191 req->trb = NULL;
192 trace_dwc3_gadget_giveback(req);
193
194 if (dep->number > 1)
195 pm_runtime_put(dwc->dev);
196}
197
Felipe Balbibfad65e2017-04-19 14:59:27 +0300198/**
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
203 *
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.
207 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300208void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
209 int status)
210{
211 struct dwc3 *dwc = dep->dwc;
212
Felipe Balbic91815b2018-03-26 13:14:47 +0300213 dwc3_gadget_del_and_unmap_request(dep, req, status);
Felipe Balbia3af5e32019-01-11 12:57:09 +0200214 req->status = DWC3_REQUEST_STATUS_COMPLETED;
Felipe Balbi72246da2011-08-19 18:10:58 +0300215
216 spin_unlock(&dwc->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200217 usb_gadget_giveback_request(&dep->endpoint, &req->request);
Felipe Balbi72246da2011-08-19 18:10:58 +0300218 spin_lock(&dwc->lock);
219}
220
Felipe Balbibfad65e2017-04-19 14:59:27 +0300221/**
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
226 *
227 * Caller should take care of locking. Issue @cmd with a given @param to @dwc
228 * and wait for its completion.
229 */
Felipe Balbie319bd62020-08-13 08:35:38 +0300230int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned int cmd,
231 u32 param)
Felipe Balbib09bb642012-04-24 16:19:11 +0300232{
233 u32 timeout = 500;
Felipe Balbi71f7e702016-05-23 14:16:19 +0300234 int status = 0;
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300235 int ret = 0;
Felipe Balbib09bb642012-04-24 16:19:11 +0300236 u32 reg;
237
238 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
239 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
240
241 do {
242 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
243 if (!(reg & DWC3_DGCMD_CMDACT)) {
Felipe Balbi71f7e702016-05-23 14:16:19 +0300244 status = DWC3_DGCMD_STATUS(reg);
245 if (status)
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300246 ret = -EINVAL;
247 break;
Felipe Balbib09bb642012-04-24 16:19:11 +0300248 }
Janusz Dziedzice3aee482016-11-09 11:01:33 +0100249 } while (--timeout);
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300250
251 if (!timeout) {
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300252 ret = -ETIMEDOUT;
Felipe Balbi71f7e702016-05-23 14:16:19 +0300253 status = -ETIMEDOUT;
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300254 }
255
Felipe Balbi71f7e702016-05-23 14:16:19 +0300256 trace_dwc3_gadget_generic_cmd(cmd, param, status);
257
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300258 return ret;
Felipe Balbib09bb642012-04-24 16:19:11 +0300259}
260
Felipe Balbic36d8e92016-04-04 12:46:33 +0300261static int __dwc3_gadget_wakeup(struct dwc3 *dwc);
262
Felipe Balbibfad65e2017-04-19 14:59:27 +0300263/**
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
268 *
269 * Caller should handle locking. This function will issue @cmd with given
270 * @params to @dep and wait for its completion.
271 */
Felipe Balbie319bd62020-08-13 08:35:38 +0300272int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned int cmd,
Felipe Balbi2cd47182016-04-12 16:42:43 +0300273 struct dwc3_gadget_ep_cmd_params *params)
Felipe Balbi72246da2011-08-19 18:10:58 +0300274{
Felipe Balbi8897a762016-09-22 10:56:08 +0300275 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
Felipe Balbi2cd47182016-04-12 16:42:43 +0300276 struct dwc3 *dwc = dep->dwc;
Yu Chen1c0e69a2020-05-21 16:46:43 +0800277 u32 timeout = 5000;
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700278 u32 saved_config = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300279 u32 reg;
280
Felipe Balbi0933df12016-05-23 14:02:33 +0300281 int cmd_status = 0;
Felipe Balbic0ca3242016-04-04 09:11:51 +0300282 int ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300283
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300284 /*
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700285 * 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
287 * endpoint command.
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300288 *
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700289 * Save and clear both GUSB2PHYCFG.ENBLSLPM and GUSB2PHYCFG.SUSPHY
290 * settings. Restore them after the command is completed.
291 *
292 * DWC_usb3 3.30a and DWC_usb31 1.90a programming guide section 3.2.2
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300293 */
Peter Chene81a7012020-08-21 10:55:48 +0800294 if (dwc->gadget->speed <= USB_SPEED_HIGH) {
Felipe Balbiab2a92e2016-05-17 14:55:58 +0300295 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
296 if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) {
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700297 saved_config |= DWC3_GUSB2PHYCFG_SUSPHY;
Felipe Balbiab2a92e2016-05-17 14:55:58 +0300298 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
Felipe Balbiab2a92e2016-05-17 14:55:58 +0300299 }
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700300
301 if (reg & DWC3_GUSB2PHYCFG_ENBLSLPM) {
302 saved_config |= DWC3_GUSB2PHYCFG_ENBLSLPM;
303 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM;
304 }
305
306 if (saved_config)
307 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300308 }
309
Felipe Balbi59999142016-09-22 12:25:28 +0300310 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) {
Thinh Nguyenb624b322021-04-19 19:11:12 -0700311 int link_state;
Felipe Balbic36d8e92016-04-04 12:46:33 +0300312
Thinh Nguyen140e2df2021-10-25 16:35:06 -0700313 /*
314 * Initiate remote wakeup if the link state is in U3 when
315 * operating in SS/SSP or L1/L2 when operating in HS/FS. If the
316 * link state is in U1/U2, no remote wakeup is needed. The Start
317 * Transfer command will initiate the link recovery.
318 */
Thinh Nguyenb624b322021-04-19 19:11:12 -0700319 link_state = dwc3_gadget_get_link_state(dwc);
Thinh Nguyen140e2df2021-10-25 16:35:06 -0700320 switch (link_state) {
321 case DWC3_LINK_STATE_U2:
322 if (dwc->gadget->speed >= USB_SPEED_SUPER)
323 break;
324
325 fallthrough;
326 case DWC3_LINK_STATE_U3:
Felipe Balbic36d8e92016-04-04 12:46:33 +0300327 ret = __dwc3_gadget_wakeup(dwc);
328 dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n",
329 ret);
Thinh Nguyen140e2df2021-10-25 16:35:06 -0700330 break;
Felipe Balbic36d8e92016-04-04 12:46:33 +0300331 }
332 }
333
Felipe Balbi2eb88012016-04-12 16:53:39 +0300334 dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0);
335 dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1);
336 dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300337
Felipe Balbi8897a762016-09-22 10:56:08 +0300338 /*
339 * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're
340 * not relying on XferNotReady, we can make use of a special "No
341 * Response Update Transfer" command where we should clear both CmdAct
342 * and CmdIOC bits.
343 *
344 * With this, we don't need to wait for command completion and can
345 * straight away issue further commands to the endpoint.
346 *
347 * NOTICE: We're making an assumption that control endpoints will never
348 * make use of Update Transfer command. This is a safe assumption
349 * because we can never have more than one request at a time with
350 * Control Endpoints. If anybody changes that assumption, this chunk
351 * needs to be updated accordingly.
352 */
353 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER &&
354 !usb_endpoint_xfer_isoc(desc))
355 cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT);
356 else
357 cmd |= DWC3_DEPCMD_CMDACT;
358
359 dwc3_writel(dep->regs, DWC3_DEPCMD, cmd);
Felipe Balbi72246da2011-08-19 18:10:58 +0300360 do {
Felipe Balbi2eb88012016-04-12 16:53:39 +0300361 reg = dwc3_readl(dep->regs, DWC3_DEPCMD);
Felipe Balbi72246da2011-08-19 18:10:58 +0300362 if (!(reg & DWC3_DEPCMD_CMDACT)) {
Felipe Balbi0933df12016-05-23 14:02:33 +0300363 cmd_status = DWC3_DEPCMD_STATUS(reg);
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000364
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000365 switch (cmd_status) {
366 case 0:
367 ret = 0;
Felipe Balbic0ca3242016-04-04 09:11:51 +0300368 break;
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000369 case DEPEVT_TRANSFER_NO_RESOURCE:
Thinh Nguyenf7ac582e2020-03-29 16:13:16 -0700370 dev_WARN(dwc->dev, "No resource for %s\n",
371 dep->name);
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000372 ret = -EINVAL;
373 break;
374 case DEPEVT_TRANSFER_BUS_EXPIRY:
375 /*
376 * SW issues START TRANSFER command to
377 * isochronous ep with future frame interval. If
378 * future interval time has already passed when
379 * core receives the command, it will respond
380 * with an error status of 'Bus Expiry'.
381 *
382 * Instead of always returning -EINVAL, let's
383 * give a hint to the gadget driver that this is
384 * the case by returning -EAGAIN.
385 */
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000386 ret = -EAGAIN;
387 break;
388 default:
389 dev_WARN(dwc->dev, "UNKNOWN cmd status\n");
390 }
391
Felipe Balbic0ca3242016-04-04 09:11:51 +0300392 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300393 }
Felipe Balbif6bb2252016-05-23 13:53:34 +0300394 } while (--timeout);
Felipe Balbi72246da2011-08-19 18:10:58 +0300395
Felipe Balbif6bb2252016-05-23 13:53:34 +0300396 if (timeout == 0) {
Felipe Balbif6bb2252016-05-23 13:53:34 +0300397 ret = -ETIMEDOUT;
Felipe Balbi0933df12016-05-23 14:02:33 +0300398 cmd_status = -ETIMEDOUT;
Felipe Balbif6bb2252016-05-23 13:53:34 +0300399 }
Felipe Balbic0ca3242016-04-04 09:11:51 +0300400
Felipe Balbi0933df12016-05-23 14:02:33 +0300401 trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status);
402
Thinh Nguyen9bc33952020-03-29 16:13:04 -0700403 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) {
404 if (ret == 0)
405 dep->flags |= DWC3_EP_TRANSFER_STARTED;
406
407 if (ret != -ETIMEDOUT)
408 dwc3_gadget_ep_get_transfer_index(dep);
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +0300409 }
410
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700411 if (saved_config) {
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300412 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
Thinh Nguyen87dd9612018-09-11 12:42:05 -0700413 reg |= saved_config;
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300414 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
415 }
416
Felipe Balbic0ca3242016-04-04 09:11:51 +0300417 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300418}
419
John Youn50c763f2016-05-31 17:49:56 -0700420static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep)
421{
422 struct dwc3 *dwc = dep->dwc;
423 struct dwc3_gadget_ep_cmd_params params;
424 u32 cmd = DWC3_DEPCMD_CLEARSTALL;
425
426 /*
427 * As of core revision 2.60a the recommended programming model
428 * is to set the ClearPendIN bit when issuing a Clear Stall EP
429 * command for IN endpoints. This is to prevent an issue where
430 * some (non-compliant) hosts may not send ACK TPs for pending
431 * IN transfers due to a mishandled error condition. Synopsys
432 * STAR 9000614252.
433 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -0700434 if (dep->direction &&
435 !DWC3_VER_IS_PRIOR(DWC3, 260A) &&
Peter Chene81a7012020-08-21 10:55:48 +0800436 (dwc->gadget->speed >= USB_SPEED_SUPER))
John Youn50c763f2016-05-31 17:49:56 -0700437 cmd |= DWC3_DEPCMD_CLEARPENDIN;
438
439 memset(&params, 0, sizeof(params));
440
Felipe Balbi2cd47182016-04-12 16:42:43 +0300441 return dwc3_send_gadget_ep_cmd(dep, cmd, &params);
John Youn50c763f2016-05-31 17:49:56 -0700442}
443
Felipe Balbi72246da2011-08-19 18:10:58 +0300444static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
Felipe Balbif6bafc62012-02-06 11:04:53 +0200445 struct dwc3_trb *trb)
Felipe Balbi72246da2011-08-19 18:10:58 +0300446{
Paul Zimmermanc439ef82011-09-30 10:58:45 +0300447 u32 offset = (char *) trb - (char *) dep->trb_pool;
Felipe Balbi72246da2011-08-19 18:10:58 +0300448
449 return dep->trb_pool_dma + offset;
450}
451
452static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
453{
454 struct dwc3 *dwc = dep->dwc;
455
456 if (dep->trb_pool)
457 return 0;
458
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530459 dep->trb_pool = dma_alloc_coherent(dwc->sysdev,
Felipe Balbi72246da2011-08-19 18:10:58 +0300460 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
461 &dep->trb_pool_dma, GFP_KERNEL);
462 if (!dep->trb_pool) {
463 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
464 dep->name);
465 return -ENOMEM;
466 }
467
468 return 0;
469}
470
471static void dwc3_free_trb_pool(struct dwc3_ep *dep)
472{
473 struct dwc3 *dwc = dep->dwc;
474
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530475 dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
Felipe Balbi72246da2011-08-19 18:10:58 +0300476 dep->trb_pool, dep->trb_pool_dma);
477
478 dep->trb_pool = NULL;
479 dep->trb_pool_dma = 0;
480}
481
Felipe Balbi20d1d432018-04-09 12:49:02 +0300482static int dwc3_gadget_set_xfer_resource(struct dwc3_ep *dep)
483{
484 struct dwc3_gadget_ep_cmd_params params;
485
486 memset(&params, 0x00, sizeof(params));
487
488 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
489
490 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE,
491 &params);
492}
John Younc4509602016-02-16 20:10:53 -0800493
494/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300495 * dwc3_gadget_start_config - configure ep resources
John Younc4509602016-02-16 20:10:53 -0800496 * @dep: endpoint that is being enabled
497 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300498 * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's
499 * completion, it will set Transfer Resource for all available endpoints.
John Younc4509602016-02-16 20:10:53 -0800500 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300501 * The assignment of transfer resources cannot perfectly follow the data book
502 * due to the fact that the controller driver does not have all knowledge of the
503 * configuration in advance. It is given this information piecemeal by the
504 * composite gadget framework after every SET_CONFIGURATION and
505 * SET_INTERFACE. Trying to follow the databook programming model in this
506 * scenario can cause errors. For two reasons:
John Younc4509602016-02-16 20:10:53 -0800507 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300508 * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every
509 * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is
510 * incorrect in the scenario of multiple interfaces.
511 *
512 * 2) The databook does not mention doing more %DWC3_DEPCMD_DEPXFERCFG for new
John Younc4509602016-02-16 20:10:53 -0800513 * endpoint on alt setting (8.1.6).
514 *
515 * The following simplified method is used instead:
516 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300517 * All hardware endpoints can be assigned a transfer resource and this setting
518 * will stay persistent until either a core reset or hibernation. So whenever we
519 * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do
520 * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are
John Younc4509602016-02-16 20:10:53 -0800521 * guaranteed that there are as many transfer resources as endpoints.
522 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300523 * This function is called for each endpoint when it is being enabled but is
524 * triggered only when called for EP0-out, which always happens first, and which
525 * should only happen in one of the above conditions.
John Younc4509602016-02-16 20:10:53 -0800526 */
Felipe Balbib07c2db2018-04-09 12:46:47 +0300527static int dwc3_gadget_start_config(struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300528{
529 struct dwc3_gadget_ep_cmd_params params;
Felipe Balbib07c2db2018-04-09 12:46:47 +0300530 struct dwc3 *dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300531 u32 cmd;
John Younc4509602016-02-16 20:10:53 -0800532 int i;
533 int ret;
534
535 if (dep->number)
536 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300537
538 memset(&params, 0x00, sizeof(params));
John Younc4509602016-02-16 20:10:53 -0800539 cmd = DWC3_DEPCMD_DEPSTARTCFG;
Felipe Balbib07c2db2018-04-09 12:46:47 +0300540 dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300541
Felipe Balbi2cd47182016-04-12 16:42:43 +0300542 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
John Younc4509602016-02-16 20:10:53 -0800543 if (ret)
544 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300545
John Younc4509602016-02-16 20:10:53 -0800546 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
547 struct dwc3_ep *dep = dwc->eps[i];
548
549 if (!dep)
550 continue;
551
Felipe Balbib07c2db2018-04-09 12:46:47 +0300552 ret = dwc3_gadget_set_xfer_resource(dep);
John Younc4509602016-02-16 20:10:53 -0800553 if (ret)
554 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300555 }
556
557 return 0;
558}
559
Felipe Balbib07c2db2018-04-09 12:46:47 +0300560static int dwc3_gadget_set_ep_config(struct dwc3_ep *dep, unsigned int action)
Felipe Balbi72246da2011-08-19 18:10:58 +0300561{
John Youn39ebb052016-11-09 16:36:28 -0800562 const struct usb_ss_ep_comp_descriptor *comp_desc;
563 const struct usb_endpoint_descriptor *desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300564 struct dwc3_gadget_ep_cmd_params params;
Felipe Balbib07c2db2018-04-09 12:46:47 +0300565 struct dwc3 *dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300566
John Youn39ebb052016-11-09 16:36:28 -0800567 comp_desc = dep->endpoint.comp_desc;
568 desc = dep->endpoint.desc;
569
Felipe Balbi72246da2011-08-19 18:10:58 +0300570 memset(&params, 0x00, sizeof(params));
571
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300572 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
Chanho Parkd2e9a132012-08-31 16:54:07 +0900573 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
574
575 /* Burst size is only needed in SuperSpeed mode */
Peter Chene81a7012020-08-21 10:55:48 +0800576 if (dwc->gadget->speed >= USB_SPEED_SUPER) {
Felipe Balbi676e3492016-04-26 10:49:07 +0300577 u32 burst = dep->endpoint.maxburst;
Felipe Balbie319bd62020-08-13 08:35:38 +0300578
Felipe Balbi676e3492016-04-26 10:49:07 +0300579 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1);
Chanho Parkd2e9a132012-08-31 16:54:07 +0900580 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300581
Felipe Balbia2d23f02018-04-09 12:40:48 +0300582 params.param0 |= action;
583 if (action == DWC3_DEPCFG_ACTION_RESTORE)
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600584 params.param2 |= dep->saved_state;
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600585
Felipe Balbi4bc48c92016-08-10 16:04:33 +0300586 if (usb_endpoint_xfer_control(desc))
587 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN;
Felipe Balbi13fa2e62016-05-30 13:40:00 +0300588
589 if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc))
590 params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300591
Felipe Balbi18b7ede2012-01-02 13:35:41 +0200592 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300593 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
Thinh Nguyen548f8b32020-05-05 19:46:45 -0700594 | DWC3_DEPCFG_XFER_COMPLETE_EN
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300595 | DWC3_DEPCFG_STREAM_EVENT_EN;
Felipe Balbi879631a2011-09-30 10:58:47 +0300596 dep->stream_capable = true;
597 }
598
Felipe Balbi0b93a4c2014-09-04 10:28:10 -0500599 if (!usb_endpoint_xfer_control(desc))
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300600 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300601
602 /*
603 * We are doing 1:1 mapping for endpoints, meaning
604 * Physical Endpoints 2 maps to Logical Endpoint 2 and
605 * so on. We consider the direction bit as part of the physical
606 * endpoint number. So USB endpoint 0x81 is 0x03.
607 */
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300608 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
Felipe Balbi72246da2011-08-19 18:10:58 +0300609
610 /*
611 * We must use the lower 16 TX FIFOs even though
612 * HW might have more
613 */
614 if (dep->direction)
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300615 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300616
617 if (desc->bInterval) {
Thinh Nguyen6b78b382021-02-08 13:53:10 -0800618 u8 bInterval_m1;
619
620 /*
Thinh Nguyenf9ddfaa2021-04-15 00:41:58 -0700621 * Valid range for DEPCFG.bInterval_m1 is from 0 to 13.
622 *
623 * NOTE: The programming guide incorrectly stated bInterval_m1
624 * must be set to 0 when operating in fullspeed. Internally the
625 * controller does not have this limitation. See DWC_usb3x
626 * programming guide section 3.2.2.1.
Thinh Nguyen6b78b382021-02-08 13:53:10 -0800627 */
628 bInterval_m1 = min_t(u8, desc->bInterval - 1, 13);
Thinh Nguyen6b78b382021-02-08 13:53:10 -0800629
Thinh Nguyen5b4cd962021-02-08 13:53:16 -0800630 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT &&
631 dwc->gadget->speed == USB_SPEED_FULL)
632 dep->interval = desc->bInterval;
633 else
634 dep->interval = 1 << (desc->bInterval - 1);
635
Thinh Nguyen6b78b382021-02-08 13:53:10 -0800636 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(bInterval_m1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300637 }
638
Felipe Balbi2cd47182016-04-12 16:42:43 +0300639 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, &params);
Felipe Balbi72246da2011-08-19 18:10:58 +0300640}
641
Thinh Nguyen140ca4c2020-05-05 19:47:09 -0700642static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force,
643 bool interrupt);
644
Felipe Balbi72246da2011-08-19 18:10:58 +0300645/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300646 * __dwc3_gadget_ep_enable - initializes a hw endpoint
Felipe Balbi72246da2011-08-19 18:10:58 +0300647 * @dep: endpoint to be initialized
Felipe Balbia2d23f02018-04-09 12:40:48 +0300648 * @action: one of INIT, MODIFY or RESTORE
Felipe Balbi72246da2011-08-19 18:10:58 +0300649 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300650 * Caller should take care of locking. Execute all necessary commands to
651 * initialize a HW endpoint so it can be used by a gadget driver.
Felipe Balbi72246da2011-08-19 18:10:58 +0300652 */
Felipe Balbia2d23f02018-04-09 12:40:48 +0300653static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, unsigned int action)
Felipe Balbi72246da2011-08-19 18:10:58 +0300654{
John Youn39ebb052016-11-09 16:36:28 -0800655 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300656 struct dwc3 *dwc = dep->dwc;
John Youn39ebb052016-11-09 16:36:28 -0800657
Felipe Balbi72246da2011-08-19 18:10:58 +0300658 u32 reg;
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300659 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300660
661 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbib07c2db2018-04-09 12:46:47 +0300662 ret = dwc3_gadget_start_config(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300663 if (ret)
664 return ret;
665 }
666
Felipe Balbib07c2db2018-04-09 12:46:47 +0300667 ret = dwc3_gadget_set_ep_config(dep, action);
Felipe Balbi72246da2011-08-19 18:10:58 +0300668 if (ret)
669 return ret;
670
671 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200672 struct dwc3_trb *trb_st_hw;
673 struct dwc3_trb *trb_link;
Felipe Balbi72246da2011-08-19 18:10:58 +0300674
Felipe Balbi72246da2011-08-19 18:10:58 +0300675 dep->type = usb_endpoint_type(desc);
676 dep->flags |= DWC3_EP_ENABLED;
677
678 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
679 reg |= DWC3_DALEPENA_EP(dep->number);
680 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
681
Felipe Balbi36b68aa2016-04-05 13:24:36 +0300682 if (usb_endpoint_xfer_control(desc))
Felipe Balbi2870e502016-11-03 13:53:29 +0200683 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +0300684
John Youn0d257442016-05-19 17:26:08 -0700685 /* Initialize the TRB ring */
686 dep->trb_dequeue = 0;
687 dep->trb_enqueue = 0;
688 memset(dep->trb_pool, 0,
689 sizeof(struct dwc3_trb) * DWC3_TRB_NUM);
690
Felipe Balbi36b68aa2016-04-05 13:24:36 +0300691 /* Link TRB. The HWO bit is never reset */
Felipe Balbi72246da2011-08-19 18:10:58 +0300692 trb_st_hw = &dep->trb_pool[0];
693
Felipe Balbif6bafc62012-02-06 11:04:53 +0200694 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
Felipe Balbif6bafc62012-02-06 11:04:53 +0200695 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
696 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
697 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
698 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi72246da2011-08-19 18:10:58 +0300699 }
700
Felipe Balbia97ea992016-09-29 16:28:56 +0300701 /*
702 * Issue StartTransfer here with no-op TRB so we can always rely on No
703 * Response Update Transfer command.
704 */
Thinh Nguyen140ca4c2020-05-05 19:47:09 -0700705 if (usb_endpoint_xfer_bulk(desc) ||
Felipe Balbi52fcc0b2018-03-26 13:19:43 +0300706 usb_endpoint_xfer_int(desc)) {
Felipe Balbia97ea992016-09-29 16:28:56 +0300707 struct dwc3_gadget_ep_cmd_params params;
708 struct dwc3_trb *trb;
709 dma_addr_t trb_dma;
710 u32 cmd;
711
712 memset(&params, 0, sizeof(params));
713 trb = &dep->trb_pool[0];
714 trb_dma = dwc3_trb_dma_offset(dep, trb);
715
716 params.param0 = upper_32_bits(trb_dma);
717 params.param1 = lower_32_bits(trb_dma);
718
719 cmd = DWC3_DEPCMD_STARTTRANSFER;
720
721 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
722 if (ret < 0)
723 return ret;
Thinh Nguyen140ca4c2020-05-05 19:47:09 -0700724
725 if (dep->stream_capable) {
726 /*
727 * For streams, at start, there maybe a race where the
728 * host primes the endpoint before the function driver
729 * queues a request to initiate a stream. In that case,
730 * the controller will not see the prime to generate the
731 * ERDY and start stream. To workaround this, issue a
732 * no-op TRB as normal, but end it immediately. As a
733 * result, when the function driver queues the request,
734 * the next START_TRANSFER command will cause the
735 * controller to generate an ERDY to initiate the
736 * stream.
737 */
738 dwc3_stop_active_transfer(dep, true, true);
739
740 /*
741 * All stream eps will reinitiate stream on NoStream
742 * rejection until we can determine that the host can
743 * prime after the first transfer.
744 */
745 dep->flags |= DWC3_EP_FORCE_RESTART_STREAM;
746 }
Felipe Balbia97ea992016-09-29 16:28:56 +0300747 }
748
Felipe Balbi2870e502016-11-03 13:53:29 +0200749out:
750 trace_dwc3_gadget_ep_enable(dep);
751
Felipe Balbi72246da2011-08-19 18:10:58 +0300752 return 0;
753}
754
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200755static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300756{
757 struct dwc3_request *req;
758
Felipe Balbic5353b22019-02-13 13:00:54 +0200759 dwc3_stop_active_transfer(dep, true, false);
Felipe Balbi69450c42016-05-30 13:37:02 +0300760
Felipe Balbi0e146022016-06-21 10:32:02 +0300761 /* - giveback all requests to gadget driver */
762 while (!list_empty(&dep->started_list)) {
763 req = next_request(&dep->started_list);
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200764
Felipe Balbi0e146022016-06-21 10:32:02 +0300765 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbiea53b882012-02-17 12:10:04 +0200766 }
767
Felipe Balbiaa3342c2016-03-14 11:01:31 +0200768 while (!list_empty(&dep->pending_list)) {
769 req = next_request(&dep->pending_list);
Felipe Balbi72246da2011-08-19 18:10:58 +0300770
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200771 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbi72246da2011-08-19 18:10:58 +0300772 }
Felipe Balbid8eca642019-10-31 11:07:13 +0200773
774 while (!list_empty(&dep->cancelled_list)) {
775 req = next_request(&dep->cancelled_list);
776
777 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
778 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300779}
780
781/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300782 * __dwc3_gadget_ep_disable - disables a hw endpoint
Felipe Balbi72246da2011-08-19 18:10:58 +0300783 * @dep: the endpoint to disable
784 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300785 * This function undoes what __dwc3_gadget_ep_enable did and also removes
786 * requests which are currently being processed by the hardware and those which
787 * are not yet scheduled.
788 *
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200789 * Caller should take care of locking.
Felipe Balbi72246da2011-08-19 18:10:58 +0300790 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300791static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
792{
793 struct dwc3 *dwc = dep->dwc;
794 u32 reg;
795
Felipe Balbi2870e502016-11-03 13:53:29 +0200796 trace_dwc3_gadget_ep_disable(dep);
Felipe Balbi7eaeac52015-07-20 14:46:15 -0500797
Felipe Balbi687ef982014-04-16 10:30:33 -0500798 /* make sure HW endpoint isn't stalled */
799 if (dep->flags & DWC3_EP_STALL)
Felipe Balbi7a608552014-09-24 14:19:52 -0500800 __dwc3_gadget_ep_set_halt(dep, 0, false);
Felipe Balbi687ef982014-04-16 10:30:33 -0500801
Felipe Balbi72246da2011-08-19 18:10:58 +0300802 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
803 reg &= ~DWC3_DALEPENA_EP(dep->number);
804 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
805
John Youn39ebb052016-11-09 16:36:28 -0800806 /* Clear out the ep descriptors for non-ep0 */
807 if (dep->number > 1) {
808 dep->endpoint.comp_desc = NULL;
809 dep->endpoint.desc = NULL;
810 }
811
Wesley Chengc7bb96a2021-03-11 15:59:02 -0800812 dwc3_remove_requests(dwc, dep);
813
Wesley Cheng996a5782021-03-24 11:31:04 -0700814 dep->stream_capable = false;
815 dep->type = 0;
816 dep->flags = 0;
817
Felipe Balbi72246da2011-08-19 18:10:58 +0300818 return 0;
819}
820
821/* -------------------------------------------------------------------------- */
822
823static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
824 const struct usb_endpoint_descriptor *desc)
825{
826 return -EINVAL;
827}
828
829static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
830{
831 return -EINVAL;
832}
833
834/* -------------------------------------------------------------------------- */
835
836static int dwc3_gadget_ep_enable(struct usb_ep *ep,
837 const struct usb_endpoint_descriptor *desc)
838{
839 struct dwc3_ep *dep;
840 struct dwc3 *dwc;
841 unsigned long flags;
842 int ret;
843
844 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
845 pr_debug("dwc3: invalid parameters\n");
846 return -EINVAL;
847 }
848
849 if (!desc->wMaxPacketSize) {
850 pr_debug("dwc3: missing wMaxPacketSize\n");
851 return -EINVAL;
852 }
853
854 dep = to_dwc3_ep(ep);
855 dwc = dep->dwc;
856
Felipe Balbi95ca9612015-12-10 13:08:20 -0600857 if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED,
858 "%s is already enabled\n",
859 dep->name))
Felipe Balbic6f83f32012-08-15 12:28:29 +0300860 return 0;
Felipe Balbic6f83f32012-08-15 12:28:29 +0300861
Felipe Balbi72246da2011-08-19 18:10:58 +0300862 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbia2d23f02018-04-09 12:40:48 +0300863 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
Felipe Balbi72246da2011-08-19 18:10:58 +0300864 spin_unlock_irqrestore(&dwc->lock, flags);
865
866 return ret;
867}
868
869static int dwc3_gadget_ep_disable(struct usb_ep *ep)
870{
871 struct dwc3_ep *dep;
872 struct dwc3 *dwc;
873 unsigned long flags;
874 int ret;
875
876 if (!ep) {
877 pr_debug("dwc3: invalid parameters\n");
878 return -EINVAL;
879 }
880
881 dep = to_dwc3_ep(ep);
882 dwc = dep->dwc;
883
Felipe Balbi95ca9612015-12-10 13:08:20 -0600884 if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED),
885 "%s is already disabled\n",
886 dep->name))
Felipe Balbi72246da2011-08-19 18:10:58 +0300887 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300888
Felipe Balbi72246da2011-08-19 18:10:58 +0300889 spin_lock_irqsave(&dwc->lock, flags);
890 ret = __dwc3_gadget_ep_disable(dep);
891 spin_unlock_irqrestore(&dwc->lock, flags);
892
893 return ret;
894}
895
896static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
Felipe Balbi0bd0f6d2018-03-26 16:09:00 +0300897 gfp_t gfp_flags)
Felipe Balbi72246da2011-08-19 18:10:58 +0300898{
899 struct dwc3_request *req;
900 struct dwc3_ep *dep = to_dwc3_ep(ep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300901
902 req = kzalloc(sizeof(*req), gfp_flags);
Jingoo Han734d5a52014-07-17 12:45:11 +0900903 if (!req)
Felipe Balbi72246da2011-08-19 18:10:58 +0300904 return NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300905
Felipe Balbi31a2f5a2018-05-07 15:19:31 +0300906 req->direction = dep->direction;
Felipe Balbi72246da2011-08-19 18:10:58 +0300907 req->epnum = dep->number;
908 req->dep = dep;
Felipe Balbia3af5e32019-01-11 12:57:09 +0200909 req->status = DWC3_REQUEST_STATUS_UNKNOWN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300910
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500911 trace_dwc3_alloc_request(req);
912
Felipe Balbi72246da2011-08-19 18:10:58 +0300913 return &req->request;
914}
915
916static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
917 struct usb_request *request)
918{
919 struct dwc3_request *req = to_dwc3_request(request);
920
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500921 trace_dwc3_free_request(req);
Felipe Balbi72246da2011-08-19 18:10:58 +0300922 kfree(req);
923}
924
Felipe Balbi42626912018-04-09 13:01:43 +0300925/**
926 * dwc3_ep_prev_trb - returns the previous TRB in the ring
927 * @dep: The endpoint with the TRB ring
928 * @index: The index of the current TRB in the ring
929 *
930 * Returns the TRB prior to the one pointed to by the index. If the
931 * index is 0, we will wrap backwards, skip the link TRB, and return
932 * the one just before that.
933 */
934static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index)
935{
936 u8 tmp = index;
937
938 if (!tmp)
939 tmp = DWC3_TRB_NUM - 1;
940
941 return &dep->trb_pool[tmp - 1];
942}
943
944static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep)
945{
Felipe Balbi42626912018-04-09 13:01:43 +0300946 u8 trbs_left;
947
948 /*
Thinh Nguyen87b20162021-08-19 03:17:03 +0200949 * If the enqueue & dequeue are equal then the TRB ring is either full
950 * or empty. It's considered full when there are DWC3_TRB_NUM-1 of TRBs
951 * pending to be processed by the driver.
Felipe Balbi42626912018-04-09 13:01:43 +0300952 */
953 if (dep->trb_enqueue == dep->trb_dequeue) {
Thinh Nguyen87b20162021-08-19 03:17:03 +0200954 /*
955 * If there is any request remained in the started_list at
956 * this point, that means there is no TRB available.
957 */
958 if (!list_empty(&dep->started_list))
Felipe Balbi42626912018-04-09 13:01:43 +0300959 return 0;
960
961 return DWC3_TRB_NUM - 1;
962 }
963
964 trbs_left = dep->trb_dequeue - dep->trb_enqueue;
965 trbs_left &= (DWC3_TRB_NUM - 1);
966
967 if (dep->trb_dequeue < dep->trb_enqueue)
968 trbs_left--;
969
970 return trbs_left;
971}
Felipe Balbi2c78c022016-08-12 13:13:10 +0300972
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200973static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb,
Felipe Balbie319bd62020-08-13 08:35:38 +0300974 dma_addr_t dma, unsigned int length, unsigned int chain,
975 unsigned int node, unsigned int stream_id,
976 unsigned int short_not_ok, unsigned int no_interrupt,
Thinh Nguyenf9cc5812020-09-30 17:44:19 -0700977 unsigned int is_last, bool must_interrupt)
Felipe Balbic71fc372011-11-22 11:37:34 +0200978{
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300979 struct dwc3 *dwc = dep->dwc;
Peter Chene81a7012020-08-21 10:55:48 +0800980 struct usb_gadget *gadget = dwc->gadget;
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300981 enum usb_device_speed speed = gadget->speed;
Felipe Balbic71fc372011-11-22 11:37:34 +0200982
Felipe Balbif6bafc62012-02-06 11:04:53 +0200983 trb->size = DWC3_TRB_SIZE_LENGTH(length);
984 trb->bpl = lower_32_bits(dma);
985 trb->bph = upper_32_bits(dma);
Felipe Balbic71fc372011-11-22 11:37:34 +0200986
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200987 switch (usb_endpoint_type(dep->endpoint.desc)) {
Felipe Balbic71fc372011-11-22 11:37:34 +0200988 case USB_ENDPOINT_XFER_CONTROL:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200989 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
Felipe Balbic71fc372011-11-22 11:37:34 +0200990 break;
991
992 case USB_ENDPOINT_XFER_ISOC:
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300993 if (!node) {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530994 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300995
Manu Gautam40d829f2017-07-19 17:07:10 +0530996 /*
997 * USB Specification 2.0 Section 5.9.2 states that: "If
998 * there is only a single transaction in the microframe,
999 * only a DATA0 data packet PID is used. If there are
1000 * two transactions per microframe, DATA1 is used for
1001 * the first transaction data packet and DATA0 is used
1002 * for the second transaction data packet. If there are
1003 * three transactions per microframe, DATA2 is used for
1004 * the first transaction data packet, DATA1 is used for
1005 * the second, and DATA0 is used for the third."
1006 *
1007 * IOW, we should satisfy the following cases:
1008 *
1009 * 1) length <= maxpacket
1010 * - DATA0
1011 *
1012 * 2) maxpacket < length <= (2 * maxpacket)
1013 * - DATA1, DATA0
1014 *
1015 * 3) (2 * maxpacket) < length <= (3 * maxpacket)
1016 * - DATA2, DATA1, DATA0
1017 */
Felipe Balbi6b9018d2016-09-22 11:01:01 +03001018 if (speed == USB_SPEED_HIGH) {
1019 struct usb_ep *ep = &dep->endpoint;
Manu Gautamec5bb872017-12-06 12:49:04 +05301020 unsigned int mult = 2;
Manu Gautam40d829f2017-07-19 17:07:10 +05301021 unsigned int maxp = usb_endpoint_maxp(ep->desc);
1022
1023 if (length <= (2 * maxp))
1024 mult--;
1025
1026 if (length <= maxp)
1027 mult--;
1028
1029 trb->size |= DWC3_TRB_SIZE_PCM1(mult);
Felipe Balbi6b9018d2016-09-22 11:01:01 +03001030 }
1031 } else {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301032 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS;
Felipe Balbi6b9018d2016-09-22 11:01:01 +03001033 }
Felipe Balbica4d44e2016-03-10 13:53:27 +02001034
1035 /* always enable Interrupt on Missed ISOC */
1036 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
Felipe Balbic71fc372011-11-22 11:37:34 +02001037 break;
1038
1039 case USB_ENDPOINT_XFER_BULK:
1040 case USB_ENDPOINT_XFER_INT:
Felipe Balbif6bafc62012-02-06 11:04:53 +02001041 trb->ctrl = DWC3_TRBCTL_NORMAL;
Felipe Balbic71fc372011-11-22 11:37:34 +02001042 break;
1043 default:
1044 /*
1045 * This is only possible with faulty memory because we
1046 * checked it already :)
1047 */
Felipe Balbi0a695d42016-10-07 11:20:01 +03001048 dev_WARN(dwc->dev, "Unknown endpoint type %d\n",
1049 usb_endpoint_type(dep->endpoint.desc));
Felipe Balbic71fc372011-11-22 11:37:34 +02001050 }
1051
Tejas Joglekar244add82018-12-10 16:08:13 +05301052 /*
1053 * Enable Continue on Short Packet
1054 * when endpoint is not a stream capable
1055 */
Felipe Balbic9508c82016-10-05 14:26:23 +03001056 if (usb_endpoint_dir_out(dep->endpoint.desc)) {
Tejas Joglekar244add82018-12-10 16:08:13 +05301057 if (!dep->stream_capable)
1058 trb->ctrl |= DWC3_TRB_CTRL_CSP;
Felipe Balbif3af3652013-12-13 14:19:33 -06001059
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001060 if (short_not_ok)
Felipe Balbic9508c82016-10-05 14:26:23 +03001061 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
1062 }
1063
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001064 if ((!no_interrupt && !chain) || must_interrupt)
Felipe Balbic9508c82016-10-05 14:26:23 +03001065 trb->ctrl |= DWC3_TRB_CTRL_IOC;
Felipe Balbica4d44e2016-03-10 13:53:27 +02001066
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301067 if (chain)
1068 trb->ctrl |= DWC3_TRB_CTRL_CHN;
Thinh Nguyen3eaecd02020-05-05 19:46:51 -07001069 else if (dep->stream_capable && is_last)
1070 trb->ctrl |= DWC3_TRB_CTRL_LST;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301071
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001072 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001073 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id);
Felipe Balbif6bafc62012-02-06 11:04:53 +02001074
Udipto Goswami3bfca382022-02-07 09:55:58 +05301075 /*
1076 * As per data book 4.2.3.2TRB Control Bit Rules section
1077 *
1078 * The controller autonomously checks the HWO field of a TRB to determine if the
1079 * entire TRB is valid. Therefore, software must ensure that the rest of the TRB
1080 * is valid before setting the HWO field to '1'. In most systems, this means that
1081 * software must update the fourth DWORD of a TRB last.
1082 *
1083 * However there is a possibility of CPU re-ordering here which can cause
1084 * controller to observe the HWO bit set prematurely.
1085 * Add a write memory barrier to prevent CPU re-ordering.
1086 */
1087 wmb();
Felipe Balbif6bafc62012-02-06 11:04:53 +02001088 trb->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05001089
Anurag Kumar Vulishab7a4fbe2018-12-01 16:43:29 +05301090 dwc3_ep_inc_enq(dep);
1091
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05001092 trace_dwc3_prepare_trb(dep, trb);
Felipe Balbic71fc372011-11-22 11:37:34 +02001093}
1094
John Youn361572b2016-05-19 17:26:17 -07001095/**
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001096 * dwc3_prepare_one_trb - setup one TRB from one request
1097 * @dep: endpoint for which this request is prepared
1098 * @req: dwc3_request pointer
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001099 * @trb_length: buffer size of the TRB
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001100 * @chain: should this TRB be chained to the next?
1101 * @node: only for isochronous endpoints. First TRB needs different type.
Thinh Nguyen2b803572020-09-24 01:21:30 -07001102 * @use_bounce_buffer: set to use bounce buffer
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001103 * @must_interrupt: set to interrupt on TRB completion
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001104 */
1105static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001106 struct dwc3_request *req, unsigned int trb_length,
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001107 unsigned int chain, unsigned int node, bool use_bounce_buffer,
1108 bool must_interrupt)
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001109{
1110 struct dwc3_trb *trb;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301111 dma_addr_t dma;
Felipe Balbie319bd62020-08-13 08:35:38 +03001112 unsigned int stream_id = req->request.stream_id;
1113 unsigned int short_not_ok = req->request.short_not_ok;
1114 unsigned int no_interrupt = req->request.no_interrupt;
1115 unsigned int is_last = req->request.is_last;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301116
Thinh Nguyen2b803572020-09-24 01:21:30 -07001117 if (use_bounce_buffer)
1118 dma = dep->dwc->bounce_addr;
1119 else if (req->request.num_sgs > 0)
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301120 dma = sg_dma_address(req->start_sg);
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001121 else
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301122 dma = req->request.dma;
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001123
1124 trb = &dep->trb_pool[dep->trb_enqueue];
1125
1126 if (!req->trb) {
1127 dwc3_gadget_move_started_request(req);
1128 req->trb = trb;
1129 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001130 }
1131
Felipe Balbi09fe1f82018-08-01 13:32:07 +03001132 req->num_trbs++;
1133
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001134 __dwc3_prepare_one_trb(dep, trb, dma, trb_length, chain, node,
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001135 stream_id, short_not_ok, no_interrupt, is_last,
1136 must_interrupt);
1137}
1138
1139static bool dwc3_needs_extra_trb(struct dwc3_ep *dep, struct dwc3_request *req)
1140{
1141 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1142 unsigned int rem = req->request.length % maxp;
1143
1144 if ((req->request.length && req->request.zero && !rem &&
1145 !usb_endpoint_xfer_isoc(dep->endpoint.desc)) ||
1146 (!req->direction && rem))
1147 return true;
1148
1149 return false;
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001150}
1151
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001152/**
1153 * dwc3_prepare_last_sg - prepare TRBs for the last SG entry
1154 * @dep: The endpoint that the request belongs to
1155 * @req: The request to prepare
1156 * @entry_length: The last SG entry size
1157 * @node: Indicates whether this is not the first entry (for isoc only)
1158 *
1159 * Return the number of TRBs prepared.
1160 */
1161static int dwc3_prepare_last_sg(struct dwc3_ep *dep,
1162 struct dwc3_request *req, unsigned int entry_length,
1163 unsigned int node)
1164{
1165 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1166 unsigned int rem = req->request.length % maxp;
1167 unsigned int num_trbs = 1;
1168
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001169 if (dwc3_needs_extra_trb(dep, req))
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001170 num_trbs++;
1171
1172 if (dwc3_calc_trbs_left(dep) < num_trbs)
1173 return 0;
1174
1175 req->needs_extra_trb = num_trbs > 1;
1176
1177 /* Prepare a normal TRB */
1178 if (req->direction || req->request.length)
1179 dwc3_prepare_one_trb(dep, req, entry_length,
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001180 req->needs_extra_trb, node, false, false);
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001181
1182 /* Prepare extra TRBs for ZLP and MPS OUT transfer alignment */
1183 if ((!req->direction && !req->request.length) || req->needs_extra_trb)
1184 dwc3_prepare_one_trb(dep, req,
1185 req->direction ? 0 : maxp - rem,
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001186 false, 1, true, false);
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001187
1188 return num_trbs;
1189}
1190
Thinh Nguyen7f2958d2020-09-24 01:22:14 -07001191static int dwc3_prepare_trbs_sg(struct dwc3_ep *dep,
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001192 struct dwc3_request *req)
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001193{
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301194 struct scatterlist *sg = req->start_sg;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001195 struct scatterlist *s;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001196 int i;
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001197 unsigned int length = req->request.length;
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301198 unsigned int remaining = req->request.num_mapped_sgs
1199 - req->num_queued_sgs;
Thinh Nguyen13111fc2020-09-24 01:21:49 -07001200 unsigned int num_trbs = req->num_trbs;
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001201 bool needs_extra_trb = dwc3_needs_extra_trb(dep, req);
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301202
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001203 /*
1204 * If we resume preparing the request, then get the remaining length of
1205 * the request and resume where we left off.
1206 */
1207 for_each_sg(req->request.sg, s, req->num_queued_sgs, i)
1208 length -= sg_dma_len(s);
1209
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301210 for_each_sg(sg, s, remaining, i) {
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001211 unsigned int num_trbs_left = dwc3_calc_trbs_left(dep);
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001212 unsigned int trb_length;
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001213 bool must_interrupt = false;
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001214 bool last_sg = false;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001215
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001216 trb_length = min_t(unsigned int, length, sg_dma_len(s));
1217
1218 length -= trb_length;
1219
Pratham Pratapdad2aff2020-03-02 21:44:43 +00001220 /*
1221 * IOMMU driver is coalescing the list of sgs which shares a
1222 * page boundary into one and giving it to USB driver. With
1223 * this the number of sgs mapped is not equal to the number of
1224 * sgs passed. So mark the chain bit to false if it isthe last
1225 * mapped sg.
1226 */
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001227 if ((i == remaining - 1) || !length)
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001228 last_sg = true;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001229
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001230 if (!num_trbs_left)
Thinh Nguyen13111fc2020-09-24 01:21:49 -07001231 break;
1232
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001233 if (last_sg) {
1234 if (!dwc3_prepare_last_sg(dep, req, trb_length, i))
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001235 break;
Felipe Balbic6267a52017-01-05 14:58:46 +02001236 } else {
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001237 /*
1238 * Look ahead to check if we have enough TRBs for the
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001239 * next SG entry. If not, set interrupt on this TRB to
1240 * resume preparing the next SG entry when more TRBs are
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001241 * free.
1242 */
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001243 if (num_trbs_left == 1 || (needs_extra_trb &&
1244 num_trbs_left <= 2 &&
1245 sg_dma_len(sg_next(s)) >= length))
Thinh Nguyenf9cc5812020-09-30 17:44:19 -07001246 must_interrupt = true;
1247
1248 dwc3_prepare_one_trb(dep, req, trb_length, 1, i, false,
1249 must_interrupt);
Felipe Balbic6267a52017-01-05 14:58:46 +02001250 }
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001251
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301252 /*
1253 * There can be a situation where all sgs in sglist are not
1254 * queued because of insufficient trb number. To handle this
1255 * case, update start_sg to next sg to be queued, so that
1256 * we have free trbs we can continue queuing from where we
1257 * previously stopped
1258 */
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001259 if (!last_sg)
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301260 req->start_sg = sg_next(s);
1261
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301262 req->num_queued_sgs++;
Thinh Nguyenadccf172021-05-12 20:17:09 -07001263 req->num_pending_sgs--;
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301264
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001265 /*
1266 * The number of pending SG entries may not correspond to the
1267 * number of mapped SG entries. If all the data are queued, then
1268 * don't include unused SG entries.
1269 */
1270 if (length == 0) {
Thinh Nguyenadccf172021-05-12 20:17:09 -07001271 req->num_pending_sgs = 0;
Thinh Nguyen5d187c02020-08-06 19:46:23 -07001272 break;
1273 }
1274
Thinh Nguyen8dbbe482020-09-30 17:44:25 -07001275 if (must_interrupt)
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001276 break;
1277 }
Thinh Nguyen13111fc2020-09-24 01:21:49 -07001278
Thinh Nguyen30892cb2020-09-24 01:22:01 -07001279 return req->num_trbs - num_trbs;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001280}
1281
Thinh Nguyen7f2958d2020-09-24 01:22:14 -07001282static int dwc3_prepare_trbs_linear(struct dwc3_ep *dep,
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001283 struct dwc3_request *req)
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001284{
Thinh Nguyencb1b3992020-09-24 01:22:07 -07001285 return dwc3_prepare_last_sg(dep, req, req->request.length, 0);
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001286}
1287
Felipe Balbi72246da2011-08-19 18:10:58 +03001288/*
1289 * dwc3_prepare_trbs - setup TRBs from requests
1290 * @dep: endpoint for which requests are being prepared
Felipe Balbi72246da2011-08-19 18:10:58 +03001291 *
Paul Zimmerman1d046792012-02-15 18:56:56 -08001292 * The function goes through the requests list and sets up TRBs for the
1293 * transfers. The function returns once there are no more TRBs available or
1294 * it runs out of requests.
Thinh Nguyen490410b2020-09-24 01:21:55 -07001295 *
1296 * Returns the number of TRBs prepared or negative errno.
Felipe Balbi72246da2011-08-19 18:10:58 +03001297 */
Thinh Nguyen490410b2020-09-24 01:21:55 -07001298static int dwc3_prepare_trbs(struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +03001299{
Felipe Balbi68e823e2011-11-28 12:25:01 +02001300 struct dwc3_request *req, *n;
Thinh Nguyen490410b2020-09-24 01:21:55 -07001301 int ret = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001302
1303 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
1304
Felipe Balbid86c5a62016-10-25 13:48:52 +03001305 /*
1306 * We can get in a situation where there's a request in the started list
1307 * but there weren't enough TRBs to fully kick it in the first time
1308 * around, so it has been waiting for more TRBs to be freed up.
1309 *
1310 * In that case, we should check if we have a request with pending_sgs
1311 * in the started list and prepare TRBs for that request first,
1312 * otherwise we will prepare TRBs completely out of order and that will
1313 * break things.
1314 */
1315 list_for_each_entry(req, &dep->started_list, list) {
Thinh Nguyen490410b2020-09-24 01:21:55 -07001316 if (req->num_pending_sgs > 0) {
Thinh Nguyen7f2958d2020-09-24 01:22:14 -07001317 ret = dwc3_prepare_trbs_sg(dep, req);
Thinh Nguyen346a15c2020-09-30 17:44:32 -07001318 if (!ret || req->num_pending_sgs)
Thinh Nguyen490410b2020-09-24 01:21:55 -07001319 return ret;
1320 }
Felipe Balbid86c5a62016-10-25 13:48:52 +03001321
1322 if (!dwc3_calc_trbs_left(dep))
Thinh Nguyen490410b2020-09-24 01:21:55 -07001323 return ret;
Thinh Nguyen63c7bb22020-05-15 16:40:46 -07001324
1325 /*
1326 * Don't prepare beyond a transfer. In DWC_usb32, its transfer
1327 * burst capability may try to read and use TRBs beyond the
1328 * active transfer instead of stopping.
1329 */
1330 if (dep->stream_capable && req->request.is_last)
Thinh Nguyen490410b2020-09-24 01:21:55 -07001331 return ret;
Felipe Balbid86c5a62016-10-25 13:48:52 +03001332 }
1333
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001334 list_for_each_entry_safe(req, n, &dep->pending_list, list) {
Felipe Balbicdb55b32017-05-17 13:21:14 +03001335 struct dwc3 *dwc = dep->dwc;
Felipe Balbicdb55b32017-05-17 13:21:14 +03001336
1337 ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request,
1338 dep->direction);
1339 if (ret)
Thinh Nguyen490410b2020-09-24 01:21:55 -07001340 return ret;
Felipe Balbicdb55b32017-05-17 13:21:14 +03001341
1342 req->sg = req->request.sg;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301343 req->start_sg = req->sg;
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301344 req->num_queued_sgs = 0;
Felipe Balbicdb55b32017-05-17 13:21:14 +03001345 req->num_pending_sgs = req->request.num_mapped_sgs;
1346
Thinh Nguyen346a15c2020-09-30 17:44:32 -07001347 if (req->num_pending_sgs > 0) {
Thinh Nguyen7f2958d2020-09-24 01:22:14 -07001348 ret = dwc3_prepare_trbs_sg(dep, req);
Thinh Nguyen346a15c2020-09-30 17:44:32 -07001349 if (req->num_pending_sgs)
1350 return ret;
1351 } else {
Thinh Nguyen7f2958d2020-09-24 01:22:14 -07001352 ret = dwc3_prepare_trbs_linear(dep, req);
Thinh Nguyen346a15c2020-09-30 17:44:32 -07001353 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001354
Thinh Nguyen490410b2020-09-24 01:21:55 -07001355 if (!ret || !dwc3_calc_trbs_left(dep))
1356 return ret;
Thinh Nguyenaefe3d22020-05-05 19:47:03 -07001357
1358 /*
1359 * Don't prepare beyond a transfer. In DWC_usb32, its transfer
1360 * burst capability may try to read and use TRBs beyond the
1361 * active transfer instead of stopping.
1362 */
1363 if (dep->stream_capable && req->request.is_last)
Thinh Nguyen490410b2020-09-24 01:21:55 -07001364 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001365 }
Thinh Nguyen490410b2020-09-24 01:21:55 -07001366
1367 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001368}
1369
Thinh Nguyen8d990872020-03-29 16:12:57 -07001370static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep);
1371
Felipe Balbi7fdca762017-09-05 14:41:34 +03001372static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +03001373{
1374 struct dwc3_gadget_ep_cmd_params params;
1375 struct dwc3_request *req;
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001376 int starting;
Felipe Balbi72246da2011-08-19 18:10:58 +03001377 int ret;
1378 u32 cmd;
1379
Thinh Nguyend72ecc02020-09-29 00:18:48 -07001380 /*
1381 * Note that it's normal to have no new TRBs prepared (i.e. ret == 0).
1382 * This happens when we need to stop and restart a transfer such as in
1383 * the case of reinitiating a stream or retrying an isoc transfer.
1384 */
Thinh Nguyen490410b2020-09-24 01:21:55 -07001385 ret = dwc3_prepare_trbs(dep);
Thinh Nguyend72ecc02020-09-29 00:18:48 -07001386 if (ret < 0)
Thinh Nguyen490410b2020-09-24 01:21:55 -07001387 return ret;
Felipe Balbiccb94eb2017-09-05 14:28:46 +03001388
Felipe Balbi1912cbc2018-03-29 11:08:46 +03001389 starting = !(dep->flags & DWC3_EP_TRANSFER_STARTED);
Felipe Balbi72246da2011-08-19 18:10:58 +03001390
Thinh Nguyen23384842020-09-30 17:44:38 -07001391 /*
1392 * If there's no new TRB prepared and we don't need to restart a
1393 * transfer, there's no need to update the transfer.
1394 */
1395 if (!ret && !starting)
1396 return ret;
1397
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001398 req = next_request(&dep->started_list);
Felipe Balbi72246da2011-08-19 18:10:58 +03001399 if (!req) {
1400 dep->flags |= DWC3_EP_PENDING_REQUEST;
1401 return 0;
1402 }
1403
1404 memset(&params, 0, sizeof(params));
Felipe Balbi72246da2011-08-19 18:10:58 +03001405
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001406 if (starting) {
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301407 params.param0 = upper_32_bits(req->trb_dma);
1408 params.param1 = lower_32_bits(req->trb_dma);
Felipe Balbi7fdca762017-09-05 14:41:34 +03001409 cmd = DWC3_DEPCMD_STARTTRANSFER;
1410
Anurag Kumar Vulishaa7351802018-12-01 16:43:25 +05301411 if (dep->stream_capable)
1412 cmd |= DWC3_DEPCMD_PARAM(req->request.stream_id);
1413
Felipe Balbi7fdca762017-09-05 14:41:34 +03001414 if (usb_endpoint_xfer_isoc(dep->endpoint.desc))
1415 cmd |= DWC3_DEPCMD_PARAM(dep->frame_number);
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301416 } else {
Felipe Balbib6b1c6d2016-05-30 13:29:35 +03001417 cmd = DWC3_DEPCMD_UPDATETRANSFER |
1418 DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301419 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001420
Felipe Balbi2cd47182016-04-12 16:42:43 +03001421 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
Felipe Balbi72246da2011-08-19 18:10:58 +03001422 if (ret < 0) {
Thinh Nguyen8d990872020-03-29 16:12:57 -07001423 struct dwc3_request *tmp;
1424
1425 if (ret == -EAGAIN)
1426 return ret;
1427
1428 dwc3_stop_active_transfer(dep, true, true);
1429
1430 list_for_each_entry_safe(req, tmp, &dep->started_list, list)
1431 dwc3_gadget_move_cancelled_request(req);
1432
1433 /* If ep isn't started, then there's no end transfer pending */
1434 if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING))
1435 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
1436
Felipe Balbi72246da2011-08-19 18:10:58 +03001437 return ret;
1438 }
1439
Thinh Nguyene0d19562020-05-05 19:46:57 -07001440 if (dep->stream_capable && req->request.is_last)
1441 dep->flags |= DWC3_EP_WAIT_TRANSFER_COMPLETE;
1442
Felipe Balbi72246da2011-08-19 18:10:58 +03001443 return 0;
1444}
1445
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001446static int __dwc3_gadget_get_frame(struct dwc3 *dwc)
1447{
1448 u32 reg;
1449
1450 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1451 return DWC3_DSTS_SOFFN(reg);
1452}
1453
Thinh Nguyend92021f2018-11-14 22:56:54 -08001454/**
1455 * dwc3_gadget_start_isoc_quirk - workaround invalid frame number
1456 * @dep: isoc endpoint
1457 *
1458 * This function tests for the correct combination of BIT[15:14] from the 16-bit
1459 * microframe number reported by the XferNotReady event for the future frame
1460 * number to start the isoc transfer.
1461 *
1462 * In DWC_usb31 version 1.70a-ea06 and prior, for highspeed and fullspeed
1463 * isochronous IN, BIT[15:14] of the 16-bit microframe number reported by the
1464 * XferNotReady event are invalid. The driver uses this number to schedule the
1465 * isochronous transfer and passes it to the START TRANSFER command. Because
1466 * this number is invalid, the command may fail. If BIT[15:14] matches the
1467 * internal 16-bit microframe, the START TRANSFER command will pass and the
1468 * transfer will start at the scheduled time, if it is off by 1, the command
1469 * will still pass, but the transfer will start 2 seconds in the future. For all
1470 * other conditions, the START TRANSFER command will fail with bus-expiry.
1471 *
1472 * In order to workaround this issue, we can test for the correct combination of
1473 * BIT[15:14] by sending START TRANSFER commands with different values of
1474 * BIT[15:14]: 'b00, 'b01, 'b10, and 'b11. Each combination is 2^14 uframe apart
1475 * (or 2 seconds). 4 seconds into the future will result in a bus-expiry status.
1476 * As the result, within the 4 possible combinations for BIT[15:14], there will
1477 * be 2 successful and 2 failure START COMMAND status. One of the 2 successful
1478 * command status will result in a 2-second delay start. The smaller BIT[15:14]
1479 * value is the correct combination.
1480 *
1481 * Since there are only 4 outcomes and the results are ordered, we can simply
1482 * test 2 START TRANSFER commands with BIT[15:14] combinations 'b00 and 'b01 to
1483 * deduce the smaller successful combination.
1484 *
1485 * Let test0 = test status for combination 'b00 and test1 = test status for 'b01
1486 * of BIT[15:14]. The correct combination is as follow:
1487 *
1488 * if test0 fails and test1 passes, BIT[15:14] is 'b01
1489 * if test0 fails and test1 fails, BIT[15:14] is 'b10
1490 * if test0 passes and test1 fails, BIT[15:14] is 'b11
1491 * if test0 passes and test1 passes, BIT[15:14] is 'b00
1492 *
1493 * Synopsys STAR 9001202023: Wrong microframe number for isochronous IN
1494 * endpoints.
1495 */
Felipe Balbi25abad62018-08-14 10:41:19 +03001496static int dwc3_gadget_start_isoc_quirk(struct dwc3_ep *dep)
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301497{
Thinh Nguyend92021f2018-11-14 22:56:54 -08001498 int cmd_status = 0;
1499 bool test0;
1500 bool test1;
1501
1502 while (dep->combo_num < 2) {
1503 struct dwc3_gadget_ep_cmd_params params;
1504 u32 test_frame_number;
1505 u32 cmd;
1506
1507 /*
1508 * Check if we can start isoc transfer on the next interval or
1509 * 4 uframes in the future with BIT[15:14] as dep->combo_num
1510 */
Michael Grzeschikca143782020-07-01 20:24:51 +02001511 test_frame_number = dep->frame_number & DWC3_FRNUMBER_MASK;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001512 test_frame_number |= dep->combo_num << 14;
1513 test_frame_number += max_t(u32, 4, dep->interval);
1514
1515 params.param0 = upper_32_bits(dep->dwc->bounce_addr);
1516 params.param1 = lower_32_bits(dep->dwc->bounce_addr);
1517
1518 cmd = DWC3_DEPCMD_STARTTRANSFER;
1519 cmd |= DWC3_DEPCMD_PARAM(test_frame_number);
1520 cmd_status = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
1521
1522 /* Redo if some other failure beside bus-expiry is received */
1523 if (cmd_status && cmd_status != -EAGAIN) {
1524 dep->start_cmd_status = 0;
1525 dep->combo_num = 0;
Felipe Balbi25abad62018-08-14 10:41:19 +03001526 return 0;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001527 }
1528
1529 /* Store the first test status */
1530 if (dep->combo_num == 0)
1531 dep->start_cmd_status = cmd_status;
1532
1533 dep->combo_num++;
1534
1535 /*
1536 * End the transfer if the START_TRANSFER command is successful
1537 * to wait for the next XferNotReady to test the command again
1538 */
1539 if (cmd_status == 0) {
Felipe Balbic5353b22019-02-13 13:00:54 +02001540 dwc3_stop_active_transfer(dep, true, true);
Felipe Balbi25abad62018-08-14 10:41:19 +03001541 return 0;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001542 }
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301543 }
1544
Thinh Nguyend92021f2018-11-14 22:56:54 -08001545 /* test0 and test1 are both completed at this point */
1546 test0 = (dep->start_cmd_status == 0);
1547 test1 = (cmd_status == 0);
1548
1549 if (!test0 && test1)
1550 dep->combo_num = 1;
1551 else if (!test0 && !test1)
1552 dep->combo_num = 2;
1553 else if (test0 && !test1)
1554 dep->combo_num = 3;
1555 else if (test0 && test1)
1556 dep->combo_num = 0;
1557
Michael Grzeschikca143782020-07-01 20:24:51 +02001558 dep->frame_number &= DWC3_FRNUMBER_MASK;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001559 dep->frame_number |= dep->combo_num << 14;
1560 dep->frame_number += max_t(u32, 4, dep->interval);
1561
1562 /* Reinitialize test variables */
1563 dep->start_cmd_status = 0;
1564 dep->combo_num = 0;
1565
Felipe Balbi25abad62018-08-14 10:41:19 +03001566 return __dwc3_gadget_kick_transfer(dep);
Thinh Nguyend92021f2018-11-14 22:56:54 -08001567}
1568
Felipe Balbi25abad62018-08-14 10:41:19 +03001569static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep)
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301570{
Michael Olbrichc5a70922020-07-01 20:24:52 +02001571 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001572 struct dwc3 *dwc = dep->dwc;
Felipe Balbid5370102018-08-14 10:42:43 +03001573 int ret;
1574 int i;
Thinh Nguyend92021f2018-11-14 22:56:54 -08001575
Thinh Nguyen36f05d32020-03-29 16:13:10 -07001576 if (list_empty(&dep->pending_list) &&
1577 list_empty(&dep->started_list)) {
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301578 dep->flags |= DWC3_EP_PENDING_REQUEST;
Felipe Balbi25abad62018-08-14 10:41:19 +03001579 return -EAGAIN;
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301580 }
1581
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07001582 if (!dwc->dis_start_transfer_quirk &&
1583 (DWC3_VER_IS_PRIOR(DWC31, 170A) ||
1584 DWC3_VER_TYPE_IS_WITHIN(DWC31, 170A, EA01, EA06))) {
Peter Chene81a7012020-08-21 10:55:48 +08001585 if (dwc->gadget->speed <= USB_SPEED_HIGH && dep->direction)
Felipe Balbi25abad62018-08-14 10:41:19 +03001586 return dwc3_gadget_start_isoc_quirk(dep);
Thinh Nguyend92021f2018-11-14 22:56:54 -08001587 }
1588
Michael Olbrichc5a70922020-07-01 20:24:52 +02001589 if (desc->bInterval <= 14 &&
Peter Chene81a7012020-08-21 10:55:48 +08001590 dwc->gadget->speed >= USB_SPEED_HIGH) {
Michael Olbrichc5a70922020-07-01 20:24:52 +02001591 u32 frame = __dwc3_gadget_get_frame(dwc);
1592 bool rollover = frame <
1593 (dep->frame_number & DWC3_FRNUMBER_MASK);
1594
1595 /*
1596 * frame_number is set from XferNotReady and may be already
1597 * out of date. DSTS only provides the lower 14 bit of the
1598 * current frame number. So add the upper two bits of
1599 * frame_number and handle a possible rollover.
1600 * This will provide the correct frame_number unless more than
1601 * rollover has happened since XferNotReady.
1602 */
1603
1604 dep->frame_number = (dep->frame_number & ~DWC3_FRNUMBER_MASK) |
1605 frame;
1606 if (rollover)
1607 dep->frame_number += BIT(14);
1608 }
1609
Felipe Balbid5370102018-08-14 10:42:43 +03001610 for (i = 0; i < DWC3_ISOC_MAX_RETRIES; i++) {
1611 dep->frame_number = DWC3_ALIGN_FRAME(dep, i + 1);
1612
1613 ret = __dwc3_gadget_kick_transfer(dep);
1614 if (ret != -EAGAIN)
1615 break;
1616 }
1617
Thinh Nguyen36f05d32020-03-29 16:13:10 -07001618 /*
1619 * After a number of unsuccessful start attempts due to bus-expiry
1620 * status, issue END_TRANSFER command and retry on the next XferNotReady
1621 * event.
1622 */
1623 if (ret == -EAGAIN) {
1624 struct dwc3_gadget_ep_cmd_params params;
1625 u32 cmd;
1626
1627 cmd = DWC3_DEPCMD_ENDTRANSFER |
1628 DWC3_DEPCMD_CMDIOC |
1629 DWC3_DEPCMD_PARAM(dep->resource_index);
1630
1631 dep->resource_index = 0;
1632 memset(&params, 0, sizeof(params));
1633
1634 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
1635 if (!ret)
1636 dep->flags |= DWC3_EP_END_TRANSFER_PENDING;
1637 }
1638
Felipe Balbid5370102018-08-14 10:42:43 +03001639 return ret;
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301640}
1641
Felipe Balbi72246da2011-08-19 18:10:58 +03001642static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1643{
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001644 struct dwc3 *dwc = dep->dwc;
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001645
Wesley Chengc7bb96a2021-03-11 15:59:02 -08001646 if (!dep->endpoint.desc || !dwc->pullups_connected || !dwc->connected) {
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02001647 dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n",
1648 dep->name);
Felipe Balbibb423982015-11-16 15:31:21 -06001649 return -ESHUTDOWN;
1650 }
1651
Felipe Balbi04fb3652017-05-17 15:57:45 +03001652 if (WARN(req->dep != dep, "request %pK belongs to '%s'\n",
1653 &req->request, req->dep->name))
Felipe Balbibb423982015-11-16 15:31:21 -06001654 return -EINVAL;
Felipe Balbibb423982015-11-16 15:31:21 -06001655
Felipe Balbib2b6d602019-01-11 12:58:52 +02001656 if (WARN(req->status < DWC3_REQUEST_STATUS_COMPLETED,
1657 "%s: request %pK already in flight\n",
1658 dep->name, &req->request))
1659 return -EINVAL;
1660
Felipe Balbifc8bb912016-05-16 13:14:48 +03001661 pm_runtime_get(dwc->dev);
1662
Felipe Balbi72246da2011-08-19 18:10:58 +03001663 req->request.actual = 0;
1664 req->request.status = -EINPROGRESS;
Felipe Balbi72246da2011-08-19 18:10:58 +03001665
Felipe Balbife84f522015-09-01 09:01:38 -05001666 trace_dwc3_ep_queue(req);
1667
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001668 list_add_tail(&req->list, &dep->pending_list);
Felipe Balbia3af5e32019-01-11 12:57:09 +02001669 req->status = DWC3_REQUEST_STATUS_QUEUED;
Felipe Balbi72246da2011-08-19 18:10:58 +03001670
Thinh Nguyene0d19562020-05-05 19:46:57 -07001671 if (dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE)
1672 return 0;
1673
Thinh Nguyenc5036722020-09-02 18:42:58 -07001674 /*
1675 * Start the transfer only after the END_TRANSFER is completed
1676 * and endpoint STALL is cleared.
1677 */
1678 if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) ||
1679 (dep->flags & DWC3_EP_WEDGE) ||
1680 (dep->flags & DWC3_EP_STALL)) {
Thinh Nguyenda10bcd2019-12-18 18:14:50 -08001681 dep->flags |= DWC3_EP_DELAY_START;
1682 return 0;
1683 }
1684
Felipe Balbid889c232016-09-29 15:44:29 +03001685 /*
1686 * NOTICE: Isochronous endpoints should NEVER be prestarted. We must
1687 * wait for a XferNotReady event so we will know what's the current
1688 * (micro-)frame number.
1689 *
1690 * Without this trick, we are very, very likely gonna get Bus Expiry
1691 * errors which will force us issue EndTransfer command.
1692 */
1693 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbife990ce2018-03-29 13:23:53 +03001694 if (!(dep->flags & DWC3_EP_PENDING_REQUEST) &&
1695 !(dep->flags & DWC3_EP_TRANSFER_STARTED))
Roger Quadrosf1d68262017-04-21 15:58:08 +03001696 return 0;
Felipe Balbife990ce2018-03-29 13:23:53 +03001697
1698 if ((dep->flags & DWC3_EP_PENDING_REQUEST)) {
Felipe Balbie319bd62020-08-13 08:35:38 +03001699 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED))
Felipe Balbi25abad62018-08-14 10:41:19 +03001700 return __dwc3_gadget_start_isoc(dep);
Felipe Balbi08a36b52016-08-11 14:27:52 +03001701 }
Felipe Balbib511e5e2012-06-06 12:00:50 +03001702 }
1703
Wesley Cheng9bd96a22021-05-07 10:55:19 -07001704 __dwc3_gadget_kick_transfer(dep);
1705
1706 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001707}
1708
1709static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1710 gfp_t gfp_flags)
1711{
1712 struct dwc3_request *req = to_dwc3_request(request);
1713 struct dwc3_ep *dep = to_dwc3_ep(ep);
1714 struct dwc3 *dwc = dep->dwc;
1715
1716 unsigned long flags;
1717
1718 int ret;
1719
Zhuang Jin Canfdee4eb2014-09-03 14:26:34 +08001720 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001721 ret = __dwc3_gadget_ep_queue(dep, req);
1722 spin_unlock_irqrestore(&dwc->lock, flags);
1723
1724 return ret;
1725}
1726
Felipe Balbi7746a8d2018-08-01 13:42:29 +03001727static void dwc3_gadget_ep_skip_trbs(struct dwc3_ep *dep, struct dwc3_request *req)
1728{
1729 int i;
1730
Thinh Nguyencb11ea52020-03-05 13:23:55 -08001731 /* If req->trb is not set, then the request has not started */
1732 if (!req->trb)
1733 return;
1734
Felipe Balbi7746a8d2018-08-01 13:42:29 +03001735 /*
1736 * If request was already started, this means we had to
1737 * stop the transfer. With that we also need to ignore
1738 * all TRBs used by the request, however TRBs can only
1739 * be modified after completion of END_TRANSFER
1740 * command. So what we do here is that we wait for
1741 * END_TRANSFER completion and only after that, we jump
1742 * over TRBs by clearing HWO and incrementing dequeue
1743 * pointer.
1744 */
1745 for (i = 0; i < req->num_trbs; i++) {
1746 struct dwc3_trb *trb;
1747
Thinh Nguyen2dedea02020-03-05 13:24:01 -08001748 trb = &dep->trb_pool[dep->trb_dequeue];
Felipe Balbi7746a8d2018-08-01 13:42:29 +03001749 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1750 dwc3_ep_inc_deq(dep);
1751 }
Thinh Nguyenc7152762019-02-12 19:39:27 -08001752
1753 req->num_trbs = 0;
Felipe Balbi7746a8d2018-08-01 13:42:29 +03001754}
1755
Felipe Balbid4f1afe2018-08-01 13:54:25 +03001756static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep)
1757{
1758 struct dwc3_request *req;
1759 struct dwc3_request *tmp;
1760
1761 list_for_each_entry_safe(req, tmp, &dep->cancelled_list, list) {
1762 dwc3_gadget_ep_skip_trbs(dep, req);
1763 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1764 }
1765}
1766
Felipe Balbi72246da2011-08-19 18:10:58 +03001767static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1768 struct usb_request *request)
1769{
1770 struct dwc3_request *req = to_dwc3_request(request);
1771 struct dwc3_request *r = NULL;
1772
1773 struct dwc3_ep *dep = to_dwc3_ep(ep);
1774 struct dwc3 *dwc = dep->dwc;
1775
1776 unsigned long flags;
1777 int ret = 0;
1778
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05001779 trace_dwc3_ep_dequeue(req);
1780
Felipe Balbi72246da2011-08-19 18:10:58 +03001781 spin_lock_irqsave(&dwc->lock, flags);
1782
Thinh Nguyena7027ca2020-03-05 13:24:08 -08001783 list_for_each_entry(r, &dep->cancelled_list, list) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001784 if (r == req)
Thinh Nguyenfcd2def2020-03-05 13:24:20 -08001785 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +03001786 }
1787
Felipe Balbi72246da2011-08-19 18:10:58 +03001788 list_for_each_entry(r, &dep->pending_list, list) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001789 if (r == req) {
Thinh Nguyenfcd2def2020-03-05 13:24:20 -08001790 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1791 goto out;
1792 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001793 }
1794
Thinh Nguyenfcd2def2020-03-05 13:24:20 -08001795 list_for_each_entry(r, &dep->started_list, list) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001796 if (r == req) {
Thinh Nguyena7027ca2020-03-05 13:24:08 -08001797 struct dwc3_request *t;
1798
Felipe Balbi72246da2011-08-19 18:10:58 +03001799 /* wait until it is processed */
Felipe Balbic5353b22019-02-13 13:00:54 +02001800 dwc3_stop_active_transfer(dep, true, true);
Felipe Balbicf3113d2017-02-17 11:12:44 +02001801
Thinh Nguyena7027ca2020-03-05 13:24:08 -08001802 /*
1803 * Remove any started request if the transfer is
1804 * cancelled.
1805 */
1806 list_for_each_entry_safe(r, t, &dep->started_list, list)
1807 dwc3_gadget_move_cancelled_request(r);
Felipe Balbicf3113d2017-02-17 11:12:44 +02001808
Thinh Nguyen8907a102021-01-04 22:42:39 -08001809 dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
1810
Thinh Nguyenfcd2def2020-03-05 13:24:20 -08001811 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +03001812 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001813 }
1814
Thinh Nguyenfcd2def2020-03-05 13:24:20 -08001815 dev_err(dwc->dev, "request %pK was not queued to %s\n",
1816 request, ep->name);
1817 ret = -EINVAL;
1818out:
Felipe Balbi72246da2011-08-19 18:10:58 +03001819 spin_unlock_irqrestore(&dwc->lock, flags);
1820
1821 return ret;
1822}
1823
Felipe Balbi7a608552014-09-24 14:19:52 -05001824int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol)
Felipe Balbi72246da2011-08-19 18:10:58 +03001825{
1826 struct dwc3_gadget_ep_cmd_params params;
1827 struct dwc3 *dwc = dep->dwc;
Thinh Nguyencb11ea52020-03-05 13:23:55 -08001828 struct dwc3_request *req;
1829 struct dwc3_request *tmp;
Felipe Balbi72246da2011-08-19 18:10:58 +03001830 int ret;
1831
Felipe Balbi5ad02fb2014-09-24 10:48:26 -05001832 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1833 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1834 return -EINVAL;
1835 }
1836
Felipe Balbi72246da2011-08-19 18:10:58 +03001837 memset(&params, 0x00, sizeof(params));
1838
1839 if (value) {
Felipe Balbi69450c42016-05-30 13:37:02 +03001840 struct dwc3_trb *trb;
1841
Felipe Balbie319bd62020-08-13 08:35:38 +03001842 unsigned int transfer_in_flight;
1843 unsigned int started;
Felipe Balbi69450c42016-05-30 13:37:02 +03001844
1845 if (dep->number > 1)
1846 trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
1847 else
1848 trb = &dwc->ep0_trb[dep->trb_enqueue];
1849
1850 transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO;
1851 started = !list_empty(&dep->started_list);
1852
1853 if (!protocol && ((dep->direction && transfer_in_flight) ||
1854 (!dep->direction && started))) {
Felipe Balbi7a608552014-09-24 14:19:52 -05001855 return -EAGAIN;
1856 }
1857
Felipe Balbi2cd47182016-04-12 16:42:43 +03001858 ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL,
1859 &params);
Felipe Balbi72246da2011-08-19 18:10:58 +03001860 if (ret)
Dan Carpenter3f892042014-03-07 14:20:22 +03001861 dev_err(dwc->dev, "failed to set STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001862 dep->name);
1863 else
1864 dep->flags |= DWC3_EP_STALL;
1865 } else {
Thinh Nguyencb11ea52020-03-05 13:23:55 -08001866 /*
1867 * Don't issue CLEAR_STALL command to control endpoints. The
1868 * controller automatically clears the STALL when it receives
1869 * the SETUP token.
1870 */
1871 if (dep->number <= 1) {
1872 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
1873 return 0;
1874 }
Felipe Balbi2cd47182016-04-12 16:42:43 +03001875
Thinh Nguyend97c78a2020-09-02 18:43:04 -07001876 dwc3_stop_active_transfer(dep, true, true);
1877
1878 list_for_each_entry_safe(req, tmp, &dep->started_list, list)
1879 dwc3_gadget_move_cancelled_request(req);
1880
1881 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) {
1882 dep->flags |= DWC3_EP_PENDING_CLEAR_STALL;
1883 return 0;
1884 }
1885
1886 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
1887
John Youn50c763f2016-05-31 17:49:56 -07001888 ret = dwc3_send_clear_stall_ep_cmd(dep);
Thinh Nguyencb11ea52020-03-05 13:23:55 -08001889 if (ret) {
Dan Carpenter3f892042014-03-07 14:20:22 +03001890 dev_err(dwc->dev, "failed to clear STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001891 dep->name);
Thinh Nguyencb11ea52020-03-05 13:23:55 -08001892 return ret;
1893 }
1894
1895 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
1896
Thinh Nguyenc5036722020-09-02 18:42:58 -07001897 if ((dep->flags & DWC3_EP_DELAY_START) &&
1898 !usb_endpoint_xfer_isoc(dep->endpoint.desc))
1899 __dwc3_gadget_kick_transfer(dep);
1900
1901 dep->flags &= ~DWC3_EP_DELAY_START;
Felipe Balbi72246da2011-08-19 18:10:58 +03001902 }
Paul Zimmerman52754552011-09-30 10:58:44 +03001903
Felipe Balbi72246da2011-08-19 18:10:58 +03001904 return ret;
1905}
1906
1907static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1908{
1909 struct dwc3_ep *dep = to_dwc3_ep(ep);
1910 struct dwc3 *dwc = dep->dwc;
1911
1912 unsigned long flags;
1913
1914 int ret;
1915
1916 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7a608552014-09-24 14:19:52 -05001917 ret = __dwc3_gadget_ep_set_halt(dep, value, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001918 spin_unlock_irqrestore(&dwc->lock, flags);
1919
1920 return ret;
1921}
1922
1923static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1924{
1925 struct dwc3_ep *dep = to_dwc3_ep(ep);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001926 struct dwc3 *dwc = dep->dwc;
1927 unsigned long flags;
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001928 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001929
Paul Zimmerman249a4562012-02-24 17:32:16 -08001930 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001931 dep->flags |= DWC3_EP_WEDGE;
1932
Pratyush Anand08f0d962012-06-25 22:40:43 +05301933 if (dep->number == 0 || dep->number == 1)
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001934 ret = __dwc3_gadget_ep0_set_halt(ep, 1);
Pratyush Anand08f0d962012-06-25 22:40:43 +05301935 else
Felipe Balbi7a608552014-09-24 14:19:52 -05001936 ret = __dwc3_gadget_ep_set_halt(dep, 1, false);
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001937 spin_unlock_irqrestore(&dwc->lock, flags);
1938
1939 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001940}
1941
1942/* -------------------------------------------------------------------------- */
1943
1944static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1945 .bLength = USB_DT_ENDPOINT_SIZE,
1946 .bDescriptorType = USB_DT_ENDPOINT,
1947 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1948};
1949
1950static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1951 .enable = dwc3_gadget_ep0_enable,
1952 .disable = dwc3_gadget_ep0_disable,
1953 .alloc_request = dwc3_gadget_ep_alloc_request,
1954 .free_request = dwc3_gadget_ep_free_request,
1955 .queue = dwc3_gadget_ep0_queue,
1956 .dequeue = dwc3_gadget_ep_dequeue,
Pratyush Anand08f0d962012-06-25 22:40:43 +05301957 .set_halt = dwc3_gadget_ep0_set_halt,
Felipe Balbi72246da2011-08-19 18:10:58 +03001958 .set_wedge = dwc3_gadget_ep_set_wedge,
1959};
1960
1961static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1962 .enable = dwc3_gadget_ep_enable,
1963 .disable = dwc3_gadget_ep_disable,
1964 .alloc_request = dwc3_gadget_ep_alloc_request,
1965 .free_request = dwc3_gadget_ep_free_request,
1966 .queue = dwc3_gadget_ep_queue,
1967 .dequeue = dwc3_gadget_ep_dequeue,
1968 .set_halt = dwc3_gadget_ep_set_halt,
1969 .set_wedge = dwc3_gadget_ep_set_wedge,
1970};
1971
1972/* -------------------------------------------------------------------------- */
1973
1974static int dwc3_gadget_get_frame(struct usb_gadget *g)
1975{
1976 struct dwc3 *dwc = gadget_to_dwc(g);
Felipe Balbi72246da2011-08-19 18:10:58 +03001977
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001978 return __dwc3_gadget_get_frame(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001979}
1980
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001981static int __dwc3_gadget_wakeup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03001982{
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01001983 int retries;
Felipe Balbi72246da2011-08-19 18:10:58 +03001984
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001985 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001986 u32 reg;
1987
Felipe Balbi72246da2011-08-19 18:10:58 +03001988 u8 link_state;
Felipe Balbi72246da2011-08-19 18:10:58 +03001989
Felipe Balbi72246da2011-08-19 18:10:58 +03001990 /*
1991 * According to the Databook Remote wakeup request should
1992 * be issued only when the device is in early suspend state.
1993 *
1994 * We can check that via USB Link State bits in DSTS register.
1995 */
1996 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1997
Felipe Balbi72246da2011-08-19 18:10:58 +03001998 link_state = DWC3_DSTS_USBLNKST(reg);
1999
2000 switch (link_state) {
Thinh Nguyend0550cd2020-01-31 16:25:50 -08002001 case DWC3_LINK_STATE_RESET:
Felipe Balbi72246da2011-08-19 18:10:58 +03002002 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
2003 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
Thinh Nguyenb624b322021-04-19 19:11:12 -07002004 case DWC3_LINK_STATE_U2: /* in HS, means Sleep (L1) */
2005 case DWC3_LINK_STATE_U1:
Thinh Nguyend0550cd2020-01-31 16:25:50 -08002006 case DWC3_LINK_STATE_RESUME:
Felipe Balbi72246da2011-08-19 18:10:58 +03002007 break;
2008 default:
Felipe Balbi218ef7b2016-04-04 11:24:04 +03002009 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +03002010 }
2011
Felipe Balbi8598bde2012-01-02 18:55:57 +02002012 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
2013 if (ret < 0) {
2014 dev_err(dwc->dev, "failed to put link in Recovery\n");
Felipe Balbi218ef7b2016-04-04 11:24:04 +03002015 return ret;
Felipe Balbi8598bde2012-01-02 18:55:57 +02002016 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002017
Paul Zimmerman802fde92012-04-27 13:10:52 +03002018 /* Recent versions do this automatically */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002019 if (DWC3_VER_IS_PRIOR(DWC3, 194A)) {
Paul Zimmerman802fde92012-04-27 13:10:52 +03002020 /* write zeroes to Link Change Request */
Felipe Balbifcc023c2012-05-24 10:27:56 +03002021 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Paul Zimmerman802fde92012-04-27 13:10:52 +03002022 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
2023 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2024 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002025
Paul Zimmerman1d046792012-02-15 18:56:56 -08002026 /* poll until Link State changes to ON */
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01002027 retries = 20000;
Felipe Balbi72246da2011-08-19 18:10:58 +03002028
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01002029 while (retries--) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002030 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2031
2032 /* in HS, means ON */
2033 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
2034 break;
2035 }
2036
2037 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
2038 dev_err(dwc->dev, "failed to send remote wakeup\n");
Felipe Balbi218ef7b2016-04-04 11:24:04 +03002039 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +03002040 }
2041
Felipe Balbi218ef7b2016-04-04 11:24:04 +03002042 return 0;
2043}
2044
2045static int dwc3_gadget_wakeup(struct usb_gadget *g)
2046{
2047 struct dwc3 *dwc = gadget_to_dwc(g);
2048 unsigned long flags;
2049 int ret;
2050
2051 spin_lock_irqsave(&dwc->lock, flags);
2052 ret = __dwc3_gadget_wakeup(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03002053 spin_unlock_irqrestore(&dwc->lock, flags);
2054
2055 return ret;
2056}
2057
2058static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
2059 int is_selfpowered)
2060{
2061 struct dwc3 *dwc = gadget_to_dwc(g);
Paul Zimmerman249a4562012-02-24 17:32:16 -08002062 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03002063
Paul Zimmerman249a4562012-02-24 17:32:16 -08002064 spin_lock_irqsave(&dwc->lock, flags);
Peter Chenbcdea502015-01-28 16:32:40 +08002065 g->is_selfpowered = !!is_selfpowered;
Paul Zimmerman249a4562012-02-24 17:32:16 -08002066 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03002067
2068 return 0;
2069}
2070
Wesley Chengae7e8612020-09-28 17:20:59 -07002071static void dwc3_stop_active_transfers(struct dwc3 *dwc)
2072{
2073 u32 epnum;
2074
2075 for (epnum = 2; epnum < dwc->num_eps; epnum++) {
2076 struct dwc3_ep *dep;
2077
2078 dep = dwc->eps[epnum];
2079 if (!dep)
2080 continue;
2081
2082 dwc3_remove_requests(dwc, dep);
2083 }
2084}
2085
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002086static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03002087{
2088 u32 reg;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02002089 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +03002090
Felipe Balbifc8bb912016-05-16 13:14:48 +03002091 if (pm_runtime_suspended(dwc->dev))
2092 return 0;
2093
Felipe Balbi72246da2011-08-19 18:10:58 +03002094 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Felipe Balbi8db7ed12012-01-18 18:32:29 +02002095 if (is_on) {
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002096 if (DWC3_VER_IS_WITHIN(DWC3, ANY, 187A)) {
Paul Zimmerman802fde92012-04-27 13:10:52 +03002097 reg &= ~DWC3_DCTL_TRGTULST_MASK;
2098 reg |= DWC3_DCTL_TRGTULST_RX_DET;
2099 }
2100
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002101 if (!DWC3_VER_IS_PRIOR(DWC3, 194A))
Paul Zimmerman802fde92012-04-27 13:10:52 +03002102 reg &= ~DWC3_DCTL_KEEP_CONNECT;
2103 reg |= DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002104
2105 if (dwc->has_hibernation)
2106 reg |= DWC3_DCTL_KEEP_CONNECT;
2107
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02002108 dwc->pullups_connected = true;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02002109 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03002110 reg &= ~DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002111
2112 if (dwc->has_hibernation && !suspend)
2113 reg &= ~DWC3_DCTL_KEEP_CONNECT;
2114
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02002115 dwc->pullups_connected = false;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02002116 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002117
Thinh Nguyen5b738212019-10-23 19:15:43 -07002118 dwc3_gadget_dctl_write_safe(dwc, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002119
2120 do {
2121 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
Felipe Balbib6d4e162016-06-09 16:47:05 +03002122 reg &= DWC3_DSTS_DEVCTRLHLT;
2123 } while (--timeout && !(!is_on ^ !reg));
Felipe Balbif2df6792016-06-09 16:31:34 +03002124
2125 if (!timeout)
2126 return -ETIMEDOUT;
Felipe Balbi72246da2011-08-19 18:10:58 +03002127
Pratyush Anand6f17f742012-07-02 10:21:55 +05302128 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03002129}
2130
Wesley Chengae7e8612020-09-28 17:20:59 -07002131static void dwc3_gadget_disable_irq(struct dwc3 *dwc);
2132static void __dwc3_gadget_stop(struct dwc3 *dwc);
Wesley Chengdd8363f2020-12-29 15:00:37 -08002133static int __dwc3_gadget_start(struct dwc3 *dwc);
Wesley Chengae7e8612020-09-28 17:20:59 -07002134
Felipe Balbi72246da2011-08-19 18:10:58 +03002135static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
2136{
2137 struct dwc3 *dwc = gadget_to_dwc(g);
2138 unsigned long flags;
Pratyush Anand6f17f742012-07-02 10:21:55 +05302139 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002140
2141 is_on = !!is_on;
2142
Baolin Wangbb014732016-10-14 17:11:33 +08002143 /*
2144 * Per databook, when we want to stop the gadget, if a control transfer
2145 * is still in process, complete it and get the core into setup phase.
2146 */
2147 if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) {
2148 reinit_completion(&dwc->ep0_in_setup);
2149
2150 ret = wait_for_completion_timeout(&dwc->ep0_in_setup,
2151 msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT));
Wesley Cheng01da7c12021-08-24 21:28:55 -07002152 if (ret == 0)
2153 dev_warn(dwc->dev, "timed out waiting for SETUP phase\n");
Baolin Wangbb014732016-10-14 17:11:33 +08002154 }
2155
Wesley Chengae7e8612020-09-28 17:20:59 -07002156 /*
Wesley Cheng98c83d72021-08-03 23:24:05 -07002157 * Avoid issuing a runtime resume if the device is already in the
2158 * suspended state during gadget disconnect. DWC3 gadget was already
2159 * halted/stopped during runtime suspend.
2160 */
2161 if (!is_on) {
2162 pm_runtime_barrier(dwc->dev);
2163 if (pm_runtime_suspended(dwc->dev))
2164 return 0;
2165 }
2166
2167 /*
Wesley Cheng395d2732020-12-29 15:05:35 -08002168 * Check the return value for successful resume, or error. For a
2169 * successful resume, the DWC3 runtime PM resume routine will handle
2170 * the run stop sequence, so avoid duplicate operations here.
2171 */
2172 ret = pm_runtime_get_sync(dwc->dev);
2173 if (!ret || ret < 0) {
2174 pm_runtime_put(dwc->dev);
2175 return 0;
2176 }
2177
2178 /*
Wesley Cheng9e0677c2021-05-20 21:23:57 -07002179 * Synchronize and disable any further event handling while controller
2180 * is being enabled/disabled.
Wesley Chengae7e8612020-09-28 17:20:59 -07002181 */
Wesley Cheng9e0677c2021-05-20 21:23:57 -07002182 disable_irq(dwc->irq_gadget);
Wesley Chengae7e8612020-09-28 17:20:59 -07002183
Felipe Balbi72246da2011-08-19 18:10:58 +03002184 spin_lock_irqsave(&dwc->lock, flags);
Wesley Chengae7e8612020-09-28 17:20:59 -07002185
2186 if (!is_on) {
2187 u32 count;
2188
Wesley Chengc7bb96a2021-03-11 15:59:02 -08002189 dwc->connected = false;
Wesley Chengae7e8612020-09-28 17:20:59 -07002190 /*
2191 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
2192 * Section 4.1.8 Table 4-7, it states that for a device-initiated
2193 * disconnect, the SW needs to ensure that it sends "a DEPENDXFER
2194 * command for any active transfers" before clearing the RunStop
2195 * bit.
2196 */
2197 dwc3_stop_active_transfers(dwc);
2198 __dwc3_gadget_stop(dwc);
2199
2200 /*
2201 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
2202 * Section 1.3.4, it mentions that for the DEVCTRLHLT bit, the
2203 * "software needs to acknowledge the events that are generated
2204 * (by writing to GEVNTCOUNTn) while it is waiting for this bit
2205 * to be set to '1'."
2206 */
2207 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
2208 count &= DWC3_GEVNTCOUNT_MASK;
2209 if (count > 0) {
2210 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
2211 dwc->ev_buf->lpos = (dwc->ev_buf->lpos + count) %
2212 dwc->ev_buf->length;
2213 }
Wesley Chengdd8363f2020-12-29 15:00:37 -08002214 } else {
2215 __dwc3_gadget_start(dwc);
Wesley Chengae7e8612020-09-28 17:20:59 -07002216 }
2217
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002218 ret = dwc3_gadget_run_stop(dwc, is_on, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03002219 spin_unlock_irqrestore(&dwc->lock, flags);
Wesley Cheng9e0677c2021-05-20 21:23:57 -07002220 enable_irq(dwc->irq_gadget);
2221
Wesley Cheng395d2732020-12-29 15:05:35 -08002222 pm_runtime_put(dwc->dev);
Felipe Balbi72246da2011-08-19 18:10:58 +03002223
Pratyush Anand6f17f742012-07-02 10:21:55 +05302224 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002225}
2226
Felipe Balbi8698e2a2013-02-08 15:24:04 +02002227static void dwc3_gadget_enable_irq(struct dwc3 *dwc)
2228{
2229 u32 reg;
2230
2231 /* Enable all but Start and End of Frame IRQs */
2232 reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
2233 DWC3_DEVTEN_EVNTOVERFLOWEN |
2234 DWC3_DEVTEN_CMDCMPLTEN |
2235 DWC3_DEVTEN_ERRTICERREN |
2236 DWC3_DEVTEN_WKUPEVTEN |
Felipe Balbi8698e2a2013-02-08 15:24:04 +02002237 DWC3_DEVTEN_CONNECTDONEEN |
2238 DWC3_DEVTEN_USBRSTEN |
2239 DWC3_DEVTEN_DISCONNEVTEN);
2240
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002241 if (DWC3_VER_IS_PRIOR(DWC3, 250A))
Felipe Balbi799e9dc2016-09-23 11:20:40 +03002242 reg |= DWC3_DEVTEN_ULSTCNGEN;
2243
Jack Pham45f37f52021-04-28 02:01:10 -07002244 /* On 2.30a and above this bit enables U3/L2-L1 Suspend Events */
2245 if (!DWC3_VER_IS_PRIOR(DWC3, 230A))
2246 reg |= DWC3_DEVTEN_EOPFEN;
2247
Felipe Balbi8698e2a2013-02-08 15:24:04 +02002248 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
2249}
2250
2251static void dwc3_gadget_disable_irq(struct dwc3 *dwc)
2252{
2253 /* mask all interrupts */
2254 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2255}
2256
2257static irqreturn_t dwc3_interrupt(int irq, void *_dwc);
Felipe Balbib15a7622011-06-30 16:57:15 +03002258static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc);
Felipe Balbi8698e2a2013-02-08 15:24:04 +02002259
Felipe Balbi4e994722016-05-13 14:09:59 +03002260/**
Felipe Balbibfad65e2017-04-19 14:59:27 +03002261 * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG
2262 * @dwc: pointer to our context structure
Felipe Balbi4e994722016-05-13 14:09:59 +03002263 *
2264 * The following looks like complex but it's actually very simple. In order to
2265 * calculate the number of packets we can burst at once on OUT transfers, we're
2266 * gonna use RxFIFO size.
2267 *
2268 * To calculate RxFIFO size we need two numbers:
2269 * MDWIDTH = size, in bits, of the internal memory bus
2270 * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits)
2271 *
2272 * Given these two numbers, the formula is simple:
2273 *
2274 * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16;
2275 *
2276 * 24 bytes is for 3x SETUP packets
2277 * 16 bytes is a clock domain crossing tolerance
2278 *
2279 * Given RxFIFO Size, NUMP = RxFIFOSize / 1024;
2280 */
2281static void dwc3_gadget_setup_nump(struct dwc3 *dwc)
2282{
2283 u32 ram2_depth;
2284 u32 mdwidth;
2285 u32 nump;
2286 u32 reg;
2287
2288 ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7);
2289 mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0);
Thinh Nguyen4244ba02020-04-11 19:20:07 -07002290 if (DWC3_IP_IS(DWC32))
2291 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
Felipe Balbi4e994722016-05-13 14:09:59 +03002292
2293 nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024;
2294 nump = min_t(u32, nump, 16);
2295
2296 /* update NumP */
2297 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2298 reg &= ~DWC3_DCFG_NUMP_MASK;
2299 reg |= nump << DWC3_DCFG_NUMP_SHIFT;
2300 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2301}
2302
Felipe Balbid7be2952016-05-04 15:49:37 +03002303static int __dwc3_gadget_start(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03002304{
Felipe Balbi72246da2011-08-19 18:10:58 +03002305 struct dwc3_ep *dep;
Felipe Balbi72246da2011-08-19 18:10:58 +03002306 int ret = 0;
2307 u32 reg;
2308
John Youncf40b862016-11-14 12:32:43 -08002309 /*
2310 * Use IMOD if enabled via dwc->imod_interval. Otherwise, if
2311 * the core supports IMOD, disable it.
2312 */
2313 if (dwc->imod_interval) {
2314 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
2315 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
2316 } else if (dwc3_has_imod(dwc)) {
2317 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0);
2318 }
2319
Felipe Balbi2a58f9c2016-04-28 10:56:28 +03002320 /*
2321 * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP
2322 * field instead of letting dwc3 itself calculate that automatically.
2323 *
2324 * This way, we maximize the chances that we'll be able to get several
2325 * bursts of data without going through any sort of endpoint throttling.
2326 */
2327 reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG);
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002328 if (DWC3_IP_IS(DWC3))
Thinh Nguyen01b0e2c2018-03-16 15:34:13 -07002329 reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL;
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002330 else
2331 reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL;
Thinh Nguyen01b0e2c2018-03-16 15:34:13 -07002332
Felipe Balbi2a58f9c2016-04-28 10:56:28 +03002333 dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg);
2334
Felipe Balbi4e994722016-05-13 14:09:59 +03002335 dwc3_gadget_setup_nump(dwc);
2336
Felipe Balbi72246da2011-08-19 18:10:58 +03002337 /* Start with SuperSpeed Default */
2338 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2339
2340 dep = dwc->eps[0];
Felipe Balbia2d23f02018-04-09 12:40:48 +03002341 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
Felipe Balbi72246da2011-08-19 18:10:58 +03002342 if (ret) {
2343 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbid7be2952016-05-04 15:49:37 +03002344 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +03002345 }
2346
2347 dep = dwc->eps[1];
Felipe Balbia2d23f02018-04-09 12:40:48 +03002348 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT);
Felipe Balbi72246da2011-08-19 18:10:58 +03002349 if (ret) {
2350 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbid7be2952016-05-04 15:49:37 +03002351 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03002352 }
2353
2354 /* begin to receive SETUP packets */
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03002355 dwc->ep0state = EP0_SETUP_PHASE;
Zeng Tao88b1bb12018-12-26 19:22:00 +08002356 dwc->link_state = DWC3_LINK_STATE_SS_DIS;
Wesley Cheng01da7c12021-08-24 21:28:55 -07002357 dwc->delayed_status = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002358 dwc3_ep0_out_start(dwc);
2359
Felipe Balbi8698e2a2013-02-08 15:24:04 +02002360 dwc3_gadget_enable_irq(dwc);
2361
Felipe Balbid7be2952016-05-04 15:49:37 +03002362 return 0;
2363
2364err1:
2365 __dwc3_gadget_ep_disable(dwc->eps[0]);
2366
2367err0:
2368 return ret;
2369}
2370
2371static int dwc3_gadget_start(struct usb_gadget *g,
2372 struct usb_gadget_driver *driver)
2373{
2374 struct dwc3 *dwc = gadget_to_dwc(g);
2375 unsigned long flags;
2376 int ret = 0;
2377 int irq;
2378
Roger Quadros9522def2016-06-10 14:48:38 +03002379 irq = dwc->irq_gadget;
Felipe Balbid7be2952016-05-04 15:49:37 +03002380 ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt,
2381 IRQF_SHARED, "dwc3", dwc->ev_buf);
2382 if (ret) {
2383 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
2384 irq, ret);
2385 goto err0;
2386 }
2387
2388 spin_lock_irqsave(&dwc->lock, flags);
2389 if (dwc->gadget_driver) {
2390 dev_err(dwc->dev, "%s is already bound to %s\n",
Peter Chene81a7012020-08-21 10:55:48 +08002391 dwc->gadget->name,
Felipe Balbid7be2952016-05-04 15:49:37 +03002392 dwc->gadget_driver->driver.name);
2393 ret = -EBUSY;
2394 goto err1;
2395 }
2396
2397 dwc->gadget_driver = driver;
Felipe Balbi72246da2011-08-19 18:10:58 +03002398 spin_unlock_irqrestore(&dwc->lock, flags);
2399
2400 return 0;
2401
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03002402err1:
Felipe Balbi72246da2011-08-19 18:10:58 +03002403 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbid7be2952016-05-04 15:49:37 +03002404 free_irq(irq, dwc);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03002405
2406err0:
Felipe Balbi72246da2011-08-19 18:10:58 +03002407 return ret;
2408}
2409
Felipe Balbid7be2952016-05-04 15:49:37 +03002410static void __dwc3_gadget_stop(struct dwc3 *dwc)
2411{
2412 dwc3_gadget_disable_irq(dwc);
2413 __dwc3_gadget_ep_disable(dwc->eps[0]);
2414 __dwc3_gadget_ep_disable(dwc->eps[1]);
2415}
2416
Felipe Balbi22835b82014-10-17 12:05:12 -05002417static int dwc3_gadget_stop(struct usb_gadget *g)
Felipe Balbi72246da2011-08-19 18:10:58 +03002418{
2419 struct dwc3 *dwc = gadget_to_dwc(g);
2420 unsigned long flags;
2421
2422 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03002423 dwc->gadget_driver = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +03002424 spin_unlock_irqrestore(&dwc->lock, flags);
2425
Felipe Balbi3f308d12016-05-16 14:17:06 +03002426 free_irq(dwc->irq_gadget, dwc->ev_buf);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03002427
Felipe Balbi72246da2011-08-19 18:10:58 +03002428 return 0;
2429}
Paul Zimmerman802fde92012-04-27 13:10:52 +03002430
Anurag Kumar Vulisha729dcff2019-05-10 12:37:28 +05302431static void dwc3_gadget_config_params(struct usb_gadget *g,
2432 struct usb_dcd_config_params *params)
2433{
2434 struct dwc3 *dwc = gadget_to_dwc(g);
2435
Thinh Nguyen54fb5ba2019-08-19 18:36:06 -07002436 params->besl_baseline = USB_DEFAULT_BESL_UNSPECIFIED;
2437 params->besl_deep = USB_DEFAULT_BESL_UNSPECIFIED;
2438
2439 /* Recommended BESL */
2440 if (!dwc->dis_enblslpm_quirk) {
Thinh Nguyen17b63702019-08-29 18:00:16 -07002441 /*
2442 * If the recommended BESL baseline is 0 or if the BESL deep is
2443 * less than 2, Microsoft's Windows 10 host usb stack will issue
2444 * a usb reset immediately after it receives the extended BOS
2445 * descriptor and the enumeration will fail. To maintain
2446 * compatibility with the Windows' usb stack, let's set the
2447 * recommended BESL baseline to 1 and clamp the BESL deep to be
2448 * within 2 to 15.
2449 */
2450 params->besl_baseline = 1;
Thinh Nguyen54fb5ba2019-08-19 18:36:06 -07002451 if (dwc->is_utmi_l1_suspend)
Thinh Nguyen17b63702019-08-29 18:00:16 -07002452 params->besl_deep =
2453 clamp_t(u8, dwc->hird_threshold, 2, 15);
Thinh Nguyen54fb5ba2019-08-19 18:36:06 -07002454 }
2455
Anurag Kumar Vulisha729dcff2019-05-10 12:37:28 +05302456 /* U1 Device exit Latency */
2457 if (dwc->dis_u1_entry_quirk)
2458 params->bU1devExitLat = 0;
2459 else
2460 params->bU1devExitLat = DWC3_DEFAULT_U1_DEV_EXIT_LAT;
2461
2462 /* U2 Device exit Latency */
2463 if (dwc->dis_u2_entry_quirk)
2464 params->bU2DevExitLat = 0;
2465 else
2466 params->bU2DevExitLat =
2467 cpu_to_le16(DWC3_DEFAULT_U2_DEV_EXIT_LAT);
2468}
2469
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002470static void dwc3_gadget_set_speed(struct usb_gadget *g,
2471 enum usb_device_speed speed)
2472{
2473 struct dwc3 *dwc = gadget_to_dwc(g);
2474 unsigned long flags;
2475 u32 reg;
2476
2477 spin_lock_irqsave(&dwc->lock, flags);
2478 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2479 reg &= ~(DWC3_DCFG_SPEED_MASK);
2480
2481 /*
2482 * WORKAROUND: DWC3 revision < 2.20a have an issue
2483 * which would cause metastability state on Run/Stop
2484 * bit if we try to force the IP to USB2-only mode.
2485 *
2486 * Because of that, we cannot configure the IP to any
2487 * speed other than the SuperSpeed
2488 *
2489 * Refers to:
2490 *
2491 * STAR#9000525659: Clock Domain Crossing on DCTL in
2492 * USB 2.0 Mode
2493 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002494 if (DWC3_VER_IS_PRIOR(DWC3, 220A) &&
Roger Quadros42bf02e2017-10-31 15:11:55 +02002495 !dwc->dis_metastability_quirk) {
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002496 reg |= DWC3_DCFG_SUPERSPEED;
2497 } else {
2498 switch (speed) {
2499 case USB_SPEED_LOW:
2500 reg |= DWC3_DCFG_LOWSPEED;
2501 break;
2502 case USB_SPEED_FULL:
2503 reg |= DWC3_DCFG_FULLSPEED;
2504 break;
2505 case USB_SPEED_HIGH:
2506 reg |= DWC3_DCFG_HIGHSPEED;
2507 break;
2508 case USB_SPEED_SUPER:
2509 reg |= DWC3_DCFG_SUPERSPEED;
2510 break;
2511 case USB_SPEED_SUPER_PLUS:
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002512 if (DWC3_IP_IS(DWC3))
Thinh Nguyen2f3090c2018-03-16 15:35:57 -07002513 reg |= DWC3_DCFG_SUPERSPEED;
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002514 else
2515 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002516 break;
2517 default:
2518 dev_err(dwc->dev, "invalid speed (%d)\n", speed);
2519
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002520 if (DWC3_IP_IS(DWC3))
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002521 reg |= DWC3_DCFG_SUPERSPEED;
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002522 else
2523 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002524 }
2525 }
2526 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2527
2528 spin_unlock_irqrestore(&dwc->lock, flags);
2529}
2530
Felipe Balbi72246da2011-08-19 18:10:58 +03002531static const struct usb_gadget_ops dwc3_gadget_ops = {
2532 .get_frame = dwc3_gadget_get_frame,
2533 .wakeup = dwc3_gadget_wakeup,
2534 .set_selfpowered = dwc3_gadget_set_selfpowered,
2535 .pullup = dwc3_gadget_pullup,
2536 .udc_start = dwc3_gadget_start,
2537 .udc_stop = dwc3_gadget_stop,
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002538 .udc_set_speed = dwc3_gadget_set_speed,
Anurag Kumar Vulisha729dcff2019-05-10 12:37:28 +05302539 .get_config_params = dwc3_gadget_config_params,
Felipe Balbi72246da2011-08-19 18:10:58 +03002540};
2541
2542/* -------------------------------------------------------------------------- */
2543
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002544static int dwc3_gadget_init_control_endpoint(struct dwc3_ep *dep)
2545{
2546 struct dwc3 *dwc = dep->dwc;
2547
2548 usb_ep_set_maxpacket_limit(&dep->endpoint, 512);
2549 dep->endpoint.maxburst = 1;
2550 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
2551 if (!dep->direction)
Peter Chene81a7012020-08-21 10:55:48 +08002552 dwc->gadget->ep0 = &dep->endpoint;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002553
2554 dep->endpoint.caps.type_control = true;
2555
2556 return 0;
2557}
2558
2559static int dwc3_gadget_init_in_endpoint(struct dwc3_ep *dep)
2560{
2561 struct dwc3 *dwc = dep->dwc;
2562 int mdwidth;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002563 int size;
2564
2565 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
Thinh Nguyen4244ba02020-04-11 19:20:07 -07002566 if (DWC3_IP_IS(DWC32))
2567 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
2568
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002569 /* MDWIDTH is represented in bits, we need it in bytes */
2570 mdwidth /= 8;
2571
2572 size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(dep->number >> 1));
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002573 if (DWC3_IP_IS(DWC3))
Thinh Nguyen586f4332020-01-31 16:59:21 -08002574 size = DWC3_GTXFIFOSIZ_TXFDEP(size);
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002575 else
2576 size = DWC31_GTXFIFOSIZ_TXFDEP(size);
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002577
2578 /* FIFO Depth is in MDWDITH bytes. Multiply */
2579 size *= mdwidth;
2580
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002581 /*
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002582 * To meet performance requirement, a minimum TxFIFO size of 3x
2583 * MaxPacketSize is recommended for endpoints that support burst and a
2584 * minimum TxFIFO size of 2x MaxPacketSize for endpoints that don't
2585 * support burst. Use those numbers and we can calculate the max packet
2586 * limit as below.
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002587 */
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002588 if (dwc->maximum_speed >= USB_SPEED_SUPER)
2589 size /= 3;
2590 else
2591 size /= 2;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002592
2593 usb_ep_set_maxpacket_limit(&dep->endpoint, size);
2594
Thinh Nguyene0a93d92020-09-29 15:26:29 -07002595 dep->endpoint.max_streams = 16;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002596 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2597 list_add_tail(&dep->endpoint.ep_list,
Peter Chene81a7012020-08-21 10:55:48 +08002598 &dwc->gadget->ep_list);
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002599 dep->endpoint.caps.type_iso = true;
2600 dep->endpoint.caps.type_bulk = true;
2601 dep->endpoint.caps.type_int = true;
2602
2603 return dwc3_alloc_trb_pool(dep);
2604}
2605
2606static int dwc3_gadget_init_out_endpoint(struct dwc3_ep *dep)
2607{
2608 struct dwc3 *dwc = dep->dwc;
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002609 int mdwidth;
2610 int size;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002611
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002612 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
Thinh Nguyen4244ba02020-04-11 19:20:07 -07002613 if (DWC3_IP_IS(DWC32))
2614 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6);
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002615
2616 /* MDWIDTH is represented in bits, convert to bytes */
2617 mdwidth /= 8;
2618
2619 /* All OUT endpoints share a single RxFIFO space */
2620 size = dwc3_readl(dwc->regs, DWC3_GRXFIFOSIZ(0));
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002621 if (DWC3_IP_IS(DWC3))
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002622 size = DWC3_GRXFIFOSIZ_RXFDEP(size);
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002623 else
2624 size = DWC31_GRXFIFOSIZ_RXFDEP(size);
Thinh Nguyend94ea5312020-01-31 16:59:27 -08002625
2626 /* FIFO depth is in MDWDITH bytes */
2627 size *= mdwidth;
2628
2629 /*
2630 * To meet performance requirement, a minimum recommended RxFIFO size
2631 * is defined as follow:
2632 * RxFIFO size >= (3 x MaxPacketSize) +
2633 * (3 x 8 bytes setup packets size) + (16 bytes clock crossing margin)
2634 *
2635 * Then calculate the max packet limit as below.
2636 */
2637 size -= (3 * 8) + 16;
2638 if (size < 0)
2639 size = 0;
2640 else
2641 size /= 3;
2642
2643 usb_ep_set_maxpacket_limit(&dep->endpoint, size);
Thinh Nguyene0a93d92020-09-29 15:26:29 -07002644 dep->endpoint.max_streams = 16;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002645 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2646 list_add_tail(&dep->endpoint.ep_list,
Peter Chene81a7012020-08-21 10:55:48 +08002647 &dwc->gadget->ep_list);
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002648 dep->endpoint.caps.type_iso = true;
2649 dep->endpoint.caps.type_bulk = true;
2650 dep->endpoint.caps.type_int = true;
2651
2652 return dwc3_alloc_trb_pool(dep);
2653}
2654
2655static int dwc3_gadget_init_endpoint(struct dwc3 *dwc, u8 epnum)
Felipe Balbi72246da2011-08-19 18:10:58 +03002656{
2657 struct dwc3_ep *dep;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002658 bool direction = epnum & 1;
2659 int ret;
2660 u8 num = epnum >> 1;
2661
2662 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
2663 if (!dep)
2664 return -ENOMEM;
2665
2666 dep->dwc = dwc;
2667 dep->number = epnum;
2668 dep->direction = direction;
2669 dep->regs = dwc->regs + DWC3_DEP_BASE(epnum);
2670 dwc->eps[epnum] = dep;
Thinh Nguyend92021f2018-11-14 22:56:54 -08002671 dep->combo_num = 0;
2672 dep->start_cmd_status = 0;
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002673
2674 snprintf(dep->name, sizeof(dep->name), "ep%u%s", num,
2675 direction ? "in" : "out");
2676
2677 dep->endpoint.name = dep->name;
2678
2679 if (!(dep->number > 1)) {
2680 dep->endpoint.desc = &dwc3_gadget_ep0_desc;
2681 dep->endpoint.comp_desc = NULL;
2682 }
2683
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002684 if (num == 0)
2685 ret = dwc3_gadget_init_control_endpoint(dep);
2686 else if (direction)
2687 ret = dwc3_gadget_init_in_endpoint(dep);
2688 else
2689 ret = dwc3_gadget_init_out_endpoint(dep);
2690
2691 if (ret)
2692 return ret;
2693
2694 dep->endpoint.caps.dir_in = direction;
2695 dep->endpoint.caps.dir_out = !direction;
2696
2697 INIT_LIST_HEAD(&dep->pending_list);
2698 INIT_LIST_HEAD(&dep->started_list);
Felipe Balbid5443bb2018-08-01 13:53:29 +03002699 INIT_LIST_HEAD(&dep->cancelled_list);
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002700
Jack Phame52d43c2021-05-29 12:29:32 -07002701 dwc3_debugfs_create_endpoint_dir(dep);
2702
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002703 return 0;
2704}
2705
2706static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total)
2707{
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002708 u8 epnum;
Felipe Balbi72246da2011-08-19 18:10:58 +03002709
Peter Chene81a7012020-08-21 10:55:48 +08002710 INIT_LIST_HEAD(&dwc->gadget->ep_list);
Bryan O'Donoghuef3bcfc72017-01-31 20:58:11 +00002711
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002712 for (epnum = 0; epnum < total; epnum++) {
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002713 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002714
Felipe Balbi8f1c99c2018-04-09 11:06:09 +03002715 ret = dwc3_gadget_init_endpoint(dwc, epnum);
2716 if (ret)
2717 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002718 }
2719
2720 return 0;
2721}
2722
2723static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
2724{
2725 struct dwc3_ep *dep;
2726 u8 epnum;
2727
2728 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2729 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002730 if (!dep)
2731 continue;
George Cherian5bf8fae2013-05-27 14:35:49 +05302732 /*
2733 * Physical endpoints 0 and 1 are special; they form the
2734 * bi-directional USB endpoint 0.
2735 *
2736 * For those two physical endpoints, we don't allocate a TRB
2737 * pool nor do we add them the endpoints list. Due to that, we
2738 * shouldn't do these two operations otherwise we would end up
2739 * with all sorts of bugs when removing dwc3.ko.
2740 */
2741 if (epnum != 0 && epnum != 1) {
2742 dwc3_free_trb_pool(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03002743 list_del(&dep->endpoint.ep_list);
George Cherian5bf8fae2013-05-27 14:35:49 +05302744 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002745
Jack Phame52d43c2021-05-29 12:29:32 -07002746 debugfs_remove_recursive(debugfs_lookup(dep->name, dwc->root));
Felipe Balbi72246da2011-08-19 18:10:58 +03002747 kfree(dep);
2748 }
2749}
2750
Felipe Balbi72246da2011-08-19 18:10:58 +03002751/* -------------------------------------------------------------------------- */
Felipe Balbie5caff62013-02-26 15:11:05 +02002752
Felipe Balbi8f608e82018-03-27 10:53:29 +03002753static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep,
2754 struct dwc3_request *req, struct dwc3_trb *trb,
2755 const struct dwc3_event_depevt *event, int status, int chain)
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302756{
2757 unsigned int count;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302758
Felipe Balbidc55c672016-08-12 13:20:32 +03002759 dwc3_ep_inc_deq(dep);
Felipe Balbia9c3ca52016-10-05 14:24:37 +03002760
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05002761 trace_dwc3_complete_trb(dep, trb);
Felipe Balbi09fe1f82018-08-01 13:32:07 +03002762 req->num_trbs--;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05002763
Felipe Balbie5b36ae2016-08-10 11:13:26 +03002764 /*
2765 * If we're in the middle of series of chained TRBs and we
2766 * receive a short transfer along the way, DWC3 will skip
2767 * through all TRBs including the last TRB in the chain (the
2768 * where CHN bit is zero. DWC3 will also avoid clearing HWO
2769 * bit and SW has to do it manually.
2770 *
2771 * We're going to do that here to avoid problems of HW trying
2772 * to use bogus TRBs for transfers.
2773 */
2774 if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO))
2775 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2776
Felipe Balbic6267a52017-01-05 14:58:46 +02002777 /*
Thinh Nguyen6abfa0f2018-11-15 19:03:27 -08002778 * For isochronous transfers, the first TRB in a service interval must
2779 * have the Isoc-First type. Track and report its interval frame number.
2780 */
2781 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
2782 (trb->ctrl & DWC3_TRBCTL_ISOCHRONOUS_FIRST)) {
2783 unsigned int frame_number;
2784
2785 frame_number = DWC3_TRB_CTRL_GET_SID_SOFN(trb->ctrl);
2786 frame_number &= ~(dep->interval - 1);
2787 req->request.frame_number = frame_number;
2788 }
2789
2790 /*
Thinh Nguyena2841f42020-09-24 01:21:36 -07002791 * We use bounce buffer for requests that needs extra TRB or OUT ZLP. If
2792 * this TRB points to the bounce buffer address, it's a MPS alignment
2793 * TRB. Don't add it to req->remaining calculation.
Felipe Balbic6267a52017-01-05 14:58:46 +02002794 */
Thinh Nguyena2841f42020-09-24 01:21:36 -07002795 if (trb->bpl == lower_32_bits(dep->dwc->bounce_addr) &&
2796 trb->bph == upper_32_bits(dep->dwc->bounce_addr)) {
Felipe Balbic6267a52017-01-05 14:58:46 +02002797 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2798 return 1;
2799 }
2800
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302801 count = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbie62c5bc52016-10-25 13:47:21 +03002802 req->remaining += count;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302803
Felipe Balbi35b27192017-03-08 13:56:37 +02002804 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
2805 return 1;
2806
Felipe Balbid80fe1b2018-04-06 11:04:21 +03002807 if (event->status & DEPEVT_STATUS_SHORT && !chain)
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302808 return 1;
Felipe Balbif99f53f2016-08-12 13:19:20 +03002809
Anurag Kumar Vulisha5ee85892020-01-27 19:30:46 +00002810 if ((trb->ctrl & DWC3_TRB_CTRL_IOC) ||
2811 (trb->ctrl & DWC3_TRB_CTRL_LST))
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302812 return 1;
Felipe Balbif99f53f2016-08-12 13:19:20 +03002813
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302814 return 0;
2815}
2816
Felipe Balbid3692952018-03-29 13:32:10 +03002817static int dwc3_gadget_ep_reclaim_trb_sg(struct dwc3_ep *dep,
2818 struct dwc3_request *req, const struct dwc3_event_depevt *event,
2819 int status)
2820{
2821 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue];
2822 struct scatterlist *sg = req->sg;
2823 struct scatterlist *s;
Thinh Nguyenadccf172021-05-12 20:17:09 -07002824 unsigned int num_queued = req->num_queued_sgs;
Felipe Balbid3692952018-03-29 13:32:10 +03002825 unsigned int i;
2826 int ret = 0;
2827
Thinh Nguyenadccf172021-05-12 20:17:09 -07002828 for_each_sg(sg, s, num_queued, i) {
Felipe Balbid3692952018-03-29 13:32:10 +03002829 trb = &dep->trb_pool[dep->trb_dequeue];
2830
Felipe Balbid3692952018-03-29 13:32:10 +03002831 req->sg = sg_next(s);
Thinh Nguyenadccf172021-05-12 20:17:09 -07002832 req->num_queued_sgs--;
Felipe Balbid3692952018-03-29 13:32:10 +03002833
2834 ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req,
2835 trb, event, status, true);
2836 if (ret)
2837 break;
2838 }
2839
2840 return ret;
2841}
2842
2843static int dwc3_gadget_ep_reclaim_trb_linear(struct dwc3_ep *dep,
2844 struct dwc3_request *req, const struct dwc3_event_depevt *event,
2845 int status)
2846{
2847 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue];
2848
2849 return dwc3_gadget_ep_reclaim_completed_trb(dep, req, trb,
2850 event, status, false);
2851}
2852
Felipe Balbie0c42ce2018-04-06 15:37:30 +03002853static bool dwc3_gadget_ep_request_completed(struct dwc3_request *req)
2854{
Thinh Nguyenadccf172021-05-12 20:17:09 -07002855 return req->num_pending_sgs == 0 && req->num_queued_sgs == 0;
Felipe Balbie0c42ce2018-04-06 15:37:30 +03002856}
2857
Felipe Balbif38e35d2018-04-06 15:56:35 +03002858static int dwc3_gadget_ep_cleanup_completed_request(struct dwc3_ep *dep,
2859 const struct dwc3_event_depevt *event,
2860 struct dwc3_request *req, int status)
2861{
2862 int ret;
2863
Thinh Nguyenadccf172021-05-12 20:17:09 -07002864 if (req->request.num_mapped_sgs)
Felipe Balbif38e35d2018-04-06 15:56:35 +03002865 ret = dwc3_gadget_ep_reclaim_trb_sg(dep, req, event,
2866 status);
2867 else
2868 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event,
2869 status);
2870
Thinh Nguyen690e5c22020-09-24 01:21:24 -07002871 req->request.actual = req->request.length - req->remaining;
2872
2873 if (!dwc3_gadget_ep_request_completed(req))
2874 goto out;
2875
Felipe Balbi1a22ec62018-08-01 13:15:05 +03002876 if (req->needs_extra_trb) {
Felipe Balbif38e35d2018-04-06 15:56:35 +03002877 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event,
2878 status);
Felipe Balbi1a22ec62018-08-01 13:15:05 +03002879 req->needs_extra_trb = false;
Felipe Balbif38e35d2018-04-06 15:56:35 +03002880 }
2881
Felipe Balbif38e35d2018-04-06 15:56:35 +03002882 dwc3_gadget_giveback(dep, req, status);
2883
2884out:
2885 return ret;
2886}
2887
Felipe Balbi12a3a4a2018-03-29 11:53:40 +03002888static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep,
Felipe Balbi8f608e82018-03-27 10:53:29 +03002889 const struct dwc3_event_depevt *event, int status)
Felipe Balbi72246da2011-08-19 18:10:58 +03002890{
Felipe Balbi6afbdb52018-04-06 15:49:49 +03002891 struct dwc3_request *req;
2892 struct dwc3_request *tmp;
Felipe Balbi72246da2011-08-19 18:10:58 +03002893
Felipe Balbi6afbdb52018-04-06 15:49:49 +03002894 list_for_each_entry_safe(req, tmp, &dep->started_list, list) {
Felipe Balbifee73e62018-04-06 15:50:29 +03002895 int ret;
Felipe Balbie5b36ae2016-08-10 11:13:26 +03002896
Felipe Balbif38e35d2018-04-06 15:56:35 +03002897 ret = dwc3_gadget_ep_cleanup_completed_request(dep, event,
2898 req, status);
Felipe Balbi58f02182018-03-29 12:10:31 +03002899 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03002900 break;
Felipe Balbi31162af2016-08-11 14:38:37 +03002901 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002902}
2903
Thinh Nguyend9feef92020-03-31 01:40:42 -07002904static bool dwc3_gadget_ep_should_continue(struct dwc3_ep *dep)
2905{
2906 struct dwc3_request *req;
2907
2908 if (!list_empty(&dep->pending_list))
2909 return true;
2910
2911 /*
2912 * We only need to check the first entry of the started list. We can
2913 * assume the completed requests are removed from the started list.
2914 */
2915 req = next_request(&dep->started_list);
2916 if (!req)
2917 return false;
2918
2919 return !dwc3_gadget_ep_request_completed(req);
2920}
2921
Felipe Balbiee3638b2018-03-27 11:26:53 +03002922static void dwc3_gadget_endpoint_frame_from_event(struct dwc3_ep *dep,
2923 const struct dwc3_event_depevt *event)
2924{
Felipe Balbif62afb42018-04-11 10:34:34 +03002925 dep->frame_number = event->parameters;
Felipe Balbiee3638b2018-03-27 11:26:53 +03002926}
2927
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002928static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep,
2929 const struct dwc3_event_depevt *event, int status)
Felipe Balbi72246da2011-08-19 18:10:58 +03002930{
Felipe Balbi8f608e82018-03-27 10:53:29 +03002931 struct dwc3 *dwc = dep->dwc;
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002932 bool no_started_trb = true;
Felipe Balbi6d8a0192018-03-29 12:49:28 +03002933
Albert Wang0755f3f2021-11-09 17:26:42 +08002934 if (!dep->endpoint.desc)
2935 return no_started_trb;
2936
Felipe Balbi5f2e7972018-03-29 11:10:45 +03002937 dwc3_gadget_ep_cleanup_completed_requests(dep, event, status);
Felipe Balbifae2b902011-10-14 13:00:30 +03002938
Thinh Nguyenb6842d42020-05-05 19:46:33 -07002939 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
2940 goto out;
Felipe Balbi6d8a0192018-03-29 12:49:28 +03002941
Michael Grzeschikf5e46aa2020-07-01 20:24:53 +02002942 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
2943 list_empty(&dep->started_list) &&
2944 (list_empty(&dep->pending_list) || status == -EXDEV))
Felipe Balbifae2b902011-10-14 13:00:30 +03002945 dwc3_stop_active_transfer(dep, true, true);
Thinh Nguyend9feef92020-03-31 01:40:42 -07002946 else if (dwc3_gadget_ep_should_continue(dep))
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002947 if (__dwc3_gadget_kick_transfer(dep) == 0)
2948 no_started_trb = false;
Felipe Balbifae2b902011-10-14 13:00:30 +03002949
Thinh Nguyenb6842d42020-05-05 19:46:33 -07002950out:
Felipe Balbifae2b902011-10-14 13:00:30 +03002951 /*
2952 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
2953 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
2954 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07002955 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) {
Felipe Balbifae2b902011-10-14 13:00:30 +03002956 u32 reg;
2957 int i;
2958
2959 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
Moiz Sonasath348e0262012-08-01 14:08:30 -05002960 dep = dwc->eps[i];
Felipe Balbifae2b902011-10-14 13:00:30 +03002961
2962 if (!(dep->flags & DWC3_EP_ENABLED))
2963 continue;
2964
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002965 if (!list_empty(&dep->started_list))
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002966 return no_started_trb;
Felipe Balbifae2b902011-10-14 13:00:30 +03002967 }
2968
2969 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2970 reg |= dwc->u1u2;
2971 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2972
2973 dwc->u1u2 = 0;
2974 }
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002975
2976 return no_started_trb;
2977}
2978
2979static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep,
2980 const struct dwc3_event_depevt *event)
2981{
2982 int status = 0;
2983
Albert Wang0755f3f2021-11-09 17:26:42 +08002984 if (!dep->endpoint.desc)
2985 return;
2986
Thinh Nguyen2e6e9e42020-05-05 19:46:39 -07002987 if (usb_endpoint_xfer_isoc(dep->endpoint.desc))
2988 dwc3_gadget_endpoint_frame_from_event(dep, event);
2989
2990 if (event->status & DEPEVT_STATUS_BUSERR)
2991 status = -ECONNRESET;
2992
2993 if (event->status & DEPEVT_STATUS_MISSED_ISOC)
2994 status = -EXDEV;
2995
2996 dwc3_gadget_endpoint_trbs_complete(dep, event, status);
Felipe Balbi72246da2011-08-19 18:10:58 +03002997}
2998
Thinh Nguyen3eaecd02020-05-05 19:46:51 -07002999static void dwc3_gadget_endpoint_transfer_complete(struct dwc3_ep *dep,
3000 const struct dwc3_event_depevt *event)
3001{
3002 int status = 0;
3003
3004 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
3005
3006 if (event->status & DEPEVT_STATUS_BUSERR)
3007 status = -ECONNRESET;
3008
Thinh Nguyene0d19562020-05-05 19:46:57 -07003009 if (dwc3_gadget_endpoint_trbs_complete(dep, event, status))
3010 dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE;
Felipe Balbi72246da2011-08-19 18:10:58 +03003011}
3012
Felipe Balbi8f608e82018-03-27 10:53:29 +03003013static void dwc3_gadget_endpoint_transfer_not_ready(struct dwc3_ep *dep,
3014 const struct dwc3_event_depevt *event)
Felipe Balbi32033862018-03-27 10:47:48 +03003015{
Felipe Balbiee3638b2018-03-27 11:26:53 +03003016 dwc3_gadget_endpoint_frame_from_event(dep, event);
Thinh Nguyen36f05d32020-03-29 16:13:10 -07003017
3018 /*
3019 * The XferNotReady event is generated only once before the endpoint
3020 * starts. It will be generated again when END_TRANSFER command is
3021 * issued. For some controller versions, the XferNotReady event may be
3022 * generated while the END_TRANSFER command is still in process. Ignore
3023 * it and wait for the next XferNotReady event after the command is
3024 * completed.
3025 */
3026 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING)
3027 return;
3028
Felipe Balbi25abad62018-08-14 10:41:19 +03003029 (void) __dwc3_gadget_start_isoc(dep);
Felipe Balbi32033862018-03-27 10:47:48 +03003030}
3031
Thinh Nguyen8266b082020-07-30 16:29:03 -07003032static void dwc3_gadget_endpoint_command_complete(struct dwc3_ep *dep,
3033 const struct dwc3_event_depevt *event)
3034{
3035 u8 cmd = DEPEVT_PARAMETER_CMD(event->parameters);
3036
3037 if (cmd != DWC3_DEPCMD_ENDTRANSFER)
3038 return;
3039
Thinh Nguyen3abf7462021-10-25 16:21:10 -07003040 /*
3041 * The END_TRANSFER command will cause the controller to generate a
3042 * NoStream Event, and it's not due to the host DP NoStream rejection.
3043 * Ignore the next NoStream event.
3044 */
3045 if (dep->stream_capable)
3046 dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM;
3047
Thinh Nguyen8266b082020-07-30 16:29:03 -07003048 dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING;
3049 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
3050 dwc3_gadget_ep_cleanup_cancelled_requests(dep);
3051
3052 if (dep->flags & DWC3_EP_PENDING_CLEAR_STALL) {
3053 struct dwc3 *dwc = dep->dwc;
3054
3055 dep->flags &= ~DWC3_EP_PENDING_CLEAR_STALL;
3056 if (dwc3_send_clear_stall_ep_cmd(dep)) {
3057 struct usb_ep *ep0 = &dwc->eps[0]->endpoint;
3058
3059 dev_err(dwc->dev, "failed to clear STALL on %s\n", dep->name);
3060 if (dwc->delayed_status)
3061 __dwc3_gadget_ep0_set_halt(ep0, 1);
3062 return;
3063 }
3064
3065 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
3066 if (dwc->delayed_status)
3067 dwc3_ep0_send_delayed_status(dwc);
3068 }
3069
3070 if ((dep->flags & DWC3_EP_DELAY_START) &&
3071 !usb_endpoint_xfer_isoc(dep->endpoint.desc))
3072 __dwc3_gadget_kick_transfer(dep);
3073
3074 dep->flags &= ~DWC3_EP_DELAY_START;
3075}
3076
Thinh Nguyen140ca4c2020-05-05 19:47:09 -07003077static void dwc3_gadget_endpoint_stream_event(struct dwc3_ep *dep,
3078 const struct dwc3_event_depevt *event)
3079{
3080 struct dwc3 *dwc = dep->dwc;
3081
3082 if (event->status == DEPEVT_STREAMEVT_FOUND) {
3083 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED;
3084 goto out;
3085 }
3086
3087 /* Note: NoStream rejection event param value is 0 and not 0xFFFF */
3088 switch (event->parameters) {
3089 case DEPEVT_STREAM_PRIME:
3090 /*
3091 * If the host can properly transition the endpoint state from
3092 * idle to prime after a NoStream rejection, there's no need to
3093 * force restarting the endpoint to reinitiate the stream. To
3094 * simplify the check, assume the host follows the USB spec if
3095 * it primed the endpoint more than once.
3096 */
3097 if (dep->flags & DWC3_EP_FORCE_RESTART_STREAM) {
3098 if (dep->flags & DWC3_EP_FIRST_STREAM_PRIMED)
3099 dep->flags &= ~DWC3_EP_FORCE_RESTART_STREAM;
3100 else
3101 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED;
3102 }
3103
3104 break;
3105 case DEPEVT_STREAM_NOSTREAM:
3106 if ((dep->flags & DWC3_EP_IGNORE_NEXT_NOSTREAM) ||
3107 !(dep->flags & DWC3_EP_FORCE_RESTART_STREAM) ||
3108 !(dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE))
3109 break;
3110
3111 /*
3112 * If the host rejects a stream due to no active stream, by the
3113 * USB and xHCI spec, the endpoint will be put back to idle
3114 * state. When the host is ready (buffer added/updated), it will
3115 * prime the endpoint to inform the usb device controller. This
3116 * triggers the device controller to issue ERDY to restart the
3117 * stream. However, some hosts don't follow this and keep the
3118 * endpoint in the idle state. No prime will come despite host
3119 * streams are updated, and the device controller will not be
3120 * triggered to generate ERDY to move the next stream data. To
3121 * workaround this and maintain compatibility with various
3122 * hosts, force to reinitate the stream until the host is ready
3123 * instead of waiting for the host to prime the endpoint.
3124 */
Thinh Nguyenb10e1c22020-05-05 19:47:15 -07003125 if (DWC3_VER_IS_WITHIN(DWC32, 100A, ANY)) {
3126 unsigned int cmd = DWC3_DGCMD_SET_ENDPOINT_PRIME;
3127
3128 dwc3_send_gadget_generic_command(dwc, cmd, dep->number);
3129 } else {
3130 dep->flags |= DWC3_EP_DELAY_START;
3131 dwc3_stop_active_transfer(dep, true, true);
3132 return;
3133 }
3134 break;
Thinh Nguyen140ca4c2020-05-05 19:47:09 -07003135 }
3136
3137out:
3138 dep->flags &= ~DWC3_EP_IGNORE_NEXT_NOSTREAM;
3139}
3140
Felipe Balbi72246da2011-08-19 18:10:58 +03003141static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
3142 const struct dwc3_event_depevt *event)
3143{
3144 struct dwc3_ep *dep;
3145 u8 epnum = event->endpoint_number;
3146
3147 dep = dwc->eps[epnum];
3148
Janusz Dziedzicd7fd41c2016-12-08 10:57:34 +01003149 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbi3aec9912019-01-21 13:08:44 +02003150 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED))
Janusz Dziedzicd7fd41c2016-12-08 10:57:34 +01003151 return;
3152
3153 /* Handle only EPCMDCMPLT when EP disabled */
3154 if (event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT)
3155 return;
3156 }
Felipe Balbi3336abb2012-06-06 09:19:35 +03003157
Felipe Balbi72246da2011-08-19 18:10:58 +03003158 if (epnum == 0 || epnum == 1) {
3159 dwc3_ep0_interrupt(dwc, event);
3160 return;
3161 }
3162
3163 switch (event->endpoint_event) {
Felipe Balbi72246da2011-08-19 18:10:58 +03003164 case DWC3_DEPEVT_XFERINPROGRESS:
Felipe Balbi8f608e82018-03-27 10:53:29 +03003165 dwc3_gadget_endpoint_transfer_in_progress(dep, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03003166 break;
3167 case DWC3_DEPEVT_XFERNOTREADY:
Felipe Balbi8f608e82018-03-27 10:53:29 +03003168 dwc3_gadget_endpoint_transfer_not_ready(dep, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03003169 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03003170 case DWC3_DEPEVT_EPCMDCMPLT:
Thinh Nguyen8266b082020-07-30 16:29:03 -07003171 dwc3_gadget_endpoint_command_complete(dep, event);
Baolin Wang76a638f2016-10-31 19:38:36 +08003172 break;
Felipe Balbi742a4ff2018-03-26 13:26:56 +03003173 case DWC3_DEPEVT_XFERCOMPLETE:
Thinh Nguyen3eaecd02020-05-05 19:46:51 -07003174 dwc3_gadget_endpoint_transfer_complete(dep, event);
3175 break;
3176 case DWC3_DEPEVT_STREAMEVT:
Thinh Nguyen140ca4c2020-05-05 19:47:09 -07003177 dwc3_gadget_endpoint_stream_event(dep, event);
3178 break;
Baolin Wang76a638f2016-10-31 19:38:36 +08003179 case DWC3_DEPEVT_RXTXFIFOEVT:
Felipe Balbi72246da2011-08-19 18:10:58 +03003180 break;
3181 }
3182}
3183
3184static void dwc3_disconnect_gadget(struct dwc3 *dwc)
3185{
3186 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
3187 spin_unlock(&dwc->lock);
Peter Chene81a7012020-08-21 10:55:48 +08003188 dwc->gadget_driver->disconnect(dwc->gadget);
Felipe Balbi72246da2011-08-19 18:10:58 +03003189 spin_lock(&dwc->lock);
3190 }
3191}
3192
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003193static void dwc3_suspend_gadget(struct dwc3 *dwc)
3194{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03003195 if (dwc->gadget_driver && dwc->gadget_driver->suspend) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003196 spin_unlock(&dwc->lock);
Peter Chene81a7012020-08-21 10:55:48 +08003197 dwc->gadget_driver->suspend(dwc->gadget);
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003198 spin_lock(&dwc->lock);
3199 }
3200}
3201
3202static void dwc3_resume_gadget(struct dwc3 *dwc)
3203{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03003204 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003205 spin_unlock(&dwc->lock);
Peter Chene81a7012020-08-21 10:55:48 +08003206 dwc->gadget_driver->resume(dwc->gadget);
Felipe Balbi5c7b3b02015-01-29 10:29:18 -06003207 spin_lock(&dwc->lock);
Felipe Balbi8e744752014-11-06 14:27:53 +08003208 }
3209}
3210
3211static void dwc3_reset_gadget(struct dwc3 *dwc)
3212{
3213 if (!dwc->gadget_driver)
3214 return;
3215
Peter Chene81a7012020-08-21 10:55:48 +08003216 if (dwc->gadget->speed != USB_SPEED_UNKNOWN) {
Felipe Balbi8e744752014-11-06 14:27:53 +08003217 spin_unlock(&dwc->lock);
Peter Chene81a7012020-08-21 10:55:48 +08003218 usb_gadget_udc_reset(dwc->gadget, dwc->gadget_driver);
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003219 spin_lock(&dwc->lock);
3220 }
3221}
3222
Felipe Balbic5353b22019-02-13 13:00:54 +02003223static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force,
3224 bool interrupt)
Felipe Balbi72246da2011-08-19 18:10:58 +03003225{
Felipe Balbi72246da2011-08-19 18:10:58 +03003226 struct dwc3_gadget_ep_cmd_params params;
3227 u32 cmd;
3228 int ret;
3229
Thinh Nguyenc58d8bf2019-12-18 18:14:44 -08003230 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED) ||
3231 (dep->flags & DWC3_EP_END_TRANSFER_PENDING))
Pratyush Anand3daf74d2012-06-23 02:23:08 +05303232 return;
3233
Pratyush Anand57911502012-07-06 15:19:10 +05303234 /*
3235 * NOTICE: We are violating what the Databook says about the
3236 * EndTransfer command. Ideally we would _always_ wait for the
3237 * EndTransfer Command Completion IRQ, but that's causing too
3238 * much trouble synchronizing between us and gadget driver.
3239 *
3240 * We have discussed this with the IP Provider and it was
Thinh Nguyencf2f8b62019-12-18 18:14:56 -08003241 * suggested to giveback all requests here.
Pratyush Anand57911502012-07-06 15:19:10 +05303242 *
3243 * Note also that a similar handling was tested by Synopsys
3244 * (thanks a lot Paul) and nothing bad has come out of it.
Thinh Nguyencf2f8b62019-12-18 18:14:56 -08003245 * In short, what we're doing is issuing EndTransfer with
3246 * CMDIOC bit set and delay kicking transfer until the
3247 * EndTransfer command had completed.
John Youn06281d42016-08-22 15:39:13 -07003248 *
3249 * As of IP version 3.10a of the DWC_usb3 IP, the controller
3250 * supports a mode to work around the above limitation. The
3251 * software can poll the CMDACT bit in the DEPCMD register
3252 * after issuing a EndTransfer command. This mode is enabled
3253 * by writing GUCTL2[14]. This polling is already done in the
3254 * dwc3_send_gadget_ep_cmd() function so if the mode is
3255 * enabled, the EndTransfer command will have completed upon
Thinh Nguyencf2f8b62019-12-18 18:14:56 -08003256 * returning from this function.
John Youn06281d42016-08-22 15:39:13 -07003257 *
3258 * This mode is NOT available on the DWC_usb31 IP.
Pratyush Anand57911502012-07-06 15:19:10 +05303259 */
3260
Pratyush Anand3daf74d2012-06-23 02:23:08 +05303261 cmd = DWC3_DEPCMD_ENDTRANSFER;
Paul Zimmermanb992e682012-04-27 14:17:35 +03003262 cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0;
Felipe Balbic5353b22019-02-13 13:00:54 +02003263 cmd |= interrupt ? DWC3_DEPCMD_CMDIOC : 0;
Felipe Balbib4996a82012-06-06 12:04:13 +03003264 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand3daf74d2012-06-23 02:23:08 +05303265 memset(&params, 0, sizeof(params));
Felipe Balbi2cd47182016-04-12 16:42:43 +03003266 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
Pratyush Anand3daf74d2012-06-23 02:23:08 +05303267 WARN_ON_ONCE(ret);
Felipe Balbib4996a82012-06-06 12:04:13 +03003268 dep->resource_index = 0;
John Youn06281d42016-08-22 15:39:13 -07003269
Thinh Nguyend3abda52019-11-27 13:10:47 -08003270 if (!interrupt)
3271 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
Thinh Nguyenc58d8bf2019-12-18 18:14:44 -08003272 else
3273 dep->flags |= DWC3_EP_END_TRANSFER_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +03003274}
3275
Felipe Balbi72246da2011-08-19 18:10:58 +03003276static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
3277{
3278 u32 epnum;
3279
3280 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
3281 struct dwc3_ep *dep;
Felipe Balbi72246da2011-08-19 18:10:58 +03003282 int ret;
3283
3284 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03003285 if (!dep)
3286 continue;
Felipe Balbi72246da2011-08-19 18:10:58 +03003287
3288 if (!(dep->flags & DWC3_EP_STALL))
3289 continue;
3290
3291 dep->flags &= ~DWC3_EP_STALL;
3292
John Youn50c763f2016-05-31 17:49:56 -07003293 ret = dwc3_send_clear_stall_ep_cmd(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03003294 WARN_ON_ONCE(ret);
3295 }
3296}
3297
3298static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
3299{
Felipe Balbic4430a22012-05-24 10:30:01 +03003300 int reg;
3301
Thinh Nguyen1b6009ea2019-10-23 19:15:49 -07003302 dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RX_DET);
3303
Felipe Balbi72246da2011-08-19 18:10:58 +03003304 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3305 reg &= ~DWC3_DCTL_INITU1ENA;
Felipe Balbi72246da2011-08-19 18:10:58 +03003306 reg &= ~DWC3_DCTL_INITU2ENA;
Thinh Nguyen5b738212019-10-23 19:15:43 -07003307 dwc3_gadget_dctl_write_safe(dwc, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03003308
Felipe Balbi72246da2011-08-19 18:10:58 +03003309 dwc3_disconnect_gadget(dwc);
3310
Peter Chene81a7012020-08-21 10:55:48 +08003311 dwc->gadget->speed = USB_SPEED_UNKNOWN;
Felipe Balbidf62df52011-10-14 15:11:49 +03003312 dwc->setup_packet_pending = false;
Peter Chene81a7012020-08-21 10:55:48 +08003313 usb_gadget_set_state(dwc->gadget, USB_STATE_NOTATTACHED);
Felipe Balbifc8bb912016-05-16 13:14:48 +03003314
3315 dwc->connected = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03003316}
3317
Felipe Balbi72246da2011-08-19 18:10:58 +03003318static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
3319{
3320 u32 reg;
3321
Felipe Balbidf62df52011-10-14 15:11:49 +03003322 /*
Wesley Cheng45f879b2021-03-19 02:31:25 -07003323 * Ideally, dwc3_reset_gadget() would trigger the function
3324 * drivers to stop any active transfers through ep disable.
3325 * However, for functions which defer ep disable, such as mass
3326 * storage, we will need to rely on the call to stop active
3327 * transfers here, and avoid allowing of request queuing.
3328 */
3329 dwc->connected = false;
3330
3331 /*
Felipe Balbidf62df52011-10-14 15:11:49 +03003332 * WORKAROUND: DWC3 revisions <1.88a have an issue which
3333 * would cause a missing Disconnect Event if there's a
3334 * pending Setup Packet in the FIFO.
3335 *
3336 * There's no suggested workaround on the official Bug
3337 * report, which states that "unless the driver/application
3338 * is doing any special handling of a disconnect event,
3339 * there is no functional issue".
3340 *
3341 * Unfortunately, it turns out that we _do_ some special
3342 * handling of a disconnect event, namely complete all
3343 * pending transfers, notify gadget driver of the
3344 * disconnection, and so on.
3345 *
3346 * Our suggested workaround is to follow the Disconnect
3347 * Event steps here, instead, based on a setup_packet_pending
Felipe Balbib5d335e2015-11-16 16:20:34 -06003348 * flag. Such flag gets set whenever we have a SETUP_PENDING
3349 * status for EP0 TRBs and gets cleared on XferComplete for the
Felipe Balbidf62df52011-10-14 15:11:49 +03003350 * same endpoint.
3351 *
3352 * Refers to:
3353 *
3354 * STAR#9000466709: RTL: Device : Disconnect event not
3355 * generated if setup packet pending in FIFO
3356 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003357 if (DWC3_VER_IS_PRIOR(DWC3, 188A)) {
Felipe Balbidf62df52011-10-14 15:11:49 +03003358 if (dwc->setup_packet_pending)
3359 dwc3_gadget_disconnect_interrupt(dwc);
3360 }
3361
Felipe Balbi8e744752014-11-06 14:27:53 +08003362 dwc3_reset_gadget(dwc);
Wesley Chengae7e8612020-09-28 17:20:59 -07003363 /*
3364 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a
3365 * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW
3366 * needs to ensure that it sends "a DEPENDXFER command for any active
3367 * transfers."
3368 */
3369 dwc3_stop_active_transfers(dwc);
Wesley Chengc7bb96a2021-03-11 15:59:02 -08003370 dwc->connected = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03003371
3372 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3373 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
Thinh Nguyen5b738212019-10-23 19:15:43 -07003374 dwc3_gadget_dctl_write_safe(dwc, reg);
Gerard Cauvy3b637362012-02-10 12:21:18 +02003375 dwc->test_mode = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03003376 dwc3_clear_stall_all_ep(dwc);
3377
3378 /* Reset device address to zero */
3379 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
3380 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
3381 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03003382}
3383
Felipe Balbi72246da2011-08-19 18:10:58 +03003384static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
3385{
Felipe Balbi72246da2011-08-19 18:10:58 +03003386 struct dwc3_ep *dep;
3387 int ret;
3388 u32 reg;
3389 u8 speed;
3390
Felipe Balbi72246da2011-08-19 18:10:58 +03003391 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
3392 speed = reg & DWC3_DSTS_CONNECTSPD;
3393 dwc->speed = speed;
3394
John Youn5fb6fda2016-11-10 17:23:25 -08003395 /*
3396 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
3397 * each time on Connect Done.
3398 *
3399 * Currently we always use the reset value. If any platform
3400 * wants to set this to a different value, we need to add a
3401 * setting and update GCTL.RAMCLKSEL here.
3402 */
Felipe Balbi72246da2011-08-19 18:10:58 +03003403
3404 switch (speed) {
John Youn2da9ad72016-05-20 16:34:26 -07003405 case DWC3_DSTS_SUPERSPEED_PLUS:
John Youn75808622016-02-05 17:09:13 -08003406 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
Peter Chene81a7012020-08-21 10:55:48 +08003407 dwc->gadget->ep0->maxpacket = 512;
3408 dwc->gadget->speed = USB_SPEED_SUPER_PLUS;
John Youn75808622016-02-05 17:09:13 -08003409 break;
John Youn2da9ad72016-05-20 16:34:26 -07003410 case DWC3_DSTS_SUPERSPEED:
Felipe Balbi05870c52011-10-14 14:51:38 +03003411 /*
3412 * WORKAROUND: DWC3 revisions <1.90a have an issue which
3413 * would cause a missing USB3 Reset event.
3414 *
3415 * In such situations, we should force a USB3 Reset
3416 * event by calling our dwc3_gadget_reset_interrupt()
3417 * routine.
3418 *
3419 * Refers to:
3420 *
3421 * STAR#9000483510: RTL: SS : USB3 reset event may
3422 * not be generated always when the link enters poll
3423 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003424 if (DWC3_VER_IS_PRIOR(DWC3, 190A))
Felipe Balbi05870c52011-10-14 14:51:38 +03003425 dwc3_gadget_reset_interrupt(dwc);
3426
Felipe Balbi72246da2011-08-19 18:10:58 +03003427 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
Peter Chene81a7012020-08-21 10:55:48 +08003428 dwc->gadget->ep0->maxpacket = 512;
3429 dwc->gadget->speed = USB_SPEED_SUPER;
Felipe Balbi72246da2011-08-19 18:10:58 +03003430 break;
John Youn2da9ad72016-05-20 16:34:26 -07003431 case DWC3_DSTS_HIGHSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03003432 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
Peter Chene81a7012020-08-21 10:55:48 +08003433 dwc->gadget->ep0->maxpacket = 64;
3434 dwc->gadget->speed = USB_SPEED_HIGH;
Felipe Balbi72246da2011-08-19 18:10:58 +03003435 break;
Roger Quadros9418ee12017-01-03 14:32:09 +02003436 case DWC3_DSTS_FULLSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03003437 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
Peter Chene81a7012020-08-21 10:55:48 +08003438 dwc->gadget->ep0->maxpacket = 64;
3439 dwc->gadget->speed = USB_SPEED_FULL;
Felipe Balbi72246da2011-08-19 18:10:58 +03003440 break;
John Youn2da9ad72016-05-20 16:34:26 -07003441 case DWC3_DSTS_LOWSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03003442 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
Peter Chene81a7012020-08-21 10:55:48 +08003443 dwc->gadget->ep0->maxpacket = 8;
3444 dwc->gadget->speed = USB_SPEED_LOW;
Felipe Balbi72246da2011-08-19 18:10:58 +03003445 break;
3446 }
3447
Peter Chene81a7012020-08-21 10:55:48 +08003448 dwc->eps[1]->endpoint.maxpacket = dwc->gadget->ep0->maxpacket;
Thinh Nguyen61800262018-01-12 18:18:05 -08003449
Pratyush Anand2b758352013-01-14 15:59:31 +05303450 /* Enable USB2 LPM Capability */
3451
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003452 if (!DWC3_VER_IS_WITHIN(DWC3, ANY, 194A) &&
Thinh Nguyen8f7cdbb2021-04-13 19:13:18 -07003453 !dwc->usb2_gadget_lpm_disable &&
John Youn2da9ad72016-05-20 16:34:26 -07003454 (speed != DWC3_DSTS_SUPERSPEED) &&
3455 (speed != DWC3_DSTS_SUPERSPEED_PLUS)) {
Pratyush Anand2b758352013-01-14 15:59:31 +05303456 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
3457 reg |= DWC3_DCFG_LPM_CAP;
3458 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
3459
3460 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3461 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
3462
Thinh Nguyen16fe4f32019-08-19 18:35:58 -07003463 reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold |
3464 (dwc->is_utmi_l1_suspend << 4));
Pratyush Anand2b758352013-01-14 15:59:31 +05303465
Huang Rui80caf7d2014-10-28 19:54:26 +08003466 /*
3467 * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and
3468 * DCFG.LPMCap is set, core responses with an ACK and the
3469 * BESL value in the LPM token is less than or equal to LPM
3470 * NYET threshold.
3471 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003472 WARN_ONCE(DWC3_VER_IS_PRIOR(DWC3, 240A) && dwc->has_lpm_erratum,
Masanari Iida9165dab2016-09-17 23:44:17 +09003473 "LPM Erratum not available on dwc3 revisions < 2.40a\n");
Huang Rui80caf7d2014-10-28 19:54:26 +08003474
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003475 if (dwc->has_lpm_erratum && !DWC3_VER_IS_PRIOR(DWC3, 240A))
Thinh Nguyen2e487d22019-04-25 13:55:30 -07003476 reg |= DWC3_DCTL_NYET_THRES(dwc->lpm_nyet_threshold);
Huang Rui80caf7d2014-10-28 19:54:26 +08003477
Thinh Nguyen5b738212019-10-23 19:15:43 -07003478 dwc3_gadget_dctl_write_safe(dwc, reg);
Felipe Balbi356363b2013-12-19 16:37:05 -06003479 } else {
Thinh Nguyen8f7cdbb2021-04-13 19:13:18 -07003480 if (dwc->usb2_gadget_lpm_disable) {
3481 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
3482 reg &= ~DWC3_DCFG_LPM_CAP;
3483 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
3484 }
3485
Felipe Balbi356363b2013-12-19 16:37:05 -06003486 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3487 reg &= ~DWC3_DCTL_HIRD_THRES_MASK;
Thinh Nguyen5b738212019-10-23 19:15:43 -07003488 dwc3_gadget_dctl_write_safe(dwc, reg);
Pratyush Anand2b758352013-01-14 15:59:31 +05303489 }
3490
Felipe Balbi72246da2011-08-19 18:10:58 +03003491 dep = dwc->eps[0];
Felipe Balbia2d23f02018-04-09 12:40:48 +03003492 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY);
Felipe Balbi72246da2011-08-19 18:10:58 +03003493 if (ret) {
3494 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
3495 return;
3496 }
3497
3498 dep = dwc->eps[1];
Felipe Balbia2d23f02018-04-09 12:40:48 +03003499 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY);
Felipe Balbi72246da2011-08-19 18:10:58 +03003500 if (ret) {
3501 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
3502 return;
3503 }
3504
3505 /*
3506 * Configure PHY via GUSB3PIPECTLn if required.
3507 *
3508 * Update GTXFIFOSIZn
3509 *
3510 * In both cases reset values should be sufficient.
3511 */
3512}
3513
3514static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
3515{
Felipe Balbi72246da2011-08-19 18:10:58 +03003516 /*
3517 * TODO take core out of low power mode when that's
3518 * implemented.
3519 */
3520
Jiebing Liad14d4e2014-12-11 13:26:29 +08003521 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
3522 spin_unlock(&dwc->lock);
Peter Chene81a7012020-08-21 10:55:48 +08003523 dwc->gadget_driver->resume(dwc->gadget);
Jiebing Liad14d4e2014-12-11 13:26:29 +08003524 spin_lock(&dwc->lock);
3525 }
Felipe Balbi72246da2011-08-19 18:10:58 +03003526}
3527
3528static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
3529 unsigned int evtinfo)
3530{
Felipe Balbifae2b902011-10-14 13:00:30 +03003531 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03003532 unsigned int pwropt;
3533
3534 /*
3535 * WORKAROUND: DWC3 < 2.50a have an issue when configured without
3536 * Hibernation mode enabled which would show up when device detects
3537 * host-initiated U3 exit.
3538 *
3539 * In that case, device will generate a Link State Change Interrupt
3540 * from U3 to RESUME which is only necessary if Hibernation is
3541 * configured in.
3542 *
3543 * There are no functional changes due to such spurious event and we
3544 * just need to ignore it.
3545 *
3546 * Refers to:
3547 *
3548 * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation
3549 * operational mode
3550 */
3551 pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003552 if (DWC3_VER_IS_PRIOR(DWC3, 250A) &&
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03003553 (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) {
3554 if ((dwc->link_state == DWC3_LINK_STATE_U3) &&
3555 (next == DWC3_LINK_STATE_RESUME)) {
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03003556 return;
3557 }
3558 }
Felipe Balbifae2b902011-10-14 13:00:30 +03003559
3560 /*
3561 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
3562 * on the link partner, the USB session might do multiple entry/exit
3563 * of low power states before a transfer takes place.
3564 *
3565 * Due to this problem, we might experience lower throughput. The
3566 * suggested workaround is to disable DCTL[12:9] bits if we're
3567 * transitioning from U1/U2 to U0 and enable those bits again
3568 * after a transfer completes and there are no pending transfers
3569 * on any of the enabled endpoints.
3570 *
3571 * This is the first half of that workaround.
3572 *
3573 * Refers to:
3574 *
3575 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
3576 * core send LGO_Ux entering U0
3577 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003578 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) {
Felipe Balbifae2b902011-10-14 13:00:30 +03003579 if (next == DWC3_LINK_STATE_U0) {
3580 u32 u1u2;
3581 u32 reg;
3582
3583 switch (dwc->link_state) {
3584 case DWC3_LINK_STATE_U1:
3585 case DWC3_LINK_STATE_U2:
3586 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
3587 u1u2 = reg & (DWC3_DCTL_INITU2ENA
3588 | DWC3_DCTL_ACCEPTU2ENA
3589 | DWC3_DCTL_INITU1ENA
3590 | DWC3_DCTL_ACCEPTU1ENA);
3591
3592 if (!dwc->u1u2)
3593 dwc->u1u2 = reg & u1u2;
3594
3595 reg &= ~u1u2;
3596
Thinh Nguyen5b738212019-10-23 19:15:43 -07003597 dwc3_gadget_dctl_write_safe(dwc, reg);
Felipe Balbifae2b902011-10-14 13:00:30 +03003598 break;
3599 default:
3600 /* do nothing */
3601 break;
3602 }
3603 }
3604 }
3605
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06003606 switch (next) {
3607 case DWC3_LINK_STATE_U1:
3608 if (dwc->speed == USB_SPEED_SUPER)
3609 dwc3_suspend_gadget(dwc);
3610 break;
3611 case DWC3_LINK_STATE_U2:
3612 case DWC3_LINK_STATE_U3:
3613 dwc3_suspend_gadget(dwc);
3614 break;
3615 case DWC3_LINK_STATE_RESUME:
3616 dwc3_resume_gadget(dwc);
3617 break;
3618 default:
3619 /* do nothing */
3620 break;
3621 }
3622
Felipe Balbie57ebc12014-04-22 13:20:12 -05003623 dwc->link_state = next;
Felipe Balbi72246da2011-08-19 18:10:58 +03003624}
3625
Baolin Wang72704f82016-05-16 16:43:53 +08003626static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc,
3627 unsigned int evtinfo)
3628{
3629 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
3630
3631 if (dwc->link_state != next && next == DWC3_LINK_STATE_U3)
3632 dwc3_suspend_gadget(dwc);
3633
3634 dwc->link_state = next;
3635}
3636
Felipe Balbie1dadd32014-02-25 14:47:54 -06003637static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc,
3638 unsigned int evtinfo)
3639{
3640 unsigned int is_ss = evtinfo & BIT(4);
3641
Felipe Balbibfad65e2017-04-19 14:59:27 +03003642 /*
Felipe Balbie1dadd32014-02-25 14:47:54 -06003643 * WORKAROUND: DWC3 revison 2.20a with hibernation support
3644 * have a known issue which can cause USB CV TD.9.23 to fail
3645 * randomly.
3646 *
3647 * Because of this issue, core could generate bogus hibernation
3648 * events which SW needs to ignore.
3649 *
3650 * Refers to:
3651 *
3652 * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0
3653 * Device Fallback from SuperSpeed
3654 */
3655 if (is_ss ^ (dwc->speed == USB_SPEED_SUPER))
3656 return;
3657
3658 /* enter hibernation here */
3659}
3660
Felipe Balbi72246da2011-08-19 18:10:58 +03003661static void dwc3_gadget_interrupt(struct dwc3 *dwc,
3662 const struct dwc3_event_devt *event)
3663{
3664 switch (event->type) {
3665 case DWC3_DEVICE_EVENT_DISCONNECT:
3666 dwc3_gadget_disconnect_interrupt(dwc);
3667 break;
3668 case DWC3_DEVICE_EVENT_RESET:
3669 dwc3_gadget_reset_interrupt(dwc);
3670 break;
3671 case DWC3_DEVICE_EVENT_CONNECT_DONE:
3672 dwc3_gadget_conndone_interrupt(dwc);
3673 break;
3674 case DWC3_DEVICE_EVENT_WAKEUP:
3675 dwc3_gadget_wakeup_interrupt(dwc);
3676 break;
Felipe Balbie1dadd32014-02-25 14:47:54 -06003677 case DWC3_DEVICE_EVENT_HIBER_REQ:
3678 if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation,
3679 "unexpected hibernation event\n"))
3680 break;
3681
3682 dwc3_gadget_hibernation_interrupt(dwc, event->event_info);
3683 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03003684 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
3685 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
3686 break;
3687 case DWC3_DEVICE_EVENT_EOPF:
Baolin Wang72704f82016-05-16 16:43:53 +08003688 /* It changed to be suspend event for version 2.30a and above */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003689 if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) {
Baolin Wang72704f82016-05-16 16:43:53 +08003690 /*
3691 * Ignore suspend event until the gadget enters into
3692 * USB_STATE_CONFIGURED state.
3693 */
Peter Chene81a7012020-08-21 10:55:48 +08003694 if (dwc->gadget->state >= USB_STATE_CONFIGURED)
Baolin Wang72704f82016-05-16 16:43:53 +08003695 dwc3_gadget_suspend_interrupt(dwc,
3696 event->event_info);
3697 }
Felipe Balbi72246da2011-08-19 18:10:58 +03003698 break;
3699 case DWC3_DEVICE_EVENT_SOF:
Felipe Balbi72246da2011-08-19 18:10:58 +03003700 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
Felipe Balbi72246da2011-08-19 18:10:58 +03003701 case DWC3_DEVICE_EVENT_CMD_CMPL:
Felipe Balbi72246da2011-08-19 18:10:58 +03003702 case DWC3_DEVICE_EVENT_OVERFLOW:
Felipe Balbi72246da2011-08-19 18:10:58 +03003703 break;
3704 default:
Felipe Balbie9f2aa82015-01-27 13:49:28 -06003705 dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
Felipe Balbi72246da2011-08-19 18:10:58 +03003706 }
3707}
3708
3709static void dwc3_process_event_entry(struct dwc3 *dwc,
3710 const union dwc3_event *event)
3711{
Felipe Balbi43c96be2016-09-26 13:23:34 +03003712 trace_dwc3_event(event->raw, dwc);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05003713
Felipe Balbidfc5e802017-04-26 13:44:51 +03003714 if (!event->type.is_devspec)
3715 dwc3_endpoint_interrupt(dwc, &event->depevt);
3716 else if (event->type.type == DWC3_EVENT_TYPE_DEV)
Felipe Balbi72246da2011-08-19 18:10:58 +03003717 dwc3_gadget_interrupt(dwc, &event->devt);
Felipe Balbidfc5e802017-04-26 13:44:51 +03003718 else
Felipe Balbi72246da2011-08-19 18:10:58 +03003719 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
Felipe Balbi72246da2011-08-19 18:10:58 +03003720}
3721
Felipe Balbidea520a2016-03-30 09:39:34 +03003722static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt)
Felipe Balbif42f2442013-06-12 21:25:08 +03003723{
Felipe Balbidea520a2016-03-30 09:39:34 +03003724 struct dwc3 *dwc = evt->dwc;
Felipe Balbif42f2442013-06-12 21:25:08 +03003725 irqreturn_t ret = IRQ_NONE;
3726 int left;
3727 u32 reg;
3728
Felipe Balbif42f2442013-06-12 21:25:08 +03003729 left = evt->count;
3730
3731 if (!(evt->flags & DWC3_EVENT_PENDING))
3732 return IRQ_NONE;
3733
3734 while (left > 0) {
3735 union dwc3_event event;
3736
John Younebbb2d52016-11-15 13:07:02 +02003737 event.raw = *(u32 *) (evt->cache + evt->lpos);
Felipe Balbif42f2442013-06-12 21:25:08 +03003738
3739 dwc3_process_event_entry(dwc, &event);
3740
3741 /*
3742 * FIXME we wrap around correctly to the next entry as
3743 * almost all entries are 4 bytes in size. There is one
3744 * entry which has 12 bytes which is a regular entry
3745 * followed by 8 bytes data. ATM I don't know how
3746 * things are organized if we get next to the a
3747 * boundary so I worry about that once we try to handle
3748 * that.
3749 */
Felipe Balbicaefe6c2016-11-15 13:05:23 +02003750 evt->lpos = (evt->lpos + 4) % evt->length;
Felipe Balbif42f2442013-06-12 21:25:08 +03003751 left -= 4;
Felipe Balbif42f2442013-06-12 21:25:08 +03003752 }
3753
3754 evt->count = 0;
3755 evt->flags &= ~DWC3_EVENT_PENDING;
3756 ret = IRQ_HANDLED;
3757
3758 /* Unmask interrupt */
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003759 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
Felipe Balbif42f2442013-06-12 21:25:08 +03003760 reg &= ~DWC3_GEVNTSIZ_INTMASK;
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003761 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
Felipe Balbif42f2442013-06-12 21:25:08 +03003762
John Youncf40b862016-11-14 12:32:43 -08003763 if (dwc->imod_interval) {
3764 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
3765 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
3766 }
3767
Felipe Balbif42f2442013-06-12 21:25:08 +03003768 return ret;
3769}
3770
Felipe Balbidea520a2016-03-30 09:39:34 +03003771static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt)
Felipe Balbib15a7622011-06-30 16:57:15 +03003772{
Felipe Balbidea520a2016-03-30 09:39:34 +03003773 struct dwc3_event_buffer *evt = _evt;
3774 struct dwc3 *dwc = evt->dwc;
Felipe Balbie5f68b4a2015-10-12 13:25:44 -05003775 unsigned long flags;
Felipe Balbib15a7622011-06-30 16:57:15 +03003776 irqreturn_t ret = IRQ_NONE;
Felipe Balbib15a7622011-06-30 16:57:15 +03003777
Felipe Balbie5f68b4a2015-10-12 13:25:44 -05003778 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbidea520a2016-03-30 09:39:34 +03003779 ret = dwc3_process_event_buf(evt);
Felipe Balbie5f68b4a2015-10-12 13:25:44 -05003780 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbib15a7622011-06-30 16:57:15 +03003781
3782 return ret;
3783}
3784
Felipe Balbidea520a2016-03-30 09:39:34 +03003785static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
Felipe Balbi72246da2011-08-19 18:10:58 +03003786{
Felipe Balbidea520a2016-03-30 09:39:34 +03003787 struct dwc3 *dwc = evt->dwc;
John Younebbb2d52016-11-15 13:07:02 +02003788 u32 amount;
Felipe Balbi72246da2011-08-19 18:10:58 +03003789 u32 count;
Felipe Balbie8adfc32013-06-12 21:11:14 +03003790 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +03003791
Felipe Balbifc8bb912016-05-16 13:14:48 +03003792 if (pm_runtime_suspended(dwc->dev)) {
3793 pm_runtime_get(dwc->dev);
3794 disable_irq_nosync(dwc->irq_gadget);
3795 dwc->pending_events = true;
3796 return IRQ_HANDLED;
3797 }
3798
Thinh Nguyend325a1d2017-05-11 17:26:47 -07003799 /*
3800 * With PCIe legacy interrupt, test shows that top-half irq handler can
3801 * be called again after HW interrupt deassertion. Check if bottom-half
3802 * irq event handler completes before caching new event to prevent
3803 * losing events.
3804 */
3805 if (evt->flags & DWC3_EVENT_PENDING)
3806 return IRQ_HANDLED;
3807
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003808 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
Felipe Balbi72246da2011-08-19 18:10:58 +03003809 count &= DWC3_GEVNTCOUNT_MASK;
3810 if (!count)
3811 return IRQ_NONE;
3812
Felipe Balbib15a7622011-06-30 16:57:15 +03003813 evt->count = count;
3814 evt->flags |= DWC3_EVENT_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +03003815
Felipe Balbie8adfc32013-06-12 21:11:14 +03003816 /* Mask interrupt */
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003817 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
Felipe Balbie8adfc32013-06-12 21:11:14 +03003818 reg |= DWC3_GEVNTSIZ_INTMASK;
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003819 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
Felipe Balbie8adfc32013-06-12 21:11:14 +03003820
John Younebbb2d52016-11-15 13:07:02 +02003821 amount = min(count, evt->length - evt->lpos);
3822 memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount);
3823
3824 if (amount < count)
3825 memcpy(evt->cache, evt->buf, count - amount);
3826
John Youn65aca322016-11-15 13:08:59 +02003827 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
3828
Felipe Balbib15a7622011-06-30 16:57:15 +03003829 return IRQ_WAKE_THREAD;
Felipe Balbi72246da2011-08-19 18:10:58 +03003830}
3831
Felipe Balbidea520a2016-03-30 09:39:34 +03003832static irqreturn_t dwc3_interrupt(int irq, void *_evt)
Felipe Balbi72246da2011-08-19 18:10:58 +03003833{
Felipe Balbidea520a2016-03-30 09:39:34 +03003834 struct dwc3_event_buffer *evt = _evt;
Felipe Balbi72246da2011-08-19 18:10:58 +03003835
Felipe Balbidea520a2016-03-30 09:39:34 +03003836 return dwc3_check_event_buf(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +03003837}
3838
Felipe Balbi6db38122016-10-03 11:27:01 +03003839static int dwc3_gadget_get_irq(struct dwc3 *dwc)
3840{
3841 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
3842 int irq;
3843
Hans de Goedef146b402019-10-05 23:04:48 +02003844 irq = platform_get_irq_byname_optional(dwc3_pdev, "peripheral");
Felipe Balbi6db38122016-10-03 11:27:01 +03003845 if (irq > 0)
3846 goto out;
3847
3848 if (irq == -EPROBE_DEFER)
3849 goto out;
3850
Hans de Goedef146b402019-10-05 23:04:48 +02003851 irq = platform_get_irq_byname_optional(dwc3_pdev, "dwc_usb3");
Felipe Balbi6db38122016-10-03 11:27:01 +03003852 if (irq > 0)
3853 goto out;
3854
3855 if (irq == -EPROBE_DEFER)
3856 goto out;
3857
3858 irq = platform_get_irq(dwc3_pdev, 0);
3859 if (irq > 0)
3860 goto out;
3861
Felipe Balbi6db38122016-10-03 11:27:01 +03003862 if (!irq)
3863 irq = -EINVAL;
3864
3865out:
3866 return irq;
3867}
3868
Peter Chene81a7012020-08-21 10:55:48 +08003869static void dwc_gadget_release(struct device *dev)
3870{
3871 struct usb_gadget *gadget = container_of(dev, struct usb_gadget, dev);
3872
3873 kfree(gadget);
3874}
3875
Felipe Balbi72246da2011-08-19 18:10:58 +03003876/**
Felipe Balbibfad65e2017-04-19 14:59:27 +03003877 * dwc3_gadget_init - initializes gadget related registers
Paul Zimmerman1d046792012-02-15 18:56:56 -08003878 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +03003879 *
3880 * Returns 0 on success otherwise negative errno.
3881 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05003882int dwc3_gadget_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03003883{
Felipe Balbi6db38122016-10-03 11:27:01 +03003884 int ret;
3885 int irq;
Peter Chene81a7012020-08-21 10:55:48 +08003886 struct device *dev;
Roger Quadros9522def2016-06-10 14:48:38 +03003887
Felipe Balbi6db38122016-10-03 11:27:01 +03003888 irq = dwc3_gadget_get_irq(dwc);
3889 if (irq < 0) {
3890 ret = irq;
3891 goto err0;
Roger Quadros9522def2016-06-10 14:48:38 +03003892 }
3893
3894 dwc->irq_gadget = irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03003895
Arnd Bergmannd64ff402016-11-17 17:13:47 +05303896 dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev,
3897 sizeof(*dwc->ep0_trb) * 2,
3898 &dwc->ep0_trb_addr, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03003899 if (!dwc->ep0_trb) {
3900 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
3901 ret = -ENOMEM;
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003902 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +03003903 }
3904
Felipe Balbi4199c5f2017-04-07 14:09:13 +03003905 dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03003906 if (!dwc->setup_buf) {
Felipe Balbi72246da2011-08-19 18:10:58 +03003907 ret = -ENOMEM;
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003908 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03003909 }
3910
Felipe Balbi905dc042017-01-05 14:46:52 +02003911 dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE,
3912 &dwc->bounce_addr, GFP_KERNEL);
3913 if (!dwc->bounce) {
3914 ret = -ENOMEM;
Felipe Balbid6e5a542017-04-07 16:34:38 +03003915 goto err2;
Felipe Balbi905dc042017-01-05 14:46:52 +02003916 }
3917
Baolin Wangbb014732016-10-14 17:11:33 +08003918 init_completion(&dwc->ep0_in_setup);
Peter Chene81a7012020-08-21 10:55:48 +08003919 dwc->gadget = kzalloc(sizeof(struct usb_gadget), GFP_KERNEL);
3920 if (!dwc->gadget) {
3921 ret = -ENOMEM;
3922 goto err3;
3923 }
Baolin Wangbb014732016-10-14 17:11:33 +08003924
Peter Chene81a7012020-08-21 10:55:48 +08003925
3926 usb_initialize_gadget(dwc->dev, dwc->gadget, dwc_gadget_release);
3927 dev = &dwc->gadget->dev;
3928 dev->platform_data = dwc;
3929 dwc->gadget->ops = &dwc3_gadget_ops;
3930 dwc->gadget->speed = USB_SPEED_UNKNOWN;
3931 dwc->gadget->sg_supported = true;
3932 dwc->gadget->name = "dwc3-gadget";
Thinh Nguyen8f7cdbb2021-04-13 19:13:18 -07003933 dwc->gadget->lpm_capable = !dwc->usb2_gadget_lpm_disable;
Felipe Balbi72246da2011-08-19 18:10:58 +03003934
3935 /*
Ben McCauleyb9e51b22015-11-16 10:47:24 -06003936 * FIXME We might be setting max_speed to <SUPER, however versions
3937 * <2.20a of dwc3 have an issue with metastability (documented
3938 * elsewhere in this driver) which tells us we can't set max speed to
3939 * anything lower than SUPER.
3940 *
3941 * Because gadget.max_speed is only used by composite.c and function
3942 * drivers (i.e. it won't go into dwc3's registers) we are allowing this
3943 * to happen so we avoid sending SuperSpeed Capability descriptor
3944 * together with our BOS descriptor as that could confuse host into
3945 * thinking we can handle super speed.
3946 *
3947 * Note that, in fact, we won't even support GetBOS requests when speed
3948 * is less than super speed because we don't have means, yet, to tell
3949 * composite.c that we are USB 2.0 + LPM ECN.
3950 */
Thinh Nguyen9af21dd2020-04-11 19:20:01 -07003951 if (DWC3_VER_IS_PRIOR(DWC3, 220A) &&
Roger Quadros42bf02e2017-10-31 15:11:55 +02003952 !dwc->dis_metastability_quirk)
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02003953 dev_info(dwc->dev, "changing max_speed on rev %08x\n",
Ben McCauleyb9e51b22015-11-16 10:47:24 -06003954 dwc->revision);
3955
Peter Chene81a7012020-08-21 10:55:48 +08003956 dwc->gadget->max_speed = dwc->maximum_speed;
Ben McCauleyb9e51b22015-11-16 10:47:24 -06003957
3958 /*
Felipe Balbi72246da2011-08-19 18:10:58 +03003959 * REVISIT: Here we should clear all pending IRQs to be
3960 * sure we're starting from a well known location.
3961 */
3962
Bryan O'Donoghuef3bcfc72017-01-31 20:58:11 +00003963 ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps);
Felipe Balbi72246da2011-08-19 18:10:58 +03003964 if (ret)
Felipe Balbid6e5a542017-04-07 16:34:38 +03003965 goto err4;
Peter Chene81a7012020-08-21 10:55:48 +08003966
3967 ret = usb_add_gadget(dwc->gadget);
3968 if (ret) {
3969 dev_err(dwc->dev, "failed to add gadget\n");
3970 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03003971 }
3972
Peter Chene81a7012020-08-21 10:55:48 +08003973 dwc3_gadget_set_speed(dwc->gadget, dwc->maximum_speed);
Roger Quadros169e3b62019-01-10 17:04:28 +02003974
Felipe Balbi72246da2011-08-19 18:10:58 +03003975 return 0;
Felipe Balbi4199c5f2017-04-07 14:09:13 +03003976
Peter Chene81a7012020-08-21 10:55:48 +08003977err5:
Felipe Balbid6e5a542017-04-07 16:34:38 +03003978 dwc3_gadget_free_endpoints(dwc);
Peter Chene81a7012020-08-21 10:55:48 +08003979err4:
3980 usb_put_gadget(dwc->gadget);
Jack Pham851dee52021-05-28 09:04:05 -07003981 dwc->gadget = NULL;
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003982err3:
Felipe Balbid6e5a542017-04-07 16:34:38 +03003983 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
3984 dwc->bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03003985
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003986err2:
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02003987 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03003988
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003989err1:
Arnd Bergmannd64ff402016-11-17 17:13:47 +05303990 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
Felipe Balbi72246da2011-08-19 18:10:58 +03003991 dwc->ep0_trb, dwc->ep0_trb_addr);
3992
Felipe Balbi72246da2011-08-19 18:10:58 +03003993err0:
3994 return ret;
3995}
3996
Felipe Balbi7415f172012-04-30 14:56:33 +03003997/* -------------------------------------------------------------------------- */
3998
Felipe Balbi72246da2011-08-19 18:10:58 +03003999void dwc3_gadget_exit(struct dwc3 *dwc)
4000{
Jack Pham851dee52021-05-28 09:04:05 -07004001 if (!dwc->gadget)
4002 return;
4003
Jack Pham1ea77502021-05-01 02:35:58 -07004004 usb_del_gadget(dwc->gadget);
Felipe Balbi72246da2011-08-19 18:10:58 +03004005 dwc3_gadget_free_endpoints(dwc);
Jack Pham1ea77502021-05-01 02:35:58 -07004006 usb_put_gadget(dwc->gadget);
Felipe Balbi905dc042017-01-05 14:46:52 +02004007 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
Felipe Balbid6e5a542017-04-07 16:34:38 +03004008 dwc->bounce_addr);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02004009 kfree(dwc->setup_buf);
Arnd Bergmannd64ff402016-11-17 17:13:47 +05304010 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
Felipe Balbid6e5a542017-04-07 16:34:38 +03004011 dwc->ep0_trb, dwc->ep0_trb_addr);
Felipe Balbi72246da2011-08-19 18:10:58 +03004012}
Felipe Balbi7415f172012-04-30 14:56:33 +03004013
Felipe Balbi0b0231a2014-10-07 10:19:23 -05004014int dwc3_gadget_suspend(struct dwc3 *dwc)
Felipe Balbi7415f172012-04-30 14:56:33 +03004015{
Roger Quadros9772b472016-04-12 11:33:29 +03004016 if (!dwc->gadget_driver)
4017 return 0;
4018
Roger Quadros1551e352017-02-15 14:16:26 +02004019 dwc3_gadget_run_stop(dwc, false, false);
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03004020 dwc3_disconnect_gadget(dwc);
4021 __dwc3_gadget_stop(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03004022
4023 return 0;
4024}
4025
4026int dwc3_gadget_resume(struct dwc3 *dwc)
4027{
Felipe Balbi7415f172012-04-30 14:56:33 +03004028 int ret;
4029
Roger Quadros9772b472016-04-12 11:33:29 +03004030 if (!dwc->gadget_driver)
4031 return 0;
4032
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03004033 ret = __dwc3_gadget_start(dwc);
4034 if (ret < 0)
Felipe Balbi7415f172012-04-30 14:56:33 +03004035 goto err0;
4036
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03004037 ret = dwc3_gadget_run_stop(dwc, true, false);
4038 if (ret < 0)
Felipe Balbi7415f172012-04-30 14:56:33 +03004039 goto err1;
4040
Felipe Balbi7415f172012-04-30 14:56:33 +03004041 return 0;
4042
4043err1:
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03004044 __dwc3_gadget_stop(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03004045
4046err0:
4047 return ret;
4048}
Felipe Balbifc8bb912016-05-16 13:14:48 +03004049
4050void dwc3_gadget_process_pending_events(struct dwc3 *dwc)
4051{
4052 if (dwc->pending_events) {
4053 dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf);
4054 dwc->pending_events = false;
4055 enable_irq(dwc->irq_gadget);
4056 }
4057}