blob: dab7927d10094e17d8105a25e28a17fd785ae6de [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 */
18
19#include <linux/kernel.h>
20#include <linux/delay.h>
21#include <linux/slab.h>
22#include <linux/spinlock.h>
23#include <linux/platform_device.h>
24#include <linux/pm_runtime.h>
25#include <linux/interrupt.h>
26#include <linux/io.h>
27#include <linux/list.h>
28#include <linux/dma-mapping.h>
29
30#include <linux/usb/ch9.h>
31#include <linux/usb/gadget.h>
32
33#include "core.h"
34#include "gadget.h"
35#include "io.h"
36
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020037/**
38 * dwc3_gadget_set_test_mode - Enables USB2 Test Modes
39 * @dwc: pointer to our context structure
40 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
41 *
42 * Caller should take care of locking. This function will
43 * return 0 on success or -EINVAL if wrong Test Selector
44 * is passed
45 */
46int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
47{
48 u32 reg;
49
50 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
51 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
52
53 switch (mode) {
54 case TEST_J:
55 case TEST_K:
56 case TEST_SE0_NAK:
57 case TEST_PACKET:
58 case TEST_FORCE_EN:
59 reg |= mode << 1;
60 break;
61 default:
62 return -EINVAL;
63 }
64
65 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
66
67 return 0;
68}
69
Felipe Balbi8598bde2012-01-02 18:55:57 +020070/**
Paul Zimmerman911f1f82012-04-27 13:35:15 +030071 * dwc3_gadget_get_link_state - Gets current state of USB Link
72 * @dwc: pointer to our context structure
73 *
74 * Caller should take care of locking. This function will
75 * return the link state on success (>= 0) or -ETIMEDOUT.
76 */
77int dwc3_gadget_get_link_state(struct dwc3 *dwc)
78{
79 u32 reg;
80
81 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
82
83 return DWC3_DSTS_USBLNKST(reg);
84}
85
86/**
Felipe Balbi8598bde2012-01-02 18:55:57 +020087 * dwc3_gadget_set_link_state - Sets USB Link to a particular State
88 * @dwc: pointer to our context structure
89 * @state: the state to put link into
90 *
91 * Caller should take care of locking. This function will
Paul Zimmermanaee63e32012-02-24 17:32:15 -080092 * return 0 on success or -ETIMEDOUT.
Felipe Balbi8598bde2012-01-02 18:55:57 +020093 */
94int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
95{
Paul Zimmermanaee63e32012-02-24 17:32:15 -080096 int retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +020097 u32 reg;
98
Paul Zimmerman802fde92012-04-27 13:10:52 +030099 /*
100 * Wait until device controller is ready. Only applies to 1.94a and
101 * later RTL.
102 */
103 if (dwc->revision >= DWC3_REVISION_194A) {
104 while (--retries) {
105 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
106 if (reg & DWC3_DSTS_DCNRD)
107 udelay(5);
108 else
109 break;
110 }
111
112 if (retries <= 0)
113 return -ETIMEDOUT;
114 }
115
Felipe Balbi8598bde2012-01-02 18:55:57 +0200116 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
117 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
118
119 /* set requested state */
120 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
121 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
122
Paul Zimmerman802fde92012-04-27 13:10:52 +0300123 /*
124 * The following code is racy when called from dwc3_gadget_wakeup,
125 * and is not needed, at least on newer versions
126 */
127 if (dwc->revision >= DWC3_REVISION_194A)
128 return 0;
129
Felipe Balbi8598bde2012-01-02 18:55:57 +0200130 /* wait for a change in DSTS */
Paul Zimmermanaed430e2012-04-27 12:52:01 +0300131 retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200132 while (--retries) {
133 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
134
Felipe Balbi8598bde2012-01-02 18:55:57 +0200135 if (DWC3_DSTS_USBLNKST(reg) == state)
136 return 0;
137
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800138 udelay(5);
Felipe Balbi8598bde2012-01-02 18:55:57 +0200139 }
140
141 dev_vdbg(dwc->dev, "link state change request timed out\n");
142
143 return -ETIMEDOUT;
144}
145
Felipe Balbi457e84b2012-01-18 18:04:09 +0200146/**
147 * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case
148 * @dwc: pointer to our context structure
149 *
150 * This function will a best effort FIFO allocation in order
151 * to improve FIFO usage and throughput, while still allowing
152 * us to enable as many endpoints as possible.
153 *
154 * Keep in mind that this operation will be highly dependent
155 * on the configured size for RAM1 - which contains TxFifo -,
156 * the amount of endpoints enabled on coreConsultant tool, and
157 * the width of the Master Bus.
158 *
159 * In the ideal world, we would always be able to satisfy the
160 * following equation:
161 *
162 * ((512 + 2 * MDWIDTH-Bytes) + (Number of IN Endpoints - 1) * \
163 * (3 * (1024 + MDWIDTH-Bytes) + MDWIDTH-Bytes)) / MDWIDTH-Bytes
164 *
165 * Unfortunately, due to many variables that's not always the case.
166 */
167int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc)
168{
169 int last_fifo_depth = 0;
170 int ram1_depth;
171 int fifo_size;
172 int mdwidth;
173 int num;
174
175 if (!dwc->needs_fifo_resize)
176 return 0;
177
178 ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7);
179 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
180
181 /* MDWIDTH is represented in bits, we need it in bytes */
182 mdwidth >>= 3;
183
184 /*
185 * FIXME For now we will only allocate 1 wMaxPacketSize space
186 * for each enabled endpoint, later patches will come to
187 * improve this algorithm so that we better use the internal
188 * FIFO space
189 */
Jack Pham32702e92014-03-26 10:31:44 -0700190 for (num = 0; num < dwc->num_in_eps; num++) {
191 /* bit0 indicates direction; 1 means IN ep */
192 struct dwc3_ep *dep = dwc->eps[(num << 1) | 1];
Felipe Balbi2e81c362012-02-02 13:01:12 +0200193 int mult = 1;
Felipe Balbi457e84b2012-01-18 18:04:09 +0200194 int tmp;
195
Felipe Balbi457e84b2012-01-18 18:04:09 +0200196 if (!(dep->flags & DWC3_EP_ENABLED))
197 continue;
198
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200199 if (usb_endpoint_xfer_bulk(dep->endpoint.desc)
200 || usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi2e81c362012-02-02 13:01:12 +0200201 mult = 3;
202
203 /*
204 * REVISIT: the following assumes we will always have enough
205 * space available on the FIFO RAM for all possible use cases.
206 * Make sure that's true somehow and change FIFO allocation
207 * accordingly.
208 *
209 * If we have Bulk or Isochronous endpoints, we want
210 * them to be able to be very, very fast. So we're giving
211 * those endpoints a fifo_size which is enough for 3 full
212 * packets
213 */
214 tmp = mult * (dep->endpoint.maxpacket + mdwidth);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200215 tmp += mdwidth;
216
217 fifo_size = DIV_ROUND_UP(tmp, mdwidth);
Felipe Balbi2e81c362012-02-02 13:01:12 +0200218
Felipe Balbi457e84b2012-01-18 18:04:09 +0200219 fifo_size |= (last_fifo_depth << 16);
220
221 dev_vdbg(dwc->dev, "%s: Fifo Addr %04x Size %d\n",
222 dep->name, last_fifo_depth, fifo_size & 0xffff);
223
Jack Pham32702e92014-03-26 10:31:44 -0700224 dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(num), fifo_size);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200225
226 last_fifo_depth += (fifo_size & 0xffff);
227 }
228
229 return 0;
230}
231
Felipe Balbi72246da2011-08-19 18:10:58 +0300232void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
233 int status)
234{
235 struct dwc3 *dwc = dep->dwc;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530236 int i;
Felipe Balbi72246da2011-08-19 18:10:58 +0300237
238 if (req->queued) {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530239 i = 0;
240 do {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200241 dep->busy_slot++;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530242 /*
243 * Skip LINK TRB. We can't use req->trb and check for
244 * DWC3_TRBCTL_LINK_TRB because it points the TRB we
245 * just completed (not the LINK TRB).
246 */
247 if (((dep->busy_slot & DWC3_TRB_MASK) ==
248 DWC3_TRB_NUM- 1) &&
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200249 usb_endpoint_xfer_isoc(dep->endpoint.desc))
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530250 dep->busy_slot++;
251 } while(++i < req->request.num_mapped_sgs);
Pratyush Anandc9fda7d2013-01-14 15:59:38 +0530252 req->queued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300253 }
254 list_del(&req->list);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200255 req->trb = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300256
257 if (req->request.status == -EINPROGRESS)
258 req->request.status = status;
259
Pratyush Anand0416e492012-08-10 13:42:16 +0530260 if (dwc->ep0_bounced && dep->number == 0)
261 dwc->ep0_bounced = false;
262 else
263 usb_gadget_unmap_request(&dwc->gadget, &req->request,
264 req->direction);
Felipe Balbi72246da2011-08-19 18:10:58 +0300265
266 dev_dbg(dwc->dev, "request %p from %s completed %d/%d ===> %d\n",
267 req, dep->name, req->request.actual,
268 req->request.length, status);
269
270 spin_unlock(&dwc->lock);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200271 req->request.complete(&dep->endpoint, &req->request);
Felipe Balbi72246da2011-08-19 18:10:58 +0300272 spin_lock(&dwc->lock);
273}
274
275static const char *dwc3_gadget_ep_cmd_string(u8 cmd)
276{
277 switch (cmd) {
278 case DWC3_DEPCMD_DEPSTARTCFG:
279 return "Start New Configuration";
280 case DWC3_DEPCMD_ENDTRANSFER:
281 return "End Transfer";
282 case DWC3_DEPCMD_UPDATETRANSFER:
283 return "Update Transfer";
284 case DWC3_DEPCMD_STARTTRANSFER:
285 return "Start Transfer";
286 case DWC3_DEPCMD_CLEARSTALL:
287 return "Clear Stall";
288 case DWC3_DEPCMD_SETSTALL:
289 return "Set Stall";
Paul Zimmerman802fde92012-04-27 13:10:52 +0300290 case DWC3_DEPCMD_GETEPSTATE:
291 return "Get Endpoint State";
Felipe Balbi72246da2011-08-19 18:10:58 +0300292 case DWC3_DEPCMD_SETTRANSFRESOURCE:
293 return "Set Endpoint Transfer Resource";
294 case DWC3_DEPCMD_SETEPCONFIG:
295 return "Set Endpoint Configuration";
296 default:
297 return "UNKNOWN command";
298 }
299}
300
Felipe Balbi427c3df2014-04-25 14:14:14 -0500301static const char *dwc3_gadget_generic_cmd_string(u8 cmd)
302{
303 switch (cmd) {
304 case DWC3_DGCMD_SET_LMP:
305 return "Set LMP";
306 case DWC3_DGCMD_SET_PERIODIC_PAR:
307 return "Set Periodic Parameters";
308 case DWC3_DGCMD_XMIT_FUNCTION:
309 return "Transmit Function Wake Device Notification";
310 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO:
311 return "Set Scratchpad Buffer Array Address Lo";
312 case DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI:
313 return "Set Scratchpad Buffer Array Address Hi";
314 case DWC3_DGCMD_SELECTED_FIFO_FLUSH:
315 return "Selected FIFO Flush";
316 case DWC3_DGCMD_ALL_FIFO_FLUSH:
317 return "All FIFO Flush";
318 case DWC3_DGCMD_SET_ENDPOINT_NRDY:
319 return "Set Endpoint NRDY";
320 case DWC3_DGCMD_RUN_SOC_BUS_LOOPBACK:
321 return "Run SoC Bus Loopback Test";
322 default:
323 return "UNKNOWN";
324 }
325}
326
Felipe Balbie57ebc12014-04-22 13:20:12 -0500327static const char *dwc3_gadget_link_string(enum dwc3_link_state link_state)
328{
329 switch (link_state) {
330 case DWC3_LINK_STATE_U0:
331 return "U0";
332 case DWC3_LINK_STATE_U1:
333 return "U1";
334 case DWC3_LINK_STATE_U2:
335 return "U2";
336 case DWC3_LINK_STATE_U3:
337 return "U3";
338 case DWC3_LINK_STATE_SS_DIS:
339 return "SS.Disabled";
340 case DWC3_LINK_STATE_RX_DET:
341 return "RX.Detect";
342 case DWC3_LINK_STATE_SS_INACT:
343 return "SS.Inactive";
344 case DWC3_LINK_STATE_POLL:
345 return "Polling";
346 case DWC3_LINK_STATE_RECOV:
347 return "Recovery";
348 case DWC3_LINK_STATE_HRESET:
349 return "Hot Reset";
350 case DWC3_LINK_STATE_CMPLY:
351 return "Compliance";
352 case DWC3_LINK_STATE_LPBK:
353 return "Loopback";
354 case DWC3_LINK_STATE_RESET:
355 return "Reset";
356 case DWC3_LINK_STATE_RESUME:
357 return "Resume";
358 default:
359 return "UNKNOWN link state\n";
360 }
361}
362
Felipe Balbib09bb642012-04-24 16:19:11 +0300363int dwc3_send_gadget_generic_command(struct dwc3 *dwc, int cmd, u32 param)
364{
365 u32 timeout = 500;
366 u32 reg;
367
Felipe Balbi427c3df2014-04-25 14:14:14 -0500368 dev_vdbg(dwc->dev, "generic cmd '%s' [%d] param %08x\n",
369 dwc3_gadget_generic_cmd_string(cmd), cmd, param);
370
Felipe Balbib09bb642012-04-24 16:19:11 +0300371 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
372 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
373
374 do {
375 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
376 if (!(reg & DWC3_DGCMD_CMDACT)) {
377 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
378 DWC3_DGCMD_STATUS(reg));
379 return 0;
380 }
381
382 /*
383 * We can't sleep here, because it's also called from
384 * interrupt context.
385 */
386 timeout--;
387 if (!timeout)
388 return -ETIMEDOUT;
389 udelay(1);
390 } while (1);
391}
392
Felipe Balbi72246da2011-08-19 18:10:58 +0300393int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep,
394 unsigned cmd, struct dwc3_gadget_ep_cmd_params *params)
395{
396 struct dwc3_ep *dep = dwc->eps[ep];
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200397 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +0300398 u32 reg;
399
Felipe Balbi40cc57c2014-04-25 14:10:02 -0500400 dev_vdbg(dwc->dev, "%s: cmd '%s' [%d] params %08x %08x %08x\n",
Felipe Balbi72246da2011-08-19 18:10:58 +0300401 dep->name,
Felipe Balbi40cc57c2014-04-25 14:10:02 -0500402 dwc3_gadget_ep_cmd_string(cmd), cmd, params->param0,
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300403 params->param1, params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300404
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300405 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR0(ep), params->param0);
406 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR1(ep), params->param1);
407 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR2(ep), params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300408
409 dwc3_writel(dwc->regs, DWC3_DEPCMD(ep), cmd | DWC3_DEPCMD_CMDACT);
410 do {
411 reg = dwc3_readl(dwc->regs, DWC3_DEPCMD(ep));
412 if (!(reg & DWC3_DEPCMD_CMDACT)) {
Felipe Balbi164f6e12011-08-27 20:29:58 +0300413 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
414 DWC3_DEPCMD_STATUS(reg));
Felipe Balbi72246da2011-08-19 18:10:58 +0300415 return 0;
416 }
417
418 /*
Felipe Balbi72246da2011-08-19 18:10:58 +0300419 * We can't sleep here, because it is also called from
420 * interrupt context.
421 */
422 timeout--;
423 if (!timeout)
424 return -ETIMEDOUT;
425
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200426 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300427 } while (1);
428}
429
430static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
Felipe Balbif6bafc62012-02-06 11:04:53 +0200431 struct dwc3_trb *trb)
Felipe Balbi72246da2011-08-19 18:10:58 +0300432{
Paul Zimmermanc439ef82011-09-30 10:58:45 +0300433 u32 offset = (char *) trb - (char *) dep->trb_pool;
Felipe Balbi72246da2011-08-19 18:10:58 +0300434
435 return dep->trb_pool_dma + offset;
436}
437
438static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
439{
440 struct dwc3 *dwc = dep->dwc;
441
442 if (dep->trb_pool)
443 return 0;
444
445 if (dep->number == 0 || dep->number == 1)
446 return 0;
447
448 dep->trb_pool = dma_alloc_coherent(dwc->dev,
449 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
450 &dep->trb_pool_dma, GFP_KERNEL);
451 if (!dep->trb_pool) {
452 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
453 dep->name);
454 return -ENOMEM;
455 }
456
457 return 0;
458}
459
460static void dwc3_free_trb_pool(struct dwc3_ep *dep)
461{
462 struct dwc3 *dwc = dep->dwc;
463
464 dma_free_coherent(dwc->dev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
465 dep->trb_pool, dep->trb_pool_dma);
466
467 dep->trb_pool = NULL;
468 dep->trb_pool_dma = 0;
469}
470
471static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep)
472{
473 struct dwc3_gadget_ep_cmd_params params;
474 u32 cmd;
475
476 memset(&params, 0x00, sizeof(params));
477
478 if (dep->number != 1) {
479 cmd = DWC3_DEPCMD_DEPSTARTCFG;
480 /* XferRscIdx == 0 for ep0 and 2 for the remaining */
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300481 if (dep->number > 1) {
482 if (dwc->start_config_issued)
483 return 0;
484 dwc->start_config_issued = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300485 cmd |= DWC3_DEPCMD_PARAM(2);
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300486 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300487
488 return dwc3_send_gadget_ep_cmd(dwc, 0, cmd, &params);
489 }
490
491 return 0;
492}
493
494static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200495 const struct usb_endpoint_descriptor *desc,
Felipe Balbi4b345c92012-07-16 14:08:16 +0300496 const struct usb_ss_ep_comp_descriptor *comp_desc,
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600497 bool ignore, bool restore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300498{
499 struct dwc3_gadget_ep_cmd_params params;
500
501 memset(&params, 0x00, sizeof(params));
502
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300503 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
Chanho Parkd2e9a132012-08-31 16:54:07 +0900504 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
505
506 /* Burst size is only needed in SuperSpeed mode */
507 if (dwc->gadget.speed == USB_SPEED_SUPER) {
508 u32 burst = dep->endpoint.maxburst - 1;
509
510 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst);
511 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300512
Felipe Balbi4b345c92012-07-16 14:08:16 +0300513 if (ignore)
514 params.param0 |= DWC3_DEPCFG_IGN_SEQ_NUM;
515
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600516 if (restore) {
517 params.param0 |= DWC3_DEPCFG_ACTION_RESTORE;
518 params.param2 |= dep->saved_state;
519 }
520
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300521 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN
522 | DWC3_DEPCFG_XFER_NOT_READY_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300523
Felipe Balbi18b7ede2012-01-02 13:35:41 +0200524 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300525 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
526 | DWC3_DEPCFG_STREAM_EVENT_EN;
Felipe Balbi879631a2011-09-30 10:58:47 +0300527 dep->stream_capable = true;
528 }
529
Felipe Balbi72246da2011-08-19 18:10:58 +0300530 if (usb_endpoint_xfer_isoc(desc))
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300531 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300532
533 /*
534 * We are doing 1:1 mapping for endpoints, meaning
535 * Physical Endpoints 2 maps to Logical Endpoint 2 and
536 * so on. We consider the direction bit as part of the physical
537 * endpoint number. So USB endpoint 0x81 is 0x03.
538 */
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300539 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
Felipe Balbi72246da2011-08-19 18:10:58 +0300540
541 /*
542 * We must use the lower 16 TX FIFOs even though
543 * HW might have more
544 */
545 if (dep->direction)
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300546 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300547
548 if (desc->bInterval) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300549 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300550 dep->interval = 1 << (desc->bInterval - 1);
551 }
552
553 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
554 DWC3_DEPCMD_SETEPCONFIG, &params);
555}
556
557static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep)
558{
559 struct dwc3_gadget_ep_cmd_params params;
560
561 memset(&params, 0x00, sizeof(params));
562
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300563 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300564
565 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
566 DWC3_DEPCMD_SETTRANSFRESOURCE, &params);
567}
568
569/**
570 * __dwc3_gadget_ep_enable - Initializes a HW endpoint
571 * @dep: endpoint to be initialized
572 * @desc: USB Endpoint Descriptor
573 *
574 * Caller should take care of locking
575 */
576static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200577 const struct usb_endpoint_descriptor *desc,
Felipe Balbi4b345c92012-07-16 14:08:16 +0300578 const struct usb_ss_ep_comp_descriptor *comp_desc,
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600579 bool ignore, bool restore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300580{
581 struct dwc3 *dwc = dep->dwc;
582 u32 reg;
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300583 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300584
Felipe Balbiff62d6b2013-07-12 19:09:39 +0300585 dev_vdbg(dwc->dev, "Enabling %s\n", dep->name);
586
Felipe Balbi72246da2011-08-19 18:10:58 +0300587 if (!(dep->flags & DWC3_EP_ENABLED)) {
588 ret = dwc3_gadget_start_config(dwc, dep);
589 if (ret)
590 return ret;
591 }
592
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600593 ret = dwc3_gadget_set_ep_config(dwc, dep, desc, comp_desc, ignore,
594 restore);
Felipe Balbi72246da2011-08-19 18:10:58 +0300595 if (ret)
596 return ret;
597
598 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200599 struct dwc3_trb *trb_st_hw;
600 struct dwc3_trb *trb_link;
Felipe Balbi72246da2011-08-19 18:10:58 +0300601
602 ret = dwc3_gadget_set_xfer_resource(dwc, dep);
603 if (ret)
604 return ret;
605
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200606 dep->endpoint.desc = desc;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200607 dep->comp_desc = comp_desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300608 dep->type = usb_endpoint_type(desc);
609 dep->flags |= DWC3_EP_ENABLED;
610
611 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
612 reg |= DWC3_DALEPENA_EP(dep->number);
613 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
614
615 if (!usb_endpoint_xfer_isoc(desc))
616 return 0;
617
618 memset(&trb_link, 0, sizeof(trb_link));
619
Paul Zimmerman1d046792012-02-15 18:56:56 -0800620 /* Link TRB for ISOC. The HWO bit is never reset */
Felipe Balbi72246da2011-08-19 18:10:58 +0300621 trb_st_hw = &dep->trb_pool[0];
622
Felipe Balbif6bafc62012-02-06 11:04:53 +0200623 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
Felipe Balbi72246da2011-08-19 18:10:58 +0300624
Felipe Balbif6bafc62012-02-06 11:04:53 +0200625 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
626 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
627 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
628 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi72246da2011-08-19 18:10:58 +0300629 }
630
631 return 0;
632}
633
Paul Zimmermanb992e682012-04-27 14:17:35 +0300634static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum, bool force);
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200635static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300636{
637 struct dwc3_request *req;
638
Felipe Balbiea53b882012-02-17 12:10:04 +0200639 if (!list_empty(&dep->req_queued)) {
Paul Zimmermanb992e682012-04-27 14:17:35 +0300640 dwc3_stop_active_transfer(dwc, dep->number, true);
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200641
Pratyush Anand57911502012-07-06 15:19:10 +0530642 /* - giveback all requests to gadget driver */
Pratyush Anand15916332012-06-15 11:54:36 +0530643 while (!list_empty(&dep->req_queued)) {
644 req = next_request(&dep->req_queued);
645
646 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
647 }
Felipe Balbiea53b882012-02-17 12:10:04 +0200648 }
649
Felipe Balbi72246da2011-08-19 18:10:58 +0300650 while (!list_empty(&dep->request_list)) {
651 req = next_request(&dep->request_list);
652
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200653 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbi72246da2011-08-19 18:10:58 +0300654 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300655}
656
657/**
658 * __dwc3_gadget_ep_disable - Disables a HW endpoint
659 * @dep: the endpoint to disable
660 *
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200661 * This function also removes requests which are currently processed ny the
662 * hardware and those which are not yet scheduled.
663 * Caller should take care of locking.
Felipe Balbi72246da2011-08-19 18:10:58 +0300664 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300665static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
666{
667 struct dwc3 *dwc = dep->dwc;
668 u32 reg;
669
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200670 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300671
Felipe Balbi687ef982014-04-16 10:30:33 -0500672 /* make sure HW endpoint isn't stalled */
673 if (dep->flags & DWC3_EP_STALL)
674 __dwc3_gadget_ep_set_halt(dep, 0);
675
Felipe Balbi72246da2011-08-19 18:10:58 +0300676 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
677 reg &= ~DWC3_DALEPENA_EP(dep->number);
678 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
679
Felipe Balbi879631a2011-09-30 10:58:47 +0300680 dep->stream_capable = false;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200681 dep->endpoint.desc = NULL;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200682 dep->comp_desc = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300683 dep->type = 0;
Felipe Balbi879631a2011-09-30 10:58:47 +0300684 dep->flags = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300685
686 return 0;
687}
688
689/* -------------------------------------------------------------------------- */
690
691static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
692 const struct usb_endpoint_descriptor *desc)
693{
694 return -EINVAL;
695}
696
697static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
698{
699 return -EINVAL;
700}
701
702/* -------------------------------------------------------------------------- */
703
704static int dwc3_gadget_ep_enable(struct usb_ep *ep,
705 const struct usb_endpoint_descriptor *desc)
706{
707 struct dwc3_ep *dep;
708 struct dwc3 *dwc;
709 unsigned long flags;
710 int ret;
711
712 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
713 pr_debug("dwc3: invalid parameters\n");
714 return -EINVAL;
715 }
716
717 if (!desc->wMaxPacketSize) {
718 pr_debug("dwc3: missing wMaxPacketSize\n");
719 return -EINVAL;
720 }
721
722 dep = to_dwc3_ep(ep);
723 dwc = dep->dwc;
724
Felipe Balbic6f83f32012-08-15 12:28:29 +0300725 if (dep->flags & DWC3_EP_ENABLED) {
726 dev_WARN_ONCE(dwc->dev, true, "%s is already enabled\n",
727 dep->name);
728 return 0;
729 }
730
Felipe Balbi72246da2011-08-19 18:10:58 +0300731 switch (usb_endpoint_type(desc)) {
732 case USB_ENDPOINT_XFER_CONTROL:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900733 strlcat(dep->name, "-control", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300734 break;
735 case USB_ENDPOINT_XFER_ISOC:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900736 strlcat(dep->name, "-isoc", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300737 break;
738 case USB_ENDPOINT_XFER_BULK:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900739 strlcat(dep->name, "-bulk", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300740 break;
741 case USB_ENDPOINT_XFER_INT:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900742 strlcat(dep->name, "-int", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300743 break;
744 default:
745 dev_err(dwc->dev, "invalid endpoint transfer type\n");
746 }
747
Felipe Balbi72246da2011-08-19 18:10:58 +0300748 spin_lock_irqsave(&dwc->lock, flags);
Paul Zimmerman265b70a2013-12-19 12:38:49 -0600749 ret = __dwc3_gadget_ep_enable(dep, desc, ep->comp_desc, false, false);
Felipe Balbi72246da2011-08-19 18:10:58 +0300750 spin_unlock_irqrestore(&dwc->lock, flags);
751
752 return ret;
753}
754
755static int dwc3_gadget_ep_disable(struct usb_ep *ep)
756{
757 struct dwc3_ep *dep;
758 struct dwc3 *dwc;
759 unsigned long flags;
760 int ret;
761
762 if (!ep) {
763 pr_debug("dwc3: invalid parameters\n");
764 return -EINVAL;
765 }
766
767 dep = to_dwc3_ep(ep);
768 dwc = dep->dwc;
769
770 if (!(dep->flags & DWC3_EP_ENABLED)) {
771 dev_WARN_ONCE(dwc->dev, true, "%s is already disabled\n",
772 dep->name);
773 return 0;
774 }
775
776 snprintf(dep->name, sizeof(dep->name), "ep%d%s",
777 dep->number >> 1,
778 (dep->number & 1) ? "in" : "out");
779
780 spin_lock_irqsave(&dwc->lock, flags);
781 ret = __dwc3_gadget_ep_disable(dep);
782 spin_unlock_irqrestore(&dwc->lock, flags);
783
784 return ret;
785}
786
787static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
788 gfp_t gfp_flags)
789{
790 struct dwc3_request *req;
791 struct dwc3_ep *dep = to_dwc3_ep(ep);
792 struct dwc3 *dwc = dep->dwc;
793
794 req = kzalloc(sizeof(*req), gfp_flags);
795 if (!req) {
796 dev_err(dwc->dev, "not enough memory\n");
797 return NULL;
798 }
799
800 req->epnum = dep->number;
801 req->dep = dep;
Felipe Balbi72246da2011-08-19 18:10:58 +0300802
803 return &req->request;
804}
805
806static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
807 struct usb_request *request)
808{
809 struct dwc3_request *req = to_dwc3_request(request);
810
811 kfree(req);
812}
813
Felipe Balbic71fc372011-11-22 11:37:34 +0200814/**
815 * dwc3_prepare_one_trb - setup one TRB from one request
816 * @dep: endpoint for which this request is prepared
817 * @req: dwc3_request pointer
818 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200819static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
Felipe Balbieeb720f2011-11-28 12:46:59 +0200820 struct dwc3_request *req, dma_addr_t dma,
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530821 unsigned length, unsigned last, unsigned chain, unsigned node)
Felipe Balbic71fc372011-11-22 11:37:34 +0200822{
Felipe Balbieeb720f2011-11-28 12:46:59 +0200823 struct dwc3 *dwc = dep->dwc;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200824 struct dwc3_trb *trb;
Felipe Balbic71fc372011-11-22 11:37:34 +0200825
Felipe Balbieeb720f2011-11-28 12:46:59 +0200826 dev_vdbg(dwc->dev, "%s: req %p dma %08llx length %d%s%s\n",
827 dep->name, req, (unsigned long long) dma,
828 length, last ? " last" : "",
829 chain ? " chain" : "");
830
Pratyush Anand915e2022013-01-14 15:59:35 +0530831
832 trb = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
Felipe Balbic71fc372011-11-22 11:37:34 +0200833
Felipe Balbieeb720f2011-11-28 12:46:59 +0200834 if (!req->trb) {
835 dwc3_gadget_move_request_queued(req);
Felipe Balbif6bafc62012-02-06 11:04:53 +0200836 req->trb = trb;
837 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530838 req->start_slot = dep->free_slot & DWC3_TRB_MASK;
Felipe Balbieeb720f2011-11-28 12:46:59 +0200839 }
Felipe Balbic71fc372011-11-22 11:37:34 +0200840
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530841 dep->free_slot++;
Zhuang Jin Can5cd8c482014-05-16 05:57:57 +0800842 /* Skip the LINK-TRB on ISOC */
843 if (((dep->free_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
844 usb_endpoint_xfer_isoc(dep->endpoint.desc))
845 dep->free_slot++;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530846
Felipe Balbif6bafc62012-02-06 11:04:53 +0200847 trb->size = DWC3_TRB_SIZE_LENGTH(length);
848 trb->bpl = lower_32_bits(dma);
849 trb->bph = upper_32_bits(dma);
Felipe Balbic71fc372011-11-22 11:37:34 +0200850
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200851 switch (usb_endpoint_type(dep->endpoint.desc)) {
Felipe Balbic71fc372011-11-22 11:37:34 +0200852 case USB_ENDPOINT_XFER_CONTROL:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200853 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
Felipe Balbic71fc372011-11-22 11:37:34 +0200854 break;
855
856 case USB_ENDPOINT_XFER_ISOC:
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530857 if (!node)
858 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
859 else
860 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS;
Felipe Balbic71fc372011-11-22 11:37:34 +0200861 break;
862
863 case USB_ENDPOINT_XFER_BULK:
864 case USB_ENDPOINT_XFER_INT:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200865 trb->ctrl = DWC3_TRBCTL_NORMAL;
Felipe Balbic71fc372011-11-22 11:37:34 +0200866 break;
867 default:
868 /*
869 * This is only possible with faulty memory because we
870 * checked it already :)
871 */
872 BUG();
873 }
874
Felipe Balbif3af3652013-12-13 14:19:33 -0600875 if (!req->request.no_interrupt && !chain)
876 trb->ctrl |= DWC3_TRB_CTRL_IOC;
877
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200878 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200879 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
880 trb->ctrl |= DWC3_TRB_CTRL_CSP;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530881 } else if (last) {
882 trb->ctrl |= DWC3_TRB_CTRL_LST;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200883 }
884
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530885 if (chain)
886 trb->ctrl |= DWC3_TRB_CTRL_CHN;
887
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200888 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
Felipe Balbif6bafc62012-02-06 11:04:53 +0200889 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(req->request.stream_id);
890
891 trb->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbic71fc372011-11-22 11:37:34 +0200892}
893
Felipe Balbi72246da2011-08-19 18:10:58 +0300894/*
895 * dwc3_prepare_trbs - setup TRBs from requests
896 * @dep: endpoint for which requests are being prepared
897 * @starting: true if the endpoint is idle and no requests are queued.
898 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800899 * The function goes through the requests list and sets up TRBs for the
900 * transfers. The function returns once there are no more TRBs available or
901 * it runs out of requests.
Felipe Balbi72246da2011-08-19 18:10:58 +0300902 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200903static void dwc3_prepare_trbs(struct dwc3_ep *dep, bool starting)
Felipe Balbi72246da2011-08-19 18:10:58 +0300904{
Felipe Balbi68e823e2011-11-28 12:25:01 +0200905 struct dwc3_request *req, *n;
Felipe Balbi72246da2011-08-19 18:10:58 +0300906 u32 trbs_left;
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200907 u32 max;
Felipe Balbic71fc372011-11-22 11:37:34 +0200908 unsigned int last_one = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300909
910 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
911
912 /* the first request must not be queued */
913 trbs_left = (dep->busy_slot - dep->free_slot) & DWC3_TRB_MASK;
Felipe Balbic71fc372011-11-22 11:37:34 +0200914
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200915 /* Can't wrap around on a non-isoc EP since there's no link TRB */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200916 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200917 max = DWC3_TRB_NUM - (dep->free_slot & DWC3_TRB_MASK);
918 if (trbs_left > max)
919 trbs_left = max;
920 }
921
Felipe Balbi72246da2011-08-19 18:10:58 +0300922 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -0800923 * If busy & slot are equal than it is either full or empty. If we are
924 * starting to process requests then we are empty. Otherwise we are
Felipe Balbi72246da2011-08-19 18:10:58 +0300925 * full and don't do anything
926 */
927 if (!trbs_left) {
928 if (!starting)
Felipe Balbi68e823e2011-11-28 12:25:01 +0200929 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300930 trbs_left = DWC3_TRB_NUM;
931 /*
932 * In case we start from scratch, we queue the ISOC requests
933 * starting from slot 1. This is done because we use ring
934 * buffer and have no LST bit to stop us. Instead, we place
Paul Zimmerman1d046792012-02-15 18:56:56 -0800935 * IOC bit every TRB_NUM/4. We try to avoid having an interrupt
Felipe Balbi72246da2011-08-19 18:10:58 +0300936 * after the first request so we start at slot 1 and have
937 * 7 requests proceed before we hit the first IOC.
938 * Other transfer types don't use the ring buffer and are
939 * processed from the first TRB until the last one. Since we
940 * don't wrap around we have to start at the beginning.
941 */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200942 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300943 dep->busy_slot = 1;
944 dep->free_slot = 1;
945 } else {
946 dep->busy_slot = 0;
947 dep->free_slot = 0;
948 }
949 }
950
951 /* The last TRB is a link TRB, not used for xfer */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200952 if ((trbs_left <= 1) && usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi68e823e2011-11-28 12:25:01 +0200953 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300954
955 list_for_each_entry_safe(req, n, &dep->request_list, list) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200956 unsigned length;
957 dma_addr_t dma;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530958 last_one = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300959
Felipe Balbieeb720f2011-11-28 12:46:59 +0200960 if (req->request.num_mapped_sgs > 0) {
961 struct usb_request *request = &req->request;
962 struct scatterlist *sg = request->sg;
963 struct scatterlist *s;
964 int i;
Felipe Balbi72246da2011-08-19 18:10:58 +0300965
Felipe Balbieeb720f2011-11-28 12:46:59 +0200966 for_each_sg(sg, s, request->num_mapped_sgs, i) {
967 unsigned chain = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300968
Felipe Balbieeb720f2011-11-28 12:46:59 +0200969 length = sg_dma_len(s);
970 dma = sg_dma_address(s);
Felipe Balbi72246da2011-08-19 18:10:58 +0300971
Paul Zimmerman1d046792012-02-15 18:56:56 -0800972 if (i == (request->num_mapped_sgs - 1) ||
973 sg_is_last(s)) {
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530974 if (list_is_last(&req->list,
975 &dep->request_list))
976 last_one = true;
Felipe Balbieeb720f2011-11-28 12:46:59 +0200977 chain = false;
978 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300979
Felipe Balbieeb720f2011-11-28 12:46:59 +0200980 trbs_left--;
981 if (!trbs_left)
982 last_one = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300983
Felipe Balbieeb720f2011-11-28 12:46:59 +0200984 if (last_one)
985 chain = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300986
Felipe Balbieeb720f2011-11-28 12:46:59 +0200987 dwc3_prepare_one_trb(dep, req, dma, length,
Pratyush Anande5ba5ec2013-01-14 15:59:37 +0530988 last_one, chain, i);
Felipe Balbi72246da2011-08-19 18:10:58 +0300989
Felipe Balbieeb720f2011-11-28 12:46:59 +0200990 if (last_one)
991 break;
992 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300993 } else {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200994 dma = req->request.dma;
995 length = req->request.length;
996 trbs_left--;
997
998 if (!trbs_left)
999 last_one = 1;
1000
1001 /* Is this the last request? */
1002 if (list_is_last(&req->list, &dep->request_list))
1003 last_one = 1;
1004
1005 dwc3_prepare_one_trb(dep, req, dma, length,
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301006 last_one, false, 0);
Felipe Balbieeb720f2011-11-28 12:46:59 +02001007
1008 if (last_one)
1009 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03001010 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001011 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001012}
1013
1014static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep, u16 cmd_param,
1015 int start_new)
1016{
1017 struct dwc3_gadget_ep_cmd_params params;
1018 struct dwc3_request *req;
1019 struct dwc3 *dwc = dep->dwc;
1020 int ret;
1021 u32 cmd;
1022
1023 if (start_new && (dep->flags & DWC3_EP_BUSY)) {
1024 dev_vdbg(dwc->dev, "%s: endpoint busy\n", dep->name);
1025 return -EBUSY;
1026 }
1027 dep->flags &= ~DWC3_EP_PENDING_REQUEST;
1028
1029 /*
1030 * If we are getting here after a short-out-packet we don't enqueue any
1031 * new requests as we try to set the IOC bit only on the last request.
1032 */
1033 if (start_new) {
1034 if (list_empty(&dep->req_queued))
1035 dwc3_prepare_trbs(dep, start_new);
1036
1037 /* req points to the first request which will be sent */
1038 req = next_request(&dep->req_queued);
1039 } else {
Felipe Balbi68e823e2011-11-28 12:25:01 +02001040 dwc3_prepare_trbs(dep, start_new);
1041
Felipe Balbi72246da2011-08-19 18:10:58 +03001042 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -08001043 * req points to the first request where HWO changed from 0 to 1
Felipe Balbi72246da2011-08-19 18:10:58 +03001044 */
Felipe Balbi68e823e2011-11-28 12:25:01 +02001045 req = next_request(&dep->req_queued);
Felipe Balbi72246da2011-08-19 18:10:58 +03001046 }
1047 if (!req) {
1048 dep->flags |= DWC3_EP_PENDING_REQUEST;
1049 return 0;
1050 }
1051
1052 memset(&params, 0, sizeof(params));
Felipe Balbi72246da2011-08-19 18:10:58 +03001053
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301054 if (start_new) {
1055 params.param0 = upper_32_bits(req->trb_dma);
1056 params.param1 = lower_32_bits(req->trb_dma);
Felipe Balbi72246da2011-08-19 18:10:58 +03001057 cmd = DWC3_DEPCMD_STARTTRANSFER;
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301058 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03001059 cmd = DWC3_DEPCMD_UPDATETRANSFER;
Pratyush Anand1877d6c2013-01-14 15:59:36 +05301060 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001061
1062 cmd |= DWC3_DEPCMD_PARAM(cmd_param);
1063 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
1064 if (ret < 0) {
1065 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
1066
1067 /*
1068 * FIXME we need to iterate over the list of requests
1069 * here and stop, unmap, free and del each of the linked
Paul Zimmerman1d046792012-02-15 18:56:56 -08001070 * requests instead of what we do now.
Felipe Balbi72246da2011-08-19 18:10:58 +03001071 */
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001072 usb_gadget_unmap_request(&dwc->gadget, &req->request,
1073 req->direction);
Felipe Balbi72246da2011-08-19 18:10:58 +03001074 list_del(&req->list);
1075 return ret;
1076 }
1077
1078 dep->flags |= DWC3_EP_BUSY;
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001079
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001080 if (start_new) {
Felipe Balbib4996a82012-06-06 12:04:13 +03001081 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001082 dep->number);
Felipe Balbib4996a82012-06-06 12:04:13 +03001083 WARN_ON_ONCE(!dep->resource_index);
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001084 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001085
Felipe Balbi72246da2011-08-19 18:10:58 +03001086 return 0;
1087}
1088
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301089static void __dwc3_gadget_start_isoc(struct dwc3 *dwc,
1090 struct dwc3_ep *dep, u32 cur_uf)
1091{
1092 u32 uf;
1093
1094 if (list_empty(&dep->request_list)) {
1095 dev_vdbg(dwc->dev, "ISOC ep %s run out for requests.\n",
1096 dep->name);
Pratyush Anandf4a53c52012-08-30 12:21:43 +05301097 dep->flags |= DWC3_EP_PENDING_REQUEST;
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301098 return;
1099 }
1100
1101 /* 4 micro frames in the future */
1102 uf = cur_uf + dep->interval * 4;
1103
1104 __dwc3_gadget_kick_transfer(dep, uf, 1);
1105}
1106
1107static void dwc3_gadget_start_isoc(struct dwc3 *dwc,
1108 struct dwc3_ep *dep, const struct dwc3_event_depevt *event)
1109{
1110 u32 cur_uf, mask;
1111
1112 mask = ~(dep->interval - 1);
1113 cur_uf = event->parameters & mask;
1114
1115 __dwc3_gadget_start_isoc(dwc, dep, cur_uf);
1116}
1117
Felipe Balbi72246da2011-08-19 18:10:58 +03001118static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1119{
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001120 struct dwc3 *dwc = dep->dwc;
1121 int ret;
1122
Felipe Balbi72246da2011-08-19 18:10:58 +03001123 req->request.actual = 0;
1124 req->request.status = -EINPROGRESS;
1125 req->direction = dep->direction;
1126 req->epnum = dep->number;
1127
1128 /*
1129 * We only add to our list of requests now and
1130 * start consuming the list once we get XferNotReady
1131 * IRQ.
1132 *
1133 * That way, we avoid doing anything that we don't need
1134 * to do now and defer it until the point we receive a
1135 * particular token from the Host side.
1136 *
1137 * This will also avoid Host cancelling URBs due to too
Paul Zimmerman1d046792012-02-15 18:56:56 -08001138 * many NAKs.
Felipe Balbi72246da2011-08-19 18:10:58 +03001139 */
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001140 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
1141 dep->direction);
1142 if (ret)
1143 return ret;
1144
Felipe Balbi72246da2011-08-19 18:10:58 +03001145 list_add_tail(&req->list, &dep->request_list);
1146
1147 /*
Felipe Balbib511e5e2012-06-06 12:00:50 +03001148 * There are a few special cases:
Felipe Balbi72246da2011-08-19 18:10:58 +03001149 *
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001150 * 1. XferNotReady with empty list of requests. We need to kick the
1151 * transfer here in that situation, otherwise we will be NAKing
1152 * forever. If we get XferNotReady before gadget driver has a
1153 * chance to queue a request, we will ACK the IRQ but won't be
1154 * able to receive the data until the next request is queued.
1155 * The following code is handling exactly that.
1156 *
Felipe Balbi72246da2011-08-19 18:10:58 +03001157 */
1158 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
Pratyush Anandf4a53c52012-08-30 12:21:43 +05301159 /*
1160 * If xfernotready is already elapsed and it is a case
1161 * of isoc transfer, then issue END TRANSFER, so that
1162 * you can receive xfernotready again and can have
1163 * notion of current microframe.
1164 */
1165 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Pratyush Anandcdc359d2013-01-14 15:59:34 +05301166 if (list_empty(&dep->req_queued)) {
Paul Zimmermanb992e682012-04-27 14:17:35 +03001167 dwc3_stop_active_transfer(dwc, dep->number, true);
Pratyush Anandcdc359d2013-01-14 15:59:34 +05301168 dep->flags = DWC3_EP_ENABLED;
1169 }
Pratyush Anandf4a53c52012-08-30 12:21:43 +05301170 return 0;
1171 }
1172
Felipe Balbib511e5e2012-06-06 12:00:50 +03001173 ret = __dwc3_gadget_kick_transfer(dep, 0, true);
Moiz Sonasath348e0262012-08-01 14:08:30 -05001174 if (ret && ret != -EBUSY)
Felipe Balbi72246da2011-08-19 18:10:58 +03001175 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1176 dep->name);
Pratyush Anand15f86bd2013-01-14 15:59:33 +05301177 return ret;
Felipe Balbia0925322012-05-22 10:24:11 +03001178 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001179
Felipe Balbib511e5e2012-06-06 12:00:50 +03001180 /*
1181 * 2. XferInProgress on Isoc EP with an active transfer. We need to
1182 * kick the transfer here after queuing a request, otherwise the
1183 * core may not see the modified TRB(s).
1184 */
1185 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
Pratyush Anand79c90462012-08-07 16:54:18 +05301186 (dep->flags & DWC3_EP_BUSY) &&
1187 !(dep->flags & DWC3_EP_MISSED_ISOC)) {
Felipe Balbib4996a82012-06-06 12:04:13 +03001188 WARN_ON_ONCE(!dep->resource_index);
1189 ret = __dwc3_gadget_kick_transfer(dep, dep->resource_index,
Felipe Balbib511e5e2012-06-06 12:00:50 +03001190 false);
Moiz Sonasath348e0262012-08-01 14:08:30 -05001191 if (ret && ret != -EBUSY)
Felipe Balbib511e5e2012-06-06 12:00:50 +03001192 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1193 dep->name);
Pratyush Anand15f86bd2013-01-14 15:59:33 +05301194 return ret;
Felipe Balbib511e5e2012-06-06 12:00:50 +03001195 }
1196
Felipe Balbib997ada2012-07-26 13:26:50 +03001197 /*
1198 * 4. Stream Capable Bulk Endpoints. We need to start the transfer
1199 * right away, otherwise host will not know we have streams to be
1200 * handled.
1201 */
1202 if (dep->stream_capable) {
1203 int ret;
1204
1205 ret = __dwc3_gadget_kick_transfer(dep, 0, true);
1206 if (ret && ret != -EBUSY) {
1207 struct dwc3 *dwc = dep->dwc;
1208
1209 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1210 dep->name);
1211 }
1212 }
1213
Felipe Balbi72246da2011-08-19 18:10:58 +03001214 return 0;
1215}
1216
1217static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1218 gfp_t gfp_flags)
1219{
1220 struct dwc3_request *req = to_dwc3_request(request);
1221 struct dwc3_ep *dep = to_dwc3_ep(ep);
1222 struct dwc3 *dwc = dep->dwc;
1223
1224 unsigned long flags;
1225
1226 int ret;
1227
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001228 if (!dep->endpoint.desc) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001229 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
1230 request, ep->name);
1231 return -ESHUTDOWN;
1232 }
1233
1234 dev_vdbg(dwc->dev, "queing request %p to %s length %d\n",
1235 request, ep->name, request->length);
1236
1237 spin_lock_irqsave(&dwc->lock, flags);
1238 ret = __dwc3_gadget_ep_queue(dep, req);
1239 spin_unlock_irqrestore(&dwc->lock, flags);
1240
1241 return ret;
1242}
1243
1244static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1245 struct usb_request *request)
1246{
1247 struct dwc3_request *req = to_dwc3_request(request);
1248 struct dwc3_request *r = NULL;
1249
1250 struct dwc3_ep *dep = to_dwc3_ep(ep);
1251 struct dwc3 *dwc = dep->dwc;
1252
1253 unsigned long flags;
1254 int ret = 0;
1255
1256 spin_lock_irqsave(&dwc->lock, flags);
1257
1258 list_for_each_entry(r, &dep->request_list, list) {
1259 if (r == req)
1260 break;
1261 }
1262
1263 if (r != req) {
1264 list_for_each_entry(r, &dep->req_queued, list) {
1265 if (r == req)
1266 break;
1267 }
1268 if (r == req) {
1269 /* wait until it is processed */
Paul Zimmermanb992e682012-04-27 14:17:35 +03001270 dwc3_stop_active_transfer(dwc, dep->number, true);
Pratyush Anande8d4e8b2012-06-15 11:54:00 +05301271 goto out1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001272 }
1273 dev_err(dwc->dev, "request %p was not queued to %s\n",
1274 request, ep->name);
1275 ret = -EINVAL;
1276 goto out0;
1277 }
1278
Pratyush Anande8d4e8b2012-06-15 11:54:00 +05301279out1:
Felipe Balbi72246da2011-08-19 18:10:58 +03001280 /* giveback the request */
1281 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1282
1283out0:
1284 spin_unlock_irqrestore(&dwc->lock, flags);
1285
1286 return ret;
1287}
1288
1289int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value)
1290{
1291 struct dwc3_gadget_ep_cmd_params params;
1292 struct dwc3 *dwc = dep->dwc;
1293 int ret;
1294
1295 memset(&params, 0x00, sizeof(params));
1296
1297 if (value) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001298 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1299 DWC3_DEPCMD_SETSTALL, &params);
1300 if (ret)
Dan Carpenter3f892042014-03-07 14:20:22 +03001301 dev_err(dwc->dev, "failed to set STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001302 dep->name);
1303 else
1304 dep->flags |= DWC3_EP_STALL;
1305 } else {
1306 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1307 DWC3_DEPCMD_CLEARSTALL, &params);
1308 if (ret)
Dan Carpenter3f892042014-03-07 14:20:22 +03001309 dev_err(dwc->dev, "failed to clear STALL on %s\n",
Felipe Balbi72246da2011-08-19 18:10:58 +03001310 dep->name);
1311 else
Alan Sterna535d812013-11-01 12:05:12 -04001312 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
Felipe Balbi72246da2011-08-19 18:10:58 +03001313 }
Paul Zimmerman52754552011-09-30 10:58:44 +03001314
Felipe Balbi72246da2011-08-19 18:10:58 +03001315 return ret;
1316}
1317
1318static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1319{
1320 struct dwc3_ep *dep = to_dwc3_ep(ep);
1321 struct dwc3 *dwc = dep->dwc;
1322
1323 unsigned long flags;
1324
1325 int ret;
1326
1327 spin_lock_irqsave(&dwc->lock, flags);
1328
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001329 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001330 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1331 ret = -EINVAL;
1332 goto out;
1333 }
1334
1335 ret = __dwc3_gadget_ep_set_halt(dep, value);
1336out:
1337 spin_unlock_irqrestore(&dwc->lock, flags);
1338
1339 return ret;
1340}
1341
1342static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1343{
1344 struct dwc3_ep *dep = to_dwc3_ep(ep);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001345 struct dwc3 *dwc = dep->dwc;
1346 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001347
Paul Zimmerman249a4562012-02-24 17:32:16 -08001348 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001349 dep->flags |= DWC3_EP_WEDGE;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001350 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001351
Pratyush Anand08f0d962012-06-25 22:40:43 +05301352 if (dep->number == 0 || dep->number == 1)
1353 return dwc3_gadget_ep0_set_halt(ep, 1);
1354 else
1355 return dwc3_gadget_ep_set_halt(ep, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001356}
1357
1358/* -------------------------------------------------------------------------- */
1359
1360static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1361 .bLength = USB_DT_ENDPOINT_SIZE,
1362 .bDescriptorType = USB_DT_ENDPOINT,
1363 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1364};
1365
1366static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1367 .enable = dwc3_gadget_ep0_enable,
1368 .disable = dwc3_gadget_ep0_disable,
1369 .alloc_request = dwc3_gadget_ep_alloc_request,
1370 .free_request = dwc3_gadget_ep_free_request,
1371 .queue = dwc3_gadget_ep0_queue,
1372 .dequeue = dwc3_gadget_ep_dequeue,
Pratyush Anand08f0d962012-06-25 22:40:43 +05301373 .set_halt = dwc3_gadget_ep0_set_halt,
Felipe Balbi72246da2011-08-19 18:10:58 +03001374 .set_wedge = dwc3_gadget_ep_set_wedge,
1375};
1376
1377static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1378 .enable = dwc3_gadget_ep_enable,
1379 .disable = dwc3_gadget_ep_disable,
1380 .alloc_request = dwc3_gadget_ep_alloc_request,
1381 .free_request = dwc3_gadget_ep_free_request,
1382 .queue = dwc3_gadget_ep_queue,
1383 .dequeue = dwc3_gadget_ep_dequeue,
1384 .set_halt = dwc3_gadget_ep_set_halt,
1385 .set_wedge = dwc3_gadget_ep_set_wedge,
1386};
1387
1388/* -------------------------------------------------------------------------- */
1389
1390static int dwc3_gadget_get_frame(struct usb_gadget *g)
1391{
1392 struct dwc3 *dwc = gadget_to_dwc(g);
1393 u32 reg;
1394
1395 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1396 return DWC3_DSTS_SOFFN(reg);
1397}
1398
1399static int dwc3_gadget_wakeup(struct usb_gadget *g)
1400{
1401 struct dwc3 *dwc = gadget_to_dwc(g);
1402
1403 unsigned long timeout;
1404 unsigned long flags;
1405
1406 u32 reg;
1407
1408 int ret = 0;
1409
1410 u8 link_state;
1411 u8 speed;
1412
1413 spin_lock_irqsave(&dwc->lock, flags);
1414
1415 /*
1416 * According to the Databook Remote wakeup request should
1417 * be issued only when the device is in early suspend state.
1418 *
1419 * We can check that via USB Link State bits in DSTS register.
1420 */
1421 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1422
1423 speed = reg & DWC3_DSTS_CONNECTSPD;
1424 if (speed == DWC3_DSTS_SUPERSPEED) {
1425 dev_dbg(dwc->dev, "no wakeup on SuperSpeed\n");
1426 ret = -EINVAL;
1427 goto out;
1428 }
1429
1430 link_state = DWC3_DSTS_USBLNKST(reg);
1431
1432 switch (link_state) {
1433 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
1434 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
1435 break;
1436 default:
1437 dev_dbg(dwc->dev, "can't wakeup from link state %d\n",
1438 link_state);
1439 ret = -EINVAL;
1440 goto out;
1441 }
1442
Felipe Balbi8598bde2012-01-02 18:55:57 +02001443 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
1444 if (ret < 0) {
1445 dev_err(dwc->dev, "failed to put link in Recovery\n");
1446 goto out;
1447 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001448
Paul Zimmerman802fde92012-04-27 13:10:52 +03001449 /* Recent versions do this automatically */
1450 if (dwc->revision < DWC3_REVISION_194A) {
1451 /* write zeroes to Link Change Request */
Felipe Balbifcc023c2012-05-24 10:27:56 +03001452 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Paul Zimmerman802fde92012-04-27 13:10:52 +03001453 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
1454 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1455 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001456
Paul Zimmerman1d046792012-02-15 18:56:56 -08001457 /* poll until Link State changes to ON */
Felipe Balbi72246da2011-08-19 18:10:58 +03001458 timeout = jiffies + msecs_to_jiffies(100);
1459
Paul Zimmerman1d046792012-02-15 18:56:56 -08001460 while (!time_after(jiffies, timeout)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001461 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1462
1463 /* in HS, means ON */
1464 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
1465 break;
1466 }
1467
1468 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
1469 dev_err(dwc->dev, "failed to send remote wakeup\n");
1470 ret = -EINVAL;
1471 }
1472
1473out:
1474 spin_unlock_irqrestore(&dwc->lock, flags);
1475
1476 return ret;
1477}
1478
1479static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
1480 int is_selfpowered)
1481{
1482 struct dwc3 *dwc = gadget_to_dwc(g);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001483 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001484
Paul Zimmerman249a4562012-02-24 17:32:16 -08001485 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001486 dwc->is_selfpowered = !!is_selfpowered;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001487 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001488
1489 return 0;
1490}
1491
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001492static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001493{
1494 u32 reg;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001495 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +03001496
1497 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001498 if (is_on) {
Paul Zimmerman802fde92012-04-27 13:10:52 +03001499 if (dwc->revision <= DWC3_REVISION_187A) {
1500 reg &= ~DWC3_DCTL_TRGTULST_MASK;
1501 reg |= DWC3_DCTL_TRGTULST_RX_DET;
1502 }
1503
1504 if (dwc->revision >= DWC3_REVISION_194A)
1505 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1506 reg |= DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001507
1508 if (dwc->has_hibernation)
1509 reg |= DWC3_DCTL_KEEP_CONNECT;
1510
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02001511 dwc->pullups_connected = true;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001512 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03001513 reg &= ~DWC3_DCTL_RUN_STOP;
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001514
1515 if (dwc->has_hibernation && !suspend)
1516 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1517
Felipe Balbi9fcb3bd2013-02-08 17:55:58 +02001518 dwc->pullups_connected = false;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001519 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001520
1521 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1522
1523 do {
1524 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1525 if (is_on) {
1526 if (!(reg & DWC3_DSTS_DEVCTRLHLT))
1527 break;
1528 } else {
1529 if (reg & DWC3_DSTS_DEVCTRLHLT)
1530 break;
1531 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001532 timeout--;
1533 if (!timeout)
Pratyush Anand6f17f742012-07-02 10:21:55 +05301534 return -ETIMEDOUT;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001535 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001536 } while (1);
1537
1538 dev_vdbg(dwc->dev, "gadget %s data soft-%s\n",
1539 dwc->gadget_driver
1540 ? dwc->gadget_driver->function : "no-function",
1541 is_on ? "connect" : "disconnect");
Pratyush Anand6f17f742012-07-02 10:21:55 +05301542
1543 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001544}
1545
1546static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
1547{
1548 struct dwc3 *dwc = gadget_to_dwc(g);
1549 unsigned long flags;
Pratyush Anand6f17f742012-07-02 10:21:55 +05301550 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001551
1552 is_on = !!is_on;
1553
1554 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi7b2a0362013-12-19 13:43:19 -06001555 ret = dwc3_gadget_run_stop(dwc, is_on, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001556 spin_unlock_irqrestore(&dwc->lock, flags);
1557
Pratyush Anand6f17f742012-07-02 10:21:55 +05301558 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001559}
1560
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001561static void dwc3_gadget_enable_irq(struct dwc3 *dwc)
1562{
1563 u32 reg;
1564
1565 /* Enable all but Start and End of Frame IRQs */
1566 reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
1567 DWC3_DEVTEN_EVNTOVERFLOWEN |
1568 DWC3_DEVTEN_CMDCMPLTEN |
1569 DWC3_DEVTEN_ERRTICERREN |
1570 DWC3_DEVTEN_WKUPEVTEN |
1571 DWC3_DEVTEN_ULSTCNGEN |
1572 DWC3_DEVTEN_CONNECTDONEEN |
1573 DWC3_DEVTEN_USBRSTEN |
1574 DWC3_DEVTEN_DISCONNEVTEN);
1575
1576 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
1577}
1578
1579static void dwc3_gadget_disable_irq(struct dwc3 *dwc)
1580{
1581 /* mask all interrupts */
1582 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
1583}
1584
1585static irqreturn_t dwc3_interrupt(int irq, void *_dwc);
Felipe Balbib15a7622011-06-30 16:57:15 +03001586static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc);
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001587
Felipe Balbi72246da2011-08-19 18:10:58 +03001588static int dwc3_gadget_start(struct usb_gadget *g,
1589 struct usb_gadget_driver *driver)
1590{
1591 struct dwc3 *dwc = gadget_to_dwc(g);
1592 struct dwc3_ep *dep;
1593 unsigned long flags;
1594 int ret = 0;
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001595 int irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03001596 u32 reg;
1597
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001598 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
1599 ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt,
Felipe Balbie8adfc32013-06-12 21:11:14 +03001600 IRQF_SHARED, "dwc3", dwc);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001601 if (ret) {
1602 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
1603 irq, ret);
1604 goto err0;
1605 }
1606
Felipe Balbi72246da2011-08-19 18:10:58 +03001607 spin_lock_irqsave(&dwc->lock, flags);
1608
1609 if (dwc->gadget_driver) {
1610 dev_err(dwc->dev, "%s is already bound to %s\n",
1611 dwc->gadget.name,
1612 dwc->gadget_driver->driver.name);
1613 ret = -EBUSY;
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001614 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001615 }
1616
1617 dwc->gadget_driver = driver;
Felipe Balbi72246da2011-08-19 18:10:58 +03001618
Felipe Balbi72246da2011-08-19 18:10:58 +03001619 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1620 reg &= ~(DWC3_DCFG_SPEED_MASK);
Felipe Balbi07e7f472012-03-23 12:20:31 +02001621
1622 /**
1623 * WORKAROUND: DWC3 revision < 2.20a have an issue
1624 * which would cause metastability state on Run/Stop
1625 * bit if we try to force the IP to USB2-only mode.
1626 *
1627 * Because of that, we cannot configure the IP to any
1628 * speed other than the SuperSpeed
1629 *
1630 * Refers to:
1631 *
1632 * STAR#9000525659: Clock Domain Crossing on DCTL in
1633 * USB 2.0 Mode
1634 */
Felipe Balbif7e846f2013-06-30 14:29:51 +03001635 if (dwc->revision < DWC3_REVISION_220A) {
Felipe Balbi07e7f472012-03-23 12:20:31 +02001636 reg |= DWC3_DCFG_SUPERSPEED;
Felipe Balbif7e846f2013-06-30 14:29:51 +03001637 } else {
1638 switch (dwc->maximum_speed) {
1639 case USB_SPEED_LOW:
1640 reg |= DWC3_DSTS_LOWSPEED;
1641 break;
1642 case USB_SPEED_FULL:
1643 reg |= DWC3_DSTS_FULLSPEED1;
1644 break;
1645 case USB_SPEED_HIGH:
1646 reg |= DWC3_DSTS_HIGHSPEED;
1647 break;
1648 case USB_SPEED_SUPER: /* FALLTHROUGH */
1649 case USB_SPEED_UNKNOWN: /* FALTHROUGH */
1650 default:
1651 reg |= DWC3_DSTS_SUPERSPEED;
1652 }
1653 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001654 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1655
Paul Zimmermanb23c8432011-09-30 10:58:42 +03001656 dwc->start_config_issued = false;
1657
Felipe Balbi72246da2011-08-19 18:10:58 +03001658 /* Start with SuperSpeed Default */
1659 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1660
1661 dep = dwc->eps[0];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06001662 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false,
1663 false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001664 if (ret) {
1665 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001666 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +03001667 }
1668
1669 dep = dwc->eps[1];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06001670 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false,
1671 false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001672 if (ret) {
1673 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001674 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +03001675 }
1676
1677 /* begin to receive SETUP packets */
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001678 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +03001679 dwc3_ep0_out_start(dwc);
1680
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001681 dwc3_gadget_enable_irq(dwc);
1682
Felipe Balbi72246da2011-08-19 18:10:58 +03001683 spin_unlock_irqrestore(&dwc->lock, flags);
1684
1685 return 0;
1686
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001687err3:
Felipe Balbi72246da2011-08-19 18:10:58 +03001688 __dwc3_gadget_ep_disable(dwc->eps[0]);
1689
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001690err2:
Felipe Balbicdcedd62013-07-15 12:36:35 +03001691 dwc->gadget_driver = NULL;
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001692
1693err1:
Felipe Balbi72246da2011-08-19 18:10:58 +03001694 spin_unlock_irqrestore(&dwc->lock, flags);
1695
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001696 free_irq(irq, dwc);
1697
1698err0:
Felipe Balbi72246da2011-08-19 18:10:58 +03001699 return ret;
1700}
1701
1702static int dwc3_gadget_stop(struct usb_gadget *g,
1703 struct usb_gadget_driver *driver)
1704{
1705 struct dwc3 *dwc = gadget_to_dwc(g);
1706 unsigned long flags;
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001707 int irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03001708
1709 spin_lock_irqsave(&dwc->lock, flags);
1710
Felipe Balbi8698e2a2013-02-08 15:24:04 +02001711 dwc3_gadget_disable_irq(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +03001712 __dwc3_gadget_ep_disable(dwc->eps[0]);
1713 __dwc3_gadget_ep_disable(dwc->eps[1]);
1714
1715 dwc->gadget_driver = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +03001716
1717 spin_unlock_irqrestore(&dwc->lock, flags);
1718
Felipe Balbib0d7ffd2013-06-27 10:00:18 +03001719 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
1720 free_irq(irq, dwc);
1721
Felipe Balbi72246da2011-08-19 18:10:58 +03001722 return 0;
1723}
Paul Zimmerman802fde92012-04-27 13:10:52 +03001724
Felipe Balbi72246da2011-08-19 18:10:58 +03001725static const struct usb_gadget_ops dwc3_gadget_ops = {
1726 .get_frame = dwc3_gadget_get_frame,
1727 .wakeup = dwc3_gadget_wakeup,
1728 .set_selfpowered = dwc3_gadget_set_selfpowered,
1729 .pullup = dwc3_gadget_pullup,
1730 .udc_start = dwc3_gadget_start,
1731 .udc_stop = dwc3_gadget_stop,
1732};
1733
1734/* -------------------------------------------------------------------------- */
1735
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001736static int dwc3_gadget_init_hw_endpoints(struct dwc3 *dwc,
1737 u8 num, u32 direction)
Felipe Balbi72246da2011-08-19 18:10:58 +03001738{
1739 struct dwc3_ep *dep;
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001740 u8 i;
Felipe Balbi72246da2011-08-19 18:10:58 +03001741
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001742 for (i = 0; i < num; i++) {
1743 u8 epnum = (i << 1) | (!!direction);
Felipe Balbi72246da2011-08-19 18:10:58 +03001744
Felipe Balbi72246da2011-08-19 18:10:58 +03001745 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
1746 if (!dep) {
1747 dev_err(dwc->dev, "can't allocate endpoint %d\n",
1748 epnum);
1749 return -ENOMEM;
1750 }
1751
1752 dep->dwc = dwc;
1753 dep->number = epnum;
Felipe Balbi9aa62ae2013-07-12 19:10:59 +03001754 dep->direction = !!direction;
Felipe Balbi72246da2011-08-19 18:10:58 +03001755 dwc->eps[epnum] = dep;
1756
1757 snprintf(dep->name, sizeof(dep->name), "ep%d%s", epnum >> 1,
1758 (epnum & 1) ? "in" : "out");
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001759
Felipe Balbi72246da2011-08-19 18:10:58 +03001760 dep->endpoint.name = dep->name;
Felipe Balbi72246da2011-08-19 18:10:58 +03001761
Felipe Balbi653df352013-07-12 19:11:57 +03001762 dev_vdbg(dwc->dev, "initializing %s\n", dep->name);
1763
Felipe Balbi72246da2011-08-19 18:10:58 +03001764 if (epnum == 0 || epnum == 1) {
Robert Baldygae117e742013-12-13 12:23:38 +01001765 usb_ep_set_maxpacket_limit(&dep->endpoint, 512);
Pratyush Anand6048e4c2013-01-18 16:53:56 +05301766 dep->endpoint.maxburst = 1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001767 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
1768 if (!epnum)
1769 dwc->gadget.ep0 = &dep->endpoint;
1770 } else {
1771 int ret;
1772
Robert Baldygae117e742013-12-13 12:23:38 +01001773 usb_ep_set_maxpacket_limit(&dep->endpoint, 1024);
Sebastian Andrzej Siewior12d36c12011-11-03 20:27:50 +01001774 dep->endpoint.max_streams = 15;
Felipe Balbi72246da2011-08-19 18:10:58 +03001775 dep->endpoint.ops = &dwc3_gadget_ep_ops;
1776 list_add_tail(&dep->endpoint.ep_list,
1777 &dwc->gadget.ep_list);
1778
1779 ret = dwc3_alloc_trb_pool(dep);
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001780 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03001781 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001782 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001783
Felipe Balbi72246da2011-08-19 18:10:58 +03001784 INIT_LIST_HEAD(&dep->request_list);
1785 INIT_LIST_HEAD(&dep->req_queued);
1786 }
1787
1788 return 0;
1789}
1790
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001791static int dwc3_gadget_init_endpoints(struct dwc3 *dwc)
1792{
1793 int ret;
1794
1795 INIT_LIST_HEAD(&dwc->gadget.ep_list);
1796
1797 ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_out_eps, 0);
1798 if (ret < 0) {
1799 dev_vdbg(dwc->dev, "failed to allocate OUT endpoints\n");
1800 return ret;
1801 }
1802
1803 ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_in_eps, 1);
1804 if (ret < 0) {
1805 dev_vdbg(dwc->dev, "failed to allocate IN endpoints\n");
1806 return ret;
1807 }
1808
1809 return 0;
1810}
1811
Felipe Balbi72246da2011-08-19 18:10:58 +03001812static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
1813{
1814 struct dwc3_ep *dep;
1815 u8 epnum;
1816
1817 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1818 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03001819 if (!dep)
1820 continue;
George Cherian5bf8fae2013-05-27 14:35:49 +05301821 /*
1822 * Physical endpoints 0 and 1 are special; they form the
1823 * bi-directional USB endpoint 0.
1824 *
1825 * For those two physical endpoints, we don't allocate a TRB
1826 * pool nor do we add them the endpoints list. Due to that, we
1827 * shouldn't do these two operations otherwise we would end up
1828 * with all sorts of bugs when removing dwc3.ko.
1829 */
1830 if (epnum != 0 && epnum != 1) {
1831 dwc3_free_trb_pool(dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03001832 list_del(&dep->endpoint.ep_list);
George Cherian5bf8fae2013-05-27 14:35:49 +05301833 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001834
1835 kfree(dep);
1836 }
1837}
1838
Felipe Balbi72246da2011-08-19 18:10:58 +03001839/* -------------------------------------------------------------------------- */
Felipe Balbie5caff62013-02-26 15:11:05 +02001840
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301841static int __dwc3_cleanup_done_trbs(struct dwc3 *dwc, struct dwc3_ep *dep,
1842 struct dwc3_request *req, struct dwc3_trb *trb,
1843 const struct dwc3_event_depevt *event, int status)
1844{
1845 unsigned int count;
1846 unsigned int s_pkt = 0;
1847 unsigned int trb_status;
1848
1849 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
1850 /*
1851 * We continue despite the error. There is not much we
1852 * can do. If we don't clean it up we loop forever. If
1853 * we skip the TRB then it gets overwritten after a
1854 * while since we use them in a ring buffer. A BUG()
1855 * would help. Lets hope that if this occurs, someone
1856 * fixes the root cause instead of looking away :)
1857 */
1858 dev_err(dwc->dev, "%s's TRB (%p) still owned by HW\n",
1859 dep->name, trb);
1860 count = trb->size & DWC3_TRB_SIZE_MASK;
1861
1862 if (dep->direction) {
1863 if (count) {
1864 trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size);
1865 if (trb_status == DWC3_TRBSTS_MISSED_ISOC) {
1866 dev_dbg(dwc->dev, "incomplete IN transfer %s\n",
1867 dep->name);
1868 /*
1869 * If missed isoc occurred and there is
1870 * no request queued then issue END
1871 * TRANSFER, so that core generates
1872 * next xfernotready and we will issue
1873 * a fresh START TRANSFER.
1874 * If there are still queued request
1875 * then wait, do not issue either END
1876 * or UPDATE TRANSFER, just attach next
1877 * request in request_list during
1878 * giveback.If any future queued request
1879 * is successfully transferred then we
1880 * will issue UPDATE TRANSFER for all
1881 * request in the request_list.
1882 */
1883 dep->flags |= DWC3_EP_MISSED_ISOC;
1884 } else {
1885 dev_err(dwc->dev, "incomplete IN transfer %s\n",
1886 dep->name);
1887 status = -ECONNRESET;
1888 }
1889 } else {
1890 dep->flags &= ~DWC3_EP_MISSED_ISOC;
1891 }
1892 } else {
1893 if (count && (event->status & DEPEVT_STATUS_SHORT))
1894 s_pkt = 1;
1895 }
1896
1897 /*
1898 * We assume here we will always receive the entire data block
1899 * which we should receive. Meaning, if we program RX to
1900 * receive 4K but we receive only 2K, we assume that's all we
1901 * should receive and we simply bounce the request back to the
1902 * gadget driver for further processing.
1903 */
1904 req->request.actual += req->request.length - count;
1905 if (s_pkt)
1906 return 1;
1907 if ((event->status & DEPEVT_STATUS_LST) &&
1908 (trb->ctrl & (DWC3_TRB_CTRL_LST |
1909 DWC3_TRB_CTRL_HWO)))
1910 return 1;
1911 if ((event->status & DEPEVT_STATUS_IOC) &&
1912 (trb->ctrl & DWC3_TRB_CTRL_IOC))
1913 return 1;
1914 return 0;
1915}
1916
Felipe Balbi72246da2011-08-19 18:10:58 +03001917static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
1918 const struct dwc3_event_depevt *event, int status)
1919{
1920 struct dwc3_request *req;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001921 struct dwc3_trb *trb;
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301922 unsigned int slot;
1923 unsigned int i;
1924 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001925
1926 do {
1927 req = next_request(&dep->req_queued);
Sebastian Andrzej Siewiord39ee7b2011-11-03 10:32:20 +01001928 if (!req) {
1929 WARN_ON_ONCE(1);
1930 return 1;
1931 }
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301932 i = 0;
1933 do {
1934 slot = req->start_slot + i;
1935 if ((slot == DWC3_TRB_NUM - 1) &&
1936 usb_endpoint_xfer_isoc(dep->endpoint.desc))
1937 slot++;
1938 slot %= DWC3_TRB_NUM;
1939 trb = &dep->trb_pool[slot];
Felipe Balbi72246da2011-08-19 18:10:58 +03001940
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301941 ret = __dwc3_cleanup_done_trbs(dwc, dep, req, trb,
1942 event, status);
1943 if (ret)
1944 break;
1945 }while (++i < req->request.num_mapped_sgs);
Felipe Balbi72246da2011-08-19 18:10:58 +03001946
Felipe Balbi72246da2011-08-19 18:10:58 +03001947 dwc3_gadget_giveback(dep, req, status);
Pratyush Anande5ba5ec2013-01-14 15:59:37 +05301948
1949 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03001950 break;
1951 } while (1);
1952
Pratyush Anandcdc359d2013-01-14 15:59:34 +05301953 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
1954 list_empty(&dep->req_queued)) {
1955 if (list_empty(&dep->request_list)) {
1956 /*
1957 * If there is no entry in request list then do
1958 * not issue END TRANSFER now. Just set PENDING
1959 * flag, so that END TRANSFER is issued when an
1960 * entry is added into request list.
1961 */
1962 dep->flags = DWC3_EP_PENDING_REQUEST;
1963 } else {
Paul Zimmermanb992e682012-04-27 14:17:35 +03001964 dwc3_stop_active_transfer(dwc, dep->number, true);
Pratyush Anandcdc359d2013-01-14 15:59:34 +05301965 dep->flags = DWC3_EP_ENABLED;
1966 }
Pratyush Anand7efea862013-01-14 15:59:32 +05301967 return 1;
1968 }
1969
Felipe Balbi72246da2011-08-19 18:10:58 +03001970 return 1;
1971}
1972
1973static void dwc3_endpoint_transfer_complete(struct dwc3 *dwc,
1974 struct dwc3_ep *dep, const struct dwc3_event_depevt *event,
1975 int start_new)
1976{
1977 unsigned status = 0;
1978 int clean_busy;
1979
1980 if (event->status & DEPEVT_STATUS_BUSERR)
1981 status = -ECONNRESET;
1982
Paul Zimmerman1d046792012-02-15 18:56:56 -08001983 clean_busy = dwc3_cleanup_done_reqs(dwc, dep, event, status);
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08001984 if (clean_busy)
Felipe Balbi72246da2011-08-19 18:10:58 +03001985 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbifae2b902011-10-14 13:00:30 +03001986
1987 /*
1988 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
1989 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
1990 */
1991 if (dwc->revision < DWC3_REVISION_183A) {
1992 u32 reg;
1993 int i;
1994
1995 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
Moiz Sonasath348e0262012-08-01 14:08:30 -05001996 dep = dwc->eps[i];
Felipe Balbifae2b902011-10-14 13:00:30 +03001997
1998 if (!(dep->flags & DWC3_EP_ENABLED))
1999 continue;
2000
2001 if (!list_empty(&dep->req_queued))
2002 return;
2003 }
2004
2005 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2006 reg |= dwc->u1u2;
2007 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2008
2009 dwc->u1u2 = 0;
2010 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002011}
2012
Felipe Balbi72246da2011-08-19 18:10:58 +03002013static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
2014 const struct dwc3_event_depevt *event)
2015{
2016 struct dwc3_ep *dep;
2017 u8 epnum = event->endpoint_number;
2018
2019 dep = dwc->eps[epnum];
2020
Felipe Balbi3336abb2012-06-06 09:19:35 +03002021 if (!(dep->flags & DWC3_EP_ENABLED))
2022 return;
2023
Felipe Balbi72246da2011-08-19 18:10:58 +03002024 dev_vdbg(dwc->dev, "%s: %s\n", dep->name,
2025 dwc3_ep_event_string(event->endpoint_event));
2026
2027 if (epnum == 0 || epnum == 1) {
2028 dwc3_ep0_interrupt(dwc, event);
2029 return;
2030 }
2031
2032 switch (event->endpoint_event) {
2033 case DWC3_DEPEVT_XFERCOMPLETE:
Felipe Balbib4996a82012-06-06 12:04:13 +03002034 dep->resource_index = 0;
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08002035
Ido Shayevitz16e78db2012-03-12 20:25:24 +02002036 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002037 dev_dbg(dwc->dev, "%s is an Isochronous endpoint\n",
2038 dep->name);
2039 return;
2040 }
2041
2042 dwc3_endpoint_transfer_complete(dwc, dep, event, 1);
2043 break;
2044 case DWC3_DEPEVT_XFERINPROGRESS:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02002045 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002046 dev_dbg(dwc->dev, "%s is not an Isochronous endpoint\n",
2047 dep->name);
2048 return;
2049 }
2050
2051 dwc3_endpoint_transfer_complete(dwc, dep, event, 0);
2052 break;
2053 case DWC3_DEPEVT_XFERNOTREADY:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02002054 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002055 dwc3_gadget_start_isoc(dwc, dep, event);
2056 } else {
2057 int ret;
2058
2059 dev_vdbg(dwc->dev, "%s: reason %s\n",
Felipe Balbi40aa41fb2012-01-18 17:06:03 +02002060 dep->name, event->status &
2061 DEPEVT_STATUS_TRANSFER_ACTIVE
Felipe Balbi72246da2011-08-19 18:10:58 +03002062 ? "Transfer Active"
2063 : "Transfer Not Active");
2064
2065 ret = __dwc3_gadget_kick_transfer(dep, 0, 1);
2066 if (!ret || ret == -EBUSY)
2067 return;
2068
2069 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
2070 dep->name);
2071 }
2072
2073 break;
Felipe Balbi879631a2011-09-30 10:58:47 +03002074 case DWC3_DEPEVT_STREAMEVT:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02002075 if (!usb_endpoint_xfer_bulk(dep->endpoint.desc)) {
Felipe Balbi879631a2011-09-30 10:58:47 +03002076 dev_err(dwc->dev, "Stream event for non-Bulk %s\n",
2077 dep->name);
2078 return;
2079 }
2080
2081 switch (event->status) {
2082 case DEPEVT_STREAMEVT_FOUND:
2083 dev_vdbg(dwc->dev, "Stream %d found and started\n",
2084 event->parameters);
2085
2086 break;
2087 case DEPEVT_STREAMEVT_NOTFOUND:
2088 /* FALLTHROUGH */
2089 default:
2090 dev_dbg(dwc->dev, "Couldn't find suitable stream\n");
2091 }
2092 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002093 case DWC3_DEPEVT_RXTXFIFOEVT:
2094 dev_dbg(dwc->dev, "%s FIFO Overrun\n", dep->name);
2095 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002096 case DWC3_DEPEVT_EPCMDCMPLT:
Felipe Balbiea53b882012-02-17 12:10:04 +02002097 dev_vdbg(dwc->dev, "Endpoint Command Complete\n");
Felipe Balbi72246da2011-08-19 18:10:58 +03002098 break;
2099 }
2100}
2101
2102static void dwc3_disconnect_gadget(struct dwc3 *dwc)
2103{
2104 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
2105 spin_unlock(&dwc->lock);
2106 dwc->gadget_driver->disconnect(&dwc->gadget);
2107 spin_lock(&dwc->lock);
2108 }
2109}
2110
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002111static void dwc3_suspend_gadget(struct dwc3 *dwc)
2112{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03002113 if (dwc->gadget_driver && dwc->gadget_driver->suspend) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002114 spin_unlock(&dwc->lock);
2115 dwc->gadget_driver->suspend(&dwc->gadget);
2116 spin_lock(&dwc->lock);
2117 }
2118}
2119
2120static void dwc3_resume_gadget(struct dwc3 *dwc)
2121{
Dan Carpenter73a30bf2014-03-07 14:19:57 +03002122 if (dwc->gadget_driver && dwc->gadget_driver->resume) {
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002123 spin_unlock(&dwc->lock);
2124 dwc->gadget_driver->resume(&dwc->gadget);
2125 spin_lock(&dwc->lock);
2126 }
2127}
2128
Paul Zimmermanb992e682012-04-27 14:17:35 +03002129static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum, bool force)
Felipe Balbi72246da2011-08-19 18:10:58 +03002130{
2131 struct dwc3_ep *dep;
2132 struct dwc3_gadget_ep_cmd_params params;
2133 u32 cmd;
2134 int ret;
2135
2136 dep = dwc->eps[epnum];
2137
Felipe Balbib4996a82012-06-06 12:04:13 +03002138 if (!dep->resource_index)
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302139 return;
2140
Pratyush Anand57911502012-07-06 15:19:10 +05302141 /*
2142 * NOTICE: We are violating what the Databook says about the
2143 * EndTransfer command. Ideally we would _always_ wait for the
2144 * EndTransfer Command Completion IRQ, but that's causing too
2145 * much trouble synchronizing between us and gadget driver.
2146 *
2147 * We have discussed this with the IP Provider and it was
2148 * suggested to giveback all requests here, but give HW some
2149 * extra time to synchronize with the interconnect. We're using
2150 * an arbitraty 100us delay for that.
2151 *
2152 * Note also that a similar handling was tested by Synopsys
2153 * (thanks a lot Paul) and nothing bad has come out of it.
2154 * In short, what we're doing is:
2155 *
2156 * - Issue EndTransfer WITH CMDIOC bit set
2157 * - Wait 100us
2158 */
2159
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302160 cmd = DWC3_DEPCMD_ENDTRANSFER;
Paul Zimmermanb992e682012-04-27 14:17:35 +03002161 cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0;
2162 cmd |= DWC3_DEPCMD_CMDIOC;
Felipe Balbib4996a82012-06-06 12:04:13 +03002163 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand3daf74d2012-06-23 02:23:08 +05302164 memset(&params, 0, sizeof(params));
2165 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
2166 WARN_ON_ONCE(ret);
Felipe Balbib4996a82012-06-06 12:04:13 +03002167 dep->resource_index = 0;
Felipe Balbi041d81f2012-10-04 11:58:00 +03002168 dep->flags &= ~DWC3_EP_BUSY;
Pratyush Anand57911502012-07-06 15:19:10 +05302169 udelay(100);
Felipe Balbi72246da2011-08-19 18:10:58 +03002170}
2171
2172static void dwc3_stop_active_transfers(struct dwc3 *dwc)
2173{
2174 u32 epnum;
2175
2176 for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2177 struct dwc3_ep *dep;
2178
2179 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002180 if (!dep)
2181 continue;
2182
Felipe Balbi72246da2011-08-19 18:10:58 +03002183 if (!(dep->flags & DWC3_EP_ENABLED))
2184 continue;
2185
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +02002186 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03002187 }
2188}
2189
2190static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
2191{
2192 u32 epnum;
2193
2194 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2195 struct dwc3_ep *dep;
2196 struct dwc3_gadget_ep_cmd_params params;
2197 int ret;
2198
2199 dep = dwc->eps[epnum];
Felipe Balbi6a1e3ef2011-05-05 16:21:59 +03002200 if (!dep)
2201 continue;
Felipe Balbi72246da2011-08-19 18:10:58 +03002202
2203 if (!(dep->flags & DWC3_EP_STALL))
2204 continue;
2205
2206 dep->flags &= ~DWC3_EP_STALL;
2207
2208 memset(&params, 0, sizeof(params));
2209 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
2210 DWC3_DEPCMD_CLEARSTALL, &params);
2211 WARN_ON_ONCE(ret);
2212 }
2213}
2214
2215static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
2216{
Felipe Balbic4430a22012-05-24 10:30:01 +03002217 int reg;
2218
Felipe Balbi72246da2011-08-19 18:10:58 +03002219 dev_vdbg(dwc->dev, "%s\n", __func__);
Felipe Balbi72246da2011-08-19 18:10:58 +03002220
2221 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2222 reg &= ~DWC3_DCTL_INITU1ENA;
2223 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2224
2225 reg &= ~DWC3_DCTL_INITU2ENA;
2226 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002227
Felipe Balbi72246da2011-08-19 18:10:58 +03002228 dwc3_disconnect_gadget(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03002229 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002230
2231 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbidf62df52011-10-14 15:11:49 +03002232 dwc->setup_packet_pending = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002233}
2234
Felipe Balbi72246da2011-08-19 18:10:58 +03002235static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
2236{
2237 u32 reg;
2238
2239 dev_vdbg(dwc->dev, "%s\n", __func__);
2240
Felipe Balbidf62df52011-10-14 15:11:49 +03002241 /*
2242 * WORKAROUND: DWC3 revisions <1.88a have an issue which
2243 * would cause a missing Disconnect Event if there's a
2244 * pending Setup Packet in the FIFO.
2245 *
2246 * There's no suggested workaround on the official Bug
2247 * report, which states that "unless the driver/application
2248 * is doing any special handling of a disconnect event,
2249 * there is no functional issue".
2250 *
2251 * Unfortunately, it turns out that we _do_ some special
2252 * handling of a disconnect event, namely complete all
2253 * pending transfers, notify gadget driver of the
2254 * disconnection, and so on.
2255 *
2256 * Our suggested workaround is to follow the Disconnect
2257 * Event steps here, instead, based on a setup_packet_pending
2258 * flag. Such flag gets set whenever we have a XferNotReady
2259 * event on EP0 and gets cleared on XferComplete for the
2260 * same endpoint.
2261 *
2262 * Refers to:
2263 *
2264 * STAR#9000466709: RTL: Device : Disconnect event not
2265 * generated if setup packet pending in FIFO
2266 */
2267 if (dwc->revision < DWC3_REVISION_188A) {
2268 if (dwc->setup_packet_pending)
2269 dwc3_gadget_disconnect_interrupt(dwc);
2270 }
2271
Felipe Balbi961906e2011-12-20 15:37:21 +02002272 /* after reset -> Default State */
Felipe Balbi14cd5922011-12-19 13:01:52 +02002273 usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
Felipe Balbi961906e2011-12-20 15:37:21 +02002274
Felipe Balbi72246da2011-08-19 18:10:58 +03002275 if (dwc->gadget.speed != USB_SPEED_UNKNOWN)
2276 dwc3_disconnect_gadget(dwc);
2277
2278 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2279 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
2280 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Gerard Cauvy3b637362012-02-10 12:21:18 +02002281 dwc->test_mode = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002282
2283 dwc3_stop_active_transfers(dwc);
2284 dwc3_clear_stall_all_ep(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03002285 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002286
2287 /* Reset device address to zero */
2288 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2289 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
2290 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002291}
2292
2293static void dwc3_update_ram_clk_sel(struct dwc3 *dwc, u32 speed)
2294{
2295 u32 reg;
2296 u32 usb30_clock = DWC3_GCTL_CLK_BUS;
2297
2298 /*
2299 * We change the clock only at SS but I dunno why I would want to do
2300 * this. Maybe it becomes part of the power saving plan.
2301 */
2302
2303 if (speed != DWC3_DSTS_SUPERSPEED)
2304 return;
2305
2306 /*
2307 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
2308 * each time on Connect Done.
2309 */
2310 if (!usb30_clock)
2311 return;
2312
2313 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
2314 reg |= DWC3_GCTL_RAMCLKSEL(usb30_clock);
2315 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
2316}
2317
Felipe Balbi72246da2011-08-19 18:10:58 +03002318static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
2319{
Felipe Balbi72246da2011-08-19 18:10:58 +03002320 struct dwc3_ep *dep;
2321 int ret;
2322 u32 reg;
2323 u8 speed;
2324
2325 dev_vdbg(dwc->dev, "%s\n", __func__);
2326
Felipe Balbi72246da2011-08-19 18:10:58 +03002327 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2328 speed = reg & DWC3_DSTS_CONNECTSPD;
2329 dwc->speed = speed;
2330
2331 dwc3_update_ram_clk_sel(dwc, speed);
2332
2333 switch (speed) {
2334 case DWC3_DCFG_SUPERSPEED:
Felipe Balbi05870c52011-10-14 14:51:38 +03002335 /*
2336 * WORKAROUND: DWC3 revisions <1.90a have an issue which
2337 * would cause a missing USB3 Reset event.
2338 *
2339 * In such situations, we should force a USB3 Reset
2340 * event by calling our dwc3_gadget_reset_interrupt()
2341 * routine.
2342 *
2343 * Refers to:
2344 *
2345 * STAR#9000483510: RTL: SS : USB3 reset event may
2346 * not be generated always when the link enters poll
2347 */
2348 if (dwc->revision < DWC3_REVISION_190A)
2349 dwc3_gadget_reset_interrupt(dwc);
2350
Felipe Balbi72246da2011-08-19 18:10:58 +03002351 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2352 dwc->gadget.ep0->maxpacket = 512;
2353 dwc->gadget.speed = USB_SPEED_SUPER;
2354 break;
2355 case DWC3_DCFG_HIGHSPEED:
2356 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2357 dwc->gadget.ep0->maxpacket = 64;
2358 dwc->gadget.speed = USB_SPEED_HIGH;
2359 break;
2360 case DWC3_DCFG_FULLSPEED2:
2361 case DWC3_DCFG_FULLSPEED1:
2362 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2363 dwc->gadget.ep0->maxpacket = 64;
2364 dwc->gadget.speed = USB_SPEED_FULL;
2365 break;
2366 case DWC3_DCFG_LOWSPEED:
2367 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
2368 dwc->gadget.ep0->maxpacket = 8;
2369 dwc->gadget.speed = USB_SPEED_LOW;
2370 break;
2371 }
2372
Pratyush Anand2b758352013-01-14 15:59:31 +05302373 /* Enable USB2 LPM Capability */
2374
2375 if ((dwc->revision > DWC3_REVISION_194A)
2376 && (speed != DWC3_DCFG_SUPERSPEED)) {
2377 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2378 reg |= DWC3_DCFG_LPM_CAP;
2379 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2380
2381 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2382 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
2383
Felipe Balbi1a947742013-01-24 11:56:11 +02002384 /*
2385 * TODO: This should be configurable. For now using
2386 * maximum allowed HIRD threshold value of 0b1100
2387 */
2388 reg |= DWC3_DCTL_HIRD_THRES(12);
Pratyush Anand2b758352013-01-14 15:59:31 +05302389
2390 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi356363b2013-12-19 16:37:05 -06002391 } else {
2392 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2393 reg &= ~DWC3_DCTL_HIRD_THRES_MASK;
2394 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Pratyush Anand2b758352013-01-14 15:59:31 +05302395 }
2396
Felipe Balbi72246da2011-08-19 18:10:58 +03002397 dep = dwc->eps[0];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06002398 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true,
2399 false);
Felipe Balbi72246da2011-08-19 18:10:58 +03002400 if (ret) {
2401 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2402 return;
2403 }
2404
2405 dep = dwc->eps[1];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06002406 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true,
2407 false);
Felipe Balbi72246da2011-08-19 18:10:58 +03002408 if (ret) {
2409 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2410 return;
2411 }
2412
2413 /*
2414 * Configure PHY via GUSB3PIPECTLn if required.
2415 *
2416 * Update GTXFIFOSIZn
2417 *
2418 * In both cases reset values should be sufficient.
2419 */
2420}
2421
2422static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
2423{
2424 dev_vdbg(dwc->dev, "%s\n", __func__);
2425
2426 /*
2427 * TODO take core out of low power mode when that's
2428 * implemented.
2429 */
2430
2431 dwc->gadget_driver->resume(&dwc->gadget);
2432}
2433
2434static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
2435 unsigned int evtinfo)
2436{
Felipe Balbifae2b902011-10-14 13:00:30 +03002437 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
Felipe Balbi0b0cc1c2012-09-18 21:39:24 +03002438 unsigned int pwropt;
2439
2440 /*
2441 * WORKAROUND: DWC3 < 2.50a have an issue when configured without
2442 * Hibernation mode enabled which would show up when device detects
2443 * host-initiated U3 exit.
2444 *
2445 * In that case, device will generate a Link State Change Interrupt
2446 * from U3 to RESUME which is only necessary if Hibernation is
2447 * configured in.
2448 *
2449 * There are no functional changes due to such spurious event and we
2450 * just need to ignore it.
2451 *
2452 * Refers to:
2453 *
2454 * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation
2455 * operational mode
2456 */
2457 pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1);
2458 if ((dwc->revision < DWC3_REVISION_250A) &&
2459 (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) {
2460 if ((dwc->link_state == DWC3_LINK_STATE_U3) &&
2461 (next == DWC3_LINK_STATE_RESUME)) {
2462 dev_vdbg(dwc->dev, "ignoring transition U3 -> Resume\n");
2463 return;
2464 }
2465 }
Felipe Balbifae2b902011-10-14 13:00:30 +03002466
2467 /*
2468 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
2469 * on the link partner, the USB session might do multiple entry/exit
2470 * of low power states before a transfer takes place.
2471 *
2472 * Due to this problem, we might experience lower throughput. The
2473 * suggested workaround is to disable DCTL[12:9] bits if we're
2474 * transitioning from U1/U2 to U0 and enable those bits again
2475 * after a transfer completes and there are no pending transfers
2476 * on any of the enabled endpoints.
2477 *
2478 * This is the first half of that workaround.
2479 *
2480 * Refers to:
2481 *
2482 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
2483 * core send LGO_Ux entering U0
2484 */
2485 if (dwc->revision < DWC3_REVISION_183A) {
2486 if (next == DWC3_LINK_STATE_U0) {
2487 u32 u1u2;
2488 u32 reg;
2489
2490 switch (dwc->link_state) {
2491 case DWC3_LINK_STATE_U1:
2492 case DWC3_LINK_STATE_U2:
2493 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2494 u1u2 = reg & (DWC3_DCTL_INITU2ENA
2495 | DWC3_DCTL_ACCEPTU2ENA
2496 | DWC3_DCTL_INITU1ENA
2497 | DWC3_DCTL_ACCEPTU1ENA);
2498
2499 if (!dwc->u1u2)
2500 dwc->u1u2 = reg & u1u2;
2501
2502 reg &= ~u1u2;
2503
2504 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2505 break;
2506 default:
2507 /* do nothing */
2508 break;
2509 }
2510 }
2511 }
2512
Felipe Balbibc5ba2e2014-02-26 10:17:07 -06002513 switch (next) {
2514 case DWC3_LINK_STATE_U1:
2515 if (dwc->speed == USB_SPEED_SUPER)
2516 dwc3_suspend_gadget(dwc);
2517 break;
2518 case DWC3_LINK_STATE_U2:
2519 case DWC3_LINK_STATE_U3:
2520 dwc3_suspend_gadget(dwc);
2521 break;
2522 case DWC3_LINK_STATE_RESUME:
2523 dwc3_resume_gadget(dwc);
2524 break;
2525 default:
2526 /* do nothing */
2527 break;
2528 }
2529
Felipe Balbie57ebc12014-04-22 13:20:12 -05002530 dev_vdbg(dwc->dev, "link change: %s [%d] -> %s [%d]\n",
2531 dwc3_gadget_link_string(dwc->link_state),
2532 dwc->link_state, dwc3_gadget_link_string(next), next);
2533
2534 dwc->link_state = next;
Felipe Balbi72246da2011-08-19 18:10:58 +03002535}
2536
Felipe Balbie1dadd32014-02-25 14:47:54 -06002537static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc,
2538 unsigned int evtinfo)
2539{
2540 unsigned int is_ss = evtinfo & BIT(4);
2541
2542 /**
2543 * WORKAROUND: DWC3 revison 2.20a with hibernation support
2544 * have a known issue which can cause USB CV TD.9.23 to fail
2545 * randomly.
2546 *
2547 * Because of this issue, core could generate bogus hibernation
2548 * events which SW needs to ignore.
2549 *
2550 * Refers to:
2551 *
2552 * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0
2553 * Device Fallback from SuperSpeed
2554 */
2555 if (is_ss ^ (dwc->speed == USB_SPEED_SUPER))
2556 return;
2557
2558 /* enter hibernation here */
2559}
2560
Felipe Balbi72246da2011-08-19 18:10:58 +03002561static void dwc3_gadget_interrupt(struct dwc3 *dwc,
2562 const struct dwc3_event_devt *event)
2563{
2564 switch (event->type) {
2565 case DWC3_DEVICE_EVENT_DISCONNECT:
2566 dwc3_gadget_disconnect_interrupt(dwc);
2567 break;
2568 case DWC3_DEVICE_EVENT_RESET:
2569 dwc3_gadget_reset_interrupt(dwc);
2570 break;
2571 case DWC3_DEVICE_EVENT_CONNECT_DONE:
2572 dwc3_gadget_conndone_interrupt(dwc);
2573 break;
2574 case DWC3_DEVICE_EVENT_WAKEUP:
2575 dwc3_gadget_wakeup_interrupt(dwc);
2576 break;
Felipe Balbie1dadd32014-02-25 14:47:54 -06002577 case DWC3_DEVICE_EVENT_HIBER_REQ:
2578 if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation,
2579 "unexpected hibernation event\n"))
2580 break;
2581
2582 dwc3_gadget_hibernation_interrupt(dwc, event->event_info);
2583 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002584 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
2585 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
2586 break;
2587 case DWC3_DEVICE_EVENT_EOPF:
2588 dev_vdbg(dwc->dev, "End of Periodic Frame\n");
2589 break;
2590 case DWC3_DEVICE_EVENT_SOF:
2591 dev_vdbg(dwc->dev, "Start of Periodic Frame\n");
2592 break;
2593 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
2594 dev_vdbg(dwc->dev, "Erratic Error\n");
2595 break;
2596 case DWC3_DEVICE_EVENT_CMD_CMPL:
2597 dev_vdbg(dwc->dev, "Command Complete\n");
2598 break;
2599 case DWC3_DEVICE_EVENT_OVERFLOW:
2600 dev_vdbg(dwc->dev, "Overflow\n");
2601 break;
2602 default:
2603 dev_dbg(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
2604 }
2605}
2606
2607static void dwc3_process_event_entry(struct dwc3 *dwc,
2608 const union dwc3_event *event)
2609{
2610 /* Endpoint IRQ, handle it and return early */
2611 if (event->type.is_devspec == 0) {
2612 /* depevt */
2613 return dwc3_endpoint_interrupt(dwc, &event->depevt);
2614 }
2615
2616 switch (event->type.type) {
2617 case DWC3_EVENT_TYPE_DEV:
2618 dwc3_gadget_interrupt(dwc, &event->devt);
2619 break;
2620 /* REVISIT what to do with Carkit and I2C events ? */
2621 default:
2622 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
2623 }
2624}
2625
Felipe Balbif42f2442013-06-12 21:25:08 +03002626static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc, u32 buf)
2627{
2628 struct dwc3_event_buffer *evt;
2629 irqreturn_t ret = IRQ_NONE;
2630 int left;
2631 u32 reg;
2632
2633 evt = dwc->ev_buffs[buf];
2634 left = evt->count;
2635
2636 if (!(evt->flags & DWC3_EVENT_PENDING))
2637 return IRQ_NONE;
2638
2639 while (left > 0) {
2640 union dwc3_event event;
2641
2642 event.raw = *(u32 *) (evt->buf + evt->lpos);
2643
2644 dwc3_process_event_entry(dwc, &event);
2645
2646 /*
2647 * FIXME we wrap around correctly to the next entry as
2648 * almost all entries are 4 bytes in size. There is one
2649 * entry which has 12 bytes which is a regular entry
2650 * followed by 8 bytes data. ATM I don't know how
2651 * things are organized if we get next to the a
2652 * boundary so I worry about that once we try to handle
2653 * that.
2654 */
2655 evt->lpos = (evt->lpos + 4) % DWC3_EVENT_BUFFERS_SIZE;
2656 left -= 4;
2657
2658 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(buf), 4);
2659 }
2660
2661 evt->count = 0;
2662 evt->flags &= ~DWC3_EVENT_PENDING;
2663 ret = IRQ_HANDLED;
2664
2665 /* Unmask interrupt */
2666 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(buf));
2667 reg &= ~DWC3_GEVNTSIZ_INTMASK;
2668 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(buf), reg);
2669
2670 return ret;
2671}
2672
Felipe Balbib15a7622011-06-30 16:57:15 +03002673static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc)
2674{
2675 struct dwc3 *dwc = _dwc;
2676 unsigned long flags;
2677 irqreturn_t ret = IRQ_NONE;
2678 int i;
2679
2680 spin_lock_irqsave(&dwc->lock, flags);
2681
Felipe Balbif42f2442013-06-12 21:25:08 +03002682 for (i = 0; i < dwc->num_event_buffers; i++)
2683 ret |= dwc3_process_event_buf(dwc, i);
Felipe Balbib15a7622011-06-30 16:57:15 +03002684
2685 spin_unlock_irqrestore(&dwc->lock, flags);
2686
2687 return ret;
2688}
2689
Felipe Balbi7f97aa92013-06-12 21:16:11 +03002690static irqreturn_t dwc3_check_event_buf(struct dwc3 *dwc, u32 buf)
Felipe Balbi72246da2011-08-19 18:10:58 +03002691{
2692 struct dwc3_event_buffer *evt;
Felipe Balbi72246da2011-08-19 18:10:58 +03002693 u32 count;
Felipe Balbie8adfc32013-06-12 21:11:14 +03002694 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +03002695
Felipe Balbib15a7622011-06-30 16:57:15 +03002696 evt = dwc->ev_buffs[buf];
2697
Felipe Balbi72246da2011-08-19 18:10:58 +03002698 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(buf));
2699 count &= DWC3_GEVNTCOUNT_MASK;
2700 if (!count)
2701 return IRQ_NONE;
2702
Felipe Balbib15a7622011-06-30 16:57:15 +03002703 evt->count = count;
2704 evt->flags |= DWC3_EVENT_PENDING;
Felipe Balbi72246da2011-08-19 18:10:58 +03002705
Felipe Balbie8adfc32013-06-12 21:11:14 +03002706 /* Mask interrupt */
2707 reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(buf));
2708 reg |= DWC3_GEVNTSIZ_INTMASK;
2709 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(buf), reg);
2710
Felipe Balbib15a7622011-06-30 16:57:15 +03002711 return IRQ_WAKE_THREAD;
Felipe Balbi72246da2011-08-19 18:10:58 +03002712}
2713
2714static irqreturn_t dwc3_interrupt(int irq, void *_dwc)
2715{
2716 struct dwc3 *dwc = _dwc;
2717 int i;
2718 irqreturn_t ret = IRQ_NONE;
2719
2720 spin_lock(&dwc->lock);
2721
Felipe Balbi9f622b22011-10-12 10:31:04 +03002722 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002723 irqreturn_t status;
2724
Felipe Balbi7f97aa92013-06-12 21:16:11 +03002725 status = dwc3_check_event_buf(dwc, i);
Felipe Balbib15a7622011-06-30 16:57:15 +03002726 if (status == IRQ_WAKE_THREAD)
Felipe Balbi72246da2011-08-19 18:10:58 +03002727 ret = status;
2728 }
2729
2730 spin_unlock(&dwc->lock);
2731
2732 return ret;
2733}
2734
2735/**
2736 * dwc3_gadget_init - Initializes gadget related registers
Paul Zimmerman1d046792012-02-15 18:56:56 -08002737 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +03002738 *
2739 * Returns 0 on success otherwise negative errno.
2740 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002741int dwc3_gadget_init(struct dwc3 *dwc)
Felipe Balbi72246da2011-08-19 18:10:58 +03002742{
Felipe Balbi72246da2011-08-19 18:10:58 +03002743 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03002744
2745 dwc->ctrl_req = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2746 &dwc->ctrl_req_addr, GFP_KERNEL);
2747 if (!dwc->ctrl_req) {
2748 dev_err(dwc->dev, "failed to allocate ctrl request\n");
2749 ret = -ENOMEM;
2750 goto err0;
2751 }
2752
2753 dwc->ep0_trb = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2754 &dwc->ep0_trb_addr, GFP_KERNEL);
2755 if (!dwc->ep0_trb) {
2756 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
2757 ret = -ENOMEM;
2758 goto err1;
2759 }
2760
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002761 dwc->setup_buf = kzalloc(DWC3_EP0_BOUNCE_SIZE, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03002762 if (!dwc->setup_buf) {
2763 dev_err(dwc->dev, "failed to allocate setup buffer\n");
2764 ret = -ENOMEM;
2765 goto err2;
2766 }
2767
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002768 dwc->ep0_bounce = dma_alloc_coherent(dwc->dev,
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002769 DWC3_EP0_BOUNCE_SIZE, &dwc->ep0_bounce_addr,
2770 GFP_KERNEL);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002771 if (!dwc->ep0_bounce) {
2772 dev_err(dwc->dev, "failed to allocate ep0 bounce buffer\n");
2773 ret = -ENOMEM;
2774 goto err3;
2775 }
2776
Felipe Balbi72246da2011-08-19 18:10:58 +03002777 dwc->gadget.ops = &dwc3_gadget_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01002778 dwc->gadget.max_speed = USB_SPEED_SUPER;
Felipe Balbi72246da2011-08-19 18:10:58 +03002779 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbieeb720f2011-11-28 12:46:59 +02002780 dwc->gadget.sg_supported = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03002781 dwc->gadget.name = "dwc3-gadget";
2782
2783 /*
David Cohena4b9d942013-12-09 15:55:38 -08002784 * Per databook, DWC3 needs buffer size to be aligned to MaxPacketSize
2785 * on ep out.
2786 */
2787 dwc->gadget.quirk_ep_out_aligned_size = true;
2788
2789 /*
Felipe Balbi72246da2011-08-19 18:10:58 +03002790 * REVISIT: Here we should clear all pending IRQs to be
2791 * sure we're starting from a well known location.
2792 */
2793
2794 ret = dwc3_gadget_init_endpoints(dwc);
2795 if (ret)
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002796 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03002797
Felipe Balbi72246da2011-08-19 18:10:58 +03002798 ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
2799 if (ret) {
2800 dev_err(dwc->dev, "failed to register udc\n");
David Cohene1f80462013-09-11 17:42:47 -07002801 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03002802 }
2803
2804 return 0;
2805
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002806err4:
David Cohene1f80462013-09-11 17:42:47 -07002807 dwc3_gadget_free_endpoints(dwc);
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002808 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2809 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002810
Felipe Balbi72246da2011-08-19 18:10:58 +03002811err3:
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002812 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002813
2814err2:
2815 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2816 dwc->ep0_trb, dwc->ep0_trb_addr);
2817
2818err1:
2819 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2820 dwc->ctrl_req, dwc->ctrl_req_addr);
2821
2822err0:
2823 return ret;
2824}
2825
Felipe Balbi7415f172012-04-30 14:56:33 +03002826/* -------------------------------------------------------------------------- */
2827
Felipe Balbi72246da2011-08-19 18:10:58 +03002828void dwc3_gadget_exit(struct dwc3 *dwc)
2829{
Felipe Balbi72246da2011-08-19 18:10:58 +03002830 usb_del_gadget_udc(&dwc->gadget);
Felipe Balbi72246da2011-08-19 18:10:58 +03002831
Felipe Balbi72246da2011-08-19 18:10:58 +03002832 dwc3_gadget_free_endpoints(dwc);
2833
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002834 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2835 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002836
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002837 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002838
2839 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2840 dwc->ep0_trb, dwc->ep0_trb_addr);
2841
2842 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2843 dwc->ctrl_req, dwc->ctrl_req_addr);
Felipe Balbi72246da2011-08-19 18:10:58 +03002844}
Felipe Balbi7415f172012-04-30 14:56:33 +03002845
2846int dwc3_gadget_prepare(struct dwc3 *dwc)
2847{
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002848 if (dwc->pullups_connected) {
Felipe Balbi7415f172012-04-30 14:56:33 +03002849 dwc3_gadget_disable_irq(dwc);
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002850 dwc3_gadget_run_stop(dwc, true, true);
2851 }
Felipe Balbi7415f172012-04-30 14:56:33 +03002852
2853 return 0;
2854}
2855
2856void dwc3_gadget_complete(struct dwc3 *dwc)
2857{
2858 if (dwc->pullups_connected) {
2859 dwc3_gadget_enable_irq(dwc);
Felipe Balbi7b2a0362013-12-19 13:43:19 -06002860 dwc3_gadget_run_stop(dwc, true, false);
Felipe Balbi7415f172012-04-30 14:56:33 +03002861 }
2862}
2863
2864int dwc3_gadget_suspend(struct dwc3 *dwc)
2865{
2866 __dwc3_gadget_ep_disable(dwc->eps[0]);
2867 __dwc3_gadget_ep_disable(dwc->eps[1]);
2868
2869 dwc->dcfg = dwc3_readl(dwc->regs, DWC3_DCFG);
2870
2871 return 0;
2872}
2873
2874int dwc3_gadget_resume(struct dwc3 *dwc)
2875{
2876 struct dwc3_ep *dep;
2877 int ret;
2878
2879 /* Start with SuperSpeed Default */
2880 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2881
2882 dep = dwc->eps[0];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06002883 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false,
2884 false);
Felipe Balbi7415f172012-04-30 14:56:33 +03002885 if (ret)
2886 goto err0;
2887
2888 dep = dwc->eps[1];
Paul Zimmerman265b70a2013-12-19 12:38:49 -06002889 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false,
2890 false);
Felipe Balbi7415f172012-04-30 14:56:33 +03002891 if (ret)
2892 goto err1;
2893
2894 /* begin to receive SETUP packets */
2895 dwc->ep0state = EP0_SETUP_PHASE;
2896 dwc3_ep0_out_start(dwc);
2897
2898 dwc3_writel(dwc->regs, DWC3_DCFG, dwc->dcfg);
2899
2900 return 0;
2901
2902err1:
2903 __dwc3_gadget_ep_disable(dwc->eps[0]);
2904
2905err0:
2906 return ret;
2907}