blob: f6fb42da2e6494d8bcc8bfe62c1bce25f82cced9 [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>
52
53#include "core.h"
54#include "gadget.h"
55#include "io.h"
56
Felipe Balbi04a9bfc2012-01-02 18:25:43 +020057/**
58 * dwc3_gadget_set_test_mode - Enables USB2 Test Modes
59 * @dwc: pointer to our context structure
60 * @mode: the mode to set (J, K SE0 NAK, Force Enable)
61 *
62 * Caller should take care of locking. This function will
63 * return 0 on success or -EINVAL if wrong Test Selector
64 * is passed
65 */
66int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode)
67{
68 u32 reg;
69
70 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
71 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
72
73 switch (mode) {
74 case TEST_J:
75 case TEST_K:
76 case TEST_SE0_NAK:
77 case TEST_PACKET:
78 case TEST_FORCE_EN:
79 reg |= mode << 1;
80 break;
81 default:
82 return -EINVAL;
83 }
84
85 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
86
87 return 0;
88}
89
Felipe Balbi8598bde2012-01-02 18:55:57 +020090/**
91 * dwc3_gadget_set_link_state - Sets USB Link to a particular State
92 * @dwc: pointer to our context structure
93 * @state: the state to put link into
94 *
95 * Caller should take care of locking. This function will
Paul Zimmermanaee63e32012-02-24 17:32:15 -080096 * return 0 on success or -ETIMEDOUT.
Felipe Balbi8598bde2012-01-02 18:55:57 +020097 */
98int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state)
99{
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800100 int retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200101 u32 reg;
102
Paul Zimmerman802fde92012-04-27 13:10:52 +0300103 /*
104 * Wait until device controller is ready. Only applies to 1.94a and
105 * later RTL.
106 */
107 if (dwc->revision >= DWC3_REVISION_194A) {
108 while (--retries) {
109 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
110 if (reg & DWC3_DSTS_DCNRD)
111 udelay(5);
112 else
113 break;
114 }
115
116 if (retries <= 0)
117 return -ETIMEDOUT;
118 }
119
Felipe Balbi8598bde2012-01-02 18:55:57 +0200120 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
121 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
122
123 /* set requested state */
124 reg |= DWC3_DCTL_ULSTCHNGREQ(state);
125 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
126
Paul Zimmerman802fde92012-04-27 13:10:52 +0300127 /*
128 * The following code is racy when called from dwc3_gadget_wakeup,
129 * and is not needed, at least on newer versions
130 */
131 if (dwc->revision >= DWC3_REVISION_194A)
132 return 0;
133
Felipe Balbi8598bde2012-01-02 18:55:57 +0200134 /* wait for a change in DSTS */
Paul Zimmermanaed430e2012-04-27 12:52:01 +0300135 retries = 10000;
Felipe Balbi8598bde2012-01-02 18:55:57 +0200136 while (--retries) {
137 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
138
Felipe Balbi8598bde2012-01-02 18:55:57 +0200139 if (DWC3_DSTS_USBLNKST(reg) == state)
140 return 0;
141
Paul Zimmermanaee63e32012-02-24 17:32:15 -0800142 udelay(5);
Felipe Balbi8598bde2012-01-02 18:55:57 +0200143 }
144
145 dev_vdbg(dwc->dev, "link state change request timed out\n");
146
147 return -ETIMEDOUT;
148}
149
Felipe Balbi457e84b2012-01-18 18:04:09 +0200150/**
151 * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case
152 * @dwc: pointer to our context structure
153 *
154 * This function will a best effort FIFO allocation in order
155 * to improve FIFO usage and throughput, while still allowing
156 * us to enable as many endpoints as possible.
157 *
158 * Keep in mind that this operation will be highly dependent
159 * on the configured size for RAM1 - which contains TxFifo -,
160 * the amount of endpoints enabled on coreConsultant tool, and
161 * the width of the Master Bus.
162 *
163 * In the ideal world, we would always be able to satisfy the
164 * following equation:
165 *
166 * ((512 + 2 * MDWIDTH-Bytes) + (Number of IN Endpoints - 1) * \
167 * (3 * (1024 + MDWIDTH-Bytes) + MDWIDTH-Bytes)) / MDWIDTH-Bytes
168 *
169 * Unfortunately, due to many variables that's not always the case.
170 */
171int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc)
172{
173 int last_fifo_depth = 0;
174 int ram1_depth;
175 int fifo_size;
176 int mdwidth;
177 int num;
178
179 if (!dwc->needs_fifo_resize)
180 return 0;
181
182 ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7);
183 mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0);
184
185 /* MDWIDTH is represented in bits, we need it in bytes */
186 mdwidth >>= 3;
187
188 /*
189 * FIXME For now we will only allocate 1 wMaxPacketSize space
190 * for each enabled endpoint, later patches will come to
191 * improve this algorithm so that we better use the internal
192 * FIFO space
193 */
194 for (num = 0; num < DWC3_ENDPOINTS_NUM; num++) {
195 struct dwc3_ep *dep = dwc->eps[num];
196 int fifo_number = dep->number >> 1;
Felipe Balbi2e81c362012-02-02 13:01:12 +0200197 int mult = 1;
Felipe Balbi457e84b2012-01-18 18:04:09 +0200198 int tmp;
199
200 if (!(dep->number & 1))
201 continue;
202
203 if (!(dep->flags & DWC3_EP_ENABLED))
204 continue;
205
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200206 if (usb_endpoint_xfer_bulk(dep->endpoint.desc)
207 || usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi2e81c362012-02-02 13:01:12 +0200208 mult = 3;
209
210 /*
211 * REVISIT: the following assumes we will always have enough
212 * space available on the FIFO RAM for all possible use cases.
213 * Make sure that's true somehow and change FIFO allocation
214 * accordingly.
215 *
216 * If we have Bulk or Isochronous endpoints, we want
217 * them to be able to be very, very fast. So we're giving
218 * those endpoints a fifo_size which is enough for 3 full
219 * packets
220 */
221 tmp = mult * (dep->endpoint.maxpacket + mdwidth);
Felipe Balbi457e84b2012-01-18 18:04:09 +0200222 tmp += mdwidth;
223
224 fifo_size = DIV_ROUND_UP(tmp, mdwidth);
Felipe Balbi2e81c362012-02-02 13:01:12 +0200225
Felipe Balbi457e84b2012-01-18 18:04:09 +0200226 fifo_size |= (last_fifo_depth << 16);
227
228 dev_vdbg(dwc->dev, "%s: Fifo Addr %04x Size %d\n",
229 dep->name, last_fifo_depth, fifo_size & 0xffff);
230
231 dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(fifo_number),
232 fifo_size);
233
234 last_fifo_depth += (fifo_size & 0xffff);
235 }
236
237 return 0;
238}
239
Felipe Balbi72246da2011-08-19 18:10:58 +0300240void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req,
241 int status)
242{
243 struct dwc3 *dwc = dep->dwc;
244
245 if (req->queued) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200246 if (req->request.num_mapped_sgs)
247 dep->busy_slot += req->request.num_mapped_sgs;
248 else
249 dep->busy_slot++;
250
Felipe Balbi72246da2011-08-19 18:10:58 +0300251 /*
252 * Skip LINK TRB. We can't use req->trb and check for
253 * DWC3_TRBCTL_LINK_TRB because it points the TRB we just
254 * completed (not the LINK TRB).
255 */
256 if (((dep->busy_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200257 usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi72246da2011-08-19 18:10:58 +0300258 dep->busy_slot++;
259 }
260 list_del(&req->list);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200261 req->trb = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300262
263 if (req->request.status == -EINPROGRESS)
264 req->request.status = status;
265
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200266 usb_gadget_unmap_request(&dwc->gadget, &req->request,
267 req->direction);
Felipe Balbi72246da2011-08-19 18:10:58 +0300268
269 dev_dbg(dwc->dev, "request %p from %s completed %d/%d ===> %d\n",
270 req, dep->name, req->request.actual,
271 req->request.length, status);
272
273 spin_unlock(&dwc->lock);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200274 req->request.complete(&dep->endpoint, &req->request);
Felipe Balbi72246da2011-08-19 18:10:58 +0300275 spin_lock(&dwc->lock);
276}
277
278static const char *dwc3_gadget_ep_cmd_string(u8 cmd)
279{
280 switch (cmd) {
281 case DWC3_DEPCMD_DEPSTARTCFG:
282 return "Start New Configuration";
283 case DWC3_DEPCMD_ENDTRANSFER:
284 return "End Transfer";
285 case DWC3_DEPCMD_UPDATETRANSFER:
286 return "Update Transfer";
287 case DWC3_DEPCMD_STARTTRANSFER:
288 return "Start Transfer";
289 case DWC3_DEPCMD_CLEARSTALL:
290 return "Clear Stall";
291 case DWC3_DEPCMD_SETSTALL:
292 return "Set Stall";
Paul Zimmerman802fde92012-04-27 13:10:52 +0300293 case DWC3_DEPCMD_GETEPSTATE:
294 return "Get Endpoint State";
Felipe Balbi72246da2011-08-19 18:10:58 +0300295 case DWC3_DEPCMD_SETTRANSFRESOURCE:
296 return "Set Endpoint Transfer Resource";
297 case DWC3_DEPCMD_SETEPCONFIG:
298 return "Set Endpoint Configuration";
299 default:
300 return "UNKNOWN command";
301 }
302}
303
Felipe Balbib09bb642012-04-24 16:19:11 +0300304int dwc3_send_gadget_generic_command(struct dwc3 *dwc, int cmd, u32 param)
305{
306 u32 timeout = 500;
307 u32 reg;
308
309 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param);
310 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT);
311
312 do {
313 reg = dwc3_readl(dwc->regs, DWC3_DGCMD);
314 if (!(reg & DWC3_DGCMD_CMDACT)) {
315 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
316 DWC3_DGCMD_STATUS(reg));
317 return 0;
318 }
319
320 /*
321 * We can't sleep here, because it's also called from
322 * interrupt context.
323 */
324 timeout--;
325 if (!timeout)
326 return -ETIMEDOUT;
327 udelay(1);
328 } while (1);
329}
330
Felipe Balbi72246da2011-08-19 18:10:58 +0300331int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep,
332 unsigned cmd, struct dwc3_gadget_ep_cmd_params *params)
333{
334 struct dwc3_ep *dep = dwc->eps[ep];
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200335 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +0300336 u32 reg;
337
338 dev_vdbg(dwc->dev, "%s: cmd '%s' params %08x %08x %08x\n",
339 dep->name,
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300340 dwc3_gadget_ep_cmd_string(cmd), params->param0,
341 params->param1, params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300342
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300343 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR0(ep), params->param0);
344 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR1(ep), params->param1);
345 dwc3_writel(dwc->regs, DWC3_DEPCMDPAR2(ep), params->param2);
Felipe Balbi72246da2011-08-19 18:10:58 +0300346
347 dwc3_writel(dwc->regs, DWC3_DEPCMD(ep), cmd | DWC3_DEPCMD_CMDACT);
348 do {
349 reg = dwc3_readl(dwc->regs, DWC3_DEPCMD(ep));
350 if (!(reg & DWC3_DEPCMD_CMDACT)) {
Felipe Balbi164f6e12011-08-27 20:29:58 +0300351 dev_vdbg(dwc->dev, "Command Complete --> %d\n",
352 DWC3_DEPCMD_STATUS(reg));
Felipe Balbi72246da2011-08-19 18:10:58 +0300353 return 0;
354 }
355
356 /*
Felipe Balbi72246da2011-08-19 18:10:58 +0300357 * We can't sleep here, because it is also called from
358 * interrupt context.
359 */
360 timeout--;
361 if (!timeout)
362 return -ETIMEDOUT;
363
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +0200364 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300365 } while (1);
366}
367
368static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep,
Felipe Balbif6bafc62012-02-06 11:04:53 +0200369 struct dwc3_trb *trb)
Felipe Balbi72246da2011-08-19 18:10:58 +0300370{
Paul Zimmermanc439ef82011-09-30 10:58:45 +0300371 u32 offset = (char *) trb - (char *) dep->trb_pool;
Felipe Balbi72246da2011-08-19 18:10:58 +0300372
373 return dep->trb_pool_dma + offset;
374}
375
376static int dwc3_alloc_trb_pool(struct dwc3_ep *dep)
377{
378 struct dwc3 *dwc = dep->dwc;
379
380 if (dep->trb_pool)
381 return 0;
382
383 if (dep->number == 0 || dep->number == 1)
384 return 0;
385
386 dep->trb_pool = dma_alloc_coherent(dwc->dev,
387 sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
388 &dep->trb_pool_dma, GFP_KERNEL);
389 if (!dep->trb_pool) {
390 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n",
391 dep->name);
392 return -ENOMEM;
393 }
394
395 return 0;
396}
397
398static void dwc3_free_trb_pool(struct dwc3_ep *dep)
399{
400 struct dwc3 *dwc = dep->dwc;
401
402 dma_free_coherent(dwc->dev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM,
403 dep->trb_pool, dep->trb_pool_dma);
404
405 dep->trb_pool = NULL;
406 dep->trb_pool_dma = 0;
407}
408
409static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep)
410{
411 struct dwc3_gadget_ep_cmd_params params;
412 u32 cmd;
413
414 memset(&params, 0x00, sizeof(params));
415
416 if (dep->number != 1) {
417 cmd = DWC3_DEPCMD_DEPSTARTCFG;
418 /* XferRscIdx == 0 for ep0 and 2 for the remaining */
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300419 if (dep->number > 1) {
420 if (dwc->start_config_issued)
421 return 0;
422 dwc->start_config_issued = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300423 cmd |= DWC3_DEPCMD_PARAM(2);
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300424 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300425
426 return dwc3_send_gadget_ep_cmd(dwc, 0, cmd, &params);
427 }
428
429 return 0;
430}
431
432static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200433 const struct usb_endpoint_descriptor *desc,
434 const struct usb_ss_ep_comp_descriptor *comp_desc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300435{
436 struct dwc3_gadget_ep_cmd_params params;
437
438 memset(&params, 0x00, sizeof(params));
439
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300440 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc))
441 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc))
442 | DWC3_DEPCFG_BURST_SIZE(dep->endpoint.maxburst);
Felipe Balbi72246da2011-08-19 18:10:58 +0300443
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300444 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN
445 | DWC3_DEPCFG_XFER_NOT_READY_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300446
Felipe Balbi18b7ede2012-01-02 13:35:41 +0200447 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300448 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE
449 | DWC3_DEPCFG_STREAM_EVENT_EN;
Felipe Balbi879631a2011-09-30 10:58:47 +0300450 dep->stream_capable = true;
451 }
452
Felipe Balbi72246da2011-08-19 18:10:58 +0300453 if (usb_endpoint_xfer_isoc(desc))
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300454 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN;
Felipe Balbi72246da2011-08-19 18:10:58 +0300455
456 /*
457 * We are doing 1:1 mapping for endpoints, meaning
458 * Physical Endpoints 2 maps to Logical Endpoint 2 and
459 * so on. We consider the direction bit as part of the physical
460 * endpoint number. So USB endpoint 0x81 is 0x03.
461 */
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300462 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number);
Felipe Balbi72246da2011-08-19 18:10:58 +0300463
464 /*
465 * We must use the lower 16 TX FIFOs even though
466 * HW might have more
467 */
468 if (dep->direction)
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300469 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300470
471 if (desc->bInterval) {
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300472 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300473 dep->interval = 1 << (desc->bInterval - 1);
474 }
475
476 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
477 DWC3_DEPCMD_SETEPCONFIG, &params);
478}
479
480static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep)
481{
482 struct dwc3_gadget_ep_cmd_params params;
483
484 memset(&params, 0x00, sizeof(params));
485
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300486 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1);
Felipe Balbi72246da2011-08-19 18:10:58 +0300487
488 return dwc3_send_gadget_ep_cmd(dwc, dep->number,
489 DWC3_DEPCMD_SETTRANSFRESOURCE, &params);
490}
491
492/**
493 * __dwc3_gadget_ep_enable - Initializes a HW endpoint
494 * @dep: endpoint to be initialized
495 * @desc: USB Endpoint Descriptor
496 *
497 * Caller should take care of locking
498 */
499static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep,
Felipe Balbic90bfae2011-11-29 13:11:21 +0200500 const struct usb_endpoint_descriptor *desc,
501 const struct usb_ss_ep_comp_descriptor *comp_desc)
Felipe Balbi72246da2011-08-19 18:10:58 +0300502{
503 struct dwc3 *dwc = dep->dwc;
504 u32 reg;
505 int ret = -ENOMEM;
506
507 if (!(dep->flags & DWC3_EP_ENABLED)) {
508 ret = dwc3_gadget_start_config(dwc, dep);
509 if (ret)
510 return ret;
511 }
512
Felipe Balbic90bfae2011-11-29 13:11:21 +0200513 ret = dwc3_gadget_set_ep_config(dwc, dep, desc, comp_desc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300514 if (ret)
515 return ret;
516
517 if (!(dep->flags & DWC3_EP_ENABLED)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200518 struct dwc3_trb *trb_st_hw;
519 struct dwc3_trb *trb_link;
Felipe Balbi72246da2011-08-19 18:10:58 +0300520
521 ret = dwc3_gadget_set_xfer_resource(dwc, dep);
522 if (ret)
523 return ret;
524
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200525 dep->endpoint.desc = desc;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200526 dep->comp_desc = comp_desc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300527 dep->type = usb_endpoint_type(desc);
528 dep->flags |= DWC3_EP_ENABLED;
529
530 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
531 reg |= DWC3_DALEPENA_EP(dep->number);
532 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
533
534 if (!usb_endpoint_xfer_isoc(desc))
535 return 0;
536
537 memset(&trb_link, 0, sizeof(trb_link));
538
Paul Zimmerman1d046792012-02-15 18:56:56 -0800539 /* Link TRB for ISOC. The HWO bit is never reset */
Felipe Balbi72246da2011-08-19 18:10:58 +0300540 trb_st_hw = &dep->trb_pool[0];
541
Felipe Balbif6bafc62012-02-06 11:04:53 +0200542 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1];
Felipe Balbi72246da2011-08-19 18:10:58 +0300543
Felipe Balbif6bafc62012-02-06 11:04:53 +0200544 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
545 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw));
546 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB;
547 trb_link->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbi72246da2011-08-19 18:10:58 +0300548 }
549
550 return 0;
551}
552
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200553static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum);
554static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep)
Felipe Balbi72246da2011-08-19 18:10:58 +0300555{
556 struct dwc3_request *req;
557
Felipe Balbiea53b882012-02-17 12:10:04 +0200558 if (!list_empty(&dep->req_queued)) {
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200559 dwc3_stop_active_transfer(dwc, dep->number);
560
Felipe Balbiea53b882012-02-17 12:10:04 +0200561 /*
562 * NOTICE: We are violating what the Databook says about the
563 * EndTransfer command. Ideally we would _always_ wait for the
564 * EndTransfer Command Completion IRQ, but that's causing too
565 * much trouble synchronizing between us and gadget driver.
566 *
567 * We have discussed this with the IP Provider and it was
568 * suggested to giveback all requests here, but give HW some
569 * extra time to synchronize with the interconnect. We're using
570 * an arbitraty 100us delay for that.
571 *
572 * Note also that a similar handling was tested by Synopsys
573 * (thanks a lot Paul) and nothing bad has come out of it.
574 * In short, what we're doing is:
575 *
576 * - Issue EndTransfer WITH CMDIOC bit set
577 * - Wait 100us
578 * - giveback all requests to gadget driver
579 */
580 udelay(100);
581
Pratyush Anand15916332012-06-15 11:54:36 +0530582 while (!list_empty(&dep->req_queued)) {
583 req = next_request(&dep->req_queued);
584
585 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
586 }
Felipe Balbiea53b882012-02-17 12:10:04 +0200587 }
588
Felipe Balbi72246da2011-08-19 18:10:58 +0300589 while (!list_empty(&dep->request_list)) {
590 req = next_request(&dep->request_list);
591
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200592 dwc3_gadget_giveback(dep, req, -ESHUTDOWN);
Felipe Balbi72246da2011-08-19 18:10:58 +0300593 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300594}
595
596/**
597 * __dwc3_gadget_ep_disable - Disables a HW endpoint
598 * @dep: the endpoint to disable
599 *
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200600 * This function also removes requests which are currently processed ny the
601 * hardware and those which are not yet scheduled.
602 * Caller should take care of locking.
Felipe Balbi72246da2011-08-19 18:10:58 +0300603 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300604static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep)
605{
606 struct dwc3 *dwc = dep->dwc;
607 u32 reg;
608
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +0200609 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +0300610
611 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA);
612 reg &= ~DWC3_DALEPENA_EP(dep->number);
613 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg);
614
Felipe Balbi879631a2011-09-30 10:58:47 +0300615 dep->stream_capable = false;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200616 dep->endpoint.desc = NULL;
Felipe Balbic90bfae2011-11-29 13:11:21 +0200617 dep->comp_desc = NULL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300618 dep->type = 0;
Felipe Balbi879631a2011-09-30 10:58:47 +0300619 dep->flags = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300620
621 return 0;
622}
623
624/* -------------------------------------------------------------------------- */
625
626static int dwc3_gadget_ep0_enable(struct usb_ep *ep,
627 const struct usb_endpoint_descriptor *desc)
628{
629 return -EINVAL;
630}
631
632static int dwc3_gadget_ep0_disable(struct usb_ep *ep)
633{
634 return -EINVAL;
635}
636
637/* -------------------------------------------------------------------------- */
638
639static int dwc3_gadget_ep_enable(struct usb_ep *ep,
640 const struct usb_endpoint_descriptor *desc)
641{
642 struct dwc3_ep *dep;
643 struct dwc3 *dwc;
644 unsigned long flags;
645 int ret;
646
647 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) {
648 pr_debug("dwc3: invalid parameters\n");
649 return -EINVAL;
650 }
651
652 if (!desc->wMaxPacketSize) {
653 pr_debug("dwc3: missing wMaxPacketSize\n");
654 return -EINVAL;
655 }
656
657 dep = to_dwc3_ep(ep);
658 dwc = dep->dwc;
659
660 switch (usb_endpoint_type(desc)) {
661 case USB_ENDPOINT_XFER_CONTROL:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900662 strlcat(dep->name, "-control", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300663 break;
664 case USB_ENDPOINT_XFER_ISOC:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900665 strlcat(dep->name, "-isoc", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300666 break;
667 case USB_ENDPOINT_XFER_BULK:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900668 strlcat(dep->name, "-bulk", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300669 break;
670 case USB_ENDPOINT_XFER_INT:
Anton Tikhomirov27a78d62012-02-23 15:38:46 +0900671 strlcat(dep->name, "-int", sizeof(dep->name));
Felipe Balbi72246da2011-08-19 18:10:58 +0300672 break;
673 default:
674 dev_err(dwc->dev, "invalid endpoint transfer type\n");
675 }
676
677 if (dep->flags & DWC3_EP_ENABLED) {
678 dev_WARN_ONCE(dwc->dev, true, "%s is already enabled\n",
679 dep->name);
680 return 0;
681 }
682
683 dev_vdbg(dwc->dev, "Enabling %s\n", dep->name);
684
685 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbic90bfae2011-11-29 13:11:21 +0200686 ret = __dwc3_gadget_ep_enable(dep, desc, ep->comp_desc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300687 spin_unlock_irqrestore(&dwc->lock, flags);
688
689 return ret;
690}
691
692static int dwc3_gadget_ep_disable(struct usb_ep *ep)
693{
694 struct dwc3_ep *dep;
695 struct dwc3 *dwc;
696 unsigned long flags;
697 int ret;
698
699 if (!ep) {
700 pr_debug("dwc3: invalid parameters\n");
701 return -EINVAL;
702 }
703
704 dep = to_dwc3_ep(ep);
705 dwc = dep->dwc;
706
707 if (!(dep->flags & DWC3_EP_ENABLED)) {
708 dev_WARN_ONCE(dwc->dev, true, "%s is already disabled\n",
709 dep->name);
710 return 0;
711 }
712
713 snprintf(dep->name, sizeof(dep->name), "ep%d%s",
714 dep->number >> 1,
715 (dep->number & 1) ? "in" : "out");
716
717 spin_lock_irqsave(&dwc->lock, flags);
718 ret = __dwc3_gadget_ep_disable(dep);
719 spin_unlock_irqrestore(&dwc->lock, flags);
720
721 return ret;
722}
723
724static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep,
725 gfp_t gfp_flags)
726{
727 struct dwc3_request *req;
728 struct dwc3_ep *dep = to_dwc3_ep(ep);
729 struct dwc3 *dwc = dep->dwc;
730
731 req = kzalloc(sizeof(*req), gfp_flags);
732 if (!req) {
733 dev_err(dwc->dev, "not enough memory\n");
734 return NULL;
735 }
736
737 req->epnum = dep->number;
738 req->dep = dep;
Felipe Balbi72246da2011-08-19 18:10:58 +0300739
740 return &req->request;
741}
742
743static void dwc3_gadget_ep_free_request(struct usb_ep *ep,
744 struct usb_request *request)
745{
746 struct dwc3_request *req = to_dwc3_request(request);
747
748 kfree(req);
749}
750
Felipe Balbic71fc372011-11-22 11:37:34 +0200751/**
752 * dwc3_prepare_one_trb - setup one TRB from one request
753 * @dep: endpoint for which this request is prepared
754 * @req: dwc3_request pointer
755 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200756static void dwc3_prepare_one_trb(struct dwc3_ep *dep,
Felipe Balbieeb720f2011-11-28 12:46:59 +0200757 struct dwc3_request *req, dma_addr_t dma,
758 unsigned length, unsigned last, unsigned chain)
Felipe Balbic71fc372011-11-22 11:37:34 +0200759{
Felipe Balbieeb720f2011-11-28 12:46:59 +0200760 struct dwc3 *dwc = dep->dwc;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200761 struct dwc3_trb *trb;
Felipe Balbic71fc372011-11-22 11:37:34 +0200762
763 unsigned int cur_slot;
764
Felipe Balbieeb720f2011-11-28 12:46:59 +0200765 dev_vdbg(dwc->dev, "%s: req %p dma %08llx length %d%s%s\n",
766 dep->name, req, (unsigned long long) dma,
767 length, last ? " last" : "",
768 chain ? " chain" : "");
769
Felipe Balbif6bafc62012-02-06 11:04:53 +0200770 trb = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
Felipe Balbic71fc372011-11-22 11:37:34 +0200771 cur_slot = dep->free_slot;
772 dep->free_slot++;
773
774 /* Skip the LINK-TRB on ISOC */
775 if (((cur_slot & DWC3_TRB_MASK) == DWC3_TRB_NUM - 1) &&
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200776 usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi68e823e2011-11-28 12:25:01 +0200777 return;
Felipe Balbic71fc372011-11-22 11:37:34 +0200778
Felipe Balbieeb720f2011-11-28 12:46:59 +0200779 if (!req->trb) {
780 dwc3_gadget_move_request_queued(req);
Felipe Balbif6bafc62012-02-06 11:04:53 +0200781 req->trb = trb;
782 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Felipe Balbieeb720f2011-11-28 12:46:59 +0200783 }
Felipe Balbic71fc372011-11-22 11:37:34 +0200784
Felipe Balbif6bafc62012-02-06 11:04:53 +0200785 trb->size = DWC3_TRB_SIZE_LENGTH(length);
786 trb->bpl = lower_32_bits(dma);
787 trb->bph = upper_32_bits(dma);
Felipe Balbic71fc372011-11-22 11:37:34 +0200788
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200789 switch (usb_endpoint_type(dep->endpoint.desc)) {
Felipe Balbic71fc372011-11-22 11:37:34 +0200790 case USB_ENDPOINT_XFER_CONTROL:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200791 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP;
Felipe Balbic71fc372011-11-22 11:37:34 +0200792 break;
793
794 case USB_ENDPOINT_XFER_ISOC:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200795 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST;
Felipe Balbic71fc372011-11-22 11:37:34 +0200796
Pratyush Anand206dd692012-05-21 12:42:54 +0530797 if (!req->request.no_interrupt)
Felipe Balbif6bafc62012-02-06 11:04:53 +0200798 trb->ctrl |= DWC3_TRB_CTRL_IOC;
Felipe Balbic71fc372011-11-22 11:37:34 +0200799 break;
800
801 case USB_ENDPOINT_XFER_BULK:
802 case USB_ENDPOINT_XFER_INT:
Felipe Balbif6bafc62012-02-06 11:04:53 +0200803 trb->ctrl = DWC3_TRBCTL_NORMAL;
Felipe Balbic71fc372011-11-22 11:37:34 +0200804 break;
805 default:
806 /*
807 * This is only possible with faulty memory because we
808 * checked it already :)
809 */
810 BUG();
811 }
812
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200813 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200814 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI;
815 trb->ctrl |= DWC3_TRB_CTRL_CSP;
816 } else {
817 if (chain)
818 trb->ctrl |= DWC3_TRB_CTRL_CHN;
Felipe Balbic71fc372011-11-22 11:37:34 +0200819
Felipe Balbif6bafc62012-02-06 11:04:53 +0200820 if (last)
821 trb->ctrl |= DWC3_TRB_CTRL_LST;
822 }
823
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200824 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable)
Felipe Balbif6bafc62012-02-06 11:04:53 +0200825 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(req->request.stream_id);
826
827 trb->ctrl |= DWC3_TRB_CTRL_HWO;
Felipe Balbic71fc372011-11-22 11:37:34 +0200828}
829
Felipe Balbi72246da2011-08-19 18:10:58 +0300830/*
831 * dwc3_prepare_trbs - setup TRBs from requests
832 * @dep: endpoint for which requests are being prepared
833 * @starting: true if the endpoint is idle and no requests are queued.
834 *
Paul Zimmerman1d046792012-02-15 18:56:56 -0800835 * The function goes through the requests list and sets up TRBs for the
836 * transfers. The function returns once there are no more TRBs available or
837 * it runs out of requests.
Felipe Balbi72246da2011-08-19 18:10:58 +0300838 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200839static void dwc3_prepare_trbs(struct dwc3_ep *dep, bool starting)
Felipe Balbi72246da2011-08-19 18:10:58 +0300840{
Felipe Balbi68e823e2011-11-28 12:25:01 +0200841 struct dwc3_request *req, *n;
Felipe Balbi72246da2011-08-19 18:10:58 +0300842 u32 trbs_left;
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200843 u32 max;
Felipe Balbic71fc372011-11-22 11:37:34 +0200844 unsigned int last_one = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300845
846 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM);
847
848 /* the first request must not be queued */
849 trbs_left = (dep->busy_slot - dep->free_slot) & DWC3_TRB_MASK;
Felipe Balbic71fc372011-11-22 11:37:34 +0200850
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200851 /* Can't wrap around on a non-isoc EP since there's no link TRB */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200852 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Paul Zimmerman8d62cd62012-02-15 13:35:06 +0200853 max = DWC3_TRB_NUM - (dep->free_slot & DWC3_TRB_MASK);
854 if (trbs_left > max)
855 trbs_left = max;
856 }
857
Felipe Balbi72246da2011-08-19 18:10:58 +0300858 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -0800859 * If busy & slot are equal than it is either full or empty. If we are
860 * starting to process requests then we are empty. Otherwise we are
Felipe Balbi72246da2011-08-19 18:10:58 +0300861 * full and don't do anything
862 */
863 if (!trbs_left) {
864 if (!starting)
Felipe Balbi68e823e2011-11-28 12:25:01 +0200865 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300866 trbs_left = DWC3_TRB_NUM;
867 /*
868 * In case we start from scratch, we queue the ISOC requests
869 * starting from slot 1. This is done because we use ring
870 * buffer and have no LST bit to stop us. Instead, we place
Paul Zimmerman1d046792012-02-15 18:56:56 -0800871 * IOC bit every TRB_NUM/4. We try to avoid having an interrupt
Felipe Balbi72246da2011-08-19 18:10:58 +0300872 * after the first request so we start at slot 1 and have
873 * 7 requests proceed before we hit the first IOC.
874 * Other transfer types don't use the ring buffer and are
875 * processed from the first TRB until the last one. Since we
876 * don't wrap around we have to start at the beginning.
877 */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200878 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300879 dep->busy_slot = 1;
880 dep->free_slot = 1;
881 } else {
882 dep->busy_slot = 0;
883 dep->free_slot = 0;
884 }
885 }
886
887 /* The last TRB is a link TRB, not used for xfer */
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200888 if ((trbs_left <= 1) && usb_endpoint_xfer_isoc(dep->endpoint.desc))
Felipe Balbi68e823e2011-11-28 12:25:01 +0200889 return;
Felipe Balbi72246da2011-08-19 18:10:58 +0300890
891 list_for_each_entry_safe(req, n, &dep->request_list, list) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200892 unsigned length;
893 dma_addr_t dma;
Felipe Balbi72246da2011-08-19 18:10:58 +0300894
Felipe Balbieeb720f2011-11-28 12:46:59 +0200895 if (req->request.num_mapped_sgs > 0) {
896 struct usb_request *request = &req->request;
897 struct scatterlist *sg = request->sg;
898 struct scatterlist *s;
899 int i;
Felipe Balbi72246da2011-08-19 18:10:58 +0300900
Felipe Balbieeb720f2011-11-28 12:46:59 +0200901 for_each_sg(sg, s, request->num_mapped_sgs, i) {
902 unsigned chain = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300903
Felipe Balbieeb720f2011-11-28 12:46:59 +0200904 length = sg_dma_len(s);
905 dma = sg_dma_address(s);
Felipe Balbi72246da2011-08-19 18:10:58 +0300906
Paul Zimmerman1d046792012-02-15 18:56:56 -0800907 if (i == (request->num_mapped_sgs - 1) ||
908 sg_is_last(s)) {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200909 last_one = true;
910 chain = false;
911 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300912
Felipe Balbieeb720f2011-11-28 12:46:59 +0200913 trbs_left--;
914 if (!trbs_left)
915 last_one = true;
Felipe Balbi72246da2011-08-19 18:10:58 +0300916
Felipe Balbieeb720f2011-11-28 12:46:59 +0200917 if (last_one)
918 chain = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300919
Felipe Balbieeb720f2011-11-28 12:46:59 +0200920 dwc3_prepare_one_trb(dep, req, dma, length,
921 last_one, chain);
Felipe Balbi72246da2011-08-19 18:10:58 +0300922
Felipe Balbieeb720f2011-11-28 12:46:59 +0200923 if (last_one)
924 break;
925 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300926 } else {
Felipe Balbieeb720f2011-11-28 12:46:59 +0200927 dma = req->request.dma;
928 length = req->request.length;
929 trbs_left--;
930
931 if (!trbs_left)
932 last_one = 1;
933
934 /* Is this the last request? */
935 if (list_is_last(&req->list, &dep->request_list))
936 last_one = 1;
937
938 dwc3_prepare_one_trb(dep, req, dma, length,
939 last_one, false);
940
941 if (last_one)
942 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300943 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300944 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300945}
946
947static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep, u16 cmd_param,
948 int start_new)
949{
950 struct dwc3_gadget_ep_cmd_params params;
951 struct dwc3_request *req;
952 struct dwc3 *dwc = dep->dwc;
953 int ret;
954 u32 cmd;
955
956 if (start_new && (dep->flags & DWC3_EP_BUSY)) {
957 dev_vdbg(dwc->dev, "%s: endpoint busy\n", dep->name);
958 return -EBUSY;
959 }
960 dep->flags &= ~DWC3_EP_PENDING_REQUEST;
961
962 /*
963 * If we are getting here after a short-out-packet we don't enqueue any
964 * new requests as we try to set the IOC bit only on the last request.
965 */
966 if (start_new) {
967 if (list_empty(&dep->req_queued))
968 dwc3_prepare_trbs(dep, start_new);
969
970 /* req points to the first request which will be sent */
971 req = next_request(&dep->req_queued);
972 } else {
Felipe Balbi68e823e2011-11-28 12:25:01 +0200973 dwc3_prepare_trbs(dep, start_new);
974
Felipe Balbi72246da2011-08-19 18:10:58 +0300975 /*
Paul Zimmerman1d046792012-02-15 18:56:56 -0800976 * req points to the first request where HWO changed from 0 to 1
Felipe Balbi72246da2011-08-19 18:10:58 +0300977 */
Felipe Balbi68e823e2011-11-28 12:25:01 +0200978 req = next_request(&dep->req_queued);
Felipe Balbi72246da2011-08-19 18:10:58 +0300979 }
980 if (!req) {
981 dep->flags |= DWC3_EP_PENDING_REQUEST;
982 return 0;
983 }
984
985 memset(&params, 0, sizeof(params));
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300986 params.param0 = upper_32_bits(req->trb_dma);
987 params.param1 = lower_32_bits(req->trb_dma);
Felipe Balbi72246da2011-08-19 18:10:58 +0300988
989 if (start_new)
990 cmd = DWC3_DEPCMD_STARTTRANSFER;
991 else
992 cmd = DWC3_DEPCMD_UPDATETRANSFER;
993
994 cmd |= DWC3_DEPCMD_PARAM(cmd_param);
995 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
996 if (ret < 0) {
997 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
998
999 /*
1000 * FIXME we need to iterate over the list of requests
1001 * here and stop, unmap, free and del each of the linked
Paul Zimmerman1d046792012-02-15 18:56:56 -08001002 * requests instead of what we do now.
Felipe Balbi72246da2011-08-19 18:10:58 +03001003 */
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001004 usb_gadget_unmap_request(&dwc->gadget, &req->request,
1005 req->direction);
Felipe Balbi72246da2011-08-19 18:10:58 +03001006 list_del(&req->list);
1007 return ret;
1008 }
1009
1010 dep->flags |= DWC3_EP_BUSY;
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001011
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001012 if (start_new) {
1013 dep->res_trans_idx = dwc3_gadget_ep_get_transfer_index(dwc,
1014 dep->number);
1015 WARN_ON_ONCE(!dep->res_trans_idx);
1016 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001017
Felipe Balbi72246da2011-08-19 18:10:58 +03001018 return 0;
1019}
1020
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301021static void __dwc3_gadget_start_isoc(struct dwc3 *dwc,
1022 struct dwc3_ep *dep, u32 cur_uf)
1023{
1024 u32 uf;
1025
1026 if (list_empty(&dep->request_list)) {
1027 dev_vdbg(dwc->dev, "ISOC ep %s run out for requests.\n",
1028 dep->name);
1029 return;
1030 }
1031
1032 /* 4 micro frames in the future */
1033 uf = cur_uf + dep->interval * 4;
1034
1035 __dwc3_gadget_kick_transfer(dep, uf, 1);
1036}
1037
1038static void dwc3_gadget_start_isoc(struct dwc3 *dwc,
1039 struct dwc3_ep *dep, const struct dwc3_event_depevt *event)
1040{
1041 u32 cur_uf, mask;
1042
1043 mask = ~(dep->interval - 1);
1044 cur_uf = event->parameters & mask;
1045
1046 __dwc3_gadget_start_isoc(dwc, dep, cur_uf);
1047}
1048
Felipe Balbi72246da2011-08-19 18:10:58 +03001049static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
1050{
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001051 struct dwc3 *dwc = dep->dwc;
1052 int ret;
1053
Felipe Balbi72246da2011-08-19 18:10:58 +03001054 req->request.actual = 0;
1055 req->request.status = -EINPROGRESS;
1056 req->direction = dep->direction;
1057 req->epnum = dep->number;
1058
1059 /*
1060 * We only add to our list of requests now and
1061 * start consuming the list once we get XferNotReady
1062 * IRQ.
1063 *
1064 * That way, we avoid doing anything that we don't need
1065 * to do now and defer it until the point we receive a
1066 * particular token from the Host side.
1067 *
1068 * This will also avoid Host cancelling URBs due to too
Paul Zimmerman1d046792012-02-15 18:56:56 -08001069 * many NAKs.
Felipe Balbi72246da2011-08-19 18:10:58 +03001070 */
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02001071 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
1072 dep->direction);
1073 if (ret)
1074 return ret;
1075
Felipe Balbi72246da2011-08-19 18:10:58 +03001076 list_add_tail(&req->list, &dep->request_list);
1077
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301078 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
1079 if (dep->flags & DWC3_EP_BUSY) {
1080 dep->flags |= DWC3_EP_PENDING_REQUEST;
1081 } else if (dep->flags & DWC3_EP_MISSED_ISOC) {
1082 __dwc3_gadget_start_isoc(dwc, dep, dep->current_uf);
1083 dep->flags &= ~DWC3_EP_MISSED_ISOC;
1084 }
1085 }
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001086
Felipe Balbi72246da2011-08-19 18:10:58 +03001087 /*
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001088 * There are two special cases:
Felipe Balbi72246da2011-08-19 18:10:58 +03001089 *
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001090 * 1. XferNotReady with empty list of requests. We need to kick the
1091 * transfer here in that situation, otherwise we will be NAKing
1092 * forever. If we get XferNotReady before gadget driver has a
1093 * chance to queue a request, we will ACK the IRQ but won't be
1094 * able to receive the data until the next request is queued.
1095 * The following code is handling exactly that.
1096 *
1097 * 2. XferInProgress on Isoc EP with an active transfer. We need to
1098 * kick the transfer here after queuing a request, otherwise the
1099 * core may not see the modified TRB(s).
Felipe Balbi72246da2011-08-19 18:10:58 +03001100 */
1101 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001102 int ret;
1103 int start_trans = 1;
1104 u8 trans_idx = dep->res_trans_idx;
Felipe Balbi72246da2011-08-19 18:10:58 +03001105
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001106 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) &&
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001107 (dep->flags & DWC3_EP_BUSY)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001108 start_trans = 0;
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001109 WARN_ON_ONCE(!trans_idx);
1110 } else {
1111 trans_idx = 0;
1112 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001113
Paul Zimmermanf898ae02012-03-29 18:16:54 +00001114 ret = __dwc3_gadget_kick_transfer(dep, trans_idx, start_trans);
Felipe Balbi72246da2011-08-19 18:10:58 +03001115 if (ret && ret != -EBUSY) {
1116 struct dwc3 *dwc = dep->dwc;
1117
1118 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1119 dep->name);
1120 }
Felipe Balbia0925322012-05-22 10:24:11 +03001121 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001122
1123 return 0;
1124}
1125
1126static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request,
1127 gfp_t gfp_flags)
1128{
1129 struct dwc3_request *req = to_dwc3_request(request);
1130 struct dwc3_ep *dep = to_dwc3_ep(ep);
1131 struct dwc3 *dwc = dep->dwc;
1132
1133 unsigned long flags;
1134
1135 int ret;
1136
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001137 if (!dep->endpoint.desc) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001138 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
1139 request, ep->name);
1140 return -ESHUTDOWN;
1141 }
1142
1143 dev_vdbg(dwc->dev, "queing request %p to %s length %d\n",
1144 request, ep->name, request->length);
1145
1146 spin_lock_irqsave(&dwc->lock, flags);
1147 ret = __dwc3_gadget_ep_queue(dep, req);
1148 spin_unlock_irqrestore(&dwc->lock, flags);
1149
1150 return ret;
1151}
1152
1153static int dwc3_gadget_ep_dequeue(struct usb_ep *ep,
1154 struct usb_request *request)
1155{
1156 struct dwc3_request *req = to_dwc3_request(request);
1157 struct dwc3_request *r = NULL;
1158
1159 struct dwc3_ep *dep = to_dwc3_ep(ep);
1160 struct dwc3 *dwc = dep->dwc;
1161
1162 unsigned long flags;
1163 int ret = 0;
1164
1165 spin_lock_irqsave(&dwc->lock, flags);
1166
1167 list_for_each_entry(r, &dep->request_list, list) {
1168 if (r == req)
1169 break;
1170 }
1171
1172 if (r != req) {
1173 list_for_each_entry(r, &dep->req_queued, list) {
1174 if (r == req)
1175 break;
1176 }
1177 if (r == req) {
1178 /* wait until it is processed */
1179 dwc3_stop_active_transfer(dwc, dep->number);
1180 goto out0;
1181 }
1182 dev_err(dwc->dev, "request %p was not queued to %s\n",
1183 request, ep->name);
1184 ret = -EINVAL;
1185 goto out0;
1186 }
1187
1188 /* giveback the request */
1189 dwc3_gadget_giveback(dep, req, -ECONNRESET);
1190
1191out0:
1192 spin_unlock_irqrestore(&dwc->lock, flags);
1193
1194 return ret;
1195}
1196
1197int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value)
1198{
1199 struct dwc3_gadget_ep_cmd_params params;
1200 struct dwc3 *dwc = dep->dwc;
1201 int ret;
1202
1203 memset(&params, 0x00, sizeof(params));
1204
1205 if (value) {
Felipe Balbi0b7836a2011-08-30 15:48:08 +03001206 if (dep->number == 0 || dep->number == 1) {
1207 /*
1208 * Whenever EP0 is stalled, we will restart
1209 * the state machine, thus moving back to
1210 * Setup Phase
1211 */
1212 dwc->ep0state = EP0_SETUP_PHASE;
1213 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001214
1215 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1216 DWC3_DEPCMD_SETSTALL, &params);
1217 if (ret)
1218 dev_err(dwc->dev, "failed to %s STALL on %s\n",
1219 value ? "set" : "clear",
1220 dep->name);
1221 else
1222 dep->flags |= DWC3_EP_STALL;
1223 } else {
Paul Zimmerman52754552011-09-30 10:58:44 +03001224 if (dep->flags & DWC3_EP_WEDGE)
1225 return 0;
1226
Felipe Balbi72246da2011-08-19 18:10:58 +03001227 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1228 DWC3_DEPCMD_CLEARSTALL, &params);
1229 if (ret)
1230 dev_err(dwc->dev, "failed to %s STALL on %s\n",
1231 value ? "set" : "clear",
1232 dep->name);
1233 else
1234 dep->flags &= ~DWC3_EP_STALL;
1235 }
Paul Zimmerman52754552011-09-30 10:58:44 +03001236
Felipe Balbi72246da2011-08-19 18:10:58 +03001237 return ret;
1238}
1239
1240static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value)
1241{
1242 struct dwc3_ep *dep = to_dwc3_ep(ep);
1243 struct dwc3 *dwc = dep->dwc;
1244
1245 unsigned long flags;
1246
1247 int ret;
1248
1249 spin_lock_irqsave(&dwc->lock, flags);
1250
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001251 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001252 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name);
1253 ret = -EINVAL;
1254 goto out;
1255 }
1256
1257 ret = __dwc3_gadget_ep_set_halt(dep, value);
1258out:
1259 spin_unlock_irqrestore(&dwc->lock, flags);
1260
1261 return ret;
1262}
1263
1264static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep)
1265{
1266 struct dwc3_ep *dep = to_dwc3_ep(ep);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001267 struct dwc3 *dwc = dep->dwc;
1268 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001269
Paul Zimmerman249a4562012-02-24 17:32:16 -08001270 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001271 dep->flags |= DWC3_EP_WEDGE;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001272 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001273
Paul Zimmerman52754552011-09-30 10:58:44 +03001274 return dwc3_gadget_ep_set_halt(ep, 1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001275}
1276
1277/* -------------------------------------------------------------------------- */
1278
1279static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = {
1280 .bLength = USB_DT_ENDPOINT_SIZE,
1281 .bDescriptorType = USB_DT_ENDPOINT,
1282 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
1283};
1284
1285static const struct usb_ep_ops dwc3_gadget_ep0_ops = {
1286 .enable = dwc3_gadget_ep0_enable,
1287 .disable = dwc3_gadget_ep0_disable,
1288 .alloc_request = dwc3_gadget_ep_alloc_request,
1289 .free_request = dwc3_gadget_ep_free_request,
1290 .queue = dwc3_gadget_ep0_queue,
1291 .dequeue = dwc3_gadget_ep_dequeue,
1292 .set_halt = dwc3_gadget_ep_set_halt,
1293 .set_wedge = dwc3_gadget_ep_set_wedge,
1294};
1295
1296static const struct usb_ep_ops dwc3_gadget_ep_ops = {
1297 .enable = dwc3_gadget_ep_enable,
1298 .disable = dwc3_gadget_ep_disable,
1299 .alloc_request = dwc3_gadget_ep_alloc_request,
1300 .free_request = dwc3_gadget_ep_free_request,
1301 .queue = dwc3_gadget_ep_queue,
1302 .dequeue = dwc3_gadget_ep_dequeue,
1303 .set_halt = dwc3_gadget_ep_set_halt,
1304 .set_wedge = dwc3_gadget_ep_set_wedge,
1305};
1306
1307/* -------------------------------------------------------------------------- */
1308
1309static int dwc3_gadget_get_frame(struct usb_gadget *g)
1310{
1311 struct dwc3 *dwc = gadget_to_dwc(g);
1312 u32 reg;
1313
1314 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1315 return DWC3_DSTS_SOFFN(reg);
1316}
1317
1318static int dwc3_gadget_wakeup(struct usb_gadget *g)
1319{
1320 struct dwc3 *dwc = gadget_to_dwc(g);
1321
1322 unsigned long timeout;
1323 unsigned long flags;
1324
1325 u32 reg;
1326
1327 int ret = 0;
1328
1329 u8 link_state;
1330 u8 speed;
1331
1332 spin_lock_irqsave(&dwc->lock, flags);
1333
1334 /*
1335 * According to the Databook Remote wakeup request should
1336 * be issued only when the device is in early suspend state.
1337 *
1338 * We can check that via USB Link State bits in DSTS register.
1339 */
1340 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1341
1342 speed = reg & DWC3_DSTS_CONNECTSPD;
1343 if (speed == DWC3_DSTS_SUPERSPEED) {
1344 dev_dbg(dwc->dev, "no wakeup on SuperSpeed\n");
1345 ret = -EINVAL;
1346 goto out;
1347 }
1348
1349 link_state = DWC3_DSTS_USBLNKST(reg);
1350
1351 switch (link_state) {
1352 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */
1353 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */
1354 break;
1355 default:
1356 dev_dbg(dwc->dev, "can't wakeup from link state %d\n",
1357 link_state);
1358 ret = -EINVAL;
1359 goto out;
1360 }
1361
Felipe Balbi8598bde2012-01-02 18:55:57 +02001362 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV);
1363 if (ret < 0) {
1364 dev_err(dwc->dev, "failed to put link in Recovery\n");
1365 goto out;
1366 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001367
Paul Zimmerman802fde92012-04-27 13:10:52 +03001368 /* Recent versions do this automatically */
1369 if (dwc->revision < DWC3_REVISION_194A) {
1370 /* write zeroes to Link Change Request */
Felipe Balbifcc023c2012-05-24 10:27:56 +03001371 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Paul Zimmerman802fde92012-04-27 13:10:52 +03001372 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK;
1373 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1374 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001375
Paul Zimmerman1d046792012-02-15 18:56:56 -08001376 /* poll until Link State changes to ON */
Felipe Balbi72246da2011-08-19 18:10:58 +03001377 timeout = jiffies + msecs_to_jiffies(100);
1378
Paul Zimmerman1d046792012-02-15 18:56:56 -08001379 while (!time_after(jiffies, timeout)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001380 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1381
1382 /* in HS, means ON */
1383 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0)
1384 break;
1385 }
1386
1387 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) {
1388 dev_err(dwc->dev, "failed to send remote wakeup\n");
1389 ret = -EINVAL;
1390 }
1391
1392out:
1393 spin_unlock_irqrestore(&dwc->lock, flags);
1394
1395 return ret;
1396}
1397
1398static int dwc3_gadget_set_selfpowered(struct usb_gadget *g,
1399 int is_selfpowered)
1400{
1401 struct dwc3 *dwc = gadget_to_dwc(g);
Paul Zimmerman249a4562012-02-24 17:32:16 -08001402 unsigned long flags;
Felipe Balbi72246da2011-08-19 18:10:58 +03001403
Paul Zimmerman249a4562012-02-24 17:32:16 -08001404 spin_lock_irqsave(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001405 dwc->is_selfpowered = !!is_selfpowered;
Paul Zimmerman249a4562012-02-24 17:32:16 -08001406 spin_unlock_irqrestore(&dwc->lock, flags);
Felipe Balbi72246da2011-08-19 18:10:58 +03001407
1408 return 0;
1409}
1410
1411static void dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on)
1412{
1413 u32 reg;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001414 u32 timeout = 500;
Felipe Balbi72246da2011-08-19 18:10:58 +03001415
1416 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001417 if (is_on) {
Paul Zimmerman802fde92012-04-27 13:10:52 +03001418 if (dwc->revision <= DWC3_REVISION_187A) {
1419 reg &= ~DWC3_DCTL_TRGTULST_MASK;
1420 reg |= DWC3_DCTL_TRGTULST_RX_DET;
1421 }
1422
1423 if (dwc->revision >= DWC3_REVISION_194A)
1424 reg &= ~DWC3_DCTL_KEEP_CONNECT;
1425 reg |= DWC3_DCTL_RUN_STOP;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001426 } else {
Felipe Balbi72246da2011-08-19 18:10:58 +03001427 reg &= ~DWC3_DCTL_RUN_STOP;
Felipe Balbi8db7ed12012-01-18 18:32:29 +02001428 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001429
1430 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1431
1432 do {
1433 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
1434 if (is_on) {
1435 if (!(reg & DWC3_DSTS_DEVCTRLHLT))
1436 break;
1437 } else {
1438 if (reg & DWC3_DSTS_DEVCTRLHLT)
1439 break;
1440 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001441 timeout--;
1442 if (!timeout)
1443 break;
Sebastian Andrzej Siewior61d58242011-08-29 16:46:38 +02001444 udelay(1);
Felipe Balbi72246da2011-08-19 18:10:58 +03001445 } while (1);
1446
1447 dev_vdbg(dwc->dev, "gadget %s data soft-%s\n",
1448 dwc->gadget_driver
1449 ? dwc->gadget_driver->function : "no-function",
1450 is_on ? "connect" : "disconnect");
1451}
1452
1453static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on)
1454{
1455 struct dwc3 *dwc = gadget_to_dwc(g);
1456 unsigned long flags;
1457
1458 is_on = !!is_on;
1459
1460 spin_lock_irqsave(&dwc->lock, flags);
1461 dwc3_gadget_run_stop(dwc, is_on);
1462 spin_unlock_irqrestore(&dwc->lock, flags);
1463
1464 return 0;
1465}
1466
1467static int dwc3_gadget_start(struct usb_gadget *g,
1468 struct usb_gadget_driver *driver)
1469{
1470 struct dwc3 *dwc = gadget_to_dwc(g);
1471 struct dwc3_ep *dep;
1472 unsigned long flags;
1473 int ret = 0;
1474 u32 reg;
1475
1476 spin_lock_irqsave(&dwc->lock, flags);
1477
1478 if (dwc->gadget_driver) {
1479 dev_err(dwc->dev, "%s is already bound to %s\n",
1480 dwc->gadget.name,
1481 dwc->gadget_driver->driver.name);
1482 ret = -EBUSY;
1483 goto err0;
1484 }
1485
1486 dwc->gadget_driver = driver;
1487 dwc->gadget.dev.driver = &driver->driver;
1488
Felipe Balbi72246da2011-08-19 18:10:58 +03001489 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
1490 reg &= ~(DWC3_DCFG_SPEED_MASK);
Felipe Balbi07e7f472012-03-23 12:20:31 +02001491
1492 /**
1493 * WORKAROUND: DWC3 revision < 2.20a have an issue
1494 * which would cause metastability state on Run/Stop
1495 * bit if we try to force the IP to USB2-only mode.
1496 *
1497 * Because of that, we cannot configure the IP to any
1498 * speed other than the SuperSpeed
1499 *
1500 * Refers to:
1501 *
1502 * STAR#9000525659: Clock Domain Crossing on DCTL in
1503 * USB 2.0 Mode
1504 */
1505 if (dwc->revision < DWC3_REVISION_220A)
1506 reg |= DWC3_DCFG_SUPERSPEED;
1507 else
1508 reg |= dwc->maximum_speed;
Felipe Balbi72246da2011-08-19 18:10:58 +03001509 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
1510
Paul Zimmermanb23c8432011-09-30 10:58:42 +03001511 dwc->start_config_issued = false;
1512
Felipe Balbi72246da2011-08-19 18:10:58 +03001513 /* Start with SuperSpeed Default */
1514 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
1515
1516 dep = dwc->eps[0];
Felipe Balbic90bfae2011-11-29 13:11:21 +02001517 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL);
Felipe Balbi72246da2011-08-19 18:10:58 +03001518 if (ret) {
1519 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1520 goto err0;
1521 }
1522
1523 dep = dwc->eps[1];
Felipe Balbic90bfae2011-11-29 13:11:21 +02001524 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL);
Felipe Balbi72246da2011-08-19 18:10:58 +03001525 if (ret) {
1526 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
1527 goto err1;
1528 }
1529
1530 /* begin to receive SETUP packets */
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001531 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +03001532 dwc3_ep0_out_start(dwc);
1533
1534 spin_unlock_irqrestore(&dwc->lock, flags);
1535
1536 return 0;
1537
1538err1:
1539 __dwc3_gadget_ep_disable(dwc->eps[0]);
1540
1541err0:
1542 spin_unlock_irqrestore(&dwc->lock, flags);
1543
1544 return ret;
1545}
1546
1547static int dwc3_gadget_stop(struct usb_gadget *g,
1548 struct usb_gadget_driver *driver)
1549{
1550 struct dwc3 *dwc = gadget_to_dwc(g);
1551 unsigned long flags;
1552
1553 spin_lock_irqsave(&dwc->lock, flags);
1554
1555 __dwc3_gadget_ep_disable(dwc->eps[0]);
1556 __dwc3_gadget_ep_disable(dwc->eps[1]);
1557
1558 dwc->gadget_driver = NULL;
1559 dwc->gadget.dev.driver = NULL;
1560
1561 spin_unlock_irqrestore(&dwc->lock, flags);
1562
1563 return 0;
1564}
Paul Zimmerman802fde92012-04-27 13:10:52 +03001565
Felipe Balbi72246da2011-08-19 18:10:58 +03001566static const struct usb_gadget_ops dwc3_gadget_ops = {
1567 .get_frame = dwc3_gadget_get_frame,
1568 .wakeup = dwc3_gadget_wakeup,
1569 .set_selfpowered = dwc3_gadget_set_selfpowered,
1570 .pullup = dwc3_gadget_pullup,
1571 .udc_start = dwc3_gadget_start,
1572 .udc_stop = dwc3_gadget_stop,
1573};
1574
1575/* -------------------------------------------------------------------------- */
1576
1577static int __devinit dwc3_gadget_init_endpoints(struct dwc3 *dwc)
1578{
1579 struct dwc3_ep *dep;
1580 u8 epnum;
1581
1582 INIT_LIST_HEAD(&dwc->gadget.ep_list);
1583
1584 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1585 dep = kzalloc(sizeof(*dep), GFP_KERNEL);
1586 if (!dep) {
1587 dev_err(dwc->dev, "can't allocate endpoint %d\n",
1588 epnum);
1589 return -ENOMEM;
1590 }
1591
1592 dep->dwc = dwc;
1593 dep->number = epnum;
1594 dwc->eps[epnum] = dep;
1595
1596 snprintf(dep->name, sizeof(dep->name), "ep%d%s", epnum >> 1,
1597 (epnum & 1) ? "in" : "out");
1598 dep->endpoint.name = dep->name;
1599 dep->direction = (epnum & 1);
1600
1601 if (epnum == 0 || epnum == 1) {
1602 dep->endpoint.maxpacket = 512;
1603 dep->endpoint.ops = &dwc3_gadget_ep0_ops;
1604 if (!epnum)
1605 dwc->gadget.ep0 = &dep->endpoint;
1606 } else {
1607 int ret;
1608
1609 dep->endpoint.maxpacket = 1024;
Sebastian Andrzej Siewior12d36c12011-11-03 20:27:50 +01001610 dep->endpoint.max_streams = 15;
Felipe Balbi72246da2011-08-19 18:10:58 +03001611 dep->endpoint.ops = &dwc3_gadget_ep_ops;
1612 list_add_tail(&dep->endpoint.ep_list,
1613 &dwc->gadget.ep_list);
1614
1615 ret = dwc3_alloc_trb_pool(dep);
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001616 if (ret)
Felipe Balbi72246da2011-08-19 18:10:58 +03001617 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +03001618 }
Felipe Balbi25b8ff62011-11-04 12:32:47 +02001619
Felipe Balbi72246da2011-08-19 18:10:58 +03001620 INIT_LIST_HEAD(&dep->request_list);
1621 INIT_LIST_HEAD(&dep->req_queued);
1622 }
1623
1624 return 0;
1625}
1626
1627static void dwc3_gadget_free_endpoints(struct dwc3 *dwc)
1628{
1629 struct dwc3_ep *dep;
1630 u8 epnum;
1631
1632 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1633 dep = dwc->eps[epnum];
1634 dwc3_free_trb_pool(dep);
1635
1636 if (epnum != 0 && epnum != 1)
1637 list_del(&dep->endpoint.ep_list);
1638
1639 kfree(dep);
1640 }
1641}
1642
1643static void dwc3_gadget_release(struct device *dev)
1644{
1645 dev_dbg(dev, "%s\n", __func__);
1646}
1647
1648/* -------------------------------------------------------------------------- */
1649static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep,
1650 const struct dwc3_event_depevt *event, int status)
1651{
1652 struct dwc3_request *req;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001653 struct dwc3_trb *trb;
Felipe Balbi72246da2011-08-19 18:10:58 +03001654 unsigned int count;
1655 unsigned int s_pkt = 0;
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301656 unsigned int trb_status;
Felipe Balbi72246da2011-08-19 18:10:58 +03001657
1658 do {
1659 req = next_request(&dep->req_queued);
Sebastian Andrzej Siewiord39ee7b2011-11-03 10:32:20 +01001660 if (!req) {
1661 WARN_ON_ONCE(1);
1662 return 1;
1663 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001664
Felipe Balbif6bafc62012-02-06 11:04:53 +02001665 trb = req->trb;
Felipe Balbi72246da2011-08-19 18:10:58 +03001666
Felipe Balbif6bafc62012-02-06 11:04:53 +02001667 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN)
Sebastian Andrzej Siewior0d2f4752011-08-19 19:59:12 +02001668 /*
1669 * We continue despite the error. There is not much we
Paul Zimmerman1d046792012-02-15 18:56:56 -08001670 * can do. If we don't clean it up we loop forever. If
1671 * we skip the TRB then it gets overwritten after a
1672 * while since we use them in a ring buffer. A BUG()
1673 * would help. Lets hope that if this occurs, someone
Sebastian Andrzej Siewior0d2f4752011-08-19 19:59:12 +02001674 * fixes the root cause instead of looking away :)
1675 */
Felipe Balbi72246da2011-08-19 18:10:58 +03001676 dev_err(dwc->dev, "%s's TRB (%p) still owned by HW\n",
1677 dep->name, req->trb);
Felipe Balbif6bafc62012-02-06 11:04:53 +02001678 count = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbi72246da2011-08-19 18:10:58 +03001679
1680 if (dep->direction) {
1681 if (count) {
Pratyush Anandd6d6ec72012-05-25 18:54:56 +05301682 trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size);
1683 if (trb_status == DWC3_TRBSTS_MISSED_ISOC) {
1684 dev_dbg(dwc->dev, "incomplete IN transfer %s\n",
1685 dep->name);
1686 dep->current_uf = event->parameters &
1687 ~(dep->interval - 1);
1688 dep->flags |= DWC3_EP_MISSED_ISOC;
1689 } else {
1690 dev_err(dwc->dev, "incomplete IN transfer %s\n",
1691 dep->name);
1692 status = -ECONNRESET;
1693 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001694 }
1695 } else {
1696 if (count && (event->status & DEPEVT_STATUS_SHORT))
1697 s_pkt = 1;
1698 }
1699
1700 /*
1701 * We assume here we will always receive the entire data block
1702 * which we should receive. Meaning, if we program RX to
1703 * receive 4K but we receive only 2K, we assume that's all we
1704 * should receive and we simply bounce the request back to the
1705 * gadget driver for further processing.
1706 */
1707 req->request.actual += req->request.length - count;
1708 dwc3_gadget_giveback(dep, req, status);
1709 if (s_pkt)
1710 break;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001711 if ((event->status & DEPEVT_STATUS_LST) &&
Pratyush Anand70b674b2012-06-03 19:43:19 +05301712 (trb->ctrl & (DWC3_TRB_CTRL_LST |
1713 DWC3_TRB_CTRL_HWO)))
Felipe Balbi72246da2011-08-19 18:10:58 +03001714 break;
Felipe Balbif6bafc62012-02-06 11:04:53 +02001715 if ((event->status & DEPEVT_STATUS_IOC) &&
1716 (trb->ctrl & DWC3_TRB_CTRL_IOC))
Felipe Balbi72246da2011-08-19 18:10:58 +03001717 break;
1718 } while (1);
1719
Felipe Balbif6bafc62012-02-06 11:04:53 +02001720 if ((event->status & DEPEVT_STATUS_IOC) &&
1721 (trb->ctrl & DWC3_TRB_CTRL_IOC))
Felipe Balbi72246da2011-08-19 18:10:58 +03001722 return 0;
1723 return 1;
1724}
1725
1726static void dwc3_endpoint_transfer_complete(struct dwc3 *dwc,
1727 struct dwc3_ep *dep, const struct dwc3_event_depevt *event,
1728 int start_new)
1729{
1730 unsigned status = 0;
1731 int clean_busy;
1732
1733 if (event->status & DEPEVT_STATUS_BUSERR)
1734 status = -ECONNRESET;
1735
Paul Zimmerman1d046792012-02-15 18:56:56 -08001736 clean_busy = dwc3_cleanup_done_reqs(dwc, dep, event, status);
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08001737 if (clean_busy)
Felipe Balbi72246da2011-08-19 18:10:58 +03001738 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbifae2b902011-10-14 13:00:30 +03001739
1740 /*
1741 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround.
1742 * See dwc3_gadget_linksts_change_interrupt() for 1st half.
1743 */
1744 if (dwc->revision < DWC3_REVISION_183A) {
1745 u32 reg;
1746 int i;
1747
1748 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) {
1749 struct dwc3_ep *dep = dwc->eps[i];
1750
1751 if (!(dep->flags & DWC3_EP_ENABLED))
1752 continue;
1753
1754 if (!list_empty(&dep->req_queued))
1755 return;
1756 }
1757
1758 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
1759 reg |= dwc->u1u2;
1760 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1761
1762 dwc->u1u2 = 0;
1763 }
Felipe Balbi72246da2011-08-19 18:10:58 +03001764}
1765
Felipe Balbi72246da2011-08-19 18:10:58 +03001766static void dwc3_endpoint_interrupt(struct dwc3 *dwc,
1767 const struct dwc3_event_depevt *event)
1768{
1769 struct dwc3_ep *dep;
1770 u8 epnum = event->endpoint_number;
1771
1772 dep = dwc->eps[epnum];
1773
Felipe Balbi3336abb2012-06-06 09:19:35 +03001774 if (!(dep->flags & DWC3_EP_ENABLED))
1775 return;
1776
Felipe Balbi72246da2011-08-19 18:10:58 +03001777 dev_vdbg(dwc->dev, "%s: %s\n", dep->name,
1778 dwc3_ep_event_string(event->endpoint_event));
1779
1780 if (epnum == 0 || epnum == 1) {
1781 dwc3_ep0_interrupt(dwc, event);
1782 return;
1783 }
1784
1785 switch (event->endpoint_event) {
1786 case DWC3_DEPEVT_XFERCOMPLETE:
Paul Zimmermanc2df85c2012-02-24 17:32:18 -08001787 dep->res_trans_idx = 0;
1788
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001789 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001790 dev_dbg(dwc->dev, "%s is an Isochronous endpoint\n",
1791 dep->name);
1792 return;
1793 }
1794
1795 dwc3_endpoint_transfer_complete(dwc, dep, event, 1);
1796 break;
1797 case DWC3_DEPEVT_XFERINPROGRESS:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001798 if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001799 dev_dbg(dwc->dev, "%s is not an Isochronous endpoint\n",
1800 dep->name);
1801 return;
1802 }
1803
1804 dwc3_endpoint_transfer_complete(dwc, dep, event, 0);
1805 break;
1806 case DWC3_DEPEVT_XFERNOTREADY:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001807 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) {
Felipe Balbi72246da2011-08-19 18:10:58 +03001808 dwc3_gadget_start_isoc(dwc, dep, event);
1809 } else {
1810 int ret;
1811
1812 dev_vdbg(dwc->dev, "%s: reason %s\n",
Felipe Balbi40aa41fb2012-01-18 17:06:03 +02001813 dep->name, event->status &
1814 DEPEVT_STATUS_TRANSFER_ACTIVE
Felipe Balbi72246da2011-08-19 18:10:58 +03001815 ? "Transfer Active"
1816 : "Transfer Not Active");
1817
1818 ret = __dwc3_gadget_kick_transfer(dep, 0, 1);
1819 if (!ret || ret == -EBUSY)
1820 return;
1821
1822 dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
1823 dep->name);
1824 }
1825
1826 break;
Felipe Balbi879631a2011-09-30 10:58:47 +03001827 case DWC3_DEPEVT_STREAMEVT:
Ido Shayevitz16e78db2012-03-12 20:25:24 +02001828 if (!usb_endpoint_xfer_bulk(dep->endpoint.desc)) {
Felipe Balbi879631a2011-09-30 10:58:47 +03001829 dev_err(dwc->dev, "Stream event for non-Bulk %s\n",
1830 dep->name);
1831 return;
1832 }
1833
1834 switch (event->status) {
1835 case DEPEVT_STREAMEVT_FOUND:
1836 dev_vdbg(dwc->dev, "Stream %d found and started\n",
1837 event->parameters);
1838
1839 break;
1840 case DEPEVT_STREAMEVT_NOTFOUND:
1841 /* FALLTHROUGH */
1842 default:
1843 dev_dbg(dwc->dev, "Couldn't find suitable stream\n");
1844 }
1845 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03001846 case DWC3_DEPEVT_RXTXFIFOEVT:
1847 dev_dbg(dwc->dev, "%s FIFO Overrun\n", dep->name);
1848 break;
Felipe Balbi72246da2011-08-19 18:10:58 +03001849 case DWC3_DEPEVT_EPCMDCMPLT:
Felipe Balbiea53b882012-02-17 12:10:04 +02001850 dev_vdbg(dwc->dev, "Endpoint Command Complete\n");
Felipe Balbi72246da2011-08-19 18:10:58 +03001851 break;
1852 }
1853}
1854
1855static void dwc3_disconnect_gadget(struct dwc3 *dwc)
1856{
1857 if (dwc->gadget_driver && dwc->gadget_driver->disconnect) {
1858 spin_unlock(&dwc->lock);
1859 dwc->gadget_driver->disconnect(&dwc->gadget);
1860 spin_lock(&dwc->lock);
1861 }
1862}
1863
1864static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum)
1865{
1866 struct dwc3_ep *dep;
1867 struct dwc3_gadget_ep_cmd_params params;
1868 u32 cmd;
1869 int ret;
1870
1871 dep = dwc->eps[epnum];
1872
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +02001873 WARN_ON(!dep->res_trans_idx);
Felipe Balbi72246da2011-08-19 18:10:58 +03001874 if (dep->res_trans_idx) {
1875 cmd = DWC3_DEPCMD_ENDTRANSFER;
1876 cmd |= DWC3_DEPCMD_HIPRI_FORCERM | DWC3_DEPCMD_CMDIOC;
1877 cmd |= DWC3_DEPCMD_PARAM(dep->res_trans_idx);
1878 memset(&params, 0, sizeof(params));
1879 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
1880 WARN_ON_ONCE(ret);
Sebastian Andrzej Siewiora1ae9be2011-08-22 17:42:18 +02001881 dep->res_trans_idx = 0;
Felipe Balbi72246da2011-08-19 18:10:58 +03001882 }
1883}
1884
1885static void dwc3_stop_active_transfers(struct dwc3 *dwc)
1886{
1887 u32 epnum;
1888
1889 for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1890 struct dwc3_ep *dep;
1891
1892 dep = dwc->eps[epnum];
1893 if (!(dep->flags & DWC3_EP_ENABLED))
1894 continue;
1895
Sebastian Andrzej Siewior624407f2011-08-29 13:56:37 +02001896 dwc3_remove_requests(dwc, dep);
Felipe Balbi72246da2011-08-19 18:10:58 +03001897 }
1898}
1899
1900static void dwc3_clear_stall_all_ep(struct dwc3 *dwc)
1901{
1902 u32 epnum;
1903
1904 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) {
1905 struct dwc3_ep *dep;
1906 struct dwc3_gadget_ep_cmd_params params;
1907 int ret;
1908
1909 dep = dwc->eps[epnum];
1910
1911 if (!(dep->flags & DWC3_EP_STALL))
1912 continue;
1913
1914 dep->flags &= ~DWC3_EP_STALL;
1915
1916 memset(&params, 0, sizeof(params));
1917 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
1918 DWC3_DEPCMD_CLEARSTALL, &params);
1919 WARN_ON_ONCE(ret);
1920 }
1921}
1922
1923static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc)
1924{
Felipe Balbic4430a22012-05-24 10:30:01 +03001925 int reg;
1926
Felipe Balbi72246da2011-08-19 18:10:58 +03001927 dev_vdbg(dwc->dev, "%s\n", __func__);
Felipe Balbi72246da2011-08-19 18:10:58 +03001928
1929 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
1930 reg &= ~DWC3_DCTL_INITU1ENA;
1931 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
1932
1933 reg &= ~DWC3_DCTL_INITU2ENA;
1934 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03001935
Felipe Balbi72246da2011-08-19 18:10:58 +03001936 dwc3_disconnect_gadget(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03001937 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03001938
1939 dwc->gadget.speed = USB_SPEED_UNKNOWN;
Felipe Balbidf62df52011-10-14 15:11:49 +03001940 dwc->setup_packet_pending = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03001941}
1942
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001943static void dwc3_gadget_usb3_phy_suspend(struct dwc3 *dwc, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001944{
1945 u32 reg;
1946
1947 reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0));
1948
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001949 if (suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001950 reg |= DWC3_GUSB3PIPECTL_SUSPHY;
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001951 else
1952 reg &= ~DWC3_GUSB3PIPECTL_SUSPHY;
Felipe Balbi72246da2011-08-19 18:10:58 +03001953
1954 dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg);
1955}
1956
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001957static void dwc3_gadget_usb2_phy_suspend(struct dwc3 *dwc, int suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001958{
1959 u32 reg;
1960
1961 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0));
1962
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001963 if (suspend)
Felipe Balbi72246da2011-08-19 18:10:58 +03001964 reg |= DWC3_GUSB2PHYCFG_SUSPHY;
Paul Zimmermand7a46a82012-04-27 12:54:05 +03001965 else
1966 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY;
Felipe Balbi72246da2011-08-19 18:10:58 +03001967
1968 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg);
1969}
1970
1971static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc)
1972{
1973 u32 reg;
1974
1975 dev_vdbg(dwc->dev, "%s\n", __func__);
1976
Felipe Balbidf62df52011-10-14 15:11:49 +03001977 /*
1978 * WORKAROUND: DWC3 revisions <1.88a have an issue which
1979 * would cause a missing Disconnect Event if there's a
1980 * pending Setup Packet in the FIFO.
1981 *
1982 * There's no suggested workaround on the official Bug
1983 * report, which states that "unless the driver/application
1984 * is doing any special handling of a disconnect event,
1985 * there is no functional issue".
1986 *
1987 * Unfortunately, it turns out that we _do_ some special
1988 * handling of a disconnect event, namely complete all
1989 * pending transfers, notify gadget driver of the
1990 * disconnection, and so on.
1991 *
1992 * Our suggested workaround is to follow the Disconnect
1993 * Event steps here, instead, based on a setup_packet_pending
1994 * flag. Such flag gets set whenever we have a XferNotReady
1995 * event on EP0 and gets cleared on XferComplete for the
1996 * same endpoint.
1997 *
1998 * Refers to:
1999 *
2000 * STAR#9000466709: RTL: Device : Disconnect event not
2001 * generated if setup packet pending in FIFO
2002 */
2003 if (dwc->revision < DWC3_REVISION_188A) {
2004 if (dwc->setup_packet_pending)
2005 dwc3_gadget_disconnect_interrupt(dwc);
2006 }
2007
Felipe Balbi961906e2011-12-20 15:37:21 +02002008 /* after reset -> Default State */
2009 dwc->dev_state = DWC3_DEFAULT_STATE;
2010
Paul Zimmerman802fde92012-04-27 13:10:52 +03002011 /* Recent versions support automatic phy suspend and don't need this */
2012 if (dwc->revision < DWC3_REVISION_194A) {
2013 /* Resume PHYs */
2014 dwc3_gadget_usb2_phy_suspend(dwc, false);
2015 dwc3_gadget_usb3_phy_suspend(dwc, false);
2016 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002017
2018 if (dwc->gadget.speed != USB_SPEED_UNKNOWN)
2019 dwc3_disconnect_gadget(dwc);
2020
2021 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2022 reg &= ~DWC3_DCTL_TSTCTRL_MASK;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +02002023 reg &= ~(DWC3_DCTL_INITU1ENA | DWC3_DCTL_INITU2ENA);
Gerard CAUVY5cbe8c22012-05-24 12:47:36 +03002024 reg |= (DWC3_DCTL_ACCEPTU1ENA | DWC3_DCTL_ACCEPTU2ENA);
Felipe Balbi72246da2011-08-19 18:10:58 +03002025 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Gerard Cauvy3b637362012-02-10 12:21:18 +02002026 dwc->test_mode = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002027
2028 dwc3_stop_active_transfers(dwc);
2029 dwc3_clear_stall_all_ep(dwc);
Paul Zimmermanb23c8432011-09-30 10:58:42 +03002030 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +03002031
2032 /* Reset device address to zero */
2033 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2034 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
2035 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +03002036}
2037
2038static void dwc3_update_ram_clk_sel(struct dwc3 *dwc, u32 speed)
2039{
2040 u32 reg;
2041 u32 usb30_clock = DWC3_GCTL_CLK_BUS;
2042
2043 /*
2044 * We change the clock only at SS but I dunno why I would want to do
2045 * this. Maybe it becomes part of the power saving plan.
2046 */
2047
2048 if (speed != DWC3_DSTS_SUPERSPEED)
2049 return;
2050
2051 /*
2052 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed
2053 * each time on Connect Done.
2054 */
2055 if (!usb30_clock)
2056 return;
2057
2058 reg = dwc3_readl(dwc->regs, DWC3_GCTL);
2059 reg |= DWC3_GCTL_RAMCLKSEL(usb30_clock);
2060 dwc3_writel(dwc->regs, DWC3_GCTL, reg);
2061}
2062
Paul Zimmermand7a46a82012-04-27 12:54:05 +03002063static void dwc3_gadget_phy_suspend(struct dwc3 *dwc, u8 speed)
Felipe Balbi72246da2011-08-19 18:10:58 +03002064{
2065 switch (speed) {
2066 case USB_SPEED_SUPER:
Paul Zimmermand7a46a82012-04-27 12:54:05 +03002067 dwc3_gadget_usb2_phy_suspend(dwc, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002068 break;
2069 case USB_SPEED_HIGH:
2070 case USB_SPEED_FULL:
2071 case USB_SPEED_LOW:
Paul Zimmermand7a46a82012-04-27 12:54:05 +03002072 dwc3_gadget_usb3_phy_suspend(dwc, true);
Felipe Balbi72246da2011-08-19 18:10:58 +03002073 break;
2074 }
2075}
2076
2077static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)
2078{
2079 struct dwc3_gadget_ep_cmd_params params;
2080 struct dwc3_ep *dep;
2081 int ret;
2082 u32 reg;
2083 u8 speed;
2084
2085 dev_vdbg(dwc->dev, "%s\n", __func__);
2086
2087 memset(&params, 0x00, sizeof(params));
2088
Felipe Balbi72246da2011-08-19 18:10:58 +03002089 reg = dwc3_readl(dwc->regs, DWC3_DSTS);
2090 speed = reg & DWC3_DSTS_CONNECTSPD;
2091 dwc->speed = speed;
2092
2093 dwc3_update_ram_clk_sel(dwc, speed);
2094
2095 switch (speed) {
2096 case DWC3_DCFG_SUPERSPEED:
Felipe Balbi05870c52011-10-14 14:51:38 +03002097 /*
2098 * WORKAROUND: DWC3 revisions <1.90a have an issue which
2099 * would cause a missing USB3 Reset event.
2100 *
2101 * In such situations, we should force a USB3 Reset
2102 * event by calling our dwc3_gadget_reset_interrupt()
2103 * routine.
2104 *
2105 * Refers to:
2106 *
2107 * STAR#9000483510: RTL: SS : USB3 reset event may
2108 * not be generated always when the link enters poll
2109 */
2110 if (dwc->revision < DWC3_REVISION_190A)
2111 dwc3_gadget_reset_interrupt(dwc);
2112
Felipe Balbi72246da2011-08-19 18:10:58 +03002113 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512);
2114 dwc->gadget.ep0->maxpacket = 512;
2115 dwc->gadget.speed = USB_SPEED_SUPER;
2116 break;
2117 case DWC3_DCFG_HIGHSPEED:
2118 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2119 dwc->gadget.ep0->maxpacket = 64;
2120 dwc->gadget.speed = USB_SPEED_HIGH;
2121 break;
2122 case DWC3_DCFG_FULLSPEED2:
2123 case DWC3_DCFG_FULLSPEED1:
2124 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64);
2125 dwc->gadget.ep0->maxpacket = 64;
2126 dwc->gadget.speed = USB_SPEED_FULL;
2127 break;
2128 case DWC3_DCFG_LOWSPEED:
2129 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8);
2130 dwc->gadget.ep0->maxpacket = 8;
2131 dwc->gadget.speed = USB_SPEED_LOW;
2132 break;
2133 }
2134
Paul Zimmerman802fde92012-04-27 13:10:52 +03002135 /* Recent versions support automatic phy suspend and don't need this */
2136 if (dwc->revision < DWC3_REVISION_194A) {
2137 /* Suspend unneeded PHY */
2138 dwc3_gadget_phy_suspend(dwc, dwc->gadget.speed);
2139 }
Felipe Balbi72246da2011-08-19 18:10:58 +03002140
2141 dep = dwc->eps[0];
Felipe Balbic90bfae2011-11-29 13:11:21 +02002142 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL);
Felipe Balbi72246da2011-08-19 18:10:58 +03002143 if (ret) {
2144 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2145 return;
2146 }
2147
2148 dep = dwc->eps[1];
Felipe Balbic90bfae2011-11-29 13:11:21 +02002149 ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL);
Felipe Balbi72246da2011-08-19 18:10:58 +03002150 if (ret) {
2151 dev_err(dwc->dev, "failed to enable %s\n", dep->name);
2152 return;
2153 }
2154
2155 /*
2156 * Configure PHY via GUSB3PIPECTLn if required.
2157 *
2158 * Update GTXFIFOSIZn
2159 *
2160 * In both cases reset values should be sufficient.
2161 */
2162}
2163
2164static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc)
2165{
2166 dev_vdbg(dwc->dev, "%s\n", __func__);
2167
2168 /*
2169 * TODO take core out of low power mode when that's
2170 * implemented.
2171 */
2172
2173 dwc->gadget_driver->resume(&dwc->gadget);
2174}
2175
2176static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc,
2177 unsigned int evtinfo)
2178{
Felipe Balbifae2b902011-10-14 13:00:30 +03002179 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK;
2180
2181 /*
2182 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending
2183 * on the link partner, the USB session might do multiple entry/exit
2184 * of low power states before a transfer takes place.
2185 *
2186 * Due to this problem, we might experience lower throughput. The
2187 * suggested workaround is to disable DCTL[12:9] bits if we're
2188 * transitioning from U1/U2 to U0 and enable those bits again
2189 * after a transfer completes and there are no pending transfers
2190 * on any of the enabled endpoints.
2191 *
2192 * This is the first half of that workaround.
2193 *
2194 * Refers to:
2195 *
2196 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us
2197 * core send LGO_Ux entering U0
2198 */
2199 if (dwc->revision < DWC3_REVISION_183A) {
2200 if (next == DWC3_LINK_STATE_U0) {
2201 u32 u1u2;
2202 u32 reg;
2203
2204 switch (dwc->link_state) {
2205 case DWC3_LINK_STATE_U1:
2206 case DWC3_LINK_STATE_U2:
2207 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2208 u1u2 = reg & (DWC3_DCTL_INITU2ENA
2209 | DWC3_DCTL_ACCEPTU2ENA
2210 | DWC3_DCTL_INITU1ENA
2211 | DWC3_DCTL_ACCEPTU1ENA);
2212
2213 if (!dwc->u1u2)
2214 dwc->u1u2 = reg & u1u2;
2215
2216 reg &= ~u1u2;
2217
2218 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2219 break;
2220 default:
2221 /* do nothing */
2222 break;
2223 }
2224 }
2225 }
2226
2227 dwc->link_state = next;
Felipe Balbi019ac832011-09-08 21:18:47 +03002228
2229 dev_vdbg(dwc->dev, "%s link %d\n", __func__, dwc->link_state);
Felipe Balbi72246da2011-08-19 18:10:58 +03002230}
2231
2232static void dwc3_gadget_interrupt(struct dwc3 *dwc,
2233 const struct dwc3_event_devt *event)
2234{
2235 switch (event->type) {
2236 case DWC3_DEVICE_EVENT_DISCONNECT:
2237 dwc3_gadget_disconnect_interrupt(dwc);
2238 break;
2239 case DWC3_DEVICE_EVENT_RESET:
2240 dwc3_gadget_reset_interrupt(dwc);
2241 break;
2242 case DWC3_DEVICE_EVENT_CONNECT_DONE:
2243 dwc3_gadget_conndone_interrupt(dwc);
2244 break;
2245 case DWC3_DEVICE_EVENT_WAKEUP:
2246 dwc3_gadget_wakeup_interrupt(dwc);
2247 break;
2248 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE:
2249 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info);
2250 break;
2251 case DWC3_DEVICE_EVENT_EOPF:
2252 dev_vdbg(dwc->dev, "End of Periodic Frame\n");
2253 break;
2254 case DWC3_DEVICE_EVENT_SOF:
2255 dev_vdbg(dwc->dev, "Start of Periodic Frame\n");
2256 break;
2257 case DWC3_DEVICE_EVENT_ERRATIC_ERROR:
2258 dev_vdbg(dwc->dev, "Erratic Error\n");
2259 break;
2260 case DWC3_DEVICE_EVENT_CMD_CMPL:
2261 dev_vdbg(dwc->dev, "Command Complete\n");
2262 break;
2263 case DWC3_DEVICE_EVENT_OVERFLOW:
2264 dev_vdbg(dwc->dev, "Overflow\n");
2265 break;
2266 default:
2267 dev_dbg(dwc->dev, "UNKNOWN IRQ %d\n", event->type);
2268 }
2269}
2270
2271static void dwc3_process_event_entry(struct dwc3 *dwc,
2272 const union dwc3_event *event)
2273{
2274 /* Endpoint IRQ, handle it and return early */
2275 if (event->type.is_devspec == 0) {
2276 /* depevt */
2277 return dwc3_endpoint_interrupt(dwc, &event->depevt);
2278 }
2279
2280 switch (event->type.type) {
2281 case DWC3_EVENT_TYPE_DEV:
2282 dwc3_gadget_interrupt(dwc, &event->devt);
2283 break;
2284 /* REVISIT what to do with Carkit and I2C events ? */
2285 default:
2286 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw);
2287 }
2288}
2289
2290static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc, u32 buf)
2291{
2292 struct dwc3_event_buffer *evt;
2293 int left;
2294 u32 count;
2295
2296 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(buf));
2297 count &= DWC3_GEVNTCOUNT_MASK;
2298 if (!count)
2299 return IRQ_NONE;
2300
2301 evt = dwc->ev_buffs[buf];
2302 left = count;
2303
2304 while (left > 0) {
2305 union dwc3_event event;
2306
Felipe Balbid70d8442012-02-06 13:40:17 +02002307 event.raw = *(u32 *) (evt->buf + evt->lpos);
2308
Felipe Balbi72246da2011-08-19 18:10:58 +03002309 dwc3_process_event_entry(dwc, &event);
2310 /*
2311 * XXX we wrap around correctly to the next entry as almost all
2312 * entries are 4 bytes in size. There is one entry which has 12
2313 * bytes which is a regular entry followed by 8 bytes data. ATM
2314 * I don't know how things are organized if were get next to the
2315 * a boundary so I worry about that once we try to handle that.
2316 */
2317 evt->lpos = (evt->lpos + 4) % DWC3_EVENT_BUFFERS_SIZE;
2318 left -= 4;
2319
2320 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(buf), 4);
2321 }
2322
2323 return IRQ_HANDLED;
2324}
2325
2326static irqreturn_t dwc3_interrupt(int irq, void *_dwc)
2327{
2328 struct dwc3 *dwc = _dwc;
2329 int i;
2330 irqreturn_t ret = IRQ_NONE;
2331
2332 spin_lock(&dwc->lock);
2333
Felipe Balbi9f622b22011-10-12 10:31:04 +03002334 for (i = 0; i < dwc->num_event_buffers; i++) {
Felipe Balbi72246da2011-08-19 18:10:58 +03002335 irqreturn_t status;
2336
2337 status = dwc3_process_event_buf(dwc, i);
2338 if (status == IRQ_HANDLED)
2339 ret = status;
2340 }
2341
2342 spin_unlock(&dwc->lock);
2343
2344 return ret;
2345}
2346
2347/**
2348 * dwc3_gadget_init - Initializes gadget related registers
Paul Zimmerman1d046792012-02-15 18:56:56 -08002349 * @dwc: pointer to our controller context structure
Felipe Balbi72246da2011-08-19 18:10:58 +03002350 *
2351 * Returns 0 on success otherwise negative errno.
2352 */
2353int __devinit dwc3_gadget_init(struct dwc3 *dwc)
2354{
2355 u32 reg;
2356 int ret;
2357 int irq;
2358
2359 dwc->ctrl_req = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2360 &dwc->ctrl_req_addr, GFP_KERNEL);
2361 if (!dwc->ctrl_req) {
2362 dev_err(dwc->dev, "failed to allocate ctrl request\n");
2363 ret = -ENOMEM;
2364 goto err0;
2365 }
2366
2367 dwc->ep0_trb = dma_alloc_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2368 &dwc->ep0_trb_addr, GFP_KERNEL);
2369 if (!dwc->ep0_trb) {
2370 dev_err(dwc->dev, "failed to allocate ep0 trb\n");
2371 ret = -ENOMEM;
2372 goto err1;
2373 }
2374
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002375 dwc->setup_buf = kzalloc(DWC3_EP0_BOUNCE_SIZE, GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +03002376 if (!dwc->setup_buf) {
2377 dev_err(dwc->dev, "failed to allocate setup buffer\n");
2378 ret = -ENOMEM;
2379 goto err2;
2380 }
2381
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002382 dwc->ep0_bounce = dma_alloc_coherent(dwc->dev,
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002383 DWC3_EP0_BOUNCE_SIZE, &dwc->ep0_bounce_addr,
2384 GFP_KERNEL);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002385 if (!dwc->ep0_bounce) {
2386 dev_err(dwc->dev, "failed to allocate ep0 bounce buffer\n");
2387 ret = -ENOMEM;
2388 goto err3;
2389 }
2390
Felipe Balbi72246da2011-08-19 18:10:58 +03002391 dev_set_name(&dwc->gadget.dev, "gadget");
2392
2393 dwc->gadget.ops = &dwc3_gadget_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01002394 dwc->gadget.max_speed = USB_SPEED_SUPER;
Felipe Balbi72246da2011-08-19 18:10:58 +03002395 dwc->gadget.speed = USB_SPEED_UNKNOWN;
2396 dwc->gadget.dev.parent = dwc->dev;
Felipe Balbieeb720f2011-11-28 12:46:59 +02002397 dwc->gadget.sg_supported = true;
Felipe Balbi72246da2011-08-19 18:10:58 +03002398
2399 dma_set_coherent_mask(&dwc->gadget.dev, dwc->dev->coherent_dma_mask);
2400
2401 dwc->gadget.dev.dma_parms = dwc->dev->dma_parms;
2402 dwc->gadget.dev.dma_mask = dwc->dev->dma_mask;
2403 dwc->gadget.dev.release = dwc3_gadget_release;
2404 dwc->gadget.name = "dwc3-gadget";
2405
2406 /*
2407 * REVISIT: Here we should clear all pending IRQs to be
2408 * sure we're starting from a well known location.
2409 */
2410
2411 ret = dwc3_gadget_init_endpoints(dwc);
2412 if (ret)
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002413 goto err4;
Felipe Balbi72246da2011-08-19 18:10:58 +03002414
2415 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
2416
2417 ret = request_irq(irq, dwc3_interrupt, IRQF_SHARED,
2418 "dwc3", dwc);
2419 if (ret) {
2420 dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
2421 irq, ret);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002422 goto err5;
Felipe Balbi72246da2011-08-19 18:10:58 +03002423 }
2424
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +02002425 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2426 reg |= DWC3_DCFG_LPM_CAP;
2427 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2428
Felipe Balbi72246da2011-08-19 18:10:58 +03002429 /* Enable all but Start and End of Frame IRQs */
2430 reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN |
2431 DWC3_DEVTEN_EVNTOVERFLOWEN |
2432 DWC3_DEVTEN_CMDCMPLTEN |
2433 DWC3_DEVTEN_ERRTICERREN |
2434 DWC3_DEVTEN_WKUPEVTEN |
2435 DWC3_DEVTEN_ULSTCNGEN |
2436 DWC3_DEVTEN_CONNECTDONEEN |
2437 DWC3_DEVTEN_USBRSTEN |
2438 DWC3_DEVTEN_DISCONNEVTEN);
2439 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg);
2440
Paul Zimmerman802fde92012-04-27 13:10:52 +03002441 /* Enable USB2 LPM and automatic phy suspend only on recent versions */
2442 if (dwc->revision >= DWC3_REVISION_194A) {
2443 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
2444 reg |= DWC3_DCFG_LPM_CAP;
2445 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
2446
2447 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
2448 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN);
2449
2450 /* TODO: This should be configurable */
2451 reg |= DWC3_DCTL_HIRD_THRES(31);
2452
2453 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
2454
Pratyush Ananddcae3572012-06-06 19:36:17 +05302455 dwc3_gadget_usb2_phy_suspend(dwc, false);
2456 dwc3_gadget_usb3_phy_suspend(dwc, false);
Paul Zimmerman802fde92012-04-27 13:10:52 +03002457 }
2458
Felipe Balbi72246da2011-08-19 18:10:58 +03002459 ret = device_register(&dwc->gadget.dev);
2460 if (ret) {
2461 dev_err(dwc->dev, "failed to register gadget device\n");
2462 put_device(&dwc->gadget.dev);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002463 goto err6;
Felipe Balbi72246da2011-08-19 18:10:58 +03002464 }
2465
2466 ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
2467 if (ret) {
2468 dev_err(dwc->dev, "failed to register udc\n");
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002469 goto err7;
Felipe Balbi72246da2011-08-19 18:10:58 +03002470 }
2471
2472 return 0;
2473
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002474err7:
Felipe Balbi72246da2011-08-19 18:10:58 +03002475 device_unregister(&dwc->gadget.dev);
2476
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002477err6:
Felipe Balbi72246da2011-08-19 18:10:58 +03002478 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2479 free_irq(irq, dwc);
2480
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002481err5:
Felipe Balbi72246da2011-08-19 18:10:58 +03002482 dwc3_gadget_free_endpoints(dwc);
2483
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002484err4:
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002485 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2486 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002487
Felipe Balbi72246da2011-08-19 18:10:58 +03002488err3:
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002489 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002490
2491err2:
2492 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2493 dwc->ep0_trb, dwc->ep0_trb_addr);
2494
2495err1:
2496 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2497 dwc->ctrl_req, dwc->ctrl_req_addr);
2498
2499err0:
2500 return ret;
2501}
2502
2503void dwc3_gadget_exit(struct dwc3 *dwc)
2504{
2505 int irq;
Felipe Balbi72246da2011-08-19 18:10:58 +03002506
2507 usb_del_gadget_udc(&dwc->gadget);
2508 irq = platform_get_irq(to_platform_device(dwc->dev), 0);
2509
2510 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00);
2511 free_irq(irq, dwc);
2512
Felipe Balbi72246da2011-08-19 18:10:58 +03002513 dwc3_gadget_free_endpoints(dwc);
2514
Felipe Balbi3ef35fa2012-05-04 12:58:14 +03002515 dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
2516 dwc->ep0_bounce, dwc->ep0_bounce_addr);
Felipe Balbi5812b1c2011-08-27 22:07:53 +03002517
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +02002518 kfree(dwc->setup_buf);
Felipe Balbi72246da2011-08-19 18:10:58 +03002519
2520 dma_free_coherent(dwc->dev, sizeof(*dwc->ep0_trb),
2521 dwc->ep0_trb, dwc->ep0_trb_addr);
2522
2523 dma_free_coherent(dwc->dev, sizeof(*dwc->ctrl_req),
2524 dwc->ctrl_req, dwc->ctrl_req_addr);
2525
2526 device_unregister(&dwc->gadget.dev);
2527}