blob: 363cfad003f831900deafc5726c11669e01b0053 [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 }
Ming Lei9001d802010-09-25 05:50:43 -0500899exit:
Sergei Shtylyov43467862010-09-24 13:44:12 +0300900 /* Analyze request */
901 rxstate(musb, to_musb_request(request));
Felipe Balbi550a7372008-07-24 12:27:36 +0300902}
903
904/* ------------------------------------------------------------ */
905
906static int musb_gadget_enable(struct usb_ep *ep,
907 const struct usb_endpoint_descriptor *desc)
908{
909 unsigned long flags;
910 struct musb_ep *musb_ep;
911 struct musb_hw_ep *hw_ep;
912 void __iomem *regs;
913 struct musb *musb;
914 void __iomem *mbase;
915 u8 epnum;
916 u16 csr;
917 unsigned tmp;
918 int status = -EINVAL;
919
920 if (!ep || !desc)
921 return -EINVAL;
922
923 musb_ep = to_musb_ep(ep);
924 hw_ep = musb_ep->hw_ep;
925 regs = hw_ep->regs;
926 musb = musb_ep->musb;
927 mbase = musb->mregs;
928 epnum = musb_ep->current_epnum;
929
930 spin_lock_irqsave(&musb->lock, flags);
931
932 if (musb_ep->desc) {
933 status = -EBUSY;
934 goto fail;
935 }
Julia Lawall96bcd092009-01-24 17:57:24 -0800936 musb_ep->type = usb_endpoint_type(desc);
Felipe Balbi550a7372008-07-24 12:27:36 +0300937
938 /* check direction and (later) maxpacket size against endpoint */
Julia Lawall96bcd092009-01-24 17:57:24 -0800939 if (usb_endpoint_num(desc) != epnum)
Felipe Balbi550a7372008-07-24 12:27:36 +0300940 goto fail;
941
942 /* REVISIT this rules out high bandwidth periodic transfers */
943 tmp = le16_to_cpu(desc->wMaxPacketSize);
Ming Leif11d8932010-09-24 13:44:04 +0300944 if (tmp & ~0x07ff) {
945 int ok;
946
947 if (usb_endpoint_dir_in(desc))
948 ok = musb->hb_iso_tx;
949 else
950 ok = musb->hb_iso_rx;
951
952 if (!ok) {
953 DBG(4, "%s: not support ISO high bandwidth\n", __func__);
954 goto fail;
955 }
956 musb_ep->hb_mult = (tmp >> 11) & 3;
957 } else {
958 musb_ep->hb_mult = 0;
959 }
960
961 musb_ep->packet_sz = tmp & 0x7ff;
962 tmp = musb_ep->packet_sz * (musb_ep->hb_mult + 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300963
964 /* enable the interrupts for the endpoint, set the endpoint
965 * packet size (or fail), set the mode, clear the fifo
966 */
967 musb_ep_select(mbase, epnum);
Julia Lawall96bcd092009-01-24 17:57:24 -0800968 if (usb_endpoint_dir_in(desc)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300969 u16 int_txe = musb_readw(mbase, MUSB_INTRTXE);
970
971 if (hw_ep->is_shared_fifo)
972 musb_ep->is_in = 1;
973 if (!musb_ep->is_in)
974 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300975
976 if (tmp > hw_ep->max_packet_sz_tx) {
977 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +0300978 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +0300979 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300980
981 int_txe |= (1 << epnum);
982 musb_writew(mbase, MUSB_INTRTXE, int_txe);
983
984 /* REVISIT if can_bulk_split(), use by updating "tmp";
985 * likewise high bandwidth periodic tx
986 */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500987 /* Set TXMAXP with the FIFO size of the endpoint
Ming Lei31c99092010-10-19 19:08:25 -0500988 * to disable double buffering mode.
Cliff Cai9f445cb2010-01-28 20:44:18 -0500989 */
Ming Lei31c99092010-10-19 19:08:25 -0500990 musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300991
992 csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG;
993 if (musb_readw(regs, MUSB_TXCSR)
994 & MUSB_TXCSR_FIFONOTEMPTY)
995 csr |= MUSB_TXCSR_FLUSHFIFO;
996 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
997 csr |= MUSB_TXCSR_P_ISO;
998
999 /* set twice in case of double buffering */
1000 musb_writew(regs, MUSB_TXCSR, csr);
1001 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1002 musb_writew(regs, MUSB_TXCSR, csr);
1003
1004 } else {
1005 u16 int_rxe = musb_readw(mbase, MUSB_INTRRXE);
1006
1007 if (hw_ep->is_shared_fifo)
1008 musb_ep->is_in = 0;
1009 if (musb_ep->is_in)
1010 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001011
1012 if (tmp > hw_ep->max_packet_sz_rx) {
1013 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +03001014 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001015 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001016
1017 int_rxe |= (1 << epnum);
1018 musb_writew(mbase, MUSB_INTRRXE, int_rxe);
1019
1020 /* REVISIT if can_bulk_combine() use by updating "tmp"
1021 * likewise high bandwidth periodic rx
1022 */
Cliff Cai9f445cb2010-01-28 20:44:18 -05001023 /* Set RXMAXP with the FIFO size of the endpoint
1024 * to disable double buffering mode.
1025 */
Ming Lei31c99092010-10-19 19:08:25 -05001026 musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +03001027
1028 /* force shared fifo to OUT-only mode */
1029 if (hw_ep->is_shared_fifo) {
1030 csr = musb_readw(regs, MUSB_TXCSR);
1031 csr &= ~(MUSB_TXCSR_MODE | MUSB_TXCSR_TXPKTRDY);
1032 musb_writew(regs, MUSB_TXCSR, csr);
1033 }
1034
1035 csr = MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_CLRDATATOG;
1036 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
1037 csr |= MUSB_RXCSR_P_ISO;
1038 else if (musb_ep->type == USB_ENDPOINT_XFER_INT)
1039 csr |= MUSB_RXCSR_DISNYET;
1040
1041 /* set twice in case of double buffering */
1042 musb_writew(regs, MUSB_RXCSR, csr);
1043 musb_writew(regs, MUSB_RXCSR, csr);
1044 }
1045
1046 /* NOTE: all the I/O code _should_ work fine without DMA, in case
1047 * for some reason you run out of channels here.
1048 */
1049 if (is_dma_capable() && musb->dma_controller) {
1050 struct dma_controller *c = musb->dma_controller;
1051
1052 musb_ep->dma = c->channel_alloc(c, hw_ep,
1053 (desc->bEndpointAddress & USB_DIR_IN));
1054 } else
1055 musb_ep->dma = NULL;
1056
1057 musb_ep->desc = desc;
1058 musb_ep->busy = 0;
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001059 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001060 status = 0;
1061
1062 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
1063 musb_driver_name, musb_ep->end_point.name,
1064 ({ char *s; switch (musb_ep->type) {
1065 case USB_ENDPOINT_XFER_BULK: s = "bulk"; break;
1066 case USB_ENDPOINT_XFER_INT: s = "int"; break;
1067 default: s = "iso"; break;
1068 }; s; }),
1069 musb_ep->is_in ? "IN" : "OUT",
1070 musb_ep->dma ? "dma, " : "",
1071 musb_ep->packet_sz);
1072
1073 schedule_work(&musb->irq_work);
1074
1075fail:
1076 spin_unlock_irqrestore(&musb->lock, flags);
1077 return status;
1078}
1079
1080/*
1081 * Disable an endpoint flushing all requests queued.
1082 */
1083static int musb_gadget_disable(struct usb_ep *ep)
1084{
1085 unsigned long flags;
1086 struct musb *musb;
1087 u8 epnum;
1088 struct musb_ep *musb_ep;
1089 void __iomem *epio;
1090 int status = 0;
1091
1092 musb_ep = to_musb_ep(ep);
1093 musb = musb_ep->musb;
1094 epnum = musb_ep->current_epnum;
1095 epio = musb->endpoints[epnum].regs;
1096
1097 spin_lock_irqsave(&musb->lock, flags);
1098 musb_ep_select(musb->mregs, epnum);
1099
1100 /* zero the endpoint sizes */
1101 if (musb_ep->is_in) {
1102 u16 int_txe = musb_readw(musb->mregs, MUSB_INTRTXE);
1103 int_txe &= ~(1 << epnum);
1104 musb_writew(musb->mregs, MUSB_INTRTXE, int_txe);
1105 musb_writew(epio, MUSB_TXMAXP, 0);
1106 } else {
1107 u16 int_rxe = musb_readw(musb->mregs, MUSB_INTRRXE);
1108 int_rxe &= ~(1 << epnum);
1109 musb_writew(musb->mregs, MUSB_INTRRXE, int_rxe);
1110 musb_writew(epio, MUSB_RXMAXP, 0);
1111 }
1112
1113 musb_ep->desc = NULL;
1114
1115 /* abort all pending DMA and requests */
1116 nuke(musb_ep, -ESHUTDOWN);
1117
1118 schedule_work(&musb->irq_work);
1119
1120 spin_unlock_irqrestore(&(musb->lock), flags);
1121
1122 DBG(2, "%s\n", musb_ep->end_point.name);
1123
1124 return status;
1125}
1126
1127/*
1128 * Allocate a request for an endpoint.
1129 * Reused by ep0 code.
1130 */
1131struct usb_request *musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1132{
1133 struct musb_ep *musb_ep = to_musb_ep(ep);
1134 struct musb_request *request = NULL;
1135
1136 request = kzalloc(sizeof *request, gfp_flags);
1137 if (request) {
1138 INIT_LIST_HEAD(&request->request.list);
1139 request->request.dma = DMA_ADDR_INVALID;
1140 request->epnum = musb_ep->current_epnum;
1141 request->ep = musb_ep;
1142 }
1143
1144 return &request->request;
1145}
1146
1147/*
1148 * Free a request
1149 * Reused by ep0 code.
1150 */
1151void musb_free_request(struct usb_ep *ep, struct usb_request *req)
1152{
1153 kfree(to_musb_request(req));
1154}
1155
1156static LIST_HEAD(buffers);
1157
1158struct free_record {
1159 struct list_head list;
1160 struct device *dev;
1161 unsigned bytes;
1162 dma_addr_t dma;
1163};
1164
1165/*
1166 * Context: controller locked, IRQs blocked.
1167 */
Sergei Shtylyova666e3e2010-09-11 13:23:12 -05001168void musb_ep_restart(struct musb *musb, struct musb_request *req)
Felipe Balbi550a7372008-07-24 12:27:36 +03001169{
1170 DBG(3, "<== %s request %p len %u on hw_ep%d\n",
1171 req->tx ? "TX/IN" : "RX/OUT",
1172 &req->request, req->request.length, req->epnum);
1173
1174 musb_ep_select(musb->mregs, req->epnum);
1175 if (req->tx)
1176 txstate(musb, req);
1177 else
1178 rxstate(musb, req);
1179}
1180
1181static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req,
1182 gfp_t gfp_flags)
1183{
1184 struct musb_ep *musb_ep;
1185 struct musb_request *request;
1186 struct musb *musb;
1187 int status = 0;
1188 unsigned long lockflags;
1189
1190 if (!ep || !req)
1191 return -EINVAL;
1192 if (!req->buf)
1193 return -ENODATA;
1194
1195 musb_ep = to_musb_ep(ep);
1196 musb = musb_ep->musb;
1197
1198 request = to_musb_request(req);
1199 request->musb = musb;
1200
1201 if (request->ep != musb_ep)
1202 return -EINVAL;
1203
1204 DBG(4, "<== to %s request=%p\n", ep->name, req);
1205
1206 /* request is mine now... */
1207 request->request.actual = 0;
1208 request->request.status = -EINPROGRESS;
1209 request->epnum = musb_ep->current_epnum;
1210 request->tx = musb_ep->is_in;
1211
Hema Kalliguddi92d27112010-11-15 04:24:01 -06001212 if (is_dma_capable() && musb_ep->dma)
1213 map_dma_buffer(request, musb);
1214 else
Felipe Balbi550a7372008-07-24 12:27:36 +03001215 request->mapped = 0;
1216
1217 spin_lock_irqsave(&musb->lock, lockflags);
1218
1219 /* don't queue if the ep is down */
1220 if (!musb_ep->desc) {
1221 DBG(4, "req %p queued to %s while ep %s\n",
1222 req, ep->name, "disabled");
1223 status = -ESHUTDOWN;
1224 goto cleanup;
1225 }
1226
1227 /* add request to the list */
1228 list_add_tail(&(request->request.list), &(musb_ep->req_list));
1229
1230 /* it this is the head of the queue, start i/o ... */
1231 if (!musb_ep->busy && &request->request.list == musb_ep->req_list.next)
1232 musb_ep_restart(musb, request);
1233
1234cleanup:
1235 spin_unlock_irqrestore(&musb->lock, lockflags);
1236 return status;
1237}
1238
1239static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
1240{
1241 struct musb_ep *musb_ep = to_musb_ep(ep);
1242 struct usb_request *r;
1243 unsigned long flags;
1244 int status = 0;
1245 struct musb *musb = musb_ep->musb;
1246
1247 if (!ep || !request || to_musb_request(request)->ep != musb_ep)
1248 return -EINVAL;
1249
1250 spin_lock_irqsave(&musb->lock, flags);
1251
1252 list_for_each_entry(r, &musb_ep->req_list, list) {
1253 if (r == request)
1254 break;
1255 }
1256 if (r != request) {
1257 DBG(3, "request %p not queued to %s\n", request, ep->name);
1258 status = -EINVAL;
1259 goto done;
1260 }
1261
1262 /* if the hardware doesn't have the request, easy ... */
1263 if (musb_ep->req_list.next != &request->list || musb_ep->busy)
1264 musb_g_giveback(musb_ep, request, -ECONNRESET);
1265
1266 /* ... else abort the dma transfer ... */
1267 else if (is_dma_capable() && musb_ep->dma) {
1268 struct dma_controller *c = musb->dma_controller;
1269
1270 musb_ep_select(musb->mregs, musb_ep->current_epnum);
1271 if (c->channel_abort)
1272 status = c->channel_abort(musb_ep->dma);
1273 else
1274 status = -EBUSY;
1275 if (status == 0)
1276 musb_g_giveback(musb_ep, request, -ECONNRESET);
1277 } else {
1278 /* NOTE: by sticking to easily tested hardware/driver states,
1279 * we leave counting of in-flight packets imprecise.
1280 */
1281 musb_g_giveback(musb_ep, request, -ECONNRESET);
1282 }
1283
1284done:
1285 spin_unlock_irqrestore(&musb->lock, flags);
1286 return status;
1287}
1288
1289/*
1290 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1291 * data but will queue requests.
1292 *
1293 * exported to ep0 code
1294 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001295static int musb_gadget_set_halt(struct usb_ep *ep, int value)
Felipe Balbi550a7372008-07-24 12:27:36 +03001296{
1297 struct musb_ep *musb_ep = to_musb_ep(ep);
1298 u8 epnum = musb_ep->current_epnum;
1299 struct musb *musb = musb_ep->musb;
1300 void __iomem *epio = musb->endpoints[epnum].regs;
1301 void __iomem *mbase;
1302 unsigned long flags;
1303 u16 csr;
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001304 struct musb_request *request;
Felipe Balbi550a7372008-07-24 12:27:36 +03001305 int status = 0;
1306
1307 if (!ep)
1308 return -EINVAL;
1309 mbase = musb->mregs;
1310
1311 spin_lock_irqsave(&musb->lock, flags);
1312
1313 if ((USB_ENDPOINT_XFER_ISOC == musb_ep->type)) {
1314 status = -EINVAL;
1315 goto done;
1316 }
1317
1318 musb_ep_select(mbase, epnum);
1319
Felipe Balbi550a7372008-07-24 12:27:36 +03001320 request = to_musb_request(next_request(musb_ep));
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001321 if (value) {
1322 if (request) {
1323 DBG(3, "request in progress, cannot halt %s\n",
1324 ep->name);
1325 status = -EAGAIN;
1326 goto done;
Felipe Balbi550a7372008-07-24 12:27:36 +03001327 }
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001328 /* Cannot portably stall with non-empty FIFO */
1329 if (musb_ep->is_in) {
1330 csr = musb_readw(epio, MUSB_TXCSR);
1331 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1332 DBG(3, "FIFO busy, cannot halt %s\n", ep->name);
1333 status = -EAGAIN;
1334 goto done;
1335 }
1336 }
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001337 } else
1338 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001339
1340 /* set/clear the stall and toggle bits */
1341 DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear");
1342 if (musb_ep->is_in) {
1343 csr = musb_readw(epio, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +03001344 csr |= MUSB_TXCSR_P_WZC_BITS
1345 | MUSB_TXCSR_CLRDATATOG;
1346 if (value)
1347 csr |= MUSB_TXCSR_P_SENDSTALL;
1348 else
1349 csr &= ~(MUSB_TXCSR_P_SENDSTALL
1350 | MUSB_TXCSR_P_SENTSTALL);
1351 csr &= ~MUSB_TXCSR_TXPKTRDY;
1352 musb_writew(epio, MUSB_TXCSR, csr);
1353 } else {
1354 csr = musb_readw(epio, MUSB_RXCSR);
1355 csr |= MUSB_RXCSR_P_WZC_BITS
1356 | MUSB_RXCSR_FLUSHFIFO
1357 | MUSB_RXCSR_CLRDATATOG;
1358 if (value)
1359 csr |= MUSB_RXCSR_P_SENDSTALL;
1360 else
1361 csr &= ~(MUSB_RXCSR_P_SENDSTALL
1362 | MUSB_RXCSR_P_SENTSTALL);
1363 musb_writew(epio, MUSB_RXCSR, csr);
1364 }
1365
Felipe Balbi550a7372008-07-24 12:27:36 +03001366 /* maybe start the first request in the queue */
1367 if (!musb_ep->busy && !value && request) {
1368 DBG(3, "restarting the request\n");
1369 musb_ep_restart(musb, request);
1370 }
1371
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001372done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001373 spin_unlock_irqrestore(&musb->lock, flags);
1374 return status;
1375}
1376
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001377/*
1378 * Sets the halt feature with the clear requests ignored
1379 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001380static int musb_gadget_set_wedge(struct usb_ep *ep)
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001381{
1382 struct musb_ep *musb_ep = to_musb_ep(ep);
1383
1384 if (!ep)
1385 return -EINVAL;
1386
1387 musb_ep->wedged = 1;
1388
1389 return usb_ep_set_halt(ep);
1390}
1391
Felipe Balbi550a7372008-07-24 12:27:36 +03001392static int musb_gadget_fifo_status(struct usb_ep *ep)
1393{
1394 struct musb_ep *musb_ep = to_musb_ep(ep);
1395 void __iomem *epio = musb_ep->hw_ep->regs;
1396 int retval = -EINVAL;
1397
1398 if (musb_ep->desc && !musb_ep->is_in) {
1399 struct musb *musb = musb_ep->musb;
1400 int epnum = musb_ep->current_epnum;
1401 void __iomem *mbase = musb->mregs;
1402 unsigned long flags;
1403
1404 spin_lock_irqsave(&musb->lock, flags);
1405
1406 musb_ep_select(mbase, epnum);
1407 /* FIXME return zero unless RXPKTRDY is set */
1408 retval = musb_readw(epio, MUSB_RXCOUNT);
1409
1410 spin_unlock_irqrestore(&musb->lock, flags);
1411 }
1412 return retval;
1413}
1414
1415static void musb_gadget_fifo_flush(struct usb_ep *ep)
1416{
1417 struct musb_ep *musb_ep = to_musb_ep(ep);
1418 struct musb *musb = musb_ep->musb;
1419 u8 epnum = musb_ep->current_epnum;
1420 void __iomem *epio = musb->endpoints[epnum].regs;
1421 void __iomem *mbase;
1422 unsigned long flags;
1423 u16 csr, int_txe;
1424
1425 mbase = musb->mregs;
1426
1427 spin_lock_irqsave(&musb->lock, flags);
1428 musb_ep_select(mbase, (u8) epnum);
1429
1430 /* disable interrupts */
1431 int_txe = musb_readw(mbase, MUSB_INTRTXE);
1432 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
1433
1434 if (musb_ep->is_in) {
1435 csr = musb_readw(epio, MUSB_TXCSR);
1436 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1437 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS;
1438 musb_writew(epio, MUSB_TXCSR, csr);
1439 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1440 musb_writew(epio, MUSB_TXCSR, csr);
1441 }
1442 } else {
1443 csr = musb_readw(epio, MUSB_RXCSR);
1444 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS;
1445 musb_writew(epio, MUSB_RXCSR, csr);
1446 musb_writew(epio, MUSB_RXCSR, csr);
1447 }
1448
1449 /* re-enable interrupt */
1450 musb_writew(mbase, MUSB_INTRTXE, int_txe);
1451 spin_unlock_irqrestore(&musb->lock, flags);
1452}
1453
1454static const struct usb_ep_ops musb_ep_ops = {
1455 .enable = musb_gadget_enable,
1456 .disable = musb_gadget_disable,
1457 .alloc_request = musb_alloc_request,
1458 .free_request = musb_free_request,
1459 .queue = musb_gadget_queue,
1460 .dequeue = musb_gadget_dequeue,
1461 .set_halt = musb_gadget_set_halt,
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001462 .set_wedge = musb_gadget_set_wedge,
Felipe Balbi550a7372008-07-24 12:27:36 +03001463 .fifo_status = musb_gadget_fifo_status,
1464 .fifo_flush = musb_gadget_fifo_flush
1465};
1466
1467/* ----------------------------------------------------------------------- */
1468
1469static int musb_gadget_get_frame(struct usb_gadget *gadget)
1470{
1471 struct musb *musb = gadget_to_musb(gadget);
1472
1473 return (int)musb_readw(musb->mregs, MUSB_FRAME);
1474}
1475
1476static int musb_gadget_wakeup(struct usb_gadget *gadget)
1477{
1478 struct musb *musb = gadget_to_musb(gadget);
1479 void __iomem *mregs = musb->mregs;
1480 unsigned long flags;
1481 int status = -EINVAL;
1482 u8 power, devctl;
1483 int retries;
1484
1485 spin_lock_irqsave(&musb->lock, flags);
1486
David Brownell84e250f2009-03-31 12:30:04 -07001487 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001488 case OTG_STATE_B_PERIPHERAL:
1489 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1490 * that's part of the standard usb 1.1 state machine, and
1491 * doesn't affect OTG transitions.
1492 */
1493 if (musb->may_wakeup && musb->is_suspended)
1494 break;
1495 goto done;
1496 case OTG_STATE_B_IDLE:
1497 /* Start SRP ... OTG not required. */
1498 devctl = musb_readb(mregs, MUSB_DEVCTL);
1499 DBG(2, "Sending SRP: devctl: %02x\n", devctl);
1500 devctl |= MUSB_DEVCTL_SESSION;
1501 musb_writeb(mregs, MUSB_DEVCTL, devctl);
1502 devctl = musb_readb(mregs, MUSB_DEVCTL);
1503 retries = 100;
1504 while (!(devctl & MUSB_DEVCTL_SESSION)) {
1505 devctl = musb_readb(mregs, MUSB_DEVCTL);
1506 if (retries-- < 1)
1507 break;
1508 }
1509 retries = 10000;
1510 while (devctl & MUSB_DEVCTL_SESSION) {
1511 devctl = musb_readb(mregs, MUSB_DEVCTL);
1512 if (retries-- < 1)
1513 break;
1514 }
1515
1516 /* Block idling for at least 1s */
1517 musb_platform_try_idle(musb,
1518 jiffies + msecs_to_jiffies(1 * HZ));
1519
1520 status = 0;
1521 goto done;
1522 default:
1523 DBG(2, "Unhandled wake: %s\n", otg_state_string(musb));
1524 goto done;
1525 }
1526
1527 status = 0;
1528
1529 power = musb_readb(mregs, MUSB_POWER);
1530 power |= MUSB_POWER_RESUME;
1531 musb_writeb(mregs, MUSB_POWER, power);
1532 DBG(2, "issue wakeup\n");
1533
1534 /* FIXME do this next chunk in a timer callback, no udelay */
1535 mdelay(2);
1536
1537 power = musb_readb(mregs, MUSB_POWER);
1538 power &= ~MUSB_POWER_RESUME;
1539 musb_writeb(mregs, MUSB_POWER, power);
1540done:
1541 spin_unlock_irqrestore(&musb->lock, flags);
1542 return status;
1543}
1544
1545static int
1546musb_gadget_set_self_powered(struct usb_gadget *gadget, int is_selfpowered)
1547{
1548 struct musb *musb = gadget_to_musb(gadget);
1549
1550 musb->is_self_powered = !!is_selfpowered;
1551 return 0;
1552}
1553
1554static void musb_pullup(struct musb *musb, int is_on)
1555{
1556 u8 power;
1557
1558 power = musb_readb(musb->mregs, MUSB_POWER);
1559 if (is_on)
1560 power |= MUSB_POWER_SOFTCONN;
1561 else
1562 power &= ~MUSB_POWER_SOFTCONN;
1563
1564 /* FIXME if on, HdrcStart; if off, HdrcStop */
1565
1566 DBG(3, "gadget %s D+ pullup %s\n",
1567 musb->gadget_driver->function, is_on ? "on" : "off");
1568 musb_writeb(musb->mregs, MUSB_POWER, power);
1569}
1570
1571#if 0
1572static int musb_gadget_vbus_session(struct usb_gadget *gadget, int is_active)
1573{
1574 DBG(2, "<= %s =>\n", __func__);
1575
1576 /*
1577 * FIXME iff driver's softconnect flag is set (as it is during probe,
1578 * though that can clear it), just musb_pullup().
1579 */
1580
1581 return -EINVAL;
1582}
1583#endif
1584
1585static int musb_gadget_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1586{
1587 struct musb *musb = gadget_to_musb(gadget);
1588
David Brownell84e250f2009-03-31 12:30:04 -07001589 if (!musb->xceiv->set_power)
Felipe Balbi550a7372008-07-24 12:27:36 +03001590 return -EOPNOTSUPP;
David Brownell84e250f2009-03-31 12:30:04 -07001591 return otg_set_power(musb->xceiv, mA);
Felipe Balbi550a7372008-07-24 12:27:36 +03001592}
1593
1594static int musb_gadget_pullup(struct usb_gadget *gadget, int is_on)
1595{
1596 struct musb *musb = gadget_to_musb(gadget);
1597 unsigned long flags;
1598
1599 is_on = !!is_on;
1600
1601 /* NOTE: this assumes we are sensing vbus; we'd rather
1602 * not pullup unless the B-session is active.
1603 */
1604 spin_lock_irqsave(&musb->lock, flags);
1605 if (is_on != musb->softconnect) {
1606 musb->softconnect = is_on;
1607 musb_pullup(musb, is_on);
1608 }
1609 spin_unlock_irqrestore(&musb->lock, flags);
1610 return 0;
1611}
1612
1613static const struct usb_gadget_ops musb_gadget_operations = {
1614 .get_frame = musb_gadget_get_frame,
1615 .wakeup = musb_gadget_wakeup,
1616 .set_selfpowered = musb_gadget_set_self_powered,
1617 /* .vbus_session = musb_gadget_vbus_session, */
1618 .vbus_draw = musb_gadget_vbus_draw,
1619 .pullup = musb_gadget_pullup,
1620};
1621
1622/* ----------------------------------------------------------------------- */
1623
1624/* Registration */
1625
1626/* Only this registration code "knows" the rule (from USB standards)
1627 * about there being only one external upstream port. It assumes
1628 * all peripheral ports are external...
1629 */
1630static struct musb *the_gadget;
1631
1632static void musb_gadget_release(struct device *dev)
1633{
1634 /* kref_put(WHAT) */
1635 dev_dbg(dev, "%s\n", __func__);
1636}
1637
1638
1639static void __init
1640init_peripheral_ep(struct musb *musb, struct musb_ep *ep, u8 epnum, int is_in)
1641{
1642 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1643
1644 memset(ep, 0, sizeof *ep);
1645
1646 ep->current_epnum = epnum;
1647 ep->musb = musb;
1648 ep->hw_ep = hw_ep;
1649 ep->is_in = is_in;
1650
1651 INIT_LIST_HEAD(&ep->req_list);
1652
1653 sprintf(ep->name, "ep%d%s", epnum,
1654 (!epnum || hw_ep->is_shared_fifo) ? "" : (
1655 is_in ? "in" : "out"));
1656 ep->end_point.name = ep->name;
1657 INIT_LIST_HEAD(&ep->end_point.ep_list);
1658 if (!epnum) {
1659 ep->end_point.maxpacket = 64;
1660 ep->end_point.ops = &musb_g_ep0_ops;
1661 musb->g.ep0 = &ep->end_point;
1662 } else {
1663 if (is_in)
1664 ep->end_point.maxpacket = hw_ep->max_packet_sz_tx;
1665 else
1666 ep->end_point.maxpacket = hw_ep->max_packet_sz_rx;
1667 ep->end_point.ops = &musb_ep_ops;
1668 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list);
1669 }
1670}
1671
1672/*
1673 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1674 * to the rest of the driver state.
1675 */
1676static inline void __init musb_g_init_endpoints(struct musb *musb)
1677{
1678 u8 epnum;
1679 struct musb_hw_ep *hw_ep;
1680 unsigned count = 0;
1681
1682 /* intialize endpoint list just once */
1683 INIT_LIST_HEAD(&(musb->g.ep_list));
1684
1685 for (epnum = 0, hw_ep = musb->endpoints;
1686 epnum < musb->nr_endpoints;
1687 epnum++, hw_ep++) {
1688 if (hw_ep->is_shared_fifo /* || !epnum */) {
1689 init_peripheral_ep(musb, &hw_ep->ep_in, epnum, 0);
1690 count++;
1691 } else {
1692 if (hw_ep->max_packet_sz_tx) {
1693 init_peripheral_ep(musb, &hw_ep->ep_in,
1694 epnum, 1);
1695 count++;
1696 }
1697 if (hw_ep->max_packet_sz_rx) {
1698 init_peripheral_ep(musb, &hw_ep->ep_out,
1699 epnum, 0);
1700 count++;
1701 }
1702 }
1703 }
1704}
1705
1706/* called once during driver setup to initialize and link into
1707 * the driver model; memory is zeroed.
1708 */
1709int __init musb_gadget_setup(struct musb *musb)
1710{
1711 int status;
1712
1713 /* REVISIT minor race: if (erroneously) setting up two
1714 * musb peripherals at the same time, only the bus lock
1715 * is probably held.
1716 */
1717 if (the_gadget)
1718 return -EBUSY;
1719 the_gadget = musb;
1720
1721 musb->g.ops = &musb_gadget_operations;
1722 musb->g.is_dualspeed = 1;
1723 musb->g.speed = USB_SPEED_UNKNOWN;
1724
1725 /* this "gadget" abstracts/virtualizes the controller */
Kay Sievers427c4f32008-11-07 01:52:53 +01001726 dev_set_name(&musb->g.dev, "gadget");
Felipe Balbi550a7372008-07-24 12:27:36 +03001727 musb->g.dev.parent = musb->controller;
1728 musb->g.dev.dma_mask = musb->controller->dma_mask;
1729 musb->g.dev.release = musb_gadget_release;
1730 musb->g.name = musb_driver_name;
1731
1732 if (is_otg_enabled(musb))
1733 musb->g.is_otg = 1;
1734
1735 musb_g_init_endpoints(musb);
1736
1737 musb->is_active = 0;
1738 musb_platform_try_idle(musb, 0);
1739
1740 status = device_register(&musb->g.dev);
Rahul Ruikare2c34042010-10-02 01:35:48 -05001741 if (status != 0) {
1742 put_device(&musb->g.dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001743 the_gadget = NULL;
Rahul Ruikare2c34042010-10-02 01:35:48 -05001744 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001745 return status;
1746}
1747
1748void musb_gadget_cleanup(struct musb *musb)
1749{
1750 if (musb != the_gadget)
1751 return;
1752
1753 device_unregister(&musb->g.dev);
1754 the_gadget = NULL;
1755}
1756
1757/*
1758 * Register the gadget driver. Used by gadget drivers when
1759 * registering themselves with the controller.
1760 *
1761 * -EINVAL something went wrong (not driver)
1762 * -EBUSY another gadget is already using the controller
1763 * -ENOMEM no memeory to perform the operation
1764 *
1765 * @param driver the gadget driver
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001766 * @param bind the driver's bind function
Felipe Balbi550a7372008-07-24 12:27:36 +03001767 * @return <0 if error, 0 if everything is fine
1768 */
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001769int usb_gadget_probe_driver(struct usb_gadget_driver *driver,
1770 int (*bind)(struct usb_gadget *))
Felipe Balbi550a7372008-07-24 12:27:36 +03001771{
1772 int retval;
1773 unsigned long flags;
1774 struct musb *musb = the_gadget;
1775
1776 if (!driver
1777 || driver->speed != USB_SPEED_HIGH
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001778 || !bind || !driver->setup)
Felipe Balbi550a7372008-07-24 12:27:36 +03001779 return -EINVAL;
1780
1781 /* driver must be initialized to support peripheral mode */
Roel Kluin08e6c972010-02-02 14:47:17 -08001782 if (!musb) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001783 DBG(1, "%s, no dev??\n", __func__);
1784 return -ENODEV;
1785 }
1786
1787 DBG(3, "registering driver %s\n", driver->function);
1788 spin_lock_irqsave(&musb->lock, flags);
1789
1790 if (musb->gadget_driver) {
1791 DBG(1, "%s is already bound to %s\n",
1792 musb_driver_name,
1793 musb->gadget_driver->driver.name);
1794 retval = -EBUSY;
1795 } else {
1796 musb->gadget_driver = driver;
1797 musb->g.dev.driver = &driver->driver;
1798 driver->driver.bus = NULL;
1799 musb->softconnect = 1;
1800 retval = 0;
1801 }
1802
1803 spin_unlock_irqrestore(&musb->lock, flags);
1804
Felipe Balbi550a7372008-07-24 12:27:36 +03001805 if (retval == 0) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001806 retval = bind(&musb->g);
Felipe Balbif362a472008-08-04 13:53:52 +03001807 if (retval != 0) {
1808 DBG(3, "bind to driver %s failed --> %d\n",
1809 driver->driver.name, retval);
1810 musb->gadget_driver = NULL;
1811 musb->g.dev.driver = NULL;
1812 }
1813
Felipe Balbi550a7372008-07-24 12:27:36 +03001814 spin_lock_irqsave(&musb->lock, flags);
1815
David Brownell84e250f2009-03-31 12:30:04 -07001816 otg_set_peripheral(musb->xceiv, &musb->g);
Arnaud Mandyd4c433f2009-12-15 13:29:58 +02001817 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001818 musb->is_active = 1;
1819
1820 /* FIXME this ignores the softconnect flag. Drivers are
1821 * allowed hold the peripheral inactive until for example
1822 * userspace hooks up printer hardware or DSP codecs, so
1823 * hosts only see fully functional devices.
1824 */
1825
1826 if (!is_otg_enabled(musb))
1827 musb_start(musb);
1828
David Brownell84e250f2009-03-31 12:30:04 -07001829 otg_set_peripheral(musb->xceiv, &musb->g);
1830
Felipe Balbi550a7372008-07-24 12:27:36 +03001831 spin_unlock_irqrestore(&musb->lock, flags);
1832
1833 if (is_otg_enabled(musb)) {
1834 DBG(3, "OTG startup...\n");
1835
1836 /* REVISIT: funcall to other code, which also
1837 * handles power budgeting ... this way also
1838 * ensures HdrcStart is indirectly called.
1839 */
1840 retval = usb_add_hcd(musb_to_hcd(musb), -1, 0);
1841 if (retval < 0) {
1842 DBG(1, "add_hcd failed, %d\n", retval);
1843 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -07001844 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001845 musb->gadget_driver = NULL;
1846 musb->g.dev.driver = NULL;
1847 spin_unlock_irqrestore(&musb->lock, flags);
1848 }
1849 }
1850 }
1851
1852 return retval;
1853}
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001854EXPORT_SYMBOL(usb_gadget_probe_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03001855
1856static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
1857{
1858 int i;
1859 struct musb_hw_ep *hw_ep;
1860
1861 /* don't disconnect if it's not connected */
1862 if (musb->g.speed == USB_SPEED_UNKNOWN)
1863 driver = NULL;
1864 else
1865 musb->g.speed = USB_SPEED_UNKNOWN;
1866
1867 /* deactivate the hardware */
1868 if (musb->softconnect) {
1869 musb->softconnect = 0;
1870 musb_pullup(musb, 0);
1871 }
1872 musb_stop(musb);
1873
1874 /* killing any outstanding requests will quiesce the driver;
1875 * then report disconnect
1876 */
1877 if (driver) {
1878 for (i = 0, hw_ep = musb->endpoints;
1879 i < musb->nr_endpoints;
1880 i++, hw_ep++) {
1881 musb_ep_select(musb->mregs, i);
1882 if (hw_ep->is_shared_fifo /* || !epnum */) {
1883 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1884 } else {
1885 if (hw_ep->max_packet_sz_tx)
1886 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1887 if (hw_ep->max_packet_sz_rx)
1888 nuke(&hw_ep->ep_out, -ESHUTDOWN);
1889 }
1890 }
1891
1892 spin_unlock(&musb->lock);
1893 driver->disconnect(&musb->g);
1894 spin_lock(&musb->lock);
1895 }
1896}
1897
1898/*
1899 * Unregister the gadget driver. Used by gadget drivers when
1900 * unregistering themselves from the controller.
1901 *
1902 * @param driver the gadget driver to unregister
1903 */
1904int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1905{
1906 unsigned long flags;
1907 int retval = 0;
1908 struct musb *musb = the_gadget;
1909
1910 if (!driver || !driver->unbind || !musb)
1911 return -EINVAL;
1912
1913 /* REVISIT always use otg_set_peripheral() here too;
1914 * this needs to shut down the OTG engine.
1915 */
1916
1917 spin_lock_irqsave(&musb->lock, flags);
1918
1919#ifdef CONFIG_USB_MUSB_OTG
1920 musb_hnp_stop(musb);
1921#endif
1922
1923 if (musb->gadget_driver == driver) {
1924
1925 (void) musb_gadget_vbus_draw(&musb->g, 0);
1926
David Brownell84e250f2009-03-31 12:30:04 -07001927 musb->xceiv->state = OTG_STATE_UNDEFINED;
Felipe Balbi550a7372008-07-24 12:27:36 +03001928 stop_activity(musb, driver);
David Brownell84e250f2009-03-31 12:30:04 -07001929 otg_set_peripheral(musb->xceiv, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001930
1931 DBG(3, "unregistering driver %s\n", driver->function);
1932 spin_unlock_irqrestore(&musb->lock, flags);
1933 driver->unbind(&musb->g);
1934 spin_lock_irqsave(&musb->lock, flags);
1935
1936 musb->gadget_driver = NULL;
1937 musb->g.dev.driver = NULL;
1938
1939 musb->is_active = 0;
1940 musb_platform_try_idle(musb, 0);
1941 } else
1942 retval = -EINVAL;
1943 spin_unlock_irqrestore(&musb->lock, flags);
1944
1945 if (is_otg_enabled(musb) && retval == 0) {
1946 usb_remove_hcd(musb_to_hcd(musb));
1947 /* FIXME we need to be able to register another
1948 * gadget driver here and have everything work;
1949 * that currently misbehaves.
1950 */
1951 }
1952
1953 return retval;
1954}
1955EXPORT_SYMBOL(usb_gadget_unregister_driver);
1956
1957
1958/* ----------------------------------------------------------------------- */
1959
1960/* lifecycle operations called through plat_uds.c */
1961
1962void musb_g_resume(struct musb *musb)
1963{
1964 musb->is_suspended = 0;
David Brownell84e250f2009-03-31 12:30:04 -07001965 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001966 case OTG_STATE_B_IDLE:
1967 break;
1968 case OTG_STATE_B_WAIT_ACON:
1969 case OTG_STATE_B_PERIPHERAL:
1970 musb->is_active = 1;
1971 if (musb->gadget_driver && musb->gadget_driver->resume) {
1972 spin_unlock(&musb->lock);
1973 musb->gadget_driver->resume(&musb->g);
1974 spin_lock(&musb->lock);
1975 }
1976 break;
1977 default:
1978 WARNING("unhandled RESUME transition (%s)\n",
1979 otg_state_string(musb));
1980 }
1981}
1982
1983/* called when SOF packets stop for 3+ msec */
1984void musb_g_suspend(struct musb *musb)
1985{
1986 u8 devctl;
1987
1988 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1989 DBG(3, "devctl %02x\n", devctl);
1990
David Brownell84e250f2009-03-31 12:30:04 -07001991 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001992 case OTG_STATE_B_IDLE:
1993 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
David Brownell84e250f2009-03-31 12:30:04 -07001994 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001995 break;
1996 case OTG_STATE_B_PERIPHERAL:
1997 musb->is_suspended = 1;
1998 if (musb->gadget_driver && musb->gadget_driver->suspend) {
1999 spin_unlock(&musb->lock);
2000 musb->gadget_driver->suspend(&musb->g);
2001 spin_lock(&musb->lock);
2002 }
2003 break;
2004 default:
2005 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
2006 * A_PERIPHERAL may need care too
2007 */
2008 WARNING("unhandled SUSPEND transition (%s)\n",
2009 otg_state_string(musb));
2010 }
2011}
2012
2013/* Called during SRP */
2014void musb_g_wakeup(struct musb *musb)
2015{
2016 musb_gadget_wakeup(&musb->g);
2017}
2018
2019/* called when VBUS drops below session threshold, and in other cases */
2020void musb_g_disconnect(struct musb *musb)
2021{
2022 void __iomem *mregs = musb->mregs;
2023 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
2024
2025 DBG(3, "devctl %02x\n", devctl);
2026
2027 /* clear HR */
2028 musb_writeb(mregs, MUSB_DEVCTL, devctl & MUSB_DEVCTL_SESSION);
2029
2030 /* don't draw vbus until new b-default session */
2031 (void) musb_gadget_vbus_draw(&musb->g, 0);
2032
2033 musb->g.speed = USB_SPEED_UNKNOWN;
2034 if (musb->gadget_driver && musb->gadget_driver->disconnect) {
2035 spin_unlock(&musb->lock);
2036 musb->gadget_driver->disconnect(&musb->g);
2037 spin_lock(&musb->lock);
2038 }
2039
David Brownell84e250f2009-03-31 12:30:04 -07002040 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002041 default:
2042#ifdef CONFIG_USB_MUSB_OTG
2043 DBG(2, "Unhandled disconnect %s, setting a_idle\n",
2044 otg_state_string(musb));
David Brownell84e250f2009-03-31 12:30:04 -07002045 musb->xceiv->state = OTG_STATE_A_IDLE;
David Brownellab983f2a2009-03-31 12:35:09 -07002046 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002047 break;
2048 case OTG_STATE_A_PERIPHERAL:
David Brownell1de00da2009-04-02 10:16:11 -07002049 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
David Brownellab983f2a2009-03-31 12:35:09 -07002050 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002051 break;
2052 case OTG_STATE_B_WAIT_ACON:
2053 case OTG_STATE_B_HOST:
2054#endif
2055 case OTG_STATE_B_PERIPHERAL:
2056 case OTG_STATE_B_IDLE:
David Brownell84e250f2009-03-31 12:30:04 -07002057 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002058 break;
2059 case OTG_STATE_B_SRP_INIT:
2060 break;
2061 }
2062
2063 musb->is_active = 0;
2064}
2065
2066void musb_g_reset(struct musb *musb)
2067__releases(musb->lock)
2068__acquires(musb->lock)
2069{
2070 void __iomem *mbase = musb->mregs;
2071 u8 devctl = musb_readb(mbase, MUSB_DEVCTL);
2072 u8 power;
2073
2074 DBG(3, "<== %s addr=%x driver '%s'\n",
2075 (devctl & MUSB_DEVCTL_BDEVICE)
2076 ? "B-Device" : "A-Device",
2077 musb_readb(mbase, MUSB_FADDR),
2078 musb->gadget_driver
2079 ? musb->gadget_driver->driver.name
2080 : NULL
2081 );
2082
2083 /* report disconnect, if we didn't already (flushing EP state) */
2084 if (musb->g.speed != USB_SPEED_UNKNOWN)
2085 musb_g_disconnect(musb);
2086
2087 /* clear HR */
2088 else if (devctl & MUSB_DEVCTL_HR)
2089 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
2090
2091
2092 /* what speed did we negotiate? */
2093 power = musb_readb(mbase, MUSB_POWER);
2094 musb->g.speed = (power & MUSB_POWER_HSMODE)
2095 ? USB_SPEED_HIGH : USB_SPEED_FULL;
2096
2097 /* start in USB_STATE_DEFAULT */
2098 musb->is_active = 1;
2099 musb->is_suspended = 0;
2100 MUSB_DEV_MODE(musb);
2101 musb->address = 0;
2102 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
2103
2104 musb->may_wakeup = 0;
2105 musb->g.b_hnp_enable = 0;
2106 musb->g.a_alt_hnp_support = 0;
2107 musb->g.a_hnp_support = 0;
2108
2109 /* Normal reset, as B-Device;
2110 * or else after HNP, as A-Device
2111 */
2112 if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -07002113 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002114 musb->g.is_a_peripheral = 0;
2115 } else if (is_otg_enabled(musb)) {
David Brownell84e250f2009-03-31 12:30:04 -07002116 musb->xceiv->state = OTG_STATE_A_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002117 musb->g.is_a_peripheral = 1;
2118 } else
2119 WARN_ON(1);
2120
2121 /* start with default limits on VBUS power draw */
2122 (void) musb_gadget_vbus_draw(&musb->g,
2123 is_otg_enabled(musb) ? 8 : 100);
2124}