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...
437 if (qh
!= NULL
&& qh
->is_ready
) {
438 dev_dbg(musb
->controller
, "... next ep%d %cX urb %p\n",
439 hw_ep
->epnum
, is_in
? 'R' : 'T', next_urb(qh
));
440 musb_start_urb(musb
, is_in
, qh
);
444 static u16
musb_h_flush_rxfifo(struct musb_hw_ep
*hw_ep
, u16 csr
)
446 /* we don't want fifo to fill itself again;
447 * ignore dma (various models),
448 * leave toggle alone (may not have been saved yet)
450 csr
|= MUSB_RXCSR_FLUSHFIFO
| MUSB_RXCSR_RXPKTRDY
;
451 csr
&= ~(MUSB_RXCSR_H_REQPKT
452 | MUSB_RXCSR_H_AUTOREQ
453 | MUSB_RXCSR_AUTOCLEAR
);
455 /* write 2x to allow double buffering */
456 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
457 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
459 /* flush writebuffer */
460 return musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
464 * PIO RX for a packet (or part of it).
467 musb_host_packet_rx(struct musb
*musb
, struct urb
*urb
, u8 epnum
, u8 iso_err
)
475 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
476 void __iomem
*epio
= hw_ep
->regs
;
477 struct musb_qh
*qh
= hw_ep
->in_qh
;
478 int pipe
= urb
->pipe
;
479 void *buffer
= urb
->transfer_buffer
;
481 /* musb_ep_select(mbase, epnum); */
482 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
483 dev_dbg(musb
->controller
, "RX%d count %d, buffer %p len %d/%d\n", epnum
, rx_count
,
484 urb
->transfer_buffer
, qh
->offset
,
485 urb
->transfer_buffer_length
);
488 if (usb_pipeisoc(pipe
)) {
490 struct usb_iso_packet_descriptor
*d
;
497 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
498 buf
= buffer
+ d
->offset
;
500 if (rx_count
> length
) {
505 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n", rx_count
, length
);
509 urb
->actual_length
+= length
;
510 d
->actual_length
= length
;
514 /* see if we are done */
515 done
= (++qh
->iso_idx
>= urb
->number_of_packets
);
518 buf
= buffer
+ qh
->offset
;
519 length
= urb
->transfer_buffer_length
- qh
->offset
;
520 if (rx_count
> length
) {
521 if (urb
->status
== -EINPROGRESS
)
522 urb
->status
= -EOVERFLOW
;
523 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n", rx_count
, length
);
527 urb
->actual_length
+= length
;
528 qh
->offset
+= length
;
530 /* see if we are done */
531 done
= (urb
->actual_length
== urb
->transfer_buffer_length
)
532 || (rx_count
< qh
->maxpacket
)
533 || (urb
->status
!= -EINPROGRESS
);
535 && (urb
->status
== -EINPROGRESS
)
536 && (urb
->transfer_flags
& URB_SHORT_NOT_OK
)
537 && (urb
->actual_length
538 < urb
->transfer_buffer_length
))
539 urb
->status
= -EREMOTEIO
;
542 musb_read_fifo(hw_ep
, length
, buf
);
544 csr
= musb_readw(epio
, MUSB_RXCSR
);
545 csr
|= MUSB_RXCSR_H_WZC_BITS
;
546 if (unlikely(do_flush
))
547 musb_h_flush_rxfifo(hw_ep
, csr
);
549 /* REVISIT this assumes AUTOCLEAR is never set */
550 csr
&= ~(MUSB_RXCSR_RXPKTRDY
| MUSB_RXCSR_H_REQPKT
);
552 csr
|= MUSB_RXCSR_H_REQPKT
;
553 musb_writew(epio
, MUSB_RXCSR
, csr
);
559 /* we don't always need to reinit a given side of an endpoint...
560 * when we do, use tx/rx reinit routine and then construct a new CSR
561 * to address data toggle, NYET, and DMA or PIO.
563 * it's possible that driver bugs (especially for DMA) or aborting a
564 * transfer might have left the endpoint busier than it should be.
565 * the busy/not-empty tests are basically paranoia.
568 musb_rx_reinit(struct musb
*musb
, struct musb_qh
*qh
, u8 epnum
)
570 struct musb_hw_ep
*ep
= musb
->endpoints
+ epnum
;
573 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
574 * That always uses tx_reinit since ep0 repurposes TX register
575 * offsets; the initial SETUP packet is also a kind of OUT.
578 /* if programmed for Tx, put it in RX mode */
579 if (ep
->is_shared_fifo
) {
580 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
581 if (csr
& MUSB_TXCSR_MODE
) {
582 musb_h_tx_flush_fifo(ep
);
583 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
584 musb_writew(ep
->regs
, MUSB_TXCSR
,
585 csr
| MUSB_TXCSR_FRCDATATOG
);
589 * Clear the MODE bit (and everything else) to enable Rx.
590 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
592 if (csr
& MUSB_TXCSR_DMAMODE
)
593 musb_writew(ep
->regs
, MUSB_TXCSR
, MUSB_TXCSR_DMAMODE
);
594 musb_writew(ep
->regs
, MUSB_TXCSR
, 0);
596 /* scrub all previous state, clearing toggle */
598 csr
= musb_readw(ep
->regs
, MUSB_RXCSR
);
599 if (csr
& MUSB_RXCSR_RXPKTRDY
)
600 WARNING("rx%d, packet/%d ready?\n", ep
->epnum
,
601 musb_readw(ep
->regs
, MUSB_RXCOUNT
));
603 musb_h_flush_rxfifo(ep
, MUSB_RXCSR_CLRDATATOG
);
606 /* target addr and (for multipoint) hub addr/port */
607 if (musb
->is_multipoint
) {
608 musb_write_rxfunaddr(musb
, epnum
, qh
->addr_reg
);
609 musb_write_rxhubaddr(musb
, epnum
, qh
->h_addr_reg
);
610 musb_write_rxhubport(musb
, epnum
, qh
->h_port_reg
);
612 musb_writeb(musb
->mregs
, MUSB_FADDR
, qh
->addr_reg
);
614 /* protocol/endpoint, interval/NAKlimit, i/o size */
615 musb_writeb(ep
->regs
, MUSB_RXTYPE
, qh
->type_reg
);
616 musb_writeb(ep
->regs
, MUSB_RXINTERVAL
, qh
->intv_reg
);
617 /* NOTE: bulk combining rewrites high bits of maxpacket */
618 /* Set RXMAXP with the FIFO size of the endpoint
619 * to disable double buffer mode.
621 if (musb
->double_buffer_not_ok
)
622 musb_writew(ep
->regs
, MUSB_RXMAXP
, ep
->max_packet_sz_rx
);
624 musb_writew(ep
->regs
, MUSB_RXMAXP
,
625 qh
->maxpacket
| ((qh
->hb_mult
- 1) << 11));
630 static int musb_tx_dma_set_mode_mentor(struct dma_controller
*dma
,
631 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
632 struct urb
*urb
, u32 offset
,
633 u32
*length
, u8
*mode
)
635 struct dma_channel
*channel
= hw_ep
->tx_channel
;
636 void __iomem
*epio
= hw_ep
->regs
;
637 u16 pkt_size
= qh
->maxpacket
;
640 if (*length
> channel
->max_len
)
641 *length
= channel
->max_len
;
643 csr
= musb_readw(epio
, MUSB_TXCSR
);
644 if (*length
> pkt_size
) {
646 csr
|= MUSB_TXCSR_DMAMODE
| MUSB_TXCSR_DMAENAB
;
647 /* autoset shouldn't be set in high bandwidth */
649 * Enable Autoset according to table
651 * bulk_split hb_mult Autoset_Enable
653 * 0 >1 No(High BW ISO)
657 if (qh
->hb_mult
== 1 || (qh
->hb_mult
> 1 &&
658 can_bulk_split(hw_ep
->musb
, qh
->type
)))
659 csr
|= MUSB_TXCSR_AUTOSET
;
662 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAMODE
);
663 csr
|= MUSB_TXCSR_DMAENAB
; /* against programmer's guide */
665 channel
->desired_mode
= mode
;
666 musb_writew(epio
, MUSB_TXCSR
, csr
);
671 static int musb_tx_dma_set_mode_cppi_tusb(struct dma_controller
*dma
,
672 struct musb_hw_ep
*hw_ep
,
679 struct dma_channel
*channel
= hw_ep
->tx_channel
;
681 if (!is_cppi_enabled(hw_ep
->musb
) && !tusb_dma_omap(hw_ep
->musb
))
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;
695 static bool musb_tx_dma_program(struct dma_controller
*dma
,
696 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
697 struct urb
*urb
, u32 offset
, u32 length
)
699 struct dma_channel
*channel
= hw_ep
->tx_channel
;
700 u16 pkt_size
= qh
->maxpacket
;
704 if (musb_dma_inventra(hw_ep
->musb
) || musb_dma_ux500(hw_ep
->musb
))
705 res
= musb_tx_dma_set_mode_mentor(dma
, hw_ep
, qh
, urb
,
706 offset
, &length
, &mode
);
708 res
= musb_tx_dma_set_mode_cppi_tusb(dma
, hw_ep
, qh
, urb
,
709 offset
, &length
, &mode
);
713 qh
->segsize
= length
;
716 * Ensure the data reaches to main memory before starting
721 if (!dma
->channel_program(channel
, pkt_size
, mode
,
722 urb
->transfer_dma
+ offset
, length
)) {
723 void __iomem
*epio
= hw_ep
->regs
;
726 dma
->channel_release(channel
);
727 hw_ep
->tx_channel
= NULL
;
729 csr
= musb_readw(epio
, MUSB_TXCSR
);
730 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAENAB
);
731 musb_writew(epio
, MUSB_TXCSR
, csr
| MUSB_TXCSR_H_WZC_BITS
);
738 * Program an HDRC endpoint as per the given URB
739 * Context: irqs blocked, controller lock held
741 static void musb_ep_program(struct musb
*musb
, u8 epnum
,
742 struct urb
*urb
, int is_out
,
743 u8
*buf
, u32 offset
, u32 len
)
745 struct dma_controller
*dma_controller
;
746 struct dma_channel
*dma_channel
;
748 void __iomem
*mbase
= musb
->mregs
;
749 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
750 void __iomem
*epio
= hw_ep
->regs
;
751 struct musb_qh
*qh
= musb_ep_get_qh(hw_ep
, !is_out
);
752 u16 packet_sz
= qh
->maxpacket
;
756 dev_dbg(musb
->controller
, "%s hw%d urb %p spd%d dev%d ep%d%s "
757 "h_addr%02x h_port%02x bytes %d\n",
758 is_out
? "-->" : "<--",
759 epnum
, urb
, urb
->dev
->speed
,
760 qh
->addr_reg
, qh
->epnum
, is_out
? "out" : "in",
761 qh
->h_addr_reg
, qh
->h_port_reg
,
764 musb_ep_select(mbase
, epnum
);
766 if (is_out
&& !len
) {
768 csr
= musb_readw(epio
, MUSB_TXCSR
);
769 csr
&= ~MUSB_TXCSR_DMAENAB
;
770 musb_writew(epio
, MUSB_TXCSR
, csr
);
771 hw_ep
->tx_channel
= NULL
;
774 /* candidate for DMA? */
775 dma_controller
= musb
->dma_controller
;
776 if (use_dma
&& is_dma_capable() && epnum
&& dma_controller
) {
777 dma_channel
= is_out
? hw_ep
->tx_channel
: hw_ep
->rx_channel
;
779 dma_channel
= dma_controller
->channel_alloc(
780 dma_controller
, hw_ep
, is_out
);
782 hw_ep
->tx_channel
= dma_channel
;
784 hw_ep
->rx_channel
= dma_channel
;
789 /* make sure we clear DMAEnab, autoSet bits from previous run */
791 /* OUT/transmit/EP0 or IN/receive? */
797 csr
= musb_readw(epio
, MUSB_TXCSR
);
799 /* disable interrupt in case we flush */
800 int_txe
= musb
->intrtxe
;
801 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
& ~(1 << epnum
));
803 /* general endpoint setup */
805 /* flush all old state, set default */
807 * We could be flushing valid
808 * packets in double buffering
811 if (!hw_ep
->tx_double_buffered
)
812 musb_h_tx_flush_fifo(hw_ep
);
815 * We must not clear the DMAMODE bit before or in
816 * the same cycle with the DMAENAB bit, so we clear
817 * the latter first...
819 csr
&= ~(MUSB_TXCSR_H_NAKTIMEOUT
822 | MUSB_TXCSR_FRCDATATOG
823 | MUSB_TXCSR_H_RXSTALL
825 | MUSB_TXCSR_TXPKTRDY
827 csr
|= MUSB_TXCSR_MODE
;
829 if (!hw_ep
->tx_double_buffered
) {
830 if (usb_gettoggle(urb
->dev
, qh
->epnum
, 1))
831 csr
|= MUSB_TXCSR_H_WR_DATATOGGLE
832 | MUSB_TXCSR_H_DATATOGGLE
;
834 csr
|= MUSB_TXCSR_CLRDATATOG
;
837 musb_writew(epio
, MUSB_TXCSR
, csr
);
838 /* REVISIT may need to clear FLUSHFIFO ... */
839 csr
&= ~MUSB_TXCSR_DMAMODE
;
840 musb_writew(epio
, MUSB_TXCSR
, csr
);
841 csr
= musb_readw(epio
, MUSB_TXCSR
);
843 /* endpoint 0: just flush */
844 musb_h_ep0_flush_fifo(hw_ep
);
847 /* target addr and (for multipoint) hub addr/port */
848 if (musb
->is_multipoint
) {
849 musb_write_txfunaddr(musb
, epnum
, qh
->addr_reg
);
850 musb_write_txhubaddr(musb
, epnum
, qh
->h_addr_reg
);
851 musb_write_txhubport(musb
, epnum
, qh
->h_port_reg
);
852 /* FIXME if !epnum, do the same for RX ... */
854 musb_writeb(mbase
, MUSB_FADDR
, qh
->addr_reg
);
856 /* protocol/endpoint/interval/NAKlimit */
858 musb_writeb(epio
, MUSB_TXTYPE
, qh
->type_reg
);
859 if (musb
->double_buffer_not_ok
) {
860 musb_writew(epio
, MUSB_TXMAXP
,
861 hw_ep
->max_packet_sz_tx
);
862 } else if (can_bulk_split(musb
, qh
->type
)) {
863 qh
->hb_mult
= hw_ep
->max_packet_sz_tx
865 musb_writew(epio
, MUSB_TXMAXP
, packet_sz
866 | ((qh
->hb_mult
) - 1) << 11);
868 musb_writew(epio
, MUSB_TXMAXP
,
870 ((qh
->hb_mult
- 1) << 11));
872 musb_writeb(epio
, MUSB_TXINTERVAL
, qh
->intv_reg
);
874 musb_writeb(epio
, MUSB_NAKLIMIT0
, qh
->intv_reg
);
875 if (musb
->is_multipoint
)
876 musb_writeb(epio
, MUSB_TYPE0
,
880 if (can_bulk_split(musb
, qh
->type
))
881 load_count
= min((u32
) hw_ep
->max_packet_sz_tx
,
884 load_count
= min((u32
) packet_sz
, len
);
886 if (dma_channel
&& musb_tx_dma_program(dma_controller
,
887 hw_ep
, qh
, urb
, offset
, len
))
891 /* PIO to load FIFO */
892 qh
->segsize
= load_count
;
894 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
897 if (!sg_miter_next(&qh
->sg_miter
)) {
898 dev_err(musb
->controller
,
901 sg_miter_stop(&qh
->sg_miter
);
904 buf
= qh
->sg_miter
.addr
+ urb
->sg
->offset
+
906 load_count
= min_t(u32
, load_count
,
907 qh
->sg_miter
.length
);
908 musb_write_fifo(hw_ep
, load_count
, buf
);
909 qh
->sg_miter
.consumed
= load_count
;
910 sg_miter_stop(&qh
->sg_miter
);
912 musb_write_fifo(hw_ep
, load_count
, buf
);
915 /* re-enable interrupt */
916 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
);
922 if (hw_ep
->rx_reinit
) {
923 musb_rx_reinit(musb
, qh
, epnum
);
925 /* init new state: toggle and NYET, maybe DMA later */
926 if (usb_gettoggle(urb
->dev
, qh
->epnum
, 0))
927 csr
= MUSB_RXCSR_H_WR_DATATOGGLE
928 | MUSB_RXCSR_H_DATATOGGLE
;
931 if (qh
->type
== USB_ENDPOINT_XFER_INT
)
932 csr
|= MUSB_RXCSR_DISNYET
;
935 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
937 if (csr
& (MUSB_RXCSR_RXPKTRDY
939 | MUSB_RXCSR_H_REQPKT
))
940 ERR("broken !rx_reinit, ep%d csr %04x\n",
943 /* scrub any stale state, leaving toggle alone */
944 csr
&= MUSB_RXCSR_DISNYET
;
947 /* kick things off */
949 if ((is_cppi_enabled(musb
) || tusb_dma_omap(musb
)) && dma_channel
) {
950 /* Candidate for DMA */
951 dma_channel
->actual_len
= 0L;
954 /* AUTOREQ is in a DMA register */
955 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
956 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
959 * Unless caller treats short RX transfers as
960 * errors, we dare not queue multiple transfers.
962 dma_ok
= dma_controller
->channel_program(dma_channel
,
963 packet_sz
, !(urb
->transfer_flags
&
965 urb
->transfer_dma
+ offset
,
968 dma_controller
->channel_release(dma_channel
);
969 hw_ep
->rx_channel
= dma_channel
= NULL
;
971 csr
|= MUSB_RXCSR_DMAENAB
;
974 csr
|= MUSB_RXCSR_H_REQPKT
;
975 dev_dbg(musb
->controller
, "RXCSR%d := %04x\n", epnum
, csr
);
976 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
977 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
981 /* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
982 * the end; avoids starvation for other endpoints.
984 static void musb_bulk_nak_timeout(struct musb
*musb
, struct musb_hw_ep
*ep
,
987 struct dma_channel
*dma
;
989 void __iomem
*mbase
= musb
->mregs
;
990 void __iomem
*epio
= ep
->regs
;
991 struct musb_qh
*cur_qh
, *next_qh
;
994 musb_ep_select(mbase
, ep
->epnum
);
996 dma
= is_dma_capable() ? ep
->rx_channel
: NULL
;
998 /* clear nak timeout bit */
999 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
1000 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
1001 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
1002 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1004 cur_qh
= first_qh(&musb
->in_bulk
);
1006 dma
= is_dma_capable() ? ep
->tx_channel
: NULL
;
1008 /* clear nak timeout bit */
1009 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1010 tx_csr
|= MUSB_TXCSR_H_WZC_BITS
;
1011 tx_csr
&= ~MUSB_TXCSR_H_NAKTIMEOUT
;
1012 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1014 cur_qh
= first_qh(&musb
->out_bulk
);
1017 urb
= next_urb(cur_qh
);
1018 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1019 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1020 musb
->dma_controller
->channel_abort(dma
);
1021 urb
->actual_length
+= dma
->actual_len
;
1022 dma
->actual_len
= 0L;
1024 musb_save_toggle(cur_qh
, is_in
, urb
);
1027 /* move cur_qh to end of queue */
1028 list_move_tail(&cur_qh
->ring
, &musb
->in_bulk
);
1030 /* get the next qh from musb->in_bulk */
1031 next_qh
= first_qh(&musb
->in_bulk
);
1033 /* set rx_reinit and schedule the next qh */
1036 /* move cur_qh to end of queue */
1037 list_move_tail(&cur_qh
->ring
, &musb
->out_bulk
);
1039 /* get the next qh from musb->out_bulk */
1040 next_qh
= first_qh(&musb
->out_bulk
);
1042 /* set tx_reinit and schedule the next qh */
1045 musb_start_urb(musb
, is_in
, next_qh
);
1050 * Service the default endpoint (ep0) as host.
1051 * Return true until it's time to start the status stage.
1053 static bool musb_h_ep0_continue(struct musb
*musb
, u16 len
, struct urb
*urb
)
1056 u8
*fifo_dest
= NULL
;
1058 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
1059 struct musb_qh
*qh
= hw_ep
->in_qh
;
1060 struct usb_ctrlrequest
*request
;
1062 switch (musb
->ep0_stage
) {
1064 fifo_dest
= urb
->transfer_buffer
+ urb
->actual_length
;
1065 fifo_count
= min_t(size_t, len
, urb
->transfer_buffer_length
-
1066 urb
->actual_length
);
1067 if (fifo_count
< len
)
1068 urb
->status
= -EOVERFLOW
;
1070 musb_read_fifo(hw_ep
, fifo_count
, fifo_dest
);
1072 urb
->actual_length
+= fifo_count
;
1073 if (len
< qh
->maxpacket
) {
1074 /* always terminate on short read; it's
1075 * rarely reported as an error.
1077 } else if (urb
->actual_length
<
1078 urb
->transfer_buffer_length
)
1081 case MUSB_EP0_START
:
1082 request
= (struct usb_ctrlrequest
*) urb
->setup_packet
;
1084 if (!request
->wLength
) {
1085 dev_dbg(musb
->controller
, "start no-DATA\n");
1087 } else if (request
->bRequestType
& USB_DIR_IN
) {
1088 dev_dbg(musb
->controller
, "start IN-DATA\n");
1089 musb
->ep0_stage
= MUSB_EP0_IN
;
1093 dev_dbg(musb
->controller
, "start OUT-DATA\n");
1094 musb
->ep0_stage
= MUSB_EP0_OUT
;
1099 fifo_count
= min_t(size_t, qh
->maxpacket
,
1100 urb
->transfer_buffer_length
-
1101 urb
->actual_length
);
1103 fifo_dest
= (u8
*) (urb
->transfer_buffer
1104 + urb
->actual_length
);
1105 dev_dbg(musb
->controller
, "Sending %d byte%s to ep0 fifo %p\n",
1107 (fifo_count
== 1) ? "" : "s",
1109 musb_write_fifo(hw_ep
, fifo_count
, fifo_dest
);
1111 urb
->actual_length
+= fifo_count
;
1116 ERR("bogus ep0 stage %d\n", musb
->ep0_stage
);
1124 * Handle default endpoint interrupt as host. Only called in IRQ time
1125 * from musb_interrupt().
1127 * called with controller irqlocked
1129 irqreturn_t
musb_h_ep0_irq(struct musb
*musb
)
1134 void __iomem
*mbase
= musb
->mregs
;
1135 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
1136 void __iomem
*epio
= hw_ep
->regs
;
1137 struct musb_qh
*qh
= hw_ep
->in_qh
;
1138 bool complete
= false;
1139 irqreturn_t retval
= IRQ_NONE
;
1141 /* ep0 only has one queue, "in" */
1144 musb_ep_select(mbase
, 0);
1145 csr
= musb_readw(epio
, MUSB_CSR0
);
1146 len
= (csr
& MUSB_CSR0_RXPKTRDY
)
1147 ? musb_readb(epio
, MUSB_COUNT0
)
1150 dev_dbg(musb
->controller
, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
1151 csr
, qh
, len
, urb
, musb
->ep0_stage
);
1153 /* if we just did status stage, we are done */
1154 if (MUSB_EP0_STATUS
== musb
->ep0_stage
) {
1155 retval
= IRQ_HANDLED
;
1159 /* prepare status */
1160 if (csr
& MUSB_CSR0_H_RXSTALL
) {
1161 dev_dbg(musb
->controller
, "STALLING ENDPOINT\n");
1164 } else if (csr
& MUSB_CSR0_H_ERROR
) {
1165 dev_dbg(musb
->controller
, "no response, csr0 %04x\n", csr
);
1168 } else if (csr
& MUSB_CSR0_H_NAKTIMEOUT
) {
1169 dev_dbg(musb
->controller
, "control NAK timeout\n");
1171 /* NOTE: this code path would be a good place to PAUSE a
1172 * control transfer, if another one is queued, so that
1173 * ep0 is more likely to stay busy. That's already done
1174 * for bulk RX transfers.
1176 * if (qh->ring.next != &musb->control), then
1177 * we have a candidate... NAKing is *NOT* an error
1179 musb_writew(epio
, MUSB_CSR0
, 0);
1180 retval
= IRQ_HANDLED
;
1184 dev_dbg(musb
->controller
, "aborting\n");
1185 retval
= IRQ_HANDLED
;
1187 urb
->status
= status
;
1190 /* use the proper sequence to abort the transfer */
1191 if (csr
& MUSB_CSR0_H_REQPKT
) {
1192 csr
&= ~MUSB_CSR0_H_REQPKT
;
1193 musb_writew(epio
, MUSB_CSR0
, csr
);
1194 csr
&= ~MUSB_CSR0_H_NAKTIMEOUT
;
1195 musb_writew(epio
, MUSB_CSR0
, csr
);
1197 musb_h_ep0_flush_fifo(hw_ep
);
1200 musb_writeb(epio
, MUSB_NAKLIMIT0
, 0);
1203 musb_writew(epio
, MUSB_CSR0
, 0);
1206 if (unlikely(!urb
)) {
1207 /* stop endpoint since we have no place for its data, this
1208 * SHOULD NEVER HAPPEN! */
1209 ERR("no URB for end 0\n");
1211 musb_h_ep0_flush_fifo(hw_ep
);
1216 /* call common logic and prepare response */
1217 if (musb_h_ep0_continue(musb
, len
, urb
)) {
1218 /* more packets required */
1219 csr
= (MUSB_EP0_IN
== musb
->ep0_stage
)
1220 ? MUSB_CSR0_H_REQPKT
: MUSB_CSR0_TXPKTRDY
;
1222 /* data transfer complete; perform status phase */
1223 if (usb_pipeout(urb
->pipe
)
1224 || !urb
->transfer_buffer_length
)
1225 csr
= MUSB_CSR0_H_STATUSPKT
1226 | MUSB_CSR0_H_REQPKT
;
1228 csr
= MUSB_CSR0_H_STATUSPKT
1229 | MUSB_CSR0_TXPKTRDY
;
1231 /* disable ping token in status phase */
1232 csr
|= MUSB_CSR0_H_DIS_PING
;
1234 /* flag status stage */
1235 musb
->ep0_stage
= MUSB_EP0_STATUS
;
1237 dev_dbg(musb
->controller
, "ep0 STATUS, csr %04x\n", csr
);
1240 musb_writew(epio
, MUSB_CSR0
, csr
);
1241 retval
= IRQ_HANDLED
;
1243 musb
->ep0_stage
= MUSB_EP0_IDLE
;
1245 /* call completion handler if done */
1247 musb_advance_schedule(musb
, urb
, hw_ep
, 1);
1253 #ifdef CONFIG_USB_INVENTRA_DMA
1255 /* Host side TX (OUT) using Mentor DMA works as follows:
1257 - if queue was empty, Program Endpoint
1258 - ... which starts DMA to fifo in mode 1 or 0
1260 DMA Isr (transfer complete) -> TxAvail()
1261 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1262 only in musb_cleanup_urb)
1263 - TxPktRdy has to be set in mode 0 or for
1264 short packets in mode 1.
1269 /* Service a Tx-Available or dma completion irq for the endpoint */
1270 void musb_host_tx(struct musb
*musb
, u8 epnum
)
1277 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1278 void __iomem
*epio
= hw_ep
->regs
;
1279 struct musb_qh
*qh
= hw_ep
->out_qh
;
1280 struct urb
*urb
= next_urb(qh
);
1282 void __iomem
*mbase
= musb
->mregs
;
1283 struct dma_channel
*dma
;
1284 bool transfer_pending
= false;
1286 musb_ep_select(mbase
, epnum
);
1287 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1289 /* with CPPI, DMA sometimes triggers "extra" irqs */
1291 dev_dbg(musb
->controller
, "extra TX%d ready, csr %04x\n", epnum
, tx_csr
);
1296 dma
= is_dma_capable() ? hw_ep
->tx_channel
: NULL
;
1297 dev_dbg(musb
->controller
, "OUT/TX%d end, csr %04x%s\n", epnum
, tx_csr
,
1298 dma
? ", dma" : "");
1300 /* check for errors */
1301 if (tx_csr
& MUSB_TXCSR_H_RXSTALL
) {
1302 /* dma was disabled, fifo flushed */
1303 dev_dbg(musb
->controller
, "TX end %d stall\n", epnum
);
1305 /* stall; record URB status */
1308 } else if (tx_csr
& MUSB_TXCSR_H_ERROR
) {
1309 /* (NON-ISO) dma was disabled, fifo flushed */
1310 dev_dbg(musb
->controller
, "TX 3strikes on ep=%d\n", epnum
);
1312 status
= -ETIMEDOUT
;
1314 } else if (tx_csr
& MUSB_TXCSR_H_NAKTIMEOUT
) {
1315 if (USB_ENDPOINT_XFER_BULK
== qh
->type
&& qh
->mux
== 1
1316 && !list_is_singular(&musb
->out_bulk
)) {
1317 dev_dbg(musb
->controller
,
1318 "NAK timeout on TX%d ep\n", epnum
);
1319 musb_bulk_nak_timeout(musb
, hw_ep
, 0);
1321 dev_dbg(musb
->controller
,
1322 "TX end=%d device not responding\n", epnum
);
1323 /* NOTE: this code path would be a good place to PAUSE a
1324 * transfer, if there's some other (nonperiodic) tx urb
1325 * that could use this fifo. (dma complicates it...)
1326 * That's already done for bulk RX transfers.
1328 * if (bulk && qh->ring.next != &musb->out_bulk), then
1329 * we have a candidate... NAKing is *NOT* an error
1331 musb_ep_select(mbase
, epnum
);
1332 musb_writew(epio
, MUSB_TXCSR
,
1333 MUSB_TXCSR_H_WZC_BITS
1334 | MUSB_TXCSR_TXPKTRDY
);
1341 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1342 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1343 musb
->dma_controller
->channel_abort(dma
);
1346 /* do the proper sequence to abort the transfer in the
1347 * usb core; the dma engine should already be stopped.
1349 musb_h_tx_flush_fifo(hw_ep
);
1350 tx_csr
&= ~(MUSB_TXCSR_AUTOSET
1351 | MUSB_TXCSR_DMAENAB
1352 | MUSB_TXCSR_H_ERROR
1353 | MUSB_TXCSR_H_RXSTALL
1354 | MUSB_TXCSR_H_NAKTIMEOUT
1357 musb_ep_select(mbase
, epnum
);
1358 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1359 /* REVISIT may need to clear FLUSHFIFO ... */
1360 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1361 musb_writeb(epio
, MUSB_TXINTERVAL
, 0);
1366 /* second cppi case */
1367 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1368 dev_dbg(musb
->controller
, "extra TX%d ready, csr %04x\n", epnum
, tx_csr
);
1372 if (is_dma_capable() && dma
&& !status
) {
1374 * DMA has completed. But if we're using DMA mode 1 (multi
1375 * packet DMA), we need a terminal TXPKTRDY interrupt before
1376 * we can consider this transfer completed, lest we trash
1377 * its last packet when writing the next URB's data. So we
1378 * switch back to mode 0 to get that interrupt; we'll come
1379 * back here once it happens.
1381 if (tx_csr
& MUSB_TXCSR_DMAMODE
) {
1383 * We shouldn't clear DMAMODE with DMAENAB set; so
1384 * clear them in a safe order. That should be OK
1385 * once TXPKTRDY has been set (and I've never seen
1386 * it being 0 at this moment -- DMA interrupt latency
1387 * is significant) but if it hasn't been then we have
1388 * no choice but to stop being polite and ignore the
1389 * programmer's guide... :-)
1391 * Note that we must write TXCSR with TXPKTRDY cleared
1392 * in order not to re-trigger the packet send (this bit
1393 * can't be cleared by CPU), and there's another caveat:
1394 * TXPKTRDY may be set shortly and then cleared in the
1395 * double-buffered FIFO mode, so we do an extra TXCSR
1396 * read for debouncing...
1398 tx_csr
&= musb_readw(epio
, MUSB_TXCSR
);
1399 if (tx_csr
& MUSB_TXCSR_TXPKTRDY
) {
1400 tx_csr
&= ~(MUSB_TXCSR_DMAENAB
|
1401 MUSB_TXCSR_TXPKTRDY
);
1402 musb_writew(epio
, MUSB_TXCSR
,
1403 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1405 tx_csr
&= ~(MUSB_TXCSR_DMAMODE
|
1406 MUSB_TXCSR_TXPKTRDY
);
1407 musb_writew(epio
, MUSB_TXCSR
,
1408 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1411 * There is no guarantee that we'll get an interrupt
1412 * after clearing DMAMODE as we might have done this
1413 * too late (after TXPKTRDY was cleared by controller).
1414 * Re-read TXCSR as we have spoiled its previous value.
1416 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1420 * We may get here from a DMA completion or TXPKTRDY interrupt.
1421 * In any case, we must check the FIFO status here and bail out
1422 * only if the FIFO still has data -- that should prevent the
1423 * "missed" TXPKTRDY interrupts and deal with double-buffered
1426 if (tx_csr
& (MUSB_TXCSR_FIFONOTEMPTY
| MUSB_TXCSR_TXPKTRDY
)) {
1427 dev_dbg(musb
->controller
, "DMA complete but packet still in FIFO, "
1428 "CSR %04x\n", tx_csr
);
1433 if (!status
|| dma
|| usb_pipeisoc(pipe
)) {
1435 length
= dma
->actual_len
;
1437 length
= qh
->segsize
;
1438 qh
->offset
+= length
;
1440 if (usb_pipeisoc(pipe
)) {
1441 struct usb_iso_packet_descriptor
*d
;
1443 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1444 d
->actual_length
= length
;
1446 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1453 } else if (dma
&& urb
->transfer_buffer_length
== qh
->offset
) {
1456 /* see if we need to send more data, or ZLP */
1457 if (qh
->segsize
< qh
->maxpacket
)
1459 else if (qh
->offset
== urb
->transfer_buffer_length
1460 && !(urb
->transfer_flags
1464 offset
= qh
->offset
;
1465 length
= urb
->transfer_buffer_length
- offset
;
1466 transfer_pending
= true;
1471 /* urb->status != -EINPROGRESS means request has been faulted,
1472 * so we must abort this transfer after cleanup
1474 if (urb
->status
!= -EINPROGRESS
) {
1477 status
= urb
->status
;
1482 urb
->status
= status
;
1483 urb
->actual_length
= qh
->offset
;
1484 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_OUT
);
1486 } else if ((usb_pipeisoc(pipe
) || transfer_pending
) && dma
) {
1487 if (musb_tx_dma_program(musb
->dma_controller
, hw_ep
, qh
, urb
,
1489 if (is_cppi_enabled(musb
) || tusb_dma_omap(musb
))
1490 musb_h_tx_dma_start(hw_ep
);
1493 } else if (tx_csr
& MUSB_TXCSR_DMAENAB
) {
1494 dev_dbg(musb
->controller
, "not complete, but DMA enabled?\n");
1499 * PIO: start next packet in this URB.
1501 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1502 * (and presumably, FIFO is not half-full) we should write *two*
1503 * packets before updating TXCSR; other docs disagree...
1505 if (length
> qh
->maxpacket
)
1506 length
= qh
->maxpacket
;
1507 /* Unmap the buffer so that CPU can use it */
1508 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
1511 * We need to map sg if the transfer_buffer is
1514 if (!urb
->transfer_buffer
)
1518 /* sg_miter_start is already done in musb_ep_program */
1519 if (!sg_miter_next(&qh
->sg_miter
)) {
1520 dev_err(musb
->controller
, "error: sg list empty\n");
1521 sg_miter_stop(&qh
->sg_miter
);
1525 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
1526 length
= min_t(u32
, length
, qh
->sg_miter
.length
);
1527 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
);
1528 qh
->sg_miter
.consumed
= length
;
1529 sg_miter_stop(&qh
->sg_miter
);
1531 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
+ offset
);
1534 qh
->segsize
= length
;
1537 if (offset
+ length
>= urb
->transfer_buffer_length
)
1541 musb_ep_select(mbase
, epnum
);
1542 musb_writew(epio
, MUSB_TXCSR
,
1543 MUSB_TXCSR_H_WZC_BITS
| MUSB_TXCSR_TXPKTRDY
);
1546 #ifdef CONFIG_USB_TI_CPPI41_DMA
1547 /* Seems to set up ISO for cppi41 and not advance len. See commit c57c41d */
1548 static int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1549 struct musb_hw_ep
*hw_ep
,
1554 struct dma_channel
*channel
= hw_ep
->tx_channel
;
1555 void __iomem
*epio
= hw_ep
->regs
;
1560 buf
= (void *)urb
->iso_frame_desc
[qh
->iso_idx
].offset
+
1561 (u32
)urb
->transfer_dma
;
1563 length
= urb
->iso_frame_desc
[qh
->iso_idx
].length
;
1565 val
= musb_readw(epio
, MUSB_RXCSR
);
1566 val
|= MUSB_RXCSR_DMAENAB
;
1567 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1569 res
= dma
->channel_program(channel
, qh
->maxpacket
, 0,
1575 static inline int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1576 struct musb_hw_ep
*hw_ep
,
1585 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1586 defined(CONFIG_USB_TI_CPPI41_DMA)
1587 /* Host side RX (IN) using Mentor DMA works as follows:
1589 - if queue was empty, ProgramEndpoint
1590 - first IN token is sent out (by setting ReqPkt)
1591 LinuxIsr -> RxReady()
1592 /\ => first packet is received
1593 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1594 | -> DMA Isr (transfer complete) -> RxReady()
1595 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1596 | - if urb not complete, send next IN token (ReqPkt)
1597 | | else complete urb.
1599 ---------------------------
1601 * Nuances of mode 1:
1602 * For short packets, no ack (+RxPktRdy) is sent automatically
1603 * (even if AutoClear is ON)
1604 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1605 * automatically => major problem, as collecting the next packet becomes
1606 * difficult. Hence mode 1 is not used.
1609 * All we care about at this driver level is that
1610 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1611 * (b) termination conditions are: short RX, or buffer full;
1612 * (c) fault modes include
1613 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1614 * (and that endpoint's dma queue stops immediately)
1615 * - overflow (full, PLUS more bytes in the terminal packet)
1617 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1618 * thus be a great candidate for using mode 1 ... for all but the
1619 * last packet of one URB's transfer.
1621 static int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1622 struct musb_hw_ep
*hw_ep
,
1627 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1628 void __iomem
*epio
= hw_ep
->regs
;
1635 if (usb_pipeisoc(pipe
)) {
1636 struct usb_iso_packet_descriptor
*d
;
1638 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1639 d
->actual_length
= len
;
1641 /* even if there was an error, we did the dma
1642 * for iso_frame_desc->length
1644 if (d
->status
!= -EILSEQ
&& d
->status
!= -EOVERFLOW
)
1647 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1650 /* REVISIT: Why ignore return value here? */
1651 if (musb_dma_cppi41(hw_ep
->musb
))
1652 done
= musb_rx_dma_iso_cppi41(dma
, hw_ep
, qh
,
1658 /* done if urb buffer is full or short packet is recd */
1659 done
= (urb
->actual_length
+ len
>=
1660 urb
->transfer_buffer_length
1661 || channel
->actual_len
< qh
->maxpacket
1662 || channel
->rx_packet_done
);
1665 /* send IN token for next packet, without AUTOREQ */
1667 val
= musb_readw(epio
, MUSB_RXCSR
);
1668 val
|= MUSB_RXCSR_H_REQPKT
;
1669 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1675 /* Disadvantage of using mode 1:
1676 * It's basically usable only for mass storage class; essentially all
1677 * other protocols also terminate transfers on short packets.
1680 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1681 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1682 * to use the extra IN token to grab the last packet using mode 0, then
1683 * the problem is that you cannot be sure when the device will send the
1684 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1685 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1686 * transfer, while sometimes it is recd just a little late so that if you
1687 * try to configure for mode 0 soon after the mode 1 transfer is
1688 * completed, you will find rxcount 0. Okay, so you might think why not
1689 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1691 static int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1692 struct musb_hw_ep
*hw_ep
,
1698 struct musb
*musb
= hw_ep
->musb
;
1699 void __iomem
*epio
= hw_ep
->regs
;
1700 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1702 int length
, pipe
, done
;
1705 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
1708 if (usb_pipeisoc(pipe
)) {
1710 struct usb_iso_packet_descriptor
*d
;
1712 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1718 if (rx_count
> d
->length
) {
1719 if (d_status
== 0) {
1720 d_status
= -EOVERFLOW
;
1723 dev_dbg(musb
->controller
, "** OVERFLOW %d into %d\n",
1724 rx_count
, d
->length
);
1729 d
->status
= d_status
;
1730 buf
= urb
->transfer_dma
+ d
->offset
;
1733 buf
= urb
->transfer_dma
+ urb
->actual_length
;
1736 channel
->desired_mode
= 0;
1738 /* because of the issue below, mode 1 will
1739 * only rarely behave with correct semantics.
1741 if ((urb
->transfer_flags
& URB_SHORT_NOT_OK
)
1742 && (urb
->transfer_buffer_length
- urb
->actual_length
)
1744 channel
->desired_mode
= 1;
1745 if (rx_count
< hw_ep
->max_packet_sz_rx
) {
1747 channel
->desired_mode
= 0;
1749 length
= urb
->transfer_buffer_length
;
1753 /* See comments above on disadvantages of using mode 1 */
1754 val
= musb_readw(epio
, MUSB_RXCSR
);
1755 val
&= ~MUSB_RXCSR_H_REQPKT
;
1757 if (channel
->desired_mode
== 0)
1758 val
&= ~MUSB_RXCSR_H_AUTOREQ
;
1760 val
|= MUSB_RXCSR_H_AUTOREQ
;
1761 val
|= MUSB_RXCSR_DMAENAB
;
1763 /* autoclear shouldn't be set in high bandwidth */
1764 if (qh
->hb_mult
== 1)
1765 val
|= MUSB_RXCSR_AUTOCLEAR
;
1767 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1769 /* REVISIT if when actual_length != 0,
1770 * transfer_buffer_length needs to be
1773 done
= dma
->channel_program(channel
, qh
->maxpacket
,
1774 channel
->desired_mode
,
1778 dma
->channel_release(channel
);
1779 hw_ep
->rx_channel
= NULL
;
1781 val
= musb_readw(epio
, MUSB_RXCSR
);
1782 val
&= ~(MUSB_RXCSR_DMAENAB
1783 | MUSB_RXCSR_H_AUTOREQ
1784 | MUSB_RXCSR_AUTOCLEAR
);
1785 musb_writew(epio
, MUSB_RXCSR
, val
);
1791 static inline int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1792 struct musb_hw_ep
*hw_ep
,
1800 static inline int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1801 struct musb_hw_ep
*hw_ep
,
1812 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1813 * and high-bandwidth IN transfer cases.
1815 void musb_host_rx(struct musb
*musb
, u8 epnum
)
1818 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1819 struct dma_controller
*c
= musb
->dma_controller
;
1820 void __iomem
*epio
= hw_ep
->regs
;
1821 struct musb_qh
*qh
= hw_ep
->in_qh
;
1823 void __iomem
*mbase
= musb
->mregs
;
1826 bool iso_err
= false;
1829 struct dma_channel
*dma
;
1830 unsigned int sg_flags
= SG_MITER_ATOMIC
| SG_MITER_TO_SG
;
1832 musb_ep_select(mbase
, epnum
);
1835 dma
= is_dma_capable() ? hw_ep
->rx_channel
: NULL
;
1839 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
1842 if (unlikely(!urb
)) {
1843 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1844 * usbtest #11 (unlinks) triggers it regularly, sometimes
1845 * with fifo full. (Only with DMA??)
1847 dev_dbg(musb
->controller
, "BOGUS RX%d ready, csr %04x, count %d\n", epnum
, val
,
1848 musb_readw(epio
, MUSB_RXCOUNT
));
1849 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1855 dev_dbg(musb
->controller
, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
1856 epnum
, rx_csr
, urb
->actual_length
,
1857 dma
? dma
->actual_len
: 0);
1859 /* check for errors, concurrent stall & unlink is not really
1861 if (rx_csr
& MUSB_RXCSR_H_RXSTALL
) {
1862 dev_dbg(musb
->controller
, "RX end %d STALL\n", epnum
);
1864 /* stall; record URB status */
1867 } else if (rx_csr
& MUSB_RXCSR_H_ERROR
) {
1868 dev_dbg(musb
->controller
, "end %d RX proto error\n", epnum
);
1871 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1873 } else if (rx_csr
& MUSB_RXCSR_DATAERROR
) {
1875 if (USB_ENDPOINT_XFER_ISOC
!= qh
->type
) {
1876 dev_dbg(musb
->controller
, "RX end %d NAK timeout\n", epnum
);
1878 /* NOTE: NAKing is *NOT* an error, so we want to
1879 * continue. Except ... if there's a request for
1880 * another QH, use that instead of starving it.
1882 * Devices like Ethernet and serial adapters keep
1883 * reads posted at all times, which will starve
1884 * other devices without this logic.
1886 if (usb_pipebulk(urb
->pipe
)
1888 && !list_is_singular(&musb
->in_bulk
)) {
1889 musb_bulk_nak_timeout(musb
, hw_ep
, 1);
1892 musb_ep_select(mbase
, epnum
);
1893 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
1894 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
1895 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1899 dev_dbg(musb
->controller
, "RX end %d ISO data error\n", epnum
);
1900 /* packet error reported later */
1903 } else if (rx_csr
& MUSB_RXCSR_INCOMPRX
) {
1904 dev_dbg(musb
->controller
, "end %d high bandwidth incomplete ISO packet RX\n",
1909 /* faults abort the transfer */
1911 /* clean up dma and collect transfer count */
1912 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1913 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1914 musb
->dma_controller
->channel_abort(dma
);
1915 xfer_len
= dma
->actual_len
;
1917 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1918 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1923 if (unlikely(dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
)) {
1924 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1925 ERR("RX%d dma busy, csr %04x\n", epnum
, rx_csr
);
1929 /* thorough shutdown for now ... given more precise fault handling
1930 * and better queueing support, we might keep a DMA pipeline going
1931 * while processing this irq for earlier completions.
1934 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1935 if (!musb_dma_inventra(musb
) && !musb_dma_ux500(musb
) &&
1936 (rx_csr
& MUSB_RXCSR_H_REQPKT
)) {
1937 /* REVISIT this happened for a while on some short reads...
1938 * the cleanup still needs investigation... looks bad...
1939 * and also duplicates dma cleanup code above ... plus,
1940 * shouldn't this be the "half full" double buffer case?
1942 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1943 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1944 musb
->dma_controller
->channel_abort(dma
);
1945 xfer_len
= dma
->actual_len
;
1949 dev_dbg(musb
->controller
, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum
, rx_csr
,
1950 xfer_len
, dma
? ", dma" : "");
1951 rx_csr
&= ~MUSB_RXCSR_H_REQPKT
;
1953 musb_ep_select(mbase
, epnum
);
1954 musb_writew(epio
, MUSB_RXCSR
,
1955 MUSB_RXCSR_H_WZC_BITS
| rx_csr
);
1958 if (dma
&& (rx_csr
& MUSB_RXCSR_DMAENAB
)) {
1959 xfer_len
= dma
->actual_len
;
1961 val
&= ~(MUSB_RXCSR_DMAENAB
1962 | MUSB_RXCSR_H_AUTOREQ
1963 | MUSB_RXCSR_AUTOCLEAR
1964 | MUSB_RXCSR_RXPKTRDY
);
1965 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1967 if (musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
1968 musb_dma_cppi41(musb
)) {
1969 done
= musb_rx_dma_inventra_cppi41(c
, hw_ep
, qh
, urb
, xfer_len
);
1970 dev_dbg(hw_ep
->musb
->controller
,
1971 "ep %d dma %s, rxcsr %04x, rxcount %d\n",
1972 epnum
, done
? "off" : "reset",
1973 musb_readw(epio
, MUSB_RXCSR
),
1974 musb_readw(epio
, MUSB_RXCOUNT
));
1979 } else if (urb
->status
== -EINPROGRESS
) {
1980 /* if no errors, be sure a packet is ready for unloading */
1981 if (unlikely(!(rx_csr
& MUSB_RXCSR_RXPKTRDY
))) {
1983 ERR("Rx interrupt with no errors or packet!\n");
1985 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1988 /* do the proper sequence to abort the transfer */
1989 musb_ep_select(mbase
, epnum
);
1990 val
&= ~MUSB_RXCSR_H_REQPKT
;
1991 musb_writew(epio
, MUSB_RXCSR
, val
);
1995 /* we are expecting IN packets */
1996 if ((musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
1997 musb_dma_cppi41(musb
)) && dma
) {
1998 dev_dbg(hw_ep
->musb
->controller
,
1999 "RX%d count %d, buffer 0x%llx len %d/%d\n",
2000 epnum
, musb_readw(epio
, MUSB_RXCOUNT
),
2001 (unsigned long long) urb
->transfer_dma
2002 + urb
->actual_length
,
2004 urb
->transfer_buffer_length
);
2006 done
= musb_rx_dma_in_inventra_cppi41(c
, hw_ep
, qh
,
2012 dev_err(musb
->controller
, "error: rx_dma failed\n");
2016 unsigned int received_len
;
2018 /* Unmap the buffer so that CPU can use it */
2019 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
2022 * We need to map sg if the transfer_buffer is
2025 if (!urb
->transfer_buffer
) {
2027 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
2032 if (!sg_miter_next(&qh
->sg_miter
)) {
2033 dev_err(musb
->controller
, "error: sg list empty\n");
2034 sg_miter_stop(&qh
->sg_miter
);
2039 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
2040 received_len
= urb
->actual_length
;
2042 done
= musb_host_packet_rx(musb
, urb
, epnum
,
2044 /* Calculate the number of bytes received */
2045 received_len
= urb
->actual_length
-
2047 qh
->sg_miter
.consumed
= received_len
;
2048 sg_miter_stop(&qh
->sg_miter
);
2050 done
= musb_host_packet_rx(musb
, urb
,
2053 dev_dbg(musb
->controller
, "read %spacket\n", done
? "last " : "");
2058 urb
->actual_length
+= xfer_len
;
2059 qh
->offset
+= xfer_len
;
2064 if (urb
->status
== -EINPROGRESS
)
2065 urb
->status
= status
;
2066 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_IN
);
2070 /* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
2071 * the software schedule associates multiple such nodes with a given
2072 * host side hardware endpoint + direction; scheduling may activate
2073 * that hardware endpoint.
2075 static int musb_schedule(
2082 int best_end
, epnum
;
2083 struct musb_hw_ep
*hw_ep
= NULL
;
2084 struct list_head
*head
= NULL
;
2087 struct urb
*urb
= next_urb(qh
);
2089 /* use fixed hardware for control and bulk */
2090 if (qh
->type
== USB_ENDPOINT_XFER_CONTROL
) {
2091 head
= &musb
->control
;
2092 hw_ep
= musb
->control_ep
;
2096 /* else, periodic transfers get muxed to other endpoints */
2099 * We know this qh hasn't been scheduled, so all we need to do
2100 * is choose which hardware endpoint to put it on ...
2102 * REVISIT what we really want here is a regular schedule tree
2103 * like e.g. OHCI uses.
2108 for (epnum
= 1, hw_ep
= musb
->endpoints
+ 1;
2109 epnum
< musb
->nr_endpoints
;
2113 if (musb_ep_get_qh(hw_ep
, is_in
) != NULL
)
2116 if (hw_ep
== musb
->bulk_ep
)
2120 diff
= hw_ep
->max_packet_sz_rx
;
2122 diff
= hw_ep
->max_packet_sz_tx
;
2123 diff
-= (qh
->maxpacket
* qh
->hb_mult
);
2125 if (diff
>= 0 && best_diff
> diff
) {
2128 * Mentor controller has a bug in that if we schedule
2129 * a BULK Tx transfer on an endpoint that had earlier
2130 * handled ISOC then the BULK transfer has to start on
2131 * a zero toggle. If the BULK transfer starts on a 1
2132 * toggle then this transfer will fail as the mentor
2133 * controller starts the Bulk transfer on a 0 toggle
2134 * irrespective of the programming of the toggle bits
2135 * in the TXCSR register. Check for this condition
2136 * while allocating the EP for a Tx Bulk transfer. If
2139 hw_ep
= musb
->endpoints
+ epnum
;
2140 toggle
= usb_gettoggle(urb
->dev
, qh
->epnum
, !is_in
);
2141 txtype
= (musb_readb(hw_ep
->regs
, MUSB_TXTYPE
)
2143 if (!is_in
&& (qh
->type
== USB_ENDPOINT_XFER_BULK
) &&
2144 toggle
&& (txtype
== USB_ENDPOINT_XFER_ISOC
))
2151 /* use bulk reserved ep1 if no other ep is free */
2152 if (best_end
< 0 && qh
->type
== USB_ENDPOINT_XFER_BULK
) {
2153 hw_ep
= musb
->bulk_ep
;
2155 head
= &musb
->in_bulk
;
2157 head
= &musb
->out_bulk
;
2159 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
2160 * multiplexed. This scheme does not work in high speed to full
2161 * speed scenario as NAK interrupts are not coming from a
2162 * full speed device connected to a high speed device.
2163 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2164 * 4 (8 frame or 8ms) for FS device.
2168 (USB_SPEED_HIGH
== qh
->dev
->speed
) ? 8 : 4;
2170 } else if (best_end
< 0) {
2176 hw_ep
= musb
->endpoints
+ best_end
;
2177 dev_dbg(musb
->controller
, "qh %p periodic slot %d\n", qh
, best_end
);
2180 idle
= list_empty(head
);
2181 list_add_tail(&qh
->ring
, head
);
2185 qh
->hep
->hcpriv
= qh
;
2187 musb_start_urb(musb
, is_in
, qh
);
2191 static int musb_urb_enqueue(
2192 struct usb_hcd
*hcd
,
2196 unsigned long flags
;
2197 struct musb
*musb
= hcd_to_musb(hcd
);
2198 struct usb_host_endpoint
*hep
= urb
->ep
;
2200 struct usb_endpoint_descriptor
*epd
= &hep
->desc
;
2205 /* host role must be active */
2206 if (!is_host_active(musb
) || !musb
->is_active
)
2209 spin_lock_irqsave(&musb
->lock
, flags
);
2210 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
2211 qh
= ret
? NULL
: hep
->hcpriv
;
2214 spin_unlock_irqrestore(&musb
->lock
, flags
);
2216 /* DMA mapping was already done, if needed, and this urb is on
2217 * hep->urb_list now ... so we're done, unless hep wasn't yet
2218 * scheduled onto a live qh.
2220 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2221 * disabled, testing for empty qh->ring and avoiding qh setup costs
2222 * except for the first urb queued after a config change.
2227 /* Allocate and initialize qh, minimizing the work done each time
2228 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2230 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2231 * for bugs in other kernel code to break this driver...
2233 qh
= kzalloc(sizeof *qh
, mem_flags
);
2235 spin_lock_irqsave(&musb
->lock
, flags
);
2236 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2237 spin_unlock_irqrestore(&musb
->lock
, flags
);
2243 INIT_LIST_HEAD(&qh
->ring
);
2246 qh
->maxpacket
= usb_endpoint_maxp(epd
);
2247 qh
->type
= usb_endpoint_type(epd
);
2249 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2250 * Some musb cores don't support high bandwidth ISO transfers; and
2251 * we don't (yet!) support high bandwidth interrupt transfers.
2253 qh
->hb_mult
= 1 + ((qh
->maxpacket
>> 11) & 0x03);
2254 if (qh
->hb_mult
> 1) {
2255 int ok
= (qh
->type
== USB_ENDPOINT_XFER_ISOC
);
2258 ok
= (usb_pipein(urb
->pipe
) && musb
->hb_iso_rx
)
2259 || (usb_pipeout(urb
->pipe
) && musb
->hb_iso_tx
);
2264 qh
->maxpacket
&= 0x7ff;
2267 qh
->epnum
= usb_endpoint_num(epd
);
2269 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2270 qh
->addr_reg
= (u8
) usb_pipedevice(urb
->pipe
);
2272 /* precompute rxtype/txtype/type0 register */
2273 type_reg
= (qh
->type
<< 4) | qh
->epnum
;
2274 switch (urb
->dev
->speed
) {
2278 case USB_SPEED_FULL
:
2284 qh
->type_reg
= type_reg
;
2286 /* Precompute RXINTERVAL/TXINTERVAL register */
2288 case USB_ENDPOINT_XFER_INT
:
2290 * Full/low speeds use the linear encoding,
2291 * high speed uses the logarithmic encoding.
2293 if (urb
->dev
->speed
<= USB_SPEED_FULL
) {
2294 interval
= max_t(u8
, epd
->bInterval
, 1);
2298 case USB_ENDPOINT_XFER_ISOC
:
2299 /* ISO always uses logarithmic encoding */
2300 interval
= min_t(u8
, epd
->bInterval
, 16);
2303 /* REVISIT we actually want to use NAK limits, hinting to the
2304 * transfer scheduling logic to try some other qh, e.g. try
2307 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2309 * The downside of disabling this is that transfer scheduling
2310 * gets VERY unfair for nonperiodic transfers; a misbehaving
2311 * peripheral could make that hurt. That's perfectly normal
2312 * for reads from network or serial adapters ... so we have
2313 * partial NAKlimit support for bulk RX.
2315 * The upside of disabling it is simpler transfer scheduling.
2319 qh
->intv_reg
= interval
;
2321 /* precompute addressing for external hub/tt ports */
2322 if (musb
->is_multipoint
) {
2323 struct usb_device
*parent
= urb
->dev
->parent
;
2325 if (parent
!= hcd
->self
.root_hub
) {
2326 qh
->h_addr_reg
= (u8
) parent
->devnum
;
2328 /* set up tt info if needed */
2330 qh
->h_port_reg
= (u8
) urb
->dev
->ttport
;
2331 if (urb
->dev
->tt
->hub
)
2333 (u8
) urb
->dev
->tt
->hub
->devnum
;
2334 if (urb
->dev
->tt
->multi
)
2335 qh
->h_addr_reg
|= 0x80;
2340 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2341 * until we get real dma queues (with an entry for each urb/buffer),
2342 * we only have work to do in the former case.
2344 spin_lock_irqsave(&musb
->lock
, flags
);
2345 if (hep
->hcpriv
|| !next_urb(qh
)) {
2346 /* some concurrent activity submitted another urb to hep...
2347 * odd, rare, error prone, but legal.
2353 ret
= musb_schedule(musb
, qh
,
2354 epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
);
2358 /* FIXME set urb->start_frame for iso/intr, it's tested in
2359 * musb_start_urb(), but otherwise only konicawc cares ...
2362 spin_unlock_irqrestore(&musb
->lock
, flags
);
2366 spin_lock_irqsave(&musb
->lock
, flags
);
2367 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2368 spin_unlock_irqrestore(&musb
->lock
, flags
);
2376 * abort a transfer that's at the head of a hardware queue.
2377 * called with controller locked, irqs blocked
2378 * that hardware queue advances to the next transfer, unless prevented
2380 static int musb_cleanup_urb(struct urb
*urb
, struct musb_qh
*qh
)
2382 struct musb_hw_ep
*ep
= qh
->hw_ep
;
2383 struct musb
*musb
= ep
->musb
;
2384 void __iomem
*epio
= ep
->regs
;
2385 unsigned hw_end
= ep
->epnum
;
2386 void __iomem
*regs
= ep
->musb
->mregs
;
2387 int is_in
= usb_pipein(urb
->pipe
);
2391 musb_ep_select(regs
, hw_end
);
2393 if (is_dma_capable()) {
2394 struct dma_channel
*dma
;
2396 dma
= is_in
? ep
->rx_channel
: ep
->tx_channel
;
2398 status
= ep
->musb
->dma_controller
->channel_abort(dma
);
2399 dev_dbg(musb
->controller
,
2400 "abort %cX%d DMA for urb %p --> %d\n",
2401 is_in
? 'R' : 'T', ep
->epnum
,
2403 urb
->actual_length
+= dma
->actual_len
;
2407 /* turn off DMA requests, discard state, stop polling ... */
2408 if (ep
->epnum
&& is_in
) {
2409 /* giveback saves bulk toggle */
2410 csr
= musb_h_flush_rxfifo(ep
, 0);
2412 /* REVISIT we still get an irq; should likely clear the
2413 * endpoint's irq status here to avoid bogus irqs.
2414 * clearing that status is platform-specific...
2416 } else if (ep
->epnum
) {
2417 musb_h_tx_flush_fifo(ep
);
2418 csr
= musb_readw(epio
, MUSB_TXCSR
);
2419 csr
&= ~(MUSB_TXCSR_AUTOSET
2420 | MUSB_TXCSR_DMAENAB
2421 | MUSB_TXCSR_H_RXSTALL
2422 | MUSB_TXCSR_H_NAKTIMEOUT
2423 | MUSB_TXCSR_H_ERROR
2424 | MUSB_TXCSR_TXPKTRDY
);
2425 musb_writew(epio
, MUSB_TXCSR
, csr
);
2426 /* REVISIT may need to clear FLUSHFIFO ... */
2427 musb_writew(epio
, MUSB_TXCSR
, csr
);
2428 /* flush cpu writebuffer */
2429 csr
= musb_readw(epio
, MUSB_TXCSR
);
2431 musb_h_ep0_flush_fifo(ep
);
2434 musb_advance_schedule(ep
->musb
, urb
, ep
, is_in
);
2438 static int musb_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
)
2440 struct musb
*musb
= hcd_to_musb(hcd
);
2442 unsigned long flags
;
2443 int is_in
= usb_pipein(urb
->pipe
);
2446 dev_dbg(musb
->controller
, "urb=%p, dev%d ep%d%s\n", urb
,
2447 usb_pipedevice(urb
->pipe
),
2448 usb_pipeendpoint(urb
->pipe
),
2449 is_in
? "in" : "out");
2451 spin_lock_irqsave(&musb
->lock
, flags
);
2452 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
2461 * Any URB not actively programmed into endpoint hardware can be
2462 * immediately given back; that's any URB not at the head of an
2463 * endpoint queue, unless someday we get real DMA queues. And even
2464 * if it's at the head, it might not be known to the hardware...
2466 * Otherwise abort current transfer, pending DMA, etc.; urb->status
2467 * has already been updated. This is a synchronous abort; it'd be
2468 * OK to hold off until after some IRQ, though.
2470 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
2473 || urb
->urb_list
.prev
!= &qh
->hep
->urb_list
2474 || musb_ep_get_qh(qh
->hw_ep
, is_in
) != qh
) {
2475 int ready
= qh
->is_ready
;
2478 musb_giveback(musb
, urb
, 0);
2479 qh
->is_ready
= ready
;
2481 /* If nothing else (usually musb_giveback) is using it
2482 * and its URB list has emptied, recycle this qh.
2484 if (ready
&& list_empty(&qh
->hep
->urb_list
)) {
2485 qh
->hep
->hcpriv
= NULL
;
2486 list_del(&qh
->ring
);
2490 ret
= musb_cleanup_urb(urb
, qh
);
2492 spin_unlock_irqrestore(&musb
->lock
, flags
);
2496 /* disable an endpoint */
2498 musb_h_disable(struct usb_hcd
*hcd
, struct usb_host_endpoint
*hep
)
2500 u8 is_in
= hep
->desc
.bEndpointAddress
& USB_DIR_IN
;
2501 unsigned long flags
;
2502 struct musb
*musb
= hcd_to_musb(hcd
);
2506 spin_lock_irqsave(&musb
->lock
, flags
);
2512 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
2514 /* Kick the first URB off the hardware, if needed */
2516 if (musb_ep_get_qh(qh
->hw_ep
, is_in
) == qh
) {
2519 /* make software (then hardware) stop ASAP */
2521 urb
->status
= -ESHUTDOWN
;
2524 musb_cleanup_urb(urb
, qh
);
2526 /* Then nuke all the others ... and advance the
2527 * queue on hw_ep (e.g. bulk ring) when we're done.
2529 while (!list_empty(&hep
->urb_list
)) {
2531 urb
->status
= -ESHUTDOWN
;
2532 musb_advance_schedule(musb
, urb
, qh
->hw_ep
, is_in
);
2535 /* Just empty the queue; the hardware is busy with
2536 * other transfers, and since !qh->is_ready nothing
2537 * will activate any of these as it advances.
2539 while (!list_empty(&hep
->urb_list
))
2540 musb_giveback(musb
, next_urb(qh
), -ESHUTDOWN
);
2543 list_del(&qh
->ring
);
2547 spin_unlock_irqrestore(&musb
->lock
, flags
);
2550 static int musb_h_get_frame_number(struct usb_hcd
*hcd
)
2552 struct musb
*musb
= hcd_to_musb(hcd
);
2554 return musb_readw(musb
->mregs
, MUSB_FRAME
);
2557 static int musb_h_start(struct usb_hcd
*hcd
)
2559 struct musb
*musb
= hcd_to_musb(hcd
);
2561 /* NOTE: musb_start() is called when the hub driver turns
2562 * on port power, or when (OTG) peripheral starts.
2564 hcd
->state
= HC_STATE_RUNNING
;
2565 musb
->port1_status
= 0;
2569 static void musb_h_stop(struct usb_hcd
*hcd
)
2571 musb_stop(hcd_to_musb(hcd
));
2572 hcd
->state
= HC_STATE_HALT
;
2575 static int musb_bus_suspend(struct usb_hcd
*hcd
)
2577 struct musb
*musb
= hcd_to_musb(hcd
);
2580 musb_port_suspend(musb
, true);
2582 if (!is_host_active(musb
))
2585 switch (musb
->xceiv
->otg
->state
) {
2586 case OTG_STATE_A_SUSPEND
:
2588 case OTG_STATE_A_WAIT_VRISE
:
2589 /* ID could be grounded even if there's no device
2590 * on the other end of the cable. NOTE that the
2591 * A_WAIT_VRISE timers are messy with MUSB...
2593 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
2594 if ((devctl
& MUSB_DEVCTL_VBUS
) == MUSB_DEVCTL_VBUS
)
2595 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_BCON
;
2601 if (musb
->is_active
) {
2602 WARNING("trying to suspend as %s while active\n",
2603 usb_otg_state_string(musb
->xceiv
->otg
->state
));
2609 static int musb_bus_resume(struct usb_hcd
*hcd
)
2611 struct musb
*musb
= hcd_to_musb(hcd
);
2614 musb
->config
->host_port_deassert_reset_at_resume
)
2615 musb_port_reset(musb
, false);
2620 #ifndef CONFIG_MUSB_PIO_ONLY
2622 #define MUSB_USB_DMA_ALIGN 4
2624 struct musb_temp_buffer
{
2626 void *old_xfer_buffer
;
2630 static void musb_free_temp_buffer(struct urb
*urb
)
2632 enum dma_data_direction dir
;
2633 struct musb_temp_buffer
*temp
;
2636 if (!(urb
->transfer_flags
& URB_ALIGNED_TEMP_BUFFER
))
2639 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2641 temp
= container_of(urb
->transfer_buffer
, struct musb_temp_buffer
,
2644 if (dir
== DMA_FROM_DEVICE
) {
2645 if (usb_pipeisoc(urb
->pipe
))
2646 length
= urb
->transfer_buffer_length
;
2648 length
= urb
->actual_length
;
2650 memcpy(temp
->old_xfer_buffer
, temp
->data
, length
);
2652 urb
->transfer_buffer
= temp
->old_xfer_buffer
;
2653 kfree(temp
->kmalloc_ptr
);
2655 urb
->transfer_flags
&= ~URB_ALIGNED_TEMP_BUFFER
;
2658 static int musb_alloc_temp_buffer(struct urb
*urb
, gfp_t mem_flags
)
2660 enum dma_data_direction dir
;
2661 struct musb_temp_buffer
*temp
;
2663 size_t kmalloc_size
;
2665 if (urb
->num_sgs
|| urb
->sg
||
2666 urb
->transfer_buffer_length
== 0 ||
2667 !((uintptr_t)urb
->transfer_buffer
& (MUSB_USB_DMA_ALIGN
- 1)))
2670 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2672 /* Allocate a buffer with enough padding for alignment */
2673 kmalloc_size
= urb
->transfer_buffer_length
+
2674 sizeof(struct musb_temp_buffer
) + MUSB_USB_DMA_ALIGN
- 1;
2676 kmalloc_ptr
= kmalloc(kmalloc_size
, mem_flags
);
2680 /* Position our struct temp_buffer such that data is aligned */
2681 temp
= PTR_ALIGN(kmalloc_ptr
, MUSB_USB_DMA_ALIGN
);
2684 temp
->kmalloc_ptr
= kmalloc_ptr
;
2685 temp
->old_xfer_buffer
= urb
->transfer_buffer
;
2686 if (dir
== DMA_TO_DEVICE
)
2687 memcpy(temp
->data
, urb
->transfer_buffer
,
2688 urb
->transfer_buffer_length
);
2689 urb
->transfer_buffer
= temp
->data
;
2691 urb
->transfer_flags
|= URB_ALIGNED_TEMP_BUFFER
;
2696 static int musb_map_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
,
2699 struct musb
*musb
= hcd_to_musb(hcd
);
2703 * The DMA engine in RTL1.8 and above cannot handle
2704 * DMA addresses that are not aligned to a 4 byte boundary.
2705 * For such engine implemented (un)map_urb_for_dma hooks.
2706 * Do not use these hooks for RTL<1.8
2708 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2709 return usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2711 ret
= musb_alloc_temp_buffer(urb
, mem_flags
);
2715 ret
= usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2717 musb_free_temp_buffer(urb
);
2722 static void musb_unmap_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
)
2724 struct musb
*musb
= hcd_to_musb(hcd
);
2726 usb_hcd_unmap_urb_for_dma(hcd
, urb
);
2728 /* Do not use this hook for RTL<1.8 (see description above) */
2729 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2732 musb_free_temp_buffer(urb
);
2734 #endif /* !CONFIG_MUSB_PIO_ONLY */
2736 static const struct hc_driver musb_hc_driver
= {
2737 .description
= "musb-hcd",
2738 .product_desc
= "MUSB HDRC host driver",
2739 .hcd_priv_size
= sizeof(struct musb
*),
2740 .flags
= HCD_USB2
| HCD_MEMORY
| HCD_BH
,
2742 /* not using irq handler or reset hooks from usbcore, since
2743 * those must be shared with peripheral code for OTG configs
2746 .start
= musb_h_start
,
2747 .stop
= musb_h_stop
,
2749 .get_frame_number
= musb_h_get_frame_number
,
2751 .urb_enqueue
= musb_urb_enqueue
,
2752 .urb_dequeue
= musb_urb_dequeue
,
2753 .endpoint_disable
= musb_h_disable
,
2755 #ifndef CONFIG_MUSB_PIO_ONLY
2756 .map_urb_for_dma
= musb_map_urb_for_dma
,
2757 .unmap_urb_for_dma
= musb_unmap_urb_for_dma
,
2760 .hub_status_data
= musb_hub_status_data
,
2761 .hub_control
= musb_hub_control
,
2762 .bus_suspend
= musb_bus_suspend
,
2763 .bus_resume
= musb_bus_resume
,
2764 /* .start_port_reset = NULL, */
2765 /* .hub_irq_enable = NULL, */
2768 int musb_host_alloc(struct musb
*musb
)
2770 struct device
*dev
= musb
->controller
;
2772 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
2773 musb
->hcd
= usb_create_hcd(&musb_hc_driver
, dev
, dev_name(dev
));
2777 *musb
->hcd
->hcd_priv
= (unsigned long) musb
;
2778 musb
->hcd
->self
.uses_pio_for_control
= 1;
2779 musb
->hcd
->uses_new_polling
= 1;
2780 musb
->hcd
->has_tt
= 1;
2785 void musb_host_cleanup(struct musb
*musb
)
2787 if (musb
->port_mode
== MUSB_PORT_MODE_GADGET
)
2789 usb_remove_hcd(musb
->hcd
);
2792 void musb_host_free(struct musb
*musb
)
2794 usb_put_hcd(musb
->hcd
);
2797 int musb_host_setup(struct musb
*musb
, int power_budget
)
2800 struct usb_hcd
*hcd
= musb
->hcd
;
2802 MUSB_HST_MODE(musb
);
2803 musb
->xceiv
->otg
->default_a
= 1;
2804 musb
->xceiv
->otg
->state
= OTG_STATE_A_IDLE
;
2806 otg_set_host(musb
->xceiv
->otg
, &hcd
->self
);
2807 hcd
->self
.otg_port
= 1;
2808 musb
->xceiv
->otg
->host
= &hcd
->self
;
2809 hcd
->power_budget
= 2 * (power_budget
? : 250);
2811 ret
= usb_add_hcd(hcd
, 0, 0);
2815 device_wakeup_enable(hcd
->self
.controller
);
2819 void musb_host_resume_root_hub(struct musb
*musb
)
2821 usb_hcd_resume_root_hub(musb
->hcd
);
2824 void musb_host_poke_root_hub(struct musb
*musb
)
2826 MUSB_HST_MODE(musb
);
2827 if (musb
->hcd
->status_urb
)
2828 usb_hcd_poll_rh_status(musb
->hcd
);
2830 usb_hcd_resume_root_hub(musb
->hcd
);