usb: musb: gadget: prevent a NULL pointer dereference
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / musb / musb_gadget.c
blobedff014edd3af5780aa7edcb3838fb861aa76549
1 /*
2 * MUSB OTG driver peripheral support
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
7 * Copyright (C) 2009 MontaVista Software, Inc. <source@mvista.com>
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.
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.
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
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.
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>
46 #include <linux/slab.h>
48 #include "musb_core.h"
51 /* MUSB PERIPHERAL status 3-mar-2006:
53 * - EP0 seems solid. It passes both USBCV and usbtest control cases.
54 * Minor glitches:
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?
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.
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?
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
81 * - ISO not tested ... might work, but only weakly isochronous
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.)
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
93 /* ----------------------------------------------------------------------- */
96 * Immediately complete a request.
98 * @param request the request to complete
99 * @param status the status to complete the request with
100 * Context: controller locked, IRQs blocked.
102 void musb_g_giveback(
103 struct musb_ep *ep,
104 struct usb_request *request,
105 int status)
106 __releases(ep->musb->lock)
107 __acquires(ep->musb->lock)
109 struct musb_request *req;
110 struct musb *musb;
111 int busy = ep->busy;
113 req = to_musb_request(request);
115 list_del(&request->list);
116 if (req->request.status == -EINPROGRESS)
117 req->request.status = status;
118 musb = req->musb;
120 ep->busy = 1;
121 spin_unlock(&musb->lock);
122 if (is_dma_capable()) {
123 if (req->mapped) {
124 dma_unmap_single(musb->controller,
125 req->request.dma,
126 req->request.length,
127 req->tx
128 ? DMA_TO_DEVICE
129 : DMA_FROM_DEVICE);
130 req->request.dma = DMA_ADDR_INVALID;
131 req->mapped = 0;
132 } else if (req->request.dma != DMA_ADDR_INVALID)
133 dma_sync_single_for_cpu(musb->controller,
134 req->request.dma,
135 req->request.length,
136 req->tx
137 ? DMA_TO_DEVICE
138 : DMA_FROM_DEVICE);
140 if (request->status == 0)
141 DBG(5, "%s done request %p, %d/%d\n",
142 ep->end_point.name, request,
143 req->request.actual, req->request.length);
144 else
145 DBG(2, "%s request %p, %d/%d fault %d\n",
146 ep->end_point.name, request,
147 req->request.actual, req->request.length,
148 request->status);
149 req->request.complete(&req->ep->end_point, &req->request);
150 spin_lock(&musb->lock);
151 ep->busy = busy;
154 /* ----------------------------------------------------------------------- */
157 * Abort requests queued to an endpoint using the status. Synchronous.
158 * caller locked controller and blocked irqs, and selected this ep.
160 static void nuke(struct musb_ep *ep, const int status)
162 struct musb_request *req = NULL;
163 void __iomem *epio = ep->musb->endpoints[ep->current_epnum].regs;
165 ep->busy = 1;
167 if (is_dma_capable() && ep->dma) {
168 struct dma_controller *c = ep->musb->dma_controller;
169 int value;
171 if (ep->is_in) {
173 * The programming guide says that we must not clear
174 * the DMAMODE bit before DMAENAB, so we only
175 * clear it in the second write...
177 musb_writew(epio, MUSB_TXCSR,
178 MUSB_TXCSR_DMAMODE | MUSB_TXCSR_FLUSHFIFO);
179 musb_writew(epio, MUSB_TXCSR,
180 0 | MUSB_TXCSR_FLUSHFIFO);
181 } else {
182 musb_writew(epio, MUSB_RXCSR,
183 0 | MUSB_RXCSR_FLUSHFIFO);
184 musb_writew(epio, MUSB_RXCSR,
185 0 | MUSB_RXCSR_FLUSHFIFO);
188 value = c->channel_abort(ep->dma);
189 DBG(value ? 1 : 6, "%s: abort DMA --> %d\n", ep->name, value);
190 c->channel_release(ep->dma);
191 ep->dma = NULL;
194 while (!list_empty(&(ep->req_list))) {
195 req = container_of(ep->req_list.next, struct musb_request,
196 request.list);
197 musb_g_giveback(ep, &req->request, status);
201 /* ----------------------------------------------------------------------- */
203 /* Data transfers - pure PIO, pure DMA, or mixed mode */
206 * This assumes the separate CPPI engine is responding to DMA requests
207 * from the usb core ... sequenced a bit differently from mentor dma.
210 static inline int max_ep_writesize(struct musb *musb, struct musb_ep *ep)
212 if (can_bulk_split(musb, ep->type))
213 return ep->hw_ep->max_packet_sz_tx;
214 else
215 return ep->packet_sz;
219 #ifdef CONFIG_USB_INVENTRA_DMA
221 /* Peripheral tx (IN) using Mentor DMA works as follows:
222 Only mode 0 is used for transfers <= wPktSize,
223 mode 1 is used for larger transfers,
225 One of the following happens:
226 - Host sends IN token which causes an endpoint interrupt
227 -> TxAvail
228 -> if DMA is currently busy, exit.
229 -> if queue is non-empty, txstate().
231 - Request is queued by the gadget driver.
232 -> if queue was previously empty, txstate()
234 txstate()
235 -> start
236 /\ -> setup DMA
237 | (data is transferred to the FIFO, then sent out when
238 | IN token(s) are recd from Host.
239 | -> DMA interrupt on completion
240 | calls TxAvail.
241 | -> stop DMA, ~DMAENAB,
242 | -> set TxPktRdy for last short pkt or zlp
243 | -> Complete Request
244 | -> Continue next request (call txstate)
245 |___________________________________|
247 * Non-Mentor DMA engines can of course work differently, such as by
248 * upleveling from irq-per-packet to irq-per-buffer.
251 #endif
254 * An endpoint is transmitting data. This can be called either from
255 * the IRQ routine or from ep.queue() to kickstart a request on an
256 * endpoint.
258 * Context: controller locked, IRQs blocked, endpoint selected
260 static void txstate(struct musb *musb, struct musb_request *req)
262 u8 epnum = req->epnum;
263 struct musb_ep *musb_ep;
264 void __iomem *epio = musb->endpoints[epnum].regs;
265 struct usb_request *request;
266 u16 fifo_count = 0, csr;
267 int use_dma = 0;
269 musb_ep = req->ep;
271 /* we shouldn't get here while DMA is active ... but we do ... */
272 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
273 DBG(4, "dma pending...\n");
274 return;
277 /* read TXCSR before */
278 csr = musb_readw(epio, MUSB_TXCSR);
280 request = &req->request;
281 fifo_count = min(max_ep_writesize(musb, musb_ep),
282 (int)(request->length - request->actual));
284 if (csr & MUSB_TXCSR_TXPKTRDY) {
285 DBG(5, "%s old packet still ready , txcsr %03x\n",
286 musb_ep->end_point.name, csr);
287 return;
290 if (csr & MUSB_TXCSR_P_SENDSTALL) {
291 DBG(5, "%s stalling, txcsr %03x\n",
292 musb_ep->end_point.name, csr);
293 return;
296 DBG(4, "hw_ep%d, maxpacket %d, fifo count %d, txcsr %03x\n",
297 epnum, musb_ep->packet_sz, fifo_count,
298 csr);
300 #ifndef CONFIG_MUSB_PIO_ONLY
301 if (is_dma_capable() && musb_ep->dma) {
302 struct dma_controller *c = musb->dma_controller;
303 size_t request_size;
305 /* setup DMA, then program endpoint CSR */
306 request_size = min_t(size_t, request->length - request->actual,
307 musb_ep->dma->max_len);
309 use_dma = (request->dma != DMA_ADDR_INVALID);
311 /* MUSB_TXCSR_P_ISO is still set correctly */
313 #ifdef CONFIG_USB_INVENTRA_DMA
315 if (request_size < musb_ep->packet_sz)
316 musb_ep->dma->desired_mode = 0;
317 else
318 musb_ep->dma->desired_mode = 1;
320 use_dma = use_dma && c->channel_program(
321 musb_ep->dma, musb_ep->packet_sz,
322 musb_ep->dma->desired_mode,
323 request->dma + request->actual, request_size);
324 if (use_dma) {
325 if (musb_ep->dma->desired_mode == 0) {
327 * We must not clear the DMAMODE bit
328 * before the DMAENAB bit -- and the
329 * latter doesn't always get cleared
330 * before we get here...
332 csr &= ~(MUSB_TXCSR_AUTOSET
333 | MUSB_TXCSR_DMAENAB);
334 musb_writew(epio, MUSB_TXCSR, csr
335 | MUSB_TXCSR_P_WZC_BITS);
336 csr &= ~MUSB_TXCSR_DMAMODE;
337 csr |= (MUSB_TXCSR_DMAENAB |
338 MUSB_TXCSR_MODE);
339 /* against programming guide */
340 } else {
341 csr |= (MUSB_TXCSR_DMAENAB
342 | MUSB_TXCSR_DMAMODE
343 | MUSB_TXCSR_MODE);
344 if (!musb_ep->hb_mult)
345 csr |= MUSB_TXCSR_AUTOSET;
347 csr &= ~MUSB_TXCSR_P_UNDERRUN;
349 musb_writew(epio, MUSB_TXCSR, csr);
353 #elif defined(CONFIG_USB_TI_CPPI_DMA)
354 /* program endpoint CSR first, then setup DMA */
355 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
356 csr |= MUSB_TXCSR_DMAENAB | MUSB_TXCSR_DMAMODE |
357 MUSB_TXCSR_MODE;
358 musb_writew(epio, MUSB_TXCSR,
359 (MUSB_TXCSR_P_WZC_BITS & ~MUSB_TXCSR_P_UNDERRUN)
360 | csr);
362 /* ensure writebuffer is empty */
363 csr = musb_readw(epio, MUSB_TXCSR);
365 /* NOTE host side sets DMAENAB later than this; both are
366 * OK since the transfer dma glue (between CPPI and Mentor
367 * fifos) just tells CPPI it could start. Data only moves
368 * to the USB TX fifo when both fifos are ready.
371 /* "mode" is irrelevant here; handle terminating ZLPs like
372 * PIO does, since the hardware RNDIS mode seems unreliable
373 * except for the last-packet-is-already-short case.
375 use_dma = use_dma && c->channel_program(
376 musb_ep->dma, musb_ep->packet_sz,
378 request->dma + request->actual,
379 request_size);
380 if (!use_dma) {
381 c->channel_release(musb_ep->dma);
382 musb_ep->dma = NULL;
383 csr &= ~MUSB_TXCSR_DMAENAB;
384 musb_writew(epio, MUSB_TXCSR, csr);
385 /* invariant: prequest->buf is non-null */
387 #elif defined(CONFIG_USB_TUSB_OMAP_DMA)
388 use_dma = use_dma && c->channel_program(
389 musb_ep->dma, musb_ep->packet_sz,
390 request->zero,
391 request->dma + request->actual,
392 request_size);
393 #endif
395 #endif
397 if (!use_dma) {
398 musb_write_fifo(musb_ep->hw_ep, fifo_count,
399 (u8 *) (request->buf + request->actual));
400 request->actual += fifo_count;
401 csr |= MUSB_TXCSR_TXPKTRDY;
402 csr &= ~MUSB_TXCSR_P_UNDERRUN;
403 musb_writew(epio, MUSB_TXCSR, csr);
406 /* host may already have the data when this message shows... */
407 DBG(3, "%s TX/IN %s len %d/%d, txcsr %04x, fifo %d/%d\n",
408 musb_ep->end_point.name, use_dma ? "dma" : "pio",
409 request->actual, request->length,
410 musb_readw(epio, MUSB_TXCSR),
411 fifo_count,
412 musb_readw(epio, MUSB_TXMAXP));
416 * FIFO state update (e.g. data ready).
417 * Called from IRQ, with controller locked.
419 void musb_g_tx(struct musb *musb, u8 epnum)
421 u16 csr;
422 struct usb_request *request;
423 u8 __iomem *mbase = musb->mregs;
424 struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_in;
425 void __iomem *epio = musb->endpoints[epnum].regs;
426 struct dma_channel *dma;
428 musb_ep_select(mbase, epnum);
429 request = next_request(musb_ep);
431 csr = musb_readw(epio, MUSB_TXCSR);
432 DBG(4, "<== %s, txcsr %04x\n", musb_ep->end_point.name, csr);
434 dma = is_dma_capable() ? musb_ep->dma : NULL;
437 * REVISIT: for high bandwidth, MUSB_TXCSR_P_INCOMPTX
438 * probably rates reporting as a host error.
440 if (csr & MUSB_TXCSR_P_SENTSTALL) {
441 csr |= MUSB_TXCSR_P_WZC_BITS;
442 csr &= ~MUSB_TXCSR_P_SENTSTALL;
443 musb_writew(epio, MUSB_TXCSR, csr);
444 return;
447 if (csr & MUSB_TXCSR_P_UNDERRUN) {
448 /* We NAKed, no big deal... little reason to care. */
449 csr |= MUSB_TXCSR_P_WZC_BITS;
450 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
451 musb_writew(epio, MUSB_TXCSR, csr);
452 DBG(20, "underrun on ep%d, req %p\n", epnum, request);
455 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
457 * SHOULD NOT HAPPEN... has with CPPI though, after
458 * changing SENDSTALL (and other cases); harmless?
460 DBG(5, "%s dma still busy?\n", musb_ep->end_point.name);
461 return;
464 if (request) {
465 u8 is_dma = 0;
467 if (dma && (csr & MUSB_TXCSR_DMAENAB)) {
468 is_dma = 1;
469 csr |= MUSB_TXCSR_P_WZC_BITS;
470 csr &= ~(MUSB_TXCSR_DMAENAB | MUSB_TXCSR_P_UNDERRUN |
471 MUSB_TXCSR_TXPKTRDY);
472 musb_writew(epio, MUSB_TXCSR, csr);
473 /* Ensure writebuffer is empty. */
474 csr = musb_readw(epio, MUSB_TXCSR);
475 request->actual += musb_ep->dma->actual_len;
476 DBG(4, "TXCSR%d %04x, DMA off, len %zu, req %p\n",
477 epnum, csr, musb_ep->dma->actual_len, request);
481 * First, maybe a terminating short packet. Some DMA
482 * engines might handle this by themselves.
484 if ((request->zero && request->length
485 && (request->length % musb_ep->packet_sz == 0)
486 && (request->actual == request->length))
487 #ifdef CONFIG_USB_INVENTRA_DMA
488 || (is_dma && (!dma->desired_mode ||
489 (request->actual &
490 (musb_ep->packet_sz - 1))))
491 #endif
494 * On DMA completion, FIFO may not be
495 * available yet...
497 if (csr & MUSB_TXCSR_TXPKTRDY)
498 return;
500 DBG(4, "sending zero pkt\n");
501 musb_writew(epio, MUSB_TXCSR, MUSB_TXCSR_MODE
502 | MUSB_TXCSR_TXPKTRDY);
503 request->zero = 0;
506 if (request->actual == request->length) {
507 musb_g_giveback(musb_ep, request, 0);
508 request = musb_ep->desc ? next_request(musb_ep) : NULL;
509 if (!request) {
510 DBG(4, "%s idle now\n",
511 musb_ep->end_point.name);
512 return;
516 txstate(musb, to_musb_request(request));
520 /* ------------------------------------------------------------ */
522 #ifdef CONFIG_USB_INVENTRA_DMA
524 /* Peripheral rx (OUT) using Mentor DMA works as follows:
525 - Only mode 0 is used.
527 - Request is queued by the gadget class driver.
528 -> if queue was previously empty, rxstate()
530 - Host sends OUT token which causes an endpoint interrupt
531 /\ -> RxReady
532 | -> if request queued, call rxstate
533 | /\ -> setup DMA
534 | | -> DMA interrupt on completion
535 | | -> RxReady
536 | | -> stop DMA
537 | | -> ack the read
538 | | -> if data recd = max expected
539 | | by the request, or host
540 | | sent a short packet,
541 | | complete the request,
542 | | and start the next one.
543 | |_____________________________________|
544 | else just wait for the host
545 | to send the next OUT token.
546 |__________________________________________________|
548 * Non-Mentor DMA engines can of course work differently.
551 #endif
554 * Context: controller locked, IRQs blocked, endpoint selected
556 static void rxstate(struct musb *musb, struct musb_request *req)
558 const u8 epnum = req->epnum;
559 struct usb_request *request = &req->request;
560 struct musb_ep *musb_ep;
561 void __iomem *epio = musb->endpoints[epnum].regs;
562 unsigned fifo_count = 0;
563 u16 len;
564 u16 csr = musb_readw(epio, MUSB_RXCSR);
565 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
567 if (hw_ep->is_shared_fifo)
568 musb_ep = &hw_ep->ep_in;
569 else
570 musb_ep = &hw_ep->ep_out;
572 len = musb_ep->packet_sz;
574 /* We shouldn't get here while DMA is active, but we do... */
575 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
576 DBG(4, "DMA pending...\n");
577 return;
580 if (csr & MUSB_RXCSR_P_SENDSTALL) {
581 DBG(5, "%s stalling, RXCSR %04x\n",
582 musb_ep->end_point.name, csr);
583 return;
586 if (is_cppi_enabled() && musb_ep->dma) {
587 struct dma_controller *c = musb->dma_controller;
588 struct dma_channel *channel = musb_ep->dma;
590 /* NOTE: CPPI won't actually stop advancing the DMA
591 * queue after short packet transfers, so this is almost
592 * always going to run as IRQ-per-packet DMA so that
593 * faults will be handled correctly.
595 if (c->channel_program(channel,
596 musb_ep->packet_sz,
597 !request->short_not_ok,
598 request->dma + request->actual,
599 request->length - request->actual)) {
601 /* make sure that if an rxpkt arrived after the irq,
602 * the cppi engine will be ready to take it as soon
603 * as DMA is enabled
605 csr &= ~(MUSB_RXCSR_AUTOCLEAR
606 | MUSB_RXCSR_DMAMODE);
607 csr |= MUSB_RXCSR_DMAENAB | MUSB_RXCSR_P_WZC_BITS;
608 musb_writew(epio, MUSB_RXCSR, csr);
609 return;
613 if (csr & MUSB_RXCSR_RXPKTRDY) {
614 len = musb_readw(epio, MUSB_RXCOUNT);
615 if (request->actual < request->length) {
616 #ifdef CONFIG_USB_INVENTRA_DMA
617 if (is_dma_capable() && musb_ep->dma) {
618 struct dma_controller *c;
619 struct dma_channel *channel;
620 int use_dma = 0;
622 c = musb->dma_controller;
623 channel = musb_ep->dma;
625 /* We use DMA Req mode 0 in rx_csr, and DMA controller operates in
626 * mode 0 only. So we do not get endpoint interrupts due to DMA
627 * completion. We only get interrupts from DMA controller.
629 * We could operate in DMA mode 1 if we knew the size of the tranfer
630 * in advance. For mass storage class, request->length = what the host
631 * sends, so that'd work. But for pretty much everything else,
632 * request->length is routinely more than what the host sends. For
633 * most these gadgets, end of is signified either by a short packet,
634 * or filling the last byte of the buffer. (Sending extra data in
635 * that last pckate should trigger an overflow fault.) But in mode 1,
636 * we don't get DMA completion interrrupt for short packets.
638 * Theoretically, we could enable DMAReq irq (MUSB_RXCSR_DMAMODE = 1),
639 * to get endpoint interrupt on every DMA req, but that didn't seem
640 * to work reliably.
642 * REVISIT an updated g_file_storage can set req->short_not_ok, which
643 * then becomes usable as a runtime "use mode 1" hint...
646 csr |= MUSB_RXCSR_DMAENAB;
647 if (!musb_ep->hb_mult &&
648 musb_ep->hw_ep->rx_double_buffered)
649 csr |= MUSB_RXCSR_AUTOCLEAR;
650 #ifdef USE_MODE1
651 /* csr |= MUSB_RXCSR_DMAMODE; */
653 /* this special sequence (enabling and then
654 * disabling MUSB_RXCSR_DMAMODE) is required
655 * to get DMAReq to activate
657 musb_writew(epio, MUSB_RXCSR,
658 csr | MUSB_RXCSR_DMAMODE);
659 #endif
660 musb_writew(epio, MUSB_RXCSR, csr);
662 if (request->actual < request->length) {
663 int transfer_size = 0;
664 #ifdef USE_MODE1
665 transfer_size = min(request->length - request->actual,
666 channel->max_len);
667 #else
668 transfer_size = min(request->length - request->actual,
669 (unsigned)len);
670 #endif
671 if (transfer_size <= musb_ep->packet_sz)
672 musb_ep->dma->desired_mode = 0;
673 else
674 musb_ep->dma->desired_mode = 1;
676 use_dma = c->channel_program(
677 channel,
678 musb_ep->packet_sz,
679 channel->desired_mode,
680 request->dma
681 + request->actual,
682 transfer_size);
685 if (use_dma)
686 return;
688 #endif /* Mentor's DMA */
690 fifo_count = request->length - request->actual;
691 DBG(3, "%s OUT/RX pio fifo %d/%d, maxpacket %d\n",
692 musb_ep->end_point.name,
693 len, fifo_count,
694 musb_ep->packet_sz);
696 fifo_count = min_t(unsigned, len, fifo_count);
698 #ifdef CONFIG_USB_TUSB_OMAP_DMA
699 if (tusb_dma_omap() && musb_ep->dma) {
700 struct dma_controller *c = musb->dma_controller;
701 struct dma_channel *channel = musb_ep->dma;
702 u32 dma_addr = request->dma + request->actual;
703 int ret;
705 ret = c->channel_program(channel,
706 musb_ep->packet_sz,
707 channel->desired_mode,
708 dma_addr,
709 fifo_count);
710 if (ret)
711 return;
713 #endif
715 musb_read_fifo(musb_ep->hw_ep, fifo_count, (u8 *)
716 (request->buf + request->actual));
717 request->actual += fifo_count;
719 /* REVISIT if we left anything in the fifo, flush
720 * it and report -EOVERFLOW
723 /* ack the read! */
724 csr |= MUSB_RXCSR_P_WZC_BITS;
725 csr &= ~MUSB_RXCSR_RXPKTRDY;
726 musb_writew(epio, MUSB_RXCSR, csr);
730 /* reach the end or short packet detected */
731 if (request->actual == request->length || len < musb_ep->packet_sz)
732 musb_g_giveback(musb_ep, request, 0);
736 * Data ready for a request; called from IRQ
738 void musb_g_rx(struct musb *musb, u8 epnum)
740 u16 csr;
741 struct usb_request *request;
742 void __iomem *mbase = musb->mregs;
743 struct musb_ep *musb_ep;
744 void __iomem *epio = musb->endpoints[epnum].regs;
745 struct dma_channel *dma;
746 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
748 if (hw_ep->is_shared_fifo)
749 musb_ep = &hw_ep->ep_in;
750 else
751 musb_ep = &hw_ep->ep_out;
753 musb_ep_select(mbase, epnum);
755 request = next_request(musb_ep);
756 if (!request)
757 return;
759 csr = musb_readw(epio, MUSB_RXCSR);
760 dma = is_dma_capable() ? musb_ep->dma : NULL;
762 DBG(4, "<== %s, rxcsr %04x%s %p\n", musb_ep->end_point.name,
763 csr, dma ? " (dma)" : "", request);
765 if (csr & MUSB_RXCSR_P_SENTSTALL) {
766 csr |= MUSB_RXCSR_P_WZC_BITS;
767 csr &= ~MUSB_RXCSR_P_SENTSTALL;
768 musb_writew(epio, MUSB_RXCSR, csr);
769 return;
772 if (csr & MUSB_RXCSR_P_OVERRUN) {
773 /* csr |= MUSB_RXCSR_P_WZC_BITS; */
774 csr &= ~MUSB_RXCSR_P_OVERRUN;
775 musb_writew(epio, MUSB_RXCSR, csr);
777 DBG(3, "%s iso overrun on %p\n", musb_ep->name, request);
778 if (request->status == -EINPROGRESS)
779 request->status = -EOVERFLOW;
781 if (csr & MUSB_RXCSR_INCOMPRX) {
782 /* REVISIT not necessarily an error */
783 DBG(4, "%s, incomprx\n", musb_ep->end_point.name);
786 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
787 /* "should not happen"; likely RXPKTRDY pending for DMA */
788 DBG((csr & MUSB_RXCSR_DMAENAB) ? 4 : 1,
789 "%s busy, csr %04x\n",
790 musb_ep->end_point.name, csr);
791 return;
794 if (dma && (csr & MUSB_RXCSR_DMAENAB)) {
795 csr &= ~(MUSB_RXCSR_AUTOCLEAR
796 | MUSB_RXCSR_DMAENAB
797 | MUSB_RXCSR_DMAMODE);
798 musb_writew(epio, MUSB_RXCSR,
799 MUSB_RXCSR_P_WZC_BITS | csr);
801 request->actual += musb_ep->dma->actual_len;
803 DBG(4, "RXCSR%d %04x, dma off, %04x, len %zu, req %p\n",
804 epnum, csr,
805 musb_readw(epio, MUSB_RXCSR),
806 musb_ep->dma->actual_len, request);
808 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA)
809 /* Autoclear doesn't clear RxPktRdy for short packets */
810 if ((dma->desired_mode == 0)
811 || (dma->actual_len
812 & (musb_ep->packet_sz - 1))) {
813 /* ack the read! */
814 csr &= ~MUSB_RXCSR_RXPKTRDY;
815 musb_writew(epio, MUSB_RXCSR, csr);
818 /* incomplete, and not short? wait for next IN packet */
819 if ((request->actual < request->length)
820 && (musb_ep->dma->actual_len
821 == musb_ep->packet_sz))
822 return;
823 #endif
824 musb_g_giveback(musb_ep, request, 0);
826 request = next_request(musb_ep);
827 if (!request)
828 return;
831 /* Analyze request */
832 rxstate(musb, to_musb_request(request));
835 /* ------------------------------------------------------------ */
837 static int musb_gadget_enable(struct usb_ep *ep,
838 const struct usb_endpoint_descriptor *desc)
840 unsigned long flags;
841 struct musb_ep *musb_ep;
842 struct musb_hw_ep *hw_ep;
843 void __iomem *regs;
844 struct musb *musb;
845 void __iomem *mbase;
846 u8 epnum;
847 u16 csr;
848 unsigned tmp;
849 int status = -EINVAL;
851 if (!ep || !desc)
852 return -EINVAL;
854 musb_ep = to_musb_ep(ep);
855 hw_ep = musb_ep->hw_ep;
856 regs = hw_ep->regs;
857 musb = musb_ep->musb;
858 mbase = musb->mregs;
859 epnum = musb_ep->current_epnum;
861 spin_lock_irqsave(&musb->lock, flags);
863 if (musb_ep->desc) {
864 status = -EBUSY;
865 goto fail;
867 musb_ep->type = usb_endpoint_type(desc);
869 /* check direction and (later) maxpacket size against endpoint */
870 if (usb_endpoint_num(desc) != epnum)
871 goto fail;
873 /* REVISIT this rules out high bandwidth periodic transfers */
874 tmp = le16_to_cpu(desc->wMaxPacketSize);
875 if (tmp & ~0x07ff) {
876 int ok;
878 if (usb_endpoint_dir_in(desc))
879 ok = musb->hb_iso_tx;
880 else
881 ok = musb->hb_iso_rx;
883 if (!ok) {
884 DBG(4, "%s: not support ISO high bandwidth\n", __func__);
885 goto fail;
887 musb_ep->hb_mult = (tmp >> 11) & 3;
888 } else {
889 musb_ep->hb_mult = 0;
892 musb_ep->packet_sz = tmp & 0x7ff;
893 tmp = musb_ep->packet_sz * (musb_ep->hb_mult + 1);
895 /* enable the interrupts for the endpoint, set the endpoint
896 * packet size (or fail), set the mode, clear the fifo
898 musb_ep_select(mbase, epnum);
899 if (usb_endpoint_dir_in(desc)) {
900 u16 int_txe = musb_readw(mbase, MUSB_INTRTXE);
902 if (hw_ep->is_shared_fifo)
903 musb_ep->is_in = 1;
904 if (!musb_ep->is_in)
905 goto fail;
907 if (tmp > hw_ep->max_packet_sz_tx) {
908 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
909 goto fail;
912 int_txe |= (1 << epnum);
913 musb_writew(mbase, MUSB_INTRTXE, int_txe);
915 /* REVISIT if can_bulk_split(), use by updating "tmp";
916 * likewise high bandwidth periodic tx
918 /* Set TXMAXP with the FIFO size of the endpoint
919 * to disable double buffering mode. Currently, It seems that double
920 * buffering has problem if musb RTL revision number < 2.0.
922 if (musb->hwvers < MUSB_HWVERS_2000)
923 musb_writew(regs, MUSB_TXMAXP, hw_ep->max_packet_sz_tx);
924 else
925 musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
927 csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG;
928 if (musb_readw(regs, MUSB_TXCSR)
929 & MUSB_TXCSR_FIFONOTEMPTY)
930 csr |= MUSB_TXCSR_FLUSHFIFO;
931 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
932 csr |= MUSB_TXCSR_P_ISO;
934 /* set twice in case of double buffering */
935 musb_writew(regs, MUSB_TXCSR, csr);
936 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
937 musb_writew(regs, MUSB_TXCSR, csr);
939 } else {
940 u16 int_rxe = musb_readw(mbase, MUSB_INTRRXE);
942 if (hw_ep->is_shared_fifo)
943 musb_ep->is_in = 0;
944 if (musb_ep->is_in)
945 goto fail;
947 if (tmp > hw_ep->max_packet_sz_rx) {
948 DBG(4, "%s: packet size beyond hw fifo size\n", __func__);
949 goto fail;
952 int_rxe |= (1 << epnum);
953 musb_writew(mbase, MUSB_INTRRXE, int_rxe);
955 /* REVISIT if can_bulk_combine() use by updating "tmp"
956 * likewise high bandwidth periodic rx
958 /* Set RXMAXP with the FIFO size of the endpoint
959 * to disable double buffering mode.
961 if (musb->hwvers < MUSB_HWVERS_2000)
962 musb_writew(regs, MUSB_RXMAXP, hw_ep->max_packet_sz_rx);
963 else
964 musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz | (musb_ep->hb_mult << 11));
966 /* force shared fifo to OUT-only mode */
967 if (hw_ep->is_shared_fifo) {
968 csr = musb_readw(regs, MUSB_TXCSR);
969 csr &= ~(MUSB_TXCSR_MODE | MUSB_TXCSR_TXPKTRDY);
970 musb_writew(regs, MUSB_TXCSR, csr);
973 csr = MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_CLRDATATOG;
974 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
975 csr |= MUSB_RXCSR_P_ISO;
976 else if (musb_ep->type == USB_ENDPOINT_XFER_INT)
977 csr |= MUSB_RXCSR_DISNYET;
979 /* set twice in case of double buffering */
980 musb_writew(regs, MUSB_RXCSR, csr);
981 musb_writew(regs, MUSB_RXCSR, csr);
984 /* NOTE: all the I/O code _should_ work fine without DMA, in case
985 * for some reason you run out of channels here.
987 if (is_dma_capable() && musb->dma_controller) {
988 struct dma_controller *c = musb->dma_controller;
990 musb_ep->dma = c->channel_alloc(c, hw_ep,
991 (desc->bEndpointAddress & USB_DIR_IN));
992 } else
993 musb_ep->dma = NULL;
995 musb_ep->desc = desc;
996 musb_ep->busy = 0;
997 musb_ep->wedged = 0;
998 status = 0;
1000 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
1001 musb_driver_name, musb_ep->end_point.name,
1002 ({ char *s; switch (musb_ep->type) {
1003 case USB_ENDPOINT_XFER_BULK: s = "bulk"; break;
1004 case USB_ENDPOINT_XFER_INT: s = "int"; break;
1005 default: s = "iso"; break;
1006 }; s; }),
1007 musb_ep->is_in ? "IN" : "OUT",
1008 musb_ep->dma ? "dma, " : "",
1009 musb_ep->packet_sz);
1011 schedule_work(&musb->irq_work);
1013 fail:
1014 spin_unlock_irqrestore(&musb->lock, flags);
1015 return status;
1019 * Disable an endpoint flushing all requests queued.
1021 static int musb_gadget_disable(struct usb_ep *ep)
1023 unsigned long flags;
1024 struct musb *musb;
1025 u8 epnum;
1026 struct musb_ep *musb_ep;
1027 void __iomem *epio;
1028 int status = 0;
1030 musb_ep = to_musb_ep(ep);
1031 musb = musb_ep->musb;
1032 epnum = musb_ep->current_epnum;
1033 epio = musb->endpoints[epnum].regs;
1035 spin_lock_irqsave(&musb->lock, flags);
1036 musb_ep_select(musb->mregs, epnum);
1038 /* zero the endpoint sizes */
1039 if (musb_ep->is_in) {
1040 u16 int_txe = musb_readw(musb->mregs, MUSB_INTRTXE);
1041 int_txe &= ~(1 << epnum);
1042 musb_writew(musb->mregs, MUSB_INTRTXE, int_txe);
1043 musb_writew(epio, MUSB_TXMAXP, 0);
1044 } else {
1045 u16 int_rxe = musb_readw(musb->mregs, MUSB_INTRRXE);
1046 int_rxe &= ~(1 << epnum);
1047 musb_writew(musb->mregs, MUSB_INTRRXE, int_rxe);
1048 musb_writew(epio, MUSB_RXMAXP, 0);
1051 musb_ep->desc = NULL;
1053 /* abort all pending DMA and requests */
1054 nuke(musb_ep, -ESHUTDOWN);
1056 schedule_work(&musb->irq_work);
1058 spin_unlock_irqrestore(&(musb->lock), flags);
1060 DBG(2, "%s\n", musb_ep->end_point.name);
1062 return status;
1066 * Allocate a request for an endpoint.
1067 * Reused by ep0 code.
1069 struct usb_request *musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1071 struct musb_ep *musb_ep = to_musb_ep(ep);
1072 struct musb_request *request = NULL;
1074 request = kzalloc(sizeof *request, gfp_flags);
1075 if (!request) {
1076 DBG(4, "not enough memory\n");
1077 return NULL;
1080 INIT_LIST_HEAD(&request->request.list);
1081 request->request.dma = DMA_ADDR_INVALID;
1082 request->epnum = musb_ep->current_epnum;
1083 request->ep = musb_ep;
1085 return &request->request;
1089 * Free a request
1090 * Reused by ep0 code.
1092 void musb_free_request(struct usb_ep *ep, struct usb_request *req)
1094 kfree(to_musb_request(req));
1097 static LIST_HEAD(buffers);
1099 struct free_record {
1100 struct list_head list;
1101 struct device *dev;
1102 unsigned bytes;
1103 dma_addr_t dma;
1107 * Context: controller locked, IRQs blocked.
1109 void musb_ep_restart(struct musb *musb, struct musb_request *req)
1111 DBG(3, "<== %s request %p len %u on hw_ep%d\n",
1112 req->tx ? "TX/IN" : "RX/OUT",
1113 &req->request, req->request.length, req->epnum);
1115 musb_ep_select(musb->mregs, req->epnum);
1116 if (req->tx)
1117 txstate(musb, req);
1118 else
1119 rxstate(musb, req);
1122 static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req,
1123 gfp_t gfp_flags)
1125 struct musb_ep *musb_ep;
1126 struct musb_request *request;
1127 struct musb *musb;
1128 int status = 0;
1129 unsigned long lockflags;
1131 if (!ep || !req)
1132 return -EINVAL;
1133 if (!req->buf)
1134 return -ENODATA;
1136 musb_ep = to_musb_ep(ep);
1137 musb = musb_ep->musb;
1139 request = to_musb_request(req);
1140 request->musb = musb;
1142 if (request->ep != musb_ep)
1143 return -EINVAL;
1145 DBG(4, "<== to %s request=%p\n", ep->name, req);
1147 /* request is mine now... */
1148 request->request.actual = 0;
1149 request->request.status = -EINPROGRESS;
1150 request->epnum = musb_ep->current_epnum;
1151 request->tx = musb_ep->is_in;
1153 if (is_dma_capable() && musb_ep->dma) {
1154 if (request->request.dma == DMA_ADDR_INVALID) {
1155 request->request.dma = dma_map_single(
1156 musb->controller,
1157 request->request.buf,
1158 request->request.length,
1159 request->tx
1160 ? DMA_TO_DEVICE
1161 : DMA_FROM_DEVICE);
1162 request->mapped = 1;
1163 } else {
1164 dma_sync_single_for_device(musb->controller,
1165 request->request.dma,
1166 request->request.length,
1167 request->tx
1168 ? DMA_TO_DEVICE
1169 : DMA_FROM_DEVICE);
1170 request->mapped = 0;
1172 } else if (!req->buf) {
1173 return -ENODATA;
1174 } else
1175 request->mapped = 0;
1177 spin_lock_irqsave(&musb->lock, lockflags);
1179 /* don't queue if the ep is down */
1180 if (!musb_ep->desc) {
1181 DBG(4, "req %p queued to %s while ep %s\n",
1182 req, ep->name, "disabled");
1183 status = -ESHUTDOWN;
1184 goto cleanup;
1187 /* add request to the list */
1188 list_add_tail(&(request->request.list), &(musb_ep->req_list));
1190 /* it this is the head of the queue, start i/o ... */
1191 if (!musb_ep->busy && &request->request.list == musb_ep->req_list.next)
1192 musb_ep_restart(musb, request);
1194 cleanup:
1195 spin_unlock_irqrestore(&musb->lock, lockflags);
1196 return status;
1199 static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
1201 struct musb_ep *musb_ep = to_musb_ep(ep);
1202 struct usb_request *r;
1203 unsigned long flags;
1204 int status = 0;
1205 struct musb *musb = musb_ep->musb;
1207 if (!ep || !request || to_musb_request(request)->ep != musb_ep)
1208 return -EINVAL;
1210 spin_lock_irqsave(&musb->lock, flags);
1212 list_for_each_entry(r, &musb_ep->req_list, list) {
1213 if (r == request)
1214 break;
1216 if (r != request) {
1217 DBG(3, "request %p not queued to %s\n", request, ep->name);
1218 status = -EINVAL;
1219 goto done;
1222 /* if the hardware doesn't have the request, easy ... */
1223 if (musb_ep->req_list.next != &request->list || musb_ep->busy)
1224 musb_g_giveback(musb_ep, request, -ECONNRESET);
1226 /* ... else abort the dma transfer ... */
1227 else if (is_dma_capable() && musb_ep->dma) {
1228 struct dma_controller *c = musb->dma_controller;
1230 musb_ep_select(musb->mregs, musb_ep->current_epnum);
1231 if (c->channel_abort)
1232 status = c->channel_abort(musb_ep->dma);
1233 else
1234 status = -EBUSY;
1235 if (status == 0)
1236 musb_g_giveback(musb_ep, request, -ECONNRESET);
1237 } else {
1238 /* NOTE: by sticking to easily tested hardware/driver states,
1239 * we leave counting of in-flight packets imprecise.
1241 musb_g_giveback(musb_ep, request, -ECONNRESET);
1244 done:
1245 spin_unlock_irqrestore(&musb->lock, flags);
1246 return status;
1250 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1251 * data but will queue requests.
1253 * exported to ep0 code
1255 static int musb_gadget_set_halt(struct usb_ep *ep, int value)
1257 struct musb_ep *musb_ep = to_musb_ep(ep);
1258 u8 epnum = musb_ep->current_epnum;
1259 struct musb *musb = musb_ep->musb;
1260 void __iomem *epio = musb->endpoints[epnum].regs;
1261 void __iomem *mbase;
1262 unsigned long flags;
1263 u16 csr;
1264 struct musb_request *request;
1265 int status = 0;
1267 if (!ep)
1268 return -EINVAL;
1269 mbase = musb->mregs;
1271 spin_lock_irqsave(&musb->lock, flags);
1273 if ((USB_ENDPOINT_XFER_ISOC == musb_ep->type)) {
1274 status = -EINVAL;
1275 goto done;
1278 musb_ep_select(mbase, epnum);
1280 request = to_musb_request(next_request(musb_ep));
1281 if (value) {
1282 if (request) {
1283 DBG(3, "request in progress, cannot halt %s\n",
1284 ep->name);
1285 status = -EAGAIN;
1286 goto done;
1288 /* Cannot portably stall with non-empty FIFO */
1289 if (musb_ep->is_in) {
1290 csr = musb_readw(epio, MUSB_TXCSR);
1291 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1292 DBG(3, "FIFO busy, cannot halt %s\n", ep->name);
1293 status = -EAGAIN;
1294 goto done;
1297 } else
1298 musb_ep->wedged = 0;
1300 /* set/clear the stall and toggle bits */
1301 DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear");
1302 if (musb_ep->is_in) {
1303 csr = musb_readw(epio, MUSB_TXCSR);
1304 csr |= MUSB_TXCSR_P_WZC_BITS
1305 | MUSB_TXCSR_CLRDATATOG;
1306 if (value)
1307 csr |= MUSB_TXCSR_P_SENDSTALL;
1308 else
1309 csr &= ~(MUSB_TXCSR_P_SENDSTALL
1310 | MUSB_TXCSR_P_SENTSTALL);
1311 csr &= ~MUSB_TXCSR_TXPKTRDY;
1312 musb_writew(epio, MUSB_TXCSR, csr);
1313 } else {
1314 csr = musb_readw(epio, MUSB_RXCSR);
1315 csr |= MUSB_RXCSR_P_WZC_BITS
1316 | MUSB_RXCSR_FLUSHFIFO
1317 | MUSB_RXCSR_CLRDATATOG;
1318 if (value)
1319 csr |= MUSB_RXCSR_P_SENDSTALL;
1320 else
1321 csr &= ~(MUSB_RXCSR_P_SENDSTALL
1322 | MUSB_RXCSR_P_SENTSTALL);
1323 musb_writew(epio, MUSB_RXCSR, csr);
1326 /* maybe start the first request in the queue */
1327 if (!musb_ep->busy && !value && request) {
1328 DBG(3, "restarting the request\n");
1329 musb_ep_restart(musb, request);
1332 done:
1333 spin_unlock_irqrestore(&musb->lock, flags);
1334 return status;
1338 * Sets the halt feature with the clear requests ignored
1340 static int musb_gadget_set_wedge(struct usb_ep *ep)
1342 struct musb_ep *musb_ep = to_musb_ep(ep);
1344 if (!ep)
1345 return -EINVAL;
1347 musb_ep->wedged = 1;
1349 return usb_ep_set_halt(ep);
1352 static int musb_gadget_fifo_status(struct usb_ep *ep)
1354 struct musb_ep *musb_ep = to_musb_ep(ep);
1355 void __iomem *epio = musb_ep->hw_ep->regs;
1356 int retval = -EINVAL;
1358 if (musb_ep->desc && !musb_ep->is_in) {
1359 struct musb *musb = musb_ep->musb;
1360 int epnum = musb_ep->current_epnum;
1361 void __iomem *mbase = musb->mregs;
1362 unsigned long flags;
1364 spin_lock_irqsave(&musb->lock, flags);
1366 musb_ep_select(mbase, epnum);
1367 /* FIXME return zero unless RXPKTRDY is set */
1368 retval = musb_readw(epio, MUSB_RXCOUNT);
1370 spin_unlock_irqrestore(&musb->lock, flags);
1372 return retval;
1375 static void musb_gadget_fifo_flush(struct usb_ep *ep)
1377 struct musb_ep *musb_ep = to_musb_ep(ep);
1378 struct musb *musb = musb_ep->musb;
1379 u8 epnum = musb_ep->current_epnum;
1380 void __iomem *epio = musb->endpoints[epnum].regs;
1381 void __iomem *mbase;
1382 unsigned long flags;
1383 u16 csr, int_txe;
1385 mbase = musb->mregs;
1387 spin_lock_irqsave(&musb->lock, flags);
1388 musb_ep_select(mbase, (u8) epnum);
1390 /* disable interrupts */
1391 int_txe = musb_readw(mbase, MUSB_INTRTXE);
1392 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
1394 if (musb_ep->is_in) {
1395 csr = musb_readw(epio, MUSB_TXCSR);
1396 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1397 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS;
1398 musb_writew(epio, MUSB_TXCSR, csr);
1399 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1400 musb_writew(epio, MUSB_TXCSR, csr);
1402 } else {
1403 csr = musb_readw(epio, MUSB_RXCSR);
1404 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS;
1405 musb_writew(epio, MUSB_RXCSR, csr);
1406 musb_writew(epio, MUSB_RXCSR, csr);
1409 /* re-enable interrupt */
1410 musb_writew(mbase, MUSB_INTRTXE, int_txe);
1411 spin_unlock_irqrestore(&musb->lock, flags);
1414 static const struct usb_ep_ops musb_ep_ops = {
1415 .enable = musb_gadget_enable,
1416 .disable = musb_gadget_disable,
1417 .alloc_request = musb_alloc_request,
1418 .free_request = musb_free_request,
1419 .queue = musb_gadget_queue,
1420 .dequeue = musb_gadget_dequeue,
1421 .set_halt = musb_gadget_set_halt,
1422 .set_wedge = musb_gadget_set_wedge,
1423 .fifo_status = musb_gadget_fifo_status,
1424 .fifo_flush = musb_gadget_fifo_flush
1427 /* ----------------------------------------------------------------------- */
1429 static int musb_gadget_get_frame(struct usb_gadget *gadget)
1431 struct musb *musb = gadget_to_musb(gadget);
1433 return (int)musb_readw(musb->mregs, MUSB_FRAME);
1436 static int musb_gadget_wakeup(struct usb_gadget *gadget)
1438 struct musb *musb = gadget_to_musb(gadget);
1439 void __iomem *mregs = musb->mregs;
1440 unsigned long flags;
1441 int status = -EINVAL;
1442 u8 power, devctl;
1443 int retries;
1445 spin_lock_irqsave(&musb->lock, flags);
1447 switch (musb->xceiv->state) {
1448 case OTG_STATE_B_PERIPHERAL:
1449 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1450 * that's part of the standard usb 1.1 state machine, and
1451 * doesn't affect OTG transitions.
1453 if (musb->may_wakeup && musb->is_suspended)
1454 break;
1455 goto done;
1456 case OTG_STATE_B_IDLE:
1457 /* Start SRP ... OTG not required. */
1458 devctl = musb_readb(mregs, MUSB_DEVCTL);
1459 DBG(2, "Sending SRP: devctl: %02x\n", devctl);
1460 devctl |= MUSB_DEVCTL_SESSION;
1461 musb_writeb(mregs, MUSB_DEVCTL, devctl);
1462 devctl = musb_readb(mregs, MUSB_DEVCTL);
1463 retries = 100;
1464 while (!(devctl & MUSB_DEVCTL_SESSION)) {
1465 devctl = musb_readb(mregs, MUSB_DEVCTL);
1466 if (retries-- < 1)
1467 break;
1469 retries = 10000;
1470 while (devctl & MUSB_DEVCTL_SESSION) {
1471 devctl = musb_readb(mregs, MUSB_DEVCTL);
1472 if (retries-- < 1)
1473 break;
1476 /* Block idling for at least 1s */
1477 musb_platform_try_idle(musb,
1478 jiffies + msecs_to_jiffies(1 * HZ));
1480 status = 0;
1481 goto done;
1482 default:
1483 DBG(2, "Unhandled wake: %s\n", otg_state_string(musb));
1484 goto done;
1487 status = 0;
1489 power = musb_readb(mregs, MUSB_POWER);
1490 power |= MUSB_POWER_RESUME;
1491 musb_writeb(mregs, MUSB_POWER, power);
1492 DBG(2, "issue wakeup\n");
1494 /* FIXME do this next chunk in a timer callback, no udelay */
1495 mdelay(2);
1497 power = musb_readb(mregs, MUSB_POWER);
1498 power &= ~MUSB_POWER_RESUME;
1499 musb_writeb(mregs, MUSB_POWER, power);
1500 done:
1501 spin_unlock_irqrestore(&musb->lock, flags);
1502 return status;
1505 static int
1506 musb_gadget_set_self_powered(struct usb_gadget *gadget, int is_selfpowered)
1508 struct musb *musb = gadget_to_musb(gadget);
1510 musb->is_self_powered = !!is_selfpowered;
1511 return 0;
1514 static void musb_pullup(struct musb *musb, int is_on)
1516 u8 power;
1518 power = musb_readb(musb->mregs, MUSB_POWER);
1519 if (is_on)
1520 power |= MUSB_POWER_SOFTCONN;
1521 else
1522 power &= ~MUSB_POWER_SOFTCONN;
1524 /* FIXME if on, HdrcStart; if off, HdrcStop */
1526 DBG(3, "gadget %s D+ pullup %s\n",
1527 musb->gadget_driver->function, is_on ? "on" : "off");
1528 musb_writeb(musb->mregs, MUSB_POWER, power);
1531 #if 0
1532 static int musb_gadget_vbus_session(struct usb_gadget *gadget, int is_active)
1534 DBG(2, "<= %s =>\n", __func__);
1537 * FIXME iff driver's softconnect flag is set (as it is during probe,
1538 * though that can clear it), just musb_pullup().
1541 return -EINVAL;
1543 #endif
1545 static int musb_gadget_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1547 struct musb *musb = gadget_to_musb(gadget);
1549 if (!musb->xceiv->set_power)
1550 return -EOPNOTSUPP;
1551 return otg_set_power(musb->xceiv, mA);
1554 static int musb_gadget_pullup(struct usb_gadget *gadget, int is_on)
1556 struct musb *musb = gadget_to_musb(gadget);
1557 unsigned long flags;
1559 is_on = !!is_on;
1561 /* NOTE: this assumes we are sensing vbus; we'd rather
1562 * not pullup unless the B-session is active.
1564 spin_lock_irqsave(&musb->lock, flags);
1565 if (is_on != musb->softconnect) {
1566 musb->softconnect = is_on;
1567 musb_pullup(musb, is_on);
1569 spin_unlock_irqrestore(&musb->lock, flags);
1570 return 0;
1573 static const struct usb_gadget_ops musb_gadget_operations = {
1574 .get_frame = musb_gadget_get_frame,
1575 .wakeup = musb_gadget_wakeup,
1576 .set_selfpowered = musb_gadget_set_self_powered,
1577 /* .vbus_session = musb_gadget_vbus_session, */
1578 .vbus_draw = musb_gadget_vbus_draw,
1579 .pullup = musb_gadget_pullup,
1582 /* ----------------------------------------------------------------------- */
1584 /* Registration */
1586 /* Only this registration code "knows" the rule (from USB standards)
1587 * about there being only one external upstream port. It assumes
1588 * all peripheral ports are external...
1590 static struct musb *the_gadget;
1592 static void musb_gadget_release(struct device *dev)
1594 /* kref_put(WHAT) */
1595 dev_dbg(dev, "%s\n", __func__);
1599 static void __init
1600 init_peripheral_ep(struct musb *musb, struct musb_ep *ep, u8 epnum, int is_in)
1602 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1604 memset(ep, 0, sizeof *ep);
1606 ep->current_epnum = epnum;
1607 ep->musb = musb;
1608 ep->hw_ep = hw_ep;
1609 ep->is_in = is_in;
1611 INIT_LIST_HEAD(&ep->req_list);
1613 sprintf(ep->name, "ep%d%s", epnum,
1614 (!epnum || hw_ep->is_shared_fifo) ? "" : (
1615 is_in ? "in" : "out"));
1616 ep->end_point.name = ep->name;
1617 INIT_LIST_HEAD(&ep->end_point.ep_list);
1618 if (!epnum) {
1619 ep->end_point.maxpacket = 64;
1620 ep->end_point.ops = &musb_g_ep0_ops;
1621 musb->g.ep0 = &ep->end_point;
1622 } else {
1623 if (is_in)
1624 ep->end_point.maxpacket = hw_ep->max_packet_sz_tx;
1625 else
1626 ep->end_point.maxpacket = hw_ep->max_packet_sz_rx;
1627 ep->end_point.ops = &musb_ep_ops;
1628 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list);
1633 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1634 * to the rest of the driver state.
1636 static inline void __init musb_g_init_endpoints(struct musb *musb)
1638 u8 epnum;
1639 struct musb_hw_ep *hw_ep;
1640 unsigned count = 0;
1642 /* intialize endpoint list just once */
1643 INIT_LIST_HEAD(&(musb->g.ep_list));
1645 for (epnum = 0, hw_ep = musb->endpoints;
1646 epnum < musb->nr_endpoints;
1647 epnum++, hw_ep++) {
1648 if (hw_ep->is_shared_fifo /* || !epnum */) {
1649 init_peripheral_ep(musb, &hw_ep->ep_in, epnum, 0);
1650 count++;
1651 } else {
1652 if (hw_ep->max_packet_sz_tx) {
1653 init_peripheral_ep(musb, &hw_ep->ep_in,
1654 epnum, 1);
1655 count++;
1657 if (hw_ep->max_packet_sz_rx) {
1658 init_peripheral_ep(musb, &hw_ep->ep_out,
1659 epnum, 0);
1660 count++;
1666 /* called once during driver setup to initialize and link into
1667 * the driver model; memory is zeroed.
1669 int __init musb_gadget_setup(struct musb *musb)
1671 int status;
1673 /* REVISIT minor race: if (erroneously) setting up two
1674 * musb peripherals at the same time, only the bus lock
1675 * is probably held.
1677 if (the_gadget)
1678 return -EBUSY;
1679 the_gadget = musb;
1681 musb->g.ops = &musb_gadget_operations;
1682 musb->g.is_dualspeed = 1;
1683 musb->g.speed = USB_SPEED_UNKNOWN;
1685 /* this "gadget" abstracts/virtualizes the controller */
1686 dev_set_name(&musb->g.dev, "gadget");
1687 musb->g.dev.parent = musb->controller;
1688 musb->g.dev.dma_mask = musb->controller->dma_mask;
1689 musb->g.dev.release = musb_gadget_release;
1690 musb->g.name = musb_driver_name;
1692 if (is_otg_enabled(musb))
1693 musb->g.is_otg = 1;
1695 musb_g_init_endpoints(musb);
1697 musb->is_active = 0;
1698 musb_platform_try_idle(musb, 0);
1700 status = device_register(&musb->g.dev);
1701 if (status != 0)
1702 the_gadget = NULL;
1703 return status;
1706 void musb_gadget_cleanup(struct musb *musb)
1708 if (musb != the_gadget)
1709 return;
1711 device_unregister(&musb->g.dev);
1712 the_gadget = NULL;
1716 * Register the gadget driver. Used by gadget drivers when
1717 * registering themselves with the controller.
1719 * -EINVAL something went wrong (not driver)
1720 * -EBUSY another gadget is already using the controller
1721 * -ENOMEM no memeory to perform the operation
1723 * @param driver the gadget driver
1724 * @param bind the driver's bind function
1725 * @return <0 if error, 0 if everything is fine
1727 int usb_gadget_probe_driver(struct usb_gadget_driver *driver,
1728 int (*bind)(struct usb_gadget *))
1730 int retval;
1731 unsigned long flags;
1732 struct musb *musb = the_gadget;
1734 if (!driver
1735 || driver->speed != USB_SPEED_HIGH
1736 || !bind || !driver->setup)
1737 return -EINVAL;
1739 /* driver must be initialized to support peripheral mode */
1740 if (!musb) {
1741 DBG(1, "%s, no dev??\n", __func__);
1742 return -ENODEV;
1745 DBG(3, "registering driver %s\n", driver->function);
1746 spin_lock_irqsave(&musb->lock, flags);
1748 if (musb->gadget_driver) {
1749 DBG(1, "%s is already bound to %s\n",
1750 musb_driver_name,
1751 musb->gadget_driver->driver.name);
1752 retval = -EBUSY;
1753 } else {
1754 musb->gadget_driver = driver;
1755 musb->g.dev.driver = &driver->driver;
1756 driver->driver.bus = NULL;
1757 musb->softconnect = 1;
1758 retval = 0;
1761 spin_unlock_irqrestore(&musb->lock, flags);
1763 if (retval == 0) {
1764 retval = bind(&musb->g);
1765 if (retval != 0) {
1766 DBG(3, "bind to driver %s failed --> %d\n",
1767 driver->driver.name, retval);
1768 musb->gadget_driver = NULL;
1769 musb->g.dev.driver = NULL;
1772 spin_lock_irqsave(&musb->lock, flags);
1774 otg_set_peripheral(musb->xceiv, &musb->g);
1775 musb->xceiv->state = OTG_STATE_B_IDLE;
1776 musb->is_active = 1;
1778 /* FIXME this ignores the softconnect flag. Drivers are
1779 * allowed hold the peripheral inactive until for example
1780 * userspace hooks up printer hardware or DSP codecs, so
1781 * hosts only see fully functional devices.
1784 if (!is_otg_enabled(musb))
1785 musb_start(musb);
1787 otg_set_peripheral(musb->xceiv, &musb->g);
1789 spin_unlock_irqrestore(&musb->lock, flags);
1791 if (is_otg_enabled(musb)) {
1792 DBG(3, "OTG startup...\n");
1794 /* REVISIT: funcall to other code, which also
1795 * handles power budgeting ... this way also
1796 * ensures HdrcStart is indirectly called.
1798 retval = usb_add_hcd(musb_to_hcd(musb), -1, 0);
1799 if (retval < 0) {
1800 DBG(1, "add_hcd failed, %d\n", retval);
1801 spin_lock_irqsave(&musb->lock, flags);
1802 otg_set_peripheral(musb->xceiv, NULL);
1803 musb->gadget_driver = NULL;
1804 musb->g.dev.driver = NULL;
1805 spin_unlock_irqrestore(&musb->lock, flags);
1810 return retval;
1812 EXPORT_SYMBOL(usb_gadget_probe_driver);
1814 static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
1816 int i;
1817 struct musb_hw_ep *hw_ep;
1819 /* don't disconnect if it's not connected */
1820 if (musb->g.speed == USB_SPEED_UNKNOWN)
1821 driver = NULL;
1822 else
1823 musb->g.speed = USB_SPEED_UNKNOWN;
1825 /* deactivate the hardware */
1826 if (musb->softconnect) {
1827 musb->softconnect = 0;
1828 musb_pullup(musb, 0);
1830 musb_stop(musb);
1832 /* killing any outstanding requests will quiesce the driver;
1833 * then report disconnect
1835 if (driver) {
1836 for (i = 0, hw_ep = musb->endpoints;
1837 i < musb->nr_endpoints;
1838 i++, hw_ep++) {
1839 musb_ep_select(musb->mregs, i);
1840 if (hw_ep->is_shared_fifo /* || !epnum */) {
1841 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1842 } else {
1843 if (hw_ep->max_packet_sz_tx)
1844 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1845 if (hw_ep->max_packet_sz_rx)
1846 nuke(&hw_ep->ep_out, -ESHUTDOWN);
1850 spin_unlock(&musb->lock);
1851 driver->disconnect(&musb->g);
1852 spin_lock(&musb->lock);
1857 * Unregister the gadget driver. Used by gadget drivers when
1858 * unregistering themselves from the controller.
1860 * @param driver the gadget driver to unregister
1862 int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1864 unsigned long flags;
1865 int retval = 0;
1866 struct musb *musb = the_gadget;
1868 if (!driver || !driver->unbind || !musb)
1869 return -EINVAL;
1871 /* REVISIT always use otg_set_peripheral() here too;
1872 * this needs to shut down the OTG engine.
1875 spin_lock_irqsave(&musb->lock, flags);
1877 #ifdef CONFIG_USB_MUSB_OTG
1878 musb_hnp_stop(musb);
1879 #endif
1881 if (musb->gadget_driver == driver) {
1883 (void) musb_gadget_vbus_draw(&musb->g, 0);
1885 musb->xceiv->state = OTG_STATE_UNDEFINED;
1886 stop_activity(musb, driver);
1887 otg_set_peripheral(musb->xceiv, NULL);
1889 DBG(3, "unregistering driver %s\n", driver->function);
1890 spin_unlock_irqrestore(&musb->lock, flags);
1891 driver->unbind(&musb->g);
1892 spin_lock_irqsave(&musb->lock, flags);
1894 musb->gadget_driver = NULL;
1895 musb->g.dev.driver = NULL;
1897 musb->is_active = 0;
1898 musb_platform_try_idle(musb, 0);
1899 } else
1900 retval = -EINVAL;
1901 spin_unlock_irqrestore(&musb->lock, flags);
1903 if (is_otg_enabled(musb) && retval == 0) {
1904 usb_remove_hcd(musb_to_hcd(musb));
1905 /* FIXME we need to be able to register another
1906 * gadget driver here and have everything work;
1907 * that currently misbehaves.
1911 return retval;
1913 EXPORT_SYMBOL(usb_gadget_unregister_driver);
1916 /* ----------------------------------------------------------------------- */
1918 /* lifecycle operations called through plat_uds.c */
1920 void musb_g_resume(struct musb *musb)
1922 musb->is_suspended = 0;
1923 switch (musb->xceiv->state) {
1924 case OTG_STATE_B_IDLE:
1925 break;
1926 case OTG_STATE_B_WAIT_ACON:
1927 case OTG_STATE_B_PERIPHERAL:
1928 musb->is_active = 1;
1929 if (musb->gadget_driver && musb->gadget_driver->resume) {
1930 spin_unlock(&musb->lock);
1931 musb->gadget_driver->resume(&musb->g);
1932 spin_lock(&musb->lock);
1934 break;
1935 default:
1936 WARNING("unhandled RESUME transition (%s)\n",
1937 otg_state_string(musb));
1941 /* called when SOF packets stop for 3+ msec */
1942 void musb_g_suspend(struct musb *musb)
1944 u8 devctl;
1946 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1947 DBG(3, "devctl %02x\n", devctl);
1949 switch (musb->xceiv->state) {
1950 case OTG_STATE_B_IDLE:
1951 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
1952 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
1953 break;
1954 case OTG_STATE_B_PERIPHERAL:
1955 musb->is_suspended = 1;
1956 if (musb->gadget_driver && musb->gadget_driver->suspend) {
1957 spin_unlock(&musb->lock);
1958 musb->gadget_driver->suspend(&musb->g);
1959 spin_lock(&musb->lock);
1961 break;
1962 default:
1963 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
1964 * A_PERIPHERAL may need care too
1966 WARNING("unhandled SUSPEND transition (%s)\n",
1967 otg_state_string(musb));
1971 /* Called during SRP */
1972 void musb_g_wakeup(struct musb *musb)
1974 musb_gadget_wakeup(&musb->g);
1977 /* called when VBUS drops below session threshold, and in other cases */
1978 void musb_g_disconnect(struct musb *musb)
1980 void __iomem *mregs = musb->mregs;
1981 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
1983 DBG(3, "devctl %02x\n", devctl);
1985 /* clear HR */
1986 musb_writeb(mregs, MUSB_DEVCTL, devctl & MUSB_DEVCTL_SESSION);
1988 /* don't draw vbus until new b-default session */
1989 (void) musb_gadget_vbus_draw(&musb->g, 0);
1991 musb->g.speed = USB_SPEED_UNKNOWN;
1992 if (musb->gadget_driver && musb->gadget_driver->disconnect) {
1993 spin_unlock(&musb->lock);
1994 musb->gadget_driver->disconnect(&musb->g);
1995 spin_lock(&musb->lock);
1998 switch (musb->xceiv->state) {
1999 default:
2000 #ifdef CONFIG_USB_MUSB_OTG
2001 DBG(2, "Unhandled disconnect %s, setting a_idle\n",
2002 otg_state_string(musb));
2003 musb->xceiv->state = OTG_STATE_A_IDLE;
2004 MUSB_HST_MODE(musb);
2005 break;
2006 case OTG_STATE_A_PERIPHERAL:
2007 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
2008 MUSB_HST_MODE(musb);
2009 break;
2010 case OTG_STATE_B_WAIT_ACON:
2011 case OTG_STATE_B_HOST:
2012 #endif
2013 case OTG_STATE_B_PERIPHERAL:
2014 case OTG_STATE_B_IDLE:
2015 musb->xceiv->state = OTG_STATE_B_IDLE;
2016 break;
2017 case OTG_STATE_B_SRP_INIT:
2018 break;
2021 musb->is_active = 0;
2024 void musb_g_reset(struct musb *musb)
2025 __releases(musb->lock)
2026 __acquires(musb->lock)
2028 void __iomem *mbase = musb->mregs;
2029 u8 devctl = musb_readb(mbase, MUSB_DEVCTL);
2030 u8 power;
2032 DBG(3, "<== %s addr=%x driver '%s'\n",
2033 (devctl & MUSB_DEVCTL_BDEVICE)
2034 ? "B-Device" : "A-Device",
2035 musb_readb(mbase, MUSB_FADDR),
2036 musb->gadget_driver
2037 ? musb->gadget_driver->driver.name
2038 : NULL
2041 /* report disconnect, if we didn't already (flushing EP state) */
2042 if (musb->g.speed != USB_SPEED_UNKNOWN)
2043 musb_g_disconnect(musb);
2045 /* clear HR */
2046 else if (devctl & MUSB_DEVCTL_HR)
2047 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
2050 /* what speed did we negotiate? */
2051 power = musb_readb(mbase, MUSB_POWER);
2052 musb->g.speed = (power & MUSB_POWER_HSMODE)
2053 ? USB_SPEED_HIGH : USB_SPEED_FULL;
2055 /* start in USB_STATE_DEFAULT */
2056 musb->is_active = 1;
2057 musb->is_suspended = 0;
2058 MUSB_DEV_MODE(musb);
2059 musb->address = 0;
2060 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
2062 musb->may_wakeup = 0;
2063 musb->g.b_hnp_enable = 0;
2064 musb->g.a_alt_hnp_support = 0;
2065 musb->g.a_hnp_support = 0;
2067 /* Normal reset, as B-Device;
2068 * or else after HNP, as A-Device
2070 if (devctl & MUSB_DEVCTL_BDEVICE) {
2071 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
2072 musb->g.is_a_peripheral = 0;
2073 } else if (is_otg_enabled(musb)) {
2074 musb->xceiv->state = OTG_STATE_A_PERIPHERAL;
2075 musb->g.is_a_peripheral = 1;
2076 } else
2077 WARN_ON(1);
2079 /* start with default limits on VBUS power draw */
2080 (void) musb_gadget_vbus_draw(&musb->g,
2081 is_otg_enabled(musb) ? 8 : 100);