blob: f37b8594edebbdeb31f786f40bbd4bdf4f903f84 [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
2 * MUSB OTG driver peripheral support
3 *
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
Sergei Shtylyovcea83242009-11-18 22:51:18 +03007 * Copyright (C) 2009 MontaVista Software, Inc. <source@mvista.com>
Felipe Balbi550a7372008-07-24 12:27:36 +03008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
26 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
29 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
30 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36#include <linux/kernel.h>
37#include <linux/list.h>
38#include <linux/timer.h>
39#include <linux/module.h>
40#include <linux/smp.h>
41#include <linux/spinlock.h>
42#include <linux/delay.h>
43#include <linux/moduleparam.h>
44#include <linux/stat.h>
45#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030047
48#include "musb_core.h"
49
50
51/* MUSB PERIPHERAL status 3-mar-2006:
52 *
53 * - EP0 seems solid. It passes both USBCV and usbtest control cases.
54 * Minor glitches:
55 *
56 * + remote wakeup to Linux hosts work, but saw USBCV failures;
57 * in one test run (operator error?)
58 * + endpoint halt tests -- in both usbtest and usbcv -- seem
59 * to break when dma is enabled ... is something wrongly
60 * clearing SENDSTALL?
61 *
62 * - Mass storage behaved ok when last tested. Network traffic patterns
63 * (with lots of short transfers etc) need retesting; they turn up the
64 * worst cases of the DMA, since short packets are typical but are not
65 * required.
66 *
67 * - TX/IN
68 * + both pio and dma behave in with network and g_zero tests
69 * + no cppi throughput issues other than no-hw-queueing
70 * + failed with FLAT_REG (DaVinci)
71 * + seems to behave with double buffering, PIO -and- CPPI
72 * + with gadgetfs + AIO, requests got lost?
73 *
74 * - RX/OUT
75 * + both pio and dma behave in with network and g_zero tests
76 * + dma is slow in typical case (short_not_ok is clear)
77 * + double buffering ok with PIO
78 * + double buffering *FAILS* with CPPI, wrong data bytes sometimes
79 * + request lossage observed with gadgetfs
80 *
81 * - ISO not tested ... might work, but only weakly isochronous
82 *
83 * - Gadget driver disabling of softconnect during bind() is ignored; so
84 * drivers can't hold off host requests until userspace is ready.
85 * (Workaround: they can turn it off later.)
86 *
87 * - PORTABILITY (assumes PIO works):
88 * + DaVinci, basically works with cppi dma
89 * + OMAP 2430, ditto with mentor dma
90 * + TUSB 6010, platform-specific dma in the works
91 */
92
93/* ----------------------------------------------------------------------- */
94
95/*
96 * Immediately complete a request.
97 *
98 * @param request the request to complete
99 * @param status the status to complete the request with
100 * Context: controller locked, IRQs blocked.
101 */
102void musb_g_giveback(
103 struct musb_ep *ep,
104 struct usb_request *request,
105 int status)
106__releases(ep->musb->lock)
107__acquires(ep->musb->lock)
108{
109 struct musb_request *req;
110 struct musb *musb;
111 int busy = ep->busy;
112
113 req = to_musb_request(request);
114
115 list_del(&request->list);
116 if (req->request.status == -EINPROGRESS)
117 req->request.status = status;
118 musb = req->musb;
119
120 ep->busy = 1;
121 spin_unlock(&musb->lock);
122 if (is_dma_capable()) {
123 if (req->mapped) {
124 dma_unmap_single(musb->controller,
125 req->request.dma,
126 req->request.length,
127 req->tx
128 ? DMA_TO_DEVICE
129 : DMA_FROM_DEVICE);
130 req->request.dma = DMA_ADDR_INVALID;
131 req->mapped = 0;
132 } else if (req->request.dma != DMA_ADDR_INVALID)
133 dma_sync_single_for_cpu(musb->controller,
134 req->request.dma,
135 req->request.length,
136 req->tx
137 ? DMA_TO_DEVICE
138 : DMA_FROM_DEVICE);
139 }
140 if (request->status == 0)
141 DBG(5, "%s done request %p, %d/%d\n",
142 ep->end_point.name, request,
143 req->request.actual, req->request.length);
144 else
145 DBG(2, "%s request %p, %d/%d fault %d\n",
146 ep->end_point.name, request,
147 req->request.actual, req->request.length,
148 request->status);
149 req->request.complete(&req->ep->end_point, &req->request);
150 spin_lock(&musb->lock);
151 ep->busy = busy;
152}
153
154/* ----------------------------------------------------------------------- */
155
156/*
157 * Abort requests queued to an endpoint using the status. Synchronous.
158 * caller locked controller and blocked irqs, and selected this ep.
159 */
160static void nuke(struct musb_ep *ep, const int status)
161{
162 struct musb_request *req = NULL;
163 void __iomem *epio = ep->musb->endpoints[ep->current_epnum].regs;
164
165 ep->busy = 1;
166
167 if (is_dma_capable() && ep->dma) {
168 struct dma_controller *c = ep->musb->dma_controller;
169 int value;
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700170
Felipe Balbi550a7372008-07-24 12:27:36 +0300171 if (ep->is_in) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700172 /*
173 * The programming guide says that we must not clear
174 * the DMAMODE bit before DMAENAB, so we only
175 * clear it in the second write...
176 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300177 musb_writew(epio, MUSB_TXCSR,
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700178 MUSB_TXCSR_DMAMODE | MUSB_TXCSR_FLUSHFIFO);
Felipe Balbi550a7372008-07-24 12:27:36 +0300179 musb_writew(epio, MUSB_TXCSR,
180 0 | MUSB_TXCSR_FLUSHFIFO);
181 } else {
182 musb_writew(epio, MUSB_RXCSR,
183 0 | MUSB_RXCSR_FLUSHFIFO);
184 musb_writew(epio, MUSB_RXCSR,
185 0 | MUSB_RXCSR_FLUSHFIFO);
186 }
187
188 value = c->channel_abort(ep->dma);
189 DBG(value ? 1 : 6, "%s: abort DMA --> %d\n", ep->name, value);
190 c->channel_release(ep->dma);
191 ep->dma = NULL;
192 }
193
194 while (!list_empty(&(ep->req_list))) {
195 req = container_of(ep->req_list.next, struct musb_request,
196 request.list);
197 musb_g_giveback(ep, &req->request, status);
198 }
199}
200
201/* ----------------------------------------------------------------------- */
202
203/* Data transfers - pure PIO, pure DMA, or mixed mode */
204
205/*
206 * This assumes the separate CPPI engine is responding to DMA requests
207 * from the usb core ... sequenced a bit differently from mentor dma.
208 */
209
210static inline int max_ep_writesize(struct musb *musb, struct musb_ep *ep)
211{
212 if (can_bulk_split(musb, ep->type))
213 return ep->hw_ep->max_packet_sz_tx;
214 else
215 return ep->packet_sz;
216}
217
218
219#ifdef CONFIG_USB_INVENTRA_DMA
220
221/* Peripheral tx (IN) using Mentor DMA works as follows:
222 Only mode 0 is used for transfers <= wPktSize,
223 mode 1 is used for larger transfers,
224
225 One of the following happens:
226 - Host sends IN token which causes an endpoint interrupt
227 -> TxAvail
228 -> if DMA is currently busy, exit.
229 -> if queue is non-empty, txstate().
230
231 - Request is queued by the gadget driver.
232 -> if queue was previously empty, txstate()
233
234 txstate()
235 -> start
236 /\ -> setup DMA
237 | (data is transferred to the FIFO, then sent out when
238 | IN token(s) are recd from Host.
239 | -> DMA interrupt on completion
240 | calls TxAvail.
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700241 | -> stop DMA, ~DMAENAB,
Felipe Balbi550a7372008-07-24 12:27:36 +0300242 | -> set TxPktRdy for last short pkt or zlp
243 | -> Complete Request
244 | -> Continue next request (call txstate)
245 |___________________________________|
246
247 * Non-Mentor DMA engines can of course work differently, such as by
248 * upleveling from irq-per-packet to irq-per-buffer.
249 */
250
251#endif
252
253/*
254 * An endpoint is transmitting data. This can be called either from
255 * the IRQ routine or from ep.queue() to kickstart a request on an
256 * endpoint.
257 *
258 * Context: controller locked, IRQs blocked, endpoint selected
259 */
260static void txstate(struct musb *musb, struct musb_request *req)
261{
262 u8 epnum = req->epnum;
263 struct musb_ep *musb_ep;
264 void __iomem *epio = musb->endpoints[epnum].regs;
265 struct usb_request *request;
266 u16 fifo_count = 0, csr;
267 int use_dma = 0;
268
269 musb_ep = req->ep;
270
271 /* we shouldn't get here while DMA is active ... but we do ... */
272 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
273 DBG(4, "dma pending...\n");
274 return;
275 }
276
277 /* read TXCSR before */
278 csr = musb_readw(epio, MUSB_TXCSR);
279
280 request = &req->request;
281 fifo_count = min(max_ep_writesize(musb, musb_ep),
282 (int)(request->length - request->actual));
283
284 if (csr & MUSB_TXCSR_TXPKTRDY) {
285 DBG(5, "%s old packet still ready , txcsr %03x\n",
286 musb_ep->end_point.name, csr);
287 return;
288 }
289
290 if (csr & MUSB_TXCSR_P_SENDSTALL) {
291 DBG(5, "%s stalling, txcsr %03x\n",
292 musb_ep->end_point.name, csr);
293 return;
294 }
295
296 DBG(4, "hw_ep%d, maxpacket %d, fifo count %d, txcsr %03x\n",
297 epnum, musb_ep->packet_sz, fifo_count,
298 csr);
299
300#ifndef CONFIG_MUSB_PIO_ONLY
301 if (is_dma_capable() && musb_ep->dma) {
302 struct dma_controller *c = musb->dma_controller;
Ming Lei66af83d2010-09-20 10:32:06 +0300303 size_t request_size;
304
305 /* setup DMA, then program endpoint CSR */
306 request_size = min_t(size_t, request->length - request->actual,
307 musb_ep->dma->max_len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300308
309 use_dma = (request->dma != DMA_ADDR_INVALID);
310
311 /* MUSB_TXCSR_P_ISO is still set correctly */
312
313#ifdef CONFIG_USB_INVENTRA_DMA
314 {
Anand Gadiyard1043a22009-04-02 12:07:08 -0700315 if (request_size < musb_ep->packet_sz)
Felipe Balbi550a7372008-07-24 12:27:36 +0300316 musb_ep->dma->desired_mode = 0;
317 else
318 musb_ep->dma->desired_mode = 1;
319
320 use_dma = use_dma && c->channel_program(
321 musb_ep->dma, musb_ep->packet_sz,
322 musb_ep->dma->desired_mode,
Cliff Cai796a83f2009-12-21 21:18:02 -0500323 request->dma + request->actual, request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300324 if (use_dma) {
325 if (musb_ep->dma->desired_mode == 0) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700326 /*
327 * We must not clear the DMAMODE bit
328 * before the DMAENAB bit -- and the
329 * latter doesn't always get cleared
330 * before we get here...
331 */
332 csr &= ~(MUSB_TXCSR_AUTOSET
333 | MUSB_TXCSR_DMAENAB);
334 musb_writew(epio, MUSB_TXCSR, csr
335 | MUSB_TXCSR_P_WZC_BITS);
336 csr &= ~MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300337 csr |= (MUSB_TXCSR_DMAENAB |
338 MUSB_TXCSR_MODE);
339 /* against programming guide */
Ming Leif11d8932010-09-24 13:44:04 +0300340 } else {
341 csr |= (MUSB_TXCSR_DMAENAB
Felipe Balbi550a7372008-07-24 12:27:36 +0300342 | MUSB_TXCSR_DMAMODE
343 | MUSB_TXCSR_MODE);
Ming Leif11d8932010-09-24 13:44:04 +0300344 if (!musb_ep->hb_mult)
345 csr |= MUSB_TXCSR_AUTOSET;
346 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300347 csr &= ~MUSB_TXCSR_P_UNDERRUN;
Ming Leif11d8932010-09-24 13:44:04 +0300348
Felipe Balbi550a7372008-07-24 12:27:36 +0300349 musb_writew(epio, MUSB_TXCSR, csr);
350 }
351 }
352
353#elif defined(CONFIG_USB_TI_CPPI_DMA)
354 /* program endpoint CSR first, then setup DMA */
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700355 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
Sergei Shtylyov37e3ee92009-03-27 12:53:32 -0700356 csr |= MUSB_TXCSR_DMAENAB | MUSB_TXCSR_DMAMODE |
357 MUSB_TXCSR_MODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300358 musb_writew(epio, MUSB_TXCSR,
359 (MUSB_TXCSR_P_WZC_BITS & ~MUSB_TXCSR_P_UNDERRUN)
360 | csr);
361
362 /* ensure writebuffer is empty */
363 csr = musb_readw(epio, MUSB_TXCSR);
364
365 /* NOTE host side sets DMAENAB later than this; both are
366 * OK since the transfer dma glue (between CPPI and Mentor
367 * fifos) just tells CPPI it could start. Data only moves
368 * to the USB TX fifo when both fifos are ready.
369 */
370
371 /* "mode" is irrelevant here; handle terminating ZLPs like
372 * PIO does, since the hardware RNDIS mode seems unreliable
373 * except for the last-packet-is-already-short case.
374 */
375 use_dma = use_dma && c->channel_program(
376 musb_ep->dma, musb_ep->packet_sz,
377 0,
Ming Lei66af83d2010-09-20 10:32:06 +0300378 request->dma + request->actual,
379 request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300380 if (!use_dma) {
381 c->channel_release(musb_ep->dma);
382 musb_ep->dma = NULL;
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700383 csr &= ~MUSB_TXCSR_DMAENAB;
384 musb_writew(epio, MUSB_TXCSR, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300385 /* invariant: prequest->buf is non-null */
386 }
387#elif defined(CONFIG_USB_TUSB_OMAP_DMA)
388 use_dma = use_dma && c->channel_program(
389 musb_ep->dma, musb_ep->packet_sz,
390 request->zero,
Ming Lei66af83d2010-09-20 10:32:06 +0300391 request->dma + request->actual,
392 request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300393#endif
394 }
395#endif
396
397 if (!use_dma) {
398 musb_write_fifo(musb_ep->hw_ep, fifo_count,
399 (u8 *) (request->buf + request->actual));
400 request->actual += fifo_count;
401 csr |= MUSB_TXCSR_TXPKTRDY;
402 csr &= ~MUSB_TXCSR_P_UNDERRUN;
403 musb_writew(epio, MUSB_TXCSR, csr);
404 }
405
406 /* host may already have the data when this message shows... */
407 DBG(3, "%s TX/IN %s len %d/%d, txcsr %04x, fifo %d/%d\n",
408 musb_ep->end_point.name, use_dma ? "dma" : "pio",
409 request->actual, request->length,
410 musb_readw(epio, MUSB_TXCSR),
411 fifo_count,
412 musb_readw(epio, MUSB_TXMAXP));
413}
414
415/*
416 * FIFO state update (e.g. data ready).
417 * Called from IRQ, with controller locked.
418 */
419void musb_g_tx(struct musb *musb, u8 epnum)
420{
421 u16 csr;
422 struct usb_request *request;
423 u8 __iomem *mbase = musb->mregs;
424 struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_in;
425 void __iomem *epio = musb->endpoints[epnum].regs;
426 struct dma_channel *dma;
427
428 musb_ep_select(mbase, epnum);
429 request = next_request(musb_ep);
430
431 csr = musb_readw(epio, MUSB_TXCSR);
432 DBG(4, "<== %s, txcsr %04x\n", musb_ep->end_point.name, csr);
433
434 dma = is_dma_capable() ? musb_ep->dma : NULL;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300435
436 /*
437 * REVISIT: for high bandwidth, MUSB_TXCSR_P_INCOMPTX
438 * probably rates reporting as a host error.
439 */
440 if (csr & MUSB_TXCSR_P_SENTSTALL) {
441 csr |= MUSB_TXCSR_P_WZC_BITS;
442 csr &= ~MUSB_TXCSR_P_SENTSTALL;
443 musb_writew(epio, MUSB_TXCSR, csr);
444 return;
445 }
446
447 if (csr & MUSB_TXCSR_P_UNDERRUN) {
448 /* We NAKed, no big deal... little reason to care. */
449 csr |= MUSB_TXCSR_P_WZC_BITS;
450 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
451 musb_writew(epio, MUSB_TXCSR, csr);
452 DBG(20, "underrun on ep%d, req %p\n", epnum, request);
453 }
454
455 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
456 /*
457 * SHOULD NOT HAPPEN... has with CPPI though, after
458 * changing SENDSTALL (and other cases); harmless?
Felipe Balbi550a7372008-07-24 12:27:36 +0300459 */
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300460 DBG(5, "%s dma still busy?\n", musb_ep->end_point.name);
461 return;
462 }
463
464 if (request) {
465 u8 is_dma = 0;
466
467 if (dma && (csr & MUSB_TXCSR_DMAENAB)) {
468 is_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300469 csr |= MUSB_TXCSR_P_WZC_BITS;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300470 csr &= ~(MUSB_TXCSR_DMAENAB | MUSB_TXCSR_P_UNDERRUN |
471 MUSB_TXCSR_TXPKTRDY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300472 musb_writew(epio, MUSB_TXCSR, csr);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300473 /* Ensure writebuffer is empty. */
474 csr = musb_readw(epio, MUSB_TXCSR);
475 request->actual += musb_ep->dma->actual_len;
476 DBG(4, "TXCSR%d %04x, DMA off, len %zu, req %p\n",
477 epnum, csr, musb_ep->dma->actual_len, request);
Felipe Balbi550a7372008-07-24 12:27:36 +0300478 }
479
Ming Leie7379aa2010-09-24 13:44:14 +0300480 /*
481 * First, maybe a terminating short packet. Some DMA
482 * engines might handle this by themselves.
483 */
484 if ((request->zero && request->length
485 && (request->length % musb_ep->packet_sz == 0)
486 && (request->actual == request->length))
Felipe Balbi550a7372008-07-24 12:27:36 +0300487#ifdef CONFIG_USB_INVENTRA_DMA
Ming Leie7379aa2010-09-24 13:44:14 +0300488 || (is_dma && (!dma->desired_mode ||
489 (request->actual &
490 (musb_ep->packet_sz - 1))))
Felipe Balbi550a7372008-07-24 12:27:36 +0300491#endif
Ming Leie7379aa2010-09-24 13:44:14 +0300492 ) {
493 /*
494 * On DMA completion, FIFO may not be
495 * available yet...
496 */
497 if (csr & MUSB_TXCSR_TXPKTRDY)
498 return;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300499
Ming Leie7379aa2010-09-24 13:44:14 +0300500 DBG(4, "sending zero pkt\n");
501 musb_writew(epio, MUSB_TXCSR, MUSB_TXCSR_MODE
502 | MUSB_TXCSR_TXPKTRDY);
503 request->zero = 0;
504 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300505
Ming Leie7379aa2010-09-24 13:44:14 +0300506 if (request->actual == request->length) {
507 musb_g_giveback(musb_ep, request, 0);
508 request = musb_ep->desc ? next_request(musb_ep) : NULL;
509 if (!request) {
510 DBG(4, "%s idle now\n",
511 musb_ep->end_point.name);
512 return;
Sergei Shtylyov95962a72009-12-16 20:38:31 +0300513 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300514 }
515
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300516 txstate(musb, to_musb_request(request));
517 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300518}
519
520/* ------------------------------------------------------------ */
521
522#ifdef CONFIG_USB_INVENTRA_DMA
523
524/* Peripheral rx (OUT) using Mentor DMA works as follows:
525 - Only mode 0 is used.
526
527 - Request is queued by the gadget class driver.
528 -> if queue was previously empty, rxstate()
529
530 - Host sends OUT token which causes an endpoint interrupt
531 /\ -> RxReady
532 | -> if request queued, call rxstate
533 | /\ -> setup DMA
534 | | -> DMA interrupt on completion
535 | | -> RxReady
536 | | -> stop DMA
537 | | -> ack the read
538 | | -> if data recd = max expected
539 | | by the request, or host
540 | | sent a short packet,
541 | | complete the request,
542 | | and start the next one.
543 | |_____________________________________|
544 | else just wait for the host
545 | to send the next OUT token.
546 |__________________________________________________|
547
548 * Non-Mentor DMA engines can of course work differently.
549 */
550
551#endif
552
553/*
554 * Context: controller locked, IRQs blocked, endpoint selected
555 */
556static void rxstate(struct musb *musb, struct musb_request *req)
557{
Felipe Balbi550a7372008-07-24 12:27:36 +0300558 const u8 epnum = req->epnum;
559 struct usb_request *request = &req->request;
Ming Leibd2e74d2010-09-20 10:32:01 +0300560 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300561 void __iomem *epio = musb->endpoints[epnum].regs;
Felipe Balbic2c96322009-02-21 15:29:42 -0800562 unsigned fifo_count = 0;
Ming Leibd2e74d2010-09-20 10:32:01 +0300563 u16 len;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300564 u16 csr = musb_readw(epio, MUSB_RXCSR);
Ming Leibd2e74d2010-09-20 10:32:01 +0300565 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
566
567 if (hw_ep->is_shared_fifo)
568 musb_ep = &hw_ep->ep_in;
569 else
570 musb_ep = &hw_ep->ep_out;
571
572 len = musb_ep->packet_sz;
Felipe Balbi550a7372008-07-24 12:27:36 +0300573
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300574 /* We shouldn't get here while DMA is active, but we do... */
575 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
576 DBG(4, "DMA pending...\n");
577 return;
578 }
579
580 if (csr & MUSB_RXCSR_P_SENDSTALL) {
581 DBG(5, "%s stalling, RXCSR %04x\n",
582 musb_ep->end_point.name, csr);
583 return;
584 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300585
586 if (is_cppi_enabled() && musb_ep->dma) {
587 struct dma_controller *c = musb->dma_controller;
588 struct dma_channel *channel = musb_ep->dma;
589
590 /* NOTE: CPPI won't actually stop advancing the DMA
591 * queue after short packet transfers, so this is almost
592 * always going to run as IRQ-per-packet DMA so that
593 * faults will be handled correctly.
594 */
595 if (c->channel_program(channel,
596 musb_ep->packet_sz,
597 !request->short_not_ok,
598 request->dma + request->actual,
599 request->length - request->actual)) {
600
601 /* make sure that if an rxpkt arrived after the irq,
602 * the cppi engine will be ready to take it as soon
603 * as DMA is enabled
604 */
605 csr &= ~(MUSB_RXCSR_AUTOCLEAR
606 | MUSB_RXCSR_DMAMODE);
607 csr |= MUSB_RXCSR_DMAENAB | MUSB_RXCSR_P_WZC_BITS;
608 musb_writew(epio, MUSB_RXCSR, csr);
609 return;
610 }
611 }
612
613 if (csr & MUSB_RXCSR_RXPKTRDY) {
614 len = musb_readw(epio, MUSB_RXCOUNT);
615 if (request->actual < request->length) {
616#ifdef CONFIG_USB_INVENTRA_DMA
617 if (is_dma_capable() && musb_ep->dma) {
618 struct dma_controller *c;
619 struct dma_channel *channel;
620 int use_dma = 0;
621
622 c = musb->dma_controller;
623 channel = musb_ep->dma;
624
625 /* We use DMA Req mode 0 in rx_csr, and DMA controller operates in
626 * mode 0 only. So we do not get endpoint interrupts due to DMA
627 * completion. We only get interrupts from DMA controller.
628 *
629 * We could operate in DMA mode 1 if we knew the size of the tranfer
630 * in advance. For mass storage class, request->length = what the host
631 * sends, so that'd work. But for pretty much everything else,
632 * request->length is routinely more than what the host sends. For
633 * most these gadgets, end of is signified either by a short packet,
634 * or filling the last byte of the buffer. (Sending extra data in
635 * that last pckate should trigger an overflow fault.) But in mode 1,
636 * we don't get DMA completion interrrupt for short packets.
637 *
638 * Theoretically, we could enable DMAReq irq (MUSB_RXCSR_DMAMODE = 1),
639 * to get endpoint interrupt on every DMA req, but that didn't seem
640 * to work reliably.
641 *
642 * REVISIT an updated g_file_storage can set req->short_not_ok, which
643 * then becomes usable as a runtime "use mode 1" hint...
644 */
645
646 csr |= MUSB_RXCSR_DMAENAB;
Ming Lei490e5fb2010-09-20 10:32:03 +0300647#ifdef USE_MODE1
Ming Lei9001d802010-09-25 05:50:43 -0500648 csr |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +0300649 /* csr |= MUSB_RXCSR_DMAMODE; */
650
651 /* this special sequence (enabling and then
652 * disabling MUSB_RXCSR_DMAMODE) is required
653 * to get DMAReq to activate
654 */
655 musb_writew(epio, MUSB_RXCSR,
656 csr | MUSB_RXCSR_DMAMODE);
Ming Lei9001d802010-09-25 05:50:43 -0500657#else
658 if (!musb_ep->hb_mult &&
659 musb_ep->hw_ep->rx_double_buffered)
660 csr |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +0300661#endif
662 musb_writew(epio, MUSB_RXCSR, csr);
663
664 if (request->actual < request->length) {
665 int transfer_size = 0;
666#ifdef USE_MODE1
Ming Lei1018b4e2010-09-20 10:32:04 +0300667 transfer_size = min(request->length - request->actual,
Felipe Balbi550a7372008-07-24 12:27:36 +0300668 channel->max_len);
669#else
Ming Lei1018b4e2010-09-20 10:32:04 +0300670 transfer_size = min(request->length - request->actual,
671 (unsigned)len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300672#endif
673 if (transfer_size <= musb_ep->packet_sz)
674 musb_ep->dma->desired_mode = 0;
675 else
676 musb_ep->dma->desired_mode = 1;
677
678 use_dma = c->channel_program(
679 channel,
680 musb_ep->packet_sz,
681 channel->desired_mode,
682 request->dma
683 + request->actual,
684 transfer_size);
685 }
686
687 if (use_dma)
688 return;
689 }
690#endif /* Mentor's DMA */
691
692 fifo_count = request->length - request->actual;
693 DBG(3, "%s OUT/RX pio fifo %d/%d, maxpacket %d\n",
694 musb_ep->end_point.name,
695 len, fifo_count,
696 musb_ep->packet_sz);
697
Felipe Balbic2c96322009-02-21 15:29:42 -0800698 fifo_count = min_t(unsigned, len, fifo_count);
Felipe Balbi550a7372008-07-24 12:27:36 +0300699
700#ifdef CONFIG_USB_TUSB_OMAP_DMA
701 if (tusb_dma_omap() && musb_ep->dma) {
702 struct dma_controller *c = musb->dma_controller;
703 struct dma_channel *channel = musb_ep->dma;
704 u32 dma_addr = request->dma + request->actual;
705 int ret;
706
707 ret = c->channel_program(channel,
708 musb_ep->packet_sz,
709 channel->desired_mode,
710 dma_addr,
711 fifo_count);
712 if (ret)
713 return;
714 }
715#endif
716
717 musb_read_fifo(musb_ep->hw_ep, fifo_count, (u8 *)
718 (request->buf + request->actual));
719 request->actual += fifo_count;
720
721 /* REVISIT if we left anything in the fifo, flush
722 * it and report -EOVERFLOW
723 */
724
725 /* ack the read! */
726 csr |= MUSB_RXCSR_P_WZC_BITS;
727 csr &= ~MUSB_RXCSR_RXPKTRDY;
728 musb_writew(epio, MUSB_RXCSR, csr);
729 }
730 }
731
732 /* reach the end or short packet detected */
733 if (request->actual == request->length || len < musb_ep->packet_sz)
734 musb_g_giveback(musb_ep, request, 0);
735}
736
737/*
738 * Data ready for a request; called from IRQ
739 */
740void musb_g_rx(struct musb *musb, u8 epnum)
741{
742 u16 csr;
743 struct usb_request *request;
744 void __iomem *mbase = musb->mregs;
Ming Leibd2e74d2010-09-20 10:32:01 +0300745 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300746 void __iomem *epio = musb->endpoints[epnum].regs;
747 struct dma_channel *dma;
Ming Leibd2e74d2010-09-20 10:32:01 +0300748 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
749
750 if (hw_ep->is_shared_fifo)
751 musb_ep = &hw_ep->ep_in;
752 else
753 musb_ep = &hw_ep->ep_out;
Felipe Balbi550a7372008-07-24 12:27:36 +0300754
755 musb_ep_select(mbase, epnum);
756
757 request = next_request(musb_ep);
Maulik Mankad0abdc362009-12-22 16:18:19 +0530758 if (!request)
759 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300760
761 csr = musb_readw(epio, MUSB_RXCSR);
762 dma = is_dma_capable() ? musb_ep->dma : NULL;
763
764 DBG(4, "<== %s, rxcsr %04x%s %p\n", musb_ep->end_point.name,
765 csr, dma ? " (dma)" : "", request);
766
767 if (csr & MUSB_RXCSR_P_SENTSTALL) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300768 csr |= MUSB_RXCSR_P_WZC_BITS;
769 csr &= ~MUSB_RXCSR_P_SENTSTALL;
770 musb_writew(epio, MUSB_RXCSR, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300771 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300772 }
773
774 if (csr & MUSB_RXCSR_P_OVERRUN) {
775 /* csr |= MUSB_RXCSR_P_WZC_BITS; */
776 csr &= ~MUSB_RXCSR_P_OVERRUN;
777 musb_writew(epio, MUSB_RXCSR, csr);
778
779 DBG(3, "%s iso overrun on %p\n", musb_ep->name, request);
Sergei Shtylyov43467862010-09-24 13:44:12 +0300780 if (request->status == -EINPROGRESS)
Felipe Balbi550a7372008-07-24 12:27:36 +0300781 request->status = -EOVERFLOW;
782 }
783 if (csr & MUSB_RXCSR_INCOMPRX) {
784 /* REVISIT not necessarily an error */
785 DBG(4, "%s, incomprx\n", musb_ep->end_point.name);
786 }
787
788 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
789 /* "should not happen"; likely RXPKTRDY pending for DMA */
790 DBG((csr & MUSB_RXCSR_DMAENAB) ? 4 : 1,
791 "%s busy, csr %04x\n",
792 musb_ep->end_point.name, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300793 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300794 }
795
796 if (dma && (csr & MUSB_RXCSR_DMAENAB)) {
797 csr &= ~(MUSB_RXCSR_AUTOCLEAR
798 | MUSB_RXCSR_DMAENAB
799 | MUSB_RXCSR_DMAMODE);
800 musb_writew(epio, MUSB_RXCSR,
801 MUSB_RXCSR_P_WZC_BITS | csr);
802
803 request->actual += musb_ep->dma->actual_len;
804
805 DBG(4, "RXCSR%d %04x, dma off, %04x, len %zu, req %p\n",
806 epnum, csr,
807 musb_readw(epio, MUSB_RXCSR),
808 musb_ep->dma->actual_len, request);
809
810#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA)
811 /* Autoclear doesn't clear RxPktRdy for short packets */
Ming Lei9001d802010-09-25 05:50:43 -0500812 if ((dma->desired_mode == 0 && !hw_ep->rx_double_buffered)
Felipe Balbi550a7372008-07-24 12:27:36 +0300813 || (dma->actual_len
814 & (musb_ep->packet_sz - 1))) {
815 /* ack the read! */
816 csr &= ~MUSB_RXCSR_RXPKTRDY;
817 musb_writew(epio, MUSB_RXCSR, csr);
818 }
819
820 /* incomplete, and not short? wait for next IN packet */
821 if ((request->actual < request->length)
822 && (musb_ep->dma->actual_len
Ming Lei9001d802010-09-25 05:50:43 -0500823 == musb_ep->packet_sz)) {
824 /* In double buffer case, continue to unload fifo if
825 * there is Rx packet in FIFO.
826 **/
827 csr = musb_readw(epio, MUSB_RXCSR);
828 if ((csr & MUSB_RXCSR_RXPKTRDY) &&
829 hw_ep->rx_double_buffered)
830 goto exit;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300831 return;
Ming Lei9001d802010-09-25 05:50:43 -0500832 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300833#endif
834 musb_g_giveback(musb_ep, request, 0);
835
836 request = next_request(musb_ep);
837 if (!request)
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300838 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300839 }
Ming Lei9001d802010-09-25 05:50:43 -0500840exit:
Sergei Shtylyov43467862010-09-24 13:44:12 +0300841 /* Analyze request */
842 rxstate(musb, to_musb_request(request));
Felipe Balbi550a7372008-07-24 12:27:36 +0300843}
844
845/* ------------------------------------------------------------ */
846
847static int musb_gadget_enable(struct usb_ep *ep,
848 const struct usb_endpoint_descriptor *desc)
849{
850 unsigned long flags;
851 struct musb_ep *musb_ep;
852 struct musb_hw_ep *hw_ep;
853 void __iomem *regs;
854 struct musb *musb;
855 void __iomem *mbase;
856 u8 epnum;
857 u16 csr;
858 unsigned tmp;
859 int status = -EINVAL;
860
861 if (!ep || !desc)
862 return -EINVAL;
863
864 musb_ep = to_musb_ep(ep);
865 hw_ep = musb_ep->hw_ep;
866 regs = hw_ep->regs;
867 musb = musb_ep->musb;
868 mbase = musb->mregs;
869 epnum = musb_ep->current_epnum;
870
871 spin_lock_irqsave(&musb->lock, flags);
872
873 if (musb_ep->desc) {
874 status = -EBUSY;
875 goto fail;
876 }
Julia Lawall96bcd092009-01-24 17:57:24 -0800877 musb_ep->type = usb_endpoint_type(desc);
Felipe Balbi550a7372008-07-24 12:27:36 +0300878
879 /* check direction and (later) maxpacket size against endpoint */
Julia Lawall96bcd092009-01-24 17:57:24 -0800880 if (usb_endpoint_num(desc) != epnum)
Felipe Balbi550a7372008-07-24 12:27:36 +0300881 goto fail;
882
883 /* REVISIT this rules out high bandwidth periodic transfers */
884 tmp = le16_to_cpu(desc->wMaxPacketSize);
Ming Leif11d8932010-09-24 13:44:04 +0300885 if (tmp & ~0x07ff) {
886 int ok;
887
888 if (usb_endpoint_dir_in(desc))
889 ok = musb->hb_iso_tx;
890 else
891 ok = musb->hb_iso_rx;
892
893 if (!ok) {
894 DBG(4, "%s: not support ISO high bandwidth\n", __func__);
895 goto fail;
896 }
897 musb_ep->hb_mult = (tmp >> 11) & 3;
898 } else {
899 musb_ep->hb_mult = 0;
900 }
901
902 musb_ep->packet_sz = tmp & 0x7ff;
903 tmp = musb_ep->packet_sz * (musb_ep->hb_mult + 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300904
905 /* enable the interrupts for the endpoint, set the endpoint
906 * packet size (or fail), set the mode, clear the fifo
907 */
908 musb_ep_select(mbase, epnum);
Julia Lawall96bcd092009-01-24 17:57:24 -0800909 if (usb_endpoint_dir_in(desc)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300910 u16 int_txe = musb_readw(mbase, MUSB_INTRTXE);
911
912 if (hw_ep->is_shared_fifo)
913 musb_ep->is_in = 1;
914 if (!musb_ep->is_in)
915 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300916
917 if (tmp > hw_ep->max_packet_sz_tx) {
918 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +0300919 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300920 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300921
922 int_txe |= (1 << epnum);
923 musb_writew(mbase, MUSB_INTRTXE, int_txe);
924
925 /* REVISIT if can_bulk_split(), use by updating "tmp";
926 * likewise high bandwidth periodic tx
927 */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500928 /* Set TXMAXP with the FIFO size of the endpoint
Ming Lei31c99092010-10-19 19:08:25 -0500929 * to disable double buffering mode.
Cliff Cai9f445cb2010-01-28 20:44:18 -0500930 */
Ming Lei31c99092010-10-19 19:08:25 -0500931 musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300932
933 csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG;
934 if (musb_readw(regs, MUSB_TXCSR)
935 & MUSB_TXCSR_FIFONOTEMPTY)
936 csr |= MUSB_TXCSR_FLUSHFIFO;
937 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
938 csr |= MUSB_TXCSR_P_ISO;
939
940 /* set twice in case of double buffering */
941 musb_writew(regs, MUSB_TXCSR, csr);
942 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
943 musb_writew(regs, MUSB_TXCSR, csr);
944
945 } else {
946 u16 int_rxe = musb_readw(mbase, MUSB_INTRRXE);
947
948 if (hw_ep->is_shared_fifo)
949 musb_ep->is_in = 0;
950 if (musb_ep->is_in)
951 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300952
953 if (tmp > hw_ep->max_packet_sz_rx) {
954 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +0300955 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300956 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300957
958 int_rxe |= (1 << epnum);
959 musb_writew(mbase, MUSB_INTRRXE, int_rxe);
960
961 /* REVISIT if can_bulk_combine() use by updating "tmp"
962 * likewise high bandwidth periodic rx
963 */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500964 /* Set RXMAXP with the FIFO size of the endpoint
965 * to disable double buffering mode.
966 */
Ming Lei31c99092010-10-19 19:08:25 -0500967 musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300968
969 /* force shared fifo to OUT-only mode */
970 if (hw_ep->is_shared_fifo) {
971 csr = musb_readw(regs, MUSB_TXCSR);
972 csr &= ~(MUSB_TXCSR_MODE | MUSB_TXCSR_TXPKTRDY);
973 musb_writew(regs, MUSB_TXCSR, csr);
974 }
975
976 csr = MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_CLRDATATOG;
977 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
978 csr |= MUSB_RXCSR_P_ISO;
979 else if (musb_ep->type == USB_ENDPOINT_XFER_INT)
980 csr |= MUSB_RXCSR_DISNYET;
981
982 /* set twice in case of double buffering */
983 musb_writew(regs, MUSB_RXCSR, csr);
984 musb_writew(regs, MUSB_RXCSR, csr);
985 }
986
987 /* NOTE: all the I/O code _should_ work fine without DMA, in case
988 * for some reason you run out of channels here.
989 */
990 if (is_dma_capable() && musb->dma_controller) {
991 struct dma_controller *c = musb->dma_controller;
992
993 musb_ep->dma = c->channel_alloc(c, hw_ep,
994 (desc->bEndpointAddress & USB_DIR_IN));
995 } else
996 musb_ep->dma = NULL;
997
998 musb_ep->desc = desc;
999 musb_ep->busy = 0;
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001000 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001001 status = 0;
1002
1003 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
1004 musb_driver_name, musb_ep->end_point.name,
1005 ({ char *s; switch (musb_ep->type) {
1006 case USB_ENDPOINT_XFER_BULK: s = "bulk"; break;
1007 case USB_ENDPOINT_XFER_INT: s = "int"; break;
1008 default: s = "iso"; break;
1009 }; s; }),
1010 musb_ep->is_in ? "IN" : "OUT",
1011 musb_ep->dma ? "dma, " : "",
1012 musb_ep->packet_sz);
1013
1014 schedule_work(&musb->irq_work);
1015
1016fail:
1017 spin_unlock_irqrestore(&musb->lock, flags);
1018 return status;
1019}
1020
1021/*
1022 * Disable an endpoint flushing all requests queued.
1023 */
1024static int musb_gadget_disable(struct usb_ep *ep)
1025{
1026 unsigned long flags;
1027 struct musb *musb;
1028 u8 epnum;
1029 struct musb_ep *musb_ep;
1030 void __iomem *epio;
1031 int status = 0;
1032
1033 musb_ep = to_musb_ep(ep);
1034 musb = musb_ep->musb;
1035 epnum = musb_ep->current_epnum;
1036 epio = musb->endpoints[epnum].regs;
1037
1038 spin_lock_irqsave(&musb->lock, flags);
1039 musb_ep_select(musb->mregs, epnum);
1040
1041 /* zero the endpoint sizes */
1042 if (musb_ep->is_in) {
1043 u16 int_txe = musb_readw(musb->mregs, MUSB_INTRTXE);
1044 int_txe &= ~(1 << epnum);
1045 musb_writew(musb->mregs, MUSB_INTRTXE, int_txe);
1046 musb_writew(epio, MUSB_TXMAXP, 0);
1047 } else {
1048 u16 int_rxe = musb_readw(musb->mregs, MUSB_INTRRXE);
1049 int_rxe &= ~(1 << epnum);
1050 musb_writew(musb->mregs, MUSB_INTRRXE, int_rxe);
1051 musb_writew(epio, MUSB_RXMAXP, 0);
1052 }
1053
1054 musb_ep->desc = NULL;
1055
1056 /* abort all pending DMA and requests */
1057 nuke(musb_ep, -ESHUTDOWN);
1058
1059 schedule_work(&musb->irq_work);
1060
1061 spin_unlock_irqrestore(&(musb->lock), flags);
1062
1063 DBG(2, "%s\n", musb_ep->end_point.name);
1064
1065 return status;
1066}
1067
1068/*
1069 * Allocate a request for an endpoint.
1070 * Reused by ep0 code.
1071 */
1072struct usb_request *musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1073{
1074 struct musb_ep *musb_ep = to_musb_ep(ep);
1075 struct musb_request *request = NULL;
1076
1077 request = kzalloc(sizeof *request, gfp_flags);
1078 if (request) {
1079 INIT_LIST_HEAD(&request->request.list);
1080 request->request.dma = DMA_ADDR_INVALID;
1081 request->epnum = musb_ep->current_epnum;
1082 request->ep = musb_ep;
1083 }
1084
1085 return &request->request;
1086}
1087
1088/*
1089 * Free a request
1090 * Reused by ep0 code.
1091 */
1092void musb_free_request(struct usb_ep *ep, struct usb_request *req)
1093{
1094 kfree(to_musb_request(req));
1095}
1096
1097static LIST_HEAD(buffers);
1098
1099struct free_record {
1100 struct list_head list;
1101 struct device *dev;
1102 unsigned bytes;
1103 dma_addr_t dma;
1104};
1105
1106/*
1107 * Context: controller locked, IRQs blocked.
1108 */
Sergei Shtylyova666e3e2010-09-11 13:23:12 -05001109void musb_ep_restart(struct musb *musb, struct musb_request *req)
Felipe Balbi550a7372008-07-24 12:27:36 +03001110{
1111 DBG(3, "<== %s request %p len %u on hw_ep%d\n",
1112 req->tx ? "TX/IN" : "RX/OUT",
1113 &req->request, req->request.length, req->epnum);
1114
1115 musb_ep_select(musb->mregs, req->epnum);
1116 if (req->tx)
1117 txstate(musb, req);
1118 else
1119 rxstate(musb, req);
1120}
1121
1122static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req,
1123 gfp_t gfp_flags)
1124{
1125 struct musb_ep *musb_ep;
1126 struct musb_request *request;
1127 struct musb *musb;
1128 int status = 0;
1129 unsigned long lockflags;
1130
1131 if (!ep || !req)
1132 return -EINVAL;
1133 if (!req->buf)
1134 return -ENODATA;
1135
1136 musb_ep = to_musb_ep(ep);
1137 musb = musb_ep->musb;
1138
1139 request = to_musb_request(req);
1140 request->musb = musb;
1141
1142 if (request->ep != musb_ep)
1143 return -EINVAL;
1144
1145 DBG(4, "<== to %s request=%p\n", ep->name, req);
1146
1147 /* request is mine now... */
1148 request->request.actual = 0;
1149 request->request.status = -EINPROGRESS;
1150 request->epnum = musb_ep->current_epnum;
1151 request->tx = musb_ep->is_in;
1152
1153 if (is_dma_capable() && musb_ep->dma) {
1154 if (request->request.dma == DMA_ADDR_INVALID) {
1155 request->request.dma = dma_map_single(
1156 musb->controller,
1157 request->request.buf,
1158 request->request.length,
1159 request->tx
1160 ? DMA_TO_DEVICE
1161 : DMA_FROM_DEVICE);
1162 request->mapped = 1;
1163 } else {
1164 dma_sync_single_for_device(musb->controller,
1165 request->request.dma,
1166 request->request.length,
1167 request->tx
1168 ? DMA_TO_DEVICE
1169 : DMA_FROM_DEVICE);
1170 request->mapped = 0;
1171 }
1172 } else if (!req->buf) {
1173 return -ENODATA;
1174 } else
1175 request->mapped = 0;
1176
1177 spin_lock_irqsave(&musb->lock, lockflags);
1178
1179 /* don't queue if the ep is down */
1180 if (!musb_ep->desc) {
1181 DBG(4, "req %p queued to %s while ep %s\n",
1182 req, ep->name, "disabled");
1183 status = -ESHUTDOWN;
1184 goto cleanup;
1185 }
1186
1187 /* add request to the list */
1188 list_add_tail(&(request->request.list), &(musb_ep->req_list));
1189
1190 /* it this is the head of the queue, start i/o ... */
1191 if (!musb_ep->busy && &request->request.list == musb_ep->req_list.next)
1192 musb_ep_restart(musb, request);
1193
1194cleanup:
1195 spin_unlock_irqrestore(&musb->lock, lockflags);
1196 return status;
1197}
1198
1199static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
1200{
1201 struct musb_ep *musb_ep = to_musb_ep(ep);
1202 struct usb_request *r;
1203 unsigned long flags;
1204 int status = 0;
1205 struct musb *musb = musb_ep->musb;
1206
1207 if (!ep || !request || to_musb_request(request)->ep != musb_ep)
1208 return -EINVAL;
1209
1210 spin_lock_irqsave(&musb->lock, flags);
1211
1212 list_for_each_entry(r, &musb_ep->req_list, list) {
1213 if (r == request)
1214 break;
1215 }
1216 if (r != request) {
1217 DBG(3, "request %p not queued to %s\n", request, ep->name);
1218 status = -EINVAL;
1219 goto done;
1220 }
1221
1222 /* if the hardware doesn't have the request, easy ... */
1223 if (musb_ep->req_list.next != &request->list || musb_ep->busy)
1224 musb_g_giveback(musb_ep, request, -ECONNRESET);
1225
1226 /* ... else abort the dma transfer ... */
1227 else if (is_dma_capable() && musb_ep->dma) {
1228 struct dma_controller *c = musb->dma_controller;
1229
1230 musb_ep_select(musb->mregs, musb_ep->current_epnum);
1231 if (c->channel_abort)
1232 status = c->channel_abort(musb_ep->dma);
1233 else
1234 status = -EBUSY;
1235 if (status == 0)
1236 musb_g_giveback(musb_ep, request, -ECONNRESET);
1237 } else {
1238 /* NOTE: by sticking to easily tested hardware/driver states,
1239 * we leave counting of in-flight packets imprecise.
1240 */
1241 musb_g_giveback(musb_ep, request, -ECONNRESET);
1242 }
1243
1244done:
1245 spin_unlock_irqrestore(&musb->lock, flags);
1246 return status;
1247}
1248
1249/*
1250 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1251 * data but will queue requests.
1252 *
1253 * exported to ep0 code
1254 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001255static int musb_gadget_set_halt(struct usb_ep *ep, int value)
Felipe Balbi550a7372008-07-24 12:27:36 +03001256{
1257 struct musb_ep *musb_ep = to_musb_ep(ep);
1258 u8 epnum = musb_ep->current_epnum;
1259 struct musb *musb = musb_ep->musb;
1260 void __iomem *epio = musb->endpoints[epnum].regs;
1261 void __iomem *mbase;
1262 unsigned long flags;
1263 u16 csr;
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001264 struct musb_request *request;
Felipe Balbi550a7372008-07-24 12:27:36 +03001265 int status = 0;
1266
1267 if (!ep)
1268 return -EINVAL;
1269 mbase = musb->mregs;
1270
1271 spin_lock_irqsave(&musb->lock, flags);
1272
1273 if ((USB_ENDPOINT_XFER_ISOC == musb_ep->type)) {
1274 status = -EINVAL;
1275 goto done;
1276 }
1277
1278 musb_ep_select(mbase, epnum);
1279
Felipe Balbi550a7372008-07-24 12:27:36 +03001280 request = to_musb_request(next_request(musb_ep));
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001281 if (value) {
1282 if (request) {
1283 DBG(3, "request in progress, cannot halt %s\n",
1284 ep->name);
1285 status = -EAGAIN;
1286 goto done;
Felipe Balbi550a7372008-07-24 12:27:36 +03001287 }
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001288 /* Cannot portably stall with non-empty FIFO */
1289 if (musb_ep->is_in) {
1290 csr = musb_readw(epio, MUSB_TXCSR);
1291 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1292 DBG(3, "FIFO busy, cannot halt %s\n", ep->name);
1293 status = -EAGAIN;
1294 goto done;
1295 }
1296 }
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001297 } else
1298 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001299
1300 /* set/clear the stall and toggle bits */
1301 DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear");
1302 if (musb_ep->is_in) {
1303 csr = musb_readw(epio, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +03001304 csr |= MUSB_TXCSR_P_WZC_BITS
1305 | MUSB_TXCSR_CLRDATATOG;
1306 if (value)
1307 csr |= MUSB_TXCSR_P_SENDSTALL;
1308 else
1309 csr &= ~(MUSB_TXCSR_P_SENDSTALL
1310 | MUSB_TXCSR_P_SENTSTALL);
1311 csr &= ~MUSB_TXCSR_TXPKTRDY;
1312 musb_writew(epio, MUSB_TXCSR, csr);
1313 } else {
1314 csr = musb_readw(epio, MUSB_RXCSR);
1315 csr |= MUSB_RXCSR_P_WZC_BITS
1316 | MUSB_RXCSR_FLUSHFIFO
1317 | MUSB_RXCSR_CLRDATATOG;
1318 if (value)
1319 csr |= MUSB_RXCSR_P_SENDSTALL;
1320 else
1321 csr &= ~(MUSB_RXCSR_P_SENDSTALL
1322 | MUSB_RXCSR_P_SENTSTALL);
1323 musb_writew(epio, MUSB_RXCSR, csr);
1324 }
1325
Felipe Balbi550a7372008-07-24 12:27:36 +03001326 /* maybe start the first request in the queue */
1327 if (!musb_ep->busy && !value && request) {
1328 DBG(3, "restarting the request\n");
1329 musb_ep_restart(musb, request);
1330 }
1331
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001332done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001333 spin_unlock_irqrestore(&musb->lock, flags);
1334 return status;
1335}
1336
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001337/*
1338 * Sets the halt feature with the clear requests ignored
1339 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001340static int musb_gadget_set_wedge(struct usb_ep *ep)
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001341{
1342 struct musb_ep *musb_ep = to_musb_ep(ep);
1343
1344 if (!ep)
1345 return -EINVAL;
1346
1347 musb_ep->wedged = 1;
1348
1349 return usb_ep_set_halt(ep);
1350}
1351
Felipe Balbi550a7372008-07-24 12:27:36 +03001352static int musb_gadget_fifo_status(struct usb_ep *ep)
1353{
1354 struct musb_ep *musb_ep = to_musb_ep(ep);
1355 void __iomem *epio = musb_ep->hw_ep->regs;
1356 int retval = -EINVAL;
1357
1358 if (musb_ep->desc && !musb_ep->is_in) {
1359 struct musb *musb = musb_ep->musb;
1360 int epnum = musb_ep->current_epnum;
1361 void __iomem *mbase = musb->mregs;
1362 unsigned long flags;
1363
1364 spin_lock_irqsave(&musb->lock, flags);
1365
1366 musb_ep_select(mbase, epnum);
1367 /* FIXME return zero unless RXPKTRDY is set */
1368 retval = musb_readw(epio, MUSB_RXCOUNT);
1369
1370 spin_unlock_irqrestore(&musb->lock, flags);
1371 }
1372 return retval;
1373}
1374
1375static void musb_gadget_fifo_flush(struct usb_ep *ep)
1376{
1377 struct musb_ep *musb_ep = to_musb_ep(ep);
1378 struct musb *musb = musb_ep->musb;
1379 u8 epnum = musb_ep->current_epnum;
1380 void __iomem *epio = musb->endpoints[epnum].regs;
1381 void __iomem *mbase;
1382 unsigned long flags;
1383 u16 csr, int_txe;
1384
1385 mbase = musb->mregs;
1386
1387 spin_lock_irqsave(&musb->lock, flags);
1388 musb_ep_select(mbase, (u8) epnum);
1389
1390 /* disable interrupts */
1391 int_txe = musb_readw(mbase, MUSB_INTRTXE);
1392 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
1393
1394 if (musb_ep->is_in) {
1395 csr = musb_readw(epio, MUSB_TXCSR);
1396 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1397 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS;
1398 musb_writew(epio, MUSB_TXCSR, csr);
1399 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1400 musb_writew(epio, MUSB_TXCSR, csr);
1401 }
1402 } else {
1403 csr = musb_readw(epio, MUSB_RXCSR);
1404 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS;
1405 musb_writew(epio, MUSB_RXCSR, csr);
1406 musb_writew(epio, MUSB_RXCSR, csr);
1407 }
1408
1409 /* re-enable interrupt */
1410 musb_writew(mbase, MUSB_INTRTXE, int_txe);
1411 spin_unlock_irqrestore(&musb->lock, flags);
1412}
1413
1414static const struct usb_ep_ops musb_ep_ops = {
1415 .enable = musb_gadget_enable,
1416 .disable = musb_gadget_disable,
1417 .alloc_request = musb_alloc_request,
1418 .free_request = musb_free_request,
1419 .queue = musb_gadget_queue,
1420 .dequeue = musb_gadget_dequeue,
1421 .set_halt = musb_gadget_set_halt,
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001422 .set_wedge = musb_gadget_set_wedge,
Felipe Balbi550a7372008-07-24 12:27:36 +03001423 .fifo_status = musb_gadget_fifo_status,
1424 .fifo_flush = musb_gadget_fifo_flush
1425};
1426
1427/* ----------------------------------------------------------------------- */
1428
1429static int musb_gadget_get_frame(struct usb_gadget *gadget)
1430{
1431 struct musb *musb = gadget_to_musb(gadget);
1432
1433 return (int)musb_readw(musb->mregs, MUSB_FRAME);
1434}
1435
1436static int musb_gadget_wakeup(struct usb_gadget *gadget)
1437{
1438 struct musb *musb = gadget_to_musb(gadget);
1439 void __iomem *mregs = musb->mregs;
1440 unsigned long flags;
1441 int status = -EINVAL;
1442 u8 power, devctl;
1443 int retries;
1444
1445 spin_lock_irqsave(&musb->lock, flags);
1446
David Brownell84e250f2009-03-31 12:30:04 -07001447 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001448 case OTG_STATE_B_PERIPHERAL:
1449 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1450 * that's part of the standard usb 1.1 state machine, and
1451 * doesn't affect OTG transitions.
1452 */
1453 if (musb->may_wakeup && musb->is_suspended)
1454 break;
1455 goto done;
1456 case OTG_STATE_B_IDLE:
1457 /* Start SRP ... OTG not required. */
1458 devctl = musb_readb(mregs, MUSB_DEVCTL);
1459 DBG(2, "Sending SRP: devctl: %02x\n", devctl);
1460 devctl |= MUSB_DEVCTL_SESSION;
1461 musb_writeb(mregs, MUSB_DEVCTL, devctl);
1462 devctl = musb_readb(mregs, MUSB_DEVCTL);
1463 retries = 100;
1464 while (!(devctl & MUSB_DEVCTL_SESSION)) {
1465 devctl = musb_readb(mregs, MUSB_DEVCTL);
1466 if (retries-- < 1)
1467 break;
1468 }
1469 retries = 10000;
1470 while (devctl & MUSB_DEVCTL_SESSION) {
1471 devctl = musb_readb(mregs, MUSB_DEVCTL);
1472 if (retries-- < 1)
1473 break;
1474 }
1475
1476 /* Block idling for at least 1s */
1477 musb_platform_try_idle(musb,
1478 jiffies + msecs_to_jiffies(1 * HZ));
1479
1480 status = 0;
1481 goto done;
1482 default:
1483 DBG(2, "Unhandled wake: %s\n", otg_state_string(musb));
1484 goto done;
1485 }
1486
1487 status = 0;
1488
1489 power = musb_readb(mregs, MUSB_POWER);
1490 power |= MUSB_POWER_RESUME;
1491 musb_writeb(mregs, MUSB_POWER, power);
1492 DBG(2, "issue wakeup\n");
1493
1494 /* FIXME do this next chunk in a timer callback, no udelay */
1495 mdelay(2);
1496
1497 power = musb_readb(mregs, MUSB_POWER);
1498 power &= ~MUSB_POWER_RESUME;
1499 musb_writeb(mregs, MUSB_POWER, power);
1500done:
1501 spin_unlock_irqrestore(&musb->lock, flags);
1502 return status;
1503}
1504
1505static int
1506musb_gadget_set_self_powered(struct usb_gadget *gadget, int is_selfpowered)
1507{
1508 struct musb *musb = gadget_to_musb(gadget);
1509
1510 musb->is_self_powered = !!is_selfpowered;
1511 return 0;
1512}
1513
1514static void musb_pullup(struct musb *musb, int is_on)
1515{
1516 u8 power;
1517
1518 power = musb_readb(musb->mregs, MUSB_POWER);
1519 if (is_on)
1520 power |= MUSB_POWER_SOFTCONN;
1521 else
1522 power &= ~MUSB_POWER_SOFTCONN;
1523
1524 /* FIXME if on, HdrcStart; if off, HdrcStop */
1525
1526 DBG(3, "gadget %s D+ pullup %s\n",
1527 musb->gadget_driver->function, is_on ? "on" : "off");
1528 musb_writeb(musb->mregs, MUSB_POWER, power);
1529}
1530
1531#if 0
1532static int musb_gadget_vbus_session(struct usb_gadget *gadget, int is_active)
1533{
1534 DBG(2, "<= %s =>\n", __func__);
1535
1536 /*
1537 * FIXME iff driver's softconnect flag is set (as it is during probe,
1538 * though that can clear it), just musb_pullup().
1539 */
1540
1541 return -EINVAL;
1542}
1543#endif
1544
1545static int musb_gadget_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1546{
1547 struct musb *musb = gadget_to_musb(gadget);
1548
David Brownell84e250f2009-03-31 12:30:04 -07001549 if (!musb->xceiv->set_power)
Felipe Balbi550a7372008-07-24 12:27:36 +03001550 return -EOPNOTSUPP;
David Brownell84e250f2009-03-31 12:30:04 -07001551 return otg_set_power(musb->xceiv, mA);
Felipe Balbi550a7372008-07-24 12:27:36 +03001552}
1553
1554static int musb_gadget_pullup(struct usb_gadget *gadget, int is_on)
1555{
1556 struct musb *musb = gadget_to_musb(gadget);
1557 unsigned long flags;
1558
1559 is_on = !!is_on;
1560
1561 /* NOTE: this assumes we are sensing vbus; we'd rather
1562 * not pullup unless the B-session is active.
1563 */
1564 spin_lock_irqsave(&musb->lock, flags);
1565 if (is_on != musb->softconnect) {
1566 musb->softconnect = is_on;
1567 musb_pullup(musb, is_on);
1568 }
1569 spin_unlock_irqrestore(&musb->lock, flags);
1570 return 0;
1571}
1572
1573static const struct usb_gadget_ops musb_gadget_operations = {
1574 .get_frame = musb_gadget_get_frame,
1575 .wakeup = musb_gadget_wakeup,
1576 .set_selfpowered = musb_gadget_set_self_powered,
1577 /* .vbus_session = musb_gadget_vbus_session, */
1578 .vbus_draw = musb_gadget_vbus_draw,
1579 .pullup = musb_gadget_pullup,
1580};
1581
1582/* ----------------------------------------------------------------------- */
1583
1584/* Registration */
1585
1586/* Only this registration code "knows" the rule (from USB standards)
1587 * about there being only one external upstream port. It assumes
1588 * all peripheral ports are external...
1589 */
1590static struct musb *the_gadget;
1591
1592static void musb_gadget_release(struct device *dev)
1593{
1594 /* kref_put(WHAT) */
1595 dev_dbg(dev, "%s\n", __func__);
1596}
1597
1598
1599static void __init
1600init_peripheral_ep(struct musb *musb, struct musb_ep *ep, u8 epnum, int is_in)
1601{
1602 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1603
1604 memset(ep, 0, sizeof *ep);
1605
1606 ep->current_epnum = epnum;
1607 ep->musb = musb;
1608 ep->hw_ep = hw_ep;
1609 ep->is_in = is_in;
1610
1611 INIT_LIST_HEAD(&ep->req_list);
1612
1613 sprintf(ep->name, "ep%d%s", epnum,
1614 (!epnum || hw_ep->is_shared_fifo) ? "" : (
1615 is_in ? "in" : "out"));
1616 ep->end_point.name = ep->name;
1617 INIT_LIST_HEAD(&ep->end_point.ep_list);
1618 if (!epnum) {
1619 ep->end_point.maxpacket = 64;
1620 ep->end_point.ops = &musb_g_ep0_ops;
1621 musb->g.ep0 = &ep->end_point;
1622 } else {
1623 if (is_in)
1624 ep->end_point.maxpacket = hw_ep->max_packet_sz_tx;
1625 else
1626 ep->end_point.maxpacket = hw_ep->max_packet_sz_rx;
1627 ep->end_point.ops = &musb_ep_ops;
1628 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list);
1629 }
1630}
1631
1632/*
1633 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1634 * to the rest of the driver state.
1635 */
1636static inline void __init musb_g_init_endpoints(struct musb *musb)
1637{
1638 u8 epnum;
1639 struct musb_hw_ep *hw_ep;
1640 unsigned count = 0;
1641
1642 /* intialize endpoint list just once */
1643 INIT_LIST_HEAD(&(musb->g.ep_list));
1644
1645 for (epnum = 0, hw_ep = musb->endpoints;
1646 epnum < musb->nr_endpoints;
1647 epnum++, hw_ep++) {
1648 if (hw_ep->is_shared_fifo /* || !epnum */) {
1649 init_peripheral_ep(musb, &hw_ep->ep_in, epnum, 0);
1650 count++;
1651 } else {
1652 if (hw_ep->max_packet_sz_tx) {
1653 init_peripheral_ep(musb, &hw_ep->ep_in,
1654 epnum, 1);
1655 count++;
1656 }
1657 if (hw_ep->max_packet_sz_rx) {
1658 init_peripheral_ep(musb, &hw_ep->ep_out,
1659 epnum, 0);
1660 count++;
1661 }
1662 }
1663 }
1664}
1665
1666/* called once during driver setup to initialize and link into
1667 * the driver model; memory is zeroed.
1668 */
1669int __init musb_gadget_setup(struct musb *musb)
1670{
1671 int status;
1672
1673 /* REVISIT minor race: if (erroneously) setting up two
1674 * musb peripherals at the same time, only the bus lock
1675 * is probably held.
1676 */
1677 if (the_gadget)
1678 return -EBUSY;
1679 the_gadget = musb;
1680
1681 musb->g.ops = &musb_gadget_operations;
1682 musb->g.is_dualspeed = 1;
1683 musb->g.speed = USB_SPEED_UNKNOWN;
1684
1685 /* this "gadget" abstracts/virtualizes the controller */
Kay Sievers427c4f32008-11-07 01:52:53 +01001686 dev_set_name(&musb->g.dev, "gadget");
Felipe Balbi550a7372008-07-24 12:27:36 +03001687 musb->g.dev.parent = musb->controller;
1688 musb->g.dev.dma_mask = musb->controller->dma_mask;
1689 musb->g.dev.release = musb_gadget_release;
1690 musb->g.name = musb_driver_name;
1691
1692 if (is_otg_enabled(musb))
1693 musb->g.is_otg = 1;
1694
1695 musb_g_init_endpoints(musb);
1696
1697 musb->is_active = 0;
1698 musb_platform_try_idle(musb, 0);
1699
1700 status = device_register(&musb->g.dev);
Rahul Ruikare2c34042010-10-02 01:35:48 -05001701 if (status != 0) {
1702 put_device(&musb->g.dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001703 the_gadget = NULL;
Rahul Ruikare2c34042010-10-02 01:35:48 -05001704 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001705 return status;
1706}
1707
1708void musb_gadget_cleanup(struct musb *musb)
1709{
1710 if (musb != the_gadget)
1711 return;
1712
1713 device_unregister(&musb->g.dev);
1714 the_gadget = NULL;
1715}
1716
1717/*
1718 * Register the gadget driver. Used by gadget drivers when
1719 * registering themselves with the controller.
1720 *
1721 * -EINVAL something went wrong (not driver)
1722 * -EBUSY another gadget is already using the controller
1723 * -ENOMEM no memeory to perform the operation
1724 *
1725 * @param driver the gadget driver
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001726 * @param bind the driver's bind function
Felipe Balbi550a7372008-07-24 12:27:36 +03001727 * @return <0 if error, 0 if everything is fine
1728 */
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001729int usb_gadget_probe_driver(struct usb_gadget_driver *driver,
1730 int (*bind)(struct usb_gadget *))
Felipe Balbi550a7372008-07-24 12:27:36 +03001731{
1732 int retval;
1733 unsigned long flags;
1734 struct musb *musb = the_gadget;
1735
1736 if (!driver
1737 || driver->speed != USB_SPEED_HIGH
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001738 || !bind || !driver->setup)
Felipe Balbi550a7372008-07-24 12:27:36 +03001739 return -EINVAL;
1740
1741 /* driver must be initialized to support peripheral mode */
Roel Kluin08e6c972010-02-02 14:47:17 -08001742 if (!musb) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001743 DBG(1, "%s, no dev??\n", __func__);
1744 return -ENODEV;
1745 }
1746
1747 DBG(3, "registering driver %s\n", driver->function);
1748 spin_lock_irqsave(&musb->lock, flags);
1749
1750 if (musb->gadget_driver) {
1751 DBG(1, "%s is already bound to %s\n",
1752 musb_driver_name,
1753 musb->gadget_driver->driver.name);
1754 retval = -EBUSY;
1755 } else {
1756 musb->gadget_driver = driver;
1757 musb->g.dev.driver = &driver->driver;
1758 driver->driver.bus = NULL;
1759 musb->softconnect = 1;
1760 retval = 0;
1761 }
1762
1763 spin_unlock_irqrestore(&musb->lock, flags);
1764
Felipe Balbi550a7372008-07-24 12:27:36 +03001765 if (retval == 0) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001766 retval = bind(&musb->g);
Felipe Balbif362a472008-08-04 13:53:52 +03001767 if (retval != 0) {
1768 DBG(3, "bind to driver %s failed --> %d\n",
1769 driver->driver.name, retval);
1770 musb->gadget_driver = NULL;
1771 musb->g.dev.driver = NULL;
1772 }
1773
Felipe Balbi550a7372008-07-24 12:27:36 +03001774 spin_lock_irqsave(&musb->lock, flags);
1775
David Brownell84e250f2009-03-31 12:30:04 -07001776 otg_set_peripheral(musb->xceiv, &musb->g);
Arnaud Mandyd4c433f2009-12-15 13:29:58 +02001777 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001778 musb->is_active = 1;
1779
1780 /* FIXME this ignores the softconnect flag. Drivers are
1781 * allowed hold the peripheral inactive until for example
1782 * userspace hooks up printer hardware or DSP codecs, so
1783 * hosts only see fully functional devices.
1784 */
1785
1786 if (!is_otg_enabled(musb))
1787 musb_start(musb);
1788
David Brownell84e250f2009-03-31 12:30:04 -07001789 otg_set_peripheral(musb->xceiv, &musb->g);
1790
Felipe Balbi550a7372008-07-24 12:27:36 +03001791 spin_unlock_irqrestore(&musb->lock, flags);
1792
1793 if (is_otg_enabled(musb)) {
1794 DBG(3, "OTG startup...\n");
1795
1796 /* REVISIT: funcall to other code, which also
1797 * handles power budgeting ... this way also
1798 * ensures HdrcStart is indirectly called.
1799 */
1800 retval = usb_add_hcd(musb_to_hcd(musb), -1, 0);
1801 if (retval < 0) {
1802 DBG(1, "add_hcd failed, %d\n", retval);
1803 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -07001804 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001805 musb->gadget_driver = NULL;
1806 musb->g.dev.driver = NULL;
1807 spin_unlock_irqrestore(&musb->lock, flags);
1808 }
1809 }
1810 }
1811
1812 return retval;
1813}
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001814EXPORT_SYMBOL(usb_gadget_probe_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03001815
1816static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
1817{
1818 int i;
1819 struct musb_hw_ep *hw_ep;
1820
1821 /* don't disconnect if it's not connected */
1822 if (musb->g.speed == USB_SPEED_UNKNOWN)
1823 driver = NULL;
1824 else
1825 musb->g.speed = USB_SPEED_UNKNOWN;
1826
1827 /* deactivate the hardware */
1828 if (musb->softconnect) {
1829 musb->softconnect = 0;
1830 musb_pullup(musb, 0);
1831 }
1832 musb_stop(musb);
1833
1834 /* killing any outstanding requests will quiesce the driver;
1835 * then report disconnect
1836 */
1837 if (driver) {
1838 for (i = 0, hw_ep = musb->endpoints;
1839 i < musb->nr_endpoints;
1840 i++, hw_ep++) {
1841 musb_ep_select(musb->mregs, i);
1842 if (hw_ep->is_shared_fifo /* || !epnum */) {
1843 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1844 } else {
1845 if (hw_ep->max_packet_sz_tx)
1846 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1847 if (hw_ep->max_packet_sz_rx)
1848 nuke(&hw_ep->ep_out, -ESHUTDOWN);
1849 }
1850 }
1851
1852 spin_unlock(&musb->lock);
1853 driver->disconnect(&musb->g);
1854 spin_lock(&musb->lock);
1855 }
1856}
1857
1858/*
1859 * Unregister the gadget driver. Used by gadget drivers when
1860 * unregistering themselves from the controller.
1861 *
1862 * @param driver the gadget driver to unregister
1863 */
1864int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1865{
1866 unsigned long flags;
1867 int retval = 0;
1868 struct musb *musb = the_gadget;
1869
1870 if (!driver || !driver->unbind || !musb)
1871 return -EINVAL;
1872
1873 /* REVISIT always use otg_set_peripheral() here too;
1874 * this needs to shut down the OTG engine.
1875 */
1876
1877 spin_lock_irqsave(&musb->lock, flags);
1878
1879#ifdef CONFIG_USB_MUSB_OTG
1880 musb_hnp_stop(musb);
1881#endif
1882
1883 if (musb->gadget_driver == driver) {
1884
1885 (void) musb_gadget_vbus_draw(&musb->g, 0);
1886
David Brownell84e250f2009-03-31 12:30:04 -07001887 musb->xceiv->state = OTG_STATE_UNDEFINED;
Felipe Balbi550a7372008-07-24 12:27:36 +03001888 stop_activity(musb, driver);
David Brownell84e250f2009-03-31 12:30:04 -07001889 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001890
1891 DBG(3, "unregistering driver %s\n", driver->function);
1892 spin_unlock_irqrestore(&musb->lock, flags);
1893 driver->unbind(&musb->g);
1894 spin_lock_irqsave(&musb->lock, flags);
1895
1896 musb->gadget_driver = NULL;
1897 musb->g.dev.driver = NULL;
1898
1899 musb->is_active = 0;
1900 musb_platform_try_idle(musb, 0);
1901 } else
1902 retval = -EINVAL;
1903 spin_unlock_irqrestore(&musb->lock, flags);
1904
1905 if (is_otg_enabled(musb) && retval == 0) {
1906 usb_remove_hcd(musb_to_hcd(musb));
1907 /* FIXME we need to be able to register another
1908 * gadget driver here and have everything work;
1909 * that currently misbehaves.
1910 */
1911 }
1912
1913 return retval;
1914}
1915EXPORT_SYMBOL(usb_gadget_unregister_driver);
1916
1917
1918/* ----------------------------------------------------------------------- */
1919
1920/* lifecycle operations called through plat_uds.c */
1921
1922void musb_g_resume(struct musb *musb)
1923{
1924 musb->is_suspended = 0;
David Brownell84e250f2009-03-31 12:30:04 -07001925 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001926 case OTG_STATE_B_IDLE:
1927 break;
1928 case OTG_STATE_B_WAIT_ACON:
1929 case OTG_STATE_B_PERIPHERAL:
1930 musb->is_active = 1;
1931 if (musb->gadget_driver && musb->gadget_driver->resume) {
1932 spin_unlock(&musb->lock);
1933 musb->gadget_driver->resume(&musb->g);
1934 spin_lock(&musb->lock);
1935 }
1936 break;
1937 default:
1938 WARNING("unhandled RESUME transition (%s)\n",
1939 otg_state_string(musb));
1940 }
1941}
1942
1943/* called when SOF packets stop for 3+ msec */
1944void musb_g_suspend(struct musb *musb)
1945{
1946 u8 devctl;
1947
1948 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1949 DBG(3, "devctl %02x\n", devctl);
1950
David Brownell84e250f2009-03-31 12:30:04 -07001951 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001952 case OTG_STATE_B_IDLE:
1953 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
David Brownell84e250f2009-03-31 12:30:04 -07001954 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001955 break;
1956 case OTG_STATE_B_PERIPHERAL:
1957 musb->is_suspended = 1;
1958 if (musb->gadget_driver && musb->gadget_driver->suspend) {
1959 spin_unlock(&musb->lock);
1960 musb->gadget_driver->suspend(&musb->g);
1961 spin_lock(&musb->lock);
1962 }
1963 break;
1964 default:
1965 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
1966 * A_PERIPHERAL may need care too
1967 */
1968 WARNING("unhandled SUSPEND transition (%s)\n",
1969 otg_state_string(musb));
1970 }
1971}
1972
1973/* Called during SRP */
1974void musb_g_wakeup(struct musb *musb)
1975{
1976 musb_gadget_wakeup(&musb->g);
1977}
1978
1979/* called when VBUS drops below session threshold, and in other cases */
1980void musb_g_disconnect(struct musb *musb)
1981{
1982 void __iomem *mregs = musb->mregs;
1983 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
1984
1985 DBG(3, "devctl %02x\n", devctl);
1986
1987 /* clear HR */
1988 musb_writeb(mregs, MUSB_DEVCTL, devctl & MUSB_DEVCTL_SESSION);
1989
1990 /* don't draw vbus until new b-default session */
1991 (void) musb_gadget_vbus_draw(&musb->g, 0);
1992
1993 musb->g.speed = USB_SPEED_UNKNOWN;
1994 if (musb->gadget_driver && musb->gadget_driver->disconnect) {
1995 spin_unlock(&musb->lock);
1996 musb->gadget_driver->disconnect(&musb->g);
1997 spin_lock(&musb->lock);
1998 }
1999
David Brownell84e250f2009-03-31 12:30:04 -07002000 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002001 default:
2002#ifdef CONFIG_USB_MUSB_OTG
2003 DBG(2, "Unhandled disconnect %s, setting a_idle\n",
2004 otg_state_string(musb));
David Brownell84e250f2009-03-31 12:30:04 -07002005 musb->xceiv->state = OTG_STATE_A_IDLE;
David Brownellab983f2a2009-03-31 12:35:09 -07002006 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002007 break;
2008 case OTG_STATE_A_PERIPHERAL:
David Brownell1de00da2009-04-02 10:16:11 -07002009 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
David Brownellab983f2a2009-03-31 12:35:09 -07002010 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002011 break;
2012 case OTG_STATE_B_WAIT_ACON:
2013 case OTG_STATE_B_HOST:
2014#endif
2015 case OTG_STATE_B_PERIPHERAL:
2016 case OTG_STATE_B_IDLE:
David Brownell84e250f2009-03-31 12:30:04 -07002017 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002018 break;
2019 case OTG_STATE_B_SRP_INIT:
2020 break;
2021 }
2022
2023 musb->is_active = 0;
2024}
2025
2026void musb_g_reset(struct musb *musb)
2027__releases(musb->lock)
2028__acquires(musb->lock)
2029{
2030 void __iomem *mbase = musb->mregs;
2031 u8 devctl = musb_readb(mbase, MUSB_DEVCTL);
2032 u8 power;
2033
2034 DBG(3, "<== %s addr=%x driver '%s'\n",
2035 (devctl & MUSB_DEVCTL_BDEVICE)
2036 ? "B-Device" : "A-Device",
2037 musb_readb(mbase, MUSB_FADDR),
2038 musb->gadget_driver
2039 ? musb->gadget_driver->driver.name
2040 : NULL
2041 );
2042
2043 /* report disconnect, if we didn't already (flushing EP state) */
2044 if (musb->g.speed != USB_SPEED_UNKNOWN)
2045 musb_g_disconnect(musb);
2046
2047 /* clear HR */
2048 else if (devctl & MUSB_DEVCTL_HR)
2049 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
2050
2051
2052 /* what speed did we negotiate? */
2053 power = musb_readb(mbase, MUSB_POWER);
2054 musb->g.speed = (power & MUSB_POWER_HSMODE)
2055 ? USB_SPEED_HIGH : USB_SPEED_FULL;
2056
2057 /* start in USB_STATE_DEFAULT */
2058 musb->is_active = 1;
2059 musb->is_suspended = 0;
2060 MUSB_DEV_MODE(musb);
2061 musb->address = 0;
2062 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
2063
2064 musb->may_wakeup = 0;
2065 musb->g.b_hnp_enable = 0;
2066 musb->g.a_alt_hnp_support = 0;
2067 musb->g.a_hnp_support = 0;
2068
2069 /* Normal reset, as B-Device;
2070 * or else after HNP, as A-Device
2071 */
2072 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -07002073 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002074 musb->g.is_a_peripheral = 0;
2075 } else if (is_otg_enabled(musb)) {
David Brownell84e250f2009-03-31 12:30:04 -07002076 musb->xceiv->state = OTG_STATE_A_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002077 musb->g.is_a_peripheral = 1;
2078 } else
2079 WARN_ON(1);
2080
2081 /* start with default limits on VBUS power draw */
2082 (void) musb_gadget_vbus_draw(&musb->g,
2083 is_otg_enabled(musb) ? 8 : 100);
2084}