blob: 56949998c23e13bdd783219593f4c9e6a04f9ebc [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 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The names of the above-listed copyright holders may not be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
21 *
22 * ALTERNATIVELY, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2, as published by the Free
24 * Software Foundation.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
27 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
28 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#include <linux/kernel.h>
40#include <linux/delay.h>
41#include <linux/slab.h>
42#include <linux/spinlock.h>
43#include <linux/platform_device.h>
44#include <linux/pm_runtime.h>
45#include <linux/interrupt.h>
46#include <linux/io.h>
47#include <linux/list.h>
48#include <linux/dma-mapping.h>
49
50#include <linux/usb/ch9.h>
51#include <linux/usb/gadget.h>
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +020052#include <linux/usb/otg.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030053
54#include "core.h"
55#include "gadget.h"
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +053056#include "debug.h"
Felipe Balbi72246da2011-08-19 18:10:58 +030057#include "io.h"
58
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020059/**
60 * dwc3_gadget_set_test_mode - Enables USB2 Test Modes
61 * @dwc: pointer to our context structure
62 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
63 *
64 * Caller should take care of locking. This function will
65 * return 0 on success or -EINVAL if wrong Test Selector
66 * is passed
67 */
68int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
69{
70 u32 reg;
71
72 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
73 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
74
75 switch (mode) {
76 case TEST_J:
77 case TEST_K:
78 case TEST_SE0_NAK:
79 case TEST_PACKET:
80 case TEST_FORCE_EN:
81 reg |= mode << 1;
82 break;
83 default:
84 return -EINVAL;
85 }
86
87 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
88
89 return 0;
90}
91
Felipe Balbi8598bde2012-01-02 18:55:57 +020092/**
93 * dwc3_gadget_set_link_state - Sets USB Link to a particular State
94 * @dwc: pointer to our context structure
95 * @state: the state to put link into
96 *
97 * Caller should take care of locking. This function will
Paul Zimmermanaee63e32012-02-24 17:32:15 -080098 * return 0 on success or -ETIMEDOUT.
Felipe Balbi8598bde2012-01-02 18:55:57 +020099 */
100int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
101{
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800102 int retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200103 u32 reg;
104
Paul Zimmerman88df4272012-04-27 13:10:52 +0300105 /*
106 * Wait until device controller is ready. Only applies to 1.94a and
107 * later RTL.
108 */
109 if (dwc->revision >= DWC3_REVISION_194A) {
110 while (--retries) {
111 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
112 if (reg & DWC3_DSTS_DCNRD)
113 udelay(5);
114 else
115 break;
116 }
117
118 if (retries <= 0)
119 return -ETIMEDOUT;
120 }
121
Felipe Balbi8598bde2012-01-02 18:55:57 +0200122 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
123 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
124
125 /* set requested state */
126 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
127 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
128
Paul Zimmerman88df4272012-04-27 13:10:52 +0300129 /*
130 * The following code is racy when called from dwc3_gadget_wakeup,
131 * and is not needed, at least on newer versions
132 */
133 if (dwc->revision >= DWC3_REVISION_194A)
134 return 0;
135
Felipe Balbi8598bde2012-01-02 18:55:57 +0200136 /* wait for a change in DSTS */
Paul Zimmerman8b9388f2012-04-27 12:52:01 +0300137 retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200138 while (--retries) {
139 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
140
Felipe Balbi8598bde2012-01-02 18:55:57 +0200141 if (DWC3_DSTS_USBLNKST(reg) == state)
142 return 0;
143
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800144 udelay(5);
Felipe Balbi8598bde2012-01-02 18:55:57 +0200145 }
146
147 dev_vdbg(dwc->dev, "link state change request timed out\n");
148
149 return -ETIMEDOUT;
150}
151
Felipe Balbi457e84b2012-01-18 18:04:09 +0200152/**
153 * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case
154 * @dwc: pointer to our context structure
155 *
156 * This function will a best effort FIFO allocation in order
157 * to improve FIFO usage and throughput, while still allowing
158 * us to enable as many endpoints as possible.
159 *
160 * Keep in mind that this operation will be highly dependent
161 * on the configured size for RAM1 - which contains TxFifo -,
162 * the amount of endpoints enabled on coreConsultant tool, and
163 * the width of the Master Bus.
164 *
165 * In the ideal world, we would always be able to satisfy the
166 * following equation:
167 *
168 * ((512 + 2 * MDWIDTH-Bytes) + (Number of IN Endpoints - 1) * \
169 * (3 * (1024 + MDWIDTH-Bytes) + MDWIDTH-Bytes)) / MDWIDTH-Bytes
170 *
171 * Unfortunately, due to many variables that's not always the case.
172 */
173int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc)
174{
175 int last_fifo_depth = 0;
176 int ram1_depth;
177 int fifo_size;
178 int mdwidth;
179 int num;
180
181 if (!dwc->needs_fifo_resize)
182 return 0;
183
184 ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7);
185 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
186
187 /* MDWIDTH is represented in bits, we need it in bytes */
188 mdwidth >>= 3;
189
190 /*
191 * FIXME For now we will only allocate 1 wMaxPacketSize space
192 * for each enabled endpoint, later patches will come to
193 * improve this algorithm so that we better use the internal
Vijayavardhan Vennapusadaf082c2013-03-01 13:08:59 +0530194 * FIFO space. Also consider the case where TxFIFO RAM space
195 * may change dynamically based on the USB configuration.
Felipe Balbi457e84b2012-01-18 18:04:09 +0200196 */
197 for (num = 0; num < DWC3_ENDPOINTS_NUM; num++) {
198 struct dwc3_ep *dep = dwc->eps[num];
199 int fifo_number = dep->number >> 1;
Felipe Balbi2e81c362012-02-02 13:01:12 +0200200 int mult = 1;
Felipe Balbi457e84b2012-01-18 18:04:09 +0200201 int tmp;
202
203 if (!(dep->number & 1))
204 continue;
205
206 if (!(dep->flags & DWC3_EP_ENABLED))
207 continue;
208
Vijayavardhan Vennapusadaf082c2013-03-01 13:08:59 +0530209 if (((dep->endpoint.maxburst > 1) &&
210 usb_endpoint_xfer_bulk(dep->endpoint.desc))
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200211 || usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi2e81c362012-02-02 13:01:12 +0200212 mult = 3;
213
214 /*
215 * REVISIT: the following assumes we will always have enough
216 * space available on the FIFO RAM for all possible use cases.
217 * Make sure that's true somehow and change FIFO allocation
218 * accordingly.
219 *
Vijayavardhan Vennapusadaf082c2013-03-01 13:08:59 +0530220 * If we have Bulk (burst only) or Isochronous endpoints, we
221 * want them to be able to be very, very fast. So we're giving
Felipe Balbi2e81c362012-02-02 13:01:12 +0200222 * those endpoints a fifo_size which is enough for 3 full
223 * packets
224 */
225 tmp = mult * (dep->endpoint.maxpacket + mdwidth);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200226 tmp += mdwidth;
227
228 fifo_size = DIV_ROUND_UP(tmp, mdwidth);
Felipe Balbi2e81c362012-02-02 13:01:12 +0200229
Felipe Balbi457e84b2012-01-18 18:04:09 +0200230 fifo_size |= (last_fifo_depth << 16);
231
232 dev_vdbg(dwc->dev, "%s: Fifo Addr %04x Size %d\n",
233 dep->name, last_fifo_depth, fifo_size & 0xffff);
234
235 dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(fifo_number),
236 fifo_size);
237
238 last_fifo_depth += (fifo_size & 0xffff);
239 }
240
241 return 0;
242}
243
Felipe Balbi72246da2011-08-19 18:10:58 +0300244void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
245 int status)
246{
247 struct dwc3 *dwc = dep->dwc;
248
249 if (req->queued) {
Manu Gautam55d34222012-12-19 16:49:47 +0530250 req->queued = false;
251
Felipe Balbieeb720f2011-11-28 12:46:59 +0200252 if (req->request.num_mapped_sgs)
253 dep->busy_slot += req->request.num_mapped_sgs;
254 else
255 dep->busy_slot++;
256
Felipe Balbi72246da2011-08-19 18:10:58 +0300257 /*
258 * Skip LINK TRB. We can't use req->trb and check for
259 * DWC3_TRBCTL_LINK_TRB because it points the TRB we just
260 * completed (not the LINK TRB).
261 */
262 if (((dep->busy_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200263 usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi72246da2011-08-19 18:10:58 +0300264 dep->busy_slot++;
265 }
266 list_del(&req->list);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200267 req->trb = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300268
269 if (req->request.status == -EINPROGRESS)
270 req->request.status = status;
271
Pratyush Anand8d7bf592012-08-10 13:42:16 +0530272 if (dwc->ep0_bounced && dep->number == 0)
273 dwc->ep0_bounced = false;
274 else
275 usb_gadget_unmap_request(&dwc->gadget, &req->request,
276 req->direction);
Felipe Balbi72246da2011-08-19 18:10:58 +0300277
278 dev_dbg(dwc->dev, "request %p from %s completed %d/%d ===> %d\n",
279 req, dep->name, req->request.actual,
280 req->request.length, status);
281
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530282 dbg_done(dep->number, req->request.actual, req->request.status);
Felipe Balbi72246da2011-08-19 18:10:58 +0300283 spin_unlock(&dwc->lock);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200284 req->request.complete(&dep->endpoint, &req->request);
Felipe Balbi72246da2011-08-19 18:10:58 +0300285 spin_lock(&dwc->lock);
286}
287
288static const char *dwc3_gadget_ep_cmd_string(u8 cmd)
289{
290 switch (cmd) {
291 case DWC3_DEPCMD_DEPSTARTCFG:
292 return "Start New Configuration";
293 case DWC3_DEPCMD_ENDTRANSFER:
294 return "End Transfer";
295 case DWC3_DEPCMD_UPDATETRANSFER:
296 return "Update Transfer";
297 case DWC3_DEPCMD_STARTTRANSFER:
298 return "Start Transfer";
299 case DWC3_DEPCMD_CLEARSTALL:
300 return "Clear Stall";
301 case DWC3_DEPCMD_SETSTALL:
302 return "Set Stall";
Paul Zimmerman88df4272012-04-27 13:10:52 +0300303 case DWC3_DEPCMD_GETEPSTATE:
304 return "Get Endpoint State";
Felipe Balbi72246da2011-08-19 18:10:58 +0300305 case DWC3_DEPCMD_SETTRANSFRESOURCE:
306 return "Set Endpoint Transfer Resource";
307 case DWC3_DEPCMD_SETEPCONFIG:
308 return "Set Endpoint Configuration";
309 default:
310 return "UNKNOWN command";
311 }
312}
313
Felipe Balbi573c2762012-04-24 16:19:11 +0300314int dwc3_send_gadget_generic_command(struct dwc3 *dwc, int cmd, u32 param)
315{
316 u32 timeout = 500;
317 u32 reg;
318
319 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
320 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
321
322 do {
323 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
324 if (!(reg & DWC3_DGCMD_CMDACT)) {
325 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
326 DWC3_DGCMD_STATUS(reg));
327 return 0;
328 }
329
330 /*
331 * We can't sleep here, because it's also called from
332 * interrupt context.
333 */
334 timeout--;
335 if (!timeout)
336 return -ETIMEDOUT;
337 udelay(1);
338 } while (1);
339}
340
Felipe Balbi72246da2011-08-19 18:10:58 +0300341int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep,
342 unsigned cmd, struct dwc3_gadget_ep_cmd_params *params)
343{
344 struct dwc3_ep *dep = dwc->eps[ep];
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200345 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +0300346 u32 reg;
347
348 dev_vdbg(dwc->dev, "%s: cmd '%s' params %08x %08x %08x\n",
349 dep->name,
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300350 dwc3_gadget_ep_cmd_string(cmd), params->param0,
351 params->param1, params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300352
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300353 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR0(ep), params->param0);
354 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR1(ep), params->param1);
355 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR2(ep), params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300356
357 dwc3_writel(dwc->regs, DWC3_DEPCMD(ep), cmd | DWC3_DEPCMD_CMDACT);
358 do {
359 reg = dwc3_readl(dwc->regs, DWC3_DEPCMD(ep));
360 if (!(reg & DWC3_DEPCMD_CMDACT)) {
Felipe Balbi164f6e12011-08-27 20:29:58 +0300361 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
362 DWC3_DEPCMD_STATUS(reg));
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +0530363 /* SW issues START TRANSFER command to isochronous ep
364 * with future frame interval. If future interval time
365 * has already passed when core recieves command, core
366 * will respond with an error(bit13 in Command complete
367 * event. Hence return error in this case.
368 */
369 if (reg & 0x2000)
370 return -EAGAIN;
371 else
372 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300373 }
374
375 /*
Felipe Balbi72246da2011-08-19 18:10:58 +0300376 * We can't sleep here, because it is also called from
377 * interrupt context.
378 */
379 timeout--;
380 if (!timeout)
381 return -ETIMEDOUT;
382
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200383 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300384 } while (1);
385}
386
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300387dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
Felipe Balbif6bafc62012-02-06 11:04:53 +0200388 struct dwc3_trb *trb)
Felipe Balbi72246da2011-08-19 18:10:58 +0300389{
Paul Zimmermanc439ef82011-09-30 10:58:45 +0300390 u32 offset = (char *) trb - (char *) dep->trb_pool;
Felipe Balbi72246da2011-08-19 18:10:58 +0300391
392 return dep->trb_pool_dma + offset;
393}
394
395static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
396{
397 struct dwc3 *dwc = dep->dwc;
398
399 if (dep->trb_pool)
400 return 0;
401
402 if (dep->number == 0 || dep->number == 1)
403 return 0;
404
405 dep->trb_pool = dma_alloc_coherent(dwc->dev,
406 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
407 &dep->trb_pool_dma, GFP_KERNEL);
408 if (!dep->trb_pool) {
409 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
410 dep->name);
411 return -ENOMEM;
412 }
413
414 return 0;
415}
416
417static void dwc3_free_trb_pool(struct dwc3_ep *dep)
418{
419 struct dwc3 *dwc = dep->dwc;
420
421 dma_free_coherent(dwc->dev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
422 dep->trb_pool, dep->trb_pool_dma);
423
424 dep->trb_pool = NULL;
425 dep->trb_pool_dma = 0;
426}
427
428static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep)
429{
430 struct dwc3_gadget_ep_cmd_params params;
431 u32 cmd;
432
433 memset(&params, 0x00, sizeof(params));
434
435 if (dep->number != 1) {
436 cmd = DWC3_DEPCMD_DEPSTARTCFG;
437 /* XferRscIdx == 0 for ep0 and 2 for the remaining */
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300438 if (dep->number > 1) {
439 if (dwc->start_config_issued)
440 return 0;
441 dwc->start_config_issued = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300442 cmd |= DWC3_DEPCMD_PARAM(2);
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300443 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300444
445 return dwc3_send_gadget_ep_cmd(dwc, 0, cmd, &params);
446 }
447
448 return 0;
449}
450
451static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200452 const struct usb_endpoint_descriptor *desc,
Felipe Balbi07e0ee82012-07-16 14:08:16 +0300453 const struct usb_ss_ep_comp_descriptor *comp_desc,
454 bool ignore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300455{
456 struct dwc3_gadget_ep_cmd_params params;
457
458 memset(&params, 0x00, sizeof(params));
459
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300460 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
Chanho Parkf0ee6062012-08-31 16:54:07 +0900461 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc));
462
463 /* Burst size is only needed in SuperSpeed mode */
464 if (dwc->gadget.speed == USB_SPEED_SUPER) {
465 u32 burst = dep->endpoint.maxburst - 1;
466
467 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst);
468 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300469
Felipe Balbi07e0ee82012-07-16 14:08:16 +0300470 if (ignore)
471 params.param0 |= DWC3_DEPCFG_IGN_SEQ_NUM;
Felipe Balbi72246da2011-08-19 18:10:58 +0300472
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300473 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN
474 | DWC3_DEPCFG_XFER_NOT_READY_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300475
Felipe Balbi18b7ede2012-01-02 13:35:41 +0200476 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300477 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
478 | DWC3_DEPCFG_STREAM_EVENT_EN;
Felipe Balbi879631a2011-09-30 10:58:47 +0300479 dep->stream_capable = true;
480 }
481
Felipe Balbi72246da2011-08-19 18:10:58 +0300482 if (usb_endpoint_xfer_isoc(desc))
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300483 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300484
485 /*
486 * We are doing 1:1 mapping for endpoints, meaning
487 * Physical Endpoints 2 maps to Logical Endpoint 2 and
488 * so on. We consider the direction bit as part of the physical
489 * endpoint number. So USB endpoint 0x81 is 0x03.
490 */
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300491 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
Felipe Balbi72246da2011-08-19 18:10:58 +0300492
493 /*
494 * We must use the lower 16 TX FIFOs even though
495 * HW might have more
496 */
497 if (dep->direction)
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300498 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300499
500 if (desc->bInterval) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300501 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300502 dep->interval = 1 << (desc->bInterval - 1);
503 }
504
505 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
506 DWC3_DEPCMD_SETEPCONFIG, &params);
507}
508
509static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep)
510{
511 struct dwc3_gadget_ep_cmd_params params;
512
513 memset(&params, 0x00, sizeof(params));
514
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300515 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300516
517 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
518 DWC3_DEPCMD_SETTRANSFRESOURCE, &params);
519}
520
521/**
522 * __dwc3_gadget_ep_enable - Initializes a HW endpoint
523 * @dep: endpoint to be initialized
524 * @desc: USB Endpoint Descriptor
525 *
526 * Caller should take care of locking
527 */
528static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200529 const struct usb_endpoint_descriptor *desc,
Felipe Balbi07e0ee82012-07-16 14:08:16 +0300530 const struct usb_ss_ep_comp_descriptor *comp_desc,
531 bool ignore)
Felipe Balbi72246da2011-08-19 18:10:58 +0300532{
533 struct dwc3 *dwc = dep->dwc;
534 u32 reg;
535 int ret = -ENOMEM;
536
537 if (!(dep->flags & DWC3_EP_ENABLED)) {
538 ret = dwc3_gadget_start_config(dwc, dep);
539 if (ret)
540 return ret;
541 }
542
Felipe Balbi07e0ee82012-07-16 14:08:16 +0300543 ret = dwc3_gadget_set_ep_config(dwc, dep, desc, comp_desc, ignore);
Felipe Balbi72246da2011-08-19 18:10:58 +0300544 if (ret)
545 return ret;
546
547 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200548 struct dwc3_trb *trb_st_hw;
549 struct dwc3_trb *trb_link;
Felipe Balbi72246da2011-08-19 18:10:58 +0300550
551 ret = dwc3_gadget_set_xfer_resource(dwc, dep);
552 if (ret)
553 return ret;
554
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200555 dep->endpoint.desc = desc;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200556 dep->comp_desc = comp_desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300557 dep->type = usb_endpoint_type(desc);
558 dep->flags |= DWC3_EP_ENABLED;
559
560 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
561 reg |= DWC3_DALEPENA_EP(dep->number);
562 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
563
564 if (!usb_endpoint_xfer_isoc(desc))
565 return 0;
566
567 memset(&trb_link, 0, sizeof(trb_link));
568
Paul Zimmerman1d046792012-02-15 18:56:56 -0800569 /* Link TRB for ISOC. The HWO bit is never reset */
Felipe Balbi72246da2011-08-19 18:10:58 +0300570 trb_st_hw = &dep->trb_pool[0];
571
Felipe Balbif6bafc62012-02-06 11:04:53 +0200572 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
Felipe Balbi72246da2011-08-19 18:10:58 +0300573
Felipe Balbif6bafc62012-02-06 11:04:53 +0200574 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
575 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
576 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
577 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi72246da2011-08-19 18:10:58 +0300578 }
579
580 return 0;
581}
582
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200583static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum);
584static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300585{
586 struct dwc3_request *req;
587
Felipe Balbib129eb72012-02-17 12:10:04 +0200588 if (!list_empty(&dep->req_queued)) {
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200589 dwc3_stop_active_transfer(dwc, dep->number);
590
Pratyush Anande67fdeb2012-07-06 15:19:10 +0530591 /* - giveback all requests to gadget driver */
Pratyush Anand110ff602012-06-15 11:54:36 +0530592 while (!list_empty(&dep->req_queued)) {
593 req = next_request(&dep->req_queued);
594
595 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
596 }
Felipe Balbib129eb72012-02-17 12:10:04 +0200597 }
598
Felipe Balbi72246da2011-08-19 18:10:58 +0300599 while (!list_empty(&dep->request_list)) {
600 req = next_request(&dep->request_list);
601
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200602 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbi72246da2011-08-19 18:10:58 +0300603 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300604}
605
606/**
607 * __dwc3_gadget_ep_disable - Disables a HW endpoint
608 * @dep: the endpoint to disable
609 *
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200610 * This function also removes requests which are currently processed ny the
611 * hardware and those which are not yet scheduled.
612 * Caller should take care of locking.
Felipe Balbi72246da2011-08-19 18:10:58 +0300613 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300614static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
615{
616 struct dwc3 *dwc = dep->dwc;
617 u32 reg;
618
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200619 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300620
621 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
622 reg &= ~DWC3_DALEPENA_EP(dep->number);
623 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
624
Felipe Balbi879631a2011-09-30 10:58:47 +0300625 dep->stream_capable = false;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200626 dep->endpoint.desc = NULL;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200627 dep->comp_desc = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300628 dep->type = 0;
Felipe Balbi879631a2011-09-30 10:58:47 +0300629 dep->flags = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300630
631 return 0;
632}
633
634/* -------------------------------------------------------------------------- */
635
636static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
637 const struct usb_endpoint_descriptor *desc)
638{
639 return -EINVAL;
640}
641
642static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
643{
644 return -EINVAL;
645}
646
647/* -------------------------------------------------------------------------- */
648
649static int dwc3_gadget_ep_enable(struct usb_ep *ep,
650 const struct usb_endpoint_descriptor *desc)
651{
652 struct dwc3_ep *dep;
653 struct dwc3 *dwc;
654 unsigned long flags;
655 int ret;
656
657 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
658 pr_debug("dwc3: invalid parameters\n");
659 return -EINVAL;
660 }
661
662 if (!desc->wMaxPacketSize) {
663 pr_debug("dwc3: missing wMaxPacketSize\n");
664 return -EINVAL;
665 }
666
667 dep = to_dwc3_ep(ep);
668 dwc = dep->dwc;
669
Felipe Balbi14395072012-08-15 12:28:29 +0300670 if (dep->flags & DWC3_EP_ENABLED) {
671 dev_WARN_ONCE(dwc->dev, true, "%s is already enabled\n",
672 dep->name);
673 return 0;
674 }
675
Felipe Balbi72246da2011-08-19 18:10:58 +0300676 switch (usb_endpoint_type(desc)) {
677 case USB_ENDPOINT_XFER_CONTROL:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900678 strlcat(dep->name, "-control", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300679 break;
680 case USB_ENDPOINT_XFER_ISOC:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900681 strlcat(dep->name, "-isoc", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300682 break;
683 case USB_ENDPOINT_XFER_BULK:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900684 strlcat(dep->name, "-bulk", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300685 break;
686 case USB_ENDPOINT_XFER_INT:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900687 strlcat(dep->name, "-int", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300688 break;
689 default:
690 dev_err(dwc->dev, "invalid endpoint transfer type\n");
691 }
692
Felipe Balbi72246da2011-08-19 18:10:58 +0300693 dev_vdbg(dwc->dev, "Enabling %s\n", dep->name);
694
695 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi07e0ee82012-07-16 14:08:16 +0300696 ret = __dwc3_gadget_ep_enable(dep, desc, ep->comp_desc, false);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530697 dbg_event(dep->number, "ENABLE", ret);
Felipe Balbi72246da2011-08-19 18:10:58 +0300698 spin_unlock_irqrestore(&dwc->lock, flags);
699
700 return ret;
701}
702
703static int dwc3_gadget_ep_disable(struct usb_ep *ep)
704{
705 struct dwc3_ep *dep;
706 struct dwc3 *dwc;
707 unsigned long flags;
708 int ret;
709
710 if (!ep) {
711 pr_debug("dwc3: invalid parameters\n");
712 return -EINVAL;
713 }
714
715 dep = to_dwc3_ep(ep);
716 dwc = dep->dwc;
717
718 if (!(dep->flags & DWC3_EP_ENABLED)) {
719 dev_WARN_ONCE(dwc->dev, true, "%s is already disabled\n",
720 dep->name);
721 return 0;
722 }
723
724 snprintf(dep->name, sizeof(dep->name), "ep%d%s",
725 dep->number >> 1,
726 (dep->number & 1) ? "in" : "out");
727
728 spin_lock_irqsave(&dwc->lock, flags);
729 ret = __dwc3_gadget_ep_disable(dep);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530730 dbg_event(dep->number, "DISABLE", ret);
Felipe Balbi72246da2011-08-19 18:10:58 +0300731 spin_unlock_irqrestore(&dwc->lock, flags);
732
733 return ret;
734}
735
736static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
737 gfp_t gfp_flags)
738{
739 struct dwc3_request *req;
740 struct dwc3_ep *dep = to_dwc3_ep(ep);
741 struct dwc3 *dwc = dep->dwc;
742
743 req = kzalloc(sizeof(*req), gfp_flags);
744 if (!req) {
745 dev_err(dwc->dev, "not enough memory\n");
746 return NULL;
747 }
748
749 req->epnum = dep->number;
750 req->dep = dep;
Felipe Balbi72246da2011-08-19 18:10:58 +0300751
752 return &req->request;
753}
754
755static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
756 struct usb_request *request)
757{
758 struct dwc3_request *req = to_dwc3_request(request);
759
760 kfree(req);
761}
762
Felipe Balbic71fc372011-11-22 11:37:34 +0200763/**
764 * dwc3_prepare_one_trb - setup one TRB from one request
765 * @dep: endpoint for which this request is prepared
766 * @req: dwc3_request pointer
767 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200768static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
Felipe Balbieeb720f2011-11-28 12:46:59 +0200769 struct dwc3_request *req, dma_addr_t dma,
770 unsigned length, unsigned last, unsigned chain)
Felipe Balbic71fc372011-11-22 11:37:34 +0200771{
Felipe Balbieeb720f2011-11-28 12:46:59 +0200772 struct dwc3 *dwc = dep->dwc;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200773 struct dwc3_trb *trb;
Felipe Balbic71fc372011-11-22 11:37:34 +0200774
775 unsigned int cur_slot;
776
Felipe Balbieeb720f2011-11-28 12:46:59 +0200777 dev_vdbg(dwc->dev, "%s: req %p dma %08llx length %d%s%s\n",
778 dep->name, req, (unsigned long long) dma,
779 length, last ? " last" : "",
780 chain ? " chain" : "");
781
Felipe Balbif6bafc62012-02-06 11:04:53 +0200782 trb = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
Felipe Balbic71fc372011-11-22 11:37:34 +0200783 cur_slot = dep->free_slot;
784 dep->free_slot++;
785
786 /* Skip the LINK-TRB on ISOC */
Vijayavardhan Vennapusa2a444ad2013-02-01 13:20:59 +0530787 if (((dep->free_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200788 usb_endpoint_xfer_isoc(dep->endpoint.desc))
Vijayavardhan Vennapusa2a444ad2013-02-01 13:20:59 +0530789 dep->free_slot++;
Felipe Balbic71fc372011-11-22 11:37:34 +0200790
Felipe Balbieeb720f2011-11-28 12:46:59 +0200791 if (!req->trb) {
792 dwc3_gadget_move_request_queued(req);
Felipe Balbif6bafc62012-02-06 11:04:53 +0200793 req->trb = trb;
794 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200795 }
Felipe Balbic71fc372011-11-22 11:37:34 +0200796
Felipe Balbif6bafc62012-02-06 11:04:53 +0200797 trb->size = DWC3_TRB_SIZE_LENGTH(length);
798 trb->bpl = lower_32_bits(dma);
799 trb->bph = upper_32_bits(dma);
Felipe Balbic71fc372011-11-22 11:37:34 +0200800
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200801 switch (usb_endpoint_type(dep->endpoint.desc)) {
Felipe Balbic71fc372011-11-22 11:37:34 +0200802 case USB_ENDPOINT_XFER_CONTROL:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200803 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
Felipe Balbic71fc372011-11-22 11:37:34 +0200804 break;
805
806 case USB_ENDPOINT_XFER_ISOC:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200807 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
Felipe Balbic71fc372011-11-22 11:37:34 +0200808
Pratyush Ananddf023422012-05-21 12:42:54 +0530809 if (!req->request.no_interrupt)
Felipe Balbif6bafc62012-02-06 11:04:53 +0200810 trb->ctrl |= DWC3_TRB_CTRL_IOC;
Felipe Balbic71fc372011-11-22 11:37:34 +0200811 break;
812
813 case USB_ENDPOINT_XFER_BULK:
814 case USB_ENDPOINT_XFER_INT:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200815 trb->ctrl = DWC3_TRBCTL_NORMAL;
Felipe Balbic71fc372011-11-22 11:37:34 +0200816 break;
817 default:
818 /*
819 * This is only possible with faulty memory because we
820 * checked it already :)
821 */
822 BUG();
823 }
824
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200825 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200826 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
827 trb->ctrl |= DWC3_TRB_CTRL_CSP;
828 } else {
829 if (chain)
830 trb->ctrl |= DWC3_TRB_CTRL_CHN;
Felipe Balbic71fc372011-11-22 11:37:34 +0200831
Felipe Balbif6bafc62012-02-06 11:04:53 +0200832 if (last)
833 trb->ctrl |= DWC3_TRB_CTRL_LST;
834 }
835
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200836 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
Felipe Balbif6bafc62012-02-06 11:04:53 +0200837 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(req->request.stream_id);
838
839 trb->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbic71fc372011-11-22 11:37:34 +0200840}
841
Felipe Balbi72246da2011-08-19 18:10:58 +0300842/*
843 * dwc3_prepare_trbs - setup TRBs from requests
844 * @dep: endpoint for which requests are being prepared
845 * @starting: true if the endpoint is idle and no requests are queued.
846 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800847 * The function goes through the requests list and sets up TRBs for the
848 * transfers. The function returns once there are no more TRBs available or
849 * it runs out of requests.
Felipe Balbi72246da2011-08-19 18:10:58 +0300850 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200851static void dwc3_prepare_trbs(struct dwc3_ep *dep, bool starting)
Felipe Balbi72246da2011-08-19 18:10:58 +0300852{
Felipe Balbi68e823e2011-11-28 12:25:01 +0200853 struct dwc3_request *req, *n;
Felipe Balbi72246da2011-08-19 18:10:58 +0300854 u32 trbs_left;
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200855 u32 max;
Felipe Balbic71fc372011-11-22 11:37:34 +0200856 unsigned int last_one = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300857
858 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
859
860 /* the first request must not be queued */
861 trbs_left = (dep->busy_slot - dep->free_slot) & DWC3_TRB_MASK;
Felipe Balbic71fc372011-11-22 11:37:34 +0200862
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200863 /* Can't wrap around on a non-isoc EP since there's no link TRB */
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200864 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200865 max = DWC3_TRB_NUM - (dep->free_slot & DWC3_TRB_MASK);
866 if (trbs_left > max)
867 trbs_left = max;
868 }
869
Felipe Balbi72246da2011-08-19 18:10:58 +0300870 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -0800871 * If busy & slot are equal than it is either full or empty. If we are
872 * starting to process requests then we are empty. Otherwise we are
Felipe Balbi72246da2011-08-19 18:10:58 +0300873 * full and don't do anything
874 */
875 if (!trbs_left) {
876 if (!starting)
Felipe Balbi68e823e2011-11-28 12:25:01 +0200877 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300878 trbs_left = DWC3_TRB_NUM;
879 /*
880 * In case we start from scratch, we queue the ISOC requests
881 * starting from slot 1. This is done because we use ring
882 * buffer and have no LST bit to stop us. Instead, we place
Paul Zimmerman1d046792012-02-15 18:56:56 -0800883 * IOC bit every TRB_NUM/4. We try to avoid having an interrupt
Felipe Balbi72246da2011-08-19 18:10:58 +0300884 * after the first request so we start at slot 1 and have
885 * 7 requests proceed before we hit the first IOC.
886 * Other transfer types don't use the ring buffer and are
887 * processed from the first TRB until the last one. Since we
888 * don't wrap around we have to start at the beginning.
889 */
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200890 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300891 dep->busy_slot = 1;
892 dep->free_slot = 1;
893 } else {
894 dep->busy_slot = 0;
895 dep->free_slot = 0;
896 }
897 }
898
899 /* The last TRB is a link TRB, not used for xfer */
Ido Shayevitz57cdac12012-03-12 20:25:24 +0200900 if ((trbs_left <= 1) && usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi68e823e2011-11-28 12:25:01 +0200901 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300902
903 list_for_each_entry_safe(req, n, &dep->request_list, list) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200904 unsigned length;
905 dma_addr_t dma;
Felipe Balbi72246da2011-08-19 18:10:58 +0300906
Felipe Balbieeb720f2011-11-28 12:46:59 +0200907 if (req->request.num_mapped_sgs > 0) {
908 struct usb_request *request = &req->request;
909 struct scatterlist *sg = request->sg;
910 struct scatterlist *s;
911 int i;
Felipe Balbi72246da2011-08-19 18:10:58 +0300912
Felipe Balbieeb720f2011-11-28 12:46:59 +0200913 for_each_sg(sg, s, request->num_mapped_sgs, i) {
914 unsigned chain = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300915
Felipe Balbieeb720f2011-11-28 12:46:59 +0200916 length = sg_dma_len(s);
917 dma = sg_dma_address(s);
Felipe Balbi72246da2011-08-19 18:10:58 +0300918
Paul Zimmerman1d046792012-02-15 18:56:56 -0800919 if (i == (request->num_mapped_sgs - 1) ||
920 sg_is_last(s)) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200921 last_one = true;
922 chain = false;
923 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300924
Felipe Balbieeb720f2011-11-28 12:46:59 +0200925 trbs_left--;
926 if (!trbs_left)
927 last_one = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300928
Felipe Balbieeb720f2011-11-28 12:46:59 +0200929 if (last_one)
930 chain = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300931
Felipe Balbieeb720f2011-11-28 12:46:59 +0200932 dwc3_prepare_one_trb(dep, req, dma, length,
933 last_one, chain);
Felipe Balbi72246da2011-08-19 18:10:58 +0300934
Felipe Balbieeb720f2011-11-28 12:46:59 +0200935 if (last_one)
936 break;
937 }
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530938 dbg_queue(dep->number, &req->request, 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300939 } else {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200940 dma = req->request.dma;
941 length = req->request.length;
942 trbs_left--;
943
944 if (!trbs_left)
945 last_one = 1;
946
947 /* Is this the last request? */
948 if (list_is_last(&req->list, &dep->request_list))
949 last_one = 1;
950
951 dwc3_prepare_one_trb(dep, req, dma, length,
952 last_one, false);
953
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530954 dbg_queue(dep->number, &req->request, 0);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200955 if (last_one)
956 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300957 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300958 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300959}
960
961static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep, u16 cmd_param,
962 int start_new)
963{
964 struct dwc3_gadget_ep_cmd_params params;
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +0530965 struct dwc3_request *req, *req1, *n;
Felipe Balbi72246da2011-08-19 18:10:58 +0300966 struct dwc3 *dwc = dep->dwc;
967 int ret;
968 u32 cmd;
969
970 if (start_new && (dep->flags & DWC3_EP_BUSY)) {
971 dev_vdbg(dwc->dev, "%s: endpoint busy\n", dep->name);
972 return -EBUSY;
973 }
974 dep->flags &= ~DWC3_EP_PENDING_REQUEST;
975
976 /*
977 * If we are getting here after a short-out-packet we don't enqueue any
978 * new requests as we try to set the IOC bit only on the last request.
979 */
980 if (start_new) {
981 if (list_empty(&dep->req_queued))
982 dwc3_prepare_trbs(dep, start_new);
983
984 /* req points to the first request which will be sent */
985 req = next_request(&dep->req_queued);
986 } else {
Felipe Balbi68e823e2011-11-28 12:25:01 +0200987 dwc3_prepare_trbs(dep, start_new);
988
Felipe Balbi72246da2011-08-19 18:10:58 +0300989 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -0800990 * req points to the first request where HWO changed from 0 to 1
Felipe Balbi72246da2011-08-19 18:10:58 +0300991 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200992 req = next_request(&dep->req_queued);
Felipe Balbi72246da2011-08-19 18:10:58 +0300993 }
994 if (!req) {
995 dep->flags |= DWC3_EP_PENDING_REQUEST;
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +0530996 dbg_event(dep->number, "NO REQ", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300997 return 0;
998 }
999
1000 memset(&params, 0, sizeof(params));
Felipe Balbidc1c70a2011-09-30 10:58:51 +03001001 params.param0 = upper_32_bits(req->trb_dma);
1002 params.param1 = lower_32_bits(req->trb_dma);
Felipe Balbi72246da2011-08-19 18:10:58 +03001003
1004 if (start_new)
1005 cmd = DWC3_DEPCMD_STARTTRANSFER;
1006 else
1007 cmd = DWC3_DEPCMD_UPDATETRANSFER;
1008
1009 cmd |= DWC3_DEPCMD_PARAM(cmd_param);
1010 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
1011 if (ret < 0) {
1012 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
1013
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301014 if ((ret == -EAGAIN) && start_new &&
1015 usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1016 /* If bit13 in Command complete event is set, software
1017 * must issue ENDTRANDFER command and wait for
1018 * Xfernotready event to queue the requests again.
1019 */
1020 if (!dep->resource_index) {
1021 dep->resource_index =
1022 dwc3_gadget_ep_get_transfer_index(dwc,
1023 dep->number);
1024 WARN_ON_ONCE(!dep->resource_index);
1025 }
1026 dwc3_stop_active_transfer(dwc, dep->number);
1027 list_for_each_entry_safe_reverse(req1, n,
1028 &dep->req_queued, list) {
1029 req1->trb = NULL;
1030 dwc3_gadget_move_request_list_front(req1);
1031 if (req->request.num_mapped_sgs)
1032 dep->busy_slot +=
1033 req->request.num_mapped_sgs;
1034 else
1035 dep->busy_slot++;
1036 if ((dep->busy_slot & DWC3_TRB_MASK) ==
1037 DWC3_TRB_NUM - 1)
1038 dep->busy_slot++;
1039 }
1040 return ret;
1041 } else {
1042 /*
1043 * FIXME we need to iterate over the list of requests
1044 * here and stop, unmap, free and del each of the linked
1045 * requests instead of what we do now.
1046 */
1047 usb_gadget_unmap_request(&dwc->gadget, &req->request,
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001048 req->direction);
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301049 list_del(&req->list);
1050 return ret;
1051 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001052 }
1053
1054 dep->flags |= DWC3_EP_BUSY;
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001055
Paul Zimmermanf39a37f2012-03-29 18:16:54 +00001056 if (start_new) {
Felipe Balbi4959cfc2012-06-06 12:04:13 +03001057 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
Paul Zimmermanf39a37f2012-03-29 18:16:54 +00001058 dep->number);
Felipe Balbi4959cfc2012-06-06 12:04:13 +03001059 WARN_ON_ONCE(!dep->resource_index);
Paul Zimmermanf39a37f2012-03-29 18:16:54 +00001060 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001061
Felipe Balbi72246da2011-08-19 18:10:58 +03001062 return 0;
1063}
1064
Pratyush Anand73939b02012-05-25 18:54:56 +05301065static void __dwc3_gadget_start_isoc(struct dwc3 *dwc,
1066 struct dwc3_ep *dep, u32 cur_uf)
1067{
1068 u32 uf;
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301069 int ret;
Pratyush Anand73939b02012-05-25 18:54:56 +05301070
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301071 dep->current_uf = cur_uf;
1072
Pratyush Anand73939b02012-05-25 18:54:56 +05301073 if (list_empty(&dep->request_list)) {
1074 dev_vdbg(dwc->dev, "ISOC ep %s run out for requests.\n",
1075 dep->name);
Pratyush Anandac417602012-08-30 12:21:43 +05301076 dep->flags |= DWC3_EP_PENDING_REQUEST;
Pratyush Anand73939b02012-05-25 18:54:56 +05301077 return;
1078 }
1079
1080 /* 4 micro frames in the future */
1081 uf = cur_uf + dep->interval * 4;
1082
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301083 ret = __dwc3_gadget_kick_transfer(dep, uf, 1);
1084 if (ret < 0)
1085 dbg_event(dep->number, "QUEUE", ret);
Pratyush Anand73939b02012-05-25 18:54:56 +05301086}
1087
1088static void dwc3_gadget_start_isoc(struct dwc3 *dwc,
1089 struct dwc3_ep *dep, const struct dwc3_event_depevt *event)
1090{
1091 u32 cur_uf, mask;
1092
1093 mask = ~(dep->interval - 1);
1094 cur_uf = event->parameters & mask;
1095
1096 __dwc3_gadget_start_isoc(dwc, dep, cur_uf);
1097}
1098
Felipe Balbi72246da2011-08-19 18:10:58 +03001099static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1100{
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001101 struct dwc3 *dwc = dep->dwc;
1102 int ret;
1103
Manu Gautamd2b99e12013-02-11 15:53:34 +05301104 if (req->request.status == -EINPROGRESS) {
1105 ret = -EBUSY;
1106 dev_err(dwc->dev, "%s: %p request already in queue",
1107 dep->name, req);
1108 return ret;
1109 }
1110
Felipe Balbi72246da2011-08-19 18:10:58 +03001111 req->request.actual = 0;
1112 req->request.status = -EINPROGRESS;
1113 req->direction = dep->direction;
1114 req->epnum = dep->number;
1115
1116 /*
1117 * We only add to our list of requests now and
1118 * start consuming the list once we get XferNotReady
1119 * IRQ.
1120 *
1121 * That way, we avoid doing anything that we don't need
1122 * to do now and defer it until the point we receive a
1123 * particular token from the Host side.
1124 *
1125 * This will also avoid Host cancelling URBs due to too
Paul Zimmerman1d046792012-02-15 18:56:56 -08001126 * many NAKs.
Felipe Balbi72246da2011-08-19 18:10:58 +03001127 */
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001128 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
1129 dep->direction);
1130 if (ret)
1131 return ret;
1132
Felipe Balbi72246da2011-08-19 18:10:58 +03001133 list_add_tail(&req->list, &dep->request_list);
1134
1135 /*
Felipe Balbi46485a02012-06-06 12:00:50 +03001136 * There are a few special cases:
Felipe Balbi72246da2011-08-19 18:10:58 +03001137 *
Paul Zimmermanf39a37f2012-03-29 18:16:54 +00001138 * 1. XferNotReady with empty list of requests. We need to kick the
1139 * transfer here in that situation, otherwise we will be NAKing
1140 * forever. If we get XferNotReady before gadget driver has a
1141 * chance to queue a request, we will ACK the IRQ but won't be
1142 * able to receive the data until the next request is queued.
1143 * The following code is handling exactly that.
1144 *
Felipe Balbi72246da2011-08-19 18:10:58 +03001145 */
1146 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
Pratyush Anandac417602012-08-30 12:21:43 +05301147 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001148
Pratyush Anandac417602012-08-30 12:21:43 +05301149 /*
1150 * If xfernotready is already elapsed and it is a case
1151 * of isoc transfer, then issue END TRANSFER, so that
1152 * you can receive xfernotready again and can have
1153 * notion of current microframe.
1154 */
1155 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301156 /* If xfernotready event is recieved before issuing
1157 * START TRANSFER command, don't issue END TRANSFER.
1158 * Rather start queueing the requests by issuing START
1159 * TRANSFER command.
1160 */
1161 if (list_empty(&dep->req_queued) && dep->resource_index)
Pratyush Anand18bbcb02013-01-14 15:59:34 +05301162 dwc3_stop_active_transfer(dwc, dep->number);
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301163 else
1164 __dwc3_gadget_start_isoc(dwc, dep,
1165 dep->current_uf);
1166 dep->flags &= ~DWC3_EP_PENDING_REQUEST;
Pratyush Anandac417602012-08-30 12:21:43 +05301167 return 0;
1168 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001169
Felipe Balbi46485a02012-06-06 12:00:50 +03001170 ret = __dwc3_gadget_kick_transfer(dep, 0, true);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301171 if (ret && ret != -EBUSY) {
1172 dbg_event(dep->number, "QUEUE", ret);
Felipe Balbi72246da2011-08-19 18:10:58 +03001173 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1174 dep->name);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301175 }
Felipe Balbi5d409eb2012-05-22 10:24:11 +03001176 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001177
Felipe Balbi46485a02012-06-06 12:00:50 +03001178 /*
1179 * 2. XferInProgress on Isoc EP with an active transfer. We need to
1180 * kick the transfer here after queuing a request, otherwise the
1181 * core may not see the modified TRB(s).
1182 */
1183 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
Pratyush Anand053d3e52012-08-07 16:54:18 +05301184 (dep->flags & DWC3_EP_BUSY) &&
1185 !(dep->flags & DWC3_EP_MISSED_ISOC)) {
Felipe Balbi4959cfc2012-06-06 12:04:13 +03001186 WARN_ON_ONCE(!dep->resource_index);
1187 ret = __dwc3_gadget_kick_transfer(dep, dep->resource_index,
Felipe Balbi46485a02012-06-06 12:00:50 +03001188 false);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301189 if (ret && ret != -EBUSY) {
1190 dbg_event(dep->number, "QUEUE", ret);
Felipe Balbi46485a02012-06-06 12:00:50 +03001191 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1192 dep->name);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301193 }
Felipe Balbi46485a02012-06-06 12:00:50 +03001194 }
1195
Felipe Balbi72246da2011-08-19 18:10:58 +03001196 return 0;
1197}
1198
1199static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1200 gfp_t gfp_flags)
1201{
1202 struct dwc3_request *req = to_dwc3_request(request);
1203 struct dwc3_ep *dep = to_dwc3_ep(ep);
1204 struct dwc3 *dwc = dep->dwc;
1205
1206 unsigned long flags;
1207
1208 int ret;
1209
Manu Gautam22f93042013-02-20 15:12:02 +05301210 spin_lock_irqsave(&dwc->lock, flags);
1211
Ido Shayevitz57cdac12012-03-12 20:25:24 +02001212 if (!dep->endpoint.desc) {
Manu Gautam22f93042013-02-20 15:12:02 +05301213 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001214 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
1215 request, ep->name);
1216 return -ESHUTDOWN;
1217 }
1218
1219 dev_vdbg(dwc->dev, "queing request %p to %s length %d\n",
1220 request, ep->name, request->length);
1221
Manu Gautam1c4dbcb2012-10-05 13:16:00 +05301222 WARN(!dep->direction && (request->length % ep->desc->wMaxPacketSize),
1223 "trying to queue unaligned request (%d)\n", request->length);
1224
Felipe Balbi72246da2011-08-19 18:10:58 +03001225 ret = __dwc3_gadget_ep_queue(dep, req);
1226 spin_unlock_irqrestore(&dwc->lock, flags);
1227
1228 return ret;
1229}
1230
1231static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1232 struct usb_request *request)
1233{
1234 struct dwc3_request *req = to_dwc3_request(request);
1235 struct dwc3_request *r = NULL;
1236
1237 struct dwc3_ep *dep = to_dwc3_ep(ep);
1238 struct dwc3 *dwc = dep->dwc;
1239
1240 unsigned long flags;
1241 int ret = 0;
1242
1243 spin_lock_irqsave(&dwc->lock, flags);
1244
1245 list_for_each_entry(r, &dep->request_list, list) {
1246 if (r == req)
1247 break;
1248 }
1249
1250 if (r != req) {
1251 list_for_each_entry(r, &dep->req_queued, list) {
1252 if (r == req)
1253 break;
1254 }
1255 if (r == req) {
1256 /* wait until it is processed */
1257 dwc3_stop_active_transfer(dwc, dep->number);
Pratyush Anandeaec3e92012-06-15 11:54:00 +05301258 goto out1;
Felipe Balbi72246da2011-08-19 18:10:58 +03001259 }
1260 dev_err(dwc->dev, "request %p was not queued to %s\n",
1261 request, ep->name);
1262 ret = -EINVAL;
1263 goto out0;
1264 }
1265
Pratyush Anandeaec3e92012-06-15 11:54:00 +05301266out1:
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301267 dbg_event(dep->number, "DEQUEUE", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03001268 /* giveback the request */
1269 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1270
1271out0:
1272 spin_unlock_irqrestore(&dwc->lock, flags);
1273
1274 return ret;
1275}
1276
1277int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value)
1278{
1279 struct dwc3_gadget_ep_cmd_params params;
1280 struct dwc3 *dwc = dep->dwc;
1281 int ret;
1282
1283 memset(&params, 0x00, sizeof(params));
1284
1285 if (value) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001286 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1287 DWC3_DEPCMD_SETSTALL, &params);
1288 if (ret)
1289 dev_err(dwc->dev, "failed to %s STALL on %s\n",
1290 value ? "set" : "clear",
1291 dep->name);
1292 else
1293 dep->flags |= DWC3_EP_STALL;
1294 } else {
1295 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1296 DWC3_DEPCMD_CLEARSTALL, &params);
1297 if (ret)
1298 dev_err(dwc->dev, "failed to %s STALL on %s\n",
1299 value ? "set" : "clear",
1300 dep->name);
1301 else
Vijayavardhan Vennapusa6008e262012-10-19 15:57:56 +05301302 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE);
Felipe Balbi72246da2011-08-19 18:10:58 +03001303 }
Paul Zimmerman52754552011-09-30 10:58:44 +03001304
Felipe Balbi72246da2011-08-19 18:10:58 +03001305 return ret;
1306}
1307
1308static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1309{
1310 struct dwc3_ep *dep = to_dwc3_ep(ep);
1311 struct dwc3 *dwc = dep->dwc;
1312
1313 unsigned long flags;
1314
1315 int ret;
1316
1317 spin_lock_irqsave(&dwc->lock, flags);
1318
Ido Shayevitz57cdac12012-03-12 20:25:24 +02001319 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001320 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1321 ret = -EINVAL;
1322 goto out;
1323 }
1324
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301325 dbg_event(dep->number, "HALT", value);
Felipe Balbi72246da2011-08-19 18:10:58 +03001326 ret = __dwc3_gadget_ep_set_halt(dep, value);
1327out:
1328 spin_unlock_irqrestore(&dwc->lock, flags);
1329
1330 return ret;
1331}
1332
1333static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1334{
1335 struct dwc3_ep *dep = to_dwc3_ep(ep);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001336 struct dwc3 *dwc = dep->dwc;
1337 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001338
Paul Zimmerman249a4562012-02-24 17:32:16 -08001339 spin_lock_irqsave(&dwc->lock, flags);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301340 dbg_event(dep->number, "WEDGE", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03001341 dep->flags |= DWC3_EP_WEDGE;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001342 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001343
Pratyush Anandeb840752012-06-25 22:40:43 +05301344 if (dep->number == 0 || dep->number == 1)
1345 return dwc3_gadget_ep0_set_halt(ep, 1);
1346 else
1347 return dwc3_gadget_ep_set_halt(ep, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001348}
1349
1350/* -------------------------------------------------------------------------- */
1351
1352static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1353 .bLength = USB_DT_ENDPOINT_SIZE,
1354 .bDescriptorType = USB_DT_ENDPOINT,
1355 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1356};
1357
1358static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1359 .enable = dwc3_gadget_ep0_enable,
1360 .disable = dwc3_gadget_ep0_disable,
1361 .alloc_request = dwc3_gadget_ep_alloc_request,
1362 .free_request = dwc3_gadget_ep_free_request,
1363 .queue = dwc3_gadget_ep0_queue,
1364 .dequeue = dwc3_gadget_ep_dequeue,
Pratyush Anandeb840752012-06-25 22:40:43 +05301365 .set_halt = dwc3_gadget_ep0_set_halt,
Felipe Balbi72246da2011-08-19 18:10:58 +03001366 .set_wedge = dwc3_gadget_ep_set_wedge,
1367};
1368
1369static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1370 .enable = dwc3_gadget_ep_enable,
1371 .disable = dwc3_gadget_ep_disable,
1372 .alloc_request = dwc3_gadget_ep_alloc_request,
1373 .free_request = dwc3_gadget_ep_free_request,
1374 .queue = dwc3_gadget_ep_queue,
1375 .dequeue = dwc3_gadget_ep_dequeue,
1376 .set_halt = dwc3_gadget_ep_set_halt,
1377 .set_wedge = dwc3_gadget_ep_set_wedge,
1378};
1379
1380/* -------------------------------------------------------------------------- */
1381
1382static int dwc3_gadget_get_frame(struct usb_gadget *g)
1383{
1384 struct dwc3 *dwc = gadget_to_dwc(g);
1385 u32 reg;
1386
1387 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1388 return DWC3_DSTS_SOFFN(reg);
1389}
1390
1391static int dwc3_gadget_wakeup(struct usb_gadget *g)
1392{
1393 struct dwc3 *dwc = gadget_to_dwc(g);
1394
1395 unsigned long timeout;
1396 unsigned long flags;
1397
1398 u32 reg;
1399
1400 int ret = 0;
1401
1402 u8 link_state;
1403 u8 speed;
1404
1405 spin_lock_irqsave(&dwc->lock, flags);
1406
1407 /*
1408 * According to the Databook Remote wakeup request should
1409 * be issued only when the device is in early suspend state.
1410 *
1411 * We can check that via USB Link State bits in DSTS register.
1412 */
1413 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1414
1415 speed = reg & DWC3_DSTS_CONNECTSPD;
1416 if (speed == DWC3_DSTS_SUPERSPEED) {
1417 dev_dbg(dwc->dev, "no wakeup on SuperSpeed\n");
1418 ret = -EINVAL;
1419 goto out;
1420 }
1421
1422 link_state = DWC3_DSTS_USBLNKST(reg);
1423
1424 switch (link_state) {
1425 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
1426 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
1427 break;
1428 default:
1429 dev_dbg(dwc->dev, "can't wakeup from link state %d\n",
1430 link_state);
1431 ret = -EINVAL;
1432 goto out;
1433 }
1434
Felipe Balbi8598bde2012-01-02 18:55:57 +02001435 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
1436 if (ret < 0) {
1437 dev_err(dwc->dev, "failed to put link in Recovery\n");
1438 goto out;
1439 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001440
Paul Zimmerman88df4272012-04-27 13:10:52 +03001441 /* Recent versions do this automatically */
1442 if (dwc->revision < DWC3_REVISION_194A) {
1443 /* write zeroes to Link Change Request */
Felipe Balbib4d04352012-05-24 10:27:56 +03001444 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Paul Zimmerman88df4272012-04-27 13:10:52 +03001445 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
1446 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1447 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001448
Paul Zimmerman1d046792012-02-15 18:56:56 -08001449 /* poll until Link State changes to ON */
Felipe Balbi72246da2011-08-19 18:10:58 +03001450 timeout = jiffies + msecs_to_jiffies(100);
1451
Paul Zimmerman1d046792012-02-15 18:56:56 -08001452 while (!time_after(jiffies, timeout)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001453 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1454
1455 /* in HS, means ON */
1456 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
1457 break;
1458 }
1459
1460 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
1461 dev_err(dwc->dev, "failed to send remote wakeup\n");
1462 ret = -EINVAL;
1463 }
1464
1465out:
1466 spin_unlock_irqrestore(&dwc->lock, flags);
1467
1468 return ret;
1469}
1470
1471static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
1472 int is_selfpowered)
1473{
1474 struct dwc3 *dwc = gadget_to_dwc(g);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001475 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001476
Paul Zimmerman249a4562012-02-24 17:32:16 -08001477 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001478 dwc->is_selfpowered = !!is_selfpowered;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001479 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001480
1481 return 0;
1482}
1483
Pratyush Anand77473f72012-07-02 10:21:55 +05301484static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on)
Felipe Balbi72246da2011-08-19 18:10:58 +03001485{
1486 u32 reg;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001487 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +03001488
1489 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001490 if (is_on) {
Paul Zimmerman88df4272012-04-27 13:10:52 +03001491 if (dwc->revision <= DWC3_REVISION_187A) {
1492 reg &= ~DWC3_DCTL_TRGTULST_MASK;
1493 reg |= DWC3_DCTL_TRGTULST_RX_DET;
1494 }
1495
1496 if (dwc->revision >= DWC3_REVISION_194A)
1497 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1498 reg |= DWC3_DCTL_RUN_STOP;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001499 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03001500 reg &= ~DWC3_DCTL_RUN_STOP;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001501 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001502
1503 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1504
1505 do {
1506 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1507 if (is_on) {
1508 if (!(reg & DWC3_DSTS_DEVCTRLHLT))
1509 break;
1510 } else {
1511 if (reg & DWC3_DSTS_DEVCTRLHLT)
1512 break;
1513 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001514 timeout--;
1515 if (!timeout)
Pratyush Anand77473f72012-07-02 10:21:55 +05301516 return -ETIMEDOUT;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001517 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001518 } while (1);
1519
1520 dev_vdbg(dwc->dev, "gadget %s data soft-%s\n",
1521 dwc->gadget_driver
1522 ? dwc->gadget_driver->function : "no-function",
1523 is_on ? "connect" : "disconnect");
Pratyush Anand77473f72012-07-02 10:21:55 +05301524
1525 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001526}
1527
Vijayavardhan Vennapusa908f1ed2012-10-19 19:51:48 +05301528static int dwc3_gadget_vbus_draw(struct usb_gadget *g, unsigned mA)
1529{
1530 struct dwc3 *dwc = gadget_to_dwc(g);
1531 struct dwc3_otg *dotg = dwc->dotg;
1532
1533 if (dotg && dotg->otg.phy)
1534 return usb_phy_set_power(dotg->otg.phy, mA);
1535
1536 return -ENOTSUPP;
1537}
1538
Felipe Balbi72246da2011-08-19 18:10:58 +03001539static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
1540{
1541 struct dwc3 *dwc = gadget_to_dwc(g);
1542 unsigned long flags;
Pratyush Anand77473f72012-07-02 10:21:55 +05301543 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001544
1545 is_on = !!is_on;
1546
1547 spin_lock_irqsave(&dwc->lock, flags);
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001548
1549 dwc->softconnect = is_on;
1550
1551 if ((dwc->dotg && !dwc->vbus_active) ||
1552 !dwc->gadget_driver) {
1553
1554 spin_unlock_irqrestore(&dwc->lock, flags);
1555
1556 /*
1557 * Need to wait for vbus_session(on) from otg driver or to
1558 * the udc_start.
1559 */
1560 return 0;
1561 }
1562
Pratyush Anand77473f72012-07-02 10:21:55 +05301563 ret = dwc3_gadget_run_stop(dwc, is_on);
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001564
1565 spin_unlock_irqrestore(&dwc->lock, flags);
1566
Pratyush Anand77473f72012-07-02 10:21:55 +05301567 return ret;
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001568}
1569
1570static int dwc3_gadget_vbus_session(struct usb_gadget *_gadget, int is_active)
1571{
1572 struct dwc3 *dwc = gadget_to_dwc(_gadget);
1573 unsigned long flags;
Vijayavardhan Vennapusa8ec31d22012-10-23 08:44:48 +05301574 int ret = 0;
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001575
1576 if (!dwc->dotg)
1577 return -EPERM;
1578
1579 is_active = !!is_active;
1580
1581 spin_lock_irqsave(&dwc->lock, flags);
1582
1583 /* Mark that the vbus was powered */
1584 dwc->vbus_active = is_active;
1585
1586 /*
1587 * Check if upper level usb_gadget_driver was already registerd with
1588 * this udc controller driver (if dwc3_gadget_start was called)
1589 */
1590 if (dwc->gadget_driver && dwc->softconnect) {
1591 if (dwc->vbus_active) {
1592 /*
1593 * Both vbus was activated by otg and pullup was
1594 * signaled by the gadget driver.
1595 */
Pratyush Anand77473f72012-07-02 10:21:55 +05301596 ret = dwc3_gadget_run_stop(dwc, 1);
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001597 } else {
Pratyush Anand77473f72012-07-02 10:21:55 +05301598 ret = dwc3_gadget_run_stop(dwc, 0);
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001599 }
Vijayavardhan Vennapusab666fb82012-11-08 16:02:51 +05301600 } else if (dwc->gadget_driver && !dwc->softconnect &&
1601 !dwc->vbus_active) {
1602 if (dwc->gadget_driver->disconnect) {
1603 spin_unlock_irqrestore(&dwc->lock, flags);
1604 dwc->gadget_driver->disconnect(&dwc->gadget);
1605 return 0;
1606 }
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001607 }
1608
Felipe Balbi72246da2011-08-19 18:10:58 +03001609 spin_unlock_irqrestore(&dwc->lock, flags);
1610
Pratyush Anand77473f72012-07-02 10:21:55 +05301611 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001612}
1613
Manu Gautamf1fceddf2012-10-12 14:02:50 +05301614/* Required gadget re-initialization before switching to gadget in OTG mode */
1615void dwc3_gadget_restart(struct dwc3 *dwc)
1616{
1617 struct dwc3_ep *dep;
1618 int ret = 0;
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301619 u32 reg;
Manu Gautamf1fceddf2012-10-12 14:02:50 +05301620
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301621 /* Enable all but Start and End of Frame IRQs */
1622 reg = (DWC3_DEVTEN_EVNTOVERFLOWEN |
1623 DWC3_DEVTEN_CMDCMPLTEN |
1624 DWC3_DEVTEN_ERRTICERREN |
1625 DWC3_DEVTEN_WKUPEVTEN |
1626 DWC3_DEVTEN_ULSTCNGEN |
1627 DWC3_DEVTEN_CONNECTDONEEN |
1628 DWC3_DEVTEN_USBRSTEN |
1629 DWC3_DEVTEN_DISCONNEVTEN);
1630 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
1631
1632 /* Enable USB2 LPM and automatic phy suspend only on recent versions */
1633 if (dwc->revision >= DWC3_REVISION_194A) {
1634 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1635 reg |= DWC3_DCFG_LPM_CAP;
1636 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1637
1638 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
1639 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
1640
1641 /* TODO: This should be configurable */
1642 reg |= DWC3_DCTL_HIRD_THRES(28);
1643
1644 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1645 }
1646
1647 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1648 reg &= ~(DWC3_DCFG_SPEED_MASK);
1649
1650 /**
1651 * WORKAROUND: DWC3 revision < 2.20a have an issue
1652 * which would cause metastability state on Run/Stop
1653 * bit if we try to force the IP to USB2-only mode.
1654 *
1655 * Because of that, we cannot configure the IP to any
1656 * speed other than the SuperSpeed
1657 *
1658 * Refers to:
1659 *
1660 * STAR#9000525659: Clock Domain Crossing on DCTL in
1661 * USB 2.0 Mode
1662 */
1663 if (dwc->revision < DWC3_REVISION_220A)
1664 reg |= DWC3_DCFG_SUPERSPEED;
1665 else
1666 reg |= dwc->maximum_speed;
1667 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1668
1669 dwc->start_config_issued = false;
1670
1671 /* Start with SuperSpeed Default */
1672 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
Manu Gautamf1fceddf2012-10-12 14:02:50 +05301673
1674 dwc->delayed_status = false;
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301675 /* reinitialize physical ep0-1 */
Manu Gautamf1fceddf2012-10-12 14:02:50 +05301676 dep = dwc->eps[0];
1677 dep->flags = 0;
1678 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
1679 if (ret) {
1680 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1681 return;
1682 }
1683
1684 dep = dwc->eps[1];
1685 dep->flags = 0;
1686 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
1687 if (ret) {
1688 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1689 return;
1690 }
1691
1692 /* begin to receive SETUP packets */
1693 dwc->ep0state = EP0_SETUP_PHASE;
1694 dwc3_ep0_out_start(dwc);
1695}
1696
Felipe Balbi72246da2011-08-19 18:10:58 +03001697static int dwc3_gadget_start(struct usb_gadget *g,
1698 struct usb_gadget_driver *driver)
1699{
1700 struct dwc3 *dwc = gadget_to_dwc(g);
1701 struct dwc3_ep *dep;
1702 unsigned long flags;
1703 int ret = 0;
1704 u32 reg;
1705
1706 spin_lock_irqsave(&dwc->lock, flags);
1707
1708 if (dwc->gadget_driver) {
1709 dev_err(dwc->dev, "%s is already bound to %s\n",
1710 dwc->gadget.name,
1711 dwc->gadget_driver->driver.name);
1712 ret = -EBUSY;
1713 goto err0;
1714 }
1715
1716 dwc->gadget_driver = driver;
1717 dwc->gadget.dev.driver = &driver->driver;
1718
Felipe Balbi72246da2011-08-19 18:10:58 +03001719 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1720 reg &= ~(DWC3_DCFG_SPEED_MASK);
Felipe Balbi38d2c6c2012-03-23 12:20:31 +02001721
1722 /**
1723 * WORKAROUND: DWC3 revision < 2.20a have an issue
1724 * which would cause metastability state on Run/Stop
1725 * bit if we try to force the IP to USB2-only mode.
1726 *
1727 * Because of that, we cannot configure the IP to any
1728 * speed other than the SuperSpeed
1729 *
1730 * Refers to:
1731 *
1732 * STAR#9000525659: Clock Domain Crossing on DCTL in
1733 * USB 2.0 Mode
1734 */
1735 if (dwc->revision < DWC3_REVISION_220A)
1736 reg |= DWC3_DCFG_SUPERSPEED;
1737 else
1738 reg |= dwc->maximum_speed;
Felipe Balbi72246da2011-08-19 18:10:58 +03001739 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1740
Paul Zimmermanb23c8432011-09-30 10:58:42 +03001741 dwc->start_config_issued = false;
1742
Felipe Balbi72246da2011-08-19 18:10:58 +03001743 /* Start with SuperSpeed Default */
1744 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1745
1746 dep = dwc->eps[0];
Felipe Balbi07e0ee82012-07-16 14:08:16 +03001747 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001748 if (ret) {
1749 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1750 goto err0;
1751 }
1752
1753 dep = dwc->eps[1];
Felipe Balbi07e0ee82012-07-16 14:08:16 +03001754 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false);
Felipe Balbi72246da2011-08-19 18:10:58 +03001755 if (ret) {
1756 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1757 goto err1;
1758 }
1759
1760 /* begin to receive SETUP packets */
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001761 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +03001762 dwc3_ep0_out_start(dwc);
1763
1764 spin_unlock_irqrestore(&dwc->lock, flags);
1765
1766 return 0;
1767
1768err1:
1769 __dwc3_gadget_ep_disable(dwc->eps[0]);
1770
1771err0:
1772 spin_unlock_irqrestore(&dwc->lock, flags);
1773
1774 return ret;
1775}
1776
1777static int dwc3_gadget_stop(struct usb_gadget *g,
1778 struct usb_gadget_driver *driver)
1779{
1780 struct dwc3 *dwc = gadget_to_dwc(g);
1781 unsigned long flags;
1782
1783 spin_lock_irqsave(&dwc->lock, flags);
1784
1785 __dwc3_gadget_ep_disable(dwc->eps[0]);
1786 __dwc3_gadget_ep_disable(dwc->eps[1]);
1787
1788 dwc->gadget_driver = NULL;
1789 dwc->gadget.dev.driver = NULL;
1790
1791 spin_unlock_irqrestore(&dwc->lock, flags);
1792
1793 return 0;
1794}
Paul Zimmerman88df4272012-04-27 13:10:52 +03001795
Felipe Balbi72246da2011-08-19 18:10:58 +03001796static const struct usb_gadget_ops dwc3_gadget_ops = {
1797 .get_frame = dwc3_gadget_get_frame,
1798 .wakeup = dwc3_gadget_wakeup,
1799 .set_selfpowered = dwc3_gadget_set_selfpowered,
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02001800 .vbus_session = dwc3_gadget_vbus_session,
Vijayavardhan Vennapusa908f1ed2012-10-19 19:51:48 +05301801 .vbus_draw = dwc3_gadget_vbus_draw,
Felipe Balbi72246da2011-08-19 18:10:58 +03001802 .pullup = dwc3_gadget_pullup,
1803 .udc_start = dwc3_gadget_start,
1804 .udc_stop = dwc3_gadget_stop,
1805};
1806
1807/* -------------------------------------------------------------------------- */
1808
1809static int __devinit dwc3_gadget_init_endpoints(struct dwc3 *dwc)
1810{
1811 struct dwc3_ep *dep;
1812 u8 epnum;
1813
1814 INIT_LIST_HEAD(&dwc->gadget.ep_list);
1815
1816 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1817 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
1818 if (!dep) {
1819 dev_err(dwc->dev, "can't allocate endpoint %d\n",
1820 epnum);
1821 return -ENOMEM;
1822 }
1823
1824 dep->dwc = dwc;
1825 dep->number = epnum;
1826 dwc->eps[epnum] = dep;
1827
1828 snprintf(dep->name, sizeof(dep->name), "ep%d%s", epnum >> 1,
1829 (epnum & 1) ? "in" : "out");
1830 dep->endpoint.name = dep->name;
1831 dep->direction = (epnum & 1);
1832
1833 if (epnum == 0 || epnum == 1) {
1834 dep->endpoint.maxpacket = 512;
1835 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
1836 if (!epnum)
1837 dwc->gadget.ep0 = &dep->endpoint;
1838 } else {
1839 int ret;
1840
1841 dep->endpoint.maxpacket = 1024;
Sebastian Andrzej Siewior12d36c12011-11-03 20:27:50 +01001842 dep->endpoint.max_streams = 15;
Felipe Balbi72246da2011-08-19 18:10:58 +03001843 dep->endpoint.ops = &dwc3_gadget_ep_ops;
1844 list_add_tail(&dep->endpoint.ep_list,
1845 &dwc->gadget.ep_list);
1846
1847 ret = dwc3_alloc_trb_pool(dep);
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001848 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03001849 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001850 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001851
Felipe Balbi72246da2011-08-19 18:10:58 +03001852 INIT_LIST_HEAD(&dep->request_list);
1853 INIT_LIST_HEAD(&dep->req_queued);
1854 }
1855
1856 return 0;
1857}
1858
1859static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
1860{
1861 struct dwc3_ep *dep;
1862 u8 epnum;
1863
1864 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1865 dep = dwc->eps[epnum];
1866 dwc3_free_trb_pool(dep);
1867
1868 if (epnum != 0 && epnum != 1)
1869 list_del(&dep->endpoint.ep_list);
1870
1871 kfree(dep);
1872 }
1873}
1874
1875static void dwc3_gadget_release(struct device *dev)
1876{
1877 dev_dbg(dev, "%s\n", __func__);
1878}
1879
1880/* -------------------------------------------------------------------------- */
1881static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
1882 const struct dwc3_event_depevt *event, int status)
1883{
1884 struct dwc3_request *req;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001885 struct dwc3_trb *trb;
Felipe Balbi72246da2011-08-19 18:10:58 +03001886 unsigned int count;
1887 unsigned int s_pkt = 0;
Pratyush Anand73939b02012-05-25 18:54:56 +05301888 unsigned int trb_status;
Felipe Balbi72246da2011-08-19 18:10:58 +03001889
1890 do {
1891 req = next_request(&dep->req_queued);
Sebastian Andrzej Siewiord39ee7b2011-11-03 10:32:20 +01001892 if (!req) {
1893 WARN_ON_ONCE(1);
1894 return 1;
1895 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001896
Felipe Balbif6bafc62012-02-06 11:04:53 +02001897 trb = req->trb;
Felipe Balbi72246da2011-08-19 18:10:58 +03001898
Felipe Balbif6bafc62012-02-06 11:04:53 +02001899 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
Sebastian Andrzej Siewior0d2f4752011-08-19 19:59:12 +02001900 /*
1901 * We continue despite the error. There is not much we
Paul Zimmerman1d046792012-02-15 18:56:56 -08001902 * can do. If we don't clean it up we loop forever. If
1903 * we skip the TRB then it gets overwritten after a
1904 * while since we use them in a ring buffer. A BUG()
1905 * would help. Lets hope that if this occurs, someone
Sebastian Andrzej Siewior0d2f4752011-08-19 19:59:12 +02001906 * fixes the root cause instead of looking away :)
1907 */
Felipe Balbi72246da2011-08-19 18:10:58 +03001908 dev_err(dwc->dev, "%s's TRB (%p) still owned by HW\n",
1909 dep->name, req->trb);
Felipe Balbif6bafc62012-02-06 11:04:53 +02001910 count = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbi72246da2011-08-19 18:10:58 +03001911
1912 if (dep->direction) {
1913 if (count) {
Pratyush Anand73939b02012-05-25 18:54:56 +05301914 trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size);
1915 if (trb_status == DWC3_TRBSTS_MISSED_ISOC) {
1916 dev_dbg(dwc->dev, "incomplete IN transfer %s\n",
1917 dep->name);
Pratyush Anand921b0b82013-01-14 15:59:32 +05301918 /*
1919 * If missed isoc occurred and there is
1920 * no request queued then issue END
1921 * TRANSFER, so that core generates
1922 * next xfernotready and we will issue
1923 * a fresh START TRANSFER.
1924 * If there are still queued request
1925 * then wait, do not issue either END
1926 * or UPDATE TRANSFER, just attach next
1927 * request in request_list during
1928 * giveback.If any future queued request
1929 * is successfully transferred then we
1930 * will issue UPDATE TRANSFER for all
1931 * request in the request_list.
1932 */
Pratyush Anand73939b02012-05-25 18:54:56 +05301933 dep->flags |= DWC3_EP_MISSED_ISOC;
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05301934 dbg_event(dep->number, "MISSED ISOC",
1935 status);
Pratyush Anand73939b02012-05-25 18:54:56 +05301936 } else {
1937 dev_err(dwc->dev, "incomplete IN transfer %s\n",
1938 dep->name);
1939 status = -ECONNRESET;
1940 }
Pratyush Anand921b0b82013-01-14 15:59:32 +05301941 } else {
1942 dep->flags &= ~DWC3_EP_MISSED_ISOC;
Felipe Balbi72246da2011-08-19 18:10:58 +03001943 }
1944 } else {
1945 if (count && (event->status & DEPEVT_STATUS_SHORT))
1946 s_pkt = 1;
1947 }
1948
1949 /*
1950 * We assume here we will always receive the entire data block
1951 * which we should receive. Meaning, if we program RX to
1952 * receive 4K but we receive only 2K, we assume that's all we
1953 * should receive and we simply bounce the request back to the
1954 * gadget driver for further processing.
1955 */
1956 req->request.actual += req->request.length - count;
1957 dwc3_gadget_giveback(dep, req, status);
1958 if (s_pkt)
1959 break;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001960 if ((event->status & DEPEVT_STATUS_LST) &&
Pratyush Anand413dba62012-06-03 19:43:19 +05301961 (trb->ctrl & (DWC3_TRB_CTRL_LST |
1962 DWC3_TRB_CTRL_HWO)))
Felipe Balbi72246da2011-08-19 18:10:58 +03001963 break;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001964 if ((event->status & DEPEVT_STATUS_IOC) &&
1965 (trb->ctrl & DWC3_TRB_CTRL_IOC))
Felipe Balbi72246da2011-08-19 18:10:58 +03001966 break;
1967 } while (1);
1968
Pratyush Anand18bbcb02013-01-14 15:59:34 +05301969 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
1970 list_empty(&dep->req_queued)) {
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301971 if (list_empty(&dep->request_list))
Pratyush Anand18bbcb02013-01-14 15:59:34 +05301972 /*
1973 * If there is no entry in request list then do
1974 * not issue END TRANSFER now. Just set PENDING
1975 * flag, so that END TRANSFER is issued when an
1976 * entry is added into request list.
1977 */
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301978 dep->flags |= DWC3_EP_PENDING_REQUEST;
1979 else
Pratyush Anand18bbcb02013-01-14 15:59:34 +05301980 dwc3_stop_active_transfer(dwc, dep->number);
Vijayavardhan Vennapusa91ba6532013-01-30 17:35:45 +05301981 dep->flags &= ~DWC3_EP_MISSED_ISOC;
Pratyush Anand921b0b82013-01-14 15:59:32 +05301982 return 1;
1983 }
1984
Felipe Balbif6bafc62012-02-06 11:04:53 +02001985 if ((event->status & DEPEVT_STATUS_IOC) &&
1986 (trb->ctrl & DWC3_TRB_CTRL_IOC))
Felipe Balbi72246da2011-08-19 18:10:58 +03001987 return 0;
1988 return 1;
1989}
1990
1991static void dwc3_endpoint_transfer_complete(struct dwc3 *dwc,
1992 struct dwc3_ep *dep, const struct dwc3_event_depevt *event,
1993 int start_new)
1994{
1995 unsigned status = 0;
1996 int clean_busy;
1997
1998 if (event->status & DEPEVT_STATUS_BUSERR)
1999 status = -ECONNRESET;
2000
Paul Zimmerman1d046792012-02-15 18:56:56 -08002001 clean_busy = dwc3_cleanup_done_reqs(dwc, dep, event, status);
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08002002 if (clean_busy)
Felipe Balbi72246da2011-08-19 18:10:58 +03002003 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbifae2b902011-10-14 13:00:30 +03002004
2005 /*
2006 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
2007 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
2008 */
2009 if (dwc->revision < DWC3_REVISION_183A) {
2010 u32 reg;
2011 int i;
2012
2013 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
Moiz Sonasatheed03f12012-08-01 14:08:30 -05002014 dep = dwc->eps[i];
Felipe Balbifae2b902011-10-14 13:00:30 +03002015
2016 if (!(dep->flags & DWC3_EP_ENABLED))
2017 continue;
2018
2019 if (!list_empty(&dep->req_queued))
2020 return;
2021 }
2022
2023 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2024 reg |= dwc->u1u2;
2025 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2026
2027 dwc->u1u2 = 0;
2028 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002029}
2030
Felipe Balbi72246da2011-08-19 18:10:58 +03002031static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
2032 const struct dwc3_event_depevt *event)
2033{
2034 struct dwc3_ep *dep;
2035 u8 epnum = event->endpoint_number;
2036
2037 dep = dwc->eps[epnum];
2038
Felipe Balbia09be0a2012-06-06 09:19:35 +03002039 if (!(dep->flags & DWC3_EP_ENABLED))
2040 return;
2041
Felipe Balbi72246da2011-08-19 18:10:58 +03002042 dev_vdbg(dwc->dev, "%s: %s\n", dep->name,
2043 dwc3_ep_event_string(event->endpoint_event));
2044
2045 if (epnum == 0 || epnum == 1) {
2046 dwc3_ep0_interrupt(dwc, event);
2047 return;
2048 }
2049
2050 switch (event->endpoint_event) {
2051 case DWC3_DEPEVT_XFERCOMPLETE:
Felipe Balbi4959cfc2012-06-06 12:04:13 +03002052 dep->resource_index = 0;
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08002053
Ido Shayevitz57cdac12012-03-12 20:25:24 +02002054 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002055 dev_dbg(dwc->dev, "%s is an Isochronous endpoint\n",
2056 dep->name);
2057 return;
2058 }
2059
2060 dwc3_endpoint_transfer_complete(dwc, dep, event, 1);
2061 break;
2062 case DWC3_DEPEVT_XFERINPROGRESS:
Ido Shayevitz57cdac12012-03-12 20:25:24 +02002063 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002064 dev_dbg(dwc->dev, "%s is not an Isochronous endpoint\n",
2065 dep->name);
2066 return;
2067 }
2068
2069 dwc3_endpoint_transfer_complete(dwc, dep, event, 0);
2070 break;
2071 case DWC3_DEPEVT_XFERNOTREADY:
Ido Shayevitz57cdac12012-03-12 20:25:24 +02002072 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002073 dwc3_gadget_start_isoc(dwc, dep, event);
2074 } else {
2075 int ret;
2076
2077 dev_vdbg(dwc->dev, "%s: reason %s\n",
Felipe Balbi40aa41f2012-01-18 17:06:03 +02002078 dep->name, event->status &
2079 DEPEVT_STATUS_TRANSFER_ACTIVE
Felipe Balbi72246da2011-08-19 18:10:58 +03002080 ? "Transfer Active"
2081 : "Transfer Not Active");
2082
2083 ret = __dwc3_gadget_kick_transfer(dep, 0, 1);
2084 if (!ret || ret == -EBUSY)
2085 return;
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302086 else
2087 dbg_event(dep->number, "QUEUE", ret);
Felipe Balbi72246da2011-08-19 18:10:58 +03002088
2089 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
2090 dep->name);
2091 }
2092
2093 break;
Felipe Balbi879631a2011-09-30 10:58:47 +03002094 case DWC3_DEPEVT_STREAMEVT:
Ido Shayevitz57cdac12012-03-12 20:25:24 +02002095 if (!usb_endpoint_xfer_bulk(dep->endpoint.desc)) {
Felipe Balbi879631a2011-09-30 10:58:47 +03002096 dev_err(dwc->dev, "Stream event for non-Bulk %s\n",
2097 dep->name);
2098 return;
2099 }
2100
2101 switch (event->status) {
2102 case DEPEVT_STREAMEVT_FOUND:
2103 dev_vdbg(dwc->dev, "Stream %d found and started\n",
2104 event->parameters);
2105
2106 break;
2107 case DEPEVT_STREAMEVT_NOTFOUND:
2108 /* FALLTHROUGH */
2109 default:
2110 dev_dbg(dwc->dev, "Couldn't find suitable stream\n");
2111 }
2112 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002113 case DWC3_DEPEVT_RXTXFIFOEVT:
2114 dev_dbg(dwc->dev, "%s FIFO Overrun\n", dep->name);
2115 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002116 case DWC3_DEPEVT_EPCMDCMPLT:
Felipe Balbib129eb72012-02-17 12:10:04 +02002117 dev_vdbg(dwc->dev, "Endpoint Command Complete\n");
Felipe Balbi72246da2011-08-19 18:10:58 +03002118 break;
2119 }
2120}
2121
2122static void dwc3_disconnect_gadget(struct dwc3 *dwc)
2123{
2124 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
2125 spin_unlock(&dwc->lock);
2126 dwc->gadget_driver->disconnect(&dwc->gadget);
2127 spin_lock(&dwc->lock);
2128 }
2129}
2130
2131static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum)
2132{
2133 struct dwc3_ep *dep;
2134 struct dwc3_gadget_ep_cmd_params params;
2135 u32 cmd;
2136 int ret;
2137
2138 dep = dwc->eps[epnum];
2139
Felipe Balbi4959cfc2012-06-06 12:04:13 +03002140 if (!dep->resource_index)
Pratyush Anand6263ebe2012-06-23 02:23:08 +05302141 return;
2142
Pratyush Anande67fdeb2012-07-06 15:19:10 +05302143 /*
2144 * NOTICE: We are violating what the Databook says about the
2145 * EndTransfer command. Ideally we would _always_ wait for the
2146 * EndTransfer Command Completion IRQ, but that's causing too
2147 * much trouble synchronizing between us and gadget driver.
2148 *
2149 * We have discussed this with the IP Provider and it was
2150 * suggested to giveback all requests here, but give HW some
2151 * extra time to synchronize with the interconnect. We're using
2152 * an arbitraty 100us delay for that.
2153 *
2154 * Note also that a similar handling was tested by Synopsys
2155 * (thanks a lot Paul) and nothing bad has come out of it.
2156 * In short, what we're doing is:
2157 *
2158 * - Issue EndTransfer WITH CMDIOC bit set
2159 * - Wait 100us
2160 */
2161
Pratyush Anand6263ebe2012-06-23 02:23:08 +05302162 cmd = DWC3_DEPCMD_ENDTRANSFER;
2163 cmd |= DWC3_DEPCMD_HIPRI_FORCERM | DWC3_DEPCMD_CMDIOC;
Felipe Balbi4959cfc2012-06-06 12:04:13 +03002164 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
Pratyush Anand6263ebe2012-06-23 02:23:08 +05302165 memset(&params, 0, sizeof(params));
2166 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
2167 WARN_ON_ONCE(ret);
Felipe Balbi4959cfc2012-06-06 12:04:13 +03002168 dep->resource_index = 0;
Pratyush Anande67fdeb2012-07-06 15:19:10 +05302169
2170 udelay(100);
Felipe Balbi72246da2011-08-19 18:10:58 +03002171}
2172
2173static void dwc3_stop_active_transfers(struct dwc3 *dwc)
2174{
2175 u32 epnum;
2176
2177 for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2178 struct dwc3_ep *dep;
2179
2180 dep = dwc->eps[epnum];
2181 if (!(dep->flags & DWC3_EP_ENABLED))
2182 continue;
2183
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +02002184 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03002185 }
2186}
2187
2188static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
2189{
2190 u32 epnum;
2191
2192 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
2193 struct dwc3_ep *dep;
2194 struct dwc3_gadget_ep_cmd_params params;
2195 int ret;
2196
2197 dep = dwc->eps[epnum];
2198
2199 if (!(dep->flags & DWC3_EP_STALL))
2200 continue;
2201
2202 dep->flags &= ~DWC3_EP_STALL;
2203
2204 memset(&params, 0, sizeof(params));
2205 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
2206 DWC3_DEPCMD_CLEARSTALL, &params);
2207 WARN_ON_ONCE(ret);
2208 }
2209}
2210
2211static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
2212{
Felipe Balbi34d548c2012-05-24 10:30:01 +03002213 int reg;
2214
Felipe Balbi72246da2011-08-19 18:10:58 +03002215 dev_vdbg(dwc->dev, "%s\n", __func__);
Felipe Balbi72246da2011-08-19 18:10:58 +03002216
2217 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2218 reg &= ~DWC3_DCTL_INITU1ENA;
2219 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2220
2221 reg &= ~DWC3_DCTL_INITU2ENA;
2222 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002223
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302224 dbg_event(0xFF, "DISCONNECT", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03002225 dwc3_disconnect_gadget(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03002226 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002227
2228 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbidf62df52011-10-14 15:11:49 +03002229 dwc->setup_packet_pending = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002230}
2231
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002232static void dwc3_gadget_usb3_phy_suspend(struct dwc3 *dwc, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03002233{
2234 u32 reg;
2235
2236 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
2237
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002238 if (suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03002239 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002240 else
2241 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
Felipe Balbi72246da2011-08-19 18:10:58 +03002242
2243 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
2244}
2245
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002246static void dwc3_gadget_usb2_phy_suspend(struct dwc3 *dwc, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03002247{
2248 u32 reg;
2249
2250 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
2251
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002252 if (suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03002253 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002254 else
2255 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
Felipe Balbi72246da2011-08-19 18:10:58 +03002256
2257 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
2258}
2259
2260static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
2261{
2262 u32 reg;
Vijayavardhan Vennapusa908f1ed2012-10-19 19:51:48 +05302263 struct dwc3_otg *dotg = dwc->dotg;
Felipe Balbi72246da2011-08-19 18:10:58 +03002264
2265 dev_vdbg(dwc->dev, "%s\n", __func__);
2266
Felipe Balbidf62df52011-10-14 15:11:49 +03002267 /*
2268 * WORKAROUND: DWC3 revisions <1.88a have an issue which
2269 * would cause a missing Disconnect Event if there's a
2270 * pending Setup Packet in the FIFO.
2271 *
2272 * There's no suggested workaround on the official Bug
2273 * report, which states that "unless the driver/application
2274 * is doing any special handling of a disconnect event,
2275 * there is no functional issue".
2276 *
2277 * Unfortunately, it turns out that we _do_ some special
2278 * handling of a disconnect event, namely complete all
2279 * pending transfers, notify gadget driver of the
2280 * disconnection, and so on.
2281 *
2282 * Our suggested workaround is to follow the Disconnect
2283 * Event steps here, instead, based on a setup_packet_pending
2284 * flag. Such flag gets set whenever we have a XferNotReady
2285 * event on EP0 and gets cleared on XferComplete for the
2286 * same endpoint.
2287 *
2288 * Refers to:
2289 *
2290 * STAR#9000466709: RTL: Device : Disconnect event not
2291 * generated if setup packet pending in FIFO
2292 */
2293 if (dwc->revision < DWC3_REVISION_188A) {
2294 if (dwc->setup_packet_pending)
2295 dwc3_gadget_disconnect_interrupt(dwc);
2296 }
2297
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302298 dbg_event(0xFF, "BUS RST", 0);
Felipe Balbi961906e2011-12-20 15:37:21 +02002299 /* after reset -> Default State */
2300 dwc->dev_state = DWC3_DEFAULT_STATE;
2301
Paul Zimmerman88df4272012-04-27 13:10:52 +03002302 /* Recent versions support automatic phy suspend and don't need this */
2303 if (dwc->revision < DWC3_REVISION_194A) {
2304 /* Resume PHYs */
2305 dwc3_gadget_usb2_phy_suspend(dwc, false);
2306 dwc3_gadget_usb3_phy_suspend(dwc, false);
2307 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002308
Vijayavardhan Vennapusa908f1ed2012-10-19 19:51:48 +05302309 if (dotg && dotg->otg.phy)
2310 usb_phy_set_power(dotg->otg.phy, 0);
2311
Felipe Balbi72246da2011-08-19 18:10:58 +03002312 if (dwc->gadget.speed != USB_SPEED_UNKNOWN)
2313 dwc3_disconnect_gadget(dwc);
2314
2315 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2316 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
2317 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Gerard Cauvy3b637362012-02-10 12:21:18 +02002318 dwc->test_mode = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002319
2320 dwc3_stop_active_transfers(dwc);
2321 dwc3_clear_stall_all_ep(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03002322 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002323
2324 /* Reset device address to zero */
2325 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2326 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
2327 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002328}
2329
2330static void dwc3_update_ram_clk_sel(struct dwc3 *dwc, u32 speed)
2331{
2332 u32 reg;
2333 u32 usb30_clock = DWC3_GCTL_CLK_BUS;
2334
2335 /*
2336 * We change the clock only at SS but I dunno why I would want to do
2337 * this. Maybe it becomes part of the power saving plan.
2338 */
2339
2340 if (speed != DWC3_DSTS_SUPERSPEED)
2341 return;
2342
2343 /*
2344 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
2345 * each time on Connect Done.
2346 */
2347 if (!usb30_clock)
2348 return;
2349
2350 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
2351 reg |= DWC3_GCTL_RAMCLKSEL(usb30_clock);
2352 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
2353}
2354
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002355static void dwc3_gadget_phy_suspend(struct dwc3 *dwc, u8 speed)
Felipe Balbi72246da2011-08-19 18:10:58 +03002356{
2357 switch (speed) {
2358 case USB_SPEED_SUPER:
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002359 dwc3_gadget_usb2_phy_suspend(dwc, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002360 break;
2361 case USB_SPEED_HIGH:
2362 case USB_SPEED_FULL:
2363 case USB_SPEED_LOW:
Paul Zimmermandffb81b2012-04-27 12:54:05 +03002364 dwc3_gadget_usb3_phy_suspend(dwc, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002365 break;
2366 }
2367}
2368
2369static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
2370{
2371 struct dwc3_gadget_ep_cmd_params params;
2372 struct dwc3_ep *dep;
2373 int ret;
2374 u32 reg;
2375 u8 speed;
2376
2377 dev_vdbg(dwc->dev, "%s\n", __func__);
2378
2379 memset(&params, 0x00, sizeof(params));
2380
Felipe Balbi72246da2011-08-19 18:10:58 +03002381 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2382 speed = reg & DWC3_DSTS_CONNECTSPD;
2383 dwc->speed = speed;
2384
2385 dwc3_update_ram_clk_sel(dwc, speed);
2386
2387 switch (speed) {
2388 case DWC3_DCFG_SUPERSPEED:
Felipe Balbi05870c52011-10-14 14:51:38 +03002389 /*
2390 * WORKAROUND: DWC3 revisions <1.90a have an issue which
2391 * would cause a missing USB3 Reset event.
2392 *
2393 * In such situations, we should force a USB3 Reset
2394 * event by calling our dwc3_gadget_reset_interrupt()
2395 * routine.
2396 *
2397 * Refers to:
2398 *
2399 * STAR#9000483510: RTL: SS : USB3 reset event may
2400 * not be generated always when the link enters poll
2401 */
2402 if (dwc->revision < DWC3_REVISION_190A)
2403 dwc3_gadget_reset_interrupt(dwc);
2404
Felipe Balbi72246da2011-08-19 18:10:58 +03002405 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2406 dwc->gadget.ep0->maxpacket = 512;
2407 dwc->gadget.speed = USB_SPEED_SUPER;
2408 break;
2409 case DWC3_DCFG_HIGHSPEED:
2410 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2411 dwc->gadget.ep0->maxpacket = 64;
2412 dwc->gadget.speed = USB_SPEED_HIGH;
2413 break;
2414 case DWC3_DCFG_FULLSPEED2:
2415 case DWC3_DCFG_FULLSPEED1:
2416 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2417 dwc->gadget.ep0->maxpacket = 64;
2418 dwc->gadget.speed = USB_SPEED_FULL;
2419 break;
2420 case DWC3_DCFG_LOWSPEED:
2421 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
2422 dwc->gadget.ep0->maxpacket = 8;
2423 dwc->gadget.speed = USB_SPEED_LOW;
2424 break;
2425 }
2426
Paul Zimmerman88df4272012-04-27 13:10:52 +03002427 /* Recent versions support automatic phy suspend and don't need this */
2428 if (dwc->revision < DWC3_REVISION_194A) {
2429 /* Suspend unneeded PHY */
2430 dwc3_gadget_phy_suspend(dwc, dwc->gadget.speed);
2431 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002432
2433 dep = dwc->eps[0];
Felipe Balbi07e0ee82012-07-16 14:08:16 +03002434 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002435 if (ret) {
2436 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2437 return;
2438 }
2439
2440 dep = dwc->eps[1];
Felipe Balbi07e0ee82012-07-16 14:08:16 +03002441 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002442 if (ret) {
2443 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2444 return;
2445 }
2446
2447 /*
2448 * Configure PHY via GUSB3PIPECTLn if required.
2449 *
2450 * Update GTXFIFOSIZn
2451 *
2452 * In both cases reset values should be sufficient.
2453 */
2454}
2455
2456static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
2457{
2458 dev_vdbg(dwc->dev, "%s\n", __func__);
2459
2460 /*
2461 * TODO take core out of low power mode when that's
2462 * implemented.
2463 */
2464
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302465 dbg_event(0xFF, "WAKEUP", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03002466 dwc->gadget_driver->resume(&dwc->gadget);
2467}
2468
2469static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
2470 unsigned int evtinfo)
2471{
Felipe Balbifae2b902011-10-14 13:00:30 +03002472 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
2473
2474 /*
2475 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
2476 * on the link partner, the USB session might do multiple entry/exit
2477 * of low power states before a transfer takes place.
2478 *
2479 * Due to this problem, we might experience lower throughput. The
2480 * suggested workaround is to disable DCTL[12:9] bits if we're
2481 * transitioning from U1/U2 to U0 and enable those bits again
2482 * after a transfer completes and there are no pending transfers
2483 * on any of the enabled endpoints.
2484 *
2485 * This is the first half of that workaround.
2486 *
2487 * Refers to:
2488 *
2489 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
2490 * core send LGO_Ux entering U0
2491 */
2492 if (dwc->revision < DWC3_REVISION_183A) {
2493 if (next == DWC3_LINK_STATE_U0) {
2494 u32 u1u2;
2495 u32 reg;
2496
2497 switch (dwc->link_state) {
2498 case DWC3_LINK_STATE_U1:
2499 case DWC3_LINK_STATE_U2:
2500 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2501 u1u2 = reg & (DWC3_DCTL_INITU2ENA
2502 | DWC3_DCTL_ACCEPTU2ENA
2503 | DWC3_DCTL_INITU1ENA
2504 | DWC3_DCTL_ACCEPTU1ENA);
2505
2506 if (!dwc->u1u2)
2507 dwc->u1u2 = reg & u1u2;
2508
2509 reg &= ~u1u2;
2510
2511 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2512 break;
2513 default:
2514 /* do nothing */
2515 break;
2516 }
2517 }
2518 }
2519
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05302520 if (next == DWC3_LINK_STATE_U0) {
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302521 if (dwc->link_state == DWC3_LINK_STATE_U3) {
2522 dbg_event(0xFF, "RESUME", 0);
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05302523 dwc->gadget_driver->resume(&dwc->gadget);
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302524 }
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05302525 } else if (next == DWC3_LINK_STATE_U3) {
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302526 dbg_event(0xFF, "SUSPEND", 0);
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05302527 dwc->gadget_driver->suspend(&dwc->gadget);
2528 }
2529
Felipe Balbifae2b902011-10-14 13:00:30 +03002530 dwc->link_state = next;
Felipe Balbi019ac832011-09-08 21:18:47 +03002531
2532 dev_vdbg(dwc->dev, "%s link %d\n", __func__, dwc->link_state);
Felipe Balbi72246da2011-08-19 18:10:58 +03002533}
2534
2535static void dwc3_gadget_interrupt(struct dwc3 *dwc,
2536 const struct dwc3_event_devt *event)
2537{
2538 switch (event->type) {
2539 case DWC3_DEVICE_EVENT_DISCONNECT:
2540 dwc3_gadget_disconnect_interrupt(dwc);
2541 break;
2542 case DWC3_DEVICE_EVENT_RESET:
2543 dwc3_gadget_reset_interrupt(dwc);
2544 break;
2545 case DWC3_DEVICE_EVENT_CONNECT_DONE:
2546 dwc3_gadget_conndone_interrupt(dwc);
2547 break;
2548 case DWC3_DEVICE_EVENT_WAKEUP:
2549 dwc3_gadget_wakeup_interrupt(dwc);
2550 break;
2551 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
2552 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
2553 break;
2554 case DWC3_DEVICE_EVENT_EOPF:
2555 dev_vdbg(dwc->dev, "End of Periodic Frame\n");
2556 break;
2557 case DWC3_DEVICE_EVENT_SOF:
2558 dev_vdbg(dwc->dev, "Start of Periodic Frame\n");
2559 break;
2560 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302561 dbg_event(0xFF, "ERROR", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03002562 dev_vdbg(dwc->dev, "Erratic Error\n");
2563 break;
2564 case DWC3_DEVICE_EVENT_CMD_CMPL:
2565 dev_vdbg(dwc->dev, "Command Complete\n");
2566 break;
2567 case DWC3_DEVICE_EVENT_OVERFLOW:
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302568 dbg_event(0xFF, "OVERFL", 0);
Felipe Balbi72246da2011-08-19 18:10:58 +03002569 dev_vdbg(dwc->dev, "Overflow\n");
Pavankumar Kondetid393e172012-06-12 16:07:29 +05302570 /*
2571 * Controllers prior to 2.30a revision has a bug where
2572 * Overflow Event may overwrite an unacknowledged event
2573 * in the event buffer. The severity of the issue depends
2574 * on the overwritten event type. Add a warning message
2575 * saying that an event is overwritten.
2576 *
2577 * TODO: In future we may need to see if we can re-enumerate
2578 * with host.
2579 */
2580 if (dwc->revision < DWC3_REVISION_230A)
2581 dev_warn(dwc->dev, "Unacknowledged event overwritten\n");
Felipe Balbi72246da2011-08-19 18:10:58 +03002582 break;
Pavankumar Kondeti33fe6f12012-06-12 16:21:46 +05302583 case DWC3_DEVICE_EVENT_VENDOR_DEV_TEST_LMP:
2584 /*
2585 * Controllers prior to 2.30a revision has a bug, due to which
2586 * a vendor device test LMP event can not be filtered. But
2587 * this event is not handled in the current code. This is a
2588 * special event and 8 bytes of data will follow the event.
2589 * Handling this event is tricky when event buffer is almost
2590 * full. Moreover this event will not occur in normal scenario
2591 * and can only happen with special hosts in testing scenarios.
2592 * Add a warning message to indicate that this event is received
2593 * which means that event buffer might have corrupted.
2594 */
Vijayavardhan Vennapusaffeb26b2013-02-14 16:33:30 +05302595 dbg_event(0xFF, "TSTLMP", 0);
Pavankumar Kondeti33fe6f12012-06-12 16:21:46 +05302596 if (dwc->revision < DWC3_REVISION_230A)
2597 dev_warn(dwc->dev, "Vendor Device Test LMP Received\n");
2598 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03002599 default:
2600 dev_dbg(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
2601 }
2602}
2603
2604static void dwc3_process_event_entry(struct dwc3 *dwc,
2605 const union dwc3_event *event)
2606{
2607 /* Endpoint IRQ, handle it and return early */
2608 if (event->type.is_devspec == 0) {
2609 /* depevt */
2610 return dwc3_endpoint_interrupt(dwc, &event->depevt);
2611 }
2612
2613 switch (event->type.type) {
2614 case DWC3_EVENT_TYPE_DEV:
2615 dwc3_gadget_interrupt(dwc, &event->devt);
2616 break;
2617 /* REVISIT what to do with Carkit and I2C events ? */
2618 default:
2619 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
2620 }
2621}
2622
2623static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc, u32 buf)
2624{
2625 struct dwc3_event_buffer *evt;
2626 int left;
2627 u32 count;
2628
2629 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(buf));
2630 count &= DWC3_GEVNTCOUNT_MASK;
2631 if (!count)
2632 return IRQ_NONE;
2633
2634 evt = dwc->ev_buffs[buf];
2635 left = count;
2636
2637 while (left > 0) {
2638 union dwc3_event event;
2639
Felipe Balbid70d8442012-02-06 13:40:17 +02002640 event.raw = *(u32 *) (evt->buf + evt->lpos);
2641
Felipe Balbi72246da2011-08-19 18:10:58 +03002642 dwc3_process_event_entry(dwc, &event);
2643 /*
2644 * XXX we wrap around correctly to the next entry as almost all
2645 * entries are 4 bytes in size. There is one entry which has 12
2646 * bytes which is a regular entry followed by 8 bytes data. ATM
2647 * I don't know how things are organized if were get next to the
2648 * a boundary so I worry about that once we try to handle that.
2649 */
2650 evt->lpos = (evt->lpos + 4) % DWC3_EVENT_BUFFERS_SIZE;
2651 left -= 4;
2652
2653 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(buf), 4);
2654 }
2655
2656 return IRQ_HANDLED;
2657}
2658
2659static irqreturn_t dwc3_interrupt(int irq, void *_dwc)
2660{
2661 struct dwc3 *dwc = _dwc;
2662 int i;
2663 irqreturn_t ret = IRQ_NONE;
2664
2665 spin_lock(&dwc->lock);
2666
Felipe Balbi9f622b22011-10-12 10:31:04 +03002667 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002668 irqreturn_t status;
2669
2670 status = dwc3_process_event_buf(dwc, i);
2671 if (status == IRQ_HANDLED)
2672 ret = status;
2673 }
2674
2675 spin_unlock(&dwc->lock);
2676
2677 return ret;
2678}
2679
2680/**
2681 * dwc3_gadget_init - Initializes gadget related registers
Paul Zimmerman1d046792012-02-15 18:56:56 -08002682 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +03002683 *
2684 * Returns 0 on success otherwise negative errno.
2685 */
2686int __devinit dwc3_gadget_init(struct dwc3 *dwc)
2687{
2688 u32 reg;
2689 int ret;
2690 int irq;
2691
2692 dwc->ctrl_req = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2693 &dwc->ctrl_req_addr, GFP_KERNEL);
2694 if (!dwc->ctrl_req) {
2695 dev_err(dwc->dev, "failed to allocate ctrl request\n");
2696 ret = -ENOMEM;
2697 goto err0;
2698 }
2699
2700 dwc->ep0_trb = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2701 &dwc->ep0_trb_addr, GFP_KERNEL);
2702 if (!dwc->ep0_trb) {
2703 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
2704 ret = -ENOMEM;
2705 goto err1;
2706 }
2707
Felipe Balbib0791fb2012-05-04 12:58:14 +03002708 dwc->setup_buf = kzalloc(DWC3_EP0_BOUNCE_SIZE, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03002709 if (!dwc->setup_buf) {
2710 dev_err(dwc->dev, "failed to allocate setup buffer\n");
2711 ret = -ENOMEM;
2712 goto err2;
2713 }
2714
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002715 dwc->ep0_bounce = dma_alloc_coherent(dwc->dev,
Felipe Balbib0791fb2012-05-04 12:58:14 +03002716 DWC3_EP0_BOUNCE_SIZE, &dwc->ep0_bounce_addr,
2717 GFP_KERNEL);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002718 if (!dwc->ep0_bounce) {
2719 dev_err(dwc->dev, "failed to allocate ep0 bounce buffer\n");
2720 ret = -ENOMEM;
2721 goto err3;
2722 }
2723
Felipe Balbi72246da2011-08-19 18:10:58 +03002724 dev_set_name(&dwc->gadget.dev, "gadget");
2725
2726 dwc->gadget.ops = &dwc3_gadget_ops;
Manu Gautama7b082a2012-11-06 09:50:09 +05302727 dwc->gadget.max_speed = USB_SPEED_SUPER;
Felipe Balbi72246da2011-08-19 18:10:58 +03002728 dwc->gadget.speed = USB_SPEED_UNKNOWN;
2729 dwc->gadget.dev.parent = dwc->dev;
Felipe Balbieeb720f2011-11-28 12:46:59 +02002730 dwc->gadget.sg_supported = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03002731
2732 dma_set_coherent_mask(&dwc->gadget.dev, dwc->dev->coherent_dma_mask);
2733
2734 dwc->gadget.dev.dma_parms = dwc->dev->dma_parms;
2735 dwc->gadget.dev.dma_mask = dwc->dev->dma_mask;
2736 dwc->gadget.dev.release = dwc3_gadget_release;
2737 dwc->gadget.name = "dwc3-gadget";
2738
2739 /*
2740 * REVISIT: Here we should clear all pending IRQs to be
2741 * sure we're starting from a well known location.
2742 */
2743
2744 ret = dwc3_gadget_init_endpoints(dwc);
2745 if (ret)
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002746 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03002747
2748 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
2749
2750 ret = request_irq(irq, dwc3_interrupt, IRQF_SHARED,
2751 "dwc3", dwc);
2752 if (ret) {
2753 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
2754 irq, ret);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002755 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03002756 }
2757
Sebastian Andrzej Siewiorbb8b8a32011-09-13 17:54:39 +02002758 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2759 reg |= DWC3_DCFG_LPM_CAP;
2760 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2761
Felipe Balbi72246da2011-08-19 18:10:58 +03002762 /* Enable all but Start and End of Frame IRQs */
Pavankumar Kondeti33fe6f12012-06-12 16:21:46 +05302763 reg = (DWC3_DEVTEN_EVNTOVERFLOWEN |
Felipe Balbi72246da2011-08-19 18:10:58 +03002764 DWC3_DEVTEN_CMDCMPLTEN |
2765 DWC3_DEVTEN_ERRTICERREN |
2766 DWC3_DEVTEN_WKUPEVTEN |
2767 DWC3_DEVTEN_ULSTCNGEN |
2768 DWC3_DEVTEN_CONNECTDONEEN |
2769 DWC3_DEVTEN_USBRSTEN |
2770 DWC3_DEVTEN_DISCONNEVTEN);
2771 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
2772
Paul Zimmerman88df4272012-04-27 13:10:52 +03002773 /* Enable USB2 LPM and automatic phy suspend only on recent versions */
2774 if (dwc->revision >= DWC3_REVISION_194A) {
2775 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2776 reg |= DWC3_DCFG_LPM_CAP;
2777 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2778
2779 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2780 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
2781
2782 /* TODO: This should be configurable */
Pratyush Anandd69dcdd2012-07-02 10:21:52 +05302783 reg |= DWC3_DCTL_HIRD_THRES(28);
Paul Zimmerman88df4272012-04-27 13:10:52 +03002784
2785 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2786
Pratyush Anand50ed8342012-06-06 19:36:17 +05302787 dwc3_gadget_usb2_phy_suspend(dwc, false);
2788 dwc3_gadget_usb3_phy_suspend(dwc, false);
Paul Zimmerman88df4272012-04-27 13:10:52 +03002789 }
2790
Felipe Balbi72246da2011-08-19 18:10:58 +03002791 ret = device_register(&dwc->gadget.dev);
2792 if (ret) {
2793 dev_err(dwc->dev, "failed to register gadget device\n");
2794 put_device(&dwc->gadget.dev);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002795 goto err6;
Felipe Balbi72246da2011-08-19 18:10:58 +03002796 }
2797
2798 ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
2799 if (ret) {
2800 dev_err(dwc->dev, "failed to register udc\n");
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002801 goto err7;
Felipe Balbi72246da2011-08-19 18:10:58 +03002802 }
2803
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02002804 if (dwc->dotg) {
2805 /* dwc3 otg driver is active (DRD mode + SRPSupport=1) */
2806 ret = otg_set_peripheral(&dwc->dotg->otg, &dwc->gadget);
2807 if (ret) {
2808 dev_err(dwc->dev, "failed to set peripheral to otg\n");
2809 goto err7;
2810 }
Manu Gautamb5067272012-07-02 09:53:41 +05302811 } else {
2812 pm_runtime_no_callbacks(&dwc->gadget.dev);
2813 pm_runtime_set_active(&dwc->gadget.dev);
2814 pm_runtime_enable(&dwc->gadget.dev);
2815 pm_runtime_get(&dwc->gadget.dev);
Ido Shayevitzcdeef4c2012-05-29 13:17:41 +02002816 }
2817
Felipe Balbi72246da2011-08-19 18:10:58 +03002818 return 0;
2819
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002820err7:
Felipe Balbi72246da2011-08-19 18:10:58 +03002821 device_unregister(&dwc->gadget.dev);
2822
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002823err6:
Felipe Balbi72246da2011-08-19 18:10:58 +03002824 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2825 free_irq(irq, dwc);
2826
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002827err5:
Felipe Balbi72246da2011-08-19 18:10:58 +03002828 dwc3_gadget_free_endpoints(dwc);
2829
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002830err4:
Felipe Balbib0791fb2012-05-04 12:58:14 +03002831 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2832 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002833
Felipe Balbi72246da2011-08-19 18:10:58 +03002834err3:
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002835 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002836
2837err2:
2838 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2839 dwc->ep0_trb, dwc->ep0_trb_addr);
2840
2841err1:
2842 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2843 dwc->ctrl_req, dwc->ctrl_req_addr);
2844
2845err0:
2846 return ret;
2847}
2848
2849void dwc3_gadget_exit(struct dwc3 *dwc)
2850{
2851 int irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03002852
Manu Gautamb5067272012-07-02 09:53:41 +05302853 if (dwc->dotg) {
2854 pm_runtime_put(&dwc->gadget.dev);
2855 pm_runtime_disable(&dwc->gadget.dev);
2856 }
2857
Felipe Balbi72246da2011-08-19 18:10:58 +03002858 usb_del_gadget_udc(&dwc->gadget);
2859 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
2860
2861 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2862 free_irq(irq, dwc);
2863
Felipe Balbi72246da2011-08-19 18:10:58 +03002864 dwc3_gadget_free_endpoints(dwc);
2865
Felipe Balbib0791fb2012-05-04 12:58:14 +03002866 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2867 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002868
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002869 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002870
2871 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2872 dwc->ep0_trb, dwc->ep0_trb_addr);
2873
2874 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2875 dwc->ctrl_req, dwc->ctrl_req_addr);
2876
2877 device_unregister(&dwc->gadget.dev);
2878}