blob: f078054f71788aa955fdda2a6d080c9794b42134 [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 *
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://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 Balbi04a9bfc2012-01-02 18:25:43 +020030/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030031 * dwc3_gadget_set_test_mode - enables usb2 test modes
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020032 * @dwc: pointer to our context structure
33 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
34 *
Felipe Balbibfad65e2017-04-19 14:59:27 +030035 * Caller should take care of locking. This function will return 0 on
36 * success or -EINVAL if wrong Test Selector is passed.
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020037 */
38int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
39{
40 u32 reg;
41
42 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
43 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
44
45 switch (mode) {
46 case TEST_J:
47 case TEST_K:
48 case TEST_SE0_NAK:
49 case TEST_PACKET:
50 case TEST_FORCE_EN:
51 reg |= mode << 1;
52 break;
53 default:
54 return -EINVAL;
55 }
56
57 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
58
59 return 0;
60}
61
Felipe Balbi8598bde2012-01-02 18:55:57 +020062/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030063 * dwc3_gadget_get_link_state - gets current state of usb link
Paul Zimmerman911f1f82012-04-27 13:35:15 +030064 * @dwc: pointer to our context structure
65 *
66 * Caller should take care of locking. This function will
67 * return the link state on success (>= 0) or -ETIMEDOUT.
68 */
69int dwc3_gadget_get_link_state(struct dwc3 *dwc)
70{
71 u32 reg;
72
73 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
74
75 return DWC3_DSTS_USBLNKST(reg);
76}
77
78/**
Felipe Balbibfad65e2017-04-19 14:59:27 +030079 * dwc3_gadget_set_link_state - sets usb link to a particular state
Felipe Balbi8598bde2012-01-02 18:55:57 +020080 * @dwc: pointer to our context structure
81 * @state: the state to put link into
82 *
83 * Caller should take care of locking. This function will
Paul Zimmermanaee63e32012-02-24 17:32:15 -080084 * return 0 on success or -ETIMEDOUT.
Felipe Balbi8598bde2012-01-02 18:55:57 +020085 */
86int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
87{
Paul Zimmermanaee63e32012-02-24 17:32:15 -080088 int retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +020089 u32 reg;
90
Paul Zimmerman802fde92012-04-27 13:10:52 +030091 /*
92 * Wait until device controller is ready. Only applies to 1.94a and
93 * later RTL.
94 */
95 if (dwc->revision >= DWC3_REVISION_194A) {
96 while (--retries) {
97 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
98 if (reg & DWC3_DSTS_DCNRD)
99 udelay(5);
100 else
101 break;
102 }
103
104 if (retries <= 0)
105 return -ETIMEDOUT;
106 }
107
Felipe Balbi8598bde2012-01-02 18:55:57 +0200108 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
109 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
110
111 /* set requested state */
112 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
113 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
114
Paul Zimmerman802fde92012-04-27 13:10:52 +0300115 /*
116 * The following code is racy when called from dwc3_gadget_wakeup,
117 * and is not needed, at least on newer versions
118 */
119 if (dwc->revision >= DWC3_REVISION_194A)
120 return 0;
121
Felipe Balbi8598bde2012-01-02 18:55:57 +0200122 /* wait for a change in DSTS */
Paul Zimmermanaed430e2012-04-27 12:52:01 +0300123 retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200124 while (--retries) {
125 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
126
Felipe Balbi8598bde2012-01-02 18:55:57 +0200127 if (DWC3_DSTS_USBLNKST(reg) == state)
128 return 0;
129
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800130 udelay(5);
Felipe Balbi8598bde2012-01-02 18:55:57 +0200131 }
132
Felipe Balbi8598bde2012-01-02 18:55:57 +0200133 return -ETIMEDOUT;
134}
135
John Youndca01192016-05-19 17:26:05 -0700136/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300137 * dwc3_ep_inc_trb - increment a trb index.
138 * @index: Pointer to the TRB index to increment.
John Youndca01192016-05-19 17:26:05 -0700139 *
140 * The index should never point to the link TRB. After incrementing,
141 * if it is point to the link TRB, wrap around to the beginning. The
142 * link TRB is always at the last TRB entry.
143 */
144static void dwc3_ep_inc_trb(u8 *index)
145{
146 (*index)++;
147 if (*index == (DWC3_TRB_NUM - 1))
148 *index = 0;
149}
150
Felipe Balbibfad65e2017-04-19 14:59:27 +0300151/**
152 * dwc3_ep_inc_enq - increment endpoint's enqueue pointer
153 * @dep: The endpoint whose enqueue pointer we're incrementing
154 */
Felipe Balbief966b92016-04-05 13:09:51 +0300155static void dwc3_ep_inc_enq(struct dwc3_ep *dep)
Felipe Balbi457e84b2012-01-18 18:04:09 +0200156{
John Youndca01192016-05-19 17:26:05 -0700157 dwc3_ep_inc_trb(&dep->trb_enqueue);
Felipe Balbief966b92016-04-05 13:09:51 +0300158}
Felipe Balbi457e84b2012-01-18 18:04:09 +0200159
Felipe Balbibfad65e2017-04-19 14:59:27 +0300160/**
161 * dwc3_ep_inc_deq - increment endpoint's dequeue pointer
162 * @dep: The endpoint whose enqueue pointer we're incrementing
163 */
Felipe Balbief966b92016-04-05 13:09:51 +0300164static void dwc3_ep_inc_deq(struct dwc3_ep *dep)
165{
John Youndca01192016-05-19 17:26:05 -0700166 dwc3_ep_inc_trb(&dep->trb_dequeue);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200167}
168
Felipe Balbic91815b2018-03-26 13:14:47 +0300169void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep,
170 struct dwc3_request *req, int status)
171{
172 struct dwc3 *dwc = dep->dwc;
173
174 req->started = false;
175 list_del(&req->list);
176 req->remaining = 0;
177
178 if (req->request.status == -EINPROGRESS)
179 req->request.status = status;
180
181 if (req->trb)
182 usb_gadget_unmap_request_by_dev(dwc->sysdev,
183 &req->request, req->direction);
184
185 req->trb = NULL;
186 trace_dwc3_gadget_giveback(req);
187
188 if (dep->number > 1)
189 pm_runtime_put(dwc->dev);
190}
191
Felipe Balbibfad65e2017-04-19 14:59:27 +0300192/**
193 * dwc3_gadget_giveback - call struct usb_request's ->complete callback
194 * @dep: The endpoint to whom the request belongs to
195 * @req: The request we're giving back
196 * @status: completion code for the request
197 *
198 * Must be called with controller's lock held and interrupts disabled. This
199 * function will unmap @req and call its ->complete() callback to notify upper
200 * layers that it has completed.
201 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300202void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
203 int status)
204{
205 struct dwc3 *dwc = dep->dwc;
206
Felipe Balbic91815b2018-03-26 13:14:47 +0300207 dwc3_gadget_del_and_unmap_request(dep, req, status);
Felipe Balbi72246da2011-08-19 18:10:58 +0300208
209 spin_unlock(&dwc->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200210 usb_gadget_giveback_request(&dep->endpoint, &req->request);
Felipe Balbi72246da2011-08-19 18:10:58 +0300211 spin_lock(&dwc->lock);
212}
213
Felipe Balbibfad65e2017-04-19 14:59:27 +0300214/**
215 * dwc3_send_gadget_generic_command - issue a generic command for the controller
216 * @dwc: pointer to the controller context
217 * @cmd: the command to be issued
218 * @param: command parameter
219 *
220 * Caller should take care of locking. Issue @cmd with a given @param to @dwc
221 * and wait for its completion.
222 */
Felipe Balbi3ece0ec2014-09-05 09:47:44 -0500223int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned cmd, u32 param)
Felipe Balbib09bb642012-04-24 16:19:11 +0300224{
225 u32 timeout = 500;
Felipe Balbi71f7e702016-05-23 14:16:19 +0300226 int status = 0;
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300227 int ret = 0;
Felipe Balbib09bb642012-04-24 16:19:11 +0300228 u32 reg;
229
230 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
231 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
232
233 do {
234 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
235 if (!(reg & DWC3_DGCMD_CMDACT)) {
Felipe Balbi71f7e702016-05-23 14:16:19 +0300236 status = DWC3_DGCMD_STATUS(reg);
237 if (status)
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300238 ret = -EINVAL;
239 break;
Felipe Balbib09bb642012-04-24 16:19:11 +0300240 }
Janusz Dziedzice3aee482016-11-09 11:01:33 +0100241 } while (--timeout);
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300242
243 if (!timeout) {
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300244 ret = -ETIMEDOUT;
Felipe Balbi71f7e702016-05-23 14:16:19 +0300245 status = -ETIMEDOUT;
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300246 }
247
Felipe Balbi71f7e702016-05-23 14:16:19 +0300248 trace_dwc3_gadget_generic_cmd(cmd, param, status);
249
Felipe Balbi0fe886c2016-05-23 14:06:07 +0300250 return ret;
Felipe Balbib09bb642012-04-24 16:19:11 +0300251}
252
Felipe Balbic36d8e92016-04-04 12:46:33 +0300253static int __dwc3_gadget_wakeup(struct dwc3 *dwc);
254
Felipe Balbibfad65e2017-04-19 14:59:27 +0300255/**
256 * dwc3_send_gadget_ep_cmd - issue an endpoint command
257 * @dep: the endpoint to which the command is going to be issued
258 * @cmd: the command to be issued
259 * @params: parameters to the command
260 *
261 * Caller should handle locking. This function will issue @cmd with given
262 * @params to @dep and wait for its completion.
263 */
Felipe Balbi2cd47182016-04-12 16:42:43 +0300264int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd,
265 struct dwc3_gadget_ep_cmd_params *params)
Felipe Balbi72246da2011-08-19 18:10:58 +0300266{
Felipe Balbi8897a762016-09-22 10:56:08 +0300267 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
Felipe Balbi2cd47182016-04-12 16:42:43 +0300268 struct dwc3 *dwc = dep->dwc;
Vincent Pelletier8722e092017-11-30 15:31:06 +0000269 u32 timeout = 1000;
Felipe Balbi72246da2011-08-19 18:10:58 +0300270 u32 reg;
271
Felipe Balbi0933df12016-05-23 14:02:33 +0300272 int cmd_status = 0;
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300273 int susphy = false;
Felipe Balbic0ca3242016-04-04 09:11:51 +0300274 int ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300275
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300276 /*
277 * Synopsys Databook 2.60a states, on section 6.3.2.5.[1-8], that if
278 * we're issuing an endpoint command, we must check if
279 * GUSB2PHYCFG.SUSPHY bit is set. If it is, then we need to clear it.
280 *
281 * We will also set SUSPHY bit to what it was before returning as stated
282 * by the same section on Synopsys databook.
283 */
Felipe Balbiab2a92e2016-05-17 14:55:58 +0300284 if (dwc->gadget.speed <= USB_SPEED_HIGH) {
285 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
286 if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) {
287 susphy = true;
288 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
289 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
290 }
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300291 }
292
Felipe Balbi59999142016-09-22 12:25:28 +0300293 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) {
Felipe Balbic36d8e92016-04-04 12:46:33 +0300294 int needs_wakeup;
295
296 needs_wakeup = (dwc->link_state == DWC3_LINK_STATE_U1 ||
297 dwc->link_state == DWC3_LINK_STATE_U2 ||
298 dwc->link_state == DWC3_LINK_STATE_U3);
299
300 if (unlikely(needs_wakeup)) {
301 ret = __dwc3_gadget_wakeup(dwc);
302 dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n",
303 ret);
304 }
305 }
306
Felipe Balbi2eb88012016-04-12 16:53:39 +0300307 dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0);
308 dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1);
309 dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300310
Felipe Balbi8897a762016-09-22 10:56:08 +0300311 /*
312 * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're
313 * not relying on XferNotReady, we can make use of a special "No
314 * Response Update Transfer" command where we should clear both CmdAct
315 * and CmdIOC bits.
316 *
317 * With this, we don't need to wait for command completion and can
318 * straight away issue further commands to the endpoint.
319 *
320 * NOTICE: We're making an assumption that control endpoints will never
321 * make use of Update Transfer command. This is a safe assumption
322 * because we can never have more than one request at a time with
323 * Control Endpoints. If anybody changes that assumption, this chunk
324 * needs to be updated accordingly.
325 */
326 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER &&
327 !usb_endpoint_xfer_isoc(desc))
328 cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT);
329 else
330 cmd |= DWC3_DEPCMD_CMDACT;
331
332 dwc3_writel(dep->regs, DWC3_DEPCMD, cmd);
Felipe Balbi72246da2011-08-19 18:10:58 +0300333 do {
Felipe Balbi2eb88012016-04-12 16:53:39 +0300334 reg = dwc3_readl(dep->regs, DWC3_DEPCMD);
Felipe Balbi72246da2011-08-19 18:10:58 +0300335 if (!(reg & DWC3_DEPCMD_CMDACT)) {
Felipe Balbi0933df12016-05-23 14:02:33 +0300336 cmd_status = DWC3_DEPCMD_STATUS(reg);
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000337
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000338 switch (cmd_status) {
339 case 0:
340 ret = 0;
Felipe Balbic0ca3242016-04-04 09:11:51 +0300341 break;
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000342 case DEPEVT_TRANSFER_NO_RESOURCE:
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000343 ret = -EINVAL;
344 break;
345 case DEPEVT_TRANSFER_BUS_EXPIRY:
346 /*
347 * SW issues START TRANSFER command to
348 * isochronous ep with future frame interval. If
349 * future interval time has already passed when
350 * core receives the command, it will respond
351 * with an error status of 'Bus Expiry'.
352 *
353 * Instead of always returning -EINVAL, let's
354 * give a hint to the gadget driver that this is
355 * the case by returning -EAGAIN.
356 */
Konrad Leszczynski7b9cc7a2016-02-12 15:21:46 +0000357 ret = -EAGAIN;
358 break;
359 default:
360 dev_WARN(dwc->dev, "UNKNOWN cmd status\n");
361 }
362
Felipe Balbic0ca3242016-04-04 09:11:51 +0300363 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300364 }
Felipe Balbif6bb2252016-05-23 13:53:34 +0300365 } while (--timeout);
Felipe Balbi72246da2011-08-19 18:10:58 +0300366
Felipe Balbif6bb2252016-05-23 13:53:34 +0300367 if (timeout == 0) {
Felipe Balbif6bb2252016-05-23 13:53:34 +0300368 ret = -ETIMEDOUT;
Felipe Balbi0933df12016-05-23 14:02:33 +0300369 cmd_status = -ETIMEDOUT;
Felipe Balbif6bb2252016-05-23 13:53:34 +0300370 }
Felipe Balbic0ca3242016-04-04 09:11:51 +0300371
Felipe Balbi0933df12016-05-23 14:02:33 +0300372 trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status);
373
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +0300374 if (ret == 0) {
375 switch (DWC3_DEPCMD_CMD(cmd)) {
376 case DWC3_DEPCMD_STARTTRANSFER:
377 dep->flags |= DWC3_EP_TRANSFER_STARTED;
378 break;
379 case DWC3_DEPCMD_ENDTRANSFER:
380 dep->flags &= ~DWC3_EP_TRANSFER_STARTED;
381 break;
382 default:
383 /* nothing */
384 break;
385 }
386 }
387
Felipe Balbi2b0f11d2016-04-04 09:19:17 +0300388 if (unlikely(susphy)) {
389 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
390 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
391 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
392 }
393
Felipe Balbic0ca3242016-04-04 09:11:51 +0300394 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300395}
396
John Youn50c763f2016-05-31 17:49:56 -0700397static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep)
398{
399 struct dwc3 *dwc = dep->dwc;
400 struct dwc3_gadget_ep_cmd_params params;
401 u32 cmd = DWC3_DEPCMD_CLEARSTALL;
402
403 /*
404 * As of core revision 2.60a the recommended programming model
405 * is to set the ClearPendIN bit when issuing a Clear Stall EP
406 * command for IN endpoints. This is to prevent an issue where
407 * some (non-compliant) hosts may not send ACK TPs for pending
408 * IN transfers due to a mishandled error condition. Synopsys
409 * STAR 9000614252.
410 */
Lu Baolu5e6c88d2016-09-09 12:51:27 +0800411 if (dep->direction && (dwc->revision >= DWC3_REVISION_260A) &&
412 (dwc->gadget.speed >= USB_SPEED_SUPER))
John Youn50c763f2016-05-31 17:49:56 -0700413 cmd |= DWC3_DEPCMD_CLEARPENDIN;
414
415 memset(&params, 0, sizeof(params));
416
Felipe Balbi2cd47182016-04-12 16:42:43 +0300417 return dwc3_send_gadget_ep_cmd(dep, cmd, &params);
John Youn50c763f2016-05-31 17:49:56 -0700418}
419
Felipe Balbi72246da2011-08-19 18:10:58 +0300420static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
Felipe Balbif6bafc62012-02-06 11:04:53 +0200421 struct dwc3_trb *trb)
Felipe Balbi72246da2011-08-19 18:10:58 +0300422{
Paul Zimmermanc439ef82011-09-30 10:58:45 +0300423 u32 offset = (char *) trb - (char *) dep->trb_pool;
Felipe Balbi72246da2011-08-19 18:10:58 +0300424
425 return dep->trb_pool_dma + offset;
426}
427
428static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
429{
430 struct dwc3 *dwc = dep->dwc;
431
432 if (dep->trb_pool)
433 return 0;
434
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530435 dep->trb_pool = dma_alloc_coherent(dwc->sysdev,
Felipe Balbi72246da2011-08-19 18:10:58 +0300436 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
437 &dep->trb_pool_dma, GFP_KERNEL);
438 if (!dep->trb_pool) {
439 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
440 dep->name);
441 return -ENOMEM;
442 }
443
444 return 0;
445}
446
447static void dwc3_free_trb_pool(struct dwc3_ep *dep)
448{
449 struct dwc3 *dwc = dep->dwc;
450
Arnd Bergmannd64ff402016-11-17 17:13:47 +0530451 dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
Felipe Balbi72246da2011-08-19 18:10:58 +0300452 dep->trb_pool, dep->trb_pool_dma);
453
454 dep->trb_pool = NULL;
455 dep->trb_pool_dma = 0;
456}
457
John Younc4509602016-02-16 20:10:53 -0800458static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep);
459
460/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300461 * dwc3_gadget_start_config - configure ep resources
John Younc4509602016-02-16 20:10:53 -0800462 * @dwc: pointer to our controller context structure
463 * @dep: endpoint that is being enabled
464 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300465 * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's
466 * completion, it will set Transfer Resource for all available endpoints.
John Younc4509602016-02-16 20:10:53 -0800467 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300468 * The assignment of transfer resources cannot perfectly follow the data book
469 * due to the fact that the controller driver does not have all knowledge of the
470 * configuration in advance. It is given this information piecemeal by the
471 * composite gadget framework after every SET_CONFIGURATION and
472 * SET_INTERFACE. Trying to follow the databook programming model in this
473 * scenario can cause errors. For two reasons:
John Younc4509602016-02-16 20:10:53 -0800474 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300475 * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every
476 * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is
477 * incorrect in the scenario of multiple interfaces.
478 *
479 * 2) The databook does not mention doing more %DWC3_DEPCMD_DEPXFERCFG for new
John Younc4509602016-02-16 20:10:53 -0800480 * endpoint on alt setting (8.1.6).
481 *
482 * The following simplified method is used instead:
483 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300484 * All hardware endpoints can be assigned a transfer resource and this setting
485 * will stay persistent until either a core reset or hibernation. So whenever we
486 * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do
487 * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are
John Younc4509602016-02-16 20:10:53 -0800488 * guaranteed that there are as many transfer resources as endpoints.
489 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300490 * This function is called for each endpoint when it is being enabled but is
491 * triggered only when called for EP0-out, which always happens first, and which
492 * should only happen in one of the above conditions.
John Younc4509602016-02-16 20:10:53 -0800493 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300494static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep)
495{
496 struct dwc3_gadget_ep_cmd_params params;
497 u32 cmd;
John Younc4509602016-02-16 20:10:53 -0800498 int i;
499 int ret;
500
501 if (dep->number)
502 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300503
504 memset(&params, 0x00, sizeof(params));
John Younc4509602016-02-16 20:10:53 -0800505 cmd = DWC3_DEPCMD_DEPSTARTCFG;
Felipe Balbi72246da2011-08-19 18:10:58 +0300506
Felipe Balbi2cd47182016-04-12 16:42:43 +0300507 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
John Younc4509602016-02-16 20:10:53 -0800508 if (ret)
509 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300510
John Younc4509602016-02-16 20:10:53 -0800511 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
512 struct dwc3_ep *dep = dwc->eps[i];
513
514 if (!dep)
515 continue;
516
517 ret = dwc3_gadget_set_xfer_resource(dwc, dep);
518 if (ret)
519 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300520 }
521
522 return 0;
523}
524
525static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
Felipe Balbi21e64bf2016-06-02 12:37:31 +0300526 bool modify, bool restore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300527{
John Youn39ebb052016-11-09 16:36:28 -0800528 const struct usb_ss_ep_comp_descriptor *comp_desc;
529 const struct usb_endpoint_descriptor *desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300530 struct dwc3_gadget_ep_cmd_params params;
531
Felipe Balbi21e64bf2016-06-02 12:37:31 +0300532 if (dev_WARN_ONCE(dwc->dev, modify && restore,
533 "Can't modify and restore\n"))
534 return -EINVAL;
535
John Youn39ebb052016-11-09 16:36:28 -0800536 comp_desc = dep->endpoint.comp_desc;
537 desc = dep->endpoint.desc;
538
Felipe Balbi72246da2011-08-19 18:10:58 +0300539 memset(&params, 0x00, sizeof(params));
540
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300541 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
Chanho Parkd2e9a132012-08-31 16:54:07 +0900542 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
543
544 /* Burst size is only needed in SuperSpeed mode */
John Younee5cd412016-02-05 17:08:45 -0800545 if (dwc->gadget.speed >= USB_SPEED_SUPER) {
Felipe Balbi676e3492016-04-26 10:49:07 +0300546 u32 burst = dep->endpoint.maxburst;
Felipe Balbi676e3492016-04-26 10:49:07 +0300547 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1);
Chanho Parkd2e9a132012-08-31 16:54:07 +0900548 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300549
Felipe Balbi21e64bf2016-06-02 12:37:31 +0300550 if (modify) {
551 params.param0 |= DWC3_DEPCFG_ACTION_MODIFY;
552 } else if (restore) {
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600553 params.param0 |= DWC3_DEPCFG_ACTION_RESTORE;
554 params.param2 |= dep->saved_state;
Felipe Balbi21e64bf2016-06-02 12:37:31 +0300555 } else {
556 params.param0 |= DWC3_DEPCFG_ACTION_INIT;
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600557 }
558
Felipe Balbi4bc48c92016-08-10 16:04:33 +0300559 if (usb_endpoint_xfer_control(desc))
560 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN;
Felipe Balbi13fa2e62016-05-30 13:40:00 +0300561
562 if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc))
563 params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300564
Felipe Balbi18b7ede2012-01-02 13:35:41 +0200565 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300566 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
567 | DWC3_DEPCFG_STREAM_EVENT_EN;
Felipe Balbi879631a2011-09-30 10:58:47 +0300568 dep->stream_capable = true;
569 }
570
Felipe Balbi0b93a4c2014-09-04 10:28:10 -0500571 if (!usb_endpoint_xfer_control(desc))
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300572 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300573
574 /*
575 * We are doing 1:1 mapping for endpoints, meaning
576 * Physical Endpoints 2 maps to Logical Endpoint 2 and
577 * so on. We consider the direction bit as part of the physical
578 * endpoint number. So USB endpoint 0x81 is 0x03.
579 */
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300580 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
Felipe Balbi72246da2011-08-19 18:10:58 +0300581
582 /*
583 * We must use the lower 16 TX FIFOs even though
584 * HW might have more
585 */
586 if (dep->direction)
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300587 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300588
589 if (desc->bInterval) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300590 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300591 dep->interval = 1 << (desc->bInterval - 1);
592 }
593
Felipe Balbi2cd47182016-04-12 16:42:43 +0300594 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, &params);
Felipe Balbi72246da2011-08-19 18:10:58 +0300595}
596
597static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep)
598{
599 struct dwc3_gadget_ep_cmd_params params;
600
601 memset(&params, 0x00, sizeof(params));
602
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300603 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300604
Felipe Balbi2cd47182016-04-12 16:42:43 +0300605 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE,
606 &params);
Felipe Balbi72246da2011-08-19 18:10:58 +0300607}
608
609/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300610 * __dwc3_gadget_ep_enable - initializes a hw endpoint
Felipe Balbi72246da2011-08-19 18:10:58 +0300611 * @dep: endpoint to be initialized
Felipe Balbibfad65e2017-04-19 14:59:27 +0300612 * @modify: if true, modify existing endpoint configuration
613 * @restore: if true, restore endpoint configuration from scratch buffer
Felipe Balbi72246da2011-08-19 18:10:58 +0300614 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300615 * Caller should take care of locking. Execute all necessary commands to
616 * initialize a HW endpoint so it can be used by a gadget driver.
Felipe Balbi72246da2011-08-19 18:10:58 +0300617 */
618static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep,
Felipe Balbi21e64bf2016-06-02 12:37:31 +0300619 bool modify, bool restore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300620{
John Youn39ebb052016-11-09 16:36:28 -0800621 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300622 struct dwc3 *dwc = dep->dwc;
John Youn39ebb052016-11-09 16:36:28 -0800623
Felipe Balbi72246da2011-08-19 18:10:58 +0300624 u32 reg;
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300625 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300626
627 if (!(dep->flags & DWC3_EP_ENABLED)) {
628 ret = dwc3_gadget_start_config(dwc, dep);
629 if (ret)
630 return ret;
631 }
632
John Youn39ebb052016-11-09 16:36:28 -0800633 ret = dwc3_gadget_set_ep_config(dwc, dep, modify, restore);
Felipe Balbi72246da2011-08-19 18:10:58 +0300634 if (ret)
635 return ret;
636
637 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200638 struct dwc3_trb *trb_st_hw;
639 struct dwc3_trb *trb_link;
Felipe Balbi72246da2011-08-19 18:10:58 +0300640
Felipe Balbi72246da2011-08-19 18:10:58 +0300641 dep->type = usb_endpoint_type(desc);
642 dep->flags |= DWC3_EP_ENABLED;
Baolin Wang76a638f2016-10-31 19:38:36 +0800643 dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +0300644
645 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
646 reg |= DWC3_DALEPENA_EP(dep->number);
647 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
648
Baolin Wang76a638f2016-10-31 19:38:36 +0800649 init_waitqueue_head(&dep->wait_end_transfer);
650
Felipe Balbi36b68aa2016-04-05 13:24:36 +0300651 if (usb_endpoint_xfer_control(desc))
Felipe Balbi2870e502016-11-03 13:53:29 +0200652 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +0300653
John Youn0d257442016-05-19 17:26:08 -0700654 /* Initialize the TRB ring */
655 dep->trb_dequeue = 0;
656 dep->trb_enqueue = 0;
657 memset(dep->trb_pool, 0,
658 sizeof(struct dwc3_trb) * DWC3_TRB_NUM);
659
Felipe Balbi36b68aa2016-04-05 13:24:36 +0300660 /* Link TRB. The HWO bit is never reset */
Felipe Balbi72246da2011-08-19 18:10:58 +0300661 trb_st_hw = &dep->trb_pool[0];
662
Felipe Balbif6bafc62012-02-06 11:04:53 +0200663 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
Felipe Balbif6bafc62012-02-06 11:04:53 +0200664 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
665 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
666 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
667 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi72246da2011-08-19 18:10:58 +0300668 }
669
Felipe Balbia97ea992016-09-29 16:28:56 +0300670 /*
671 * Issue StartTransfer here with no-op TRB so we can always rely on No
672 * Response Update Transfer command.
673 */
Felipe Balbi52fcc0b2018-03-26 13:19:43 +0300674 if (usb_endpoint_xfer_bulk(desc) ||
675 usb_endpoint_xfer_int(desc)) {
Felipe Balbia97ea992016-09-29 16:28:56 +0300676 struct dwc3_gadget_ep_cmd_params params;
677 struct dwc3_trb *trb;
678 dma_addr_t trb_dma;
679 u32 cmd;
680
681 memset(&params, 0, sizeof(params));
682 trb = &dep->trb_pool[0];
683 trb_dma = dwc3_trb_dma_offset(dep, trb);
684
685 params.param0 = upper_32_bits(trb_dma);
686 params.param1 = lower_32_bits(trb_dma);
687
688 cmd = DWC3_DEPCMD_STARTTRANSFER;
689
690 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
691 if (ret < 0)
692 return ret;
693
694 dep->flags |= DWC3_EP_BUSY;
695
696 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep);
697 WARN_ON_ONCE(!dep->resource_index);
698 }
699
Felipe Balbi2870e502016-11-03 13:53:29 +0200700out:
701 trace_dwc3_gadget_ep_enable(dep);
702
Felipe Balbi72246da2011-08-19 18:10:58 +0300703 return 0;
704}
705
Felipe Balbi8f608e82018-03-27 10:53:29 +0300706static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force);
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200707static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300708{
709 struct dwc3_request *req;
710
Felipe Balbi8f608e82018-03-27 10:53:29 +0300711 dwc3_stop_active_transfer(dep, true);
Felipe Balbi69450c42016-05-30 13:37:02 +0300712
Felipe Balbi0e146022016-06-21 10:32:02 +0300713 /* - giveback all requests to gadget driver */
714 while (!list_empty(&dep->started_list)) {
715 req = next_request(&dep->started_list);
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200716
Felipe Balbi0e146022016-06-21 10:32:02 +0300717 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbiea53b882012-02-17 12:10:04 +0200718 }
719
Felipe Balbiaa3342c2016-03-14 11:01:31 +0200720 while (!list_empty(&dep->pending_list)) {
721 req = next_request(&dep->pending_list);
Felipe Balbi72246da2011-08-19 18:10:58 +0300722
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200723 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbi72246da2011-08-19 18:10:58 +0300724 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300725}
726
727/**
Felipe Balbibfad65e2017-04-19 14:59:27 +0300728 * __dwc3_gadget_ep_disable - disables a hw endpoint
Felipe Balbi72246da2011-08-19 18:10:58 +0300729 * @dep: the endpoint to disable
730 *
Felipe Balbibfad65e2017-04-19 14:59:27 +0300731 * This function undoes what __dwc3_gadget_ep_enable did and also removes
732 * requests which are currently being processed by the hardware and those which
733 * are not yet scheduled.
734 *
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200735 * Caller should take care of locking.
Felipe Balbi72246da2011-08-19 18:10:58 +0300736 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300737static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
738{
739 struct dwc3 *dwc = dep->dwc;
740 u32 reg;
741
Felipe Balbi2870e502016-11-03 13:53:29 +0200742 trace_dwc3_gadget_ep_disable(dep);
Felipe Balbi7eaeac52015-07-20 14:46:15 -0500743
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200744 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300745
Felipe Balbi687ef982014-04-16 10:30:33 -0500746 /* make sure HW endpoint isn't stalled */
747 if (dep->flags & DWC3_EP_STALL)
Felipe Balbi7a608552014-09-24 14:19:52 -0500748 __dwc3_gadget_ep_set_halt(dep, 0, false);
Felipe Balbi687ef982014-04-16 10:30:33 -0500749
Felipe Balbi72246da2011-08-19 18:10:58 +0300750 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
751 reg &= ~DWC3_DALEPENA_EP(dep->number);
752 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
753
Felipe Balbi879631a2011-09-30 10:58:47 +0300754 dep->stream_capable = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300755 dep->type = 0;
Baolin Wang76a638f2016-10-31 19:38:36 +0800756 dep->flags &= DWC3_EP_END_TRANSFER_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +0300757
John Youn39ebb052016-11-09 16:36:28 -0800758 /* Clear out the ep descriptors for non-ep0 */
759 if (dep->number > 1) {
760 dep->endpoint.comp_desc = NULL;
761 dep->endpoint.desc = NULL;
762 }
763
Felipe Balbi72246da2011-08-19 18:10:58 +0300764 return 0;
765}
766
767/* -------------------------------------------------------------------------- */
768
769static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
770 const struct usb_endpoint_descriptor *desc)
771{
772 return -EINVAL;
773}
774
775static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
776{
777 return -EINVAL;
778}
779
780/* -------------------------------------------------------------------------- */
781
782static int dwc3_gadget_ep_enable(struct usb_ep *ep,
783 const struct usb_endpoint_descriptor *desc)
784{
785 struct dwc3_ep *dep;
786 struct dwc3 *dwc;
787 unsigned long flags;
788 int ret;
789
790 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
791 pr_debug("dwc3: invalid parameters\n");
792 return -EINVAL;
793 }
794
795 if (!desc->wMaxPacketSize) {
796 pr_debug("dwc3: missing wMaxPacketSize\n");
797 return -EINVAL;
798 }
799
800 dep = to_dwc3_ep(ep);
801 dwc = dep->dwc;
802
Felipe Balbi95ca9612015-12-10 13:08:20 -0600803 if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED,
804 "%s is already enabled\n",
805 dep->name))
Felipe Balbic6f83f32012-08-15 12:28:29 +0300806 return 0;
Felipe Balbic6f83f32012-08-15 12:28:29 +0300807
Felipe Balbi72246da2011-08-19 18:10:58 +0300808 spin_lock_irqsave(&dwc->lock, flags);
John Youn39ebb052016-11-09 16:36:28 -0800809 ret = __dwc3_gadget_ep_enable(dep, false, false);
Felipe Balbi72246da2011-08-19 18:10:58 +0300810 spin_unlock_irqrestore(&dwc->lock, flags);
811
812 return ret;
813}
814
815static int dwc3_gadget_ep_disable(struct usb_ep *ep)
816{
817 struct dwc3_ep *dep;
818 struct dwc3 *dwc;
819 unsigned long flags;
820 int ret;
821
822 if (!ep) {
823 pr_debug("dwc3: invalid parameters\n");
824 return -EINVAL;
825 }
826
827 dep = to_dwc3_ep(ep);
828 dwc = dep->dwc;
829
Felipe Balbi95ca9612015-12-10 13:08:20 -0600830 if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED),
831 "%s is already disabled\n",
832 dep->name))
Felipe Balbi72246da2011-08-19 18:10:58 +0300833 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300834
Felipe Balbi72246da2011-08-19 18:10:58 +0300835 spin_lock_irqsave(&dwc->lock, flags);
836 ret = __dwc3_gadget_ep_disable(dep);
837 spin_unlock_irqrestore(&dwc->lock, flags);
838
839 return ret;
840}
841
842static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
Felipe Balbi0bd0f6d2018-03-26 16:09:00 +0300843 gfp_t gfp_flags)
Felipe Balbi72246da2011-08-19 18:10:58 +0300844{
845 struct dwc3_request *req;
846 struct dwc3_ep *dep = to_dwc3_ep(ep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300847
848 req = kzalloc(sizeof(*req), gfp_flags);
Jingoo Han734d5a52014-07-17 12:45:11 +0900849 if (!req)
Felipe Balbi72246da2011-08-19 18:10:58 +0300850 return NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300851
852 req->epnum = dep->number;
853 req->dep = dep;
Felipe Balbi72246da2011-08-19 18:10:58 +0300854
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500855 trace_dwc3_alloc_request(req);
856
Felipe Balbi72246da2011-08-19 18:10:58 +0300857 return &req->request;
858}
859
860static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
861 struct usb_request *request)
862{
863 struct dwc3_request *req = to_dwc3_request(request);
864
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500865 trace_dwc3_free_request(req);
Felipe Balbi72246da2011-08-19 18:10:58 +0300866 kfree(req);
867}
868
Felipe Balbi2c78c022016-08-12 13:13:10 +0300869static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep);
870
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200871static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb,
872 dma_addr_t dma, unsigned length, unsigned chain, unsigned node,
873 unsigned stream_id, unsigned short_not_ok, unsigned no_interrupt)
Felipe Balbic71fc372011-11-22 11:37:34 +0200874{
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300875 struct dwc3 *dwc = dep->dwc;
876 struct usb_gadget *gadget = &dwc->gadget;
877 enum usb_device_speed speed = gadget->speed;
Felipe Balbic71fc372011-11-22 11:37:34 +0200878
Felipe Balbief966b92016-04-05 13:09:51 +0300879 dwc3_ep_inc_enq(dep);
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530880
Felipe Balbif6bafc62012-02-06 11:04:53 +0200881 trb->size = DWC3_TRB_SIZE_LENGTH(length);
882 trb->bpl = lower_32_bits(dma);
883 trb->bph = upper_32_bits(dma);
Felipe Balbic71fc372011-11-22 11:37:34 +0200884
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200885 switch (usb_endpoint_type(dep->endpoint.desc)) {
Felipe Balbic71fc372011-11-22 11:37:34 +0200886 case USB_ENDPOINT_XFER_CONTROL:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200887 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
Felipe Balbic71fc372011-11-22 11:37:34 +0200888 break;
889
890 case USB_ENDPOINT_XFER_ISOC:
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300891 if (!node) {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530892 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300893
Manu Gautam40d829f2017-07-19 17:07:10 +0530894 /*
895 * USB Specification 2.0 Section 5.9.2 states that: "If
896 * there is only a single transaction in the microframe,
897 * only a DATA0 data packet PID is used. If there are
898 * two transactions per microframe, DATA1 is used for
899 * the first transaction data packet and DATA0 is used
900 * for the second transaction data packet. If there are
901 * three transactions per microframe, DATA2 is used for
902 * the first transaction data packet, DATA1 is used for
903 * the second, and DATA0 is used for the third."
904 *
905 * IOW, we should satisfy the following cases:
906 *
907 * 1) length <= maxpacket
908 * - DATA0
909 *
910 * 2) maxpacket < length <= (2 * maxpacket)
911 * - DATA1, DATA0
912 *
913 * 3) (2 * maxpacket) < length <= (3 * maxpacket)
914 * - DATA2, DATA1, DATA0
915 */
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300916 if (speed == USB_SPEED_HIGH) {
917 struct usb_ep *ep = &dep->endpoint;
Manu Gautamec5bb872017-12-06 12:49:04 +0530918 unsigned int mult = 2;
Manu Gautam40d829f2017-07-19 17:07:10 +0530919 unsigned int maxp = usb_endpoint_maxp(ep->desc);
920
921 if (length <= (2 * maxp))
922 mult--;
923
924 if (length <= maxp)
925 mult--;
926
927 trb->size |= DWC3_TRB_SIZE_PCM1(mult);
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300928 }
929 } else {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530930 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS;
Felipe Balbi6b9018d2016-09-22 11:01:01 +0300931 }
Felipe Balbica4d44e2016-03-10 13:53:27 +0200932
933 /* always enable Interrupt on Missed ISOC */
934 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
Felipe Balbic71fc372011-11-22 11:37:34 +0200935 break;
936
937 case USB_ENDPOINT_XFER_BULK:
938 case USB_ENDPOINT_XFER_INT:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200939 trb->ctrl = DWC3_TRBCTL_NORMAL;
Felipe Balbic71fc372011-11-22 11:37:34 +0200940 break;
941 default:
942 /*
943 * This is only possible with faulty memory because we
944 * checked it already :)
945 */
Felipe Balbi0a695d42016-10-07 11:20:01 +0300946 dev_WARN(dwc->dev, "Unknown endpoint type %d\n",
947 usb_endpoint_type(dep->endpoint.desc));
Felipe Balbic71fc372011-11-22 11:37:34 +0200948 }
949
Felipe Balbica4d44e2016-03-10 13:53:27 +0200950 /* always enable Continue on Short Packet */
Felipe Balbic9508c82016-10-05 14:26:23 +0300951 if (usb_endpoint_dir_out(dep->endpoint.desc)) {
Felipe Balbi58f29032016-10-06 17:10:39 +0300952 trb->ctrl |= DWC3_TRB_CTRL_CSP;
Felipe Balbif3af3652013-12-13 14:19:33 -0600953
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200954 if (short_not_ok)
Felipe Balbic9508c82016-10-05 14:26:23 +0300955 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
956 }
957
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200958 if ((!no_interrupt && !chain) ||
Felipe Balbi2c78c022016-08-12 13:13:10 +0300959 (dwc3_calc_trbs_left(dep) == 0))
Felipe Balbic9508c82016-10-05 14:26:23 +0300960 trb->ctrl |= DWC3_TRB_CTRL_IOC;
Felipe Balbica4d44e2016-03-10 13:53:27 +0200961
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530962 if (chain)
963 trb->ctrl |= DWC3_TRB_CTRL_CHN;
964
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200965 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200966 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id);
Felipe Balbif6bafc62012-02-06 11:04:53 +0200967
968 trb->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -0500969
970 trace_dwc3_prepare_trb(dep, trb);
Felipe Balbic71fc372011-11-22 11:37:34 +0200971}
972
John Youn361572b2016-05-19 17:26:17 -0700973/**
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200974 * dwc3_prepare_one_trb - setup one TRB from one request
975 * @dep: endpoint for which this request is prepared
976 * @req: dwc3_request pointer
977 * @chain: should this TRB be chained to the next?
978 * @node: only for isochronous endpoints. First TRB needs different type.
979 */
980static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
981 struct dwc3_request *req, unsigned chain, unsigned node)
982{
983 struct dwc3_trb *trb;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +0530984 unsigned int length;
985 dma_addr_t dma;
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200986 unsigned stream_id = req->request.stream_id;
987 unsigned short_not_ok = req->request.short_not_ok;
988 unsigned no_interrupt = req->request.no_interrupt;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +0530989
990 if (req->request.num_sgs > 0) {
991 length = sg_dma_len(req->start_sg);
992 dma = sg_dma_address(req->start_sg);
993 } else {
994 length = req->request.length;
995 dma = req->request.dma;
996 }
Felipe Balbie49d3cf2017-01-05 14:40:53 +0200997
998 trb = &dep->trb_pool[dep->trb_enqueue];
999
1000 if (!req->trb) {
1001 dwc3_gadget_move_started_request(req);
1002 req->trb = trb;
1003 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Felipe Balbie49d3cf2017-01-05 14:40:53 +02001004 }
1005
1006 __dwc3_prepare_one_trb(dep, trb, dma, length, chain, node,
1007 stream_id, short_not_ok, no_interrupt);
1008}
1009
1010/**
Felipe Balbibfad65e2017-04-19 14:59:27 +03001011 * dwc3_ep_prev_trb - returns the previous TRB in the ring
John Youn361572b2016-05-19 17:26:17 -07001012 * @dep: The endpoint with the TRB ring
1013 * @index: The index of the current TRB in the ring
1014 *
1015 * Returns the TRB prior to the one pointed to by the index. If the
1016 * index is 0, we will wrap backwards, skip the link TRB, and return
1017 * the one just before that.
1018 */
1019static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index)
1020{
Felipe Balbi45438a02016-08-11 12:26:59 +03001021 u8 tmp = index;
John Youn361572b2016-05-19 17:26:17 -07001022
Felipe Balbi45438a02016-08-11 12:26:59 +03001023 if (!tmp)
1024 tmp = DWC3_TRB_NUM - 1;
1025
1026 return &dep->trb_pool[tmp - 1];
John Youn361572b2016-05-19 17:26:17 -07001027}
1028
Felipe Balbic4233572016-05-12 14:08:34 +03001029static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep)
1030{
1031 struct dwc3_trb *tmp;
John Youn32db3d92016-05-19 17:26:12 -07001032 u8 trbs_left;
Felipe Balbic4233572016-05-12 14:08:34 +03001033
1034 /*
1035 * If enqueue & dequeue are equal than it is either full or empty.
1036 *
1037 * One way to know for sure is if the TRB right before us has HWO bit
1038 * set or not. If it has, then we're definitely full and can't fit any
1039 * more transfers in our ring.
1040 */
1041 if (dep->trb_enqueue == dep->trb_dequeue) {
John Youn361572b2016-05-19 17:26:17 -07001042 tmp = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
Felipe Balbi202adaf2017-05-17 13:19:06 +03001043 if (tmp->ctrl & DWC3_TRB_CTRL_HWO)
John Youn361572b2016-05-19 17:26:17 -07001044 return 0;
Felipe Balbic4233572016-05-12 14:08:34 +03001045
1046 return DWC3_TRB_NUM - 1;
1047 }
1048
John Youn9d7aba72016-08-26 18:43:01 -07001049 trbs_left = dep->trb_dequeue - dep->trb_enqueue;
John Youn3de2685f2016-05-23 11:32:45 -07001050 trbs_left &= (DWC3_TRB_NUM - 1);
John Youn32db3d92016-05-19 17:26:12 -07001051
John Youn9d7aba72016-08-26 18:43:01 -07001052 if (dep->trb_dequeue < dep->trb_enqueue)
1053 trbs_left--;
1054
John Youn32db3d92016-05-19 17:26:12 -07001055 return trbs_left;
Felipe Balbic4233572016-05-12 14:08:34 +03001056}
1057
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001058static void dwc3_prepare_one_trb_sg(struct dwc3_ep *dep,
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001059 struct dwc3_request *req)
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001060{
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301061 struct scatterlist *sg = req->start_sg;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001062 struct scatterlist *s;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001063 int i;
1064
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301065 unsigned int remaining = req->request.num_mapped_sgs
1066 - req->num_queued_sgs;
1067
1068 for_each_sg(sg, s, remaining, i) {
Felipe Balbic6267a52017-01-05 14:58:46 +02001069 unsigned int length = req->request.length;
1070 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1071 unsigned int rem = length % maxp;
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001072 unsigned chain = true;
1073
Felipe Balbi4bc48c92016-08-10 16:04:33 +03001074 if (sg_is_last(s))
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001075 chain = false;
1076
Felipe Balbic6267a52017-01-05 14:58:46 +02001077 if (rem && usb_endpoint_dir_out(dep->endpoint.desc) && !chain) {
1078 struct dwc3 *dwc = dep->dwc;
1079 struct dwc3_trb *trb;
1080
1081 req->unaligned = true;
1082
1083 /* prepare normal TRB */
1084 dwc3_prepare_one_trb(dep, req, true, i);
1085
1086 /* Now prepare one extra TRB to align transfer size */
1087 trb = &dep->trb_pool[dep->trb_enqueue];
1088 __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr,
1089 maxp - rem, false, 0,
1090 req->request.stream_id,
1091 req->request.short_not_ok,
1092 req->request.no_interrupt);
1093 } else {
1094 dwc3_prepare_one_trb(dep, req, chain, i);
1095 }
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001096
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301097 /*
1098 * There can be a situation where all sgs in sglist are not
1099 * queued because of insufficient trb number. To handle this
1100 * case, update start_sg to next sg to be queued, so that
1101 * we have free trbs we can continue queuing from where we
1102 * previously stopped
1103 */
1104 if (chain)
1105 req->start_sg = sg_next(s);
1106
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301107 req->num_queued_sgs++;
1108
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001109 if (!dwc3_calc_trbs_left(dep))
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001110 break;
1111 }
1112}
1113
1114static void dwc3_prepare_one_trb_linear(struct dwc3_ep *dep,
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001115 struct dwc3_request *req)
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001116{
Felipe Balbic6267a52017-01-05 14:58:46 +02001117 unsigned int length = req->request.length;
1118 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc);
1119 unsigned int rem = length % maxp;
1120
1121 if (rem && usb_endpoint_dir_out(dep->endpoint.desc)) {
1122 struct dwc3 *dwc = dep->dwc;
1123 struct dwc3_trb *trb;
1124
1125 req->unaligned = true;
1126
1127 /* prepare normal TRB */
1128 dwc3_prepare_one_trb(dep, req, true, 0);
1129
1130 /* Now prepare one extra TRB to align transfer size */
1131 trb = &dep->trb_pool[dep->trb_enqueue];
1132 __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr, maxp - rem,
1133 false, 0, req->request.stream_id,
1134 req->request.short_not_ok,
1135 req->request.no_interrupt);
Felipe Balbid6e5a542017-04-07 16:34:38 +03001136 } else if (req->request.zero && req->request.length &&
1137 (IS_ALIGNED(req->request.length,dep->endpoint.maxpacket))) {
1138 struct dwc3 *dwc = dep->dwc;
1139 struct dwc3_trb *trb;
1140
1141 req->zero = true;
1142
1143 /* prepare normal TRB */
1144 dwc3_prepare_one_trb(dep, req, true, 0);
1145
1146 /* Now prepare one extra TRB to handle ZLP */
1147 trb = &dep->trb_pool[dep->trb_enqueue];
1148 __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr, 0,
1149 false, 0, req->request.stream_id,
1150 req->request.short_not_ok,
1151 req->request.no_interrupt);
Felipe Balbic6267a52017-01-05 14:58:46 +02001152 } else {
1153 dwc3_prepare_one_trb(dep, req, false, 0);
1154 }
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001155}
1156
Felipe Balbi72246da2011-08-19 18:10:58 +03001157/*
1158 * dwc3_prepare_trbs - setup TRBs from requests
1159 * @dep: endpoint for which requests are being prepared
Felipe Balbi72246da2011-08-19 18:10:58 +03001160 *
Paul Zimmerman1d046792012-02-15 18:56:56 -08001161 * The function goes through the requests list and sets up TRBs for the
1162 * transfers. The function returns once there are no more TRBs available or
1163 * it runs out of requests.
Felipe Balbi72246da2011-08-19 18:10:58 +03001164 */
Felipe Balbic4233572016-05-12 14:08:34 +03001165static void dwc3_prepare_trbs(struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +03001166{
Felipe Balbi68e823e2011-11-28 12:25:01 +02001167 struct dwc3_request *req, *n;
Felipe Balbi72246da2011-08-19 18:10:58 +03001168
1169 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
1170
Felipe Balbid86c5a62016-10-25 13:48:52 +03001171 /*
1172 * We can get in a situation where there's a request in the started list
1173 * but there weren't enough TRBs to fully kick it in the first time
1174 * around, so it has been waiting for more TRBs to be freed up.
1175 *
1176 * In that case, we should check if we have a request with pending_sgs
1177 * in the started list and prepare TRBs for that request first,
1178 * otherwise we will prepare TRBs completely out of order and that will
1179 * break things.
1180 */
1181 list_for_each_entry(req, &dep->started_list, list) {
1182 if (req->num_pending_sgs > 0)
1183 dwc3_prepare_one_trb_sg(dep, req);
1184
1185 if (!dwc3_calc_trbs_left(dep))
1186 return;
1187 }
1188
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001189 list_for_each_entry_safe(req, n, &dep->pending_list, list) {
Felipe Balbicdb55b32017-05-17 13:21:14 +03001190 struct dwc3 *dwc = dep->dwc;
1191 int ret;
1192
1193 ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request,
1194 dep->direction);
1195 if (ret)
1196 return;
1197
1198 req->sg = req->request.sg;
Anurag Kumar Vulishaa31e63b2018-03-27 16:35:20 +05301199 req->start_sg = req->sg;
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05301200 req->num_queued_sgs = 0;
Felipe Balbicdb55b32017-05-17 13:21:14 +03001201 req->num_pending_sgs = req->request.num_mapped_sgs;
1202
Felipe Balbi1f512112016-08-12 13:17:27 +03001203 if (req->num_pending_sgs > 0)
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001204 dwc3_prepare_one_trb_sg(dep, req);
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001205 else
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001206 dwc3_prepare_one_trb_linear(dep, req);
Felipe Balbi72246da2011-08-19 18:10:58 +03001207
Felipe Balbi7ae7df42016-08-24 14:37:22 +03001208 if (!dwc3_calc_trbs_left(dep))
Felipe Balbi5ee85d82016-05-13 12:42:44 +03001209 return;
Felipe Balbi72246da2011-08-19 18:10:58 +03001210 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001211}
1212
Felipe Balbi7fdca762017-09-05 14:41:34 +03001213static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +03001214{
1215 struct dwc3_gadget_ep_cmd_params params;
1216 struct dwc3_request *req;
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001217 int starting;
Felipe Balbi72246da2011-08-19 18:10:58 +03001218 int ret;
1219 u32 cmd;
1220
Felipe Balbiccb94eb2017-09-05 14:28:46 +03001221 if (!dwc3_calc_trbs_left(dep))
1222 return 0;
1223
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001224 starting = !(dep->flags & DWC3_EP_BUSY);
Felipe Balbi72246da2011-08-19 18:10:58 +03001225
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001226 dwc3_prepare_trbs(dep);
1227 req = next_request(&dep->started_list);
Felipe Balbi72246da2011-08-19 18:10:58 +03001228 if (!req) {
1229 dep->flags |= DWC3_EP_PENDING_REQUEST;
1230 return 0;
1231 }
1232
1233 memset(&params, 0, sizeof(params));
Felipe Balbi72246da2011-08-19 18:10:58 +03001234
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001235 if (starting) {
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301236 params.param0 = upper_32_bits(req->trb_dma);
1237 params.param1 = lower_32_bits(req->trb_dma);
Felipe Balbi7fdca762017-09-05 14:41:34 +03001238 cmd = DWC3_DEPCMD_STARTTRANSFER;
1239
1240 if (usb_endpoint_xfer_isoc(dep->endpoint.desc))
1241 cmd |= DWC3_DEPCMD_PARAM(dep->frame_number);
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301242 } else {
Felipe Balbib6b1c6d2016-05-30 13:29:35 +03001243 cmd = DWC3_DEPCMD_UPDATETRANSFER |
1244 DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301245 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001246
Felipe Balbi2cd47182016-04-12 16:42:43 +03001247 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
Felipe Balbi72246da2011-08-19 18:10:58 +03001248 if (ret < 0) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001249 /*
1250 * FIXME we need to iterate over the list of requests
1251 * here and stop, unmap, free and del each of the linked
Paul Zimmerman1d046792012-02-15 18:56:56 -08001252 * requests instead of what we do now.
Felipe Balbi72246da2011-08-19 18:10:58 +03001253 */
Janusz Dziedzicce3fc8b2016-11-09 11:01:32 +01001254 if (req->trb)
1255 memset(req->trb, 0, sizeof(struct dwc3_trb));
Felipe Balbic91815b2018-03-26 13:14:47 +03001256 dwc3_gadget_del_and_unmap_request(dep, req, ret);
Felipe Balbi72246da2011-08-19 18:10:58 +03001257 return ret;
1258 }
1259
1260 dep->flags |= DWC3_EP_BUSY;
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001261
Felipe Balbi4fae2e32016-05-12 16:53:59 +03001262 if (starting) {
Felipe Balbi2eb88012016-04-12 16:53:39 +03001263 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep);
Felipe Balbib4996a82012-06-06 12:04:13 +03001264 WARN_ON_ONCE(!dep->resource_index);
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001265 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001266
Felipe Balbi72246da2011-08-19 18:10:58 +03001267 return 0;
1268}
1269
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001270static int __dwc3_gadget_get_frame(struct dwc3 *dwc)
1271{
1272 u32 reg;
1273
1274 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1275 return DWC3_DSTS_SOFFN(reg);
1276}
1277
Felipe Balbi5828cad2018-03-27 11:14:31 +03001278static void __dwc3_gadget_start_isoc(struct dwc3_ep *dep)
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301279{
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001280 if (list_empty(&dep->pending_list)) {
Felipe Balbi8f608e82018-03-27 10:53:29 +03001281 dev_info(dep->dwc->dev, "%s: ran out of requests\n",
Felipe Balbi73815282015-01-27 13:48:14 -06001282 dep->name);
Pratyush Anandf4a53c52012-08-30 12:21:43 +05301283 dep->flags |= DWC3_EP_PENDING_REQUEST;
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301284 return;
1285 }
1286
John Younaf771d72017-01-26 11:58:40 -08001287 /*
1288 * Schedule the first trb for one interval in the future or at
1289 * least 4 microframes.
1290 */
Felipe Balbi5828cad2018-03-27 11:14:31 +03001291 dep->frame_number += max_t(u32, 4, dep->interval);
Felipe Balbi7fdca762017-09-05 14:41:34 +03001292 __dwc3_gadget_kick_transfer(dep);
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301293}
1294
Felipe Balbi72246da2011-08-19 18:10:58 +03001295static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1296{
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001297 struct dwc3 *dwc = dep->dwc;
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001298
Felipe Balbibb423982015-11-16 15:31:21 -06001299 if (!dep->endpoint.desc) {
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02001300 dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n",
1301 dep->name);
Felipe Balbibb423982015-11-16 15:31:21 -06001302 return -ESHUTDOWN;
1303 }
1304
Felipe Balbi04fb3652017-05-17 15:57:45 +03001305 if (WARN(req->dep != dep, "request %pK belongs to '%s'\n",
1306 &req->request, req->dep->name))
Felipe Balbibb423982015-11-16 15:31:21 -06001307 return -EINVAL;
Felipe Balbibb423982015-11-16 15:31:21 -06001308
Felipe Balbifc8bb912016-05-16 13:14:48 +03001309 pm_runtime_get(dwc->dev);
1310
Felipe Balbi72246da2011-08-19 18:10:58 +03001311 req->request.actual = 0;
1312 req->request.status = -EINPROGRESS;
1313 req->direction = dep->direction;
1314 req->epnum = dep->number;
1315
Felipe Balbife84f522015-09-01 09:01:38 -05001316 trace_dwc3_ep_queue(req);
1317
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001318 list_add_tail(&req->list, &dep->pending_list);
Felipe Balbi72246da2011-08-19 18:10:58 +03001319
Felipe Balbid889c232016-09-29 15:44:29 +03001320 /*
1321 * NOTICE: Isochronous endpoints should NEVER be prestarted. We must
1322 * wait for a XferNotReady event so we will know what's the current
1323 * (micro-)frame number.
1324 *
1325 * Without this trick, we are very, very likely gonna get Bus Expiry
1326 * errors which will force us issue EndTransfer command.
1327 */
1328 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001329 if ((dep->flags & DWC3_EP_PENDING_REQUEST)) {
1330 if (dep->flags & DWC3_EP_TRANSFER_STARTED) {
Felipe Balbi8f608e82018-03-27 10:53:29 +03001331 dwc3_stop_active_transfer(dep, true);
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001332 dep->flags = DWC3_EP_ENABLED;
1333 } else {
Felipe Balbi5828cad2018-03-27 11:14:31 +03001334 __dwc3_gadget_start_isoc(dep);
Janusz Dziedzic87aba102016-11-09 11:01:34 +01001335 dep->flags &= ~DWC3_EP_PENDING_REQUEST;
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001336 }
Roger Quadrosf1d68262017-04-21 15:58:08 +03001337 return 0;
Felipe Balbi08a36b52016-08-11 14:27:52 +03001338 }
Roger Quadrosf1d68262017-04-21 15:58:08 +03001339
1340 if ((dep->flags & DWC3_EP_BUSY) &&
Felipe Balbi64e01082017-09-05 14:32:55 +03001341 !(dep->flags & DWC3_EP_MISSED_ISOC))
1342 goto out;
Roger Quadrosf1d68262017-04-21 15:58:08 +03001343
Felipe Balbi64e01082017-09-05 14:32:55 +03001344 return 0;
Felipe Balbib511e5e2012-06-06 12:00:50 +03001345 }
1346
Roger Quadrosf1d68262017-04-21 15:58:08 +03001347out:
Felipe Balbi7fdca762017-09-05 14:41:34 +03001348 return __dwc3_gadget_kick_transfer(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03001349}
1350
1351static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1352 gfp_t gfp_flags)
1353{
1354 struct dwc3_request *req = to_dwc3_request(request);
1355 struct dwc3_ep *dep = to_dwc3_ep(ep);
1356 struct dwc3 *dwc = dep->dwc;
1357
1358 unsigned long flags;
1359
1360 int ret;
1361
Zhuang Jin Canfdee4eb2014-09-03 14:26:34 +08001362 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001363 ret = __dwc3_gadget_ep_queue(dep, req);
1364 spin_unlock_irqrestore(&dwc->lock, flags);
1365
1366 return ret;
1367}
1368
1369static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1370 struct usb_request *request)
1371{
1372 struct dwc3_request *req = to_dwc3_request(request);
1373 struct dwc3_request *r = NULL;
1374
1375 struct dwc3_ep *dep = to_dwc3_ep(ep);
1376 struct dwc3 *dwc = dep->dwc;
1377
1378 unsigned long flags;
1379 int ret = 0;
1380
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05001381 trace_dwc3_ep_dequeue(req);
1382
Felipe Balbi72246da2011-08-19 18:10:58 +03001383 spin_lock_irqsave(&dwc->lock, flags);
1384
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001385 list_for_each_entry(r, &dep->pending_list, list) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001386 if (r == req)
1387 break;
1388 }
1389
1390 if (r != req) {
Felipe Balbiaa3342c2016-03-14 11:01:31 +02001391 list_for_each_entry(r, &dep->started_list, list) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001392 if (r == req)
1393 break;
1394 }
1395 if (r == req) {
1396 /* wait until it is processed */
Felipe Balbi8f608e82018-03-27 10:53:29 +03001397 dwc3_stop_active_transfer(dep, true);
Felipe Balbicf3113d2017-02-17 11:12:44 +02001398
1399 /*
1400 * If request was already started, this means we had to
1401 * stop the transfer. With that we also need to ignore
1402 * all TRBs used by the request, however TRBs can only
1403 * be modified after completion of END_TRANSFER
1404 * command. So what we do here is that we wait for
1405 * END_TRANSFER completion and only after that, we jump
1406 * over TRBs by clearing HWO and incrementing dequeue
1407 * pointer.
1408 *
1409 * Note that we have 2 possible types of transfers here:
1410 *
1411 * i) Linear buffer request
1412 * ii) SG-list based request
1413 *
1414 * SG-list based requests will have r->num_pending_sgs
1415 * set to a valid number (> 0). Linear requests,
1416 * normally use a single TRB.
1417 *
1418 * For each of these two cases, if r->unaligned flag is
1419 * set, one extra TRB has been used to align transfer
1420 * size to wMaxPacketSize.
1421 *
1422 * All of these cases need to be taken into
1423 * consideration so we don't mess up our TRB ring
1424 * pointers.
1425 */
1426 wait_event_lock_irq(dep->wait_end_transfer,
1427 !(dep->flags & DWC3_EP_END_TRANSFER_PENDING),
1428 dwc->lock);
1429
1430 if (!r->trb)
1431 goto out1;
1432
1433 if (r->num_pending_sgs) {
1434 struct dwc3_trb *trb;
1435 int i = 0;
1436
1437 for (i = 0; i < r->num_pending_sgs; i++) {
1438 trb = r->trb + i;
1439 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1440 dwc3_ep_inc_deq(dep);
1441 }
1442
Felipe Balbid6e5a542017-04-07 16:34:38 +03001443 if (r->unaligned || r->zero) {
Felipe Balbicf3113d2017-02-17 11:12:44 +02001444 trb = r->trb + r->num_pending_sgs + 1;
1445 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1446 dwc3_ep_inc_deq(dep);
1447 }
1448 } else {
1449 struct dwc3_trb *trb = r->trb;
1450
1451 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1452 dwc3_ep_inc_deq(dep);
1453
Felipe Balbid6e5a542017-04-07 16:34:38 +03001454 if (r->unaligned || r->zero) {
Felipe Balbicf3113d2017-02-17 11:12:44 +02001455 trb = r->trb + 1;
1456 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
1457 dwc3_ep_inc_deq(dep);
1458 }
1459 }
Pratyush Anande8d4e8b2012-06-15 11:54:00 +05301460 goto out1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001461 }
Felipe Balbi04fb3652017-05-17 15:57:45 +03001462 dev_err(dwc->dev, "request %pK was not queued to %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001463 request, ep->name);
1464 ret = -EINVAL;
1465 goto out0;
1466 }
1467
Pratyush Anande8d4e8b2012-06-15 11:54:00 +05301468out1:
Felipe Balbi72246da2011-08-19 18:10:58 +03001469 /* giveback the request */
Felipe Balbi0bd0f6d2018-03-26 16:09:00 +03001470
Felipe Balbi72246da2011-08-19 18:10:58 +03001471 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1472
1473out0:
1474 spin_unlock_irqrestore(&dwc->lock, flags);
1475
1476 return ret;
1477}
1478
Felipe Balbi7a608552014-09-24 14:19:52 -05001479int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol)
Felipe Balbi72246da2011-08-19 18:10:58 +03001480{
1481 struct dwc3_gadget_ep_cmd_params params;
1482 struct dwc3 *dwc = dep->dwc;
1483 int ret;
1484
Felipe Balbi5ad02fb2014-09-24 10:48:26 -05001485 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1486 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1487 return -EINVAL;
1488 }
1489
Felipe Balbi72246da2011-08-19 18:10:58 +03001490 memset(&params, 0x00, sizeof(params));
1491
1492 if (value) {
Felipe Balbi69450c42016-05-30 13:37:02 +03001493 struct dwc3_trb *trb;
1494
1495 unsigned transfer_in_flight;
1496 unsigned started;
1497
Felipe Balbiffb80fc2017-01-19 13:38:42 +02001498 if (dep->flags & DWC3_EP_STALL)
1499 return 0;
1500
Felipe Balbi69450c42016-05-30 13:37:02 +03001501 if (dep->number > 1)
1502 trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue);
1503 else
1504 trb = &dwc->ep0_trb[dep->trb_enqueue];
1505
1506 transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO;
1507 started = !list_empty(&dep->started_list);
1508
1509 if (!protocol && ((dep->direction && transfer_in_flight) ||
1510 (!dep->direction && started))) {
Felipe Balbi7a608552014-09-24 14:19:52 -05001511 return -EAGAIN;
1512 }
1513
Felipe Balbi2cd47182016-04-12 16:42:43 +03001514 ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL,
1515 &params);
Felipe Balbi72246da2011-08-19 18:10:58 +03001516 if (ret)
Dan Carpenter3f892042014-03-07 14:20:22 +03001517 dev_err(dwc->dev, "failed to set STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001518 dep->name);
1519 else
1520 dep->flags |= DWC3_EP_STALL;
1521 } else {
Felipe Balbiffb80fc2017-01-19 13:38:42 +02001522 if (!(dep->flags & DWC3_EP_STALL))
1523 return 0;
Felipe Balbi2cd47182016-04-12 16:42:43 +03001524
John Youn50c763f2016-05-31 17:49:56 -07001525 ret = dwc3_send_clear_stall_ep_cmd(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03001526 if (ret)
Dan Carpenter3f892042014-03-07 14:20:22 +03001527 dev_err(dwc->dev, "failed to clear STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001528 dep->name);
1529 else
Alan Sterna535d812013-11-01 12:05:12 -04001530 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
Felipe Balbi72246da2011-08-19 18:10:58 +03001531 }
Paul Zimmerman52754552011-09-30 10:58:44 +03001532
Felipe Balbi72246da2011-08-19 18:10:58 +03001533 return ret;
1534}
1535
1536static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1537{
1538 struct dwc3_ep *dep = to_dwc3_ep(ep);
1539 struct dwc3 *dwc = dep->dwc;
1540
1541 unsigned long flags;
1542
1543 int ret;
1544
1545 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7a608552014-09-24 14:19:52 -05001546 ret = __dwc3_gadget_ep_set_halt(dep, value, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001547 spin_unlock_irqrestore(&dwc->lock, flags);
1548
1549 return ret;
1550}
1551
1552static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1553{
1554 struct dwc3_ep *dep = to_dwc3_ep(ep);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001555 struct dwc3 *dwc = dep->dwc;
1556 unsigned long flags;
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001557 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001558
Paul Zimmerman249a4562012-02-24 17:32:16 -08001559 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001560 dep->flags |= DWC3_EP_WEDGE;
1561
Pratyush Anand08f0d962012-06-25 22:40:43 +05301562 if (dep->number == 0 || dep->number == 1)
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001563 ret = __dwc3_gadget_ep0_set_halt(ep, 1);
Pratyush Anand08f0d962012-06-25 22:40:43 +05301564 else
Felipe Balbi7a608552014-09-24 14:19:52 -05001565 ret = __dwc3_gadget_ep_set_halt(dep, 1, false);
Felipe Balbi95aa4e82014-09-24 10:50:14 -05001566 spin_unlock_irqrestore(&dwc->lock, flags);
1567
1568 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001569}
1570
1571/* -------------------------------------------------------------------------- */
1572
1573static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1574 .bLength = USB_DT_ENDPOINT_SIZE,
1575 .bDescriptorType = USB_DT_ENDPOINT,
1576 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1577};
1578
1579static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1580 .enable = dwc3_gadget_ep0_enable,
1581 .disable = dwc3_gadget_ep0_disable,
1582 .alloc_request = dwc3_gadget_ep_alloc_request,
1583 .free_request = dwc3_gadget_ep_free_request,
1584 .queue = dwc3_gadget_ep0_queue,
1585 .dequeue = dwc3_gadget_ep_dequeue,
Pratyush Anand08f0d962012-06-25 22:40:43 +05301586 .set_halt = dwc3_gadget_ep0_set_halt,
Felipe Balbi72246da2011-08-19 18:10:58 +03001587 .set_wedge = dwc3_gadget_ep_set_wedge,
1588};
1589
1590static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1591 .enable = dwc3_gadget_ep_enable,
1592 .disable = dwc3_gadget_ep_disable,
1593 .alloc_request = dwc3_gadget_ep_alloc_request,
1594 .free_request = dwc3_gadget_ep_free_request,
1595 .queue = dwc3_gadget_ep_queue,
1596 .dequeue = dwc3_gadget_ep_dequeue,
1597 .set_halt = dwc3_gadget_ep_set_halt,
1598 .set_wedge = dwc3_gadget_ep_set_wedge,
1599};
1600
1601/* -------------------------------------------------------------------------- */
1602
1603static int dwc3_gadget_get_frame(struct usb_gadget *g)
1604{
1605 struct dwc3 *dwc = gadget_to_dwc(g);
Felipe Balbi72246da2011-08-19 18:10:58 +03001606
Felipe Balbi6cb2e4e2016-10-21 13:07:09 +03001607 return __dwc3_gadget_get_frame(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001608}
1609
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001610static int __dwc3_gadget_wakeup(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03001611{
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01001612 int retries;
Felipe Balbi72246da2011-08-19 18:10:58 +03001613
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001614 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001615 u32 reg;
1616
Felipe Balbi72246da2011-08-19 18:10:58 +03001617 u8 link_state;
1618 u8 speed;
1619
Felipe Balbi72246da2011-08-19 18:10:58 +03001620 /*
1621 * According to the Databook Remote wakeup request should
1622 * be issued only when the device is in early suspend state.
1623 *
1624 * We can check that via USB Link State bits in DSTS register.
1625 */
1626 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1627
1628 speed = reg & DWC3_DSTS_CONNECTSPD;
John Younee5cd412016-02-05 17:08:45 -08001629 if ((speed == DWC3_DSTS_SUPERSPEED) ||
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02001630 (speed == DWC3_DSTS_SUPERSPEED_PLUS))
Felipe Balbi6b742892016-05-13 10:19:42 +03001631 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001632
1633 link_state = DWC3_DSTS_USBLNKST(reg);
1634
1635 switch (link_state) {
1636 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
1637 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
1638 break;
1639 default:
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001640 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +03001641 }
1642
Felipe Balbi8598bde2012-01-02 18:55:57 +02001643 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
1644 if (ret < 0) {
1645 dev_err(dwc->dev, "failed to put link in Recovery\n");
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001646 return ret;
Felipe Balbi8598bde2012-01-02 18:55:57 +02001647 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001648
Paul Zimmerman802fde92012-04-27 13:10:52 +03001649 /* Recent versions do this automatically */
1650 if (dwc->revision < DWC3_REVISION_194A) {
1651 /* write zeroes to Link Change Request */
Felipe Balbifcc023c2012-05-24 10:27:56 +03001652 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Paul Zimmerman802fde92012-04-27 13:10:52 +03001653 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
1654 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1655 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001656
Paul Zimmerman1d046792012-02-15 18:56:56 -08001657 /* poll until Link State changes to ON */
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01001658 retries = 20000;
Felipe Balbi72246da2011-08-19 18:10:58 +03001659
Nicolas Saenz Julienned6011f62016-08-16 10:22:38 +01001660 while (retries--) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001661 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1662
1663 /* in HS, means ON */
1664 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
1665 break;
1666 }
1667
1668 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
1669 dev_err(dwc->dev, "failed to send remote wakeup\n");
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001670 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +03001671 }
1672
Felipe Balbi218ef7b2016-04-04 11:24:04 +03001673 return 0;
1674}
1675
1676static int dwc3_gadget_wakeup(struct usb_gadget *g)
1677{
1678 struct dwc3 *dwc = gadget_to_dwc(g);
1679 unsigned long flags;
1680 int ret;
1681
1682 spin_lock_irqsave(&dwc->lock, flags);
1683 ret = __dwc3_gadget_wakeup(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001684 spin_unlock_irqrestore(&dwc->lock, flags);
1685
1686 return ret;
1687}
1688
1689static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
1690 int is_selfpowered)
1691{
1692 struct dwc3 *dwc = gadget_to_dwc(g);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001693 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001694
Paul Zimmerman249a4562012-02-24 17:32:16 -08001695 spin_lock_irqsave(&dwc->lock, flags);
Peter Chenbcdea502015-01-28 16:32:40 +08001696 g->is_selfpowered = !!is_selfpowered;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001697 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001698
1699 return 0;
1700}
1701
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001702static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001703{
1704 u32 reg;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001705 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +03001706
Felipe Balbifc8bb912016-05-16 13:14:48 +03001707 if (pm_runtime_suspended(dwc->dev))
1708 return 0;
1709
Felipe Balbi72246da2011-08-19 18:10:58 +03001710 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001711 if (is_on) {
Paul Zimmerman802fde92012-04-27 13:10:52 +03001712 if (dwc->revision <= DWC3_REVISION_187A) {
1713 reg &= ~DWC3_DCTL_TRGTULST_MASK;
1714 reg |= DWC3_DCTL_TRGTULST_RX_DET;
1715 }
1716
1717 if (dwc->revision >= DWC3_REVISION_194A)
1718 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1719 reg |= DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001720
1721 if (dwc->has_hibernation)
1722 reg |= DWC3_DCTL_KEEP_CONNECT;
1723
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02001724 dwc->pullups_connected = true;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001725 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03001726 reg &= ~DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001727
1728 if (dwc->has_hibernation && !suspend)
1729 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1730
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02001731 dwc->pullups_connected = false;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001732 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001733
1734 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1735
1736 do {
1737 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
Felipe Balbib6d4e162016-06-09 16:47:05 +03001738 reg &= DWC3_DSTS_DEVCTRLHLT;
1739 } while (--timeout && !(!is_on ^ !reg));
Felipe Balbif2df6792016-06-09 16:31:34 +03001740
1741 if (!timeout)
1742 return -ETIMEDOUT;
Felipe Balbi72246da2011-08-19 18:10:58 +03001743
Pratyush Anand6f17f742012-07-02 10:21:55 +05301744 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001745}
1746
1747static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
1748{
1749 struct dwc3 *dwc = gadget_to_dwc(g);
1750 unsigned long flags;
Pratyush Anand6f17f742012-07-02 10:21:55 +05301751 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001752
1753 is_on = !!is_on;
1754
Baolin Wangbb014732016-10-14 17:11:33 +08001755 /*
1756 * Per databook, when we want to stop the gadget, if a control transfer
1757 * is still in process, complete it and get the core into setup phase.
1758 */
1759 if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) {
1760 reinit_completion(&dwc->ep0_in_setup);
1761
1762 ret = wait_for_completion_timeout(&dwc->ep0_in_setup,
1763 msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT));
1764 if (ret == 0) {
1765 dev_err(dwc->dev, "timed out waiting for SETUP phase\n");
1766 return -ETIMEDOUT;
1767 }
1768 }
1769
Felipe Balbi72246da2011-08-19 18:10:58 +03001770 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001771 ret = dwc3_gadget_run_stop(dwc, is_on, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001772 spin_unlock_irqrestore(&dwc->lock, flags);
1773
Pratyush Anand6f17f742012-07-02 10:21:55 +05301774 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001775}
1776
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001777static void dwc3_gadget_enable_irq(struct dwc3 *dwc)
1778{
1779 u32 reg;
1780
1781 /* Enable all but Start and End of Frame IRQs */
1782 reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
1783 DWC3_DEVTEN_EVNTOVERFLOWEN |
1784 DWC3_DEVTEN_CMDCMPLTEN |
1785 DWC3_DEVTEN_ERRTICERREN |
1786 DWC3_DEVTEN_WKUPEVTEN |
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001787 DWC3_DEVTEN_CONNECTDONEEN |
1788 DWC3_DEVTEN_USBRSTEN |
1789 DWC3_DEVTEN_DISCONNEVTEN);
1790
Felipe Balbi799e9dc2016-09-23 11:20:40 +03001791 if (dwc->revision < DWC3_REVISION_250A)
1792 reg |= DWC3_DEVTEN_ULSTCNGEN;
1793
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001794 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
1795}
1796
1797static void dwc3_gadget_disable_irq(struct dwc3 *dwc)
1798{
1799 /* mask all interrupts */
1800 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
1801}
1802
1803static irqreturn_t dwc3_interrupt(int irq, void *_dwc);
Felipe Balbib15a7622011-06-30 16:57:15 +03001804static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc);
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001805
Felipe Balbi4e994722016-05-13 14:09:59 +03001806/**
Felipe Balbibfad65e2017-04-19 14:59:27 +03001807 * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG
1808 * @dwc: pointer to our context structure
Felipe Balbi4e994722016-05-13 14:09:59 +03001809 *
1810 * The following looks like complex but it's actually very simple. In order to
1811 * calculate the number of packets we can burst at once on OUT transfers, we're
1812 * gonna use RxFIFO size.
1813 *
1814 * To calculate RxFIFO size we need two numbers:
1815 * MDWIDTH = size, in bits, of the internal memory bus
1816 * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits)
1817 *
1818 * Given these two numbers, the formula is simple:
1819 *
1820 * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16;
1821 *
1822 * 24 bytes is for 3x SETUP packets
1823 * 16 bytes is a clock domain crossing tolerance
1824 *
1825 * Given RxFIFO Size, NUMP = RxFIFOSize / 1024;
1826 */
1827static void dwc3_gadget_setup_nump(struct dwc3 *dwc)
1828{
1829 u32 ram2_depth;
1830 u32 mdwidth;
1831 u32 nump;
1832 u32 reg;
1833
1834 ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7);
1835 mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0);
1836
1837 nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024;
1838 nump = min_t(u32, nump, 16);
1839
1840 /* update NumP */
1841 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1842 reg &= ~DWC3_DCFG_NUMP_MASK;
1843 reg |= nump << DWC3_DCFG_NUMP_SHIFT;
1844 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1845}
1846
Felipe Balbid7be2952016-05-04 15:49:37 +03001847static int __dwc3_gadget_start(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03001848{
Felipe Balbi72246da2011-08-19 18:10:58 +03001849 struct dwc3_ep *dep;
Felipe Balbi72246da2011-08-19 18:10:58 +03001850 int ret = 0;
1851 u32 reg;
1852
John Youncf40b862016-11-14 12:32:43 -08001853 /*
1854 * Use IMOD if enabled via dwc->imod_interval. Otherwise, if
1855 * the core supports IMOD, disable it.
1856 */
1857 if (dwc->imod_interval) {
1858 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
1859 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
1860 } else if (dwc3_has_imod(dwc)) {
1861 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0);
1862 }
1863
Felipe Balbi2a58f9c2016-04-28 10:56:28 +03001864 /*
1865 * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP
1866 * field instead of letting dwc3 itself calculate that automatically.
1867 *
1868 * This way, we maximize the chances that we'll be able to get several
1869 * bursts of data without going through any sort of endpoint throttling.
1870 */
1871 reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG);
Thinh Nguyen01b0e2c2018-03-16 15:34:13 -07001872 if (dwc3_is_usb31(dwc))
1873 reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL;
1874 else
1875 reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL;
1876
Felipe Balbi2a58f9c2016-04-28 10:56:28 +03001877 dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg);
1878
Felipe Balbi4e994722016-05-13 14:09:59 +03001879 dwc3_gadget_setup_nump(dwc);
1880
Felipe Balbi72246da2011-08-19 18:10:58 +03001881 /* Start with SuperSpeed Default */
1882 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1883
1884 dep = dwc->eps[0];
John Youn39ebb052016-11-09 16:36:28 -08001885 ret = __dwc3_gadget_ep_enable(dep, false, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001886 if (ret) {
1887 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbid7be2952016-05-04 15:49:37 +03001888 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001889 }
1890
1891 dep = dwc->eps[1];
John Youn39ebb052016-11-09 16:36:28 -08001892 ret = __dwc3_gadget_ep_enable(dep, false, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001893 if (ret) {
1894 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbid7be2952016-05-04 15:49:37 +03001895 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001896 }
1897
1898 /* begin to receive SETUP packets */
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001899 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +03001900 dwc3_ep0_out_start(dwc);
1901
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001902 dwc3_gadget_enable_irq(dwc);
1903
Felipe Balbid7be2952016-05-04 15:49:37 +03001904 return 0;
1905
1906err1:
1907 __dwc3_gadget_ep_disable(dwc->eps[0]);
1908
1909err0:
1910 return ret;
1911}
1912
1913static int dwc3_gadget_start(struct usb_gadget *g,
1914 struct usb_gadget_driver *driver)
1915{
1916 struct dwc3 *dwc = gadget_to_dwc(g);
1917 unsigned long flags;
1918 int ret = 0;
1919 int irq;
1920
Roger Quadros9522def2016-06-10 14:48:38 +03001921 irq = dwc->irq_gadget;
Felipe Balbid7be2952016-05-04 15:49:37 +03001922 ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt,
1923 IRQF_SHARED, "dwc3", dwc->ev_buf);
1924 if (ret) {
1925 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
1926 irq, ret);
1927 goto err0;
1928 }
1929
1930 spin_lock_irqsave(&dwc->lock, flags);
1931 if (dwc->gadget_driver) {
1932 dev_err(dwc->dev, "%s is already bound to %s\n",
1933 dwc->gadget.name,
1934 dwc->gadget_driver->driver.name);
1935 ret = -EBUSY;
1936 goto err1;
1937 }
1938
1939 dwc->gadget_driver = driver;
1940
Felipe Balbifc8bb912016-05-16 13:14:48 +03001941 if (pm_runtime_active(dwc->dev))
1942 __dwc3_gadget_start(dwc);
1943
Felipe Balbi72246da2011-08-19 18:10:58 +03001944 spin_unlock_irqrestore(&dwc->lock, flags);
1945
1946 return 0;
1947
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001948err1:
Felipe Balbi72246da2011-08-19 18:10:58 +03001949 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbid7be2952016-05-04 15:49:37 +03001950 free_irq(irq, dwc);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001951
1952err0:
Felipe Balbi72246da2011-08-19 18:10:58 +03001953 return ret;
1954}
1955
Felipe Balbid7be2952016-05-04 15:49:37 +03001956static void __dwc3_gadget_stop(struct dwc3 *dwc)
1957{
1958 dwc3_gadget_disable_irq(dwc);
1959 __dwc3_gadget_ep_disable(dwc->eps[0]);
1960 __dwc3_gadget_ep_disable(dwc->eps[1]);
1961}
1962
Felipe Balbi22835b82014-10-17 12:05:12 -05001963static int dwc3_gadget_stop(struct usb_gadget *g)
Felipe Balbi72246da2011-08-19 18:10:58 +03001964{
1965 struct dwc3 *dwc = gadget_to_dwc(g);
1966 unsigned long flags;
Baolin Wang76a638f2016-10-31 19:38:36 +08001967 int epnum;
Roger Quadros498f0472018-03-09 14:47:04 +02001968 u32 tmo_eps = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001969
1970 spin_lock_irqsave(&dwc->lock, flags);
Baolin Wang76a638f2016-10-31 19:38:36 +08001971
1972 if (pm_runtime_suspended(dwc->dev))
1973 goto out;
1974
Felipe Balbid7be2952016-05-04 15:49:37 +03001975 __dwc3_gadget_stop(dwc);
Baolin Wang76a638f2016-10-31 19:38:36 +08001976
1977 for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1978 struct dwc3_ep *dep = dwc->eps[epnum];
Roger Quadros498f0472018-03-09 14:47:04 +02001979 int ret;
Baolin Wang76a638f2016-10-31 19:38:36 +08001980
1981 if (!dep)
1982 continue;
1983
1984 if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING))
1985 continue;
1986
Roger Quadros498f0472018-03-09 14:47:04 +02001987 ret = wait_event_interruptible_lock_irq_timeout(dep->wait_end_transfer,
1988 !(dep->flags & DWC3_EP_END_TRANSFER_PENDING),
1989 dwc->lock, msecs_to_jiffies(5));
1990
1991 if (ret <= 0) {
1992 /* Timed out or interrupted! There's nothing much
1993 * we can do so we just log here and print which
1994 * endpoints timed out at the end.
1995 */
1996 tmo_eps |= 1 << epnum;
1997 dep->flags &= DWC3_EP_END_TRANSFER_PENDING;
1998 }
1999 }
2000
2001 if (tmo_eps) {
2002 dev_err(dwc->dev,
2003 "end transfer timed out on endpoints 0x%x [bitmap]\n",
2004 tmo_eps);
Baolin Wang76a638f2016-10-31 19:38:36 +08002005 }
2006
2007out:
Felipe Balbi72246da2011-08-19 18:10:58 +03002008 dwc->gadget_driver = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +03002009 spin_unlock_irqrestore(&dwc->lock, flags);
2010
Felipe Balbi3f308d12016-05-16 14:17:06 +03002011 free_irq(dwc->irq_gadget, dwc->ev_buf);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03002012
Felipe Balbi72246da2011-08-19 18:10:58 +03002013 return 0;
2014}
Paul Zimmerman802fde92012-04-27 13:10:52 +03002015
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002016static void dwc3_gadget_set_speed(struct usb_gadget *g,
2017 enum usb_device_speed speed)
2018{
2019 struct dwc3 *dwc = gadget_to_dwc(g);
2020 unsigned long flags;
2021 u32 reg;
2022
2023 spin_lock_irqsave(&dwc->lock, flags);
2024 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2025 reg &= ~(DWC3_DCFG_SPEED_MASK);
2026
2027 /*
2028 * WORKAROUND: DWC3 revision < 2.20a have an issue
2029 * which would cause metastability state on Run/Stop
2030 * bit if we try to force the IP to USB2-only mode.
2031 *
2032 * Because of that, we cannot configure the IP to any
2033 * speed other than the SuperSpeed
2034 *
2035 * Refers to:
2036 *
2037 * STAR#9000525659: Clock Domain Crossing on DCTL in
2038 * USB 2.0 Mode
2039 */
Roger Quadros42bf02e2017-10-31 15:11:55 +02002040 if (dwc->revision < DWC3_REVISION_220A &&
2041 !dwc->dis_metastability_quirk) {
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002042 reg |= DWC3_DCFG_SUPERSPEED;
2043 } else {
2044 switch (speed) {
2045 case USB_SPEED_LOW:
2046 reg |= DWC3_DCFG_LOWSPEED;
2047 break;
2048 case USB_SPEED_FULL:
2049 reg |= DWC3_DCFG_FULLSPEED;
2050 break;
2051 case USB_SPEED_HIGH:
2052 reg |= DWC3_DCFG_HIGHSPEED;
2053 break;
2054 case USB_SPEED_SUPER:
2055 reg |= DWC3_DCFG_SUPERSPEED;
2056 break;
2057 case USB_SPEED_SUPER_PLUS:
Thinh Nguyen2f3090c2018-03-16 15:35:57 -07002058 if (dwc3_is_usb31(dwc))
2059 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
2060 else
2061 reg |= DWC3_DCFG_SUPERSPEED;
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002062 break;
2063 default:
2064 dev_err(dwc->dev, "invalid speed (%d)\n", speed);
2065
2066 if (dwc->revision & DWC3_REVISION_IS_DWC31)
2067 reg |= DWC3_DCFG_SUPERSPEED_PLUS;
2068 else
2069 reg |= DWC3_DCFG_SUPERSPEED;
2070 }
2071 }
2072 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2073
2074 spin_unlock_irqrestore(&dwc->lock, flags);
2075}
2076
Felipe Balbi72246da2011-08-19 18:10:58 +03002077static const struct usb_gadget_ops dwc3_gadget_ops = {
2078 .get_frame = dwc3_gadget_get_frame,
2079 .wakeup = dwc3_gadget_wakeup,
2080 .set_selfpowered = dwc3_gadget_set_selfpowered,
2081 .pullup = dwc3_gadget_pullup,
2082 .udc_start = dwc3_gadget_start,
2083 .udc_stop = dwc3_gadget_stop,
Felipe Balbi7d8d0632017-06-06 16:05:23 +03002084 .udc_set_speed = dwc3_gadget_set_speed,
Felipe Balbi72246da2011-08-19 18:10:58 +03002085};
2086
2087/* -------------------------------------------------------------------------- */
2088
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002089static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total)
Felipe Balbi72246da2011-08-19 18:10:58 +03002090{
2091 struct dwc3_ep *dep;
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002092 u8 epnum;
Felipe Balbi72246da2011-08-19 18:10:58 +03002093
Bryan O'Donoghuef3bcfc72017-01-31 20:58:11 +00002094 INIT_LIST_HEAD(&dwc->gadget.ep_list);
2095
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002096 for (epnum = 0; epnum < total; epnum++) {
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002097 bool direction = epnum & 1;
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002098 u8 num = epnum >> 1;
Felipe Balbi72246da2011-08-19 18:10:58 +03002099
Felipe Balbi72246da2011-08-19 18:10:58 +03002100 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +09002101 if (!dep)
Felipe Balbi72246da2011-08-19 18:10:58 +03002102 return -ENOMEM;
Felipe Balbi72246da2011-08-19 18:10:58 +03002103
2104 dep->dwc = dwc;
2105 dep->number = epnum;
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002106 dep->direction = direction;
Felipe Balbi2eb88012016-04-12 16:53:39 +03002107 dep->regs = dwc->regs + DWC3_DEP_BASE(epnum);
Felipe Balbi72246da2011-08-19 18:10:58 +03002108 dwc->eps[epnum] = dep;
2109
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002110 snprintf(dep->name, sizeof(dep->name), "ep%u%s", num,
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002111 direction ? "in" : "out");
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002112
Felipe Balbi72246da2011-08-19 18:10:58 +03002113 dep->endpoint.name = dep->name;
John Youn39ebb052016-11-09 16:36:28 -08002114
2115 if (!(dep->number > 1)) {
2116 dep->endpoint.desc = &dwc3_gadget_ep0_desc;
2117 dep->endpoint.comp_desc = NULL;
2118 }
2119
Felipe Balbi74674cb2016-04-13 16:44:39 +03002120 spin_lock_init(&dep->lock);
Felipe Balbi72246da2011-08-19 18:10:58 +03002121
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002122 if (num == 0) {
Robert Baldygae117e742013-12-13 12:23:38 +01002123 usb_ep_set_maxpacket_limit(&dep->endpoint, 512);
Pratyush Anand6048e4c2013-01-18 16:53:56 +05302124 dep->endpoint.maxburst = 1;
Felipe Balbi72246da2011-08-19 18:10:58 +03002125 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002126 if (!direction)
Felipe Balbi72246da2011-08-19 18:10:58 +03002127 dwc->gadget.ep0 = &dep->endpoint;
Felipe Balbi28781782017-01-23 18:01:59 +02002128 } else if (direction) {
2129 int mdwidth;
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002130 int kbytes;
Felipe Balbi28781782017-01-23 18:01:59 +02002131 int size;
2132 int ret;
Felipe Balbi28781782017-01-23 18:01:59 +02002133
2134 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
2135 /* MDWIDTH is represented in bits, we need it in bytes */
2136 mdwidth /= 8;
2137
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002138 size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(num));
Thinh Nguyend548a612018-03-16 15:34:00 -07002139 if (dwc3_is_usb31(dwc))
2140 size = DWC31_GTXFIFOSIZ_TXFDEF(size);
2141 else
2142 size = DWC3_GTXFIFOSIZ_TXFDEF(size);
Felipe Balbi28781782017-01-23 18:01:59 +02002143
2144 /* FIFO Depth is in MDWDITH bytes. Multiply */
2145 size *= mdwidth;
2146
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002147 kbytes = size / 1024;
2148 if (kbytes == 0)
2149 kbytes = 1;
Felipe Balbi28781782017-01-23 18:01:59 +02002150
2151 /*
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002152 * FIFO sizes account an extra MDWIDTH * (kbytes + 1) bytes for
Felipe Balbi28781782017-01-23 18:01:59 +02002153 * internal overhead. We don't really know how these are used,
2154 * but documentation say it exists.
2155 */
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002156 size -= mdwidth * (kbytes + 1);
2157 size /= kbytes;
Felipe Balbi28781782017-01-23 18:01:59 +02002158
2159 usb_ep_set_maxpacket_limit(&dep->endpoint, size);
2160
2161 dep->endpoint.max_streams = 15;
2162 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2163 list_add_tail(&dep->endpoint.ep_list,
2164 &dwc->gadget.ep_list);
2165
2166 ret = dwc3_alloc_trb_pool(dep);
2167 if (ret)
2168 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002169 } else {
2170 int ret;
2171
Robert Baldygae117e742013-12-13 12:23:38 +01002172 usb_ep_set_maxpacket_limit(&dep->endpoint, 1024);
Sebastian Andrzej Siewior12d36c12011-11-03 20:27:50 +01002173 dep->endpoint.max_streams = 15;
Felipe Balbi72246da2011-08-19 18:10:58 +03002174 dep->endpoint.ops = &dwc3_gadget_ep_ops;
2175 list_add_tail(&dep->endpoint.ep_list,
2176 &dwc->gadget.ep_list);
2177
2178 ret = dwc3_alloc_trb_pool(dep);
Felipe Balbi25b8ff62011-11-04 12:32:47 +02002179 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03002180 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002181 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02002182
Andy Shevchenko46b780d2017-06-12 15:11:25 +03002183 if (num == 0) {
Robert Baldygaa474d3b2015-07-31 16:00:19 +02002184 dep->endpoint.caps.type_control = true;
2185 } else {
2186 dep->endpoint.caps.type_iso = true;
2187 dep->endpoint.caps.type_bulk = true;
2188 dep->endpoint.caps.type_int = true;
2189 }
2190
Bryan O'Donoghue47d39462017-01-31 20:58:10 +00002191 dep->endpoint.caps.dir_in = direction;
Robert Baldygaa474d3b2015-07-31 16:00:19 +02002192 dep->endpoint.caps.dir_out = !direction;
2193
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002194 INIT_LIST_HEAD(&dep->pending_list);
2195 INIT_LIST_HEAD(&dep->started_list);
Felipe Balbi72246da2011-08-19 18:10:58 +03002196 }
2197
2198 return 0;
2199}
2200
2201static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
2202{
2203 struct dwc3_ep *dep;
2204 u8 epnum;
2205
2206 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2207 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002208 if (!dep)
2209 continue;
George Cherian5bf8fae2013-05-27 14:35:49 +05302210 /*
2211 * Physical endpoints 0 and 1 are special; they form the
2212 * bi-directional USB endpoint 0.
2213 *
2214 * For those two physical endpoints, we don't allocate a TRB
2215 * pool nor do we add them the endpoints list. Due to that, we
2216 * shouldn't do these two operations otherwise we would end up
2217 * with all sorts of bugs when removing dwc3.ko.
2218 */
2219 if (epnum != 0 && epnum != 1) {
2220 dwc3_free_trb_pool(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03002221 list_del(&dep->endpoint.ep_list);
George Cherian5bf8fae2013-05-27 14:35:49 +05302222 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002223
2224 kfree(dep);
2225 }
2226}
2227
Felipe Balbi72246da2011-08-19 18:10:58 +03002228/* -------------------------------------------------------------------------- */
Felipe Balbie5caff62013-02-26 15:11:05 +02002229
Felipe Balbi8f608e82018-03-27 10:53:29 +03002230static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep,
2231 struct dwc3_request *req, struct dwc3_trb *trb,
2232 const struct dwc3_event_depevt *event, int status, int chain)
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302233{
2234 unsigned int count;
2235 unsigned int s_pkt = 0;
2236 unsigned int trb_status;
2237
Felipe Balbidc55c672016-08-12 13:20:32 +03002238 dwc3_ep_inc_deq(dep);
Felipe Balbia9c3ca52016-10-05 14:24:37 +03002239
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05002240 trace_dwc3_complete_trb(dep, trb);
2241
Felipe Balbie5b36ae2016-08-10 11:13:26 +03002242 /*
2243 * If we're in the middle of series of chained TRBs and we
2244 * receive a short transfer along the way, DWC3 will skip
2245 * through all TRBs including the last TRB in the chain (the
2246 * where CHN bit is zero. DWC3 will also avoid clearing HWO
2247 * bit and SW has to do it manually.
2248 *
2249 * We're going to do that here to avoid problems of HW trying
2250 * to use bogus TRBs for transfers.
2251 */
2252 if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO))
2253 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2254
Felipe Balbic6267a52017-01-05 14:58:46 +02002255 /*
2256 * If we're dealing with unaligned size OUT transfer, we will be left
2257 * with one TRB pending in the ring. We need to manually clear HWO bit
2258 * from that TRB.
2259 */
Felipe Balbid6e5a542017-04-07 16:34:38 +03002260 if ((req->zero || req->unaligned) && (trb->ctrl & DWC3_TRB_CTRL_HWO)) {
Felipe Balbic6267a52017-01-05 14:58:46 +02002261 trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
2262 return 1;
2263 }
2264
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302265 count = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbie62c5bc52016-10-25 13:47:21 +03002266 req->remaining += count;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302267
Felipe Balbi35b27192017-03-08 13:56:37 +02002268 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
2269 return 1;
2270
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302271 if (dep->direction) {
2272 if (count) {
2273 trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size);
2274 if (trb_status == DWC3_TRBSTS_MISSED_ISOC) {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302275 /*
2276 * If missed isoc occurred and there is
2277 * no request queued then issue END
2278 * TRANSFER, so that core generates
2279 * next xfernotready and we will issue
2280 * a fresh START TRANSFER.
2281 * If there are still queued request
2282 * then wait, do not issue either END
2283 * or UPDATE TRANSFER, just attach next
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002284 * request in pending_list during
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302285 * giveback.If any future queued request
2286 * is successfully transferred then we
2287 * will issue UPDATE TRANSFER for all
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002288 * request in the pending_list.
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302289 */
2290 dep->flags |= DWC3_EP_MISSED_ISOC;
2291 } else {
Felipe Balbi8f608e82018-03-27 10:53:29 +03002292 dev_err(dep->dwc->dev, "incomplete IN transfer %s\n",
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302293 dep->name);
2294 status = -ECONNRESET;
2295 }
2296 } else {
2297 dep->flags &= ~DWC3_EP_MISSED_ISOC;
2298 }
2299 } else {
2300 if (count && (event->status & DEPEVT_STATUS_SHORT))
2301 s_pkt = 1;
2302 }
2303
Felipe Balbi7c705df2016-08-10 12:35:30 +03002304 if (s_pkt && !chain)
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302305 return 1;
Felipe Balbif99f53f2016-08-12 13:19:20 +03002306
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302307 if ((event->status & DEPEVT_STATUS_IOC) &&
2308 (trb->ctrl & DWC3_TRB_CTRL_IOC))
2309 return 1;
Felipe Balbif99f53f2016-08-12 13:19:20 +03002310
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05302311 return 0;
2312}
2313
Felipe Balbi8f608e82018-03-27 10:53:29 +03002314static int dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep,
2315 const struct dwc3_event_depevt *event, int status)
Felipe Balbi72246da2011-08-19 18:10:58 +03002316{
Felipe Balbi31162af2016-08-11 14:38:37 +03002317 struct dwc3_request *req, *n;
Felipe Balbif6bafc62012-02-06 11:04:53 +02002318 struct dwc3_trb *trb;
Arnd Bergmannd6e10bf2016-09-09 12:01:51 +02002319 bool ioc = false;
Felipe Balbie62c5bc52016-10-25 13:47:21 +03002320 int ret = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03002321
Felipe Balbi31162af2016-08-11 14:38:37 +03002322 list_for_each_entry_safe(req, n, &dep->started_list, list) {
Felipe Balbi1f512112016-08-12 13:17:27 +03002323 unsigned length;
Felipe Balbie5b36ae2016-08-10 11:13:26 +03002324 int chain;
2325
Felipe Balbi1f512112016-08-12 13:17:27 +03002326 length = req->request.length;
2327 chain = req->num_pending_sgs > 0;
Felipe Balbi31162af2016-08-11 14:38:37 +03002328 if (chain) {
Felipe Balbi1f512112016-08-12 13:17:27 +03002329 struct scatterlist *sg = req->sg;
Felipe Balbi31162af2016-08-11 14:38:37 +03002330 struct scatterlist *s;
Felipe Balbi1f512112016-08-12 13:17:27 +03002331 unsigned int pending = req->num_pending_sgs;
Felipe Balbi31162af2016-08-11 14:38:37 +03002332 unsigned int i;
Felipe Balbiac7bdcc2015-11-16 16:13:57 -06002333
Felipe Balbi1f512112016-08-12 13:17:27 +03002334 for_each_sg(sg, s, pending, i) {
Felipe Balbi31162af2016-08-11 14:38:37 +03002335 trb = &dep->trb_pool[dep->trb_dequeue];
Felipe Balbic7de5732016-07-29 03:17:58 +03002336
Felipe Balbi7282c4e2016-10-25 13:50:46 +03002337 if (trb->ctrl & DWC3_TRB_CTRL_HWO)
2338 break;
2339
Felipe Balbi1f512112016-08-12 13:17:27 +03002340 req->sg = sg_next(s);
2341 req->num_pending_sgs--;
2342
Felipe Balbi8f608e82018-03-27 10:53:29 +03002343 ret = dwc3_gadget_ep_reclaim_completed_trb(dep,
2344 req, trb, event, status,
Felipe Balbi66f5dd52018-03-26 15:48:22 +03002345 chain);
Felipe Balbi1f512112016-08-12 13:17:27 +03002346 if (ret)
2347 break;
Felipe Balbi31162af2016-08-11 14:38:37 +03002348 }
2349 } else {
Felipe Balbi737f1ae2016-08-11 12:24:27 +03002350 trb = &dep->trb_pool[dep->trb_dequeue];
Felipe Balbi8f608e82018-03-27 10:53:29 +03002351 ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req,
2352 trb, event, status, chain);
Felipe Balbi31162af2016-08-11 14:38:37 +03002353 }
Ville Syrjäläd115d702015-08-31 19:48:28 +03002354
Felipe Balbid6e5a542017-04-07 16:34:38 +03002355 if (req->unaligned || req->zero) {
Felipe Balbic6267a52017-01-05 14:58:46 +02002356 trb = &dep->trb_pool[dep->trb_dequeue];
Felipe Balbi8f608e82018-03-27 10:53:29 +03002357 ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req,
2358 trb, event, status, false);
Felipe Balbic6267a52017-01-05 14:58:46 +02002359 req->unaligned = false;
Felipe Balbid6e5a542017-04-07 16:34:38 +03002360 req->zero = false;
Felipe Balbic6267a52017-01-05 14:58:46 +02002361 }
2362
Felipe Balbie62c5bc52016-10-25 13:47:21 +03002363 req->request.actual = length - req->remaining;
Felipe Balbi1f512112016-08-12 13:17:27 +03002364
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05302365 if (req->request.actual < length || req->num_pending_sgs) {
2366 /*
2367 * There could be a scenario where the whole req can't
2368 * be mapped into available TRB's. In that case, we need
2369 * to kick transfer again if (req->num_pending_sgs > 0)
2370 */
2371 if (req->num_pending_sgs) {
Felipe Balbi8f608e82018-03-27 10:53:29 +03002372 dev_WARN_ONCE(dep->dwc->dev,
Anurag Kumar Vulishac96e6722018-03-27 16:35:21 +05302373 (req->request.actual == length),
2374 "There are some pending sg's that needs to be queued again\n");
2375 return __dwc3_gadget_kick_transfer(dep);
2376 }
2377 }
Felipe Balbi1f512112016-08-12 13:17:27 +03002378
Ville Syrjäläd115d702015-08-31 19:48:28 +03002379 dwc3_gadget_giveback(dep, req, status);
2380
Arnd Bergmannd6e10bf2016-09-09 12:01:51 +02002381 if (ret) {
2382 if ((event->status & DEPEVT_STATUS_IOC) &&
2383 (trb->ctrl & DWC3_TRB_CTRL_IOC))
2384 ioc = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03002385 break;
Arnd Bergmannd6e10bf2016-09-09 12:01:51 +02002386 }
Felipe Balbi31162af2016-08-11 14:38:37 +03002387 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002388
Felipe Balbi4cb42212016-05-18 12:37:21 +03002389 /*
2390 * Our endpoint might get disabled by another thread during
2391 * dwc3_gadget_giveback(). If that happens, we're just gonna return 1
2392 * early on so DWC3_EP_BUSY flag gets cleared
2393 */
2394 if (!dep->endpoint.desc)
2395 return 1;
2396
Pratyush Anandcdc359d2013-01-14 15:59:34 +05302397 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002398 list_empty(&dep->started_list)) {
2399 if (list_empty(&dep->pending_list)) {
Pratyush Anandcdc359d2013-01-14 15:59:34 +05302400 /*
2401 * If there is no entry in request list then do
2402 * not issue END TRANSFER now. Just set PENDING
2403 * flag, so that END TRANSFER is issued when an
2404 * entry is added into request list.
2405 */
2406 dep->flags = DWC3_EP_PENDING_REQUEST;
2407 } else {
Felipe Balbi8f608e82018-03-27 10:53:29 +03002408 dwc3_stop_active_transfer(dep, true);
Pratyush Anandcdc359d2013-01-14 15:59:34 +05302409 dep->flags = DWC3_EP_ENABLED;
2410 }
Pratyush Anand7efea862013-01-14 15:59:32 +05302411 return 1;
2412 }
2413
Arnd Bergmannd6e10bf2016-09-09 12:01:51 +02002414 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && ioc)
2415 return 0;
2416
Felipe Balbi72246da2011-08-19 18:10:58 +03002417 return 1;
2418}
2419
Felipe Balbi8f608e82018-03-27 10:53:29 +03002420static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep,
2421 const struct dwc3_event_depevt *event)
Felipe Balbi72246da2011-08-19 18:10:58 +03002422{
Felipe Balbi8f608e82018-03-27 10:53:29 +03002423 struct dwc3 *dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +03002424 unsigned status = 0;
2425 int clean_busy;
2426
2427 if (event->status & DEPEVT_STATUS_BUSERR)
2428 status = -ECONNRESET;
2429
Felipe Balbi8f608e82018-03-27 10:53:29 +03002430 clean_busy = dwc3_gadget_ep_cleanup_completed_requests(dep, event,
Felipe Balbi66f5dd52018-03-26 15:48:22 +03002431 status);
Felipe Balbifbea9352018-03-26 13:29:17 +03002432 if (clean_busy && (!dep->endpoint.desc ||
Felipe Balbie18b7972015-05-29 10:06:38 -05002433 usb_endpoint_xfer_isoc(dep->endpoint.desc)))
Felipe Balbi72246da2011-08-19 18:10:58 +03002434 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbifae2b902011-10-14 13:00:30 +03002435
2436 /*
2437 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
2438 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
2439 */
2440 if (dwc->revision < DWC3_REVISION_183A) {
2441 u32 reg;
2442 int i;
2443
2444 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
Moiz Sonasath348e0262012-08-01 14:08:30 -05002445 dep = dwc->eps[i];
Felipe Balbifae2b902011-10-14 13:00:30 +03002446
2447 if (!(dep->flags & DWC3_EP_ENABLED))
2448 continue;
2449
Felipe Balbiaa3342c2016-03-14 11:01:31 +02002450 if (!list_empty(&dep->started_list))
Felipe Balbifae2b902011-10-14 13:00:30 +03002451 return;
2452 }
2453
2454 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2455 reg |= dwc->u1u2;
2456 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2457
2458 dwc->u1u2 = 0;
2459 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002460}
2461
Felipe Balbi8f608e82018-03-27 10:53:29 +03002462static void dwc3_gadget_endpoint_transfer_not_ready(struct dwc3_ep *dep,
2463 const struct dwc3_event_depevt *event)
Felipe Balbi32033862018-03-27 10:47:48 +03002464{
2465 u32 cur_uf, mask;
2466
2467 mask = ~(dep->interval - 1);
2468 cur_uf = event->parameters & mask;
Felipe Balbi5828cad2018-03-27 11:14:31 +03002469 dep->frame_number = cur_uf;
Felipe Balbi32033862018-03-27 10:47:48 +03002470
Felipe Balbi5828cad2018-03-27 11:14:31 +03002471 __dwc3_gadget_start_isoc(dep);
Felipe Balbi32033862018-03-27 10:47:48 +03002472}
2473
Felipe Balbi72246da2011-08-19 18:10:58 +03002474static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
2475 const struct dwc3_event_depevt *event)
2476{
2477 struct dwc3_ep *dep;
2478 u8 epnum = event->endpoint_number;
Baolin Wang76a638f2016-10-31 19:38:36 +08002479 u8 cmd;
Felipe Balbi72246da2011-08-19 18:10:58 +03002480
2481 dep = dwc->eps[epnum];
2482
Janusz Dziedzicd7fd41c2016-12-08 10:57:34 +01002483 if (!(dep->flags & DWC3_EP_ENABLED)) {
2484 if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING))
2485 return;
2486
2487 /* Handle only EPCMDCMPLT when EP disabled */
2488 if (event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT)
2489 return;
2490 }
Felipe Balbi3336abb2012-06-06 09:19:35 +03002491
Felipe Balbi72246da2011-08-19 18:10:58 +03002492 if (epnum == 0 || epnum == 1) {
2493 dwc3_ep0_interrupt(dwc, event);
2494 return;
2495 }
2496
2497 switch (event->endpoint_event) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002498 case DWC3_DEPEVT_XFERINPROGRESS:
Felipe Balbi8f608e82018-03-27 10:53:29 +03002499 dwc3_gadget_endpoint_transfer_in_progress(dep, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03002500 break;
2501 case DWC3_DEPEVT_XFERNOTREADY:
Felipe Balbi8f608e82018-03-27 10:53:29 +03002502 dwc3_gadget_endpoint_transfer_not_ready(dep, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03002503 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002504 case DWC3_DEPEVT_EPCMDCMPLT:
Baolin Wang76a638f2016-10-31 19:38:36 +08002505 cmd = DEPEVT_PARAMETER_CMD(event->parameters);
2506
2507 if (cmd == DWC3_DEPCMD_ENDTRANSFER) {
2508 dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING;
2509 wake_up(&dep->wait_end_transfer);
2510 }
2511 break;
Felipe Balbia24a6ab2018-03-27 10:41:39 +03002512 case DWC3_DEPEVT_STREAMEVT:
Felipe Balbi742a4ff2018-03-26 13:26:56 +03002513 case DWC3_DEPEVT_XFERCOMPLETE:
Baolin Wang76a638f2016-10-31 19:38:36 +08002514 case DWC3_DEPEVT_RXTXFIFOEVT:
Felipe Balbi72246da2011-08-19 18:10:58 +03002515 break;
2516 }
2517}
2518
2519static void dwc3_disconnect_gadget(struct dwc3 *dwc)
2520{
2521 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
2522 spin_unlock(&dwc->lock);
2523 dwc->gadget_driver->disconnect(&dwc->gadget);
2524 spin_lock(&dwc->lock);
2525 }
2526}
2527
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002528static void dwc3_suspend_gadget(struct dwc3 *dwc)
2529{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03002530 if (dwc->gadget_driver && dwc->gadget_driver->suspend) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002531 spin_unlock(&dwc->lock);
2532 dwc->gadget_driver->suspend(&dwc->gadget);
2533 spin_lock(&dwc->lock);
2534 }
2535}
2536
2537static void dwc3_resume_gadget(struct dwc3 *dwc)
2538{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03002539 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002540 spin_unlock(&dwc->lock);
2541 dwc->gadget_driver->resume(&dwc->gadget);
Felipe Balbi5c7b3b02015-01-29 10:29:18 -06002542 spin_lock(&dwc->lock);
Felipe Balbi8e744752014-11-06 14:27:53 +08002543 }
2544}
2545
2546static void dwc3_reset_gadget(struct dwc3 *dwc)
2547{
2548 if (!dwc->gadget_driver)
2549 return;
2550
2551 if (dwc->gadget.speed != USB_SPEED_UNKNOWN) {
2552 spin_unlock(&dwc->lock);
2553 usb_gadget_udc_reset(&dwc->gadget, dwc->gadget_driver);
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002554 spin_lock(&dwc->lock);
2555 }
2556}
2557
Felipe Balbi8f608e82018-03-27 10:53:29 +03002558static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force)
Felipe Balbi72246da2011-08-19 18:10:58 +03002559{
Felipe Balbi8f608e82018-03-27 10:53:29 +03002560 struct dwc3 *dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +03002561 struct dwc3_gadget_ep_cmd_params params;
2562 u32 cmd;
2563 int ret;
2564
Baolin Wang76a638f2016-10-31 19:38:36 +08002565 if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) ||
2566 !dep->resource_index)
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302567 return;
2568
Pratyush Anand57911502012-07-06 15:19:10 +05302569 /*
2570 * NOTICE: We are violating what the Databook says about the
2571 * EndTransfer command. Ideally we would _always_ wait for the
2572 * EndTransfer Command Completion IRQ, but that's causing too
2573 * much trouble synchronizing between us and gadget driver.
2574 *
2575 * We have discussed this with the IP Provider and it was
2576 * suggested to giveback all requests here, but give HW some
2577 * extra time to synchronize with the interconnect. We're using
Mickael Maisondc93b412014-12-23 17:34:43 +01002578 * an arbitrary 100us delay for that.
Pratyush Anand57911502012-07-06 15:19:10 +05302579 *
2580 * Note also that a similar handling was tested by Synopsys
2581 * (thanks a lot Paul) and nothing bad has come out of it.
2582 * In short, what we're doing is:
2583 *
2584 * - Issue EndTransfer WITH CMDIOC bit set
2585 * - Wait 100us
John Youn06281d42016-08-22 15:39:13 -07002586 *
2587 * As of IP version 3.10a of the DWC_usb3 IP, the controller
2588 * supports a mode to work around the above limitation. The
2589 * software can poll the CMDACT bit in the DEPCMD register
2590 * after issuing a EndTransfer command. This mode is enabled
2591 * by writing GUCTL2[14]. This polling is already done in the
2592 * dwc3_send_gadget_ep_cmd() function so if the mode is
2593 * enabled, the EndTransfer command will have completed upon
2594 * returning from this function and we don't need to delay for
2595 * 100us.
2596 *
2597 * This mode is NOT available on the DWC_usb31 IP.
Pratyush Anand57911502012-07-06 15:19:10 +05302598 */
2599
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302600 cmd = DWC3_DEPCMD_ENDTRANSFER;
Paul Zimmermanb992e682012-04-27 14:17:35 +03002601 cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0;
2602 cmd |= DWC3_DEPCMD_CMDIOC;
Felipe Balbib4996a82012-06-06 12:04:13 +03002603 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302604 memset(&params, 0, sizeof(params));
Felipe Balbi2cd47182016-04-12 16:42:43 +03002605 ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302606 WARN_ON_ONCE(ret);
Felipe Balbib4996a82012-06-06 12:04:13 +03002607 dep->resource_index = 0;
Felipe Balbi041d81f2012-10-04 11:58:00 +03002608 dep->flags &= ~DWC3_EP_BUSY;
John Youn06281d42016-08-22 15:39:13 -07002609
Baolin Wang76a638f2016-10-31 19:38:36 +08002610 if (dwc3_is_usb31(dwc) || dwc->revision < DWC3_REVISION_310A) {
2611 dep->flags |= DWC3_EP_END_TRANSFER_PENDING;
John Youn06281d42016-08-22 15:39:13 -07002612 udelay(100);
Baolin Wang76a638f2016-10-31 19:38:36 +08002613 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002614}
2615
Felipe Balbi72246da2011-08-19 18:10:58 +03002616static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
2617{
2618 u32 epnum;
2619
2620 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2621 struct dwc3_ep *dep;
Felipe Balbi72246da2011-08-19 18:10:58 +03002622 int ret;
2623
2624 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002625 if (!dep)
2626 continue;
Felipe Balbi72246da2011-08-19 18:10:58 +03002627
2628 if (!(dep->flags & DWC3_EP_STALL))
2629 continue;
2630
2631 dep->flags &= ~DWC3_EP_STALL;
2632
John Youn50c763f2016-05-31 17:49:56 -07002633 ret = dwc3_send_clear_stall_ep_cmd(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03002634 WARN_ON_ONCE(ret);
2635 }
2636}
2637
2638static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
2639{
Felipe Balbic4430a22012-05-24 10:30:01 +03002640 int reg;
2641
Felipe Balbi72246da2011-08-19 18:10:58 +03002642 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2643 reg &= ~DWC3_DCTL_INITU1ENA;
2644 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2645
2646 reg &= ~DWC3_DCTL_INITU2ENA;
2647 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002648
Felipe Balbi72246da2011-08-19 18:10:58 +03002649 dwc3_disconnect_gadget(dwc);
2650
2651 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbidf62df52011-10-14 15:11:49 +03002652 dwc->setup_packet_pending = false;
Felipe Balbi06a374e2014-10-10 15:24:00 -05002653 usb_gadget_set_state(&dwc->gadget, USB_STATE_NOTATTACHED);
Felipe Balbifc8bb912016-05-16 13:14:48 +03002654
2655 dwc->connected = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002656}
2657
Felipe Balbi72246da2011-08-19 18:10:58 +03002658static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
2659{
2660 u32 reg;
2661
Felipe Balbifc8bb912016-05-16 13:14:48 +03002662 dwc->connected = true;
2663
Felipe Balbidf62df52011-10-14 15:11:49 +03002664 /*
2665 * WORKAROUND: DWC3 revisions <1.88a have an issue which
2666 * would cause a missing Disconnect Event if there's a
2667 * pending Setup Packet in the FIFO.
2668 *
2669 * There's no suggested workaround on the official Bug
2670 * report, which states that "unless the driver/application
2671 * is doing any special handling of a disconnect event,
2672 * there is no functional issue".
2673 *
2674 * Unfortunately, it turns out that we _do_ some special
2675 * handling of a disconnect event, namely complete all
2676 * pending transfers, notify gadget driver of the
2677 * disconnection, and so on.
2678 *
2679 * Our suggested workaround is to follow the Disconnect
2680 * Event steps here, instead, based on a setup_packet_pending
Felipe Balbib5d335e2015-11-16 16:20:34 -06002681 * flag. Such flag gets set whenever we have a SETUP_PENDING
2682 * status for EP0 TRBs and gets cleared on XferComplete for the
Felipe Balbidf62df52011-10-14 15:11:49 +03002683 * same endpoint.
2684 *
2685 * Refers to:
2686 *
2687 * STAR#9000466709: RTL: Device : Disconnect event not
2688 * generated if setup packet pending in FIFO
2689 */
2690 if (dwc->revision < DWC3_REVISION_188A) {
2691 if (dwc->setup_packet_pending)
2692 dwc3_gadget_disconnect_interrupt(dwc);
2693 }
2694
Felipe Balbi8e744752014-11-06 14:27:53 +08002695 dwc3_reset_gadget(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03002696
2697 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2698 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
2699 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Gerard Cauvy3b637362012-02-10 12:21:18 +02002700 dwc->test_mode = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002701 dwc3_clear_stall_all_ep(dwc);
2702
2703 /* Reset device address to zero */
2704 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2705 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
2706 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002707}
2708
Felipe Balbi72246da2011-08-19 18:10:58 +03002709static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
2710{
Felipe Balbi72246da2011-08-19 18:10:58 +03002711 struct dwc3_ep *dep;
2712 int ret;
2713 u32 reg;
2714 u8 speed;
2715
Felipe Balbi72246da2011-08-19 18:10:58 +03002716 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2717 speed = reg & DWC3_DSTS_CONNECTSPD;
2718 dwc->speed = speed;
2719
John Youn5fb6fda2016-11-10 17:23:25 -08002720 /*
2721 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
2722 * each time on Connect Done.
2723 *
2724 * Currently we always use the reset value. If any platform
2725 * wants to set this to a different value, we need to add a
2726 * setting and update GCTL.RAMCLKSEL here.
2727 */
Felipe Balbi72246da2011-08-19 18:10:58 +03002728
2729 switch (speed) {
John Youn2da9ad72016-05-20 16:34:26 -07002730 case DWC3_DSTS_SUPERSPEED_PLUS:
John Youn75808622016-02-05 17:09:13 -08002731 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2732 dwc->gadget.ep0->maxpacket = 512;
2733 dwc->gadget.speed = USB_SPEED_SUPER_PLUS;
2734 break;
John Youn2da9ad72016-05-20 16:34:26 -07002735 case DWC3_DSTS_SUPERSPEED:
Felipe Balbi05870c52011-10-14 14:51:38 +03002736 /*
2737 * WORKAROUND: DWC3 revisions <1.90a have an issue which
2738 * would cause a missing USB3 Reset event.
2739 *
2740 * In such situations, we should force a USB3 Reset
2741 * event by calling our dwc3_gadget_reset_interrupt()
2742 * routine.
2743 *
2744 * Refers to:
2745 *
2746 * STAR#9000483510: RTL: SS : USB3 reset event may
2747 * not be generated always when the link enters poll
2748 */
2749 if (dwc->revision < DWC3_REVISION_190A)
2750 dwc3_gadget_reset_interrupt(dwc);
2751
Felipe Balbi72246da2011-08-19 18:10:58 +03002752 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2753 dwc->gadget.ep0->maxpacket = 512;
2754 dwc->gadget.speed = USB_SPEED_SUPER;
2755 break;
John Youn2da9ad72016-05-20 16:34:26 -07002756 case DWC3_DSTS_HIGHSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03002757 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2758 dwc->gadget.ep0->maxpacket = 64;
2759 dwc->gadget.speed = USB_SPEED_HIGH;
2760 break;
Roger Quadros9418ee12017-01-03 14:32:09 +02002761 case DWC3_DSTS_FULLSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03002762 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2763 dwc->gadget.ep0->maxpacket = 64;
2764 dwc->gadget.speed = USB_SPEED_FULL;
2765 break;
John Youn2da9ad72016-05-20 16:34:26 -07002766 case DWC3_DSTS_LOWSPEED:
Felipe Balbi72246da2011-08-19 18:10:58 +03002767 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
2768 dwc->gadget.ep0->maxpacket = 8;
2769 dwc->gadget.speed = USB_SPEED_LOW;
2770 break;
2771 }
2772
Thinh Nguyen61800262018-01-12 18:18:05 -08002773 dwc->eps[1]->endpoint.maxpacket = dwc->gadget.ep0->maxpacket;
2774
Pratyush Anand2b758352013-01-14 15:59:31 +05302775 /* Enable USB2 LPM Capability */
2776
John Younee5cd412016-02-05 17:08:45 -08002777 if ((dwc->revision > DWC3_REVISION_194A) &&
John Youn2da9ad72016-05-20 16:34:26 -07002778 (speed != DWC3_DSTS_SUPERSPEED) &&
2779 (speed != DWC3_DSTS_SUPERSPEED_PLUS)) {
Pratyush Anand2b758352013-01-14 15:59:31 +05302780 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2781 reg |= DWC3_DCFG_LPM_CAP;
2782 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2783
2784 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2785 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
2786
Huang Rui460d0982014-10-31 11:11:18 +08002787 reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold);
Pratyush Anand2b758352013-01-14 15:59:31 +05302788
Huang Rui80caf7d2014-10-28 19:54:26 +08002789 /*
2790 * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and
2791 * DCFG.LPMCap is set, core responses with an ACK and the
2792 * BESL value in the LPM token is less than or equal to LPM
2793 * NYET threshold.
2794 */
2795 WARN_ONCE(dwc->revision < DWC3_REVISION_240A
2796 && dwc->has_lpm_erratum,
Masanari Iida9165dab2016-09-17 23:44:17 +09002797 "LPM Erratum not available on dwc3 revisions < 2.40a\n");
Huang Rui80caf7d2014-10-28 19:54:26 +08002798
2799 if (dwc->has_lpm_erratum && dwc->revision >= DWC3_REVISION_240A)
2800 reg |= DWC3_DCTL_LPM_ERRATA(dwc->lpm_nyet_threshold);
2801
Pratyush Anand2b758352013-01-14 15:59:31 +05302802 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi356363b2013-12-19 16:37:05 -06002803 } else {
2804 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2805 reg &= ~DWC3_DCTL_HIRD_THRES_MASK;
2806 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Pratyush Anand2b758352013-01-14 15:59:31 +05302807 }
2808
Felipe Balbi72246da2011-08-19 18:10:58 +03002809 dep = dwc->eps[0];
John Youn39ebb052016-11-09 16:36:28 -08002810 ret = __dwc3_gadget_ep_enable(dep, true, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03002811 if (ret) {
2812 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2813 return;
2814 }
2815
2816 dep = dwc->eps[1];
John Youn39ebb052016-11-09 16:36:28 -08002817 ret = __dwc3_gadget_ep_enable(dep, true, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03002818 if (ret) {
2819 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2820 return;
2821 }
2822
2823 /*
2824 * Configure PHY via GUSB3PIPECTLn if required.
2825 *
2826 * Update GTXFIFOSIZn
2827 *
2828 * In both cases reset values should be sufficient.
2829 */
2830}
2831
2832static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
2833{
Felipe Balbi72246da2011-08-19 18:10:58 +03002834 /*
2835 * TODO take core out of low power mode when that's
2836 * implemented.
2837 */
2838
Jiebing Liad14d4e2014-12-11 13:26:29 +08002839 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
2840 spin_unlock(&dwc->lock);
2841 dwc->gadget_driver->resume(&dwc->gadget);
2842 spin_lock(&dwc->lock);
2843 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002844}
2845
2846static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
2847 unsigned int evtinfo)
2848{
Felipe Balbifae2b902011-10-14 13:00:30 +03002849 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03002850 unsigned int pwropt;
2851
2852 /*
2853 * WORKAROUND: DWC3 < 2.50a have an issue when configured without
2854 * Hibernation mode enabled which would show up when device detects
2855 * host-initiated U3 exit.
2856 *
2857 * In that case, device will generate a Link State Change Interrupt
2858 * from U3 to RESUME which is only necessary if Hibernation is
2859 * configured in.
2860 *
2861 * There are no functional changes due to such spurious event and we
2862 * just need to ignore it.
2863 *
2864 * Refers to:
2865 *
2866 * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation
2867 * operational mode
2868 */
2869 pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
2870 if ((dwc->revision < DWC3_REVISION_250A) &&
2871 (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) {
2872 if ((dwc->link_state == DWC3_LINK_STATE_U3) &&
2873 (next == DWC3_LINK_STATE_RESUME)) {
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03002874 return;
2875 }
2876 }
Felipe Balbifae2b902011-10-14 13:00:30 +03002877
2878 /*
2879 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
2880 * on the link partner, the USB session might do multiple entry/exit
2881 * of low power states before a transfer takes place.
2882 *
2883 * Due to this problem, we might experience lower throughput. The
2884 * suggested workaround is to disable DCTL[12:9] bits if we're
2885 * transitioning from U1/U2 to U0 and enable those bits again
2886 * after a transfer completes and there are no pending transfers
2887 * on any of the enabled endpoints.
2888 *
2889 * This is the first half of that workaround.
2890 *
2891 * Refers to:
2892 *
2893 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
2894 * core send LGO_Ux entering U0
2895 */
2896 if (dwc->revision < DWC3_REVISION_183A) {
2897 if (next == DWC3_LINK_STATE_U0) {
2898 u32 u1u2;
2899 u32 reg;
2900
2901 switch (dwc->link_state) {
2902 case DWC3_LINK_STATE_U1:
2903 case DWC3_LINK_STATE_U2:
2904 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2905 u1u2 = reg & (DWC3_DCTL_INITU2ENA
2906 | DWC3_DCTL_ACCEPTU2ENA
2907 | DWC3_DCTL_INITU1ENA
2908 | DWC3_DCTL_ACCEPTU1ENA);
2909
2910 if (!dwc->u1u2)
2911 dwc->u1u2 = reg & u1u2;
2912
2913 reg &= ~u1u2;
2914
2915 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2916 break;
2917 default:
2918 /* do nothing */
2919 break;
2920 }
2921 }
2922 }
2923
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002924 switch (next) {
2925 case DWC3_LINK_STATE_U1:
2926 if (dwc->speed == USB_SPEED_SUPER)
2927 dwc3_suspend_gadget(dwc);
2928 break;
2929 case DWC3_LINK_STATE_U2:
2930 case DWC3_LINK_STATE_U3:
2931 dwc3_suspend_gadget(dwc);
2932 break;
2933 case DWC3_LINK_STATE_RESUME:
2934 dwc3_resume_gadget(dwc);
2935 break;
2936 default:
2937 /* do nothing */
2938 break;
2939 }
2940
Felipe Balbie57ebc12014-04-22 13:20:12 -05002941 dwc->link_state = next;
Felipe Balbi72246da2011-08-19 18:10:58 +03002942}
2943
Baolin Wang72704f82016-05-16 16:43:53 +08002944static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc,
2945 unsigned int evtinfo)
2946{
2947 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
2948
2949 if (dwc->link_state != next && next == DWC3_LINK_STATE_U3)
2950 dwc3_suspend_gadget(dwc);
2951
2952 dwc->link_state = next;
2953}
2954
Felipe Balbie1dadd32014-02-25 14:47:54 -06002955static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc,
2956 unsigned int evtinfo)
2957{
2958 unsigned int is_ss = evtinfo & BIT(4);
2959
Felipe Balbibfad65e2017-04-19 14:59:27 +03002960 /*
Felipe Balbie1dadd32014-02-25 14:47:54 -06002961 * WORKAROUND: DWC3 revison 2.20a with hibernation support
2962 * have a known issue which can cause USB CV TD.9.23 to fail
2963 * randomly.
2964 *
2965 * Because of this issue, core could generate bogus hibernation
2966 * events which SW needs to ignore.
2967 *
2968 * Refers to:
2969 *
2970 * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0
2971 * Device Fallback from SuperSpeed
2972 */
2973 if (is_ss ^ (dwc->speed == USB_SPEED_SUPER))
2974 return;
2975
2976 /* enter hibernation here */
2977}
2978
Felipe Balbi72246da2011-08-19 18:10:58 +03002979static void dwc3_gadget_interrupt(struct dwc3 *dwc,
2980 const struct dwc3_event_devt *event)
2981{
2982 switch (event->type) {
2983 case DWC3_DEVICE_EVENT_DISCONNECT:
2984 dwc3_gadget_disconnect_interrupt(dwc);
2985 break;
2986 case DWC3_DEVICE_EVENT_RESET:
2987 dwc3_gadget_reset_interrupt(dwc);
2988 break;
2989 case DWC3_DEVICE_EVENT_CONNECT_DONE:
2990 dwc3_gadget_conndone_interrupt(dwc);
2991 break;
2992 case DWC3_DEVICE_EVENT_WAKEUP:
2993 dwc3_gadget_wakeup_interrupt(dwc);
2994 break;
Felipe Balbie1dadd32014-02-25 14:47:54 -06002995 case DWC3_DEVICE_EVENT_HIBER_REQ:
2996 if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation,
2997 "unexpected hibernation event\n"))
2998 break;
2999
3000 dwc3_gadget_hibernation_interrupt(dwc, event->event_info);
3001 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03003002 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
3003 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
3004 break;
3005 case DWC3_DEVICE_EVENT_EOPF:
Baolin Wang72704f82016-05-16 16:43:53 +08003006 /* It changed to be suspend event for version 2.30a and above */
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02003007 if (dwc->revision >= DWC3_REVISION_230A) {
Baolin Wang72704f82016-05-16 16:43:53 +08003008 /*
3009 * Ignore suspend event until the gadget enters into
3010 * USB_STATE_CONFIGURED state.
3011 */
3012 if (dwc->gadget.state >= USB_STATE_CONFIGURED)
3013 dwc3_gadget_suspend_interrupt(dwc,
3014 event->event_info);
3015 }
Felipe Balbi72246da2011-08-19 18:10:58 +03003016 break;
3017 case DWC3_DEVICE_EVENT_SOF:
Felipe Balbi72246da2011-08-19 18:10:58 +03003018 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
Felipe Balbi72246da2011-08-19 18:10:58 +03003019 case DWC3_DEVICE_EVENT_CMD_CMPL:
Felipe Balbi72246da2011-08-19 18:10:58 +03003020 case DWC3_DEVICE_EVENT_OVERFLOW:
Felipe Balbi72246da2011-08-19 18:10:58 +03003021 break;
3022 default:
Felipe Balbie9f2aa82015-01-27 13:49:28 -06003023 dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
Felipe Balbi72246da2011-08-19 18:10:58 +03003024 }
3025}
3026
3027static void dwc3_process_event_entry(struct dwc3 *dwc,
3028 const union dwc3_event *event)
3029{
Felipe Balbi43c96be2016-09-26 13:23:34 +03003030 trace_dwc3_event(event->raw, dwc);
Felipe Balbi2c4cbe6e52014-04-30 17:45:10 -05003031
Felipe Balbidfc5e802017-04-26 13:44:51 +03003032 if (!event->type.is_devspec)
3033 dwc3_endpoint_interrupt(dwc, &event->depevt);
3034 else if (event->type.type == DWC3_EVENT_TYPE_DEV)
Felipe Balbi72246da2011-08-19 18:10:58 +03003035 dwc3_gadget_interrupt(dwc, &event->devt);
Felipe Balbidfc5e802017-04-26 13:44:51 +03003036 else
Felipe Balbi72246da2011-08-19 18:10:58 +03003037 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
Felipe Balbi72246da2011-08-19 18:10:58 +03003038}
3039
Felipe Balbidea520a2016-03-30 09:39:34 +03003040static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt)
Felipe Balbif42f2442013-06-12 21:25:08 +03003041{
Felipe Balbidea520a2016-03-30 09:39:34 +03003042 struct dwc3 *dwc = evt->dwc;
Felipe Balbif42f2442013-06-12 21:25:08 +03003043 irqreturn_t ret = IRQ_NONE;
3044 int left;
3045 u32 reg;
3046
Felipe Balbif42f2442013-06-12 21:25:08 +03003047 left = evt->count;
3048
3049 if (!(evt->flags & DWC3_EVENT_PENDING))
3050 return IRQ_NONE;
3051
3052 while (left > 0) {
3053 union dwc3_event event;
3054
John Younebbb2d52016-11-15 13:07:02 +02003055 event.raw = *(u32 *) (evt->cache + evt->lpos);
Felipe Balbif42f2442013-06-12 21:25:08 +03003056
3057 dwc3_process_event_entry(dwc, &event);
3058
3059 /*
3060 * FIXME we wrap around correctly to the next entry as
3061 * almost all entries are 4 bytes in size. There is one
3062 * entry which has 12 bytes which is a regular entry
3063 * followed by 8 bytes data. ATM I don't know how
3064 * things are organized if we get next to the a
3065 * boundary so I worry about that once we try to handle
3066 * that.
3067 */
Felipe Balbicaefe6c2016-11-15 13:05:23 +02003068 evt->lpos = (evt->lpos + 4) % evt->length;
Felipe Balbif42f2442013-06-12 21:25:08 +03003069 left -= 4;
Felipe Balbif42f2442013-06-12 21:25:08 +03003070 }
3071
3072 evt->count = 0;
3073 evt->flags &= ~DWC3_EVENT_PENDING;
3074 ret = IRQ_HANDLED;
3075
3076 /* Unmask interrupt */
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003077 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
Felipe Balbif42f2442013-06-12 21:25:08 +03003078 reg &= ~DWC3_GEVNTSIZ_INTMASK;
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003079 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
Felipe Balbif42f2442013-06-12 21:25:08 +03003080
John Youncf40b862016-11-14 12:32:43 -08003081 if (dwc->imod_interval) {
3082 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB);
3083 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval);
3084 }
3085
Felipe Balbif42f2442013-06-12 21:25:08 +03003086 return ret;
3087}
3088
Felipe Balbidea520a2016-03-30 09:39:34 +03003089static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt)
Felipe Balbib15a7622011-06-30 16:57:15 +03003090{
Felipe Balbidea520a2016-03-30 09:39:34 +03003091 struct dwc3_event_buffer *evt = _evt;
3092 struct dwc3 *dwc = evt->dwc;
Felipe Balbie5f68b42015-10-12 13:25:44 -05003093 unsigned long flags;
Felipe Balbib15a7622011-06-30 16:57:15 +03003094 irqreturn_t ret = IRQ_NONE;
Felipe Balbib15a7622011-06-30 16:57:15 +03003095
Felipe Balbie5f68b42015-10-12 13:25:44 -05003096 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbidea520a2016-03-30 09:39:34 +03003097 ret = dwc3_process_event_buf(evt);
Felipe Balbie5f68b42015-10-12 13:25:44 -05003098 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbib15a7622011-06-30 16:57:15 +03003099
3100 return ret;
3101}
3102
Felipe Balbidea520a2016-03-30 09:39:34 +03003103static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt)
Felipe Balbi72246da2011-08-19 18:10:58 +03003104{
Felipe Balbidea520a2016-03-30 09:39:34 +03003105 struct dwc3 *dwc = evt->dwc;
John Younebbb2d52016-11-15 13:07:02 +02003106 u32 amount;
Felipe Balbi72246da2011-08-19 18:10:58 +03003107 u32 count;
Felipe Balbie8adfc32013-06-12 21:11:14 +03003108 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +03003109
Felipe Balbifc8bb912016-05-16 13:14:48 +03003110 if (pm_runtime_suspended(dwc->dev)) {
3111 pm_runtime_get(dwc->dev);
3112 disable_irq_nosync(dwc->irq_gadget);
3113 dwc->pending_events = true;
3114 return IRQ_HANDLED;
3115 }
3116
Thinh Nguyend325a1d2017-05-11 17:26:47 -07003117 /*
3118 * With PCIe legacy interrupt, test shows that top-half irq handler can
3119 * be called again after HW interrupt deassertion. Check if bottom-half
3120 * irq event handler completes before caching new event to prevent
3121 * losing events.
3122 */
3123 if (evt->flags & DWC3_EVENT_PENDING)
3124 return IRQ_HANDLED;
3125
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003126 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
Felipe Balbi72246da2011-08-19 18:10:58 +03003127 count &= DWC3_GEVNTCOUNT_MASK;
3128 if (!count)
3129 return IRQ_NONE;
3130
Felipe Balbib15a7622011-06-30 16:57:15 +03003131 evt->count = count;
3132 evt->flags |= DWC3_EVENT_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +03003133
Felipe Balbie8adfc32013-06-12 21:11:14 +03003134 /* Mask interrupt */
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003135 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0));
Felipe Balbie8adfc32013-06-12 21:11:14 +03003136 reg |= DWC3_GEVNTSIZ_INTMASK;
Felipe Balbi660e9bd2016-03-30 09:26:24 +03003137 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg);
Felipe Balbie8adfc32013-06-12 21:11:14 +03003138
John Younebbb2d52016-11-15 13:07:02 +02003139 amount = min(count, evt->length - evt->lpos);
3140 memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount);
3141
3142 if (amount < count)
3143 memcpy(evt->cache, evt->buf, count - amount);
3144
John Youn65aca322016-11-15 13:08:59 +02003145 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count);
3146
Felipe Balbib15a7622011-06-30 16:57:15 +03003147 return IRQ_WAKE_THREAD;
Felipe Balbi72246da2011-08-19 18:10:58 +03003148}
3149
Felipe Balbidea520a2016-03-30 09:39:34 +03003150static irqreturn_t dwc3_interrupt(int irq, void *_evt)
Felipe Balbi72246da2011-08-19 18:10:58 +03003151{
Felipe Balbidea520a2016-03-30 09:39:34 +03003152 struct dwc3_event_buffer *evt = _evt;
Felipe Balbi72246da2011-08-19 18:10:58 +03003153
Felipe Balbidea520a2016-03-30 09:39:34 +03003154 return dwc3_check_event_buf(evt);
Felipe Balbi72246da2011-08-19 18:10:58 +03003155}
3156
Felipe Balbi6db38122016-10-03 11:27:01 +03003157static int dwc3_gadget_get_irq(struct dwc3 *dwc)
3158{
3159 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev);
3160 int irq;
3161
3162 irq = platform_get_irq_byname(dwc3_pdev, "peripheral");
3163 if (irq > 0)
3164 goto out;
3165
3166 if (irq == -EPROBE_DEFER)
3167 goto out;
3168
3169 irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3");
3170 if (irq > 0)
3171 goto out;
3172
3173 if (irq == -EPROBE_DEFER)
3174 goto out;
3175
3176 irq = platform_get_irq(dwc3_pdev, 0);
3177 if (irq > 0)
3178 goto out;
3179
3180 if (irq != -EPROBE_DEFER)
3181 dev_err(dwc->dev, "missing peripheral IRQ\n");
3182
3183 if (!irq)
3184 irq = -EINVAL;
3185
3186out:
3187 return irq;
3188}
3189
Felipe Balbi72246da2011-08-19 18:10:58 +03003190/**
Felipe Balbibfad65e2017-04-19 14:59:27 +03003191 * dwc3_gadget_init - initializes gadget related registers
Paul Zimmerman1d046792012-02-15 18:56:56 -08003192 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +03003193 *
3194 * Returns 0 on success otherwise negative errno.
3195 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05003196int dwc3_gadget_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03003197{
Felipe Balbi6db38122016-10-03 11:27:01 +03003198 int ret;
3199 int irq;
Roger Quadros9522def2016-06-10 14:48:38 +03003200
Felipe Balbi6db38122016-10-03 11:27:01 +03003201 irq = dwc3_gadget_get_irq(dwc);
3202 if (irq < 0) {
3203 ret = irq;
3204 goto err0;
Roger Quadros9522def2016-06-10 14:48:38 +03003205 }
3206
3207 dwc->irq_gadget = irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03003208
Arnd Bergmannd64ff402016-11-17 17:13:47 +05303209 dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev,
3210 sizeof(*dwc->ep0_trb) * 2,
3211 &dwc->ep0_trb_addr, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03003212 if (!dwc->ep0_trb) {
3213 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
3214 ret = -ENOMEM;
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003215 goto err0;
Felipe Balbi72246da2011-08-19 18:10:58 +03003216 }
3217
Felipe Balbi4199c5f2017-04-07 14:09:13 +03003218 dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03003219 if (!dwc->setup_buf) {
Felipe Balbi72246da2011-08-19 18:10:58 +03003220 ret = -ENOMEM;
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003221 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03003222 }
3223
Felipe Balbi905dc042017-01-05 14:46:52 +02003224 dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE,
3225 &dwc->bounce_addr, GFP_KERNEL);
3226 if (!dwc->bounce) {
3227 ret = -ENOMEM;
Felipe Balbid6e5a542017-04-07 16:34:38 +03003228 goto err2;
Felipe Balbi905dc042017-01-05 14:46:52 +02003229 }
3230
Baolin Wangbb014732016-10-14 17:11:33 +08003231 init_completion(&dwc->ep0_in_setup);
3232
Felipe Balbi72246da2011-08-19 18:10:58 +03003233 dwc->gadget.ops = &dwc3_gadget_ops;
Felipe Balbi72246da2011-08-19 18:10:58 +03003234 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbieeb720f2011-11-28 12:46:59 +02003235 dwc->gadget.sg_supported = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03003236 dwc->gadget.name = "dwc3-gadget";
Jianqiang Tang6a4290c2016-01-20 14:09:39 +08003237 dwc->gadget.is_otg = dwc->dr_mode == USB_DR_MODE_OTG;
Felipe Balbi72246da2011-08-19 18:10:58 +03003238
3239 /*
Ben McCauleyb9e51b22015-11-16 10:47:24 -06003240 * FIXME We might be setting max_speed to <SUPER, however versions
3241 * <2.20a of dwc3 have an issue with metastability (documented
3242 * elsewhere in this driver) which tells us we can't set max speed to
3243 * anything lower than SUPER.
3244 *
3245 * Because gadget.max_speed is only used by composite.c and function
3246 * drivers (i.e. it won't go into dwc3's registers) we are allowing this
3247 * to happen so we avoid sending SuperSpeed Capability descriptor
3248 * together with our BOS descriptor as that could confuse host into
3249 * thinking we can handle super speed.
3250 *
3251 * Note that, in fact, we won't even support GetBOS requests when speed
3252 * is less than super speed because we don't have means, yet, to tell
3253 * composite.c that we are USB 2.0 + LPM ECN.
3254 */
Roger Quadros42bf02e2017-10-31 15:11:55 +02003255 if (dwc->revision < DWC3_REVISION_220A &&
3256 !dwc->dis_metastability_quirk)
Felipe Balbi5eb30ce2016-11-03 14:07:51 +02003257 dev_info(dwc->dev, "changing max_speed on rev %08x\n",
Ben McCauleyb9e51b22015-11-16 10:47:24 -06003258 dwc->revision);
3259
3260 dwc->gadget.max_speed = dwc->maximum_speed;
3261
3262 /*
Felipe Balbi72246da2011-08-19 18:10:58 +03003263 * REVISIT: Here we should clear all pending IRQs to be
3264 * sure we're starting from a well known location.
3265 */
3266
Bryan O'Donoghuef3bcfc72017-01-31 20:58:11 +00003267 ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps);
Felipe Balbi72246da2011-08-19 18:10:58 +03003268 if (ret)
Felipe Balbid6e5a542017-04-07 16:34:38 +03003269 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +03003270
Felipe Balbi72246da2011-08-19 18:10:58 +03003271 ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
3272 if (ret) {
3273 dev_err(dwc->dev, "failed to register udc\n");
Felipe Balbid6e5a542017-04-07 16:34:38 +03003274 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03003275 }
3276
3277 return 0;
Felipe Balbi4199c5f2017-04-07 14:09:13 +03003278
3279err4:
Felipe Balbid6e5a542017-04-07 16:34:38 +03003280 dwc3_gadget_free_endpoints(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03003281
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003282err3:
Felipe Balbid6e5a542017-04-07 16:34:38 +03003283 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
3284 dwc->bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03003285
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003286err2:
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02003287 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03003288
Felipe Balbi7d5e6502017-04-07 13:34:21 +03003289err1:
Arnd Bergmannd64ff402016-11-17 17:13:47 +05303290 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
Felipe Balbi72246da2011-08-19 18:10:58 +03003291 dwc->ep0_trb, dwc->ep0_trb_addr);
3292
Felipe Balbi72246da2011-08-19 18:10:58 +03003293err0:
3294 return ret;
3295}
3296
Felipe Balbi7415f172012-04-30 14:56:33 +03003297/* -------------------------------------------------------------------------- */
3298
Felipe Balbi72246da2011-08-19 18:10:58 +03003299void dwc3_gadget_exit(struct dwc3 *dwc)
3300{
Felipe Balbi72246da2011-08-19 18:10:58 +03003301 usb_del_gadget_udc(&dwc->gadget);
Felipe Balbi72246da2011-08-19 18:10:58 +03003302 dwc3_gadget_free_endpoints(dwc);
Felipe Balbi905dc042017-01-05 14:46:52 +02003303 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce,
Felipe Balbid6e5a542017-04-07 16:34:38 +03003304 dwc->bounce_addr);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02003305 kfree(dwc->setup_buf);
Arnd Bergmannd64ff402016-11-17 17:13:47 +05303306 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2,
Felipe Balbid6e5a542017-04-07 16:34:38 +03003307 dwc->ep0_trb, dwc->ep0_trb_addr);
Felipe Balbi72246da2011-08-19 18:10:58 +03003308}
Felipe Balbi7415f172012-04-30 14:56:33 +03003309
Felipe Balbi0b0231a2014-10-07 10:19:23 -05003310int dwc3_gadget_suspend(struct dwc3 *dwc)
Felipe Balbi7415f172012-04-30 14:56:33 +03003311{
Roger Quadros9772b472016-04-12 11:33:29 +03003312 if (!dwc->gadget_driver)
3313 return 0;
3314
Roger Quadros1551e352017-02-15 14:16:26 +02003315 dwc3_gadget_run_stop(dwc, false, false);
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03003316 dwc3_disconnect_gadget(dwc);
3317 __dwc3_gadget_stop(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03003318
3319 return 0;
3320}
3321
3322int dwc3_gadget_resume(struct dwc3 *dwc)
3323{
Felipe Balbi7415f172012-04-30 14:56:33 +03003324 int ret;
3325
Roger Quadros9772b472016-04-12 11:33:29 +03003326 if (!dwc->gadget_driver)
3327 return 0;
3328
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03003329 ret = __dwc3_gadget_start(dwc);
3330 if (ret < 0)
Felipe Balbi7415f172012-04-30 14:56:33 +03003331 goto err0;
3332
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03003333 ret = dwc3_gadget_run_stop(dwc, true, false);
3334 if (ret < 0)
Felipe Balbi7415f172012-04-30 14:56:33 +03003335 goto err1;
3336
Felipe Balbi7415f172012-04-30 14:56:33 +03003337 return 0;
3338
3339err1:
Felipe Balbi9f8a67b2016-05-04 15:50:27 +03003340 __dwc3_gadget_stop(dwc);
Felipe Balbi7415f172012-04-30 14:56:33 +03003341
3342err0:
3343 return ret;
3344}
Felipe Balbifc8bb912016-05-16 13:14:48 +03003345
3346void dwc3_gadget_process_pending_events(struct dwc3 *dwc)
3347{
3348 if (dwc->pending_events) {
3349 dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf);
3350 dwc->pending_events = false;
3351 enable_irq(dwc->irq_gadget);
3352 }
3353}