blob: 23dad4c8785d604bc8db54d8f0c113485c939e53 [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
Hema Kalliguddi92d27112010-11-15 04:24:01 -060095/* Maps the buffer to dma */
96
97static inline void map_dma_buffer(struct musb_request *request,
98 struct musb *musb)
99{
100 if (request->request.dma == DMA_ADDR_INVALID) {
101 request->request.dma = dma_map_single(
102 musb->controller,
103 request->request.buf,
104 request->request.length,
105 request->tx
106 ? DMA_TO_DEVICE
107 : DMA_FROM_DEVICE);
108 request->mapped = 1;
109 } else {
110 dma_sync_single_for_device(musb->controller,
111 request->request.dma,
112 request->request.length,
113 request->tx
114 ? DMA_TO_DEVICE
115 : DMA_FROM_DEVICE);
116 request->mapped = 0;
117 }
118}
119
120/* Unmap the buffer from dma and maps it back to cpu */
121static inline void unmap_dma_buffer(struct musb_request *request,
122 struct musb *musb)
123{
124 if (request->request.dma == DMA_ADDR_INVALID) {
125 DBG(20, "not unmapping a never mapped buffer\n");
126 return;
127 }
128 if (request->mapped) {
129 dma_unmap_single(musb->controller,
130 request->request.dma,
131 request->request.length,
132 request->tx
133 ? DMA_TO_DEVICE
134 : DMA_FROM_DEVICE);
135 request->request.dma = DMA_ADDR_INVALID;
136 request->mapped = 0;
137 } else {
138 dma_sync_single_for_cpu(musb->controller,
139 request->request.dma,
140 request->request.length,
141 request->tx
142 ? DMA_TO_DEVICE
143 : DMA_FROM_DEVICE);
144
145 }
146}
147
Felipe Balbi550a7372008-07-24 12:27:36 +0300148/*
149 * Immediately complete a request.
150 *
151 * @param request the request to complete
152 * @param status the status to complete the request with
153 * Context: controller locked, IRQs blocked.
154 */
155void musb_g_giveback(
156 struct musb_ep *ep,
157 struct usb_request *request,
158 int status)
159__releases(ep->musb->lock)
160__acquires(ep->musb->lock)
161{
162 struct musb_request *req;
163 struct musb *musb;
164 int busy = ep->busy;
165
166 req = to_musb_request(request);
167
168 list_del(&request->list);
169 if (req->request.status == -EINPROGRESS)
170 req->request.status = status;
171 musb = req->musb;
172
173 ep->busy = 1;
174 spin_unlock(&musb->lock);
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600175 if (is_dma_capable() && ep->dma)
176 unmap_dma_buffer(req, musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300177 if (request->status == 0)
178 DBG(5, "%s done request %p, %d/%d\n",
179 ep->end_point.name, request,
180 req->request.actual, req->request.length);
181 else
182 DBG(2, "%s request %p, %d/%d fault %d\n",
183 ep->end_point.name, request,
184 req->request.actual, req->request.length,
185 request->status);
186 req->request.complete(&req->ep->end_point, &req->request);
187 spin_lock(&musb->lock);
188 ep->busy = busy;
189}
190
191/* ----------------------------------------------------------------------- */
192
193/*
194 * Abort requests queued to an endpoint using the status. Synchronous.
195 * caller locked controller and blocked irqs, and selected this ep.
196 */
197static void nuke(struct musb_ep *ep, const int status)
198{
199 struct musb_request *req = NULL;
200 void __iomem *epio = ep->musb->endpoints[ep->current_epnum].regs;
201
202 ep->busy = 1;
203
204 if (is_dma_capable() && ep->dma) {
205 struct dma_controller *c = ep->musb->dma_controller;
206 int value;
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700207
Felipe Balbi550a7372008-07-24 12:27:36 +0300208 if (ep->is_in) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700209 /*
210 * The programming guide says that we must not clear
211 * the DMAMODE bit before DMAENAB, so we only
212 * clear it in the second write...
213 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300214 musb_writew(epio, MUSB_TXCSR,
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700215 MUSB_TXCSR_DMAMODE | MUSB_TXCSR_FLUSHFIFO);
Felipe Balbi550a7372008-07-24 12:27:36 +0300216 musb_writew(epio, MUSB_TXCSR,
217 0 | MUSB_TXCSR_FLUSHFIFO);
218 } else {
219 musb_writew(epio, MUSB_RXCSR,
220 0 | MUSB_RXCSR_FLUSHFIFO);
221 musb_writew(epio, MUSB_RXCSR,
222 0 | MUSB_RXCSR_FLUSHFIFO);
223 }
224
225 value = c->channel_abort(ep->dma);
226 DBG(value ? 1 : 6, "%s: abort DMA --> %d\n", ep->name, value);
227 c->channel_release(ep->dma);
228 ep->dma = NULL;
229 }
230
231 while (!list_empty(&(ep->req_list))) {
232 req = container_of(ep->req_list.next, struct musb_request,
233 request.list);
234 musb_g_giveback(ep, &req->request, status);
235 }
236}
237
238/* ----------------------------------------------------------------------- */
239
240/* Data transfers - pure PIO, pure DMA, or mixed mode */
241
242/*
243 * This assumes the separate CPPI engine is responding to DMA requests
244 * from the usb core ... sequenced a bit differently from mentor dma.
245 */
246
247static inline int max_ep_writesize(struct musb *musb, struct musb_ep *ep)
248{
249 if (can_bulk_split(musb, ep->type))
250 return ep->hw_ep->max_packet_sz_tx;
251 else
252 return ep->packet_sz;
253}
254
255
256#ifdef CONFIG_USB_INVENTRA_DMA
257
258/* Peripheral tx (IN) using Mentor DMA works as follows:
259 Only mode 0 is used for transfers <= wPktSize,
260 mode 1 is used for larger transfers,
261
262 One of the following happens:
263 - Host sends IN token which causes an endpoint interrupt
264 -> TxAvail
265 -> if DMA is currently busy, exit.
266 -> if queue is non-empty, txstate().
267
268 - Request is queued by the gadget driver.
269 -> if queue was previously empty, txstate()
270
271 txstate()
272 -> start
273 /\ -> setup DMA
274 | (data is transferred to the FIFO, then sent out when
275 | IN token(s) are recd from Host.
276 | -> DMA interrupt on completion
277 | calls TxAvail.
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700278 | -> stop DMA, ~DMAENAB,
Felipe Balbi550a7372008-07-24 12:27:36 +0300279 | -> set TxPktRdy for last short pkt or zlp
280 | -> Complete Request
281 | -> Continue next request (call txstate)
282 |___________________________________|
283
284 * Non-Mentor DMA engines can of course work differently, such as by
285 * upleveling from irq-per-packet to irq-per-buffer.
286 */
287
288#endif
289
290/*
291 * An endpoint is transmitting data. This can be called either from
292 * the IRQ routine or from ep.queue() to kickstart a request on an
293 * endpoint.
294 *
295 * Context: controller locked, IRQs blocked, endpoint selected
296 */
297static void txstate(struct musb *musb, struct musb_request *req)
298{
299 u8 epnum = req->epnum;
300 struct musb_ep *musb_ep;
301 void __iomem *epio = musb->endpoints[epnum].regs;
302 struct usb_request *request;
303 u16 fifo_count = 0, csr;
304 int use_dma = 0;
305
306 musb_ep = req->ep;
307
308 /* we shouldn't get here while DMA is active ... but we do ... */
309 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
310 DBG(4, "dma pending...\n");
311 return;
312 }
313
314 /* read TXCSR before */
315 csr = musb_readw(epio, MUSB_TXCSR);
316
317 request = &req->request;
318 fifo_count = min(max_ep_writesize(musb, musb_ep),
319 (int)(request->length - request->actual));
320
321 if (csr & MUSB_TXCSR_TXPKTRDY) {
322 DBG(5, "%s old packet still ready , txcsr %03x\n",
323 musb_ep->end_point.name, csr);
324 return;
325 }
326
327 if (csr & MUSB_TXCSR_P_SENDSTALL) {
328 DBG(5, "%s stalling, txcsr %03x\n",
329 musb_ep->end_point.name, csr);
330 return;
331 }
332
333 DBG(4, "hw_ep%d, maxpacket %d, fifo count %d, txcsr %03x\n",
334 epnum, musb_ep->packet_sz, fifo_count,
335 csr);
336
337#ifndef CONFIG_MUSB_PIO_ONLY
338 if (is_dma_capable() && musb_ep->dma) {
339 struct dma_controller *c = musb->dma_controller;
Ming Lei66af83d2010-09-20 10:32:06 +0300340 size_t request_size;
341
342 /* setup DMA, then program endpoint CSR */
343 request_size = min_t(size_t, request->length - request->actual,
344 musb_ep->dma->max_len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300345
346 use_dma = (request->dma != DMA_ADDR_INVALID);
347
348 /* MUSB_TXCSR_P_ISO is still set correctly */
349
350#ifdef CONFIG_USB_INVENTRA_DMA
351 {
Anand Gadiyard1043a22009-04-02 12:07:08 -0700352 if (request_size < musb_ep->packet_sz)
Felipe Balbi550a7372008-07-24 12:27:36 +0300353 musb_ep->dma->desired_mode = 0;
354 else
355 musb_ep->dma->desired_mode = 1;
356
357 use_dma = use_dma && c->channel_program(
358 musb_ep->dma, musb_ep->packet_sz,
359 musb_ep->dma->desired_mode,
Cliff Cai796a83f2009-12-21 21:18:02 -0500360 request->dma + request->actual, request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300361 if (use_dma) {
362 if (musb_ep->dma->desired_mode == 0) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700363 /*
364 * We must not clear the DMAMODE bit
365 * before the DMAENAB bit -- and the
366 * latter doesn't always get cleared
367 * before we get here...
368 */
369 csr &= ~(MUSB_TXCSR_AUTOSET
370 | MUSB_TXCSR_DMAENAB);
371 musb_writew(epio, MUSB_TXCSR, csr
372 | MUSB_TXCSR_P_WZC_BITS);
373 csr &= ~MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300374 csr |= (MUSB_TXCSR_DMAENAB |
375 MUSB_TXCSR_MODE);
376 /* against programming guide */
Ming Leif11d8932010-09-24 13:44:04 +0300377 } else {
378 csr |= (MUSB_TXCSR_DMAENAB
Felipe Balbi550a7372008-07-24 12:27:36 +0300379 | MUSB_TXCSR_DMAMODE
380 | MUSB_TXCSR_MODE);
Ming Leif11d8932010-09-24 13:44:04 +0300381 if (!musb_ep->hb_mult)
382 csr |= MUSB_TXCSR_AUTOSET;
383 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300384 csr &= ~MUSB_TXCSR_P_UNDERRUN;
Ming Leif11d8932010-09-24 13:44:04 +0300385
Felipe Balbi550a7372008-07-24 12:27:36 +0300386 musb_writew(epio, MUSB_TXCSR, csr);
387 }
388 }
389
390#elif defined(CONFIG_USB_TI_CPPI_DMA)
391 /* program endpoint CSR first, then setup DMA */
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700392 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
Sergei Shtylyov37e3ee92009-03-27 12:53:32 -0700393 csr |= MUSB_TXCSR_DMAENAB | MUSB_TXCSR_DMAMODE |
394 MUSB_TXCSR_MODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300395 musb_writew(epio, MUSB_TXCSR,
396 (MUSB_TXCSR_P_WZC_BITS & ~MUSB_TXCSR_P_UNDERRUN)
397 | csr);
398
399 /* ensure writebuffer is empty */
400 csr = musb_readw(epio, MUSB_TXCSR);
401
402 /* NOTE host side sets DMAENAB later than this; both are
403 * OK since the transfer dma glue (between CPPI and Mentor
404 * fifos) just tells CPPI it could start. Data only moves
405 * to the USB TX fifo when both fifos are ready.
406 */
407
408 /* "mode" is irrelevant here; handle terminating ZLPs like
409 * PIO does, since the hardware RNDIS mode seems unreliable
410 * except for the last-packet-is-already-short case.
411 */
412 use_dma = use_dma && c->channel_program(
413 musb_ep->dma, musb_ep->packet_sz,
414 0,
Ming Lei66af83d2010-09-20 10:32:06 +0300415 request->dma + request->actual,
416 request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300417 if (!use_dma) {
418 c->channel_release(musb_ep->dma);
419 musb_ep->dma = NULL;
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700420 csr &= ~MUSB_TXCSR_DMAENAB;
421 musb_writew(epio, MUSB_TXCSR, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300422 /* invariant: prequest->buf is non-null */
423 }
424#elif defined(CONFIG_USB_TUSB_OMAP_DMA)
425 use_dma = use_dma && c->channel_program(
426 musb_ep->dma, musb_ep->packet_sz,
427 request->zero,
Ming Lei66af83d2010-09-20 10:32:06 +0300428 request->dma + request->actual,
429 request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300430#endif
431 }
432#endif
433
434 if (!use_dma) {
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600435 /*
436 * Unmap the dma buffer back to cpu if dma channel
437 * programming fails
438 */
439 if (is_dma_capable() && musb_ep->dma)
440 unmap_dma_buffer(req, musb);
441
Felipe Balbi550a7372008-07-24 12:27:36 +0300442 musb_write_fifo(musb_ep->hw_ep, fifo_count,
443 (u8 *) (request->buf + request->actual));
444 request->actual += fifo_count;
445 csr |= MUSB_TXCSR_TXPKTRDY;
446 csr &= ~MUSB_TXCSR_P_UNDERRUN;
447 musb_writew(epio, MUSB_TXCSR, csr);
448 }
449
450 /* host may already have the data when this message shows... */
451 DBG(3, "%s TX/IN %s len %d/%d, txcsr %04x, fifo %d/%d\n",
452 musb_ep->end_point.name, use_dma ? "dma" : "pio",
453 request->actual, request->length,
454 musb_readw(epio, MUSB_TXCSR),
455 fifo_count,
456 musb_readw(epio, MUSB_TXMAXP));
457}
458
459/*
460 * FIFO state update (e.g. data ready).
461 * Called from IRQ, with controller locked.
462 */
463void musb_g_tx(struct musb *musb, u8 epnum)
464{
465 u16 csr;
466 struct usb_request *request;
467 u8 __iomem *mbase = musb->mregs;
468 struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_in;
469 void __iomem *epio = musb->endpoints[epnum].regs;
470 struct dma_channel *dma;
471
472 musb_ep_select(mbase, epnum);
473 request = next_request(musb_ep);
474
475 csr = musb_readw(epio, MUSB_TXCSR);
476 DBG(4, "<== %s, txcsr %04x\n", musb_ep->end_point.name, csr);
477
478 dma = is_dma_capable() ? musb_ep->dma : NULL;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300479
480 /*
481 * REVISIT: for high bandwidth, MUSB_TXCSR_P_INCOMPTX
482 * probably rates reporting as a host error.
483 */
484 if (csr & MUSB_TXCSR_P_SENTSTALL) {
485 csr |= MUSB_TXCSR_P_WZC_BITS;
486 csr &= ~MUSB_TXCSR_P_SENTSTALL;
487 musb_writew(epio, MUSB_TXCSR, csr);
488 return;
489 }
490
491 if (csr & MUSB_TXCSR_P_UNDERRUN) {
492 /* We NAKed, no big deal... little reason to care. */
493 csr |= MUSB_TXCSR_P_WZC_BITS;
494 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
495 musb_writew(epio, MUSB_TXCSR, csr);
496 DBG(20, "underrun on ep%d, req %p\n", epnum, request);
497 }
498
499 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
500 /*
501 * SHOULD NOT HAPPEN... has with CPPI though, after
502 * changing SENDSTALL (and other cases); harmless?
Felipe Balbi550a7372008-07-24 12:27:36 +0300503 */
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300504 DBG(5, "%s dma still busy?\n", musb_ep->end_point.name);
505 return;
506 }
507
508 if (request) {
509 u8 is_dma = 0;
510
511 if (dma && (csr & MUSB_TXCSR_DMAENAB)) {
512 is_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300513 csr |= MUSB_TXCSR_P_WZC_BITS;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300514 csr &= ~(MUSB_TXCSR_DMAENAB | MUSB_TXCSR_P_UNDERRUN |
515 MUSB_TXCSR_TXPKTRDY);
Felipe Balbi550a7372008-07-24 12:27:36 +0300516 musb_writew(epio, MUSB_TXCSR, csr);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300517 /* Ensure writebuffer is empty. */
518 csr = musb_readw(epio, MUSB_TXCSR);
519 request->actual += musb_ep->dma->actual_len;
520 DBG(4, "TXCSR%d %04x, DMA off, len %zu, req %p\n",
521 epnum, csr, musb_ep->dma->actual_len, request);
Felipe Balbi550a7372008-07-24 12:27:36 +0300522 }
523
Ming Leie7379aa2010-09-24 13:44:14 +0300524 /*
525 * First, maybe a terminating short packet. Some DMA
526 * engines might handle this by themselves.
527 */
528 if ((request->zero && request->length
529 && (request->length % musb_ep->packet_sz == 0)
530 && (request->actual == request->length))
Felipe Balbi550a7372008-07-24 12:27:36 +0300531#ifdef CONFIG_USB_INVENTRA_DMA
Ming Leie7379aa2010-09-24 13:44:14 +0300532 || (is_dma && (!dma->desired_mode ||
533 (request->actual &
534 (musb_ep->packet_sz - 1))))
Felipe Balbi550a7372008-07-24 12:27:36 +0300535#endif
Ming Leie7379aa2010-09-24 13:44:14 +0300536 ) {
537 /*
538 * On DMA completion, FIFO may not be
539 * available yet...
540 */
541 if (csr & MUSB_TXCSR_TXPKTRDY)
542 return;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300543
Ming Leie7379aa2010-09-24 13:44:14 +0300544 DBG(4, "sending zero pkt\n");
545 musb_writew(epio, MUSB_TXCSR, MUSB_TXCSR_MODE
546 | MUSB_TXCSR_TXPKTRDY);
547 request->zero = 0;
548 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300549
Ming Leie7379aa2010-09-24 13:44:14 +0300550 if (request->actual == request->length) {
551 musb_g_giveback(musb_ep, request, 0);
552 request = musb_ep->desc ? next_request(musb_ep) : NULL;
553 if (!request) {
554 DBG(4, "%s idle now\n",
555 musb_ep->end_point.name);
556 return;
Sergei Shtylyov95962a72009-12-16 20:38:31 +0300557 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300558 }
559
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300560 txstate(musb, to_musb_request(request));
561 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300562}
563
564/* ------------------------------------------------------------ */
565
566#ifdef CONFIG_USB_INVENTRA_DMA
567
568/* Peripheral rx (OUT) using Mentor DMA works as follows:
569 - Only mode 0 is used.
570
571 - Request is queued by the gadget class driver.
572 -> if queue was previously empty, rxstate()
573
574 - Host sends OUT token which causes an endpoint interrupt
575 /\ -> RxReady
576 | -> if request queued, call rxstate
577 | /\ -> setup DMA
578 | | -> DMA interrupt on completion
579 | | -> RxReady
580 | | -> stop DMA
581 | | -> ack the read
582 | | -> if data recd = max expected
583 | | by the request, or host
584 | | sent a short packet,
585 | | complete the request,
586 | | and start the next one.
587 | |_____________________________________|
588 | else just wait for the host
589 | to send the next OUT token.
590 |__________________________________________________|
591
592 * Non-Mentor DMA engines can of course work differently.
593 */
594
595#endif
596
597/*
598 * Context: controller locked, IRQs blocked, endpoint selected
599 */
600static void rxstate(struct musb *musb, struct musb_request *req)
601{
Felipe Balbi550a7372008-07-24 12:27:36 +0300602 const u8 epnum = req->epnum;
603 struct usb_request *request = &req->request;
Ming Leibd2e74d2010-09-20 10:32:01 +0300604 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300605 void __iomem *epio = musb->endpoints[epnum].regs;
Felipe Balbic2c96322009-02-21 15:29:42 -0800606 unsigned fifo_count = 0;
Ming Leibd2e74d2010-09-20 10:32:01 +0300607 u16 len;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300608 u16 csr = musb_readw(epio, MUSB_RXCSR);
Ming Leibd2e74d2010-09-20 10:32:01 +0300609 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
610
611 if (hw_ep->is_shared_fifo)
612 musb_ep = &hw_ep->ep_in;
613 else
614 musb_ep = &hw_ep->ep_out;
615
616 len = musb_ep->packet_sz;
Felipe Balbi550a7372008-07-24 12:27:36 +0300617
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300618 /* We shouldn't get here while DMA is active, but we do... */
619 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
620 DBG(4, "DMA pending...\n");
621 return;
622 }
623
624 if (csr & MUSB_RXCSR_P_SENDSTALL) {
625 DBG(5, "%s stalling, RXCSR %04x\n",
626 musb_ep->end_point.name, csr);
627 return;
628 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300629
630 if (is_cppi_enabled() && musb_ep->dma) {
631 struct dma_controller *c = musb->dma_controller;
632 struct dma_channel *channel = musb_ep->dma;
633
634 /* NOTE: CPPI won't actually stop advancing the DMA
635 * queue after short packet transfers, so this is almost
636 * always going to run as IRQ-per-packet DMA so that
637 * faults will be handled correctly.
638 */
639 if (c->channel_program(channel,
640 musb_ep->packet_sz,
641 !request->short_not_ok,
642 request->dma + request->actual,
643 request->length - request->actual)) {
644
645 /* make sure that if an rxpkt arrived after the irq,
646 * the cppi engine will be ready to take it as soon
647 * as DMA is enabled
648 */
649 csr &= ~(MUSB_RXCSR_AUTOCLEAR
650 | MUSB_RXCSR_DMAMODE);
651 csr |= MUSB_RXCSR_DMAENAB | MUSB_RXCSR_P_WZC_BITS;
652 musb_writew(epio, MUSB_RXCSR, csr);
653 return;
654 }
655 }
656
657 if (csr & MUSB_RXCSR_RXPKTRDY) {
658 len = musb_readw(epio, MUSB_RXCOUNT);
659 if (request->actual < request->length) {
660#ifdef CONFIG_USB_INVENTRA_DMA
661 if (is_dma_capable() && musb_ep->dma) {
662 struct dma_controller *c;
663 struct dma_channel *channel;
664 int use_dma = 0;
665
666 c = musb->dma_controller;
667 channel = musb_ep->dma;
668
669 /* We use DMA Req mode 0 in rx_csr, and DMA controller operates in
670 * mode 0 only. So we do not get endpoint interrupts due to DMA
671 * completion. We only get interrupts from DMA controller.
672 *
673 * We could operate in DMA mode 1 if we knew the size of the tranfer
674 * in advance. For mass storage class, request->length = what the host
675 * sends, so that'd work. But for pretty much everything else,
676 * request->length is routinely more than what the host sends. For
677 * most these gadgets, end of is signified either by a short packet,
678 * or filling the last byte of the buffer. (Sending extra data in
679 * that last pckate should trigger an overflow fault.) But in mode 1,
680 * we don't get DMA completion interrrupt for short packets.
681 *
682 * Theoretically, we could enable DMAReq irq (MUSB_RXCSR_DMAMODE = 1),
683 * to get endpoint interrupt on every DMA req, but that didn't seem
684 * to work reliably.
685 *
686 * REVISIT an updated g_file_storage can set req->short_not_ok, which
687 * then becomes usable as a runtime "use mode 1" hint...
688 */
689
690 csr |= MUSB_RXCSR_DMAENAB;
Ming Lei490e5fb2010-09-20 10:32:03 +0300691#ifdef USE_MODE1
Ming Lei9001d802010-09-25 05:50:43 -0500692 csr |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +0300693 /* csr |= MUSB_RXCSR_DMAMODE; */
694
695 /* this special sequence (enabling and then
696 * disabling MUSB_RXCSR_DMAMODE) is required
697 * to get DMAReq to activate
698 */
699 musb_writew(epio, MUSB_RXCSR,
700 csr | MUSB_RXCSR_DMAMODE);
Ming Lei9001d802010-09-25 05:50:43 -0500701#else
702 if (!musb_ep->hb_mult &&
703 musb_ep->hw_ep->rx_double_buffered)
704 csr |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +0300705#endif
706 musb_writew(epio, MUSB_RXCSR, csr);
707
708 if (request->actual < request->length) {
709 int transfer_size = 0;
710#ifdef USE_MODE1
Ming Lei1018b4e2010-09-20 10:32:04 +0300711 transfer_size = min(request->length - request->actual,
Felipe Balbi550a7372008-07-24 12:27:36 +0300712 channel->max_len);
713#else
Ming Lei1018b4e2010-09-20 10:32:04 +0300714 transfer_size = min(request->length - request->actual,
715 (unsigned)len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300716#endif
717 if (transfer_size <= musb_ep->packet_sz)
718 musb_ep->dma->desired_mode = 0;
719 else
720 musb_ep->dma->desired_mode = 1;
721
722 use_dma = c->channel_program(
723 channel,
724 musb_ep->packet_sz,
725 channel->desired_mode,
726 request->dma
727 + request->actual,
728 transfer_size);
729 }
730
731 if (use_dma)
732 return;
733 }
734#endif /* Mentor's DMA */
735
736 fifo_count = request->length - request->actual;
737 DBG(3, "%s OUT/RX pio fifo %d/%d, maxpacket %d\n",
738 musb_ep->end_point.name,
739 len, fifo_count,
740 musb_ep->packet_sz);
741
Felipe Balbic2c96322009-02-21 15:29:42 -0800742 fifo_count = min_t(unsigned, len, fifo_count);
Felipe Balbi550a7372008-07-24 12:27:36 +0300743
744#ifdef CONFIG_USB_TUSB_OMAP_DMA
745 if (tusb_dma_omap() && musb_ep->dma) {
746 struct dma_controller *c = musb->dma_controller;
747 struct dma_channel *channel = musb_ep->dma;
748 u32 dma_addr = request->dma + request->actual;
749 int ret;
750
751 ret = c->channel_program(channel,
752 musb_ep->packet_sz,
753 channel->desired_mode,
754 dma_addr,
755 fifo_count);
756 if (ret)
757 return;
758 }
759#endif
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600760 /*
761 * Unmap the dma buffer back to cpu if dma channel
762 * programming fails. This buffer is mapped if the
763 * channel allocation is successful
764 */
765 if (is_dma_capable() && musb_ep->dma) {
766 unmap_dma_buffer(req, musb);
767
Ming Leie75df372010-11-16 23:37:37 +0800768 /*
769 * Clear DMAENAB and AUTOCLEAR for the
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600770 * PIO mode transfer
771 */
Ming Leie75df372010-11-16 23:37:37 +0800772 csr &= ~(MUSB_RXCSR_DMAENAB | MUSB_RXCSR_AUTOCLEAR);
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600773 musb_writew(epio, MUSB_RXCSR, csr);
774 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300775
776 musb_read_fifo(musb_ep->hw_ep, fifo_count, (u8 *)
777 (request->buf + request->actual));
778 request->actual += fifo_count;
779
780 /* REVISIT if we left anything in the fifo, flush
781 * it and report -EOVERFLOW
782 */
783
784 /* ack the read! */
785 csr |= MUSB_RXCSR_P_WZC_BITS;
786 csr &= ~MUSB_RXCSR_RXPKTRDY;
787 musb_writew(epio, MUSB_RXCSR, csr);
788 }
789 }
790
791 /* reach the end or short packet detected */
792 if (request->actual == request->length || len < musb_ep->packet_sz)
793 musb_g_giveback(musb_ep, request, 0);
794}
795
796/*
797 * Data ready for a request; called from IRQ
798 */
799void musb_g_rx(struct musb *musb, u8 epnum)
800{
801 u16 csr;
802 struct usb_request *request;
803 void __iomem *mbase = musb->mregs;
Ming Leibd2e74d2010-09-20 10:32:01 +0300804 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300805 void __iomem *epio = musb->endpoints[epnum].regs;
806 struct dma_channel *dma;
Ming Leibd2e74d2010-09-20 10:32:01 +0300807 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
808
809 if (hw_ep->is_shared_fifo)
810 musb_ep = &hw_ep->ep_in;
811 else
812 musb_ep = &hw_ep->ep_out;
Felipe Balbi550a7372008-07-24 12:27:36 +0300813
814 musb_ep_select(mbase, epnum);
815
816 request = next_request(musb_ep);
Maulik Mankad0abdc362009-12-22 16:18:19 +0530817 if (!request)
818 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300819
820 csr = musb_readw(epio, MUSB_RXCSR);
821 dma = is_dma_capable() ? musb_ep->dma : NULL;
822
823 DBG(4, "<== %s, rxcsr %04x%s %p\n", musb_ep->end_point.name,
824 csr, dma ? " (dma)" : "", request);
825
826 if (csr & MUSB_RXCSR_P_SENTSTALL) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300827 csr |= MUSB_RXCSR_P_WZC_BITS;
828 csr &= ~MUSB_RXCSR_P_SENTSTALL;
829 musb_writew(epio, MUSB_RXCSR, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300830 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300831 }
832
833 if (csr & MUSB_RXCSR_P_OVERRUN) {
834 /* csr |= MUSB_RXCSR_P_WZC_BITS; */
835 csr &= ~MUSB_RXCSR_P_OVERRUN;
836 musb_writew(epio, MUSB_RXCSR, csr);
837
838 DBG(3, "%s iso overrun on %p\n", musb_ep->name, request);
Sergei Shtylyov43467862010-09-24 13:44:12 +0300839 if (request->status == -EINPROGRESS)
Felipe Balbi550a7372008-07-24 12:27:36 +0300840 request->status = -EOVERFLOW;
841 }
842 if (csr & MUSB_RXCSR_INCOMPRX) {
843 /* REVISIT not necessarily an error */
844 DBG(4, "%s, incomprx\n", musb_ep->end_point.name);
845 }
846
847 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
848 /* "should not happen"; likely RXPKTRDY pending for DMA */
849 DBG((csr & MUSB_RXCSR_DMAENAB) ? 4 : 1,
850 "%s busy, csr %04x\n",
851 musb_ep->end_point.name, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300852 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300853 }
854
855 if (dma && (csr & MUSB_RXCSR_DMAENAB)) {
856 csr &= ~(MUSB_RXCSR_AUTOCLEAR
857 | MUSB_RXCSR_DMAENAB
858 | MUSB_RXCSR_DMAMODE);
859 musb_writew(epio, MUSB_RXCSR,
860 MUSB_RXCSR_P_WZC_BITS | csr);
861
862 request->actual += musb_ep->dma->actual_len;
863
864 DBG(4, "RXCSR%d %04x, dma off, %04x, len %zu, req %p\n",
865 epnum, csr,
866 musb_readw(epio, MUSB_RXCSR),
867 musb_ep->dma->actual_len, request);
868
869#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA)
870 /* Autoclear doesn't clear RxPktRdy for short packets */
Ming Lei9001d802010-09-25 05:50:43 -0500871 if ((dma->desired_mode == 0 && !hw_ep->rx_double_buffered)
Felipe Balbi550a7372008-07-24 12:27:36 +0300872 || (dma->actual_len
873 & (musb_ep->packet_sz - 1))) {
874 /* ack the read! */
875 csr &= ~MUSB_RXCSR_RXPKTRDY;
876 musb_writew(epio, MUSB_RXCSR, csr);
877 }
878
879 /* incomplete, and not short? wait for next IN packet */
880 if ((request->actual < request->length)
881 && (musb_ep->dma->actual_len
Ming Lei9001d802010-09-25 05:50:43 -0500882 == musb_ep->packet_sz)) {
883 /* In double buffer case, continue to unload fifo if
884 * there is Rx packet in FIFO.
885 **/
886 csr = musb_readw(epio, MUSB_RXCSR);
887 if ((csr & MUSB_RXCSR_RXPKTRDY) &&
888 hw_ep->rx_double_buffered)
889 goto exit;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300890 return;
Ming Lei9001d802010-09-25 05:50:43 -0500891 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300892#endif
893 musb_g_giveback(musb_ep, request, 0);
894
895 request = next_request(musb_ep);
896 if (!request)
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300897 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300898 }
Ajay Kumar Guptabb324b02010-11-22 14:22:41 +0530899#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA)
Ming Lei9001d802010-09-25 05:50:43 -0500900exit:
Ajay Kumar Guptabb324b02010-11-22 14:22:41 +0530901#endif
Sergei Shtylyov43467862010-09-24 13:44:12 +0300902 /* Analyze request */
903 rxstate(musb, to_musb_request(request));
Felipe Balbi550a7372008-07-24 12:27:36 +0300904}
905
906/* ------------------------------------------------------------ */
907
908static int musb_gadget_enable(struct usb_ep *ep,
909 const struct usb_endpoint_descriptor *desc)
910{
911 unsigned long flags;
912 struct musb_ep *musb_ep;
913 struct musb_hw_ep *hw_ep;
914 void __iomem *regs;
915 struct musb *musb;
916 void __iomem *mbase;
917 u8 epnum;
918 u16 csr;
919 unsigned tmp;
920 int status = -EINVAL;
921
922 if (!ep || !desc)
923 return -EINVAL;
924
925 musb_ep = to_musb_ep(ep);
926 hw_ep = musb_ep->hw_ep;
927 regs = hw_ep->regs;
928 musb = musb_ep->musb;
929 mbase = musb->mregs;
930 epnum = musb_ep->current_epnum;
931
932 spin_lock_irqsave(&musb->lock, flags);
933
934 if (musb_ep->desc) {
935 status = -EBUSY;
936 goto fail;
937 }
Julia Lawall96bcd092009-01-24 17:57:24 -0800938 musb_ep->type = usb_endpoint_type(desc);
Felipe Balbi550a7372008-07-24 12:27:36 +0300939
940 /* check direction and (later) maxpacket size against endpoint */
Julia Lawall96bcd092009-01-24 17:57:24 -0800941 if (usb_endpoint_num(desc) != epnum)
Felipe Balbi550a7372008-07-24 12:27:36 +0300942 goto fail;
943
944 /* REVISIT this rules out high bandwidth periodic transfers */
945 tmp = le16_to_cpu(desc->wMaxPacketSize);
Ming Leif11d8932010-09-24 13:44:04 +0300946 if (tmp & ~0x07ff) {
947 int ok;
948
949 if (usb_endpoint_dir_in(desc))
950 ok = musb->hb_iso_tx;
951 else
952 ok = musb->hb_iso_rx;
953
954 if (!ok) {
955 DBG(4, "%s: not support ISO high bandwidth\n", __func__);
956 goto fail;
957 }
958 musb_ep->hb_mult = (tmp >> 11) & 3;
959 } else {
960 musb_ep->hb_mult = 0;
961 }
962
963 musb_ep->packet_sz = tmp & 0x7ff;
964 tmp = musb_ep->packet_sz * (musb_ep->hb_mult + 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300965
966 /* enable the interrupts for the endpoint, set the endpoint
967 * packet size (or fail), set the mode, clear the fifo
968 */
969 musb_ep_select(mbase, epnum);
Julia Lawall96bcd092009-01-24 17:57:24 -0800970 if (usb_endpoint_dir_in(desc)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300971 u16 int_txe = musb_readw(mbase, MUSB_INTRTXE);
972
973 if (hw_ep->is_shared_fifo)
974 musb_ep->is_in = 1;
975 if (!musb_ep->is_in)
976 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300977
978 if (tmp > hw_ep->max_packet_sz_tx) {
979 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +0300980 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300981 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300982
983 int_txe |= (1 << epnum);
984 musb_writew(mbase, MUSB_INTRTXE, int_txe);
985
986 /* REVISIT if can_bulk_split(), use by updating "tmp";
987 * likewise high bandwidth periodic tx
988 */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500989 /* Set TXMAXP with the FIFO size of the endpoint
Ming Lei31c99092010-10-19 19:08:25 -0500990 * to disable double buffering mode.
Cliff Cai9f445cb2010-01-28 20:44:18 -0500991 */
Felipe Balbi06624812011-01-21 13:39:20 +0800992 if (musb->double_buffer_not_ok)
993 musb_writew(regs, MUSB_TXMAXP, hw_ep->max_packet_sz_tx);
994 else
995 musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz
996 | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300997
998 csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG;
999 if (musb_readw(regs, MUSB_TXCSR)
1000 & MUSB_TXCSR_FIFONOTEMPTY)
1001 csr |= MUSB_TXCSR_FLUSHFIFO;
1002 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
1003 csr |= MUSB_TXCSR_P_ISO;
1004
1005 /* set twice in case of double buffering */
1006 musb_writew(regs, MUSB_TXCSR, csr);
1007 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1008 musb_writew(regs, MUSB_TXCSR, csr);
1009
1010 } else {
1011 u16 int_rxe = musb_readw(mbase, MUSB_INTRRXE);
1012
1013 if (hw_ep->is_shared_fifo)
1014 musb_ep->is_in = 0;
1015 if (musb_ep->is_in)
1016 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001017
1018 if (tmp > hw_ep->max_packet_sz_rx) {
1019 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +03001020 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001021 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001022
1023 int_rxe |= (1 << epnum);
1024 musb_writew(mbase, MUSB_INTRRXE, int_rxe);
1025
1026 /* REVISIT if can_bulk_combine() use by updating "tmp"
1027 * likewise high bandwidth periodic rx
1028 */
Cliff Cai9f445cb2010-01-28 20:44:18 -05001029 /* Set RXMAXP with the FIFO size of the endpoint
1030 * to disable double buffering mode.
1031 */
Felipe Balbi06624812011-01-21 13:39:20 +08001032 if (musb->double_buffer_not_ok)
1033 musb_writew(regs, MUSB_RXMAXP, hw_ep->max_packet_sz_tx);
1034 else
1035 musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz
1036 | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +03001037
1038 /* force shared fifo to OUT-only mode */
1039 if (hw_ep->is_shared_fifo) {
1040 csr = musb_readw(regs, MUSB_TXCSR);
1041 csr &= ~(MUSB_TXCSR_MODE | MUSB_TXCSR_TXPKTRDY);
1042 musb_writew(regs, MUSB_TXCSR, csr);
1043 }
1044
1045 csr = MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_CLRDATATOG;
1046 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
1047 csr |= MUSB_RXCSR_P_ISO;
1048 else if (musb_ep->type == USB_ENDPOINT_XFER_INT)
1049 csr |= MUSB_RXCSR_DISNYET;
1050
1051 /* set twice in case of double buffering */
1052 musb_writew(regs, MUSB_RXCSR, csr);
1053 musb_writew(regs, MUSB_RXCSR, csr);
1054 }
1055
1056 /* NOTE: all the I/O code _should_ work fine without DMA, in case
1057 * for some reason you run out of channels here.
1058 */
1059 if (is_dma_capable() && musb->dma_controller) {
1060 struct dma_controller *c = musb->dma_controller;
1061
1062 musb_ep->dma = c->channel_alloc(c, hw_ep,
1063 (desc->bEndpointAddress & USB_DIR_IN));
1064 } else
1065 musb_ep->dma = NULL;
1066
1067 musb_ep->desc = desc;
1068 musb_ep->busy = 0;
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001069 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001070 status = 0;
1071
1072 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
1073 musb_driver_name, musb_ep->end_point.name,
1074 ({ char *s; switch (musb_ep->type) {
1075 case USB_ENDPOINT_XFER_BULK: s = "bulk"; break;
1076 case USB_ENDPOINT_XFER_INT: s = "int"; break;
1077 default: s = "iso"; break;
1078 }; s; }),
1079 musb_ep->is_in ? "IN" : "OUT",
1080 musb_ep->dma ? "dma, " : "",
1081 musb_ep->packet_sz);
1082
1083 schedule_work(&musb->irq_work);
1084
1085fail:
1086 spin_unlock_irqrestore(&musb->lock, flags);
1087 return status;
1088}
1089
1090/*
1091 * Disable an endpoint flushing all requests queued.
1092 */
1093static int musb_gadget_disable(struct usb_ep *ep)
1094{
1095 unsigned long flags;
1096 struct musb *musb;
1097 u8 epnum;
1098 struct musb_ep *musb_ep;
1099 void __iomem *epio;
1100 int status = 0;
1101
1102 musb_ep = to_musb_ep(ep);
1103 musb = musb_ep->musb;
1104 epnum = musb_ep->current_epnum;
1105 epio = musb->endpoints[epnum].regs;
1106
1107 spin_lock_irqsave(&musb->lock, flags);
1108 musb_ep_select(musb->mregs, epnum);
1109
1110 /* zero the endpoint sizes */
1111 if (musb_ep->is_in) {
1112 u16 int_txe = musb_readw(musb->mregs, MUSB_INTRTXE);
1113 int_txe &= ~(1 << epnum);
1114 musb_writew(musb->mregs, MUSB_INTRTXE, int_txe);
1115 musb_writew(epio, MUSB_TXMAXP, 0);
1116 } else {
1117 u16 int_rxe = musb_readw(musb->mregs, MUSB_INTRRXE);
1118 int_rxe &= ~(1 << epnum);
1119 musb_writew(musb->mregs, MUSB_INTRRXE, int_rxe);
1120 musb_writew(epio, MUSB_RXMAXP, 0);
1121 }
1122
1123 musb_ep->desc = NULL;
1124
1125 /* abort all pending DMA and requests */
1126 nuke(musb_ep, -ESHUTDOWN);
1127
1128 schedule_work(&musb->irq_work);
1129
1130 spin_unlock_irqrestore(&(musb->lock), flags);
1131
1132 DBG(2, "%s\n", musb_ep->end_point.name);
1133
1134 return status;
1135}
1136
1137/*
1138 * Allocate a request for an endpoint.
1139 * Reused by ep0 code.
1140 */
1141struct usb_request *musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1142{
1143 struct musb_ep *musb_ep = to_musb_ep(ep);
1144 struct musb_request *request = NULL;
1145
1146 request = kzalloc(sizeof *request, gfp_flags);
Felipe Balbi0607f862010-12-01 11:03:54 +02001147 if (!request) {
1148 DBG(4, "not enough memory\n");
1149 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001150 }
1151
Felipe Balbi0607f862010-12-01 11:03:54 +02001152 INIT_LIST_HEAD(&request->request.list);
1153 request->request.dma = DMA_ADDR_INVALID;
1154 request->epnum = musb_ep->current_epnum;
1155 request->ep = musb_ep;
1156
Felipe Balbi550a7372008-07-24 12:27:36 +03001157 return &request->request;
1158}
1159
1160/*
1161 * Free a request
1162 * Reused by ep0 code.
1163 */
1164void musb_free_request(struct usb_ep *ep, struct usb_request *req)
1165{
1166 kfree(to_musb_request(req));
1167}
1168
1169static LIST_HEAD(buffers);
1170
1171struct free_record {
1172 struct list_head list;
1173 struct device *dev;
1174 unsigned bytes;
1175 dma_addr_t dma;
1176};
1177
1178/*
1179 * Context: controller locked, IRQs blocked.
1180 */
Sergei Shtylyova666e3e2010-09-11 13:23:12 -05001181void musb_ep_restart(struct musb *musb, struct musb_request *req)
Felipe Balbi550a7372008-07-24 12:27:36 +03001182{
1183 DBG(3, "<== %s request %p len %u on hw_ep%d\n",
1184 req->tx ? "TX/IN" : "RX/OUT",
1185 &req->request, req->request.length, req->epnum);
1186
1187 musb_ep_select(musb->mregs, req->epnum);
1188 if (req->tx)
1189 txstate(musb, req);
1190 else
1191 rxstate(musb, req);
1192}
1193
1194static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req,
1195 gfp_t gfp_flags)
1196{
1197 struct musb_ep *musb_ep;
1198 struct musb_request *request;
1199 struct musb *musb;
1200 int status = 0;
1201 unsigned long lockflags;
1202
1203 if (!ep || !req)
1204 return -EINVAL;
1205 if (!req->buf)
1206 return -ENODATA;
1207
1208 musb_ep = to_musb_ep(ep);
1209 musb = musb_ep->musb;
1210
1211 request = to_musb_request(req);
1212 request->musb = musb;
1213
1214 if (request->ep != musb_ep)
1215 return -EINVAL;
1216
1217 DBG(4, "<== to %s request=%p\n", ep->name, req);
1218
1219 /* request is mine now... */
1220 request->request.actual = 0;
1221 request->request.status = -EINPROGRESS;
1222 request->epnum = musb_ep->current_epnum;
1223 request->tx = musb_ep->is_in;
1224
Hema Kalliguddi92d27112010-11-15 04:24:01 -06001225 if (is_dma_capable() && musb_ep->dma)
1226 map_dma_buffer(request, musb);
1227 else
Felipe Balbi550a7372008-07-24 12:27:36 +03001228 request->mapped = 0;
1229
1230 spin_lock_irqsave(&musb->lock, lockflags);
1231
1232 /* don't queue if the ep is down */
1233 if (!musb_ep->desc) {
1234 DBG(4, "req %p queued to %s while ep %s\n",
1235 req, ep->name, "disabled");
1236 status = -ESHUTDOWN;
1237 goto cleanup;
1238 }
1239
1240 /* add request to the list */
1241 list_add_tail(&(request->request.list), &(musb_ep->req_list));
1242
1243 /* it this is the head of the queue, start i/o ... */
1244 if (!musb_ep->busy && &request->request.list == musb_ep->req_list.next)
1245 musb_ep_restart(musb, request);
1246
1247cleanup:
1248 spin_unlock_irqrestore(&musb->lock, lockflags);
1249 return status;
1250}
1251
1252static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
1253{
1254 struct musb_ep *musb_ep = to_musb_ep(ep);
1255 struct usb_request *r;
1256 unsigned long flags;
1257 int status = 0;
1258 struct musb *musb = musb_ep->musb;
1259
1260 if (!ep || !request || to_musb_request(request)->ep != musb_ep)
1261 return -EINVAL;
1262
1263 spin_lock_irqsave(&musb->lock, flags);
1264
1265 list_for_each_entry(r, &musb_ep->req_list, list) {
1266 if (r == request)
1267 break;
1268 }
1269 if (r != request) {
1270 DBG(3, "request %p not queued to %s\n", request, ep->name);
1271 status = -EINVAL;
1272 goto done;
1273 }
1274
1275 /* if the hardware doesn't have the request, easy ... */
1276 if (musb_ep->req_list.next != &request->list || musb_ep->busy)
1277 musb_g_giveback(musb_ep, request, -ECONNRESET);
1278
1279 /* ... else abort the dma transfer ... */
1280 else if (is_dma_capable() && musb_ep->dma) {
1281 struct dma_controller *c = musb->dma_controller;
1282
1283 musb_ep_select(musb->mregs, musb_ep->current_epnum);
1284 if (c->channel_abort)
1285 status = c->channel_abort(musb_ep->dma);
1286 else
1287 status = -EBUSY;
1288 if (status == 0)
1289 musb_g_giveback(musb_ep, request, -ECONNRESET);
1290 } else {
1291 /* NOTE: by sticking to easily tested hardware/driver states,
1292 * we leave counting of in-flight packets imprecise.
1293 */
1294 musb_g_giveback(musb_ep, request, -ECONNRESET);
1295 }
1296
1297done:
1298 spin_unlock_irqrestore(&musb->lock, flags);
1299 return status;
1300}
1301
1302/*
1303 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1304 * data but will queue requests.
1305 *
1306 * exported to ep0 code
1307 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001308static int musb_gadget_set_halt(struct usb_ep *ep, int value)
Felipe Balbi550a7372008-07-24 12:27:36 +03001309{
1310 struct musb_ep *musb_ep = to_musb_ep(ep);
1311 u8 epnum = musb_ep->current_epnum;
1312 struct musb *musb = musb_ep->musb;
1313 void __iomem *epio = musb->endpoints[epnum].regs;
1314 void __iomem *mbase;
1315 unsigned long flags;
1316 u16 csr;
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001317 struct musb_request *request;
Felipe Balbi550a7372008-07-24 12:27:36 +03001318 int status = 0;
1319
1320 if (!ep)
1321 return -EINVAL;
1322 mbase = musb->mregs;
1323
1324 spin_lock_irqsave(&musb->lock, flags);
1325
1326 if ((USB_ENDPOINT_XFER_ISOC == musb_ep->type)) {
1327 status = -EINVAL;
1328 goto done;
1329 }
1330
1331 musb_ep_select(mbase, epnum);
1332
Felipe Balbi550a7372008-07-24 12:27:36 +03001333 request = to_musb_request(next_request(musb_ep));
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001334 if (value) {
1335 if (request) {
1336 DBG(3, "request in progress, cannot halt %s\n",
1337 ep->name);
1338 status = -EAGAIN;
1339 goto done;
Felipe Balbi550a7372008-07-24 12:27:36 +03001340 }
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001341 /* Cannot portably stall with non-empty FIFO */
1342 if (musb_ep->is_in) {
1343 csr = musb_readw(epio, MUSB_TXCSR);
1344 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1345 DBG(3, "FIFO busy, cannot halt %s\n", ep->name);
1346 status = -EAGAIN;
1347 goto done;
1348 }
1349 }
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001350 } else
1351 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001352
1353 /* set/clear the stall and toggle bits */
1354 DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear");
1355 if (musb_ep->is_in) {
1356 csr = musb_readw(epio, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +03001357 csr |= MUSB_TXCSR_P_WZC_BITS
1358 | MUSB_TXCSR_CLRDATATOG;
1359 if (value)
1360 csr |= MUSB_TXCSR_P_SENDSTALL;
1361 else
1362 csr &= ~(MUSB_TXCSR_P_SENDSTALL
1363 | MUSB_TXCSR_P_SENTSTALL);
1364 csr &= ~MUSB_TXCSR_TXPKTRDY;
1365 musb_writew(epio, MUSB_TXCSR, csr);
1366 } else {
1367 csr = musb_readw(epio, MUSB_RXCSR);
1368 csr |= MUSB_RXCSR_P_WZC_BITS
1369 | MUSB_RXCSR_FLUSHFIFO
1370 | MUSB_RXCSR_CLRDATATOG;
1371 if (value)
1372 csr |= MUSB_RXCSR_P_SENDSTALL;
1373 else
1374 csr &= ~(MUSB_RXCSR_P_SENDSTALL
1375 | MUSB_RXCSR_P_SENTSTALL);
1376 musb_writew(epio, MUSB_RXCSR, csr);
1377 }
1378
Felipe Balbi550a7372008-07-24 12:27:36 +03001379 /* maybe start the first request in the queue */
1380 if (!musb_ep->busy && !value && request) {
1381 DBG(3, "restarting the request\n");
1382 musb_ep_restart(musb, request);
1383 }
1384
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001385done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001386 spin_unlock_irqrestore(&musb->lock, flags);
1387 return status;
1388}
1389
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001390/*
1391 * Sets the halt feature with the clear requests ignored
1392 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001393static int musb_gadget_set_wedge(struct usb_ep *ep)
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001394{
1395 struct musb_ep *musb_ep = to_musb_ep(ep);
1396
1397 if (!ep)
1398 return -EINVAL;
1399
1400 musb_ep->wedged = 1;
1401
1402 return usb_ep_set_halt(ep);
1403}
1404
Felipe Balbi550a7372008-07-24 12:27:36 +03001405static int musb_gadget_fifo_status(struct usb_ep *ep)
1406{
1407 struct musb_ep *musb_ep = to_musb_ep(ep);
1408 void __iomem *epio = musb_ep->hw_ep->regs;
1409 int retval = -EINVAL;
1410
1411 if (musb_ep->desc && !musb_ep->is_in) {
1412 struct musb *musb = musb_ep->musb;
1413 int epnum = musb_ep->current_epnum;
1414 void __iomem *mbase = musb->mregs;
1415 unsigned long flags;
1416
1417 spin_lock_irqsave(&musb->lock, flags);
1418
1419 musb_ep_select(mbase, epnum);
1420 /* FIXME return zero unless RXPKTRDY is set */
1421 retval = musb_readw(epio, MUSB_RXCOUNT);
1422
1423 spin_unlock_irqrestore(&musb->lock, flags);
1424 }
1425 return retval;
1426}
1427
1428static void musb_gadget_fifo_flush(struct usb_ep *ep)
1429{
1430 struct musb_ep *musb_ep = to_musb_ep(ep);
1431 struct musb *musb = musb_ep->musb;
1432 u8 epnum = musb_ep->current_epnum;
1433 void __iomem *epio = musb->endpoints[epnum].regs;
1434 void __iomem *mbase;
1435 unsigned long flags;
1436 u16 csr, int_txe;
1437
1438 mbase = musb->mregs;
1439
1440 spin_lock_irqsave(&musb->lock, flags);
1441 musb_ep_select(mbase, (u8) epnum);
1442
1443 /* disable interrupts */
1444 int_txe = musb_readw(mbase, MUSB_INTRTXE);
1445 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
1446
1447 if (musb_ep->is_in) {
1448 csr = musb_readw(epio, MUSB_TXCSR);
1449 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1450 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS;
1451 musb_writew(epio, MUSB_TXCSR, csr);
1452 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1453 musb_writew(epio, MUSB_TXCSR, csr);
1454 }
1455 } else {
1456 csr = musb_readw(epio, MUSB_RXCSR);
1457 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS;
1458 musb_writew(epio, MUSB_RXCSR, csr);
1459 musb_writew(epio, MUSB_RXCSR, csr);
1460 }
1461
1462 /* re-enable interrupt */
1463 musb_writew(mbase, MUSB_INTRTXE, int_txe);
1464 spin_unlock_irqrestore(&musb->lock, flags);
1465}
1466
1467static const struct usb_ep_ops musb_ep_ops = {
1468 .enable = musb_gadget_enable,
1469 .disable = musb_gadget_disable,
1470 .alloc_request = musb_alloc_request,
1471 .free_request = musb_free_request,
1472 .queue = musb_gadget_queue,
1473 .dequeue = musb_gadget_dequeue,
1474 .set_halt = musb_gadget_set_halt,
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001475 .set_wedge = musb_gadget_set_wedge,
Felipe Balbi550a7372008-07-24 12:27:36 +03001476 .fifo_status = musb_gadget_fifo_status,
1477 .fifo_flush = musb_gadget_fifo_flush
1478};
1479
1480/* ----------------------------------------------------------------------- */
1481
1482static int musb_gadget_get_frame(struct usb_gadget *gadget)
1483{
1484 struct musb *musb = gadget_to_musb(gadget);
1485
1486 return (int)musb_readw(musb->mregs, MUSB_FRAME);
1487}
1488
1489static int musb_gadget_wakeup(struct usb_gadget *gadget)
1490{
1491 struct musb *musb = gadget_to_musb(gadget);
1492 void __iomem *mregs = musb->mregs;
1493 unsigned long flags;
1494 int status = -EINVAL;
1495 u8 power, devctl;
1496 int retries;
1497
1498 spin_lock_irqsave(&musb->lock, flags);
1499
David Brownell84e250f2009-03-31 12:30:04 -07001500 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001501 case OTG_STATE_B_PERIPHERAL:
1502 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1503 * that's part of the standard usb 1.1 state machine, and
1504 * doesn't affect OTG transitions.
1505 */
1506 if (musb->may_wakeup && musb->is_suspended)
1507 break;
1508 goto done;
1509 case OTG_STATE_B_IDLE:
1510 /* Start SRP ... OTG not required. */
1511 devctl = musb_readb(mregs, MUSB_DEVCTL);
1512 DBG(2, "Sending SRP: devctl: %02x\n", devctl);
1513 devctl |= MUSB_DEVCTL_SESSION;
1514 musb_writeb(mregs, MUSB_DEVCTL, devctl);
1515 devctl = musb_readb(mregs, MUSB_DEVCTL);
1516 retries = 100;
1517 while (!(devctl & MUSB_DEVCTL_SESSION)) {
1518 devctl = musb_readb(mregs, MUSB_DEVCTL);
1519 if (retries-- < 1)
1520 break;
1521 }
1522 retries = 10000;
1523 while (devctl & MUSB_DEVCTL_SESSION) {
1524 devctl = musb_readb(mregs, MUSB_DEVCTL);
1525 if (retries-- < 1)
1526 break;
1527 }
1528
1529 /* Block idling for at least 1s */
1530 musb_platform_try_idle(musb,
1531 jiffies + msecs_to_jiffies(1 * HZ));
1532
1533 status = 0;
1534 goto done;
1535 default:
1536 DBG(2, "Unhandled wake: %s\n", otg_state_string(musb));
1537 goto done;
1538 }
1539
1540 status = 0;
1541
1542 power = musb_readb(mregs, MUSB_POWER);
1543 power |= MUSB_POWER_RESUME;
1544 musb_writeb(mregs, MUSB_POWER, power);
1545 DBG(2, "issue wakeup\n");
1546
1547 /* FIXME do this next chunk in a timer callback, no udelay */
1548 mdelay(2);
1549
1550 power = musb_readb(mregs, MUSB_POWER);
1551 power &= ~MUSB_POWER_RESUME;
1552 musb_writeb(mregs, MUSB_POWER, power);
1553done:
1554 spin_unlock_irqrestore(&musb->lock, flags);
1555 return status;
1556}
1557
1558static int
1559musb_gadget_set_self_powered(struct usb_gadget *gadget, int is_selfpowered)
1560{
1561 struct musb *musb = gadget_to_musb(gadget);
1562
1563 musb->is_self_powered = !!is_selfpowered;
1564 return 0;
1565}
1566
1567static void musb_pullup(struct musb *musb, int is_on)
1568{
1569 u8 power;
1570
1571 power = musb_readb(musb->mregs, MUSB_POWER);
1572 if (is_on)
1573 power |= MUSB_POWER_SOFTCONN;
1574 else
1575 power &= ~MUSB_POWER_SOFTCONN;
1576
1577 /* FIXME if on, HdrcStart; if off, HdrcStop */
1578
1579 DBG(3, "gadget %s D+ pullup %s\n",
1580 musb->gadget_driver->function, is_on ? "on" : "off");
1581 musb_writeb(musb->mregs, MUSB_POWER, power);
1582}
1583
1584#if 0
1585static int musb_gadget_vbus_session(struct usb_gadget *gadget, int is_active)
1586{
1587 DBG(2, "<= %s =>\n", __func__);
1588
1589 /*
1590 * FIXME iff driver's softconnect flag is set (as it is during probe,
1591 * though that can clear it), just musb_pullup().
1592 */
1593
1594 return -EINVAL;
1595}
1596#endif
1597
1598static int musb_gadget_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1599{
1600 struct musb *musb = gadget_to_musb(gadget);
1601
David Brownell84e250f2009-03-31 12:30:04 -07001602 if (!musb->xceiv->set_power)
Felipe Balbi550a7372008-07-24 12:27:36 +03001603 return -EOPNOTSUPP;
David Brownell84e250f2009-03-31 12:30:04 -07001604 return otg_set_power(musb->xceiv, mA);
Felipe Balbi550a7372008-07-24 12:27:36 +03001605}
1606
1607static int musb_gadget_pullup(struct usb_gadget *gadget, int is_on)
1608{
1609 struct musb *musb = gadget_to_musb(gadget);
1610 unsigned long flags;
1611
1612 is_on = !!is_on;
1613
1614 /* NOTE: this assumes we are sensing vbus; we'd rather
1615 * not pullup unless the B-session is active.
1616 */
1617 spin_lock_irqsave(&musb->lock, flags);
1618 if (is_on != musb->softconnect) {
1619 musb->softconnect = is_on;
1620 musb_pullup(musb, is_on);
1621 }
1622 spin_unlock_irqrestore(&musb->lock, flags);
1623 return 0;
1624}
1625
1626static const struct usb_gadget_ops musb_gadget_operations = {
1627 .get_frame = musb_gadget_get_frame,
1628 .wakeup = musb_gadget_wakeup,
1629 .set_selfpowered = musb_gadget_set_self_powered,
1630 /* .vbus_session = musb_gadget_vbus_session, */
1631 .vbus_draw = musb_gadget_vbus_draw,
1632 .pullup = musb_gadget_pullup,
1633};
1634
1635/* ----------------------------------------------------------------------- */
1636
1637/* Registration */
1638
1639/* Only this registration code "knows" the rule (from USB standards)
1640 * about there being only one external upstream port. It assumes
1641 * all peripheral ports are external...
1642 */
1643static struct musb *the_gadget;
1644
1645static void musb_gadget_release(struct device *dev)
1646{
1647 /* kref_put(WHAT) */
1648 dev_dbg(dev, "%s\n", __func__);
1649}
1650
1651
1652static void __init
1653init_peripheral_ep(struct musb *musb, struct musb_ep *ep, u8 epnum, int is_in)
1654{
1655 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1656
1657 memset(ep, 0, sizeof *ep);
1658
1659 ep->current_epnum = epnum;
1660 ep->musb = musb;
1661 ep->hw_ep = hw_ep;
1662 ep->is_in = is_in;
1663
1664 INIT_LIST_HEAD(&ep->req_list);
1665
1666 sprintf(ep->name, "ep%d%s", epnum,
1667 (!epnum || hw_ep->is_shared_fifo) ? "" : (
1668 is_in ? "in" : "out"));
1669 ep->end_point.name = ep->name;
1670 INIT_LIST_HEAD(&ep->end_point.ep_list);
1671 if (!epnum) {
1672 ep->end_point.maxpacket = 64;
1673 ep->end_point.ops = &musb_g_ep0_ops;
1674 musb->g.ep0 = &ep->end_point;
1675 } else {
1676 if (is_in)
1677 ep->end_point.maxpacket = hw_ep->max_packet_sz_tx;
1678 else
1679 ep->end_point.maxpacket = hw_ep->max_packet_sz_rx;
1680 ep->end_point.ops = &musb_ep_ops;
1681 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list);
1682 }
1683}
1684
1685/*
1686 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1687 * to the rest of the driver state.
1688 */
1689static inline void __init musb_g_init_endpoints(struct musb *musb)
1690{
1691 u8 epnum;
1692 struct musb_hw_ep *hw_ep;
1693 unsigned count = 0;
1694
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001695 /* initialize endpoint list just once */
Felipe Balbi550a7372008-07-24 12:27:36 +03001696 INIT_LIST_HEAD(&(musb->g.ep_list));
1697
1698 for (epnum = 0, hw_ep = musb->endpoints;
1699 epnum < musb->nr_endpoints;
1700 epnum++, hw_ep++) {
1701 if (hw_ep->is_shared_fifo /* || !epnum */) {
1702 init_peripheral_ep(musb, &hw_ep->ep_in, epnum, 0);
1703 count++;
1704 } else {
1705 if (hw_ep->max_packet_sz_tx) {
1706 init_peripheral_ep(musb, &hw_ep->ep_in,
1707 epnum, 1);
1708 count++;
1709 }
1710 if (hw_ep->max_packet_sz_rx) {
1711 init_peripheral_ep(musb, &hw_ep->ep_out,
1712 epnum, 0);
1713 count++;
1714 }
1715 }
1716 }
1717}
1718
1719/* called once during driver setup to initialize and link into
1720 * the driver model; memory is zeroed.
1721 */
1722int __init musb_gadget_setup(struct musb *musb)
1723{
1724 int status;
1725
1726 /* REVISIT minor race: if (erroneously) setting up two
1727 * musb peripherals at the same time, only the bus lock
1728 * is probably held.
1729 */
1730 if (the_gadget)
1731 return -EBUSY;
1732 the_gadget = musb;
1733
1734 musb->g.ops = &musb_gadget_operations;
1735 musb->g.is_dualspeed = 1;
1736 musb->g.speed = USB_SPEED_UNKNOWN;
1737
1738 /* this "gadget" abstracts/virtualizes the controller */
Kay Sievers427c4f32008-11-07 01:52:53 +01001739 dev_set_name(&musb->g.dev, "gadget");
Felipe Balbi550a7372008-07-24 12:27:36 +03001740 musb->g.dev.parent = musb->controller;
1741 musb->g.dev.dma_mask = musb->controller->dma_mask;
1742 musb->g.dev.release = musb_gadget_release;
1743 musb->g.name = musb_driver_name;
1744
1745 if (is_otg_enabled(musb))
1746 musb->g.is_otg = 1;
1747
1748 musb_g_init_endpoints(musb);
1749
1750 musb->is_active = 0;
1751 musb_platform_try_idle(musb, 0);
1752
1753 status = device_register(&musb->g.dev);
Rahul Ruikare2c34042010-10-02 01:35:48 -05001754 if (status != 0) {
1755 put_device(&musb->g.dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001756 the_gadget = NULL;
Rahul Ruikare2c34042010-10-02 01:35:48 -05001757 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001758 return status;
1759}
1760
1761void musb_gadget_cleanup(struct musb *musb)
1762{
1763 if (musb != the_gadget)
1764 return;
1765
1766 device_unregister(&musb->g.dev);
1767 the_gadget = NULL;
1768}
1769
1770/*
1771 * Register the gadget driver. Used by gadget drivers when
1772 * registering themselves with the controller.
1773 *
1774 * -EINVAL something went wrong (not driver)
1775 * -EBUSY another gadget is already using the controller
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001776 * -ENOMEM no memory to perform the operation
Felipe Balbi550a7372008-07-24 12:27:36 +03001777 *
1778 * @param driver the gadget driver
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001779 * @param bind the driver's bind function
Felipe Balbi550a7372008-07-24 12:27:36 +03001780 * @return <0 if error, 0 if everything is fine
1781 */
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001782int usb_gadget_probe_driver(struct usb_gadget_driver *driver,
1783 int (*bind)(struct usb_gadget *))
Felipe Balbi550a7372008-07-24 12:27:36 +03001784{
1785 int retval;
1786 unsigned long flags;
1787 struct musb *musb = the_gadget;
1788
1789 if (!driver
1790 || driver->speed != USB_SPEED_HIGH
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001791 || !bind || !driver->setup)
Felipe Balbi550a7372008-07-24 12:27:36 +03001792 return -EINVAL;
1793
1794 /* driver must be initialized to support peripheral mode */
Roel Kluin08e6c972010-02-02 14:47:17 -08001795 if (!musb) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001796 DBG(1, "%s, no dev??\n", __func__);
1797 return -ENODEV;
1798 }
1799
1800 DBG(3, "registering driver %s\n", driver->function);
1801 spin_lock_irqsave(&musb->lock, flags);
1802
1803 if (musb->gadget_driver) {
1804 DBG(1, "%s is already bound to %s\n",
1805 musb_driver_name,
1806 musb->gadget_driver->driver.name);
1807 retval = -EBUSY;
1808 } else {
1809 musb->gadget_driver = driver;
1810 musb->g.dev.driver = &driver->driver;
1811 driver->driver.bus = NULL;
1812 musb->softconnect = 1;
1813 retval = 0;
1814 }
1815
1816 spin_unlock_irqrestore(&musb->lock, flags);
1817
Felipe Balbi550a7372008-07-24 12:27:36 +03001818 if (retval == 0) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001819 retval = bind(&musb->g);
Felipe Balbif362a472008-08-04 13:53:52 +03001820 if (retval != 0) {
1821 DBG(3, "bind to driver %s failed --> %d\n",
1822 driver->driver.name, retval);
1823 musb->gadget_driver = NULL;
1824 musb->g.dev.driver = NULL;
1825 }
1826
Felipe Balbi550a7372008-07-24 12:27:36 +03001827 spin_lock_irqsave(&musb->lock, flags);
1828
David Brownell84e250f2009-03-31 12:30:04 -07001829 otg_set_peripheral(musb->xceiv, &musb->g);
Arnaud Mandyd4c433f2009-12-15 13:29:58 +02001830 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001831 musb->is_active = 1;
1832
1833 /* FIXME this ignores the softconnect flag. Drivers are
1834 * allowed hold the peripheral inactive until for example
1835 * userspace hooks up printer hardware or DSP codecs, so
1836 * hosts only see fully functional devices.
1837 */
1838
1839 if (!is_otg_enabled(musb))
1840 musb_start(musb);
1841
David Brownell84e250f2009-03-31 12:30:04 -07001842 otg_set_peripheral(musb->xceiv, &musb->g);
1843
Felipe Balbi550a7372008-07-24 12:27:36 +03001844 spin_unlock_irqrestore(&musb->lock, flags);
1845
1846 if (is_otg_enabled(musb)) {
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301847 struct usb_hcd *hcd = musb_to_hcd(musb);
1848
Felipe Balbi550a7372008-07-24 12:27:36 +03001849 DBG(3, "OTG startup...\n");
1850
1851 /* REVISIT: funcall to other code, which also
1852 * handles power budgeting ... this way also
1853 * ensures HdrcStart is indirectly called.
1854 */
1855 retval = usb_add_hcd(musb_to_hcd(musb), -1, 0);
1856 if (retval < 0) {
1857 DBG(1, "add_hcd failed, %d\n", retval);
1858 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -07001859 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001860 musb->gadget_driver = NULL;
1861 musb->g.dev.driver = NULL;
1862 spin_unlock_irqrestore(&musb->lock, flags);
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301863 } else {
1864 hcd->self.uses_pio_for_control = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001865 }
1866 }
1867 }
1868
1869 return retval;
1870}
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001871EXPORT_SYMBOL(usb_gadget_probe_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03001872
1873static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
1874{
1875 int i;
1876 struct musb_hw_ep *hw_ep;
1877
1878 /* don't disconnect if it's not connected */
1879 if (musb->g.speed == USB_SPEED_UNKNOWN)
1880 driver = NULL;
1881 else
1882 musb->g.speed = USB_SPEED_UNKNOWN;
1883
1884 /* deactivate the hardware */
1885 if (musb->softconnect) {
1886 musb->softconnect = 0;
1887 musb_pullup(musb, 0);
1888 }
1889 musb_stop(musb);
1890
1891 /* killing any outstanding requests will quiesce the driver;
1892 * then report disconnect
1893 */
1894 if (driver) {
1895 for (i = 0, hw_ep = musb->endpoints;
1896 i < musb->nr_endpoints;
1897 i++, hw_ep++) {
1898 musb_ep_select(musb->mregs, i);
1899 if (hw_ep->is_shared_fifo /* || !epnum */) {
1900 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1901 } else {
1902 if (hw_ep->max_packet_sz_tx)
1903 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1904 if (hw_ep->max_packet_sz_rx)
1905 nuke(&hw_ep->ep_out, -ESHUTDOWN);
1906 }
1907 }
1908
1909 spin_unlock(&musb->lock);
1910 driver->disconnect(&musb->g);
1911 spin_lock(&musb->lock);
1912 }
1913}
1914
1915/*
1916 * Unregister the gadget driver. Used by gadget drivers when
1917 * unregistering themselves from the controller.
1918 *
1919 * @param driver the gadget driver to unregister
1920 */
1921int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1922{
1923 unsigned long flags;
1924 int retval = 0;
1925 struct musb *musb = the_gadget;
1926
1927 if (!driver || !driver->unbind || !musb)
1928 return -EINVAL;
1929
1930 /* REVISIT always use otg_set_peripheral() here too;
1931 * this needs to shut down the OTG engine.
1932 */
1933
1934 spin_lock_irqsave(&musb->lock, flags);
1935
1936#ifdef CONFIG_USB_MUSB_OTG
1937 musb_hnp_stop(musb);
1938#endif
1939
1940 if (musb->gadget_driver == driver) {
1941
1942 (void) musb_gadget_vbus_draw(&musb->g, 0);
1943
David Brownell84e250f2009-03-31 12:30:04 -07001944 musb->xceiv->state = OTG_STATE_UNDEFINED;
Felipe Balbi550a7372008-07-24 12:27:36 +03001945 stop_activity(musb, driver);
David Brownell84e250f2009-03-31 12:30:04 -07001946 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001947
1948 DBG(3, "unregistering driver %s\n", driver->function);
1949 spin_unlock_irqrestore(&musb->lock, flags);
1950 driver->unbind(&musb->g);
1951 spin_lock_irqsave(&musb->lock, flags);
1952
1953 musb->gadget_driver = NULL;
1954 musb->g.dev.driver = NULL;
1955
1956 musb->is_active = 0;
1957 musb_platform_try_idle(musb, 0);
1958 } else
1959 retval = -EINVAL;
1960 spin_unlock_irqrestore(&musb->lock, flags);
1961
1962 if (is_otg_enabled(musb) && retval == 0) {
1963 usb_remove_hcd(musb_to_hcd(musb));
1964 /* FIXME we need to be able to register another
1965 * gadget driver here and have everything work;
1966 * that currently misbehaves.
1967 */
1968 }
1969
1970 return retval;
1971}
1972EXPORT_SYMBOL(usb_gadget_unregister_driver);
1973
1974
1975/* ----------------------------------------------------------------------- */
1976
1977/* lifecycle operations called through plat_uds.c */
1978
1979void musb_g_resume(struct musb *musb)
1980{
1981 musb->is_suspended = 0;
David Brownell84e250f2009-03-31 12:30:04 -07001982 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001983 case OTG_STATE_B_IDLE:
1984 break;
1985 case OTG_STATE_B_WAIT_ACON:
1986 case OTG_STATE_B_PERIPHERAL:
1987 musb->is_active = 1;
1988 if (musb->gadget_driver && musb->gadget_driver->resume) {
1989 spin_unlock(&musb->lock);
1990 musb->gadget_driver->resume(&musb->g);
1991 spin_lock(&musb->lock);
1992 }
1993 break;
1994 default:
1995 WARNING("unhandled RESUME transition (%s)\n",
1996 otg_state_string(musb));
1997 }
1998}
1999
2000/* called when SOF packets stop for 3+ msec */
2001void musb_g_suspend(struct musb *musb)
2002{
2003 u8 devctl;
2004
2005 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2006 DBG(3, "devctl %02x\n", devctl);
2007
David Brownell84e250f2009-03-31 12:30:04 -07002008 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002009 case OTG_STATE_B_IDLE:
2010 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
David Brownell84e250f2009-03-31 12:30:04 -07002011 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002012 break;
2013 case OTG_STATE_B_PERIPHERAL:
2014 musb->is_suspended = 1;
2015 if (musb->gadget_driver && musb->gadget_driver->suspend) {
2016 spin_unlock(&musb->lock);
2017 musb->gadget_driver->suspend(&musb->g);
2018 spin_lock(&musb->lock);
2019 }
2020 break;
2021 default:
2022 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
2023 * A_PERIPHERAL may need care too
2024 */
2025 WARNING("unhandled SUSPEND transition (%s)\n",
2026 otg_state_string(musb));
2027 }
2028}
2029
2030/* Called during SRP */
2031void musb_g_wakeup(struct musb *musb)
2032{
2033 musb_gadget_wakeup(&musb->g);
2034}
2035
2036/* called when VBUS drops below session threshold, and in other cases */
2037void musb_g_disconnect(struct musb *musb)
2038{
2039 void __iomem *mregs = musb->mregs;
2040 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
2041
2042 DBG(3, "devctl %02x\n", devctl);
2043
2044 /* clear HR */
2045 musb_writeb(mregs, MUSB_DEVCTL, devctl & MUSB_DEVCTL_SESSION);
2046
2047 /* don't draw vbus until new b-default session */
2048 (void) musb_gadget_vbus_draw(&musb->g, 0);
2049
2050 musb->g.speed = USB_SPEED_UNKNOWN;
2051 if (musb->gadget_driver && musb->gadget_driver->disconnect) {
2052 spin_unlock(&musb->lock);
2053 musb->gadget_driver->disconnect(&musb->g);
2054 spin_lock(&musb->lock);
2055 }
2056
David Brownell84e250f2009-03-31 12:30:04 -07002057 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002058 default:
2059#ifdef CONFIG_USB_MUSB_OTG
2060 DBG(2, "Unhandled disconnect %s, setting a_idle\n",
2061 otg_state_string(musb));
David Brownell84e250f2009-03-31 12:30:04 -07002062 musb->xceiv->state = OTG_STATE_A_IDLE;
David Brownellab983f2a2009-03-31 12:35:09 -07002063 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002064 break;
2065 case OTG_STATE_A_PERIPHERAL:
David Brownell1de00da2009-04-02 10:16:11 -07002066 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
David Brownellab983f2a2009-03-31 12:35:09 -07002067 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002068 break;
2069 case OTG_STATE_B_WAIT_ACON:
2070 case OTG_STATE_B_HOST:
2071#endif
2072 case OTG_STATE_B_PERIPHERAL:
2073 case OTG_STATE_B_IDLE:
David Brownell84e250f2009-03-31 12:30:04 -07002074 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002075 break;
2076 case OTG_STATE_B_SRP_INIT:
2077 break;
2078 }
2079
2080 musb->is_active = 0;
2081}
2082
2083void musb_g_reset(struct musb *musb)
2084__releases(musb->lock)
2085__acquires(musb->lock)
2086{
2087 void __iomem *mbase = musb->mregs;
2088 u8 devctl = musb_readb(mbase, MUSB_DEVCTL);
2089 u8 power;
2090
2091 DBG(3, "<== %s addr=%x driver '%s'\n",
2092 (devctl & MUSB_DEVCTL_BDEVICE)
2093 ? "B-Device" : "A-Device",
2094 musb_readb(mbase, MUSB_FADDR),
2095 musb->gadget_driver
2096 ? musb->gadget_driver->driver.name
2097 : NULL
2098 );
2099
2100 /* report disconnect, if we didn't already (flushing EP state) */
2101 if (musb->g.speed != USB_SPEED_UNKNOWN)
2102 musb_g_disconnect(musb);
2103
2104 /* clear HR */
2105 else if (devctl & MUSB_DEVCTL_HR)
2106 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
2107
2108
2109 /* what speed did we negotiate? */
2110 power = musb_readb(mbase, MUSB_POWER);
2111 musb->g.speed = (power & MUSB_POWER_HSMODE)
2112 ? USB_SPEED_HIGH : USB_SPEED_FULL;
2113
2114 /* start in USB_STATE_DEFAULT */
2115 musb->is_active = 1;
2116 musb->is_suspended = 0;
2117 MUSB_DEV_MODE(musb);
2118 musb->address = 0;
2119 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
2120
2121 musb->may_wakeup = 0;
2122 musb->g.b_hnp_enable = 0;
2123 musb->g.a_alt_hnp_support = 0;
2124 musb->g.a_hnp_support = 0;
2125
2126 /* Normal reset, as B-Device;
2127 * or else after HNP, as A-Device
2128 */
2129 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -07002130 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002131 musb->g.is_a_peripheral = 0;
2132 } else if (is_otg_enabled(musb)) {
David Brownell84e250f2009-03-31 12:30:04 -07002133 musb->xceiv->state = OTG_STATE_A_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002134 musb->g.is_a_peripheral = 1;
2135 } else
2136 WARN_ON(1);
2137
2138 /* start with default limits on VBUS power draw */
2139 (void) musb_gadget_vbus_draw(&musb->g,
2140 is_otg_enabled(musb) ? 8 : 100);
2141}