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
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
25 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <linux/kernel.h>
36 #include <linux/list.h>
37 #include <linux/timer.h>
38 #include <linux/module.h>
39 #include <linux/smp.h>
40 #include <linux/spinlock.h>
41 #include <linux/delay.h>
42 #include <linux/moduleparam.h>
43 #include <linux/stat.h>
44 #include <linux/dma-mapping.h>
46 #include "musb_core.h"
49 /* MUSB PERIPHERAL status 3-mar-2006:
51 * - EP0 seems solid. It passes both USBCV and usbtest control cases.
54 * + remote wakeup to Linux hosts work, but saw USBCV failures;
55 * in one test run (operator error?)
56 * + endpoint halt tests -- in both usbtest and usbcv -- seem
57 * to break when dma is enabled ... is something wrongly
60 * - Mass storage behaved ok when last tested. Network traffic patterns
61 * (with lots of short transfers etc) need retesting; they turn up the
62 * worst cases of the DMA, since short packets are typical but are not
66 * + both pio and dma behave in with network and g_zero tests
67 * + no cppi throughput issues other than no-hw-queueing
68 * + failed with FLAT_REG (DaVinci)
69 * + seems to behave with double buffering, PIO -and- CPPI
70 * + with gadgetfs + AIO, requests got lost?
73 * + both pio and dma behave in with network and g_zero tests
74 * + dma is slow in typical case (short_not_ok is clear)
75 * + double buffering ok with PIO
76 * + double buffering *FAILS* with CPPI, wrong data bytes sometimes
77 * + request lossage observed with gadgetfs
79 * - ISO not tested ... might work, but only weakly isochronous
81 * - Gadget driver disabling of softconnect during bind() is ignored; so
82 * drivers can't hold off host requests until userspace is ready.
83 * (Workaround: they can turn it off later.)
85 * - PORTABILITY (assumes PIO works):
86 * + DaVinci, basically works with cppi dma
87 * + OMAP 2430, ditto with mentor dma
88 * + TUSB 6010, platform-specific dma in the works
91 /* ----------------------------------------------------------------------- */
94 * Immediately complete a request.
96 * @param request the request to complete
97 * @param status the status to complete the request with
98 * Context: controller locked, IRQs blocked.
100 void musb_g_giveback(
102 struct usb_request
*request
,
104 __releases(ep
->musb
->lock
)
105 __acquires(ep
->musb
->lock
)
107 struct musb_request
*req
;
111 req
= to_musb_request(request
);
113 list_del(&request
->list
);
114 if (req
->request
.status
== -EINPROGRESS
)
115 req
->request
.status
= status
;
119 spin_unlock(&musb
->lock
);
120 if (is_dma_capable()) {
122 dma_unmap_single(musb
->controller
,
128 req
->request
.dma
= DMA_ADDR_INVALID
;
130 } else if (req
->request
.dma
!= DMA_ADDR_INVALID
)
131 dma_sync_single_for_cpu(musb
->controller
,
138 if (request
->status
== 0)
139 DBG(5, "%s done request %p, %d/%d\n",
140 ep
->end_point
.name
, request
,
141 req
->request
.actual
, req
->request
.length
);
143 DBG(2, "%s request %p, %d/%d fault %d\n",
144 ep
->end_point
.name
, request
,
145 req
->request
.actual
, req
->request
.length
,
147 req
->request
.complete(&req
->ep
->end_point
, &req
->request
);
148 spin_lock(&musb
->lock
);
152 /* ----------------------------------------------------------------------- */
155 * Abort requests queued to an endpoint using the status. Synchronous.
156 * caller locked controller and blocked irqs, and selected this ep.
158 static void nuke(struct musb_ep
*ep
, const int status
)
160 struct musb_request
*req
= NULL
;
161 void __iomem
*epio
= ep
->musb
->endpoints
[ep
->current_epnum
].regs
;
165 if (is_dma_capable() && ep
->dma
) {
166 struct dma_controller
*c
= ep
->musb
->dma_controller
;
171 * The programming guide says that we must not clear
172 * the DMAMODE bit before DMAENAB, so we only
173 * clear it in the second write...
175 musb_writew(epio
, MUSB_TXCSR
,
176 MUSB_TXCSR_DMAMODE
| MUSB_TXCSR_FLUSHFIFO
);
177 musb_writew(epio
, MUSB_TXCSR
,
178 0 | MUSB_TXCSR_FLUSHFIFO
);
180 musb_writew(epio
, MUSB_RXCSR
,
181 0 | MUSB_RXCSR_FLUSHFIFO
);
182 musb_writew(epio
, MUSB_RXCSR
,
183 0 | MUSB_RXCSR_FLUSHFIFO
);
186 value
= c
->channel_abort(ep
->dma
);
187 DBG(value
? 1 : 6, "%s: abort DMA --> %d\n", ep
->name
, value
);
188 c
->channel_release(ep
->dma
);
192 while (!list_empty(&(ep
->req_list
))) {
193 req
= container_of(ep
->req_list
.next
, struct musb_request
,
195 musb_g_giveback(ep
, &req
->request
, status
);
199 /* ----------------------------------------------------------------------- */
201 /* Data transfers - pure PIO, pure DMA, or mixed mode */
204 * This assumes the separate CPPI engine is responding to DMA requests
205 * from the usb core ... sequenced a bit differently from mentor dma.
208 static inline int max_ep_writesize(struct musb
*musb
, struct musb_ep
*ep
)
210 if (can_bulk_split(musb
, ep
->type
))
211 return ep
->hw_ep
->max_packet_sz_tx
;
213 return ep
->packet_sz
;
217 #ifdef CONFIG_USB_INVENTRA_DMA
219 /* Peripheral tx (IN) using Mentor DMA works as follows:
220 Only mode 0 is used for transfers <= wPktSize,
221 mode 1 is used for larger transfers,
223 One of the following happens:
224 - Host sends IN token which causes an endpoint interrupt
226 -> if DMA is currently busy, exit.
227 -> if queue is non-empty, txstate().
229 - Request is queued by the gadget driver.
230 -> if queue was previously empty, txstate()
235 | (data is transferred to the FIFO, then sent out when
236 | IN token(s) are recd from Host.
237 | -> DMA interrupt on completion
239 | -> stop DMA, ~DMAENAB,
240 | -> set TxPktRdy for last short pkt or zlp
241 | -> Complete Request
242 | -> Continue next request (call txstate)
243 |___________________________________|
245 * Non-Mentor DMA engines can of course work differently, such as by
246 * upleveling from irq-per-packet to irq-per-buffer.
252 * An endpoint is transmitting data. This can be called either from
253 * the IRQ routine or from ep.queue() to kickstart a request on an
256 * Context: controller locked, IRQs blocked, endpoint selected
258 static void txstate(struct musb
*musb
, struct musb_request
*req
)
260 u8 epnum
= req
->epnum
;
261 struct musb_ep
*musb_ep
;
262 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
263 struct usb_request
*request
;
264 u16 fifo_count
= 0, csr
;
269 /* we shouldn't get here while DMA is active ... but we do ... */
270 if (dma_channel_status(musb_ep
->dma
) == MUSB_DMA_STATUS_BUSY
) {
271 DBG(4, "dma pending...\n");
275 /* read TXCSR before */
276 csr
= musb_readw(epio
, MUSB_TXCSR
);
278 request
= &req
->request
;
279 fifo_count
= min(max_ep_writesize(musb
, musb_ep
),
280 (int)(request
->length
- request
->actual
));
282 if (csr
& MUSB_TXCSR_TXPKTRDY
) {
283 DBG(5, "%s old packet still ready , txcsr %03x\n",
284 musb_ep
->end_point
.name
, csr
);
288 if (csr
& MUSB_TXCSR_P_SENDSTALL
) {
289 DBG(5, "%s stalling, txcsr %03x\n",
290 musb_ep
->end_point
.name
, csr
);
294 DBG(4, "hw_ep%d, maxpacket %d, fifo count %d, txcsr %03x\n",
295 epnum
, musb_ep
->packet_sz
, fifo_count
,
298 #ifndef CONFIG_MUSB_PIO_ONLY
299 if (is_dma_capable() && musb_ep
->dma
) {
300 struct dma_controller
*c
= musb
->dma_controller
;
302 use_dma
= (request
->dma
!= DMA_ADDR_INVALID
);
304 /* MUSB_TXCSR_P_ISO is still set correctly */
306 #ifdef CONFIG_USB_INVENTRA_DMA
310 /* setup DMA, then program endpoint CSR */
311 request_size
= min(request
->length
,
312 musb_ep
->dma
->max_len
);
313 if (request_size
< musb_ep
->packet_sz
)
314 musb_ep
->dma
->desired_mode
= 0;
316 musb_ep
->dma
->desired_mode
= 1;
318 use_dma
= use_dma
&& c
->channel_program(
319 musb_ep
->dma
, musb_ep
->packet_sz
,
320 musb_ep
->dma
->desired_mode
,
321 request
->dma
, request_size
);
323 if (musb_ep
->dma
->desired_mode
== 0) {
325 * We must not clear the DMAMODE bit
326 * before the DMAENAB bit -- and the
327 * latter doesn't always get cleared
328 * before we get here...
330 csr
&= ~(MUSB_TXCSR_AUTOSET
331 | MUSB_TXCSR_DMAENAB
);
332 musb_writew(epio
, MUSB_TXCSR
, csr
333 | MUSB_TXCSR_P_WZC_BITS
);
334 csr
&= ~MUSB_TXCSR_DMAMODE
;
335 csr
|= (MUSB_TXCSR_DMAENAB
|
337 /* against programming guide */
339 csr
|= (MUSB_TXCSR_AUTOSET
344 csr
&= ~MUSB_TXCSR_P_UNDERRUN
;
345 musb_writew(epio
, MUSB_TXCSR
, csr
);
349 #elif defined(CONFIG_USB_TI_CPPI_DMA)
350 /* program endpoint CSR first, then setup DMA */
351 csr
&= ~(MUSB_TXCSR_P_UNDERRUN
| MUSB_TXCSR_TXPKTRDY
);
352 csr
|= MUSB_TXCSR_DMAENAB
| MUSB_TXCSR_DMAMODE
|
354 musb_writew(epio
, MUSB_TXCSR
,
355 (MUSB_TXCSR_P_WZC_BITS
& ~MUSB_TXCSR_P_UNDERRUN
)
358 /* ensure writebuffer is empty */
359 csr
= musb_readw(epio
, MUSB_TXCSR
);
361 /* NOTE host side sets DMAENAB later than this; both are
362 * OK since the transfer dma glue (between CPPI and Mentor
363 * fifos) just tells CPPI it could start. Data only moves
364 * to the USB TX fifo when both fifos are ready.
367 /* "mode" is irrelevant here; handle terminating ZLPs like
368 * PIO does, since the hardware RNDIS mode seems unreliable
369 * except for the last-packet-is-already-short case.
371 use_dma
= use_dma
&& c
->channel_program(
372 musb_ep
->dma
, musb_ep
->packet_sz
,
377 c
->channel_release(musb_ep
->dma
);
379 csr
&= ~MUSB_TXCSR_DMAENAB
;
380 musb_writew(epio
, MUSB_TXCSR
, csr
);
381 /* invariant: prequest->buf is non-null */
383 #elif defined(CONFIG_USB_TUSB_OMAP_DMA)
384 use_dma
= use_dma
&& c
->channel_program(
385 musb_ep
->dma
, musb_ep
->packet_sz
,
394 musb_write_fifo(musb_ep
->hw_ep
, fifo_count
,
395 (u8
*) (request
->buf
+ request
->actual
));
396 request
->actual
+= fifo_count
;
397 csr
|= MUSB_TXCSR_TXPKTRDY
;
398 csr
&= ~MUSB_TXCSR_P_UNDERRUN
;
399 musb_writew(epio
, MUSB_TXCSR
, csr
);
402 /* host may already have the data when this message shows... */
403 DBG(3, "%s TX/IN %s len %d/%d, txcsr %04x, fifo %d/%d\n",
404 musb_ep
->end_point
.name
, use_dma
? "dma" : "pio",
405 request
->actual
, request
->length
,
406 musb_readw(epio
, MUSB_TXCSR
),
408 musb_readw(epio
, MUSB_TXMAXP
));
412 * FIFO state update (e.g. data ready).
413 * Called from IRQ, with controller locked.
415 void musb_g_tx(struct musb
*musb
, u8 epnum
)
418 struct usb_request
*request
;
419 u8 __iomem
*mbase
= musb
->mregs
;
420 struct musb_ep
*musb_ep
= &musb
->endpoints
[epnum
].ep_in
;
421 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
422 struct dma_channel
*dma
;
424 musb_ep_select(mbase
, epnum
);
425 request
= next_request(musb_ep
);
427 csr
= musb_readw(epio
, MUSB_TXCSR
);
428 DBG(4, "<== %s, txcsr %04x\n", musb_ep
->end_point
.name
, csr
);
430 dma
= is_dma_capable() ? musb_ep
->dma
: NULL
;
432 /* REVISIT for high bandwidth, MUSB_TXCSR_P_INCOMPTX
433 * probably rates reporting as a host error
435 if (csr
& MUSB_TXCSR_P_SENTSTALL
) {
436 csr
|= MUSB_TXCSR_P_WZC_BITS
;
437 csr
&= ~MUSB_TXCSR_P_SENTSTALL
;
438 musb_writew(epio
, MUSB_TXCSR
, csr
);
439 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
440 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
441 musb
->dma_controller
->channel_abort(dma
);
445 musb_g_giveback(musb_ep
, request
, -EPIPE
);
450 if (csr
& MUSB_TXCSR_P_UNDERRUN
) {
451 /* we NAKed, no big deal ... little reason to care */
452 csr
|= MUSB_TXCSR_P_WZC_BITS
;
453 csr
&= ~(MUSB_TXCSR_P_UNDERRUN
454 | MUSB_TXCSR_TXPKTRDY
);
455 musb_writew(epio
, MUSB_TXCSR
, csr
);
456 DBG(20, "underrun on ep%d, req %p\n", epnum
, request
);
459 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
460 /* SHOULD NOT HAPPEN ... has with cppi though, after
461 * changing SENDSTALL (and other cases); harmless?
463 DBG(5, "%s dma still busy?\n", musb_ep
->end_point
.name
);
470 if (dma
&& (csr
& MUSB_TXCSR_DMAENAB
)) {
472 csr
|= MUSB_TXCSR_P_WZC_BITS
;
473 csr
&= ~(MUSB_TXCSR_DMAENAB
474 | MUSB_TXCSR_P_UNDERRUN
475 | MUSB_TXCSR_TXPKTRDY
);
476 musb_writew(epio
, MUSB_TXCSR
, csr
);
477 /* ensure writebuffer is empty */
478 csr
= musb_readw(epio
, MUSB_TXCSR
);
479 request
->actual
+= musb_ep
->dma
->actual_len
;
480 DBG(4, "TXCSR%d %04x, dma off, "
483 musb_ep
->dma
->actual_len
,
487 if (is_dma
|| request
->actual
== request
->length
) {
489 /* First, maybe a terminating short packet.
490 * Some DMA engines might handle this by
496 % musb_ep
->packet_sz
)
498 #ifdef CONFIG_USB_INVENTRA_DMA
500 ((!dma
->desired_mode
) ||
502 (musb_ep
->packet_sz
- 1))))
505 /* on dma completion, fifo may not
506 * be available yet ...
508 if (csr
& MUSB_TXCSR_TXPKTRDY
)
511 DBG(4, "sending zero pkt\n");
512 musb_writew(epio
, MUSB_TXCSR
,
514 | MUSB_TXCSR_TXPKTRDY
);
518 /* ... or if not, then complete it */
519 musb_g_giveback(musb_ep
, request
, 0);
521 /* kickstart next transfer if appropriate;
522 * the packet that just completed might not
523 * be transmitted for hours or days.
524 * REVISIT for double buffering...
525 * FIXME revisit for stalls too...
527 musb_ep_select(mbase
, epnum
);
528 csr
= musb_readw(epio
, MUSB_TXCSR
);
529 if (csr
& MUSB_TXCSR_FIFONOTEMPTY
)
531 request
= musb_ep
->desc
532 ? next_request(musb_ep
)
535 DBG(4, "%s idle now\n",
536 musb_ep
->end_point
.name
);
541 txstate(musb
, to_musb_request(request
));
547 /* ------------------------------------------------------------ */
549 #ifdef CONFIG_USB_INVENTRA_DMA
551 /* Peripheral rx (OUT) using Mentor DMA works as follows:
552 - Only mode 0 is used.
554 - Request is queued by the gadget class driver.
555 -> if queue was previously empty, rxstate()
557 - Host sends OUT token which causes an endpoint interrupt
559 | -> if request queued, call rxstate
561 | | -> DMA interrupt on completion
565 | | -> if data recd = max expected
566 | | by the request, or host
567 | | sent a short packet,
568 | | complete the request,
569 | | and start the next one.
570 | |_____________________________________|
571 | else just wait for the host
572 | to send the next OUT token.
573 |__________________________________________________|
575 * Non-Mentor DMA engines can of course work differently.
581 * Context: controller locked, IRQs blocked, endpoint selected
583 static void rxstate(struct musb
*musb
, struct musb_request
*req
)
586 const u8 epnum
= req
->epnum
;
587 struct usb_request
*request
= &req
->request
;
588 struct musb_ep
*musb_ep
= &musb
->endpoints
[epnum
].ep_out
;
589 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
590 unsigned fifo_count
= 0;
591 u16 len
= musb_ep
->packet_sz
;
593 csr
= musb_readw(epio
, MUSB_RXCSR
);
595 if (is_cppi_enabled() && musb_ep
->dma
) {
596 struct dma_controller
*c
= musb
->dma_controller
;
597 struct dma_channel
*channel
= musb_ep
->dma
;
599 /* NOTE: CPPI won't actually stop advancing the DMA
600 * queue after short packet transfers, so this is almost
601 * always going to run as IRQ-per-packet DMA so that
602 * faults will be handled correctly.
604 if (c
->channel_program(channel
,
606 !request
->short_not_ok
,
607 request
->dma
+ request
->actual
,
608 request
->length
- request
->actual
)) {
610 /* make sure that if an rxpkt arrived after the irq,
611 * the cppi engine will be ready to take it as soon
614 csr
&= ~(MUSB_RXCSR_AUTOCLEAR
615 | MUSB_RXCSR_DMAMODE
);
616 csr
|= MUSB_RXCSR_DMAENAB
| MUSB_RXCSR_P_WZC_BITS
;
617 musb_writew(epio
, MUSB_RXCSR
, csr
);
622 if (csr
& MUSB_RXCSR_RXPKTRDY
) {
623 len
= musb_readw(epio
, MUSB_RXCOUNT
);
624 if (request
->actual
< request
->length
) {
625 #ifdef CONFIG_USB_INVENTRA_DMA
626 if (is_dma_capable() && musb_ep
->dma
) {
627 struct dma_controller
*c
;
628 struct dma_channel
*channel
;
631 c
= musb
->dma_controller
;
632 channel
= musb_ep
->dma
;
634 /* We use DMA Req mode 0 in rx_csr, and DMA controller operates in
635 * mode 0 only. So we do not get endpoint interrupts due to DMA
636 * completion. We only get interrupts from DMA controller.
638 * We could operate in DMA mode 1 if we knew the size of the tranfer
639 * in advance. For mass storage class, request->length = what the host
640 * sends, so that'd work. But for pretty much everything else,
641 * request->length is routinely more than what the host sends. For
642 * most these gadgets, end of is signified either by a short packet,
643 * or filling the last byte of the buffer. (Sending extra data in
644 * that last pckate should trigger an overflow fault.) But in mode 1,
645 * we don't get DMA completion interrrupt for short packets.
647 * Theoretically, we could enable DMAReq irq (MUSB_RXCSR_DMAMODE = 1),
648 * to get endpoint interrupt on every DMA req, but that didn't seem
651 * REVISIT an updated g_file_storage can set req->short_not_ok, which
652 * then becomes usable as a runtime "use mode 1" hint...
655 csr
|= MUSB_RXCSR_DMAENAB
;
657 csr
|= MUSB_RXCSR_AUTOCLEAR
;
658 /* csr |= MUSB_RXCSR_DMAMODE; */
660 /* this special sequence (enabling and then
661 * disabling MUSB_RXCSR_DMAMODE) is required
662 * to get DMAReq to activate
664 musb_writew(epio
, MUSB_RXCSR
,
665 csr
| MUSB_RXCSR_DMAMODE
);
667 musb_writew(epio
, MUSB_RXCSR
, csr
);
669 if (request
->actual
< request
->length
) {
670 int transfer_size
= 0;
672 transfer_size
= min(request
->length
,
677 if (transfer_size
<= musb_ep
->packet_sz
)
678 musb_ep
->dma
->desired_mode
= 0;
680 musb_ep
->dma
->desired_mode
= 1;
682 use_dma
= c
->channel_program(
685 channel
->desired_mode
,
694 #endif /* Mentor's DMA */
696 fifo_count
= request
->length
- request
->actual
;
697 DBG(3, "%s OUT/RX pio fifo %d/%d, maxpacket %d\n",
698 musb_ep
->end_point
.name
,
702 fifo_count
= min_t(unsigned, len
, fifo_count
);
704 #ifdef CONFIG_USB_TUSB_OMAP_DMA
705 if (tusb_dma_omap() && musb_ep
->dma
) {
706 struct dma_controller
*c
= musb
->dma_controller
;
707 struct dma_channel
*channel
= musb_ep
->dma
;
708 u32 dma_addr
= request
->dma
+ request
->actual
;
711 ret
= c
->channel_program(channel
,
713 channel
->desired_mode
,
721 musb_read_fifo(musb_ep
->hw_ep
, fifo_count
, (u8
*)
722 (request
->buf
+ request
->actual
));
723 request
->actual
+= fifo_count
;
725 /* REVISIT if we left anything in the fifo, flush
726 * it and report -EOVERFLOW
730 csr
|= MUSB_RXCSR_P_WZC_BITS
;
731 csr
&= ~MUSB_RXCSR_RXPKTRDY
;
732 musb_writew(epio
, MUSB_RXCSR
, csr
);
736 /* reach the end or short packet detected */
737 if (request
->actual
== request
->length
|| len
< musb_ep
->packet_sz
)
738 musb_g_giveback(musb_ep
, request
, 0);
742 * Data ready for a request; called from IRQ
744 void musb_g_rx(struct musb
*musb
, u8 epnum
)
747 struct usb_request
*request
;
748 void __iomem
*mbase
= musb
->mregs
;
749 struct musb_ep
*musb_ep
= &musb
->endpoints
[epnum
].ep_out
;
750 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
751 struct dma_channel
*dma
;
753 musb_ep_select(mbase
, epnum
);
755 request
= next_request(musb_ep
);
757 csr
= musb_readw(epio
, MUSB_RXCSR
);
758 dma
= is_dma_capable() ? musb_ep
->dma
: NULL
;
760 DBG(4, "<== %s, rxcsr %04x%s %p\n", musb_ep
->end_point
.name
,
761 csr
, dma
? " (dma)" : "", request
);
763 if (csr
& MUSB_RXCSR_P_SENTSTALL
) {
764 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
765 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
766 (void) musb
->dma_controller
->channel_abort(dma
);
767 request
->actual
+= musb_ep
->dma
->actual_len
;
770 csr
|= MUSB_RXCSR_P_WZC_BITS
;
771 csr
&= ~MUSB_RXCSR_P_SENTSTALL
;
772 musb_writew(epio
, MUSB_RXCSR
, csr
);
775 musb_g_giveback(musb_ep
, request
, -EPIPE
);
779 if (csr
& MUSB_RXCSR_P_OVERRUN
) {
780 /* csr |= MUSB_RXCSR_P_WZC_BITS; */
781 csr
&= ~MUSB_RXCSR_P_OVERRUN
;
782 musb_writew(epio
, MUSB_RXCSR
, csr
);
784 DBG(3, "%s iso overrun on %p\n", musb_ep
->name
, request
);
785 if (request
&& request
->status
== -EINPROGRESS
)
786 request
->status
= -EOVERFLOW
;
788 if (csr
& MUSB_RXCSR_INCOMPRX
) {
789 /* REVISIT not necessarily an error */
790 DBG(4, "%s, incomprx\n", musb_ep
->end_point
.name
);
793 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
794 /* "should not happen"; likely RXPKTRDY pending for DMA */
795 DBG((csr
& MUSB_RXCSR_DMAENAB
) ? 4 : 1,
796 "%s busy, csr %04x\n",
797 musb_ep
->end_point
.name
, csr
);
801 if (dma
&& (csr
& MUSB_RXCSR_DMAENAB
)) {
802 csr
&= ~(MUSB_RXCSR_AUTOCLEAR
804 | MUSB_RXCSR_DMAMODE
);
805 musb_writew(epio
, MUSB_RXCSR
,
806 MUSB_RXCSR_P_WZC_BITS
| csr
);
808 request
->actual
+= musb_ep
->dma
->actual_len
;
810 DBG(4, "RXCSR%d %04x, dma off, %04x, len %zu, req %p\n",
812 musb_readw(epio
, MUSB_RXCSR
),
813 musb_ep
->dma
->actual_len
, request
);
815 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA)
816 /* Autoclear doesn't clear RxPktRdy for short packets */
817 if ((dma
->desired_mode
== 0)
819 & (musb_ep
->packet_sz
- 1))) {
821 csr
&= ~MUSB_RXCSR_RXPKTRDY
;
822 musb_writew(epio
, MUSB_RXCSR
, csr
);
825 /* incomplete, and not short? wait for next IN packet */
826 if ((request
->actual
< request
->length
)
827 && (musb_ep
->dma
->actual_len
828 == musb_ep
->packet_sz
))
831 musb_g_giveback(musb_ep
, request
, 0);
833 request
= next_request(musb_ep
);
837 /* don't start more i/o till the stall clears */
838 musb_ep_select(mbase
, epnum
);
839 csr
= musb_readw(epio
, MUSB_RXCSR
);
840 if (csr
& MUSB_RXCSR_P_SENDSTALL
)
845 /* analyze request if the ep is hot */
847 rxstate(musb
, to_musb_request(request
));
849 DBG(3, "packet waiting for %s%s request\n",
850 musb_ep
->desc
? "" : "inactive ",
851 musb_ep
->end_point
.name
);
857 /* ------------------------------------------------------------ */
859 static int musb_gadget_enable(struct usb_ep
*ep
,
860 const struct usb_endpoint_descriptor
*desc
)
863 struct musb_ep
*musb_ep
;
864 struct musb_hw_ep
*hw_ep
;
871 int status
= -EINVAL
;
876 musb_ep
= to_musb_ep(ep
);
877 hw_ep
= musb_ep
->hw_ep
;
879 musb
= musb_ep
->musb
;
881 epnum
= musb_ep
->current_epnum
;
883 spin_lock_irqsave(&musb
->lock
, flags
);
889 musb_ep
->type
= usb_endpoint_type(desc
);
891 /* check direction and (later) maxpacket size against endpoint */
892 if (usb_endpoint_num(desc
) != epnum
)
895 /* REVISIT this rules out high bandwidth periodic transfers */
896 tmp
= le16_to_cpu(desc
->wMaxPacketSize
);
899 musb_ep
->packet_sz
= tmp
;
901 /* enable the interrupts for the endpoint, set the endpoint
902 * packet size (or fail), set the mode, clear the fifo
904 musb_ep_select(mbase
, epnum
);
905 if (usb_endpoint_dir_in(desc
)) {
906 u16 int_txe
= musb_readw(mbase
, MUSB_INTRTXE
);
908 if (hw_ep
->is_shared_fifo
)
912 if (tmp
> hw_ep
->max_packet_sz_tx
)
915 int_txe
|= (1 << epnum
);
916 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
);
918 /* REVISIT if can_bulk_split(), use by updating "tmp";
919 * likewise high bandwidth periodic tx
921 musb_writew(regs
, MUSB_TXMAXP
, tmp
);
923 csr
= MUSB_TXCSR_MODE
| MUSB_TXCSR_CLRDATATOG
;
924 if (musb_readw(regs
, MUSB_TXCSR
)
925 & MUSB_TXCSR_FIFONOTEMPTY
)
926 csr
|= MUSB_TXCSR_FLUSHFIFO
;
927 if (musb_ep
->type
== USB_ENDPOINT_XFER_ISOC
)
928 csr
|= MUSB_TXCSR_P_ISO
;
930 /* set twice in case of double buffering */
931 musb_writew(regs
, MUSB_TXCSR
, csr
);
932 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
933 musb_writew(regs
, MUSB_TXCSR
, csr
);
936 u16 int_rxe
= musb_readw(mbase
, MUSB_INTRRXE
);
938 if (hw_ep
->is_shared_fifo
)
942 if (tmp
> hw_ep
->max_packet_sz_rx
)
945 int_rxe
|= (1 << epnum
);
946 musb_writew(mbase
, MUSB_INTRRXE
, int_rxe
);
948 /* REVISIT if can_bulk_combine() use by updating "tmp"
949 * likewise high bandwidth periodic rx
951 musb_writew(regs
, MUSB_RXMAXP
, tmp
);
953 /* force shared fifo to OUT-only mode */
954 if (hw_ep
->is_shared_fifo
) {
955 csr
= musb_readw(regs
, MUSB_TXCSR
);
956 csr
&= ~(MUSB_TXCSR_MODE
| MUSB_TXCSR_TXPKTRDY
);
957 musb_writew(regs
, MUSB_TXCSR
, csr
);
960 csr
= MUSB_RXCSR_FLUSHFIFO
| MUSB_RXCSR_CLRDATATOG
;
961 if (musb_ep
->type
== USB_ENDPOINT_XFER_ISOC
)
962 csr
|= MUSB_RXCSR_P_ISO
;
963 else if (musb_ep
->type
== USB_ENDPOINT_XFER_INT
)
964 csr
|= MUSB_RXCSR_DISNYET
;
966 /* set twice in case of double buffering */
967 musb_writew(regs
, MUSB_RXCSR
, csr
);
968 musb_writew(regs
, MUSB_RXCSR
, csr
);
971 /* NOTE: all the I/O code _should_ work fine without DMA, in case
972 * for some reason you run out of channels here.
974 if (is_dma_capable() && musb
->dma_controller
) {
975 struct dma_controller
*c
= musb
->dma_controller
;
977 musb_ep
->dma
= c
->channel_alloc(c
, hw_ep
,
978 (desc
->bEndpointAddress
& USB_DIR_IN
));
982 musb_ep
->desc
= desc
;
986 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
987 musb_driver_name
, musb_ep
->end_point
.name
,
988 ({ char *s
; switch (musb_ep
->type
) {
989 case USB_ENDPOINT_XFER_BULK
: s
= "bulk"; break;
990 case USB_ENDPOINT_XFER_INT
: s
= "int"; break;
991 default: s
= "iso"; break;
993 musb_ep
->is_in
? "IN" : "OUT",
994 musb_ep
->dma
? "dma, " : "",
997 schedule_work(&musb
->irq_work
);
1000 spin_unlock_irqrestore(&musb
->lock
, flags
);
1005 * Disable an endpoint flushing all requests queued.
1007 static int musb_gadget_disable(struct usb_ep
*ep
)
1009 unsigned long flags
;
1012 struct musb_ep
*musb_ep
;
1016 musb_ep
= to_musb_ep(ep
);
1017 musb
= musb_ep
->musb
;
1018 epnum
= musb_ep
->current_epnum
;
1019 epio
= musb
->endpoints
[epnum
].regs
;
1021 spin_lock_irqsave(&musb
->lock
, flags
);
1022 musb_ep_select(musb
->mregs
, epnum
);
1024 /* zero the endpoint sizes */
1025 if (musb_ep
->is_in
) {
1026 u16 int_txe
= musb_readw(musb
->mregs
, MUSB_INTRTXE
);
1027 int_txe
&= ~(1 << epnum
);
1028 musb_writew(musb
->mregs
, MUSB_INTRTXE
, int_txe
);
1029 musb_writew(epio
, MUSB_TXMAXP
, 0);
1031 u16 int_rxe
= musb_readw(musb
->mregs
, MUSB_INTRRXE
);
1032 int_rxe
&= ~(1 << epnum
);
1033 musb_writew(musb
->mregs
, MUSB_INTRRXE
, int_rxe
);
1034 musb_writew(epio
, MUSB_RXMAXP
, 0);
1037 musb_ep
->desc
= NULL
;
1039 /* abort all pending DMA and requests */
1040 nuke(musb_ep
, -ESHUTDOWN
);
1042 schedule_work(&musb
->irq_work
);
1044 spin_unlock_irqrestore(&(musb
->lock
), flags
);
1046 DBG(2, "%s\n", musb_ep
->end_point
.name
);
1052 * Allocate a request for an endpoint.
1053 * Reused by ep0 code.
1055 struct usb_request
*musb_alloc_request(struct usb_ep
*ep
, gfp_t gfp_flags
)
1057 struct musb_ep
*musb_ep
= to_musb_ep(ep
);
1058 struct musb_request
*request
= NULL
;
1060 request
= kzalloc(sizeof *request
, gfp_flags
);
1062 INIT_LIST_HEAD(&request
->request
.list
);
1063 request
->request
.dma
= DMA_ADDR_INVALID
;
1064 request
->epnum
= musb_ep
->current_epnum
;
1065 request
->ep
= musb_ep
;
1068 return &request
->request
;
1073 * Reused by ep0 code.
1075 void musb_free_request(struct usb_ep
*ep
, struct usb_request
*req
)
1077 kfree(to_musb_request(req
));
1080 static LIST_HEAD(buffers
);
1082 struct free_record
{
1083 struct list_head list
;
1090 * Context: controller locked, IRQs blocked.
1092 static void musb_ep_restart(struct musb
*musb
, struct musb_request
*req
)
1094 DBG(3, "<== %s request %p len %u on hw_ep%d\n",
1095 req
->tx
? "TX/IN" : "RX/OUT",
1096 &req
->request
, req
->request
.length
, req
->epnum
);
1098 musb_ep_select(musb
->mregs
, req
->epnum
);
1105 static int musb_gadget_queue(struct usb_ep
*ep
, struct usb_request
*req
,
1108 struct musb_ep
*musb_ep
;
1109 struct musb_request
*request
;
1112 unsigned long lockflags
;
1119 musb_ep
= to_musb_ep(ep
);
1120 musb
= musb_ep
->musb
;
1122 request
= to_musb_request(req
);
1123 request
->musb
= musb
;
1125 if (request
->ep
!= musb_ep
)
1128 DBG(4, "<== to %s request=%p\n", ep
->name
, req
);
1130 /* request is mine now... */
1131 request
->request
.actual
= 0;
1132 request
->request
.status
= -EINPROGRESS
;
1133 request
->epnum
= musb_ep
->current_epnum
;
1134 request
->tx
= musb_ep
->is_in
;
1136 if (is_dma_capable() && musb_ep
->dma
) {
1137 if (request
->request
.dma
== DMA_ADDR_INVALID
) {
1138 request
->request
.dma
= dma_map_single(
1140 request
->request
.buf
,
1141 request
->request
.length
,
1145 request
->mapped
= 1;
1147 dma_sync_single_for_device(musb
->controller
,
1148 request
->request
.dma
,
1149 request
->request
.length
,
1153 request
->mapped
= 0;
1155 } else if (!req
->buf
) {
1158 request
->mapped
= 0;
1160 spin_lock_irqsave(&musb
->lock
, lockflags
);
1162 /* don't queue if the ep is down */
1163 if (!musb_ep
->desc
) {
1164 DBG(4, "req %p queued to %s while ep %s\n",
1165 req
, ep
->name
, "disabled");
1166 status
= -ESHUTDOWN
;
1170 /* add request to the list */
1171 list_add_tail(&(request
->request
.list
), &(musb_ep
->req_list
));
1173 /* it this is the head of the queue, start i/o ... */
1174 if (!musb_ep
->busy
&& &request
->request
.list
== musb_ep
->req_list
.next
)
1175 musb_ep_restart(musb
, request
);
1178 spin_unlock_irqrestore(&musb
->lock
, lockflags
);
1182 static int musb_gadget_dequeue(struct usb_ep
*ep
, struct usb_request
*request
)
1184 struct musb_ep
*musb_ep
= to_musb_ep(ep
);
1185 struct usb_request
*r
;
1186 unsigned long flags
;
1188 struct musb
*musb
= musb_ep
->musb
;
1190 if (!ep
|| !request
|| to_musb_request(request
)->ep
!= musb_ep
)
1193 spin_lock_irqsave(&musb
->lock
, flags
);
1195 list_for_each_entry(r
, &musb_ep
->req_list
, list
) {
1200 DBG(3, "request %p not queued to %s\n", request
, ep
->name
);
1205 /* if the hardware doesn't have the request, easy ... */
1206 if (musb_ep
->req_list
.next
!= &request
->list
|| musb_ep
->busy
)
1207 musb_g_giveback(musb_ep
, request
, -ECONNRESET
);
1209 /* ... else abort the dma transfer ... */
1210 else if (is_dma_capable() && musb_ep
->dma
) {
1211 struct dma_controller
*c
= musb
->dma_controller
;
1213 musb_ep_select(musb
->mregs
, musb_ep
->current_epnum
);
1214 if (c
->channel_abort
)
1215 status
= c
->channel_abort(musb_ep
->dma
);
1219 musb_g_giveback(musb_ep
, request
, -ECONNRESET
);
1221 /* NOTE: by sticking to easily tested hardware/driver states,
1222 * we leave counting of in-flight packets imprecise.
1224 musb_g_giveback(musb_ep
, request
, -ECONNRESET
);
1228 spin_unlock_irqrestore(&musb
->lock
, flags
);
1233 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1234 * data but will queue requests.
1236 * exported to ep0 code
1238 int musb_gadget_set_halt(struct usb_ep
*ep
, int value
)
1240 struct musb_ep
*musb_ep
= to_musb_ep(ep
);
1241 u8 epnum
= musb_ep
->current_epnum
;
1242 struct musb
*musb
= musb_ep
->musb
;
1243 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
1244 void __iomem
*mbase
;
1245 unsigned long flags
;
1247 struct musb_request
*request
= NULL
;
1252 mbase
= musb
->mregs
;
1254 spin_lock_irqsave(&musb
->lock
, flags
);
1256 if ((USB_ENDPOINT_XFER_ISOC
== musb_ep
->type
)) {
1261 musb_ep_select(mbase
, epnum
);
1263 /* cannot portably stall with non-empty FIFO */
1264 request
= to_musb_request(next_request(musb_ep
));
1265 if (value
&& musb_ep
->is_in
) {
1266 csr
= musb_readw(epio
, MUSB_TXCSR
);
1267 if (csr
& MUSB_TXCSR_FIFONOTEMPTY
) {
1268 DBG(3, "%s fifo busy, cannot halt\n", ep
->name
);
1269 spin_unlock_irqrestore(&musb
->lock
, flags
);
1275 /* set/clear the stall and toggle bits */
1276 DBG(2, "%s: %s stall\n", ep
->name
, value
? "set" : "clear");
1277 if (musb_ep
->is_in
) {
1278 csr
= musb_readw(epio
, MUSB_TXCSR
);
1279 if (csr
& MUSB_TXCSR_FIFONOTEMPTY
)
1280 csr
|= MUSB_TXCSR_FLUSHFIFO
;
1281 csr
|= MUSB_TXCSR_P_WZC_BITS
1282 | MUSB_TXCSR_CLRDATATOG
;
1284 csr
|= MUSB_TXCSR_P_SENDSTALL
;
1286 csr
&= ~(MUSB_TXCSR_P_SENDSTALL
1287 | MUSB_TXCSR_P_SENTSTALL
);
1288 csr
&= ~MUSB_TXCSR_TXPKTRDY
;
1289 musb_writew(epio
, MUSB_TXCSR
, csr
);
1291 csr
= musb_readw(epio
, MUSB_RXCSR
);
1292 csr
|= MUSB_RXCSR_P_WZC_BITS
1293 | MUSB_RXCSR_FLUSHFIFO
1294 | MUSB_RXCSR_CLRDATATOG
;
1296 csr
|= MUSB_RXCSR_P_SENDSTALL
;
1298 csr
&= ~(MUSB_RXCSR_P_SENDSTALL
1299 | MUSB_RXCSR_P_SENTSTALL
);
1300 musb_writew(epio
, MUSB_RXCSR
, csr
);
1305 /* maybe start the first request in the queue */
1306 if (!musb_ep
->busy
&& !value
&& request
) {
1307 DBG(3, "restarting the request\n");
1308 musb_ep_restart(musb
, request
);
1311 spin_unlock_irqrestore(&musb
->lock
, flags
);
1315 static int musb_gadget_fifo_status(struct usb_ep
*ep
)
1317 struct musb_ep
*musb_ep
= to_musb_ep(ep
);
1318 void __iomem
*epio
= musb_ep
->hw_ep
->regs
;
1319 int retval
= -EINVAL
;
1321 if (musb_ep
->desc
&& !musb_ep
->is_in
) {
1322 struct musb
*musb
= musb_ep
->musb
;
1323 int epnum
= musb_ep
->current_epnum
;
1324 void __iomem
*mbase
= musb
->mregs
;
1325 unsigned long flags
;
1327 spin_lock_irqsave(&musb
->lock
, flags
);
1329 musb_ep_select(mbase
, epnum
);
1330 /* FIXME return zero unless RXPKTRDY is set */
1331 retval
= musb_readw(epio
, MUSB_RXCOUNT
);
1333 spin_unlock_irqrestore(&musb
->lock
, flags
);
1338 static void musb_gadget_fifo_flush(struct usb_ep
*ep
)
1340 struct musb_ep
*musb_ep
= to_musb_ep(ep
);
1341 struct musb
*musb
= musb_ep
->musb
;
1342 u8 epnum
= musb_ep
->current_epnum
;
1343 void __iomem
*epio
= musb
->endpoints
[epnum
].regs
;
1344 void __iomem
*mbase
;
1345 unsigned long flags
;
1348 mbase
= musb
->mregs
;
1350 spin_lock_irqsave(&musb
->lock
, flags
);
1351 musb_ep_select(mbase
, (u8
) epnum
);
1353 /* disable interrupts */
1354 int_txe
= musb_readw(mbase
, MUSB_INTRTXE
);
1355 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
& ~(1 << epnum
));
1357 if (musb_ep
->is_in
) {
1358 csr
= musb_readw(epio
, MUSB_TXCSR
);
1359 if (csr
& MUSB_TXCSR_FIFONOTEMPTY
) {
1360 csr
|= MUSB_TXCSR_FLUSHFIFO
| MUSB_TXCSR_P_WZC_BITS
;
1361 musb_writew(epio
, MUSB_TXCSR
, csr
);
1362 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1363 musb_writew(epio
, MUSB_TXCSR
, csr
);
1366 csr
= musb_readw(epio
, MUSB_RXCSR
);
1367 csr
|= MUSB_RXCSR_FLUSHFIFO
| MUSB_RXCSR_P_WZC_BITS
;
1368 musb_writew(epio
, MUSB_RXCSR
, csr
);
1369 musb_writew(epio
, MUSB_RXCSR
, csr
);
1372 /* re-enable interrupt */
1373 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
);
1374 spin_unlock_irqrestore(&musb
->lock
, flags
);
1377 static const struct usb_ep_ops musb_ep_ops
= {
1378 .enable
= musb_gadget_enable
,
1379 .disable
= musb_gadget_disable
,
1380 .alloc_request
= musb_alloc_request
,
1381 .free_request
= musb_free_request
,
1382 .queue
= musb_gadget_queue
,
1383 .dequeue
= musb_gadget_dequeue
,
1384 .set_halt
= musb_gadget_set_halt
,
1385 .fifo_status
= musb_gadget_fifo_status
,
1386 .fifo_flush
= musb_gadget_fifo_flush
1389 /* ----------------------------------------------------------------------- */
1391 static int musb_gadget_get_frame(struct usb_gadget
*gadget
)
1393 struct musb
*musb
= gadget_to_musb(gadget
);
1395 return (int)musb_readw(musb
->mregs
, MUSB_FRAME
);
1398 static int musb_gadget_wakeup(struct usb_gadget
*gadget
)
1400 struct musb
*musb
= gadget_to_musb(gadget
);
1401 void __iomem
*mregs
= musb
->mregs
;
1402 unsigned long flags
;
1403 int status
= -EINVAL
;
1407 spin_lock_irqsave(&musb
->lock
, flags
);
1409 switch (musb
->xceiv
->state
) {
1410 case OTG_STATE_B_PERIPHERAL
:
1411 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1412 * that's part of the standard usb 1.1 state machine, and
1413 * doesn't affect OTG transitions.
1415 if (musb
->may_wakeup
&& musb
->is_suspended
)
1418 case OTG_STATE_B_IDLE
:
1419 /* Start SRP ... OTG not required. */
1420 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
1421 DBG(2, "Sending SRP: devctl: %02x\n", devctl
);
1422 devctl
|= MUSB_DEVCTL_SESSION
;
1423 musb_writeb(mregs
, MUSB_DEVCTL
, devctl
);
1424 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
1426 while (!(devctl
& MUSB_DEVCTL_SESSION
)) {
1427 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
1432 while (devctl
& MUSB_DEVCTL_SESSION
) {
1433 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
1438 /* Block idling for at least 1s */
1439 musb_platform_try_idle(musb
,
1440 jiffies
+ msecs_to_jiffies(1 * HZ
));
1445 DBG(2, "Unhandled wake: %s\n", otg_state_string(musb
));
1451 power
= musb_readb(mregs
, MUSB_POWER
);
1452 power
|= MUSB_POWER_RESUME
;
1453 musb_writeb(mregs
, MUSB_POWER
, power
);
1454 DBG(2, "issue wakeup\n");
1456 /* FIXME do this next chunk in a timer callback, no udelay */
1459 power
= musb_readb(mregs
, MUSB_POWER
);
1460 power
&= ~MUSB_POWER_RESUME
;
1461 musb_writeb(mregs
, MUSB_POWER
, power
);
1463 spin_unlock_irqrestore(&musb
->lock
, flags
);
1468 musb_gadget_set_self_powered(struct usb_gadget
*gadget
, int is_selfpowered
)
1470 struct musb
*musb
= gadget_to_musb(gadget
);
1472 musb
->is_self_powered
= !!is_selfpowered
;
1476 static void musb_pullup(struct musb
*musb
, int is_on
)
1480 power
= musb_readb(musb
->mregs
, MUSB_POWER
);
1482 power
|= MUSB_POWER_SOFTCONN
;
1484 power
&= ~MUSB_POWER_SOFTCONN
;
1486 /* FIXME if on, HdrcStart; if off, HdrcStop */
1488 DBG(3, "gadget %s D+ pullup %s\n",
1489 musb
->gadget_driver
->function
, is_on
? "on" : "off");
1490 musb_writeb(musb
->mregs
, MUSB_POWER
, power
);
1494 static int musb_gadget_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1496 DBG(2, "<= %s =>\n", __func__
);
1499 * FIXME iff driver's softconnect flag is set (as it is during probe,
1500 * though that can clear it), just musb_pullup().
1507 static int musb_gadget_vbus_draw(struct usb_gadget
*gadget
, unsigned mA
)
1509 struct musb
*musb
= gadget_to_musb(gadget
);
1511 if (!musb
->xceiv
->set_power
)
1513 return otg_set_power(musb
->xceiv
, mA
);
1516 static int musb_gadget_pullup(struct usb_gadget
*gadget
, int is_on
)
1518 struct musb
*musb
= gadget_to_musb(gadget
);
1519 unsigned long flags
;
1523 /* NOTE: this assumes we are sensing vbus; we'd rather
1524 * not pullup unless the B-session is active.
1526 spin_lock_irqsave(&musb
->lock
, flags
);
1527 if (is_on
!= musb
->softconnect
) {
1528 musb
->softconnect
= is_on
;
1529 musb_pullup(musb
, is_on
);
1531 spin_unlock_irqrestore(&musb
->lock
, flags
);
1535 static const struct usb_gadget_ops musb_gadget_operations
= {
1536 .get_frame
= musb_gadget_get_frame
,
1537 .wakeup
= musb_gadget_wakeup
,
1538 .set_selfpowered
= musb_gadget_set_self_powered
,
1539 /* .vbus_session = musb_gadget_vbus_session, */
1540 .vbus_draw
= musb_gadget_vbus_draw
,
1541 .pullup
= musb_gadget_pullup
,
1544 /* ----------------------------------------------------------------------- */
1548 /* Only this registration code "knows" the rule (from USB standards)
1549 * about there being only one external upstream port. It assumes
1550 * all peripheral ports are external...
1552 static struct musb
*the_gadget
;
1554 static void musb_gadget_release(struct device
*dev
)
1556 /* kref_put(WHAT) */
1557 dev_dbg(dev
, "%s\n", __func__
);
1562 init_peripheral_ep(struct musb
*musb
, struct musb_ep
*ep
, u8 epnum
, int is_in
)
1564 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1566 memset(ep
, 0, sizeof *ep
);
1568 ep
->current_epnum
= epnum
;
1573 INIT_LIST_HEAD(&ep
->req_list
);
1575 sprintf(ep
->name
, "ep%d%s", epnum
,
1576 (!epnum
|| hw_ep
->is_shared_fifo
) ? "" : (
1577 is_in
? "in" : "out"));
1578 ep
->end_point
.name
= ep
->name
;
1579 INIT_LIST_HEAD(&ep
->end_point
.ep_list
);
1581 ep
->end_point
.maxpacket
= 64;
1582 ep
->end_point
.ops
= &musb_g_ep0_ops
;
1583 musb
->g
.ep0
= &ep
->end_point
;
1586 ep
->end_point
.maxpacket
= hw_ep
->max_packet_sz_tx
;
1588 ep
->end_point
.maxpacket
= hw_ep
->max_packet_sz_rx
;
1589 ep
->end_point
.ops
= &musb_ep_ops
;
1590 list_add_tail(&ep
->end_point
.ep_list
, &musb
->g
.ep_list
);
1595 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1596 * to the rest of the driver state.
1598 static inline void __init
musb_g_init_endpoints(struct musb
*musb
)
1601 struct musb_hw_ep
*hw_ep
;
1604 /* intialize endpoint list just once */
1605 INIT_LIST_HEAD(&(musb
->g
.ep_list
));
1607 for (epnum
= 0, hw_ep
= musb
->endpoints
;
1608 epnum
< musb
->nr_endpoints
;
1610 if (hw_ep
->is_shared_fifo
/* || !epnum */) {
1611 init_peripheral_ep(musb
, &hw_ep
->ep_in
, epnum
, 0);
1614 if (hw_ep
->max_packet_sz_tx
) {
1615 init_peripheral_ep(musb
, &hw_ep
->ep_in
,
1619 if (hw_ep
->max_packet_sz_rx
) {
1620 init_peripheral_ep(musb
, &hw_ep
->ep_out
,
1628 /* called once during driver setup to initialize and link into
1629 * the driver model; memory is zeroed.
1631 int __init
musb_gadget_setup(struct musb
*musb
)
1635 /* REVISIT minor race: if (erroneously) setting up two
1636 * musb peripherals at the same time, only the bus lock
1643 musb
->g
.ops
= &musb_gadget_operations
;
1644 musb
->g
.is_dualspeed
= 1;
1645 musb
->g
.speed
= USB_SPEED_UNKNOWN
;
1647 /* this "gadget" abstracts/virtualizes the controller */
1648 dev_set_name(&musb
->g
.dev
, "gadget");
1649 musb
->g
.dev
.parent
= musb
->controller
;
1650 musb
->g
.dev
.dma_mask
= musb
->controller
->dma_mask
;
1651 musb
->g
.dev
.release
= musb_gadget_release
;
1652 musb
->g
.name
= musb_driver_name
;
1654 if (is_otg_enabled(musb
))
1657 musb_g_init_endpoints(musb
);
1659 musb
->is_active
= 0;
1660 musb_platform_try_idle(musb
, 0);
1662 status
= device_register(&musb
->g
.dev
);
1668 void musb_gadget_cleanup(struct musb
*musb
)
1670 if (musb
!= the_gadget
)
1673 device_unregister(&musb
->g
.dev
);
1678 * Register the gadget driver. Used by gadget drivers when
1679 * registering themselves with the controller.
1681 * -EINVAL something went wrong (not driver)
1682 * -EBUSY another gadget is already using the controller
1683 * -ENOMEM no memeory to perform the operation
1685 * @param driver the gadget driver
1686 * @return <0 if error, 0 if everything is fine
1688 int usb_gadget_register_driver(struct usb_gadget_driver
*driver
)
1691 unsigned long flags
;
1692 struct musb
*musb
= the_gadget
;
1695 || driver
->speed
!= USB_SPEED_HIGH
1700 /* driver must be initialized to support peripheral mode */
1701 if (!musb
|| !(musb
->board_mode
== MUSB_OTG
1702 || musb
->board_mode
!= MUSB_OTG
)) {
1703 DBG(1, "%s, no dev??\n", __func__
);
1707 DBG(3, "registering driver %s\n", driver
->function
);
1708 spin_lock_irqsave(&musb
->lock
, flags
);
1710 if (musb
->gadget_driver
) {
1711 DBG(1, "%s is already bound to %s\n",
1713 musb
->gadget_driver
->driver
.name
);
1716 musb
->gadget_driver
= driver
;
1717 musb
->g
.dev
.driver
= &driver
->driver
;
1718 driver
->driver
.bus
= NULL
;
1719 musb
->softconnect
= 1;
1723 spin_unlock_irqrestore(&musb
->lock
, flags
);
1726 retval
= driver
->bind(&musb
->g
);
1728 DBG(3, "bind to driver %s failed --> %d\n",
1729 driver
->driver
.name
, retval
);
1730 musb
->gadget_driver
= NULL
;
1731 musb
->g
.dev
.driver
= NULL
;
1734 spin_lock_irqsave(&musb
->lock
, flags
);
1736 otg_set_peripheral(musb
->xceiv
, &musb
->g
);
1737 musb
->is_active
= 1;
1739 /* FIXME this ignores the softconnect flag. Drivers are
1740 * allowed hold the peripheral inactive until for example
1741 * userspace hooks up printer hardware or DSP codecs, so
1742 * hosts only see fully functional devices.
1745 if (!is_otg_enabled(musb
))
1748 otg_set_peripheral(musb
->xceiv
, &musb
->g
);
1750 spin_unlock_irqrestore(&musb
->lock
, flags
);
1752 if (is_otg_enabled(musb
)) {
1753 DBG(3, "OTG startup...\n");
1755 /* REVISIT: funcall to other code, which also
1756 * handles power budgeting ... this way also
1757 * ensures HdrcStart is indirectly called.
1759 retval
= usb_add_hcd(musb_to_hcd(musb
), -1, 0);
1761 DBG(1, "add_hcd failed, %d\n", retval
);
1762 spin_lock_irqsave(&musb
->lock
, flags
);
1763 otg_set_peripheral(musb
->xceiv
, NULL
);
1764 musb
->gadget_driver
= NULL
;
1765 musb
->g
.dev
.driver
= NULL
;
1766 spin_unlock_irqrestore(&musb
->lock
, flags
);
1773 EXPORT_SYMBOL(usb_gadget_register_driver
);
1775 static void stop_activity(struct musb
*musb
, struct usb_gadget_driver
*driver
)
1778 struct musb_hw_ep
*hw_ep
;
1780 /* don't disconnect if it's not connected */
1781 if (musb
->g
.speed
== USB_SPEED_UNKNOWN
)
1784 musb
->g
.speed
= USB_SPEED_UNKNOWN
;
1786 /* deactivate the hardware */
1787 if (musb
->softconnect
) {
1788 musb
->softconnect
= 0;
1789 musb_pullup(musb
, 0);
1793 /* killing any outstanding requests will quiesce the driver;
1794 * then report disconnect
1797 for (i
= 0, hw_ep
= musb
->endpoints
;
1798 i
< musb
->nr_endpoints
;
1800 musb_ep_select(musb
->mregs
, i
);
1801 if (hw_ep
->is_shared_fifo
/* || !epnum */) {
1802 nuke(&hw_ep
->ep_in
, -ESHUTDOWN
);
1804 if (hw_ep
->max_packet_sz_tx
)
1805 nuke(&hw_ep
->ep_in
, -ESHUTDOWN
);
1806 if (hw_ep
->max_packet_sz_rx
)
1807 nuke(&hw_ep
->ep_out
, -ESHUTDOWN
);
1811 spin_unlock(&musb
->lock
);
1812 driver
->disconnect(&musb
->g
);
1813 spin_lock(&musb
->lock
);
1818 * Unregister the gadget driver. Used by gadget drivers when
1819 * unregistering themselves from the controller.
1821 * @param driver the gadget driver to unregister
1823 int usb_gadget_unregister_driver(struct usb_gadget_driver
*driver
)
1825 unsigned long flags
;
1827 struct musb
*musb
= the_gadget
;
1829 if (!driver
|| !driver
->unbind
|| !musb
)
1832 /* REVISIT always use otg_set_peripheral() here too;
1833 * this needs to shut down the OTG engine.
1836 spin_lock_irqsave(&musb
->lock
, flags
);
1838 #ifdef CONFIG_USB_MUSB_OTG
1839 musb_hnp_stop(musb
);
1842 if (musb
->gadget_driver
== driver
) {
1844 (void) musb_gadget_vbus_draw(&musb
->g
, 0);
1846 musb
->xceiv
->state
= OTG_STATE_UNDEFINED
;
1847 stop_activity(musb
, driver
);
1848 otg_set_peripheral(musb
->xceiv
, NULL
);
1850 DBG(3, "unregistering driver %s\n", driver
->function
);
1851 spin_unlock_irqrestore(&musb
->lock
, flags
);
1852 driver
->unbind(&musb
->g
);
1853 spin_lock_irqsave(&musb
->lock
, flags
);
1855 musb
->gadget_driver
= NULL
;
1856 musb
->g
.dev
.driver
= NULL
;
1858 musb
->is_active
= 0;
1859 musb_platform_try_idle(musb
, 0);
1862 spin_unlock_irqrestore(&musb
->lock
, flags
);
1864 if (is_otg_enabled(musb
) && retval
== 0) {
1865 usb_remove_hcd(musb_to_hcd(musb
));
1866 /* FIXME we need to be able to register another
1867 * gadget driver here and have everything work;
1868 * that currently misbehaves.
1874 EXPORT_SYMBOL(usb_gadget_unregister_driver
);
1877 /* ----------------------------------------------------------------------- */
1879 /* lifecycle operations called through plat_uds.c */
1881 void musb_g_resume(struct musb
*musb
)
1883 musb
->is_suspended
= 0;
1884 switch (musb
->xceiv
->state
) {
1885 case OTG_STATE_B_IDLE
:
1887 case OTG_STATE_B_WAIT_ACON
:
1888 case OTG_STATE_B_PERIPHERAL
:
1889 musb
->is_active
= 1;
1890 if (musb
->gadget_driver
&& musb
->gadget_driver
->resume
) {
1891 spin_unlock(&musb
->lock
);
1892 musb
->gadget_driver
->resume(&musb
->g
);
1893 spin_lock(&musb
->lock
);
1897 WARNING("unhandled RESUME transition (%s)\n",
1898 otg_state_string(musb
));
1902 /* called when SOF packets stop for 3+ msec */
1903 void musb_g_suspend(struct musb
*musb
)
1907 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
1908 DBG(3, "devctl %02x\n", devctl
);
1910 switch (musb
->xceiv
->state
) {
1911 case OTG_STATE_B_IDLE
:
1912 if ((devctl
& MUSB_DEVCTL_VBUS
) == MUSB_DEVCTL_VBUS
)
1913 musb
->xceiv
->state
= OTG_STATE_B_PERIPHERAL
;
1915 case OTG_STATE_B_PERIPHERAL
:
1916 musb
->is_suspended
= 1;
1917 if (musb
->gadget_driver
&& musb
->gadget_driver
->suspend
) {
1918 spin_unlock(&musb
->lock
);
1919 musb
->gadget_driver
->suspend(&musb
->g
);
1920 spin_lock(&musb
->lock
);
1924 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
1925 * A_PERIPHERAL may need care too
1927 WARNING("unhandled SUSPEND transition (%s)\n",
1928 otg_state_string(musb
));
1932 /* Called during SRP */
1933 void musb_g_wakeup(struct musb
*musb
)
1935 musb_gadget_wakeup(&musb
->g
);
1938 /* called when VBUS drops below session threshold, and in other cases */
1939 void musb_g_disconnect(struct musb
*musb
)
1941 void __iomem
*mregs
= musb
->mregs
;
1942 u8 devctl
= musb_readb(mregs
, MUSB_DEVCTL
);
1944 DBG(3, "devctl %02x\n", devctl
);
1947 musb_writeb(mregs
, MUSB_DEVCTL
, devctl
& MUSB_DEVCTL_SESSION
);
1949 /* don't draw vbus until new b-default session */
1950 (void) musb_gadget_vbus_draw(&musb
->g
, 0);
1952 musb
->g
.speed
= USB_SPEED_UNKNOWN
;
1953 if (musb
->gadget_driver
&& musb
->gadget_driver
->disconnect
) {
1954 spin_unlock(&musb
->lock
);
1955 musb
->gadget_driver
->disconnect(&musb
->g
);
1956 spin_lock(&musb
->lock
);
1959 switch (musb
->xceiv
->state
) {
1961 #ifdef CONFIG_USB_MUSB_OTG
1962 DBG(2, "Unhandled disconnect %s, setting a_idle\n",
1963 otg_state_string(musb
));
1964 musb
->xceiv
->state
= OTG_STATE_A_IDLE
;
1965 MUSB_HST_MODE(musb
);
1967 case OTG_STATE_A_PERIPHERAL
:
1968 musb
->xceiv
->state
= OTG_STATE_A_WAIT_BCON
;
1969 MUSB_HST_MODE(musb
);
1971 case OTG_STATE_B_WAIT_ACON
:
1972 case OTG_STATE_B_HOST
:
1974 case OTG_STATE_B_PERIPHERAL
:
1975 case OTG_STATE_B_IDLE
:
1976 musb
->xceiv
->state
= OTG_STATE_B_IDLE
;
1978 case OTG_STATE_B_SRP_INIT
:
1982 musb
->is_active
= 0;
1985 void musb_g_reset(struct musb
*musb
)
1986 __releases(musb
->lock
)
1987 __acquires(musb
->lock
)
1989 void __iomem
*mbase
= musb
->mregs
;
1990 u8 devctl
= musb_readb(mbase
, MUSB_DEVCTL
);
1993 DBG(3, "<== %s addr=%x driver '%s'\n",
1994 (devctl
& MUSB_DEVCTL_BDEVICE
)
1995 ? "B-Device" : "A-Device",
1996 musb_readb(mbase
, MUSB_FADDR
),
1998 ? musb
->gadget_driver
->driver
.name
2002 /* report disconnect, if we didn't already (flushing EP state) */
2003 if (musb
->g
.speed
!= USB_SPEED_UNKNOWN
)
2004 musb_g_disconnect(musb
);
2007 else if (devctl
& MUSB_DEVCTL_HR
)
2008 musb_writeb(mbase
, MUSB_DEVCTL
, MUSB_DEVCTL_SESSION
);
2011 /* what speed did we negotiate? */
2012 power
= musb_readb(mbase
, MUSB_POWER
);
2013 musb
->g
.speed
= (power
& MUSB_POWER_HSMODE
)
2014 ? USB_SPEED_HIGH
: USB_SPEED_FULL
;
2016 /* start in USB_STATE_DEFAULT */
2017 musb
->is_active
= 1;
2018 musb
->is_suspended
= 0;
2019 MUSB_DEV_MODE(musb
);
2021 musb
->ep0_state
= MUSB_EP0_STAGE_SETUP
;
2023 musb
->may_wakeup
= 0;
2024 musb
->g
.b_hnp_enable
= 0;
2025 musb
->g
.a_alt_hnp_support
= 0;
2026 musb
->g
.a_hnp_support
= 0;
2028 /* Normal reset, as B-Device;
2029 * or else after HNP, as A-Device
2031 if (devctl
& MUSB_DEVCTL_BDEVICE
) {
2032 musb
->xceiv
->state
= OTG_STATE_B_PERIPHERAL
;
2033 musb
->g
.is_a_peripheral
= 0;
2034 } else if (is_otg_enabled(musb
)) {
2035 musb
->xceiv
->state
= OTG_STATE_A_PERIPHERAL
;
2036 musb
->g
.is_a_peripheral
= 1;
2040 /* start with default limits on VBUS power draw */
2041 (void) musb_gadget_vbus_draw(&musb
->g
,
2042 is_otg_enabled(musb
) ? 8 : 100);