2 * MUSB OTG driver host 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) 2008-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
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/module.h>
37 #include <linux/kernel.h>
38 #include <linux/delay.h>
39 #include <linux/sched.h>
40 #include <linux/slab.h>
41 #include <linux/errno.h>
42 #include <linux/list.h>
43 #include <linux/dma-mapping.h>
45 #include "musb_core.h"
46 #include "musb_host.h"
48 /* MUSB HOST status 22-mar-2006
50 * - There's still lots of partial code duplication for fault paths, so
51 * they aren't handled as consistently as they need to be.
53 * - PIO mostly behaved when last tested.
54 * + including ep0, with all usbtest cases 9, 10
55 * + usbtest 14 (ep0out) doesn't seem to run at all
56 * + double buffered OUT/TX endpoints saw stalls(!) with certain usbtest
57 * configurations, but otherwise double buffering passes basic tests.
58 * + for 2.6.N, for N > ~10, needs API changes for hcd framework.
60 * - DMA (CPPI) ... partially behaves, not currently recommended
61 * + about 1/15 the speed of typical EHCI implementations (PCI)
62 * + RX, all too often reqpkt seems to misbehave after tx
63 * + TX, no known issues (other than evident silicon issue)
65 * - DMA (Mentor/OMAP) ...has at least toggle update problems
67 * - [23-feb-2009] minimal traffic scheduling to avoid bulk RX packet
68 * starvation ... nothing yet for TX, interrupt, or bulk.
70 * - Not tested with HNP, but some SRP paths seem to behave.
72 * NOTE 24-August-2006:
74 * - Bulk traffic finally uses both sides of hardware ep1, freeing up an
75 * extra endpoint for periodic use enabling hub + keybd + mouse. That
76 * mostly works, except that with "usbnet" it's easy to trigger cases
77 * with "ping" where RX loses. (a) ping to davinci, even "ping -f",
78 * fine; but (b) ping _from_ davinci, even "ping -c 1", ICMP RX loses
79 * although ARP RX wins. (That test was done with a full speed link.)
84 * NOTE on endpoint usage:
86 * CONTROL transfers all go through ep0. BULK ones go through dedicated IN
87 * and OUT endpoints ... hardware is dedicated for those "async" queue(s).
88 * (Yes, bulk _could_ use more of the endpoints than that, and would even
91 * INTERUPPT and ISOCHRONOUS transfers are scheduled to the other endpoints.
92 * So far that scheduling is both dumb and optimistic: the endpoint will be
93 * "claimed" until its software queue is no longer refilled. No multiplexing
94 * of transfers between endpoints, or anything clever.
97 struct musb
*hcd_to_musb(struct usb_hcd
*hcd
)
99 return *(struct musb
**) hcd
->hcd_priv
;
103 static void musb_ep_program(struct musb
*musb
, u8 epnum
,
104 struct urb
*urb
, int is_out
,
105 u8
*buf
, u32 offset
, u32 len
);
108 * Clear TX fifo. Needed to avoid BABBLE errors.
110 static void musb_h_tx_flush_fifo(struct musb_hw_ep
*ep
)
112 struct musb
*musb
= ep
->musb
;
113 void __iomem
*epio
= ep
->regs
;
117 csr
= musb_readw(epio
, MUSB_TXCSR
);
118 while (csr
& MUSB_TXCSR_FIFONOTEMPTY
) {
119 csr
|= MUSB_TXCSR_FLUSHFIFO
| MUSB_TXCSR_TXPKTRDY
;
120 musb_writew(epio
, MUSB_TXCSR
, csr
);
121 csr
= musb_readw(epio
, MUSB_TXCSR
);
124 * FIXME: sometimes the tx fifo flush failed, it has been
125 * observed during device disconnect on AM335x.
127 * To reproduce the issue, ensure tx urb(s) are queued when
128 * unplug the usb device which is connected to AM335x usb
131 * I found using a usb-ethernet device and running iperf
132 * (client on AM335x) has very high chance to trigger it.
134 * Better to turn on dev_dbg() in musb_cleanup_urb() with
135 * CPPI enabled to see the issue when aborting the tx channel.
137 if (dev_WARN_ONCE(musb
->controller
, retries
-- < 1,
138 "Could not flush host TX%d fifo: csr: %04x\n",
144 static void musb_h_ep0_flush_fifo(struct musb_hw_ep
*ep
)
146 void __iomem
*epio
= ep
->regs
;
150 /* scrub any data left in the fifo */
152 csr
= musb_readw(epio
, MUSB_TXCSR
);
153 if (!(csr
& (MUSB_CSR0_TXPKTRDY
| MUSB_CSR0_RXPKTRDY
)))
155 musb_writew(epio
, MUSB_TXCSR
, MUSB_CSR0_FLUSHFIFO
);
156 csr
= musb_readw(epio
, MUSB_TXCSR
);
160 WARN(!retries
, "Could not flush host TX%d fifo: csr: %04x\n",
163 /* and reset for the next transfer */
164 musb_writew(epio
, MUSB_TXCSR
, 0);
168 * Start transmit. Caller is responsible for locking shared resources.
169 * musb must be locked.
171 static inline void musb_h_tx_start(struct musb_hw_ep
*ep
)
175 /* NOTE: no locks here; caller should lock and select EP */
177 txcsr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
178 txcsr
|= MUSB_TXCSR_TXPKTRDY
| MUSB_TXCSR_H_WZC_BITS
;
179 musb_writew(ep
->regs
, MUSB_TXCSR
, txcsr
);
181 txcsr
= MUSB_CSR0_H_SETUPPKT
| MUSB_CSR0_TXPKTRDY
;
182 musb_writew(ep
->regs
, MUSB_CSR0
, txcsr
);
187 static inline void musb_h_tx_dma_start(struct musb_hw_ep
*ep
)
191 /* NOTE: no locks here; caller should lock and select EP */
192 txcsr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
193 txcsr
|= MUSB_TXCSR_DMAENAB
| MUSB_TXCSR_H_WZC_BITS
;
194 if (is_cppi_enabled(ep
->musb
))
195 txcsr
|= MUSB_TXCSR_DMAMODE
;
196 musb_writew(ep
->regs
, MUSB_TXCSR
, txcsr
);
199 static void musb_ep_set_qh(struct musb_hw_ep
*ep
, int is_in
, struct musb_qh
*qh
)
201 if (is_in
!= 0 || ep
->is_shared_fifo
)
203 if (is_in
== 0 || ep
->is_shared_fifo
)
207 static struct musb_qh
*musb_ep_get_qh(struct musb_hw_ep
*ep
, int is_in
)
209 return is_in
? ep
->in_qh
: ep
->out_qh
;
213 * Start the URB at the front of an endpoint's queue
214 * end must be claimed from the caller.
216 * Context: controller locked, irqs blocked
219 musb_start_urb(struct musb
*musb
, int is_in
, struct musb_qh
*qh
)
223 void __iomem
*mbase
= musb
->mregs
;
224 struct urb
*urb
= next_urb(qh
);
225 void *buf
= urb
->transfer_buffer
;
227 struct musb_hw_ep
*hw_ep
= qh
->hw_ep
;
228 unsigned pipe
= urb
->pipe
;
229 u8 address
= usb_pipedevice(pipe
);
230 int epnum
= hw_ep
->epnum
;
232 /* initialize software qh state */
236 /* gather right source of data */
238 case USB_ENDPOINT_XFER_CONTROL
:
239 /* control transfers always start with SETUP */
241 musb
->ep0_stage
= MUSB_EP0_START
;
242 buf
= urb
->setup_packet
;
245 case USB_ENDPOINT_XFER_ISOC
:
248 offset
= urb
->iso_frame_desc
[0].offset
;
249 len
= urb
->iso_frame_desc
[0].length
;
251 default: /* bulk, interrupt */
252 /* actual_length may be nonzero on retry paths */
253 buf
= urb
->transfer_buffer
+ urb
->actual_length
;
254 len
= urb
->transfer_buffer_length
- urb
->actual_length
;
257 dev_dbg(musb
->controller
, "qh %p urb %p dev%d ep%d%s%s, hw_ep %d, %p/%d\n",
258 qh
, urb
, address
, qh
->epnum
,
259 is_in
? "in" : "out",
260 ({char *s
; switch (qh
->type
) {
261 case USB_ENDPOINT_XFER_CONTROL
: s
= ""; break;
262 case USB_ENDPOINT_XFER_BULK
: s
= "-bulk"; break;
263 case USB_ENDPOINT_XFER_ISOC
: s
= "-iso"; break;
264 default: s
= "-intr"; break;
266 epnum
, buf
+ offset
, len
);
268 /* Configure endpoint */
269 musb_ep_set_qh(hw_ep
, is_in
, qh
);
270 musb_ep_program(musb
, epnum
, urb
, !is_in
, buf
, offset
, len
);
272 /* transmit may have more work: start it when it is time */
276 /* determine if the time is right for a periodic transfer */
278 case USB_ENDPOINT_XFER_ISOC
:
279 case USB_ENDPOINT_XFER_INT
:
280 dev_dbg(musb
->controller
, "check whether there's still time for periodic Tx\n");
281 frame
= musb_readw(mbase
, MUSB_FRAME
);
282 /* FIXME this doesn't implement that scheduling policy ...
283 * or handle framecounter wrapping
285 if (1) { /* Always assume URB_ISO_ASAP */
286 /* REVISIT the SOF irq handler shouldn't duplicate
287 * this code; and we don't init urb->start_frame...
292 qh
->frame
= urb
->start_frame
;
293 /* enable SOF interrupt so we can count down */
294 dev_dbg(musb
->controller
, "SOF for %d\n", epnum
);
295 #if 1 /* ifndef CONFIG_ARCH_DAVINCI */
296 musb_writeb(mbase
, MUSB_INTRUSBE
, 0xff);
302 dev_dbg(musb
->controller
, "Start TX%d %s\n", epnum
,
303 hw_ep
->tx_channel
? "dma" : "pio");
305 if (!hw_ep
->tx_channel
)
306 musb_h_tx_start(hw_ep
);
307 else if (is_cppi_enabled(musb
) || tusb_dma_omap(musb
))
308 musb_h_tx_dma_start(hw_ep
);
312 /* Context: caller owns controller lock, IRQs are blocked */
313 static void musb_giveback(struct musb
*musb
, struct urb
*urb
, int status
)
314 __releases(musb
->lock
)
315 __acquires(musb
->lock
)
317 dev_dbg(musb
->controller
,
318 "complete %p %pF (%d), dev%d ep%d%s, %d/%d\n",
319 urb
, urb
->complete
, status
,
320 usb_pipedevice(urb
->pipe
),
321 usb_pipeendpoint(urb
->pipe
),
322 usb_pipein(urb
->pipe
) ? "in" : "out",
323 urb
->actual_length
, urb
->transfer_buffer_length
326 usb_hcd_unlink_urb_from_ep(musb
->hcd
, urb
);
327 spin_unlock(&musb
->lock
);
328 usb_hcd_giveback_urb(musb
->hcd
, urb
, status
);
329 spin_lock(&musb
->lock
);
332 /* For bulk/interrupt endpoints only */
333 static inline void musb_save_toggle(struct musb_qh
*qh
, int is_in
,
336 void __iomem
*epio
= qh
->hw_ep
->regs
;
340 * FIXME: the current Mentor DMA code seems to have
341 * problems getting toggle correct.
345 csr
= musb_readw(epio
, MUSB_RXCSR
) & MUSB_RXCSR_H_DATATOGGLE
;
347 csr
= musb_readw(epio
, MUSB_TXCSR
) & MUSB_TXCSR_H_DATATOGGLE
;
349 usb_settoggle(urb
->dev
, qh
->epnum
, !is_in
, csr
? 1 : 0);
353 * Advance this hardware endpoint's queue, completing the specified URB and
354 * advancing to either the next URB queued to that qh, or else invalidating
355 * that qh and advancing to the next qh scheduled after the current one.
357 * Context: caller owns controller lock, IRQs are blocked
359 static void musb_advance_schedule(struct musb
*musb
, struct urb
*urb
,
360 struct musb_hw_ep
*hw_ep
, int is_in
)
362 struct musb_qh
*qh
= musb_ep_get_qh(hw_ep
, is_in
);
363 struct musb_hw_ep
*ep
= qh
->hw_ep
;
364 int ready
= qh
->is_ready
;
367 status
= (urb
->status
== -EINPROGRESS
) ? 0 : urb
->status
;
369 /* save toggle eagerly, for paranoia */
371 case USB_ENDPOINT_XFER_BULK
:
372 case USB_ENDPOINT_XFER_INT
:
373 musb_save_toggle(qh
, is_in
, urb
);
375 case USB_ENDPOINT_XFER_ISOC
:
376 if (status
== 0 && urb
->error_count
)
382 musb_giveback(musb
, urb
, status
);
383 qh
->is_ready
= ready
;
385 /* reclaim resources (and bandwidth) ASAP; deschedule it, and
386 * invalidate qh as soon as list_empty(&hep->urb_list)
388 if (list_empty(&qh
->hep
->urb_list
)) {
389 struct list_head
*head
;
390 struct dma_controller
*dma
= musb
->dma_controller
;
394 if (ep
->rx_channel
) {
395 dma
->channel_release(ep
->rx_channel
);
396 ep
->rx_channel
= NULL
;
400 if (ep
->tx_channel
) {
401 dma
->channel_release(ep
->tx_channel
);
402 ep
->tx_channel
= NULL
;
406 /* Clobber old pointers to this qh */
407 musb_ep_set_qh(ep
, is_in
, NULL
);
408 qh
->hep
->hcpriv
= NULL
;
412 case USB_ENDPOINT_XFER_CONTROL
:
413 case USB_ENDPOINT_XFER_BULK
:
414 /* fifo policy for these lists, except that NAKing
415 * should rotate a qh to the end (for fairness).
418 head
= qh
->ring
.prev
;
425 case USB_ENDPOINT_XFER_ISOC
:
426 case USB_ENDPOINT_XFER_INT
:
427 /* this is where periodic bandwidth should be
428 * de-allocated if it's tracked and allocated;
429 * and where we'd update the schedule tree...
438 * The pipe must be broken if current urb->status is set, so don't
440 * TODO: to minimize the risk of regression, only check urb->status
441 * for RX, until we have a test case to understand the behavior of TX.
443 if ((!status
|| !is_in
) && qh
&& qh
->is_ready
) {
444 dev_dbg(musb
->controller
, "... next ep%d %cX urb %p\n",
445 hw_ep
->epnum
, is_in
? 'R' : 'T', next_urb(qh
));
446 musb_start_urb(musb
, is_in
, qh
);
450 static u16
musb_h_flush_rxfifo(struct musb_hw_ep
*hw_ep
, u16 csr
)
452 /* we don't want fifo to fill itself again;
453 * ignore dma (various models),
454 * leave toggle alone (may not have been saved yet)
456 csr
|= MUSB_RXCSR_FLUSHFIFO
| MUSB_RXCSR_RXPKTRDY
;
457 csr
&= ~(MUSB_RXCSR_H_REQPKT
458 | MUSB_RXCSR_H_AUTOREQ
459 | MUSB_RXCSR_AUTOCLEAR
);
461 /* write 2x to allow double buffering */
462 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
463 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
465 /* flush writebuffer */
466 return musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
470 * PIO RX for a packet (or part of it).
473 musb_host_packet_rx(struct musb
*musb
, struct urb
*urb
, u8 epnum
, u8 iso_err
)
481 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
482 void __iomem
*epio
= hw_ep
->regs
;
483 struct musb_qh
*qh
= hw_ep
->in_qh
;
484 int pipe
= urb
->pipe
;
485 void *buffer
= urb
->transfer_buffer
;
487 /* musb_ep_select(mbase, epnum); */
488 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
489 dev_dbg(musb
->controller
, "RX%d count %d, buffer %p len %d/%d\n", epnum
, rx_count
,
490 urb
->transfer_buffer
, qh
->offset
,
491 urb
->transfer_buffer_length
);
494 if (usb_pipeisoc(pipe
)) {
496 struct usb_iso_packet_descriptor
*d
;
503 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
504 buf
= buffer
+ d
->offset
;
506 if (rx_count
> length
) {
511 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n", rx_count
, length
);
515 urb
->actual_length
+= length
;
516 d
->actual_length
= length
;
520 /* see if we are done */
521 done
= (++qh
->iso_idx
>= urb
->number_of_packets
);
524 buf
= buffer
+ qh
->offset
;
525 length
= urb
->transfer_buffer_length
- qh
->offset
;
526 if (rx_count
> length
) {
527 if (urb
->status
== -EINPROGRESS
)
528 urb
->status
= -EOVERFLOW
;
529 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n", rx_count
, length
);
533 urb
->actual_length
+= length
;
534 qh
->offset
+= length
;
536 /* see if we are done */
537 done
= (urb
->actual_length
== urb
->transfer_buffer_length
)
538 || (rx_count
< qh
->maxpacket
)
539 || (urb
->status
!= -EINPROGRESS
);
541 && (urb
->status
== -EINPROGRESS
)
542 && (urb
->transfer_flags
& URB_SHORT_NOT_OK
)
543 && (urb
->actual_length
544 < urb
->transfer_buffer_length
))
545 urb
->status
= -EREMOTEIO
;
548 musb_read_fifo(hw_ep
, length
, buf
);
550 csr
= musb_readw(epio
, MUSB_RXCSR
);
551 csr
|= MUSB_RXCSR_H_WZC_BITS
;
552 if (unlikely(do_flush
))
553 musb_h_flush_rxfifo(hw_ep
, csr
);
555 /* REVISIT this assumes AUTOCLEAR is never set */
556 csr
&= ~(MUSB_RXCSR_RXPKTRDY
| MUSB_RXCSR_H_REQPKT
);
558 csr
|= MUSB_RXCSR_H_REQPKT
;
559 musb_writew(epio
, MUSB_RXCSR
, csr
);
565 /* we don't always need to reinit a given side of an endpoint...
566 * when we do, use tx/rx reinit routine and then construct a new CSR
567 * to address data toggle, NYET, and DMA or PIO.
569 * it's possible that driver bugs (especially for DMA) or aborting a
570 * transfer might have left the endpoint busier than it should be.
571 * the busy/not-empty tests are basically paranoia.
574 musb_rx_reinit(struct musb
*musb
, struct musb_qh
*qh
, u8 epnum
)
576 struct musb_hw_ep
*ep
= musb
->endpoints
+ epnum
;
579 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
580 * That always uses tx_reinit since ep0 repurposes TX register
581 * offsets; the initial SETUP packet is also a kind of OUT.
584 /* if programmed for Tx, put it in RX mode */
585 if (ep
->is_shared_fifo
) {
586 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
587 if (csr
& MUSB_TXCSR_MODE
) {
588 musb_h_tx_flush_fifo(ep
);
589 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
590 musb_writew(ep
->regs
, MUSB_TXCSR
,
591 csr
| MUSB_TXCSR_FRCDATATOG
);
595 * Clear the MODE bit (and everything else) to enable Rx.
596 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
598 if (csr
& MUSB_TXCSR_DMAMODE
)
599 musb_writew(ep
->regs
, MUSB_TXCSR
, MUSB_TXCSR_DMAMODE
);
600 musb_writew(ep
->regs
, MUSB_TXCSR
, 0);
602 /* scrub all previous state, clearing toggle */
604 csr
= musb_readw(ep
->regs
, MUSB_RXCSR
);
605 if (csr
& MUSB_RXCSR_RXPKTRDY
)
606 WARNING("rx%d, packet/%d ready?\n", ep
->epnum
,
607 musb_readw(ep
->regs
, MUSB_RXCOUNT
));
609 musb_h_flush_rxfifo(ep
, MUSB_RXCSR_CLRDATATOG
);
611 /* target addr and (for multipoint) hub addr/port */
612 if (musb
->is_multipoint
) {
613 musb_write_rxfunaddr(musb
, epnum
, qh
->addr_reg
);
614 musb_write_rxhubaddr(musb
, epnum
, qh
->h_addr_reg
);
615 musb_write_rxhubport(musb
, epnum
, qh
->h_port_reg
);
617 musb_writeb(musb
->mregs
, MUSB_FADDR
, qh
->addr_reg
);
619 /* protocol/endpoint, interval/NAKlimit, i/o size */
620 musb_writeb(ep
->regs
, MUSB_RXTYPE
, qh
->type_reg
);
621 musb_writeb(ep
->regs
, MUSB_RXINTERVAL
, qh
->intv_reg
);
622 /* NOTE: bulk combining rewrites high bits of maxpacket */
623 /* Set RXMAXP with the FIFO size of the endpoint
624 * to disable double buffer mode.
626 if (musb
->double_buffer_not_ok
)
627 musb_writew(ep
->regs
, MUSB_RXMAXP
, ep
->max_packet_sz_rx
);
629 musb_writew(ep
->regs
, MUSB_RXMAXP
,
630 qh
->maxpacket
| ((qh
->hb_mult
- 1) << 11));
635 static void musb_tx_dma_set_mode_mentor(struct dma_controller
*dma
,
636 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
637 struct urb
*urb
, u32 offset
,
638 u32
*length
, u8
*mode
)
640 struct dma_channel
*channel
= hw_ep
->tx_channel
;
641 void __iomem
*epio
= hw_ep
->regs
;
642 u16 pkt_size
= qh
->maxpacket
;
645 if (*length
> channel
->max_len
)
646 *length
= channel
->max_len
;
648 csr
= musb_readw(epio
, MUSB_TXCSR
);
649 if (*length
> pkt_size
) {
651 csr
|= MUSB_TXCSR_DMAMODE
| MUSB_TXCSR_DMAENAB
;
652 /* autoset shouldn't be set in high bandwidth */
654 * Enable Autoset according to table
656 * bulk_split hb_mult Autoset_Enable
658 * 0 >1 No(High BW ISO)
662 if (qh
->hb_mult
== 1 || (qh
->hb_mult
> 1 &&
663 can_bulk_split(hw_ep
->musb
, qh
->type
)))
664 csr
|= MUSB_TXCSR_AUTOSET
;
667 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAMODE
);
668 csr
|= MUSB_TXCSR_DMAENAB
; /* against programmer's guide */
670 channel
->desired_mode
= *mode
;
671 musb_writew(epio
, MUSB_TXCSR
, csr
);
674 static void musb_tx_dma_set_mode_cppi_tusb(struct dma_controller
*dma
,
675 struct musb_hw_ep
*hw_ep
,
682 struct dma_channel
*channel
= hw_ep
->tx_channel
;
684 channel
->actual_len
= 0;
687 * TX uses "RNDIS" mode automatically but needs help
688 * to identify the zero-length-final-packet case.
690 *mode
= (urb
->transfer_flags
& URB_ZERO_PACKET
) ? 1 : 0;
693 static bool musb_tx_dma_program(struct dma_controller
*dma
,
694 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
695 struct urb
*urb
, u32 offset
, u32 length
)
697 struct dma_channel
*channel
= hw_ep
->tx_channel
;
698 u16 pkt_size
= qh
->maxpacket
;
701 if (musb_dma_inventra(hw_ep
->musb
) || musb_dma_ux500(hw_ep
->musb
))
702 musb_tx_dma_set_mode_mentor(dma
, hw_ep
, qh
, urb
, offset
,
704 else if (is_cppi_enabled(hw_ep
->musb
) || tusb_dma_omap(hw_ep
->musb
))
705 musb_tx_dma_set_mode_cppi_tusb(dma
, hw_ep
, qh
, urb
, offset
,
710 qh
->segsize
= length
;
713 * Ensure the data reaches to main memory before starting
718 if (!dma
->channel_program(channel
, pkt_size
, mode
,
719 urb
->transfer_dma
+ offset
, length
)) {
720 void __iomem
*epio
= hw_ep
->regs
;
723 dma
->channel_release(channel
);
724 hw_ep
->tx_channel
= NULL
;
726 csr
= musb_readw(epio
, MUSB_TXCSR
);
727 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAENAB
);
728 musb_writew(epio
, MUSB_TXCSR
, csr
| MUSB_TXCSR_H_WZC_BITS
);
735 * Program an HDRC endpoint as per the given URB
736 * Context: irqs blocked, controller lock held
738 static void musb_ep_program(struct musb
*musb
, u8 epnum
,
739 struct urb
*urb
, int is_out
,
740 u8
*buf
, u32 offset
, u32 len
)
742 struct dma_controller
*dma_controller
;
743 struct dma_channel
*dma_channel
;
745 void __iomem
*mbase
= musb
->mregs
;
746 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
747 void __iomem
*epio
= hw_ep
->regs
;
748 struct musb_qh
*qh
= musb_ep_get_qh(hw_ep
, !is_out
);
749 u16 packet_sz
= qh
->maxpacket
;
753 dev_dbg(musb
->controller
, "%s hw%d urb %p spd%d dev%d ep%d%s "
754 "h_addr%02x h_port%02x bytes %d\n",
755 is_out
? "-->" : "<--",
756 epnum
, urb
, urb
->dev
->speed
,
757 qh
->addr_reg
, qh
->epnum
, is_out
? "out" : "in",
758 qh
->h_addr_reg
, qh
->h_port_reg
,
761 musb_ep_select(mbase
, epnum
);
763 if (is_out
&& !len
) {
765 csr
= musb_readw(epio
, MUSB_TXCSR
);
766 csr
&= ~MUSB_TXCSR_DMAENAB
;
767 musb_writew(epio
, MUSB_TXCSR
, csr
);
768 hw_ep
->tx_channel
= NULL
;
771 /* candidate for DMA? */
772 dma_controller
= musb
->dma_controller
;
773 if (use_dma
&& is_dma_capable() && epnum
&& dma_controller
) {
774 dma_channel
= is_out
? hw_ep
->tx_channel
: hw_ep
->rx_channel
;
776 dma_channel
= dma_controller
->channel_alloc(
777 dma_controller
, hw_ep
, is_out
);
779 hw_ep
->tx_channel
= dma_channel
;
781 hw_ep
->rx_channel
= dma_channel
;
786 /* make sure we clear DMAEnab, autoSet bits from previous run */
788 /* OUT/transmit/EP0 or IN/receive? */
794 csr
= musb_readw(epio
, MUSB_TXCSR
);
796 /* disable interrupt in case we flush */
797 int_txe
= musb
->intrtxe
;
798 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
& ~(1 << epnum
));
800 /* general endpoint setup */
802 /* flush all old state, set default */
804 * We could be flushing valid
805 * packets in double buffering
808 if (!hw_ep
->tx_double_buffered
)
809 musb_h_tx_flush_fifo(hw_ep
);
812 * We must not clear the DMAMODE bit before or in
813 * the same cycle with the DMAENAB bit, so we clear
814 * the latter first...
816 csr
&= ~(MUSB_TXCSR_H_NAKTIMEOUT
819 | MUSB_TXCSR_FRCDATATOG
820 | MUSB_TXCSR_H_RXSTALL
822 | MUSB_TXCSR_TXPKTRDY
824 csr
|= MUSB_TXCSR_MODE
;
826 if (!hw_ep
->tx_double_buffered
) {
827 if (usb_gettoggle(urb
->dev
, qh
->epnum
, 1))
828 csr
|= MUSB_TXCSR_H_WR_DATATOGGLE
829 | MUSB_TXCSR_H_DATATOGGLE
;
831 csr
|= MUSB_TXCSR_CLRDATATOG
;
834 musb_writew(epio
, MUSB_TXCSR
, csr
);
835 /* REVISIT may need to clear FLUSHFIFO ... */
836 csr
&= ~MUSB_TXCSR_DMAMODE
;
837 musb_writew(epio
, MUSB_TXCSR
, csr
);
838 csr
= musb_readw(epio
, MUSB_TXCSR
);
840 /* endpoint 0: just flush */
841 musb_h_ep0_flush_fifo(hw_ep
);
844 /* target addr and (for multipoint) hub addr/port */
845 if (musb
->is_multipoint
) {
846 musb_write_txfunaddr(musb
, epnum
, qh
->addr_reg
);
847 musb_write_txhubaddr(musb
, epnum
, qh
->h_addr_reg
);
848 musb_write_txhubport(musb
, epnum
, qh
->h_port_reg
);
849 /* FIXME if !epnum, do the same for RX ... */
851 musb_writeb(mbase
, MUSB_FADDR
, qh
->addr_reg
);
853 /* protocol/endpoint/interval/NAKlimit */
855 musb_writeb(epio
, MUSB_TXTYPE
, qh
->type_reg
);
856 if (musb
->double_buffer_not_ok
) {
857 musb_writew(epio
, MUSB_TXMAXP
,
858 hw_ep
->max_packet_sz_tx
);
859 } else if (can_bulk_split(musb
, qh
->type
)) {
860 qh
->hb_mult
= hw_ep
->max_packet_sz_tx
862 musb_writew(epio
, MUSB_TXMAXP
, packet_sz
863 | ((qh
->hb_mult
) - 1) << 11);
865 musb_writew(epio
, MUSB_TXMAXP
,
867 ((qh
->hb_mult
- 1) << 11));
869 musb_writeb(epio
, MUSB_TXINTERVAL
, qh
->intv_reg
);
871 musb_writeb(epio
, MUSB_NAKLIMIT0
, qh
->intv_reg
);
872 if (musb
->is_multipoint
)
873 musb_writeb(epio
, MUSB_TYPE0
,
877 if (can_bulk_split(musb
, qh
->type
))
878 load_count
= min((u32
) hw_ep
->max_packet_sz_tx
,
881 load_count
= min((u32
) packet_sz
, len
);
883 if (dma_channel
&& musb_tx_dma_program(dma_controller
,
884 hw_ep
, qh
, urb
, offset
, len
))
888 /* PIO to load FIFO */
889 qh
->segsize
= load_count
;
891 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
894 if (!sg_miter_next(&qh
->sg_miter
)) {
895 dev_err(musb
->controller
,
898 sg_miter_stop(&qh
->sg_miter
);
901 buf
= qh
->sg_miter
.addr
+ urb
->sg
->offset
+
903 load_count
= min_t(u32
, load_count
,
904 qh
->sg_miter
.length
);
905 musb_write_fifo(hw_ep
, load_count
, buf
);
906 qh
->sg_miter
.consumed
= load_count
;
907 sg_miter_stop(&qh
->sg_miter
);
909 musb_write_fifo(hw_ep
, load_count
, buf
);
912 /* re-enable interrupt */
913 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
);
919 if (hw_ep
->rx_reinit
) {
920 musb_rx_reinit(musb
, qh
, epnum
);
922 /* init new state: toggle and NYET, maybe DMA later */
923 if (usb_gettoggle(urb
->dev
, qh
->epnum
, 0))
924 csr
= MUSB_RXCSR_H_WR_DATATOGGLE
925 | MUSB_RXCSR_H_DATATOGGLE
;
928 if (qh
->type
== USB_ENDPOINT_XFER_INT
)
929 csr
|= MUSB_RXCSR_DISNYET
;
932 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
934 if (csr
& (MUSB_RXCSR_RXPKTRDY
936 | MUSB_RXCSR_H_REQPKT
))
937 ERR("broken !rx_reinit, ep%d csr %04x\n",
940 /* scrub any stale state, leaving toggle alone */
941 csr
&= MUSB_RXCSR_DISNYET
;
944 /* kick things off */
946 if ((is_cppi_enabled(musb
) || tusb_dma_omap(musb
)) && dma_channel
) {
947 /* Candidate for DMA */
948 dma_channel
->actual_len
= 0L;
951 /* AUTOREQ is in a DMA register */
952 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
953 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
956 * Unless caller treats short RX transfers as
957 * errors, we dare not queue multiple transfers.
959 dma_ok
= dma_controller
->channel_program(dma_channel
,
960 packet_sz
, !(urb
->transfer_flags
&
962 urb
->transfer_dma
+ offset
,
965 dma_controller
->channel_release(dma_channel
);
966 hw_ep
->rx_channel
= dma_channel
= NULL
;
968 csr
|= MUSB_RXCSR_DMAENAB
;
971 csr
|= MUSB_RXCSR_H_REQPKT
;
972 dev_dbg(musb
->controller
, "RXCSR%d := %04x\n", epnum
, csr
);
973 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
974 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
978 /* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
979 * the end; avoids starvation for other endpoints.
981 static void musb_bulk_nak_timeout(struct musb
*musb
, struct musb_hw_ep
*ep
,
984 struct dma_channel
*dma
;
986 void __iomem
*mbase
= musb
->mregs
;
987 void __iomem
*epio
= ep
->regs
;
988 struct musb_qh
*cur_qh
, *next_qh
;
991 musb_ep_select(mbase
, ep
->epnum
);
993 dma
= is_dma_capable() ? ep
->rx_channel
: NULL
;
996 * Need to stop the transaction by clearing REQPKT first
997 * then the NAK Timeout bit ref MUSBMHDRC USB 2.0 HIGH-SPEED
998 * DUAL-ROLE CONTROLLER Programmer's Guide, section 9.2.2
1000 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
1001 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
1002 rx_csr
&= ~MUSB_RXCSR_H_REQPKT
;
1003 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1004 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
1005 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1007 cur_qh
= first_qh(&musb
->in_bulk
);
1009 dma
= is_dma_capable() ? ep
->tx_channel
: NULL
;
1011 /* clear nak timeout bit */
1012 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1013 tx_csr
|= MUSB_TXCSR_H_WZC_BITS
;
1014 tx_csr
&= ~MUSB_TXCSR_H_NAKTIMEOUT
;
1015 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1017 cur_qh
= first_qh(&musb
->out_bulk
);
1020 urb
= next_urb(cur_qh
);
1021 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1022 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1023 musb
->dma_controller
->channel_abort(dma
);
1024 urb
->actual_length
+= dma
->actual_len
;
1025 dma
->actual_len
= 0L;
1027 musb_save_toggle(cur_qh
, is_in
, urb
);
1030 /* move cur_qh to end of queue */
1031 list_move_tail(&cur_qh
->ring
, &musb
->in_bulk
);
1033 /* get the next qh from musb->in_bulk */
1034 next_qh
= first_qh(&musb
->in_bulk
);
1036 /* set rx_reinit and schedule the next qh */
1039 /* move cur_qh to end of queue */
1040 list_move_tail(&cur_qh
->ring
, &musb
->out_bulk
);
1042 /* get the next qh from musb->out_bulk */
1043 next_qh
= first_qh(&musb
->out_bulk
);
1045 /* set tx_reinit and schedule the next qh */
1048 musb_start_urb(musb
, is_in
, next_qh
);
1053 * Service the default endpoint (ep0) as host.
1054 * Return true until it's time to start the status stage.
1056 static bool musb_h_ep0_continue(struct musb
*musb
, u16 len
, struct urb
*urb
)
1059 u8
*fifo_dest
= NULL
;
1061 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
1062 struct musb_qh
*qh
= hw_ep
->in_qh
;
1063 struct usb_ctrlrequest
*request
;
1065 switch (musb
->ep0_stage
) {
1067 fifo_dest
= urb
->transfer_buffer
+ urb
->actual_length
;
1068 fifo_count
= min_t(size_t, len
, urb
->transfer_buffer_length
-
1069 urb
->actual_length
);
1070 if (fifo_count
< len
)
1071 urb
->status
= -EOVERFLOW
;
1073 musb_read_fifo(hw_ep
, fifo_count
, fifo_dest
);
1075 urb
->actual_length
+= fifo_count
;
1076 if (len
< qh
->maxpacket
) {
1077 /* always terminate on short read; it's
1078 * rarely reported as an error.
1080 } else if (urb
->actual_length
<
1081 urb
->transfer_buffer_length
)
1084 case MUSB_EP0_START
:
1085 request
= (struct usb_ctrlrequest
*) urb
->setup_packet
;
1087 if (!request
->wLength
) {
1088 dev_dbg(musb
->controller
, "start no-DATA\n");
1090 } else if (request
->bRequestType
& USB_DIR_IN
) {
1091 dev_dbg(musb
->controller
, "start IN-DATA\n");
1092 musb
->ep0_stage
= MUSB_EP0_IN
;
1096 dev_dbg(musb
->controller
, "start OUT-DATA\n");
1097 musb
->ep0_stage
= MUSB_EP0_OUT
;
1102 fifo_count
= min_t(size_t, qh
->maxpacket
,
1103 urb
->transfer_buffer_length
-
1104 urb
->actual_length
);
1106 fifo_dest
= (u8
*) (urb
->transfer_buffer
1107 + urb
->actual_length
);
1108 dev_dbg(musb
->controller
, "Sending %d byte%s to ep0 fifo %p\n",
1110 (fifo_count
== 1) ? "" : "s",
1112 musb_write_fifo(hw_ep
, fifo_count
, fifo_dest
);
1114 urb
->actual_length
+= fifo_count
;
1119 ERR("bogus ep0 stage %d\n", musb
->ep0_stage
);
1127 * Handle default endpoint interrupt as host. Only called in IRQ time
1128 * from musb_interrupt().
1130 * called with controller irqlocked
1132 irqreturn_t
musb_h_ep0_irq(struct musb
*musb
)
1137 void __iomem
*mbase
= musb
->mregs
;
1138 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
1139 void __iomem
*epio
= hw_ep
->regs
;
1140 struct musb_qh
*qh
= hw_ep
->in_qh
;
1141 bool complete
= false;
1142 irqreturn_t retval
= IRQ_NONE
;
1144 /* ep0 only has one queue, "in" */
1147 musb_ep_select(mbase
, 0);
1148 csr
= musb_readw(epio
, MUSB_CSR0
);
1149 len
= (csr
& MUSB_CSR0_RXPKTRDY
)
1150 ? musb_readb(epio
, MUSB_COUNT0
)
1153 dev_dbg(musb
->controller
, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
1154 csr
, qh
, len
, urb
, musb
->ep0_stage
);
1156 /* if we just did status stage, we are done */
1157 if (MUSB_EP0_STATUS
== musb
->ep0_stage
) {
1158 retval
= IRQ_HANDLED
;
1162 /* prepare status */
1163 if (csr
& MUSB_CSR0_H_RXSTALL
) {
1164 dev_dbg(musb
->controller
, "STALLING ENDPOINT\n");
1167 } else if (csr
& MUSB_CSR0_H_ERROR
) {
1168 dev_dbg(musb
->controller
, "no response, csr0 %04x\n", csr
);
1171 } else if (csr
& MUSB_CSR0_H_NAKTIMEOUT
) {
1172 dev_dbg(musb
->controller
, "control NAK timeout\n");
1174 /* NOTE: this code path would be a good place to PAUSE a
1175 * control transfer, if another one is queued, so that
1176 * ep0 is more likely to stay busy. That's already done
1177 * for bulk RX transfers.
1179 * if (qh->ring.next != &musb->control), then
1180 * we have a candidate... NAKing is *NOT* an error
1182 musb_writew(epio
, MUSB_CSR0
, 0);
1183 retval
= IRQ_HANDLED
;
1187 dev_dbg(musb
->controller
, "aborting\n");
1188 retval
= IRQ_HANDLED
;
1190 urb
->status
= status
;
1193 /* use the proper sequence to abort the transfer */
1194 if (csr
& MUSB_CSR0_H_REQPKT
) {
1195 csr
&= ~MUSB_CSR0_H_REQPKT
;
1196 musb_writew(epio
, MUSB_CSR0
, csr
);
1197 csr
&= ~MUSB_CSR0_H_NAKTIMEOUT
;
1198 musb_writew(epio
, MUSB_CSR0
, csr
);
1200 musb_h_ep0_flush_fifo(hw_ep
);
1203 musb_writeb(epio
, MUSB_NAKLIMIT0
, 0);
1206 musb_writew(epio
, MUSB_CSR0
, 0);
1209 if (unlikely(!urb
)) {
1210 /* stop endpoint since we have no place for its data, this
1211 * SHOULD NEVER HAPPEN! */
1212 ERR("no URB for end 0\n");
1214 musb_h_ep0_flush_fifo(hw_ep
);
1219 /* call common logic and prepare response */
1220 if (musb_h_ep0_continue(musb
, len
, urb
)) {
1221 /* more packets required */
1222 csr
= (MUSB_EP0_IN
== musb
->ep0_stage
)
1223 ? MUSB_CSR0_H_REQPKT
: MUSB_CSR0_TXPKTRDY
;
1225 /* data transfer complete; perform status phase */
1226 if (usb_pipeout(urb
->pipe
)
1227 || !urb
->transfer_buffer_length
)
1228 csr
= MUSB_CSR0_H_STATUSPKT
1229 | MUSB_CSR0_H_REQPKT
;
1231 csr
= MUSB_CSR0_H_STATUSPKT
1232 | MUSB_CSR0_TXPKTRDY
;
1234 /* disable ping token in status phase */
1235 csr
|= MUSB_CSR0_H_DIS_PING
;
1237 /* flag status stage */
1238 musb
->ep0_stage
= MUSB_EP0_STATUS
;
1240 dev_dbg(musb
->controller
, "ep0 STATUS, csr %04x\n", csr
);
1243 musb_writew(epio
, MUSB_CSR0
, csr
);
1244 retval
= IRQ_HANDLED
;
1246 musb
->ep0_stage
= MUSB_EP0_IDLE
;
1248 /* call completion handler if done */
1250 musb_advance_schedule(musb
, urb
, hw_ep
, 1);
1256 #ifdef CONFIG_USB_INVENTRA_DMA
1258 /* Host side TX (OUT) using Mentor DMA works as follows:
1260 - if queue was empty, Program Endpoint
1261 - ... which starts DMA to fifo in mode 1 or 0
1263 DMA Isr (transfer complete) -> TxAvail()
1264 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1265 only in musb_cleanup_urb)
1266 - TxPktRdy has to be set in mode 0 or for
1267 short packets in mode 1.
1272 /* Service a Tx-Available or dma completion irq for the endpoint */
1273 void musb_host_tx(struct musb
*musb
, u8 epnum
)
1280 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1281 void __iomem
*epio
= hw_ep
->regs
;
1282 struct musb_qh
*qh
= hw_ep
->out_qh
;
1283 struct urb
*urb
= next_urb(qh
);
1285 void __iomem
*mbase
= musb
->mregs
;
1286 struct dma_channel
*dma
;
1287 bool transfer_pending
= false;
1289 musb_ep_select(mbase
, epnum
);
1290 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1292 /* with CPPI, DMA sometimes triggers "extra" irqs */
1294 dev_dbg(musb
->controller
, "extra TX%d ready, csr %04x\n", epnum
, tx_csr
);
1299 dma
= is_dma_capable() ? hw_ep
->tx_channel
: NULL
;
1300 dev_dbg(musb
->controller
, "OUT/TX%d end, csr %04x%s\n", epnum
, tx_csr
,
1301 dma
? ", dma" : "");
1303 /* check for errors */
1304 if (tx_csr
& MUSB_TXCSR_H_RXSTALL
) {
1305 /* dma was disabled, fifo flushed */
1306 dev_dbg(musb
->controller
, "TX end %d stall\n", epnum
);
1308 /* stall; record URB status */
1311 } else if (tx_csr
& MUSB_TXCSR_H_ERROR
) {
1312 /* (NON-ISO) dma was disabled, fifo flushed */
1313 dev_dbg(musb
->controller
, "TX 3strikes on ep=%d\n", epnum
);
1315 status
= -ETIMEDOUT
;
1317 } else if (tx_csr
& MUSB_TXCSR_H_NAKTIMEOUT
) {
1318 if (USB_ENDPOINT_XFER_BULK
== qh
->type
&& qh
->mux
== 1
1319 && !list_is_singular(&musb
->out_bulk
)) {
1320 dev_dbg(musb
->controller
,
1321 "NAK timeout on TX%d ep\n", epnum
);
1322 musb_bulk_nak_timeout(musb
, hw_ep
, 0);
1324 dev_dbg(musb
->controller
,
1325 "TX end=%d device not responding\n", epnum
);
1326 /* NOTE: this code path would be a good place to PAUSE a
1327 * transfer, if there's some other (nonperiodic) tx urb
1328 * that could use this fifo. (dma complicates it...)
1329 * That's already done for bulk RX transfers.
1331 * if (bulk && qh->ring.next != &musb->out_bulk), then
1332 * we have a candidate... NAKing is *NOT* an error
1334 musb_ep_select(mbase
, epnum
);
1335 musb_writew(epio
, MUSB_TXCSR
,
1336 MUSB_TXCSR_H_WZC_BITS
1337 | MUSB_TXCSR_TXPKTRDY
);
1344 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1345 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1346 musb
->dma_controller
->channel_abort(dma
);
1349 /* do the proper sequence to abort the transfer in the
1350 * usb core; the dma engine should already be stopped.
1352 musb_h_tx_flush_fifo(hw_ep
);
1353 tx_csr
&= ~(MUSB_TXCSR_AUTOSET
1354 | MUSB_TXCSR_DMAENAB
1355 | MUSB_TXCSR_H_ERROR
1356 | MUSB_TXCSR_H_RXSTALL
1357 | MUSB_TXCSR_H_NAKTIMEOUT
1360 musb_ep_select(mbase
, epnum
);
1361 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1362 /* REVISIT may need to clear FLUSHFIFO ... */
1363 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1364 musb_writeb(epio
, MUSB_TXINTERVAL
, 0);
1369 /* second cppi case */
1370 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1371 dev_dbg(musb
->controller
, "extra TX%d ready, csr %04x\n", epnum
, tx_csr
);
1375 if (is_dma_capable() && dma
&& !status
) {
1377 * DMA has completed. But if we're using DMA mode 1 (multi
1378 * packet DMA), we need a terminal TXPKTRDY interrupt before
1379 * we can consider this transfer completed, lest we trash
1380 * its last packet when writing the next URB's data. So we
1381 * switch back to mode 0 to get that interrupt; we'll come
1382 * back here once it happens.
1384 if (tx_csr
& MUSB_TXCSR_DMAMODE
) {
1386 * We shouldn't clear DMAMODE with DMAENAB set; so
1387 * clear them in a safe order. That should be OK
1388 * once TXPKTRDY has been set (and I've never seen
1389 * it being 0 at this moment -- DMA interrupt latency
1390 * is significant) but if it hasn't been then we have
1391 * no choice but to stop being polite and ignore the
1392 * programmer's guide... :-)
1394 * Note that we must write TXCSR with TXPKTRDY cleared
1395 * in order not to re-trigger the packet send (this bit
1396 * can't be cleared by CPU), and there's another caveat:
1397 * TXPKTRDY may be set shortly and then cleared in the
1398 * double-buffered FIFO mode, so we do an extra TXCSR
1399 * read for debouncing...
1401 tx_csr
&= musb_readw(epio
, MUSB_TXCSR
);
1402 if (tx_csr
& MUSB_TXCSR_TXPKTRDY
) {
1403 tx_csr
&= ~(MUSB_TXCSR_DMAENAB
|
1404 MUSB_TXCSR_TXPKTRDY
);
1405 musb_writew(epio
, MUSB_TXCSR
,
1406 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1408 tx_csr
&= ~(MUSB_TXCSR_DMAMODE
|
1409 MUSB_TXCSR_TXPKTRDY
);
1410 musb_writew(epio
, MUSB_TXCSR
,
1411 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1414 * There is no guarantee that we'll get an interrupt
1415 * after clearing DMAMODE as we might have done this
1416 * too late (after TXPKTRDY was cleared by controller).
1417 * Re-read TXCSR as we have spoiled its previous value.
1419 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1423 * We may get here from a DMA completion or TXPKTRDY interrupt.
1424 * In any case, we must check the FIFO status here and bail out
1425 * only if the FIFO still has data -- that should prevent the
1426 * "missed" TXPKTRDY interrupts and deal with double-buffered
1429 if (tx_csr
& (MUSB_TXCSR_FIFONOTEMPTY
| MUSB_TXCSR_TXPKTRDY
)) {
1430 dev_dbg(musb
->controller
, "DMA complete but packet still in FIFO, "
1431 "CSR %04x\n", tx_csr
);
1436 if (!status
|| dma
|| usb_pipeisoc(pipe
)) {
1438 length
= dma
->actual_len
;
1440 length
= qh
->segsize
;
1441 qh
->offset
+= length
;
1443 if (usb_pipeisoc(pipe
)) {
1444 struct usb_iso_packet_descriptor
*d
;
1446 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1447 d
->actual_length
= length
;
1449 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1456 } else if (dma
&& urb
->transfer_buffer_length
== qh
->offset
) {
1459 /* see if we need to send more data, or ZLP */
1460 if (qh
->segsize
< qh
->maxpacket
)
1462 else if (qh
->offset
== urb
->transfer_buffer_length
1463 && !(urb
->transfer_flags
1467 offset
= qh
->offset
;
1468 length
= urb
->transfer_buffer_length
- offset
;
1469 transfer_pending
= true;
1474 /* urb->status != -EINPROGRESS means request has been faulted,
1475 * so we must abort this transfer after cleanup
1477 if (urb
->status
!= -EINPROGRESS
) {
1480 status
= urb
->status
;
1485 urb
->status
= status
;
1486 urb
->actual_length
= qh
->offset
;
1487 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_OUT
);
1489 } else if ((usb_pipeisoc(pipe
) || transfer_pending
) && dma
) {
1490 if (musb_tx_dma_program(musb
->dma_controller
, hw_ep
, qh
, urb
,
1492 if (is_cppi_enabled(musb
) || tusb_dma_omap(musb
))
1493 musb_h_tx_dma_start(hw_ep
);
1496 } else if (tx_csr
& MUSB_TXCSR_DMAENAB
) {
1497 dev_dbg(musb
->controller
, "not complete, but DMA enabled?\n");
1502 * PIO: start next packet in this URB.
1504 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1505 * (and presumably, FIFO is not half-full) we should write *two*
1506 * packets before updating TXCSR; other docs disagree...
1508 if (length
> qh
->maxpacket
)
1509 length
= qh
->maxpacket
;
1510 /* Unmap the buffer so that CPU can use it */
1511 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
1514 * We need to map sg if the transfer_buffer is
1517 if (!urb
->transfer_buffer
)
1521 /* sg_miter_start is already done in musb_ep_program */
1522 if (!sg_miter_next(&qh
->sg_miter
)) {
1523 dev_err(musb
->controller
, "error: sg list empty\n");
1524 sg_miter_stop(&qh
->sg_miter
);
1528 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
1529 length
= min_t(u32
, length
, qh
->sg_miter
.length
);
1530 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
);
1531 qh
->sg_miter
.consumed
= length
;
1532 sg_miter_stop(&qh
->sg_miter
);
1534 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
+ offset
);
1537 qh
->segsize
= length
;
1540 if (offset
+ length
>= urb
->transfer_buffer_length
)
1544 musb_ep_select(mbase
, epnum
);
1545 musb_writew(epio
, MUSB_TXCSR
,
1546 MUSB_TXCSR_H_WZC_BITS
| MUSB_TXCSR_TXPKTRDY
);
1549 #ifdef CONFIG_USB_TI_CPPI41_DMA
1550 /* Seems to set up ISO for cppi41 and not advance len. See commit c57c41d */
1551 static int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1552 struct musb_hw_ep
*hw_ep
,
1557 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1558 void __iomem
*epio
= hw_ep
->regs
;
1563 buf
= (void *)urb
->iso_frame_desc
[qh
->iso_idx
].offset
+
1564 (u32
)urb
->transfer_dma
;
1566 length
= urb
->iso_frame_desc
[qh
->iso_idx
].length
;
1568 val
= musb_readw(epio
, MUSB_RXCSR
);
1569 val
|= MUSB_RXCSR_DMAENAB
;
1570 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1572 res
= dma
->channel_program(channel
, qh
->maxpacket
, 0,
1578 static inline int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1579 struct musb_hw_ep
*hw_ep
,
1588 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1589 defined(CONFIG_USB_TI_CPPI41_DMA)
1590 /* Host side RX (IN) using Mentor DMA works as follows:
1592 - if queue was empty, ProgramEndpoint
1593 - first IN token is sent out (by setting ReqPkt)
1594 LinuxIsr -> RxReady()
1595 /\ => first packet is received
1596 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1597 | -> DMA Isr (transfer complete) -> RxReady()
1598 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1599 | - if urb not complete, send next IN token (ReqPkt)
1600 | | else complete urb.
1602 ---------------------------
1604 * Nuances of mode 1:
1605 * For short packets, no ack (+RxPktRdy) is sent automatically
1606 * (even if AutoClear is ON)
1607 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1608 * automatically => major problem, as collecting the next packet becomes
1609 * difficult. Hence mode 1 is not used.
1612 * All we care about at this driver level is that
1613 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1614 * (b) termination conditions are: short RX, or buffer full;
1615 * (c) fault modes include
1616 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1617 * (and that endpoint's dma queue stops immediately)
1618 * - overflow (full, PLUS more bytes in the terminal packet)
1620 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1621 * thus be a great candidate for using mode 1 ... for all but the
1622 * last packet of one URB's transfer.
1624 static int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1625 struct musb_hw_ep
*hw_ep
,
1630 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1631 void __iomem
*epio
= hw_ep
->regs
;
1638 if (usb_pipeisoc(pipe
)) {
1639 struct usb_iso_packet_descriptor
*d
;
1641 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1642 d
->actual_length
= len
;
1644 /* even if there was an error, we did the dma
1645 * for iso_frame_desc->length
1647 if (d
->status
!= -EILSEQ
&& d
->status
!= -EOVERFLOW
)
1650 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1653 /* REVISIT: Why ignore return value here? */
1654 if (musb_dma_cppi41(hw_ep
->musb
))
1655 done
= musb_rx_dma_iso_cppi41(dma
, hw_ep
, qh
,
1661 /* done if urb buffer is full or short packet is recd */
1662 done
= (urb
->actual_length
+ len
>=
1663 urb
->transfer_buffer_length
1664 || channel
->actual_len
< qh
->maxpacket
1665 || channel
->rx_packet_done
);
1668 /* send IN token for next packet, without AUTOREQ */
1670 val
= musb_readw(epio
, MUSB_RXCSR
);
1671 val
|= MUSB_RXCSR_H_REQPKT
;
1672 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1678 /* Disadvantage of using mode 1:
1679 * It's basically usable only for mass storage class; essentially all
1680 * other protocols also terminate transfers on short packets.
1683 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1684 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1685 * to use the extra IN token to grab the last packet using mode 0, then
1686 * the problem is that you cannot be sure when the device will send the
1687 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1688 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1689 * transfer, while sometimes it is recd just a little late so that if you
1690 * try to configure for mode 0 soon after the mode 1 transfer is
1691 * completed, you will find rxcount 0. Okay, so you might think why not
1692 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1694 static int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1695 struct musb_hw_ep
*hw_ep
,
1701 struct musb
*musb
= hw_ep
->musb
;
1702 void __iomem
*epio
= hw_ep
->regs
;
1703 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1705 int length
, pipe
, done
;
1708 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
1711 if (usb_pipeisoc(pipe
)) {
1713 struct usb_iso_packet_descriptor
*d
;
1715 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1721 if (rx_count
> d
->length
) {
1722 if (d_status
== 0) {
1723 d_status
= -EOVERFLOW
;
1726 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n",
1727 rx_count
, d
->length
);
1732 d
->status
= d_status
;
1733 buf
= urb
->transfer_dma
+ d
->offset
;
1736 buf
= urb
->transfer_dma
+ urb
->actual_length
;
1739 channel
->desired_mode
= 0;
1741 /* because of the issue below, mode 1 will
1742 * only rarely behave with correct semantics.
1744 if ((urb
->transfer_flags
& URB_SHORT_NOT_OK
)
1745 && (urb
->transfer_buffer_length
- urb
->actual_length
)
1747 channel
->desired_mode
= 1;
1748 if (rx_count
< hw_ep
->max_packet_sz_rx
) {
1750 channel
->desired_mode
= 0;
1752 length
= urb
->transfer_buffer_length
;
1756 /* See comments above on disadvantages of using mode 1 */
1757 val
= musb_readw(epio
, MUSB_RXCSR
);
1758 val
&= ~MUSB_RXCSR_H_REQPKT
;
1760 if (channel
->desired_mode
== 0)
1761 val
&= ~MUSB_RXCSR_H_AUTOREQ
;
1763 val
|= MUSB_RXCSR_H_AUTOREQ
;
1764 val
|= MUSB_RXCSR_DMAENAB
;
1766 /* autoclear shouldn't be set in high bandwidth */
1767 if (qh
->hb_mult
== 1)
1768 val
|= MUSB_RXCSR_AUTOCLEAR
;
1770 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1772 /* REVISIT if when actual_length != 0,
1773 * transfer_buffer_length needs to be
1776 done
= dma
->channel_program(channel
, qh
->maxpacket
,
1777 channel
->desired_mode
,
1781 dma
->channel_release(channel
);
1782 hw_ep
->rx_channel
= NULL
;
1784 val
= musb_readw(epio
, MUSB_RXCSR
);
1785 val
&= ~(MUSB_RXCSR_DMAENAB
1786 | MUSB_RXCSR_H_AUTOREQ
1787 | MUSB_RXCSR_AUTOCLEAR
);
1788 musb_writew(epio
, MUSB_RXCSR
, val
);
1794 static inline int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1795 struct musb_hw_ep
*hw_ep
,
1803 static inline int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1804 struct musb_hw_ep
*hw_ep
,
1815 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1816 * and high-bandwidth IN transfer cases.
1818 void musb_host_rx(struct musb
*musb
, u8 epnum
)
1821 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1822 struct dma_controller
*c
= musb
->dma_controller
;
1823 void __iomem
*epio
= hw_ep
->regs
;
1824 struct musb_qh
*qh
= hw_ep
->in_qh
;
1826 void __iomem
*mbase
= musb
->mregs
;
1829 bool iso_err
= false;
1832 struct dma_channel
*dma
;
1833 unsigned int sg_flags
= SG_MITER_ATOMIC
| SG_MITER_TO_SG
;
1835 musb_ep_select(mbase
, epnum
);
1838 dma
= is_dma_capable() ? hw_ep
->rx_channel
: NULL
;
1842 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
1845 if (unlikely(!urb
)) {
1846 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1847 * usbtest #11 (unlinks) triggers it regularly, sometimes
1848 * with fifo full. (Only with DMA??)
1850 dev_dbg(musb
->controller
, "BOGUS RX%d ready, csr %04x, count %d\n", epnum
, val
,
1851 musb_readw(epio
, MUSB_RXCOUNT
));
1852 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1858 dev_dbg(musb
->controller
, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
1859 epnum
, rx_csr
, urb
->actual_length
,
1860 dma
? dma
->actual_len
: 0);
1862 /* check for errors, concurrent stall & unlink is not really
1864 if (rx_csr
& MUSB_RXCSR_H_RXSTALL
) {
1865 dev_dbg(musb
->controller
, "RX end %d STALL\n", epnum
);
1867 /* stall; record URB status */
1870 } else if (rx_csr
& MUSB_RXCSR_H_ERROR
) {
1871 dev_dbg(musb
->controller
, "end %d RX proto error\n", epnum
);
1874 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1876 rx_csr
&= ~MUSB_RXCSR_H_ERROR
;
1877 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1879 } else if (rx_csr
& MUSB_RXCSR_DATAERROR
) {
1881 if (USB_ENDPOINT_XFER_ISOC
!= qh
->type
) {
1882 dev_dbg(musb
->controller
, "RX end %d NAK timeout\n", epnum
);
1884 /* NOTE: NAKing is *NOT* an error, so we want to
1885 * continue. Except ... if there's a request for
1886 * another QH, use that instead of starving it.
1888 * Devices like Ethernet and serial adapters keep
1889 * reads posted at all times, which will starve
1890 * other devices without this logic.
1892 if (usb_pipebulk(urb
->pipe
)
1894 && !list_is_singular(&musb
->in_bulk
)) {
1895 musb_bulk_nak_timeout(musb
, hw_ep
, 1);
1898 musb_ep_select(mbase
, epnum
);
1899 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
1900 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
1901 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1905 dev_dbg(musb
->controller
, "RX end %d ISO data error\n", epnum
);
1906 /* packet error reported later */
1909 } else if (rx_csr
& MUSB_RXCSR_INCOMPRX
) {
1910 dev_dbg(musb
->controller
, "end %d high bandwidth incomplete ISO packet RX\n",
1915 /* faults abort the transfer */
1917 /* clean up dma and collect transfer count */
1918 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1919 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1920 musb
->dma_controller
->channel_abort(dma
);
1921 xfer_len
= dma
->actual_len
;
1923 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1924 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1929 if (unlikely(dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
)) {
1930 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1931 ERR("RX%d dma busy, csr %04x\n", epnum
, rx_csr
);
1935 /* thorough shutdown for now ... given more precise fault handling
1936 * and better queueing support, we might keep a DMA pipeline going
1937 * while processing this irq for earlier completions.
1940 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1941 if (!musb_dma_inventra(musb
) && !musb_dma_ux500(musb
) &&
1942 (rx_csr
& MUSB_RXCSR_H_REQPKT
)) {
1943 /* REVISIT this happened for a while on some short reads...
1944 * the cleanup still needs investigation... looks bad...
1945 * and also duplicates dma cleanup code above ... plus,
1946 * shouldn't this be the "half full" double buffer case?
1948 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1949 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1950 musb
->dma_controller
->channel_abort(dma
);
1951 xfer_len
= dma
->actual_len
;
1955 dev_dbg(musb
->controller
, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum
, rx_csr
,
1956 xfer_len
, dma
? ", dma" : "");
1957 rx_csr
&= ~MUSB_RXCSR_H_REQPKT
;
1959 musb_ep_select(mbase
, epnum
);
1960 musb_writew(epio
, MUSB_RXCSR
,
1961 MUSB_RXCSR_H_WZC_BITS
| rx_csr
);
1964 if (dma
&& (rx_csr
& MUSB_RXCSR_DMAENAB
)) {
1965 xfer_len
= dma
->actual_len
;
1967 val
&= ~(MUSB_RXCSR_DMAENAB
1968 | MUSB_RXCSR_H_AUTOREQ
1969 | MUSB_RXCSR_AUTOCLEAR
1970 | MUSB_RXCSR_RXPKTRDY
);
1971 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1973 if (musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
1974 musb_dma_cppi41(musb
)) {
1975 done
= musb_rx_dma_inventra_cppi41(c
, hw_ep
, qh
, urb
, xfer_len
);
1976 dev_dbg(hw_ep
->musb
->controller
,
1977 "ep %d dma %s, rxcsr %04x, rxcount %d\n",
1978 epnum
, done
? "off" : "reset",
1979 musb_readw(epio
, MUSB_RXCSR
),
1980 musb_readw(epio
, MUSB_RXCOUNT
));
1985 } else if (urb
->status
== -EINPROGRESS
) {
1986 /* if no errors, be sure a packet is ready for unloading */
1987 if (unlikely(!(rx_csr
& MUSB_RXCSR_RXPKTRDY
))) {
1989 ERR("Rx interrupt with no errors or packet!\n");
1991 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1994 /* do the proper sequence to abort the transfer */
1995 musb_ep_select(mbase
, epnum
);
1996 val
&= ~MUSB_RXCSR_H_REQPKT
;
1997 musb_writew(epio
, MUSB_RXCSR
, val
);
2001 /* we are expecting IN packets */
2002 if ((musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
2003 musb_dma_cppi41(musb
)) && dma
) {
2004 dev_dbg(hw_ep
->musb
->controller
,
2005 "RX%d count %d, buffer 0x%llx len %d/%d\n",
2006 epnum
, musb_readw(epio
, MUSB_RXCOUNT
),
2007 (unsigned long long) urb
->transfer_dma
2008 + urb
->actual_length
,
2010 urb
->transfer_buffer_length
);
2012 if (musb_rx_dma_in_inventra_cppi41(c
, hw_ep
, qh
, urb
,
2016 dev_err(musb
->controller
, "error: rx_dma failed\n");
2020 unsigned int received_len
;
2022 /* Unmap the buffer so that CPU can use it */
2023 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
2026 * We need to map sg if the transfer_buffer is
2029 if (!urb
->transfer_buffer
) {
2031 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
2036 if (!sg_miter_next(&qh
->sg_miter
)) {
2037 dev_err(musb
->controller
, "error: sg list empty\n");
2038 sg_miter_stop(&qh
->sg_miter
);
2043 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
2044 received_len
= urb
->actual_length
;
2046 done
= musb_host_packet_rx(musb
, urb
, epnum
,
2048 /* Calculate the number of bytes received */
2049 received_len
= urb
->actual_length
-
2051 qh
->sg_miter
.consumed
= received_len
;
2052 sg_miter_stop(&qh
->sg_miter
);
2054 done
= musb_host_packet_rx(musb
, urb
,
2057 dev_dbg(musb
->controller
, "read %spacket\n", done
? "last " : "");
2062 urb
->actual_length
+= xfer_len
;
2063 qh
->offset
+= xfer_len
;
2068 if (urb
->status
== -EINPROGRESS
)
2069 urb
->status
= status
;
2070 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_IN
);
2074 /* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
2075 * the software schedule associates multiple such nodes with a given
2076 * host side hardware endpoint + direction; scheduling may activate
2077 * that hardware endpoint.
2079 static int musb_schedule(
2086 int best_end
, epnum
;
2087 struct musb_hw_ep
*hw_ep
= NULL
;
2088 struct list_head
*head
= NULL
;
2091 struct urb
*urb
= next_urb(qh
);
2093 /* use fixed hardware for control and bulk */
2094 if (qh
->type
== USB_ENDPOINT_XFER_CONTROL
) {
2095 head
= &musb
->control
;
2096 hw_ep
= musb
->control_ep
;
2100 /* else, periodic transfers get muxed to other endpoints */
2103 * We know this qh hasn't been scheduled, so all we need to do
2104 * is choose which hardware endpoint to put it on ...
2106 * REVISIT what we really want here is a regular schedule tree
2107 * like e.g. OHCI uses.
2112 for (epnum
= 1, hw_ep
= musb
->endpoints
+ 1;
2113 epnum
< musb
->nr_endpoints
;
2117 if (musb_ep_get_qh(hw_ep
, is_in
) != NULL
)
2120 if (hw_ep
== musb
->bulk_ep
)
2124 diff
= hw_ep
->max_packet_sz_rx
;
2126 diff
= hw_ep
->max_packet_sz_tx
;
2127 diff
-= (qh
->maxpacket
* qh
->hb_mult
);
2129 if (diff
>= 0 && best_diff
> diff
) {
2132 * Mentor controller has a bug in that if we schedule
2133 * a BULK Tx transfer on an endpoint that had earlier
2134 * handled ISOC then the BULK transfer has to start on
2135 * a zero toggle. If the BULK transfer starts on a 1
2136 * toggle then this transfer will fail as the mentor
2137 * controller starts the Bulk transfer on a 0 toggle
2138 * irrespective of the programming of the toggle bits
2139 * in the TXCSR register. Check for this condition
2140 * while allocating the EP for a Tx Bulk transfer. If
2143 hw_ep
= musb
->endpoints
+ epnum
;
2144 toggle
= usb_gettoggle(urb
->dev
, qh
->epnum
, !is_in
);
2145 txtype
= (musb_readb(hw_ep
->regs
, MUSB_TXTYPE
)
2147 if (!is_in
&& (qh
->type
== USB_ENDPOINT_XFER_BULK
) &&
2148 toggle
&& (txtype
== USB_ENDPOINT_XFER_ISOC
))
2155 /* use bulk reserved ep1 if no other ep is free */
2156 if (best_end
< 0 && qh
->type
== USB_ENDPOINT_XFER_BULK
) {
2157 hw_ep
= musb
->bulk_ep
;
2159 head
= &musb
->in_bulk
;
2161 head
= &musb
->out_bulk
;
2163 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
2164 * multiplexed. This scheme does not work in high speed to full
2165 * speed scenario as NAK interrupts are not coming from a
2166 * full speed device connected to a high speed device.
2167 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2168 * 4 (8 frame or 8ms) for FS device.
2172 (USB_SPEED_HIGH
== qh
->dev
->speed
) ? 8 : 4;
2174 } else if (best_end
< 0) {
2180 hw_ep
= musb
->endpoints
+ best_end
;
2181 dev_dbg(musb
->controller
, "qh %p periodic slot %d\n", qh
, best_end
);
2184 idle
= list_empty(head
);
2185 list_add_tail(&qh
->ring
, head
);
2189 qh
->hep
->hcpriv
= qh
;
2191 musb_start_urb(musb
, is_in
, qh
);
2195 static int musb_urb_enqueue(
2196 struct usb_hcd
*hcd
,
2200 unsigned long flags
;
2201 struct musb
*musb
= hcd_to_musb(hcd
);
2202 struct usb_host_endpoint
*hep
= urb
->ep
;
2204 struct usb_endpoint_descriptor
*epd
= &hep
->desc
;
2209 /* host role must be active */
2210 if (!is_host_active(musb
) || !musb
->is_active
)
2213 spin_lock_irqsave(&musb
->lock
, flags
);
2214 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
2215 qh
= ret
? NULL
: hep
->hcpriv
;
2218 spin_unlock_irqrestore(&musb
->lock
, flags
);
2220 /* DMA mapping was already done, if needed, and this urb is on
2221 * hep->urb_list now ... so we're done, unless hep wasn't yet
2222 * scheduled onto a live qh.
2224 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2225 * disabled, testing for empty qh->ring and avoiding qh setup costs
2226 * except for the first urb queued after a config change.
2231 /* Allocate and initialize qh, minimizing the work done each time
2232 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2234 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2235 * for bugs in other kernel code to break this driver...
2237 qh
= kzalloc(sizeof *qh
, mem_flags
);
2239 spin_lock_irqsave(&musb
->lock
, flags
);
2240 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2241 spin_unlock_irqrestore(&musb
->lock
, flags
);
2247 INIT_LIST_HEAD(&qh
->ring
);
2250 qh
->maxpacket
= usb_endpoint_maxp(epd
);
2251 qh
->type
= usb_endpoint_type(epd
);
2253 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2254 * Some musb cores don't support high bandwidth ISO transfers; and
2255 * we don't (yet!) support high bandwidth interrupt transfers.
2257 qh
->hb_mult
= 1 + ((qh
->maxpacket
>> 11) & 0x03);
2258 if (qh
->hb_mult
> 1) {
2259 int ok
= (qh
->type
== USB_ENDPOINT_XFER_ISOC
);
2262 ok
= (usb_pipein(urb
->pipe
) && musb
->hb_iso_rx
)
2263 || (usb_pipeout(urb
->pipe
) && musb
->hb_iso_tx
);
2268 qh
->maxpacket
&= 0x7ff;
2271 qh
->epnum
= usb_endpoint_num(epd
);
2273 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2274 qh
->addr_reg
= (u8
) usb_pipedevice(urb
->pipe
);
2276 /* precompute rxtype/txtype/type0 register */
2277 type_reg
= (qh
->type
<< 4) | qh
->epnum
;
2278 switch (urb
->dev
->speed
) {
2282 case USB_SPEED_FULL
:
2288 qh
->type_reg
= type_reg
;
2290 /* Precompute RXINTERVAL/TXINTERVAL register */
2292 case USB_ENDPOINT_XFER_INT
:
2294 * Full/low speeds use the linear encoding,
2295 * high speed uses the logarithmic encoding.
2297 if (urb
->dev
->speed
<= USB_SPEED_FULL
) {
2298 interval
= max_t(u8
, epd
->bInterval
, 1);
2302 case USB_ENDPOINT_XFER_ISOC
:
2303 /* ISO always uses logarithmic encoding */
2304 interval
= min_t(u8
, epd
->bInterval
, 16);
2307 /* REVISIT we actually want to use NAK limits, hinting to the
2308 * transfer scheduling logic to try some other qh, e.g. try
2311 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2313 * The downside of disabling this is that transfer scheduling
2314 * gets VERY unfair for nonperiodic transfers; a misbehaving
2315 * peripheral could make that hurt. That's perfectly normal
2316 * for reads from network or serial adapters ... so we have
2317 * partial NAKlimit support for bulk RX.
2319 * The upside of disabling it is simpler transfer scheduling.
2323 qh
->intv_reg
= interval
;
2325 /* precompute addressing for external hub/tt ports */
2326 if (musb
->is_multipoint
) {
2327 struct usb_device
*parent
= urb
->dev
->parent
;
2329 if (parent
!= hcd
->self
.root_hub
) {
2330 qh
->h_addr_reg
= (u8
) parent
->devnum
;
2332 /* set up tt info if needed */
2334 qh
->h_port_reg
= (u8
) urb
->dev
->ttport
;
2335 if (urb
->dev
->tt
->hub
)
2337 (u8
) urb
->dev
->tt
->hub
->devnum
;
2338 if (urb
->dev
->tt
->multi
)
2339 qh
->h_addr_reg
|= 0x80;
2344 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2345 * until we get real dma queues (with an entry for each urb/buffer),
2346 * we only have work to do in the former case.
2348 spin_lock_irqsave(&musb
->lock
, flags
);
2349 if (hep
->hcpriv
|| !next_urb(qh
)) {
2350 /* some concurrent activity submitted another urb to hep...
2351 * odd, rare, error prone, but legal.
2357 ret
= musb_schedule(musb
, qh
,
2358 epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
);
2362 /* FIXME set urb->start_frame for iso/intr, it's tested in
2363 * musb_start_urb(), but otherwise only konicawc cares ...
2366 spin_unlock_irqrestore(&musb
->lock
, flags
);
2370 spin_lock_irqsave(&musb
->lock
, flags
);
2371 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2372 spin_unlock_irqrestore(&musb
->lock
, flags
);
2380 * abort a transfer that's at the head of a hardware queue.
2381 * called with controller locked, irqs blocked
2382 * that hardware queue advances to the next transfer, unless prevented
2384 static int musb_cleanup_urb(struct urb
*urb
, struct musb_qh
*qh
)
2386 struct musb_hw_ep
*ep
= qh
->hw_ep
;
2387 struct musb
*musb
= ep
->musb
;
2388 void __iomem
*epio
= ep
->regs
;
2389 unsigned hw_end
= ep
->epnum
;
2390 void __iomem
*regs
= ep
->musb
->mregs
;
2391 int is_in
= usb_pipein(urb
->pipe
);
2395 musb_ep_select(regs
, hw_end
);
2397 if (is_dma_capable()) {
2398 struct dma_channel
*dma
;
2400 dma
= is_in
? ep
->rx_channel
: ep
->tx_channel
;
2402 status
= ep
->musb
->dma_controller
->channel_abort(dma
);
2403 dev_dbg(musb
->controller
,
2404 "abort %cX%d DMA for urb %p --> %d\n",
2405 is_in
? 'R' : 'T', ep
->epnum
,
2407 urb
->actual_length
+= dma
->actual_len
;
2411 /* turn off DMA requests, discard state, stop polling ... */
2412 if (ep
->epnum
&& is_in
) {
2413 /* giveback saves bulk toggle */
2414 csr
= musb_h_flush_rxfifo(ep
, 0);
2416 /* REVISIT we still get an irq; should likely clear the
2417 * endpoint's irq status here to avoid bogus irqs.
2418 * clearing that status is platform-specific...
2420 } else if (ep
->epnum
) {
2421 musb_h_tx_flush_fifo(ep
);
2422 csr
= musb_readw(epio
, MUSB_TXCSR
);
2423 csr
&= ~(MUSB_TXCSR_AUTOSET
2424 | MUSB_TXCSR_DMAENAB
2425 | MUSB_TXCSR_H_RXSTALL
2426 | MUSB_TXCSR_H_NAKTIMEOUT
2427 | MUSB_TXCSR_H_ERROR
2428 | MUSB_TXCSR_TXPKTRDY
);
2429 musb_writew(epio
, MUSB_TXCSR
, csr
);
2430 /* REVISIT may need to clear FLUSHFIFO ... */
2431 musb_writew(epio
, MUSB_TXCSR
, csr
);
2432 /* flush cpu writebuffer */
2433 csr
= musb_readw(epio
, MUSB_TXCSR
);
2435 musb_h_ep0_flush_fifo(ep
);
2438 musb_advance_schedule(ep
->musb
, urb
, ep
, is_in
);
2442 static int musb_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
)
2444 struct musb
*musb
= hcd_to_musb(hcd
);
2446 unsigned long flags
;
2447 int is_in
= usb_pipein(urb
->pipe
);
2450 dev_dbg(musb
->controller
, "urb=%p, dev%d ep%d%s\n", urb
,
2451 usb_pipedevice(urb
->pipe
),
2452 usb_pipeendpoint(urb
->pipe
),
2453 is_in
? "in" : "out");
2455 spin_lock_irqsave(&musb
->lock
, flags
);
2456 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
2465 * Any URB not actively programmed into endpoint hardware can be
2466 * immediately given back; that's any URB not at the head of an
2467 * endpoint queue, unless someday we get real DMA queues. And even
2468 * if it's at the head, it might not be known to the hardware...
2470 * Otherwise abort current transfer, pending DMA, etc.; urb->status
2471 * has already been updated. This is a synchronous abort; it'd be
2472 * OK to hold off until after some IRQ, though.
2474 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
2477 || urb
->urb_list
.prev
!= &qh
->hep
->urb_list
2478 || musb_ep_get_qh(qh
->hw_ep
, is_in
) != qh
) {
2479 int ready
= qh
->is_ready
;
2482 musb_giveback(musb
, urb
, 0);
2483 qh
->is_ready
= ready
;
2485 /* If nothing else (usually musb_giveback) is using it
2486 * and its URB list has emptied, recycle this qh.
2488 if (ready
&& list_empty(&qh
->hep
->urb_list
)) {
2489 qh
->hep
->hcpriv
= NULL
;
2490 list_del(&qh
->ring
);
2494 ret
= musb_cleanup_urb(urb
, qh
);
2496 spin_unlock_irqrestore(&musb
->lock
, flags
);
2500 /* disable an endpoint */
2502 musb_h_disable(struct usb_hcd
*hcd
, struct usb_host_endpoint
*hep
)
2504 u8 is_in
= hep
->desc
.bEndpointAddress
& USB_DIR_IN
;
2505 unsigned long flags
;
2506 struct musb
*musb
= hcd_to_musb(hcd
);
2510 spin_lock_irqsave(&musb
->lock
, flags
);
2516 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
2518 /* Kick the first URB off the hardware, if needed */
2520 if (musb_ep_get_qh(qh
->hw_ep
, is_in
) == qh
) {
2523 /* make software (then hardware) stop ASAP */
2525 urb
->status
= -ESHUTDOWN
;
2528 musb_cleanup_urb(urb
, qh
);
2530 /* Then nuke all the others ... and advance the
2531 * queue on hw_ep (e.g. bulk ring) when we're done.
2533 while (!list_empty(&hep
->urb_list
)) {
2535 urb
->status
= -ESHUTDOWN
;
2536 musb_advance_schedule(musb
, urb
, qh
->hw_ep
, is_in
);
2539 /* Just empty the queue; the hardware is busy with
2540 * other transfers, and since !qh->is_ready nothing
2541 * will activate any of these as it advances.
2543 while (!list_empty(&hep
->urb_list
))
2544 musb_giveback(musb
, next_urb(qh
), -ESHUTDOWN
);
2547 list_del(&qh
->ring
);
2551 spin_unlock_irqrestore(&musb
->lock
, flags
);
2554 static int musb_h_get_frame_number(struct usb_hcd
*hcd
)
2556 struct musb
*musb
= hcd_to_musb(hcd
);
2558 return musb_readw(musb
->mregs
, MUSB_FRAME
);
2561 static int musb_h_start(struct usb_hcd
*hcd
)
2563 struct musb
*musb
= hcd_to_musb(hcd
);
2565 /* NOTE: musb_start() is called when the hub driver turns
2566 * on port power, or when (OTG) peripheral starts.
2568 hcd
->state
= HC_STATE_RUNNING
;
2569 musb
->port1_status
= 0;
2573 static void musb_h_stop(struct usb_hcd
*hcd
)
2575 musb_stop(hcd_to_musb(hcd
));
2576 hcd
->state
= HC_STATE_HALT
;
2579 static int musb_bus_suspend(struct usb_hcd
*hcd
)
2581 struct musb
*musb
= hcd_to_musb(hcd
);
2584 musb_port_suspend(musb
, true);
2586 if (!is_host_active(musb
))
2589 switch (musb
->xceiv
->otg
->state
) {
2590 case OTG_STATE_A_SUSPEND
:
2592 case OTG_STATE_A_WAIT_VRISE
:
2593 /* ID could be grounded even if there's no device
2594 * on the other end of the cable. NOTE that the
2595 * A_WAIT_VRISE timers are messy with MUSB...
2597 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
2598 if ((devctl
& MUSB_DEVCTL_VBUS
) == MUSB_DEVCTL_VBUS
)
2599 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_BCON
;
2605 if (musb
->is_active
) {
2606 WARNING("trying to suspend as %s while active\n",
2607 usb_otg_state_string(musb
->xceiv
->otg
->state
));
2613 static int musb_bus_resume(struct usb_hcd
*hcd
)
2615 struct musb
*musb
= hcd_to_musb(hcd
);
2618 musb
->config
->host_port_deassert_reset_at_resume
)
2619 musb_port_reset(musb
, false);
2624 #ifndef CONFIG_MUSB_PIO_ONLY
2626 #define MUSB_USB_DMA_ALIGN 4
2628 struct musb_temp_buffer
{
2630 void *old_xfer_buffer
;
2634 static void musb_free_temp_buffer(struct urb
*urb
)
2636 enum dma_data_direction dir
;
2637 struct musb_temp_buffer
*temp
;
2640 if (!(urb
->transfer_flags
& URB_ALIGNED_TEMP_BUFFER
))
2643 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2645 temp
= container_of(urb
->transfer_buffer
, struct musb_temp_buffer
,
2648 if (dir
== DMA_FROM_DEVICE
) {
2649 if (usb_pipeisoc(urb
->pipe
))
2650 length
= urb
->transfer_buffer_length
;
2652 length
= urb
->actual_length
;
2654 memcpy(temp
->old_xfer_buffer
, temp
->data
, length
);
2656 urb
->transfer_buffer
= temp
->old_xfer_buffer
;
2657 kfree(temp
->kmalloc_ptr
);
2659 urb
->transfer_flags
&= ~URB_ALIGNED_TEMP_BUFFER
;
2662 static int musb_alloc_temp_buffer(struct urb
*urb
, gfp_t mem_flags
)
2664 enum dma_data_direction dir
;
2665 struct musb_temp_buffer
*temp
;
2667 size_t kmalloc_size
;
2669 if (urb
->num_sgs
|| urb
->sg
||
2670 urb
->transfer_buffer_length
== 0 ||
2671 !((uintptr_t)urb
->transfer_buffer
& (MUSB_USB_DMA_ALIGN
- 1)))
2674 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2676 /* Allocate a buffer with enough padding for alignment */
2677 kmalloc_size
= urb
->transfer_buffer_length
+
2678 sizeof(struct musb_temp_buffer
) + MUSB_USB_DMA_ALIGN
- 1;
2680 kmalloc_ptr
= kmalloc(kmalloc_size
, mem_flags
);
2684 /* Position our struct temp_buffer such that data is aligned */
2685 temp
= PTR_ALIGN(kmalloc_ptr
, MUSB_USB_DMA_ALIGN
);
2688 temp
->kmalloc_ptr
= kmalloc_ptr
;
2689 temp
->old_xfer_buffer
= urb
->transfer_buffer
;
2690 if (dir
== DMA_TO_DEVICE
)
2691 memcpy(temp
->data
, urb
->transfer_buffer
,
2692 urb
->transfer_buffer_length
);
2693 urb
->transfer_buffer
= temp
->data
;
2695 urb
->transfer_flags
|= URB_ALIGNED_TEMP_BUFFER
;
2700 static int musb_map_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
,
2703 struct musb
*musb
= hcd_to_musb(hcd
);
2707 * The DMA engine in RTL1.8 and above cannot handle
2708 * DMA addresses that are not aligned to a 4 byte boundary.
2709 * For such engine implemented (un)map_urb_for_dma hooks.
2710 * Do not use these hooks for RTL<1.8
2712 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2713 return usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2715 ret
= musb_alloc_temp_buffer(urb
, mem_flags
);
2719 ret
= usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2721 musb_free_temp_buffer(urb
);
2726 static void musb_unmap_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
)
2728 struct musb
*musb
= hcd_to_musb(hcd
);
2730 usb_hcd_unmap_urb_for_dma(hcd
, urb
);
2732 /* Do not use this hook for RTL<1.8 (see description above) */
2733 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2736 musb_free_temp_buffer(urb
);
2738 #endif /* !CONFIG_MUSB_PIO_ONLY */
2740 static const struct hc_driver musb_hc_driver
= {
2741 .description
= "musb-hcd",
2742 .product_desc
= "MUSB HDRC host driver",
2743 .hcd_priv_size
= sizeof(struct musb
*),
2744 .flags
= HCD_USB2
| HCD_MEMORY
,
2746 /* not using irq handler or reset hooks from usbcore, since
2747 * those must be shared with peripheral code for OTG configs
2750 .start
= musb_h_start
,
2751 .stop
= musb_h_stop
,
2753 .get_frame_number
= musb_h_get_frame_number
,
2755 .urb_enqueue
= musb_urb_enqueue
,
2756 .urb_dequeue
= musb_urb_dequeue
,
2757 .endpoint_disable
= musb_h_disable
,
2759 #ifndef CONFIG_MUSB_PIO_ONLY
2760 .map_urb_for_dma
= musb_map_urb_for_dma
,
2761 .unmap_urb_for_dma
= musb_unmap_urb_for_dma
,
2764 .hub_status_data
= musb_hub_status_data
,
2765 .hub_control
= musb_hub_control
,
2766 .bus_suspend
= musb_bus_suspend
,
2767 .bus_resume
= musb_bus_resume
,
2768 /* .start_port_reset = NULL, */
2769 /* .hub_irq_enable = NULL, */
2772 int musb_host_alloc(struct musb
*musb
)
2774 struct device
*dev
= musb
->controller
;
2776 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
2777 musb
->hcd
= usb_create_hcd(&musb_hc_driver
, dev
, dev_name(dev
));
2781 *musb
->hcd
->hcd_priv
= (unsigned long) musb
;
2782 musb
->hcd
->self
.uses_pio_for_control
= 1;
2783 musb
->hcd
->uses_new_polling
= 1;
2784 musb
->hcd
->has_tt
= 1;
2789 void musb_host_cleanup(struct musb
*musb
)
2791 if (musb
->port_mode
== MUSB_PORT_MODE_GADGET
)
2793 usb_remove_hcd(musb
->hcd
);
2796 void musb_host_free(struct musb
*musb
)
2798 usb_put_hcd(musb
->hcd
);
2801 int musb_host_setup(struct musb
*musb
, int power_budget
)
2804 struct usb_hcd
*hcd
= musb
->hcd
;
2806 MUSB_HST_MODE(musb
);
2807 musb
->xceiv
->otg
->default_a
= 1;
2808 musb
->xceiv
->otg
->state
= OTG_STATE_A_IDLE
;
2810 otg_set_host(musb
->xceiv
->otg
, &hcd
->self
);
2811 hcd
->self
.otg_port
= 1;
2812 musb
->xceiv
->otg
->host
= &hcd
->self
;
2813 hcd
->power_budget
= 2 * (power_budget
? : 250);
2815 ret
= usb_add_hcd(hcd
, 0, 0);
2819 device_wakeup_enable(hcd
->self
.controller
);
2823 void musb_host_resume_root_hub(struct musb
*musb
)
2825 usb_hcd_resume_root_hub(musb
->hcd
);
2828 void musb_host_poke_root_hub(struct musb
*musb
)
2830 MUSB_HST_MODE(musb
);
2831 if (musb
->hcd
->status_urb
)
2832 usb_hcd_poll_rh_status(musb
->hcd
);
2834 usb_hcd_resume_root_hub(musb
->hcd
);