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