1 // SPDX-License-Identifier: GPL-2.0
3 * MUSB OTG driver host support
5 * Copyright 2005 Mentor Graphics Corporation
6 * Copyright (C) 2005-2006 by Texas Instruments
7 * Copyright (C) 2006-2007 Nokia Corporation
8 * Copyright (C) 2008-2009 MontaVista Software, Inc. <source@mvista.com>
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/delay.h>
14 #include <linux/sched.h>
15 #include <linux/slab.h>
16 #include <linux/errno.h>
17 #include <linux/list.h>
18 #include <linux/dma-mapping.h>
20 #include "musb_core.h"
21 #include "musb_host.h"
22 #include "musb_trace.h"
24 /* MUSB HOST status 22-mar-2006
26 * - There's still lots of partial code duplication for fault paths, so
27 * they aren't handled as consistently as they need to be.
29 * - PIO mostly behaved when last tested.
30 * + including ep0, with all usbtest cases 9, 10
31 * + usbtest 14 (ep0out) doesn't seem to run at all
32 * + double buffered OUT/TX endpoints saw stalls(!) with certain usbtest
33 * configurations, but otherwise double buffering passes basic tests.
34 * + for 2.6.N, for N > ~10, needs API changes for hcd framework.
36 * - DMA (CPPI) ... partially behaves, not currently recommended
37 * + about 1/15 the speed of typical EHCI implementations (PCI)
38 * + RX, all too often reqpkt seems to misbehave after tx
39 * + TX, no known issues (other than evident silicon issue)
41 * - DMA (Mentor/OMAP) ...has at least toggle update problems
43 * - [23-feb-2009] minimal traffic scheduling to avoid bulk RX packet
44 * starvation ... nothing yet for TX, interrupt, or bulk.
46 * - Not tested with HNP, but some SRP paths seem to behave.
48 * NOTE 24-August-2006:
50 * - Bulk traffic finally uses both sides of hardware ep1, freeing up an
51 * extra endpoint for periodic use enabling hub + keybd + mouse. That
52 * mostly works, except that with "usbnet" it's easy to trigger cases
53 * with "ping" where RX loses. (a) ping to davinci, even "ping -f",
54 * fine; but (b) ping _from_ davinci, even "ping -c 1", ICMP RX loses
55 * although ARP RX wins. (That test was done with a full speed link.)
60 * NOTE on endpoint usage:
62 * CONTROL transfers all go through ep0. BULK ones go through dedicated IN
63 * and OUT endpoints ... hardware is dedicated for those "async" queue(s).
64 * (Yes, bulk _could_ use more of the endpoints than that, and would even
67 * INTERUPPT and ISOCHRONOUS transfers are scheduled to the other endpoints.
68 * So far that scheduling is both dumb and optimistic: the endpoint will be
69 * "claimed" until its software queue is no longer refilled. No multiplexing
70 * of transfers between endpoints, or anything clever.
73 struct musb
*hcd_to_musb(struct usb_hcd
*hcd
)
75 return *(struct musb
**) hcd
->hcd_priv
;
79 static void musb_ep_program(struct musb
*musb
, u8 epnum
,
80 struct urb
*urb
, int is_out
,
81 u8
*buf
, u32 offset
, u32 len
);
84 * Clear TX fifo. Needed to avoid BABBLE errors.
86 static void musb_h_tx_flush_fifo(struct musb_hw_ep
*ep
)
88 struct musb
*musb
= ep
->musb
;
89 void __iomem
*epio
= ep
->regs
;
93 csr
= musb_readw(epio
, MUSB_TXCSR
);
94 while (csr
& MUSB_TXCSR_FIFONOTEMPTY
) {
95 csr
|= MUSB_TXCSR_FLUSHFIFO
| MUSB_TXCSR_TXPKTRDY
;
96 musb_writew(epio
, MUSB_TXCSR
, csr
);
97 csr
= musb_readw(epio
, MUSB_TXCSR
);
100 * FIXME: sometimes the tx fifo flush failed, it has been
101 * observed during device disconnect on AM335x.
103 * To reproduce the issue, ensure tx urb(s) are queued when
104 * unplug the usb device which is connected to AM335x usb
107 * I found using a usb-ethernet device and running iperf
108 * (client on AM335x) has very high chance to trigger it.
110 * Better to turn on musb_dbg() in musb_cleanup_urb() with
111 * CPPI enabled to see the issue when aborting the tx channel.
113 if (dev_WARN_ONCE(musb
->controller
, retries
-- < 1,
114 "Could not flush host TX%d fifo: csr: %04x\n",
121 static void musb_h_ep0_flush_fifo(struct musb_hw_ep
*ep
)
123 void __iomem
*epio
= ep
->regs
;
127 /* scrub any data left in the fifo */
129 csr
= musb_readw(epio
, MUSB_TXCSR
);
130 if (!(csr
& (MUSB_CSR0_TXPKTRDY
| MUSB_CSR0_RXPKTRDY
)))
132 musb_writew(epio
, MUSB_TXCSR
, MUSB_CSR0_FLUSHFIFO
);
133 csr
= musb_readw(epio
, MUSB_TXCSR
);
137 WARN(!retries
, "Could not flush host TX%d fifo: csr: %04x\n",
140 /* and reset for the next transfer */
141 musb_writew(epio
, MUSB_TXCSR
, 0);
145 * Start transmit. Caller is responsible for locking shared resources.
146 * musb must be locked.
148 static inline void musb_h_tx_start(struct musb_hw_ep
*ep
)
152 /* NOTE: no locks here; caller should lock and select EP */
154 txcsr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
155 txcsr
|= MUSB_TXCSR_TXPKTRDY
| MUSB_TXCSR_H_WZC_BITS
;
156 musb_writew(ep
->regs
, MUSB_TXCSR
, txcsr
);
158 txcsr
= MUSB_CSR0_H_SETUPPKT
| MUSB_CSR0_TXPKTRDY
;
159 musb_writew(ep
->regs
, MUSB_CSR0
, txcsr
);
164 static inline void musb_h_tx_dma_start(struct musb_hw_ep
*ep
)
168 /* NOTE: no locks here; caller should lock and select EP */
169 txcsr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
170 txcsr
|= MUSB_TXCSR_DMAENAB
| MUSB_TXCSR_H_WZC_BITS
;
171 if (is_cppi_enabled(ep
->musb
))
172 txcsr
|= MUSB_TXCSR_DMAMODE
;
173 musb_writew(ep
->regs
, MUSB_TXCSR
, txcsr
);
176 static void musb_ep_set_qh(struct musb_hw_ep
*ep
, int is_in
, struct musb_qh
*qh
)
178 if (is_in
!= 0 || ep
->is_shared_fifo
)
180 if (is_in
== 0 || ep
->is_shared_fifo
)
184 static struct musb_qh
*musb_ep_get_qh(struct musb_hw_ep
*ep
, int is_in
)
186 return is_in
? ep
->in_qh
: ep
->out_qh
;
190 * Start the URB at the front of an endpoint's queue
191 * end must be claimed from the caller.
193 * Context: controller locked, irqs blocked
196 musb_start_urb(struct musb
*musb
, int is_in
, struct musb_qh
*qh
)
199 void __iomem
*mbase
= musb
->mregs
;
200 struct urb
*urb
= next_urb(qh
);
201 void *buf
= urb
->transfer_buffer
;
203 struct musb_hw_ep
*hw_ep
= qh
->hw_ep
;
204 int epnum
= hw_ep
->epnum
;
206 /* initialize software qh state */
210 /* gather right source of data */
212 case USB_ENDPOINT_XFER_CONTROL
:
213 /* control transfers always start with SETUP */
215 musb
->ep0_stage
= MUSB_EP0_START
;
216 buf
= urb
->setup_packet
;
219 case USB_ENDPOINT_XFER_ISOC
:
222 offset
= urb
->iso_frame_desc
[0].offset
;
223 len
= urb
->iso_frame_desc
[0].length
;
225 default: /* bulk, interrupt */
226 /* actual_length may be nonzero on retry paths */
227 buf
= urb
->transfer_buffer
+ urb
->actual_length
;
228 len
= urb
->transfer_buffer_length
- urb
->actual_length
;
231 trace_musb_urb_start(musb
, urb
);
233 /* Configure endpoint */
234 musb_ep_set_qh(hw_ep
, is_in
, qh
);
235 musb_ep_program(musb
, epnum
, urb
, !is_in
, buf
, offset
, len
);
237 /* transmit may have more work: start it when it is time */
241 /* determine if the time is right for a periodic transfer */
243 case USB_ENDPOINT_XFER_ISOC
:
244 case USB_ENDPOINT_XFER_INT
:
245 musb_dbg(musb
, "check whether there's still time for periodic Tx");
246 /* FIXME this doesn't implement that scheduling policy ...
247 * or handle framecounter wrapping
249 if (1) { /* Always assume URB_ISO_ASAP */
250 /* REVISIT the SOF irq handler shouldn't duplicate
251 * this code; and we don't init urb->start_frame...
256 qh
->frame
= urb
->start_frame
;
257 /* enable SOF interrupt so we can count down */
258 musb_dbg(musb
, "SOF for %d", epnum
);
259 #if 1 /* ifndef CONFIG_ARCH_DAVINCI */
260 musb_writeb(mbase
, MUSB_INTRUSBE
, 0xff);
266 musb_dbg(musb
, "Start TX%d %s", epnum
,
267 hw_ep
->tx_channel
? "dma" : "pio");
269 if (!hw_ep
->tx_channel
)
270 musb_h_tx_start(hw_ep
);
271 else if (is_cppi_enabled(musb
) || tusb_dma_omap(musb
))
272 musb_h_tx_dma_start(hw_ep
);
276 /* Context: caller owns controller lock, IRQs are blocked */
277 static void musb_giveback(struct musb
*musb
, struct urb
*urb
, int status
)
278 __releases(musb
->lock
)
279 __acquires(musb
->lock
)
281 trace_musb_urb_gb(musb
, urb
);
283 usb_hcd_unlink_urb_from_ep(musb
->hcd
, urb
);
284 spin_unlock(&musb
->lock
);
285 usb_hcd_giveback_urb(musb
->hcd
, urb
, status
);
286 spin_lock(&musb
->lock
);
290 * Advance this hardware endpoint's queue, completing the specified URB and
291 * advancing to either the next URB queued to that qh, or else invalidating
292 * that qh and advancing to the next qh scheduled after the current one.
294 * Context: caller owns controller lock, IRQs are blocked
296 static void musb_advance_schedule(struct musb
*musb
, struct urb
*urb
,
297 struct musb_hw_ep
*hw_ep
, int is_in
)
299 struct musb_qh
*qh
= musb_ep_get_qh(hw_ep
, is_in
);
300 struct musb_hw_ep
*ep
= qh
->hw_ep
;
301 int ready
= qh
->is_ready
;
305 status
= (urb
->status
== -EINPROGRESS
) ? 0 : urb
->status
;
307 /* save toggle eagerly, for paranoia */
309 case USB_ENDPOINT_XFER_BULK
:
310 case USB_ENDPOINT_XFER_INT
:
311 toggle
= musb
->io
.get_toggle(qh
, !is_in
);
312 usb_settoggle(urb
->dev
, qh
->epnum
, !is_in
, toggle
? 1 : 0);
314 case USB_ENDPOINT_XFER_ISOC
:
315 if (status
== 0 && urb
->error_count
)
321 musb_giveback(musb
, urb
, status
);
322 qh
->is_ready
= ready
;
324 /* reclaim resources (and bandwidth) ASAP; deschedule it, and
325 * invalidate qh as soon as list_empty(&hep->urb_list)
327 if (list_empty(&qh
->hep
->urb_list
)) {
328 struct list_head
*head
;
329 struct dma_controller
*dma
= musb
->dma_controller
;
333 if (ep
->rx_channel
) {
334 dma
->channel_release(ep
->rx_channel
);
335 ep
->rx_channel
= NULL
;
339 if (ep
->tx_channel
) {
340 dma
->channel_release(ep
->tx_channel
);
341 ep
->tx_channel
= NULL
;
345 /* Clobber old pointers to this qh */
346 musb_ep_set_qh(ep
, is_in
, NULL
);
347 qh
->hep
->hcpriv
= NULL
;
351 case USB_ENDPOINT_XFER_CONTROL
:
352 case USB_ENDPOINT_XFER_BULK
:
353 /* fifo policy for these lists, except that NAKing
354 * should rotate a qh to the end (for fairness).
357 head
= qh
->ring
.prev
;
365 case USB_ENDPOINT_XFER_ISOC
:
366 case USB_ENDPOINT_XFER_INT
:
367 /* this is where periodic bandwidth should be
368 * de-allocated if it's tracked and allocated;
369 * and where we'd update the schedule tree...
377 if (qh
!= NULL
&& qh
->is_ready
) {
378 musb_dbg(musb
, "... next ep%d %cX urb %p",
379 hw_ep
->epnum
, is_in
? 'R' : 'T', next_urb(qh
));
380 musb_start_urb(musb
, is_in
, qh
);
384 static u16
musb_h_flush_rxfifo(struct musb_hw_ep
*hw_ep
, u16 csr
)
386 /* we don't want fifo to fill itself again;
387 * ignore dma (various models),
388 * leave toggle alone (may not have been saved yet)
390 csr
|= MUSB_RXCSR_FLUSHFIFO
| MUSB_RXCSR_RXPKTRDY
;
391 csr
&= ~(MUSB_RXCSR_H_REQPKT
392 | MUSB_RXCSR_H_AUTOREQ
393 | MUSB_RXCSR_AUTOCLEAR
);
395 /* write 2x to allow double buffering */
396 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
397 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
399 /* flush writebuffer */
400 return musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
404 * PIO RX for a packet (or part of it).
407 musb_host_packet_rx(struct musb
*musb
, struct urb
*urb
, u8 epnum
, u8 iso_err
)
415 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
416 void __iomem
*epio
= hw_ep
->regs
;
417 struct musb_qh
*qh
= hw_ep
->in_qh
;
418 int pipe
= urb
->pipe
;
419 void *buffer
= urb
->transfer_buffer
;
421 /* musb_ep_select(mbase, epnum); */
422 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
423 musb_dbg(musb
, "RX%d count %d, buffer %p len %d/%d", epnum
, rx_count
,
424 urb
->transfer_buffer
, qh
->offset
,
425 urb
->transfer_buffer_length
);
428 if (usb_pipeisoc(pipe
)) {
430 struct usb_iso_packet_descriptor
*d
;
437 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
438 buf
= buffer
+ d
->offset
;
440 if (rx_count
> length
) {
445 musb_dbg(musb
, "OVERFLOW %d into %d", rx_count
, length
);
449 urb
->actual_length
+= length
;
450 d
->actual_length
= length
;
454 /* see if we are done */
455 done
= (++qh
->iso_idx
>= urb
->number_of_packets
);
458 buf
= buffer
+ qh
->offset
;
459 length
= urb
->transfer_buffer_length
- qh
->offset
;
460 if (rx_count
> length
) {
461 if (urb
->status
== -EINPROGRESS
)
462 urb
->status
= -EOVERFLOW
;
463 musb_dbg(musb
, "OVERFLOW %d into %d", rx_count
, length
);
467 urb
->actual_length
+= length
;
468 qh
->offset
+= length
;
470 /* see if we are done */
471 done
= (urb
->actual_length
== urb
->transfer_buffer_length
)
472 || (rx_count
< qh
->maxpacket
)
473 || (urb
->status
!= -EINPROGRESS
);
475 && (urb
->status
== -EINPROGRESS
)
476 && (urb
->transfer_flags
& URB_SHORT_NOT_OK
)
477 && (urb
->actual_length
478 < urb
->transfer_buffer_length
))
479 urb
->status
= -EREMOTEIO
;
482 musb_read_fifo(hw_ep
, length
, buf
);
484 csr
= musb_readw(epio
, MUSB_RXCSR
);
485 csr
|= MUSB_RXCSR_H_WZC_BITS
;
486 if (unlikely(do_flush
))
487 musb_h_flush_rxfifo(hw_ep
, csr
);
489 /* REVISIT this assumes AUTOCLEAR is never set */
490 csr
&= ~(MUSB_RXCSR_RXPKTRDY
| MUSB_RXCSR_H_REQPKT
);
492 csr
|= MUSB_RXCSR_H_REQPKT
;
493 musb_writew(epio
, MUSB_RXCSR
, csr
);
499 /* we don't always need to reinit a given side of an endpoint...
500 * when we do, use tx/rx reinit routine and then construct a new CSR
501 * to address data toggle, NYET, and DMA or PIO.
503 * it's possible that driver bugs (especially for DMA) or aborting a
504 * transfer might have left the endpoint busier than it should be.
505 * the busy/not-empty tests are basically paranoia.
508 musb_rx_reinit(struct musb
*musb
, struct musb_qh
*qh
, u8 epnum
)
510 struct musb_hw_ep
*ep
= musb
->endpoints
+ epnum
;
513 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
514 * That always uses tx_reinit since ep0 repurposes TX register
515 * offsets; the initial SETUP packet is also a kind of OUT.
518 /* if programmed for Tx, put it in RX mode */
519 if (ep
->is_shared_fifo
) {
520 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
521 if (csr
& MUSB_TXCSR_MODE
) {
522 musb_h_tx_flush_fifo(ep
);
523 csr
= musb_readw(ep
->regs
, MUSB_TXCSR
);
524 musb_writew(ep
->regs
, MUSB_TXCSR
,
525 csr
| MUSB_TXCSR_FRCDATATOG
);
529 * Clear the MODE bit (and everything else) to enable Rx.
530 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
532 if (csr
& MUSB_TXCSR_DMAMODE
)
533 musb_writew(ep
->regs
, MUSB_TXCSR
, MUSB_TXCSR_DMAMODE
);
534 musb_writew(ep
->regs
, MUSB_TXCSR
, 0);
536 /* scrub all previous state, clearing toggle */
538 csr
= musb_readw(ep
->regs
, MUSB_RXCSR
);
539 if (csr
& MUSB_RXCSR_RXPKTRDY
)
540 WARNING("rx%d, packet/%d ready?\n", ep
->epnum
,
541 musb_readw(ep
->regs
, MUSB_RXCOUNT
));
543 musb_h_flush_rxfifo(ep
, MUSB_RXCSR_CLRDATATOG
);
545 /* target addr and (for multipoint) hub addr/port */
546 if (musb
->is_multipoint
) {
547 musb_write_rxfunaddr(musb
, epnum
, qh
->addr_reg
);
548 musb_write_rxhubaddr(musb
, epnum
, qh
->h_addr_reg
);
549 musb_write_rxhubport(musb
, epnum
, qh
->h_port_reg
);
551 musb_writeb(musb
->mregs
, MUSB_FADDR
, qh
->addr_reg
);
553 /* protocol/endpoint, interval/NAKlimit, i/o size */
554 musb_writeb(ep
->regs
, MUSB_RXTYPE
, qh
->type_reg
);
555 musb_writeb(ep
->regs
, MUSB_RXINTERVAL
, qh
->intv_reg
);
556 /* NOTE: bulk combining rewrites high bits of maxpacket */
557 /* Set RXMAXP with the FIFO size of the endpoint
558 * to disable double buffer mode.
560 musb_writew(ep
->regs
, MUSB_RXMAXP
,
561 qh
->maxpacket
| ((qh
->hb_mult
- 1) << 11));
566 static void musb_tx_dma_set_mode_mentor(struct dma_controller
*dma
,
567 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
568 struct urb
*urb
, u32 offset
,
569 u32
*length
, u8
*mode
)
571 struct dma_channel
*channel
= hw_ep
->tx_channel
;
572 void __iomem
*epio
= hw_ep
->regs
;
573 u16 pkt_size
= qh
->maxpacket
;
576 if (*length
> channel
->max_len
)
577 *length
= channel
->max_len
;
579 csr
= musb_readw(epio
, MUSB_TXCSR
);
580 if (*length
> pkt_size
) {
582 csr
|= MUSB_TXCSR_DMAMODE
| MUSB_TXCSR_DMAENAB
;
583 /* autoset shouldn't be set in high bandwidth */
585 * Enable Autoset according to table
587 * bulk_split hb_mult Autoset_Enable
589 * 0 >1 No(High BW ISO)
593 if (qh
->hb_mult
== 1 || (qh
->hb_mult
> 1 &&
594 can_bulk_split(hw_ep
->musb
, qh
->type
)))
595 csr
|= MUSB_TXCSR_AUTOSET
;
598 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAMODE
);
599 csr
|= MUSB_TXCSR_DMAENAB
; /* against programmer's guide */
601 channel
->desired_mode
= *mode
;
602 musb_writew(epio
, MUSB_TXCSR
, csr
);
605 static void musb_tx_dma_set_mode_cppi_tusb(struct dma_controller
*dma
,
606 struct musb_hw_ep
*hw_ep
,
613 struct dma_channel
*channel
= hw_ep
->tx_channel
;
615 channel
->actual_len
= 0;
618 * TX uses "RNDIS" mode automatically but needs help
619 * to identify the zero-length-final-packet case.
621 *mode
= (urb
->transfer_flags
& URB_ZERO_PACKET
) ? 1 : 0;
624 static bool musb_tx_dma_program(struct dma_controller
*dma
,
625 struct musb_hw_ep
*hw_ep
, struct musb_qh
*qh
,
626 struct urb
*urb
, u32 offset
, u32 length
)
628 struct dma_channel
*channel
= hw_ep
->tx_channel
;
629 u16 pkt_size
= qh
->maxpacket
;
632 if (musb_dma_inventra(hw_ep
->musb
) || musb_dma_ux500(hw_ep
->musb
))
633 musb_tx_dma_set_mode_mentor(dma
, hw_ep
, qh
, urb
, offset
,
635 else if (is_cppi_enabled(hw_ep
->musb
) || tusb_dma_omap(hw_ep
->musb
))
636 musb_tx_dma_set_mode_cppi_tusb(dma
, hw_ep
, qh
, urb
, offset
,
641 qh
->segsize
= length
;
644 * Ensure the data reaches to main memory before starting
649 if (!dma
->channel_program(channel
, pkt_size
, mode
,
650 urb
->transfer_dma
+ offset
, length
)) {
651 void __iomem
*epio
= hw_ep
->regs
;
654 dma
->channel_release(channel
);
655 hw_ep
->tx_channel
= NULL
;
657 csr
= musb_readw(epio
, MUSB_TXCSR
);
658 csr
&= ~(MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAENAB
);
659 musb_writew(epio
, MUSB_TXCSR
, csr
| MUSB_TXCSR_H_WZC_BITS
);
666 * Program an HDRC endpoint as per the given URB
667 * Context: irqs blocked, controller lock held
669 static void musb_ep_program(struct musb
*musb
, u8 epnum
,
670 struct urb
*urb
, int is_out
,
671 u8
*buf
, u32 offset
, u32 len
)
673 struct dma_controller
*dma_controller
;
674 struct dma_channel
*dma_channel
;
676 void __iomem
*mbase
= musb
->mregs
;
677 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
678 void __iomem
*epio
= hw_ep
->regs
;
679 struct musb_qh
*qh
= musb_ep_get_qh(hw_ep
, !is_out
);
680 u16 packet_sz
= qh
->maxpacket
;
684 musb_dbg(musb
, "%s hw%d urb %p spd%d dev%d ep%d%s "
685 "h_addr%02x h_port%02x bytes %d",
686 is_out
? "-->" : "<--",
687 epnum
, urb
, urb
->dev
->speed
,
688 qh
->addr_reg
, qh
->epnum
, is_out
? "out" : "in",
689 qh
->h_addr_reg
, qh
->h_port_reg
,
692 musb_ep_select(mbase
, epnum
);
694 if (is_out
&& !len
) {
696 csr
= musb_readw(epio
, MUSB_TXCSR
);
697 csr
&= ~MUSB_TXCSR_DMAENAB
;
698 musb_writew(epio
, MUSB_TXCSR
, csr
);
699 hw_ep
->tx_channel
= NULL
;
702 /* candidate for DMA? */
703 dma_controller
= musb
->dma_controller
;
704 if (use_dma
&& is_dma_capable() && epnum
&& dma_controller
) {
705 dma_channel
= is_out
? hw_ep
->tx_channel
: hw_ep
->rx_channel
;
707 dma_channel
= dma_controller
->channel_alloc(
708 dma_controller
, hw_ep
, is_out
);
710 hw_ep
->tx_channel
= dma_channel
;
712 hw_ep
->rx_channel
= dma_channel
;
717 /* make sure we clear DMAEnab, autoSet bits from previous run */
719 /* OUT/transmit/EP0 or IN/receive? */
725 csr
= musb_readw(epio
, MUSB_TXCSR
);
727 /* disable interrupt in case we flush */
728 int_txe
= musb
->intrtxe
;
729 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
& ~(1 << epnum
));
731 /* general endpoint setup */
733 /* flush all old state, set default */
735 * We could be flushing valid
736 * packets in double buffering
739 if (!hw_ep
->tx_double_buffered
)
740 musb_h_tx_flush_fifo(hw_ep
);
743 * We must not clear the DMAMODE bit before or in
744 * the same cycle with the DMAENAB bit, so we clear
745 * the latter first...
747 csr
&= ~(MUSB_TXCSR_H_NAKTIMEOUT
750 | MUSB_TXCSR_FRCDATATOG
751 | MUSB_TXCSR_H_RXSTALL
753 | MUSB_TXCSR_TXPKTRDY
755 csr
|= MUSB_TXCSR_MODE
;
757 if (!hw_ep
->tx_double_buffered
)
758 csr
|= musb
->io
.set_toggle(qh
, is_out
, urb
);
760 musb_writew(epio
, MUSB_TXCSR
, csr
);
761 /* REVISIT may need to clear FLUSHFIFO ... */
762 csr
&= ~MUSB_TXCSR_DMAMODE
;
763 musb_writew(epio
, MUSB_TXCSR
, csr
);
764 csr
= musb_readw(epio
, MUSB_TXCSR
);
766 /* endpoint 0: just flush */
767 musb_h_ep0_flush_fifo(hw_ep
);
770 /* target addr and (for multipoint) hub addr/port */
771 if (musb
->is_multipoint
) {
772 musb_write_txfunaddr(musb
, epnum
, qh
->addr_reg
);
773 musb_write_txhubaddr(musb
, epnum
, qh
->h_addr_reg
);
774 musb_write_txhubport(musb
, epnum
, qh
->h_port_reg
);
775 /* FIXME if !epnum, do the same for RX ... */
777 musb_writeb(mbase
, MUSB_FADDR
, qh
->addr_reg
);
779 /* protocol/endpoint/interval/NAKlimit */
781 musb_writeb(epio
, MUSB_TXTYPE
, qh
->type_reg
);
782 if (can_bulk_split(musb
, qh
->type
)) {
783 qh
->hb_mult
= hw_ep
->max_packet_sz_tx
785 musb_writew(epio
, MUSB_TXMAXP
, packet_sz
786 | ((qh
->hb_mult
) - 1) << 11);
788 musb_writew(epio
, MUSB_TXMAXP
,
790 ((qh
->hb_mult
- 1) << 11));
792 musb_writeb(epio
, MUSB_TXINTERVAL
, qh
->intv_reg
);
794 musb_writeb(epio
, MUSB_NAKLIMIT0
, qh
->intv_reg
);
795 if (musb
->is_multipoint
)
796 musb_writeb(epio
, MUSB_TYPE0
,
800 if (can_bulk_split(musb
, qh
->type
))
801 load_count
= min((u32
) hw_ep
->max_packet_sz_tx
,
804 load_count
= min((u32
) packet_sz
, len
);
806 if (dma_channel
&& musb_tx_dma_program(dma_controller
,
807 hw_ep
, qh
, urb
, offset
, len
))
811 /* PIO to load FIFO */
812 qh
->segsize
= load_count
;
814 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
817 if (!sg_miter_next(&qh
->sg_miter
)) {
818 dev_err(musb
->controller
,
821 sg_miter_stop(&qh
->sg_miter
);
824 buf
= qh
->sg_miter
.addr
+ urb
->sg
->offset
+
826 load_count
= min_t(u32
, load_count
,
827 qh
->sg_miter
.length
);
828 musb_write_fifo(hw_ep
, load_count
, buf
);
829 qh
->sg_miter
.consumed
= load_count
;
830 sg_miter_stop(&qh
->sg_miter
);
832 musb_write_fifo(hw_ep
, load_count
, buf
);
835 /* re-enable interrupt */
836 musb_writew(mbase
, MUSB_INTRTXE
, int_txe
);
842 if (hw_ep
->rx_reinit
) {
843 musb_rx_reinit(musb
, qh
, epnum
);
844 csr
|= musb
->io
.set_toggle(qh
, is_out
, urb
);
846 if (qh
->type
== USB_ENDPOINT_XFER_INT
)
847 csr
|= MUSB_RXCSR_DISNYET
;
850 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
852 if (csr
& (MUSB_RXCSR_RXPKTRDY
854 | MUSB_RXCSR_H_REQPKT
))
855 ERR("broken !rx_reinit, ep%d csr %04x\n",
858 /* scrub any stale state, leaving toggle alone */
859 csr
&= MUSB_RXCSR_DISNYET
;
862 /* kick things off */
864 if ((is_cppi_enabled(musb
) || tusb_dma_omap(musb
)) && dma_channel
) {
865 /* Candidate for DMA */
866 dma_channel
->actual_len
= 0L;
869 /* AUTOREQ is in a DMA register */
870 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
871 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
874 * Unless caller treats short RX transfers as
875 * errors, we dare not queue multiple transfers.
877 dma_ok
= dma_controller
->channel_program(dma_channel
,
878 packet_sz
, !(urb
->transfer_flags
&
880 urb
->transfer_dma
+ offset
,
883 dma_controller
->channel_release(dma_channel
);
884 hw_ep
->rx_channel
= dma_channel
= NULL
;
886 csr
|= MUSB_RXCSR_DMAENAB
;
889 csr
|= MUSB_RXCSR_H_REQPKT
;
890 musb_dbg(musb
, "RXCSR%d := %04x", epnum
, csr
);
891 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, csr
);
892 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
896 /* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
897 * the end; avoids starvation for other endpoints.
899 static void musb_bulk_nak_timeout(struct musb
*musb
, struct musb_hw_ep
*ep
,
902 struct dma_channel
*dma
;
904 void __iomem
*mbase
= musb
->mregs
;
905 void __iomem
*epio
= ep
->regs
;
906 struct musb_qh
*cur_qh
, *next_qh
;
910 musb_ep_select(mbase
, ep
->epnum
);
912 dma
= is_dma_capable() ? ep
->rx_channel
: NULL
;
915 * Need to stop the transaction by clearing REQPKT first
916 * then the NAK Timeout bit ref MUSBMHDRC USB 2.0 HIGH-SPEED
917 * DUAL-ROLE CONTROLLER Programmer's Guide, section 9.2.2
919 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
920 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
921 rx_csr
&= ~MUSB_RXCSR_H_REQPKT
;
922 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
923 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
924 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
926 cur_qh
= first_qh(&musb
->in_bulk
);
928 dma
= is_dma_capable() ? ep
->tx_channel
: NULL
;
930 /* clear nak timeout bit */
931 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
932 tx_csr
|= MUSB_TXCSR_H_WZC_BITS
;
933 tx_csr
&= ~MUSB_TXCSR_H_NAKTIMEOUT
;
934 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
936 cur_qh
= first_qh(&musb
->out_bulk
);
939 urb
= next_urb(cur_qh
);
940 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
941 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
942 musb
->dma_controller
->channel_abort(dma
);
943 urb
->actual_length
+= dma
->actual_len
;
944 dma
->actual_len
= 0L;
946 toggle
= musb
->io
.get_toggle(cur_qh
, !is_in
);
947 usb_settoggle(urb
->dev
, cur_qh
->epnum
, !is_in
, toggle
? 1 : 0);
950 /* move cur_qh to end of queue */
951 list_move_tail(&cur_qh
->ring
, &musb
->in_bulk
);
953 /* get the next qh from musb->in_bulk */
954 next_qh
= first_qh(&musb
->in_bulk
);
956 /* set rx_reinit and schedule the next qh */
959 /* move cur_qh to end of queue */
960 list_move_tail(&cur_qh
->ring
, &musb
->out_bulk
);
962 /* get the next qh from musb->out_bulk */
963 next_qh
= first_qh(&musb
->out_bulk
);
965 /* set tx_reinit and schedule the next qh */
970 musb_start_urb(musb
, is_in
, next_qh
);
975 * Service the default endpoint (ep0) as host.
976 * Return true until it's time to start the status stage.
978 static bool musb_h_ep0_continue(struct musb
*musb
, u16 len
, struct urb
*urb
)
981 u8
*fifo_dest
= NULL
;
983 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
984 struct musb_qh
*qh
= hw_ep
->in_qh
;
985 struct usb_ctrlrequest
*request
;
987 switch (musb
->ep0_stage
) {
989 fifo_dest
= urb
->transfer_buffer
+ urb
->actual_length
;
990 fifo_count
= min_t(size_t, len
, urb
->transfer_buffer_length
-
992 if (fifo_count
< len
)
993 urb
->status
= -EOVERFLOW
;
995 musb_read_fifo(hw_ep
, fifo_count
, fifo_dest
);
997 urb
->actual_length
+= fifo_count
;
998 if (len
< qh
->maxpacket
) {
999 /* always terminate on short read; it's
1000 * rarely reported as an error.
1002 } else if (urb
->actual_length
<
1003 urb
->transfer_buffer_length
)
1006 case MUSB_EP0_START
:
1007 request
= (struct usb_ctrlrequest
*) urb
->setup_packet
;
1009 if (!request
->wLength
) {
1010 musb_dbg(musb
, "start no-DATA");
1012 } else if (request
->bRequestType
& USB_DIR_IN
) {
1013 musb_dbg(musb
, "start IN-DATA");
1014 musb
->ep0_stage
= MUSB_EP0_IN
;
1018 musb_dbg(musb
, "start OUT-DATA");
1019 musb
->ep0_stage
= MUSB_EP0_OUT
;
1024 fifo_count
= min_t(size_t, qh
->maxpacket
,
1025 urb
->transfer_buffer_length
-
1026 urb
->actual_length
);
1028 fifo_dest
= (u8
*) (urb
->transfer_buffer
1029 + urb
->actual_length
);
1030 musb_dbg(musb
, "Sending %d byte%s to ep0 fifo %p",
1032 (fifo_count
== 1) ? "" : "s",
1034 musb_write_fifo(hw_ep
, fifo_count
, fifo_dest
);
1036 urb
->actual_length
+= fifo_count
;
1041 ERR("bogus ep0 stage %d\n", musb
->ep0_stage
);
1049 * Handle default endpoint interrupt as host. Only called in IRQ time
1050 * from musb_interrupt().
1052 * called with controller irqlocked
1054 irqreturn_t
musb_h_ep0_irq(struct musb
*musb
)
1059 void __iomem
*mbase
= musb
->mregs
;
1060 struct musb_hw_ep
*hw_ep
= musb
->control_ep
;
1061 void __iomem
*epio
= hw_ep
->regs
;
1062 struct musb_qh
*qh
= hw_ep
->in_qh
;
1063 bool complete
= false;
1064 irqreturn_t retval
= IRQ_NONE
;
1066 /* ep0 only has one queue, "in" */
1069 musb_ep_select(mbase
, 0);
1070 csr
= musb_readw(epio
, MUSB_CSR0
);
1071 len
= (csr
& MUSB_CSR0_RXPKTRDY
)
1072 ? musb_readb(epio
, MUSB_COUNT0
)
1075 musb_dbg(musb
, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d",
1076 csr
, qh
, len
, urb
, musb
->ep0_stage
);
1078 /* if we just did status stage, we are done */
1079 if (MUSB_EP0_STATUS
== musb
->ep0_stage
) {
1080 retval
= IRQ_HANDLED
;
1084 /* prepare status */
1085 if (csr
& MUSB_CSR0_H_RXSTALL
) {
1086 musb_dbg(musb
, "STALLING ENDPOINT");
1089 } else if (csr
& MUSB_CSR0_H_ERROR
) {
1090 musb_dbg(musb
, "no response, csr0 %04x", csr
);
1093 } else if (csr
& MUSB_CSR0_H_NAKTIMEOUT
) {
1094 musb_dbg(musb
, "control NAK timeout");
1096 /* NOTE: this code path would be a good place to PAUSE a
1097 * control transfer, if another one is queued, so that
1098 * ep0 is more likely to stay busy. That's already done
1099 * for bulk RX transfers.
1101 * if (qh->ring.next != &musb->control), then
1102 * we have a candidate... NAKing is *NOT* an error
1104 musb_writew(epio
, MUSB_CSR0
, 0);
1105 retval
= IRQ_HANDLED
;
1109 musb_dbg(musb
, "aborting");
1110 retval
= IRQ_HANDLED
;
1112 urb
->status
= status
;
1115 /* use the proper sequence to abort the transfer */
1116 if (csr
& MUSB_CSR0_H_REQPKT
) {
1117 csr
&= ~MUSB_CSR0_H_REQPKT
;
1118 musb_writew(epio
, MUSB_CSR0
, csr
);
1119 csr
&= ~MUSB_CSR0_H_NAKTIMEOUT
;
1120 musb_writew(epio
, MUSB_CSR0
, csr
);
1122 musb_h_ep0_flush_fifo(hw_ep
);
1125 musb_writeb(epio
, MUSB_NAKLIMIT0
, 0);
1128 musb_writew(epio
, MUSB_CSR0
, 0);
1131 if (unlikely(!urb
)) {
1132 /* stop endpoint since we have no place for its data, this
1133 * SHOULD NEVER HAPPEN! */
1134 ERR("no URB for end 0\n");
1136 musb_h_ep0_flush_fifo(hw_ep
);
1141 /* call common logic and prepare response */
1142 if (musb_h_ep0_continue(musb
, len
, urb
)) {
1143 /* more packets required */
1144 csr
= (MUSB_EP0_IN
== musb
->ep0_stage
)
1145 ? MUSB_CSR0_H_REQPKT
: MUSB_CSR0_TXPKTRDY
;
1147 /* data transfer complete; perform status phase */
1148 if (usb_pipeout(urb
->pipe
)
1149 || !urb
->transfer_buffer_length
)
1150 csr
= MUSB_CSR0_H_STATUSPKT
1151 | MUSB_CSR0_H_REQPKT
;
1153 csr
= MUSB_CSR0_H_STATUSPKT
1154 | MUSB_CSR0_TXPKTRDY
;
1156 /* disable ping token in status phase */
1157 csr
|= MUSB_CSR0_H_DIS_PING
;
1159 /* flag status stage */
1160 musb
->ep0_stage
= MUSB_EP0_STATUS
;
1162 musb_dbg(musb
, "ep0 STATUS, csr %04x", csr
);
1165 musb_writew(epio
, MUSB_CSR0
, csr
);
1166 retval
= IRQ_HANDLED
;
1168 musb
->ep0_stage
= MUSB_EP0_IDLE
;
1170 /* call completion handler if done */
1172 musb_advance_schedule(musb
, urb
, hw_ep
, 1);
1178 #ifdef CONFIG_USB_INVENTRA_DMA
1180 /* Host side TX (OUT) using Mentor DMA works as follows:
1182 - if queue was empty, Program Endpoint
1183 - ... which starts DMA to fifo in mode 1 or 0
1185 DMA Isr (transfer complete) -> TxAvail()
1186 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1187 only in musb_cleanup_urb)
1188 - TxPktRdy has to be set in mode 0 or for
1189 short packets in mode 1.
1194 /* Service a Tx-Available or dma completion irq for the endpoint */
1195 void musb_host_tx(struct musb
*musb
, u8 epnum
)
1202 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1203 void __iomem
*epio
= hw_ep
->regs
;
1204 struct musb_qh
*qh
= hw_ep
->out_qh
;
1205 struct urb
*urb
= next_urb(qh
);
1207 void __iomem
*mbase
= musb
->mregs
;
1208 struct dma_channel
*dma
;
1209 bool transfer_pending
= false;
1211 musb_ep_select(mbase
, epnum
);
1212 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1214 /* with CPPI, DMA sometimes triggers "extra" irqs */
1216 musb_dbg(musb
, "extra TX%d ready, csr %04x", epnum
, tx_csr
);
1221 dma
= is_dma_capable() ? hw_ep
->tx_channel
: NULL
;
1222 trace_musb_urb_tx(musb
, urb
);
1223 musb_dbg(musb
, "OUT/TX%d end, csr %04x%s", epnum
, tx_csr
,
1224 dma
? ", dma" : "");
1226 /* check for errors */
1227 if (tx_csr
& MUSB_TXCSR_H_RXSTALL
) {
1228 /* dma was disabled, fifo flushed */
1229 musb_dbg(musb
, "TX end %d stall", epnum
);
1231 /* stall; record URB status */
1234 } else if (tx_csr
& MUSB_TXCSR_H_ERROR
) {
1235 /* (NON-ISO) dma was disabled, fifo flushed */
1236 musb_dbg(musb
, "TX 3strikes on ep=%d", epnum
);
1238 status
= -ETIMEDOUT
;
1240 } else if (tx_csr
& MUSB_TXCSR_H_NAKTIMEOUT
) {
1241 if (USB_ENDPOINT_XFER_BULK
== qh
->type
&& qh
->mux
== 1
1242 && !list_is_singular(&musb
->out_bulk
)) {
1243 musb_dbg(musb
, "NAK timeout on TX%d ep", epnum
);
1244 musb_bulk_nak_timeout(musb
, hw_ep
, 0);
1246 musb_dbg(musb
, "TX ep%d device not responding", epnum
);
1247 /* NOTE: this code path would be a good place to PAUSE a
1248 * transfer, if there's some other (nonperiodic) tx urb
1249 * that could use this fifo. (dma complicates it...)
1250 * That's already done for bulk RX transfers.
1252 * if (bulk && qh->ring.next != &musb->out_bulk), then
1253 * we have a candidate... NAKing is *NOT* an error
1255 musb_ep_select(mbase
, epnum
);
1256 musb_writew(epio
, MUSB_TXCSR
,
1257 MUSB_TXCSR_H_WZC_BITS
1258 | MUSB_TXCSR_TXPKTRDY
);
1265 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1266 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1267 musb
->dma_controller
->channel_abort(dma
);
1270 /* do the proper sequence to abort the transfer in the
1271 * usb core; the dma engine should already be stopped.
1273 musb_h_tx_flush_fifo(hw_ep
);
1274 tx_csr
&= ~(MUSB_TXCSR_AUTOSET
1275 | MUSB_TXCSR_DMAENAB
1276 | MUSB_TXCSR_H_ERROR
1277 | MUSB_TXCSR_H_RXSTALL
1278 | MUSB_TXCSR_H_NAKTIMEOUT
1281 musb_ep_select(mbase
, epnum
);
1282 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1283 /* REVISIT may need to clear FLUSHFIFO ... */
1284 musb_writew(epio
, MUSB_TXCSR
, tx_csr
);
1285 musb_writeb(epio
, MUSB_TXINTERVAL
, 0);
1290 /* second cppi case */
1291 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1292 musb_dbg(musb
, "extra TX%d ready, csr %04x", epnum
, tx_csr
);
1296 if (is_dma_capable() && dma
&& !status
) {
1298 * DMA has completed. But if we're using DMA mode 1 (multi
1299 * packet DMA), we need a terminal TXPKTRDY interrupt before
1300 * we can consider this transfer completed, lest we trash
1301 * its last packet when writing the next URB's data. So we
1302 * switch back to mode 0 to get that interrupt; we'll come
1303 * back here once it happens.
1305 if (tx_csr
& MUSB_TXCSR_DMAMODE
) {
1307 * We shouldn't clear DMAMODE with DMAENAB set; so
1308 * clear them in a safe order. That should be OK
1309 * once TXPKTRDY has been set (and I've never seen
1310 * it being 0 at this moment -- DMA interrupt latency
1311 * is significant) but if it hasn't been then we have
1312 * no choice but to stop being polite and ignore the
1313 * programmer's guide... :-)
1315 * Note that we must write TXCSR with TXPKTRDY cleared
1316 * in order not to re-trigger the packet send (this bit
1317 * can't be cleared by CPU), and there's another caveat:
1318 * TXPKTRDY may be set shortly and then cleared in the
1319 * double-buffered FIFO mode, so we do an extra TXCSR
1320 * read for debouncing...
1322 tx_csr
&= musb_readw(epio
, MUSB_TXCSR
);
1323 if (tx_csr
& MUSB_TXCSR_TXPKTRDY
) {
1324 tx_csr
&= ~(MUSB_TXCSR_DMAENAB
|
1325 MUSB_TXCSR_TXPKTRDY
);
1326 musb_writew(epio
, MUSB_TXCSR
,
1327 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1329 tx_csr
&= ~(MUSB_TXCSR_DMAMODE
|
1330 MUSB_TXCSR_TXPKTRDY
);
1331 musb_writew(epio
, MUSB_TXCSR
,
1332 tx_csr
| MUSB_TXCSR_H_WZC_BITS
);
1335 * There is no guarantee that we'll get an interrupt
1336 * after clearing DMAMODE as we might have done this
1337 * too late (after TXPKTRDY was cleared by controller).
1338 * Re-read TXCSR as we have spoiled its previous value.
1340 tx_csr
= musb_readw(epio
, MUSB_TXCSR
);
1344 * We may get here from a DMA completion or TXPKTRDY interrupt.
1345 * In any case, we must check the FIFO status here and bail out
1346 * only if the FIFO still has data -- that should prevent the
1347 * "missed" TXPKTRDY interrupts and deal with double-buffered
1350 if (tx_csr
& (MUSB_TXCSR_FIFONOTEMPTY
| MUSB_TXCSR_TXPKTRDY
)) {
1352 "DMA complete but FIFO not empty, CSR %04x",
1358 if (!status
|| dma
|| usb_pipeisoc(pipe
)) {
1360 length
= dma
->actual_len
;
1362 length
= qh
->segsize
;
1363 qh
->offset
+= length
;
1365 if (usb_pipeisoc(pipe
)) {
1366 struct usb_iso_packet_descriptor
*d
;
1368 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1369 d
->actual_length
= length
;
1371 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1378 } else if (dma
&& urb
->transfer_buffer_length
== qh
->offset
) {
1381 /* see if we need to send more data, or ZLP */
1382 if (qh
->segsize
< qh
->maxpacket
)
1384 else if (qh
->offset
== urb
->transfer_buffer_length
1385 && !(urb
->transfer_flags
1389 offset
= qh
->offset
;
1390 length
= urb
->transfer_buffer_length
- offset
;
1391 transfer_pending
= true;
1396 /* urb->status != -EINPROGRESS means request has been faulted,
1397 * so we must abort this transfer after cleanup
1399 if (urb
->status
!= -EINPROGRESS
) {
1402 status
= urb
->status
;
1407 urb
->status
= status
;
1408 urb
->actual_length
= qh
->offset
;
1409 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_OUT
);
1411 } else if ((usb_pipeisoc(pipe
) || transfer_pending
) && dma
) {
1412 if (musb_tx_dma_program(musb
->dma_controller
, hw_ep
, qh
, urb
,
1414 if (is_cppi_enabled(musb
) || tusb_dma_omap(musb
))
1415 musb_h_tx_dma_start(hw_ep
);
1418 } else if (tx_csr
& MUSB_TXCSR_DMAENAB
) {
1419 musb_dbg(musb
, "not complete, but DMA enabled?");
1424 * PIO: start next packet in this URB.
1426 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1427 * (and presumably, FIFO is not half-full) we should write *two*
1428 * packets before updating TXCSR; other docs disagree...
1430 if (length
> qh
->maxpacket
)
1431 length
= qh
->maxpacket
;
1432 /* Unmap the buffer so that CPU can use it */
1433 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
1436 * We need to map sg if the transfer_buffer is
1439 if (!urb
->transfer_buffer
)
1443 /* sg_miter_start is already done in musb_ep_program */
1444 if (!sg_miter_next(&qh
->sg_miter
)) {
1445 dev_err(musb
->controller
, "error: sg list empty\n");
1446 sg_miter_stop(&qh
->sg_miter
);
1450 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
1451 length
= min_t(u32
, length
, qh
->sg_miter
.length
);
1452 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
);
1453 qh
->sg_miter
.consumed
= length
;
1454 sg_miter_stop(&qh
->sg_miter
);
1456 musb_write_fifo(hw_ep
, length
, urb
->transfer_buffer
+ offset
);
1459 qh
->segsize
= length
;
1462 if (offset
+ length
>= urb
->transfer_buffer_length
)
1466 musb_ep_select(mbase
, epnum
);
1467 musb_writew(epio
, MUSB_TXCSR
,
1468 MUSB_TXCSR_H_WZC_BITS
| MUSB_TXCSR_TXPKTRDY
);
1471 #ifdef CONFIG_USB_TI_CPPI41_DMA
1472 /* Seems to set up ISO for cppi41 and not advance len. See commit c57c41d */
1473 static int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1474 struct musb_hw_ep
*hw_ep
,
1479 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1480 void __iomem
*epio
= hw_ep
->regs
;
1485 buf
= (void *)urb
->iso_frame_desc
[qh
->iso_idx
].offset
+
1486 (u32
)urb
->transfer_dma
;
1488 length
= urb
->iso_frame_desc
[qh
->iso_idx
].length
;
1490 val
= musb_readw(epio
, MUSB_RXCSR
);
1491 val
|= MUSB_RXCSR_DMAENAB
;
1492 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1494 return dma
->channel_program(channel
, qh
->maxpacket
, 0,
1498 static inline int musb_rx_dma_iso_cppi41(struct dma_controller
*dma
,
1499 struct musb_hw_ep
*hw_ep
,
1508 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1509 defined(CONFIG_USB_TI_CPPI41_DMA)
1510 /* Host side RX (IN) using Mentor DMA works as follows:
1512 - if queue was empty, ProgramEndpoint
1513 - first IN token is sent out (by setting ReqPkt)
1514 LinuxIsr -> RxReady()
1515 /\ => first packet is received
1516 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1517 | -> DMA Isr (transfer complete) -> RxReady()
1518 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1519 | - if urb not complete, send next IN token (ReqPkt)
1520 | | else complete urb.
1522 ---------------------------
1524 * Nuances of mode 1:
1525 * For short packets, no ack (+RxPktRdy) is sent automatically
1526 * (even if AutoClear is ON)
1527 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1528 * automatically => major problem, as collecting the next packet becomes
1529 * difficult. Hence mode 1 is not used.
1532 * All we care about at this driver level is that
1533 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1534 * (b) termination conditions are: short RX, or buffer full;
1535 * (c) fault modes include
1536 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1537 * (and that endpoint's dma queue stops immediately)
1538 * - overflow (full, PLUS more bytes in the terminal packet)
1540 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1541 * thus be a great candidate for using mode 1 ... for all but the
1542 * last packet of one URB's transfer.
1544 static int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1545 struct musb_hw_ep
*hw_ep
,
1550 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1551 void __iomem
*epio
= hw_ep
->regs
;
1558 if (usb_pipeisoc(pipe
)) {
1559 struct usb_iso_packet_descriptor
*d
;
1561 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1562 d
->actual_length
= len
;
1564 /* even if there was an error, we did the dma
1565 * for iso_frame_desc->length
1567 if (d
->status
!= -EILSEQ
&& d
->status
!= -EOVERFLOW
)
1570 if (++qh
->iso_idx
>= urb
->number_of_packets
) {
1573 /* REVISIT: Why ignore return value here? */
1574 if (musb_dma_cppi41(hw_ep
->musb
))
1575 done
= musb_rx_dma_iso_cppi41(dma
, hw_ep
, qh
,
1581 /* done if urb buffer is full or short packet is recd */
1582 done
= (urb
->actual_length
+ len
>=
1583 urb
->transfer_buffer_length
1584 || channel
->actual_len
< qh
->maxpacket
1585 || channel
->rx_packet_done
);
1588 /* send IN token for next packet, without AUTOREQ */
1590 val
= musb_readw(epio
, MUSB_RXCSR
);
1591 val
|= MUSB_RXCSR_H_REQPKT
;
1592 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1598 /* Disadvantage of using mode 1:
1599 * It's basically usable only for mass storage class; essentially all
1600 * other protocols also terminate transfers on short packets.
1603 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1604 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1605 * to use the extra IN token to grab the last packet using mode 0, then
1606 * the problem is that you cannot be sure when the device will send the
1607 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1608 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1609 * transfer, while sometimes it is recd just a little late so that if you
1610 * try to configure for mode 0 soon after the mode 1 transfer is
1611 * completed, you will find rxcount 0. Okay, so you might think why not
1612 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1614 static int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1615 struct musb_hw_ep
*hw_ep
,
1621 struct musb
*musb
= hw_ep
->musb
;
1622 void __iomem
*epio
= hw_ep
->regs
;
1623 struct dma_channel
*channel
= hw_ep
->rx_channel
;
1625 int length
, pipe
, done
;
1628 rx_count
= musb_readw(epio
, MUSB_RXCOUNT
);
1631 if (usb_pipeisoc(pipe
)) {
1633 struct usb_iso_packet_descriptor
*d
;
1635 d
= urb
->iso_frame_desc
+ qh
->iso_idx
;
1641 if (rx_count
> d
->length
) {
1642 if (d_status
== 0) {
1643 d_status
= -EOVERFLOW
;
1646 musb_dbg(musb
, "** OVERFLOW %d into %d",
1647 rx_count
, d
->length
);
1652 d
->status
= d_status
;
1653 buf
= urb
->transfer_dma
+ d
->offset
;
1656 buf
= urb
->transfer_dma
+ urb
->actual_length
;
1659 channel
->desired_mode
= 0;
1661 /* because of the issue below, mode 1 will
1662 * only rarely behave with correct semantics.
1664 if ((urb
->transfer_flags
& URB_SHORT_NOT_OK
)
1665 && (urb
->transfer_buffer_length
- urb
->actual_length
)
1667 channel
->desired_mode
= 1;
1668 if (rx_count
< hw_ep
->max_packet_sz_rx
) {
1670 channel
->desired_mode
= 0;
1672 length
= urb
->transfer_buffer_length
;
1676 /* See comments above on disadvantages of using mode 1 */
1677 val
= musb_readw(epio
, MUSB_RXCSR
);
1678 val
&= ~MUSB_RXCSR_H_REQPKT
;
1680 if (channel
->desired_mode
== 0)
1681 val
&= ~MUSB_RXCSR_H_AUTOREQ
;
1683 val
|= MUSB_RXCSR_H_AUTOREQ
;
1684 val
|= MUSB_RXCSR_DMAENAB
;
1686 /* autoclear shouldn't be set in high bandwidth */
1687 if (qh
->hb_mult
== 1)
1688 val
|= MUSB_RXCSR_AUTOCLEAR
;
1690 musb_writew(epio
, MUSB_RXCSR
, MUSB_RXCSR_H_WZC_BITS
| val
);
1692 /* REVISIT if when actual_length != 0,
1693 * transfer_buffer_length needs to be
1696 done
= dma
->channel_program(channel
, qh
->maxpacket
,
1697 channel
->desired_mode
,
1701 dma
->channel_release(channel
);
1702 hw_ep
->rx_channel
= NULL
;
1704 val
= musb_readw(epio
, MUSB_RXCSR
);
1705 val
&= ~(MUSB_RXCSR_DMAENAB
1706 | MUSB_RXCSR_H_AUTOREQ
1707 | MUSB_RXCSR_AUTOCLEAR
);
1708 musb_writew(epio
, MUSB_RXCSR
, val
);
1714 static inline int musb_rx_dma_inventra_cppi41(struct dma_controller
*dma
,
1715 struct musb_hw_ep
*hw_ep
,
1723 static inline int musb_rx_dma_in_inventra_cppi41(struct dma_controller
*dma
,
1724 struct musb_hw_ep
*hw_ep
,
1735 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1736 * and high-bandwidth IN transfer cases.
1738 void musb_host_rx(struct musb
*musb
, u8 epnum
)
1741 struct musb_hw_ep
*hw_ep
= musb
->endpoints
+ epnum
;
1742 struct dma_controller
*c
= musb
->dma_controller
;
1743 void __iomem
*epio
= hw_ep
->regs
;
1744 struct musb_qh
*qh
= hw_ep
->in_qh
;
1746 void __iomem
*mbase
= musb
->mregs
;
1748 bool iso_err
= false;
1751 struct dma_channel
*dma
;
1752 unsigned int sg_flags
= SG_MITER_ATOMIC
| SG_MITER_TO_SG
;
1754 musb_ep_select(mbase
, epnum
);
1757 dma
= is_dma_capable() ? hw_ep
->rx_channel
: NULL
;
1761 rx_csr
= musb_readw(epio
, MUSB_RXCSR
);
1764 if (unlikely(!urb
)) {
1765 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1766 * usbtest #11 (unlinks) triggers it regularly, sometimes
1767 * with fifo full. (Only with DMA??)
1769 musb_dbg(musb
, "BOGUS RX%d ready, csr %04x, count %d",
1770 epnum
, val
, musb_readw(epio
, MUSB_RXCOUNT
));
1771 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1775 trace_musb_urb_rx(musb
, urb
);
1777 /* check for errors, concurrent stall & unlink is not really
1779 if (rx_csr
& MUSB_RXCSR_H_RXSTALL
) {
1780 musb_dbg(musb
, "RX end %d STALL", epnum
);
1782 /* stall; record URB status */
1785 } else if (rx_csr
& MUSB_RXCSR_H_ERROR
) {
1786 musb_dbg(musb
, "end %d RX proto error", epnum
);
1789 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1791 rx_csr
&= ~MUSB_RXCSR_H_ERROR
;
1792 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1794 } else if (rx_csr
& MUSB_RXCSR_DATAERROR
) {
1796 if (USB_ENDPOINT_XFER_ISOC
!= qh
->type
) {
1797 musb_dbg(musb
, "RX end %d NAK timeout", epnum
);
1799 /* NOTE: NAKing is *NOT* an error, so we want to
1800 * continue. Except ... if there's a request for
1801 * another QH, use that instead of starving it.
1803 * Devices like Ethernet and serial adapters keep
1804 * reads posted at all times, which will starve
1805 * other devices without this logic.
1807 if (usb_pipebulk(urb
->pipe
)
1809 && !list_is_singular(&musb
->in_bulk
)) {
1810 musb_bulk_nak_timeout(musb
, hw_ep
, 1);
1813 musb_ep_select(mbase
, epnum
);
1814 rx_csr
|= MUSB_RXCSR_H_WZC_BITS
;
1815 rx_csr
&= ~MUSB_RXCSR_DATAERROR
;
1816 musb_writew(epio
, MUSB_RXCSR
, rx_csr
);
1820 musb_dbg(musb
, "RX end %d ISO data error", epnum
);
1821 /* packet error reported later */
1824 } else if (rx_csr
& MUSB_RXCSR_INCOMPRX
) {
1825 musb_dbg(musb
, "end %d high bandwidth incomplete ISO packet RX",
1830 /* faults abort the transfer */
1832 /* clean up dma and collect transfer count */
1833 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1834 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1835 musb
->dma_controller
->channel_abort(dma
);
1836 xfer_len
= dma
->actual_len
;
1838 musb_h_flush_rxfifo(hw_ep
, MUSB_RXCSR_CLRDATATOG
);
1839 musb_writeb(epio
, MUSB_RXINTERVAL
, 0);
1844 if (unlikely(dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
)) {
1845 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1846 ERR("RX%d dma busy, csr %04x\n", epnum
, rx_csr
);
1850 /* thorough shutdown for now ... given more precise fault handling
1851 * and better queueing support, we might keep a DMA pipeline going
1852 * while processing this irq for earlier completions.
1855 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1856 if (!musb_dma_inventra(musb
) && !musb_dma_ux500(musb
) &&
1857 (rx_csr
& MUSB_RXCSR_H_REQPKT
)) {
1858 /* REVISIT this happened for a while on some short reads...
1859 * the cleanup still needs investigation... looks bad...
1860 * and also duplicates dma cleanup code above ... plus,
1861 * shouldn't this be the "half full" double buffer case?
1863 if (dma_channel_status(dma
) == MUSB_DMA_STATUS_BUSY
) {
1864 dma
->status
= MUSB_DMA_STATUS_CORE_ABORT
;
1865 musb
->dma_controller
->channel_abort(dma
);
1866 xfer_len
= dma
->actual_len
;
1870 musb_dbg(musb
, "RXCSR%d %04x, reqpkt, len %zu%s", epnum
, rx_csr
,
1871 xfer_len
, dma
? ", dma" : "");
1872 rx_csr
&= ~MUSB_RXCSR_H_REQPKT
;
1874 musb_ep_select(mbase
, epnum
);
1875 musb_writew(epio
, MUSB_RXCSR
,
1876 MUSB_RXCSR_H_WZC_BITS
| rx_csr
);
1879 if (dma
&& (rx_csr
& MUSB_RXCSR_DMAENAB
)) {
1880 xfer_len
= dma
->actual_len
;
1882 val
&= ~(MUSB_RXCSR_DMAENAB
1883 | MUSB_RXCSR_H_AUTOREQ
1884 | MUSB_RXCSR_AUTOCLEAR
1885 | MUSB_RXCSR_RXPKTRDY
);
1886 musb_writew(hw_ep
->regs
, MUSB_RXCSR
, val
);
1888 if (musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
1889 musb_dma_cppi41(musb
)) {
1890 done
= musb_rx_dma_inventra_cppi41(c
, hw_ep
, qh
, urb
, xfer_len
);
1891 musb_dbg(hw_ep
->musb
,
1892 "ep %d dma %s, rxcsr %04x, rxcount %d",
1893 epnum
, done
? "off" : "reset",
1894 musb_readw(epio
, MUSB_RXCSR
),
1895 musb_readw(epio
, MUSB_RXCOUNT
));
1900 } else if (urb
->status
== -EINPROGRESS
) {
1901 /* if no errors, be sure a packet is ready for unloading */
1902 if (unlikely(!(rx_csr
& MUSB_RXCSR_RXPKTRDY
))) {
1904 ERR("Rx interrupt with no errors or packet!\n");
1906 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1909 /* do the proper sequence to abort the transfer */
1910 musb_ep_select(mbase
, epnum
);
1911 val
&= ~MUSB_RXCSR_H_REQPKT
;
1912 musb_writew(epio
, MUSB_RXCSR
, val
);
1916 /* we are expecting IN packets */
1917 if ((musb_dma_inventra(musb
) || musb_dma_ux500(musb
) ||
1918 musb_dma_cppi41(musb
)) && dma
) {
1919 musb_dbg(hw_ep
->musb
,
1920 "RX%d count %d, buffer 0x%llx len %d/%d",
1921 epnum
, musb_readw(epio
, MUSB_RXCOUNT
),
1922 (unsigned long long) urb
->transfer_dma
1923 + urb
->actual_length
,
1925 urb
->transfer_buffer_length
);
1927 if (musb_rx_dma_in_inventra_cppi41(c
, hw_ep
, qh
, urb
,
1931 dev_err(musb
->controller
, "error: rx_dma failed\n");
1935 unsigned int received_len
;
1937 /* Unmap the buffer so that CPU can use it */
1938 usb_hcd_unmap_urb_for_dma(musb
->hcd
, urb
);
1941 * We need to map sg if the transfer_buffer is
1944 if (!urb
->transfer_buffer
) {
1946 sg_miter_start(&qh
->sg_miter
, urb
->sg
, 1,
1951 if (!sg_miter_next(&qh
->sg_miter
)) {
1952 dev_err(musb
->controller
, "error: sg list empty\n");
1953 sg_miter_stop(&qh
->sg_miter
);
1958 urb
->transfer_buffer
= qh
->sg_miter
.addr
;
1959 received_len
= urb
->actual_length
;
1961 done
= musb_host_packet_rx(musb
, urb
, epnum
,
1963 /* Calculate the number of bytes received */
1964 received_len
= urb
->actual_length
-
1966 qh
->sg_miter
.consumed
= received_len
;
1967 sg_miter_stop(&qh
->sg_miter
);
1969 done
= musb_host_packet_rx(musb
, urb
,
1972 musb_dbg(musb
, "read %spacket", done
? "last " : "");
1977 urb
->actual_length
+= xfer_len
;
1978 qh
->offset
+= xfer_len
;
1983 if (urb
->status
== -EINPROGRESS
)
1984 urb
->status
= status
;
1985 musb_advance_schedule(musb
, urb
, hw_ep
, USB_DIR_IN
);
1989 /* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
1990 * the software schedule associates multiple such nodes with a given
1991 * host side hardware endpoint + direction; scheduling may activate
1992 * that hardware endpoint.
1994 static int musb_schedule(
2001 int best_end
, epnum
;
2002 struct musb_hw_ep
*hw_ep
= NULL
;
2003 struct list_head
*head
= NULL
;
2006 struct urb
*urb
= next_urb(qh
);
2008 /* use fixed hardware for control and bulk */
2009 if (qh
->type
== USB_ENDPOINT_XFER_CONTROL
) {
2010 head
= &musb
->control
;
2011 hw_ep
= musb
->control_ep
;
2015 /* else, periodic transfers get muxed to other endpoints */
2018 * We know this qh hasn't been scheduled, so all we need to do
2019 * is choose which hardware endpoint to put it on ...
2021 * REVISIT what we really want here is a regular schedule tree
2022 * like e.g. OHCI uses.
2027 for (epnum
= 1, hw_ep
= musb
->endpoints
+ 1;
2028 epnum
< musb
->nr_endpoints
;
2032 if (musb_ep_get_qh(hw_ep
, is_in
) != NULL
)
2035 if (hw_ep
== musb
->bulk_ep
)
2039 diff
= hw_ep
->max_packet_sz_rx
;
2041 diff
= hw_ep
->max_packet_sz_tx
;
2042 diff
-= (qh
->maxpacket
* qh
->hb_mult
);
2044 if (diff
>= 0 && best_diff
> diff
) {
2047 * Mentor controller has a bug in that if we schedule
2048 * a BULK Tx transfer on an endpoint that had earlier
2049 * handled ISOC then the BULK transfer has to start on
2050 * a zero toggle. If the BULK transfer starts on a 1
2051 * toggle then this transfer will fail as the mentor
2052 * controller starts the Bulk transfer on a 0 toggle
2053 * irrespective of the programming of the toggle bits
2054 * in the TXCSR register. Check for this condition
2055 * while allocating the EP for a Tx Bulk transfer. If
2058 hw_ep
= musb
->endpoints
+ epnum
;
2059 toggle
= usb_gettoggle(urb
->dev
, qh
->epnum
, !is_in
);
2060 txtype
= (musb_readb(hw_ep
->regs
, MUSB_TXTYPE
)
2062 if (!is_in
&& (qh
->type
== USB_ENDPOINT_XFER_BULK
) &&
2063 toggle
&& (txtype
== USB_ENDPOINT_XFER_ISOC
))
2070 /* use bulk reserved ep1 if no other ep is free */
2071 if (best_end
< 0 && qh
->type
== USB_ENDPOINT_XFER_BULK
) {
2072 hw_ep
= musb
->bulk_ep
;
2074 head
= &musb
->in_bulk
;
2076 head
= &musb
->out_bulk
;
2078 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
2079 * multiplexed. This scheme does not work in high speed to full
2080 * speed scenario as NAK interrupts are not coming from a
2081 * full speed device connected to a high speed device.
2082 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2083 * 4 (8 frame or 8ms) for FS device.
2087 (USB_SPEED_HIGH
== qh
->dev
->speed
) ? 8 : 4;
2089 } else if (best_end
< 0) {
2090 dev_err(musb
->controller
,
2091 "%s hwep alloc failed for %dx%d\n",
2092 musb_ep_xfertype_string(qh
->type
),
2093 qh
->hb_mult
, qh
->maxpacket
);
2099 hw_ep
= musb
->endpoints
+ best_end
;
2100 musb_dbg(musb
, "qh %p periodic slot %d", qh
, best_end
);
2103 idle
= list_empty(head
);
2104 list_add_tail(&qh
->ring
, head
);
2108 qh
->hep
->hcpriv
= qh
;
2110 musb_start_urb(musb
, is_in
, qh
);
2114 static int musb_urb_enqueue(
2115 struct usb_hcd
*hcd
,
2119 unsigned long flags
;
2120 struct musb
*musb
= hcd_to_musb(hcd
);
2121 struct usb_host_endpoint
*hep
= urb
->ep
;
2123 struct usb_endpoint_descriptor
*epd
= &hep
->desc
;
2128 /* host role must be active */
2129 if (!is_host_active(musb
) || !musb
->is_active
)
2132 trace_musb_urb_enq(musb
, urb
);
2134 spin_lock_irqsave(&musb
->lock
, flags
);
2135 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
2136 qh
= ret
? NULL
: hep
->hcpriv
;
2139 spin_unlock_irqrestore(&musb
->lock
, flags
);
2141 /* DMA mapping was already done, if needed, and this urb is on
2142 * hep->urb_list now ... so we're done, unless hep wasn't yet
2143 * scheduled onto a live qh.
2145 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2146 * disabled, testing for empty qh->ring and avoiding qh setup costs
2147 * except for the first urb queued after a config change.
2152 /* Allocate and initialize qh, minimizing the work done each time
2153 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2155 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2156 * for bugs in other kernel code to break this driver...
2158 qh
= kzalloc(sizeof *qh
, mem_flags
);
2160 spin_lock_irqsave(&musb
->lock
, flags
);
2161 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2162 spin_unlock_irqrestore(&musb
->lock
, flags
);
2168 INIT_LIST_HEAD(&qh
->ring
);
2171 qh
->maxpacket
= usb_endpoint_maxp(epd
);
2172 qh
->type
= usb_endpoint_type(epd
);
2174 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2175 * Some musb cores don't support high bandwidth ISO transfers; and
2176 * we don't (yet!) support high bandwidth interrupt transfers.
2178 qh
->hb_mult
= usb_endpoint_maxp_mult(epd
);
2179 if (qh
->hb_mult
> 1) {
2180 int ok
= (qh
->type
== USB_ENDPOINT_XFER_ISOC
);
2183 ok
= (usb_pipein(urb
->pipe
) && musb
->hb_iso_rx
)
2184 || (usb_pipeout(urb
->pipe
) && musb
->hb_iso_tx
);
2186 dev_err(musb
->controller
,
2187 "high bandwidth %s (%dx%d) not supported\n",
2188 musb_ep_xfertype_string(qh
->type
),
2189 qh
->hb_mult
, qh
->maxpacket
& 0x7ff);
2193 qh
->maxpacket
&= 0x7ff;
2196 qh
->epnum
= usb_endpoint_num(epd
);
2198 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2199 qh
->addr_reg
= (u8
) usb_pipedevice(urb
->pipe
);
2201 /* precompute rxtype/txtype/type0 register */
2202 type_reg
= (qh
->type
<< 4) | qh
->epnum
;
2203 switch (urb
->dev
->speed
) {
2207 case USB_SPEED_FULL
:
2213 qh
->type_reg
= type_reg
;
2215 /* Precompute RXINTERVAL/TXINTERVAL register */
2217 case USB_ENDPOINT_XFER_INT
:
2219 * Full/low speeds use the linear encoding,
2220 * high speed uses the logarithmic encoding.
2222 if (urb
->dev
->speed
<= USB_SPEED_FULL
) {
2223 interval
= max_t(u8
, epd
->bInterval
, 1);
2227 case USB_ENDPOINT_XFER_ISOC
:
2228 /* ISO always uses logarithmic encoding */
2229 interval
= min_t(u8
, epd
->bInterval
, 16);
2232 /* REVISIT we actually want to use NAK limits, hinting to the
2233 * transfer scheduling logic to try some other qh, e.g. try
2236 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2238 * The downside of disabling this is that transfer scheduling
2239 * gets VERY unfair for nonperiodic transfers; a misbehaving
2240 * peripheral could make that hurt. That's perfectly normal
2241 * for reads from network or serial adapters ... so we have
2242 * partial NAKlimit support for bulk RX.
2244 * The upside of disabling it is simpler transfer scheduling.
2248 qh
->intv_reg
= interval
;
2250 /* precompute addressing for external hub/tt ports */
2251 if (musb
->is_multipoint
) {
2252 struct usb_device
*parent
= urb
->dev
->parent
;
2254 if (parent
!= hcd
->self
.root_hub
) {
2255 qh
->h_addr_reg
= (u8
) parent
->devnum
;
2257 /* set up tt info if needed */
2259 qh
->h_port_reg
= (u8
) urb
->dev
->ttport
;
2260 if (urb
->dev
->tt
->hub
)
2262 (u8
) urb
->dev
->tt
->hub
->devnum
;
2263 if (urb
->dev
->tt
->multi
)
2264 qh
->h_addr_reg
|= 0x80;
2269 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2270 * until we get real dma queues (with an entry for each urb/buffer),
2271 * we only have work to do in the former case.
2273 spin_lock_irqsave(&musb
->lock
, flags
);
2274 if (hep
->hcpriv
|| !next_urb(qh
)) {
2275 /* some concurrent activity submitted another urb to hep...
2276 * odd, rare, error prone, but legal.
2282 ret
= musb_schedule(musb
, qh
,
2283 epd
->bEndpointAddress
& USB_ENDPOINT_DIR_MASK
);
2287 /* FIXME set urb->start_frame for iso/intr, it's tested in
2288 * musb_start_urb(), but otherwise only konicawc cares ...
2291 spin_unlock_irqrestore(&musb
->lock
, flags
);
2295 spin_lock_irqsave(&musb
->lock
, flags
);
2296 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
2297 spin_unlock_irqrestore(&musb
->lock
, flags
);
2305 * abort a transfer that's at the head of a hardware queue.
2306 * called with controller locked, irqs blocked
2307 * that hardware queue advances to the next transfer, unless prevented
2309 static int musb_cleanup_urb(struct urb
*urb
, struct musb_qh
*qh
)
2311 struct musb_hw_ep
*ep
= qh
->hw_ep
;
2312 struct musb
*musb
= ep
->musb
;
2313 void __iomem
*epio
= ep
->regs
;
2314 unsigned hw_end
= ep
->epnum
;
2315 void __iomem
*regs
= ep
->musb
->mregs
;
2316 int is_in
= usb_pipein(urb
->pipe
);
2319 struct dma_channel
*dma
= NULL
;
2321 musb_ep_select(regs
, hw_end
);
2323 if (is_dma_capable()) {
2324 dma
= is_in
? ep
->rx_channel
: ep
->tx_channel
;
2326 status
= ep
->musb
->dma_controller
->channel_abort(dma
);
2327 musb_dbg(musb
, "abort %cX%d DMA for urb %p --> %d",
2328 is_in
? 'R' : 'T', ep
->epnum
,
2330 urb
->actual_length
+= dma
->actual_len
;
2334 /* turn off DMA requests, discard state, stop polling ... */
2335 if (ep
->epnum
&& is_in
) {
2336 /* giveback saves bulk toggle */
2337 csr
= musb_h_flush_rxfifo(ep
, 0);
2339 /* clear the endpoint's irq status here to avoid bogus irqs */
2340 if (is_dma_capable() && dma
)
2341 musb_platform_clear_ep_rxintr(musb
, ep
->epnum
);
2342 } else if (ep
->epnum
) {
2343 musb_h_tx_flush_fifo(ep
);
2344 csr
= musb_readw(epio
, MUSB_TXCSR
);
2345 csr
&= ~(MUSB_TXCSR_AUTOSET
2346 | MUSB_TXCSR_DMAENAB
2347 | MUSB_TXCSR_H_RXSTALL
2348 | MUSB_TXCSR_H_NAKTIMEOUT
2349 | MUSB_TXCSR_H_ERROR
2350 | MUSB_TXCSR_TXPKTRDY
);
2351 musb_writew(epio
, MUSB_TXCSR
, csr
);
2352 /* REVISIT may need to clear FLUSHFIFO ... */
2353 musb_writew(epio
, MUSB_TXCSR
, csr
);
2354 /* flush cpu writebuffer */
2355 csr
= musb_readw(epio
, MUSB_TXCSR
);
2357 musb_h_ep0_flush_fifo(ep
);
2360 musb_advance_schedule(ep
->musb
, urb
, ep
, is_in
);
2364 static int musb_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
)
2366 struct musb
*musb
= hcd_to_musb(hcd
);
2368 unsigned long flags
;
2369 int is_in
= usb_pipein(urb
->pipe
);
2372 trace_musb_urb_deq(musb
, urb
);
2374 spin_lock_irqsave(&musb
->lock
, flags
);
2375 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
2384 * Any URB not actively programmed into endpoint hardware can be
2385 * immediately given back; that's any URB not at the head of an
2386 * endpoint queue, unless someday we get real DMA queues. And even
2387 * if it's at the head, it might not be known to the hardware...
2389 * Otherwise abort current transfer, pending DMA, etc.; urb->status
2390 * has already been updated. This is a synchronous abort; it'd be
2391 * OK to hold off until after some IRQ, though.
2393 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
2396 || urb
->urb_list
.prev
!= &qh
->hep
->urb_list
2397 || musb_ep_get_qh(qh
->hw_ep
, is_in
) != qh
) {
2398 int ready
= qh
->is_ready
;
2401 musb_giveback(musb
, urb
, 0);
2402 qh
->is_ready
= ready
;
2404 /* If nothing else (usually musb_giveback) is using it
2405 * and its URB list has emptied, recycle this qh.
2407 if (ready
&& list_empty(&qh
->hep
->urb_list
)) {
2408 qh
->hep
->hcpriv
= NULL
;
2409 list_del(&qh
->ring
);
2413 ret
= musb_cleanup_urb(urb
, qh
);
2415 spin_unlock_irqrestore(&musb
->lock
, flags
);
2419 /* disable an endpoint */
2421 musb_h_disable(struct usb_hcd
*hcd
, struct usb_host_endpoint
*hep
)
2423 u8 is_in
= hep
->desc
.bEndpointAddress
& USB_DIR_IN
;
2424 unsigned long flags
;
2425 struct musb
*musb
= hcd_to_musb(hcd
);
2429 spin_lock_irqsave(&musb
->lock
, flags
);
2435 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
2437 /* Kick the first URB off the hardware, if needed */
2439 if (musb_ep_get_qh(qh
->hw_ep
, is_in
) == qh
) {
2442 /* make software (then hardware) stop ASAP */
2444 urb
->status
= -ESHUTDOWN
;
2447 musb_cleanup_urb(urb
, qh
);
2449 /* Then nuke all the others ... and advance the
2450 * queue on hw_ep (e.g. bulk ring) when we're done.
2452 while (!list_empty(&hep
->urb_list
)) {
2454 urb
->status
= -ESHUTDOWN
;
2455 musb_advance_schedule(musb
, urb
, qh
->hw_ep
, is_in
);
2458 /* Just empty the queue; the hardware is busy with
2459 * other transfers, and since !qh->is_ready nothing
2460 * will activate any of these as it advances.
2462 while (!list_empty(&hep
->urb_list
))
2463 musb_giveback(musb
, next_urb(qh
), -ESHUTDOWN
);
2466 list_del(&qh
->ring
);
2470 spin_unlock_irqrestore(&musb
->lock
, flags
);
2473 static int musb_h_get_frame_number(struct usb_hcd
*hcd
)
2475 struct musb
*musb
= hcd_to_musb(hcd
);
2477 return musb_readw(musb
->mregs
, MUSB_FRAME
);
2480 static int musb_h_start(struct usb_hcd
*hcd
)
2482 struct musb
*musb
= hcd_to_musb(hcd
);
2484 /* NOTE: musb_start() is called when the hub driver turns
2485 * on port power, or when (OTG) peripheral starts.
2487 hcd
->state
= HC_STATE_RUNNING
;
2488 musb
->port1_status
= 0;
2492 static void musb_h_stop(struct usb_hcd
*hcd
)
2494 musb_stop(hcd_to_musb(hcd
));
2495 hcd
->state
= HC_STATE_HALT
;
2498 static int musb_bus_suspend(struct usb_hcd
*hcd
)
2500 struct musb
*musb
= hcd_to_musb(hcd
);
2504 ret
= musb_port_suspend(musb
, true);
2508 if (!is_host_active(musb
))
2511 switch (musb
->xceiv
->otg
->state
) {
2512 case OTG_STATE_A_SUSPEND
:
2514 case OTG_STATE_A_WAIT_VRISE
:
2515 /* ID could be grounded even if there's no device
2516 * on the other end of the cable. NOTE that the
2517 * A_WAIT_VRISE timers are messy with MUSB...
2519 devctl
= musb_readb(musb
->mregs
, MUSB_DEVCTL
);
2520 if ((devctl
& MUSB_DEVCTL_VBUS
) == MUSB_DEVCTL_VBUS
)
2521 musb
->xceiv
->otg
->state
= OTG_STATE_A_WAIT_BCON
;
2527 if (musb
->is_active
) {
2528 WARNING("trying to suspend as %s while active\n",
2529 usb_otg_state_string(musb
->xceiv
->otg
->state
));
2535 static int musb_bus_resume(struct usb_hcd
*hcd
)
2537 struct musb
*musb
= hcd_to_musb(hcd
);
2540 musb
->config
->host_port_deassert_reset_at_resume
)
2541 musb_port_reset(musb
, false);
2546 #ifndef CONFIG_MUSB_PIO_ONLY
2548 #define MUSB_USB_DMA_ALIGN 4
2550 struct musb_temp_buffer
{
2552 void *old_xfer_buffer
;
2556 static void musb_free_temp_buffer(struct urb
*urb
)
2558 enum dma_data_direction dir
;
2559 struct musb_temp_buffer
*temp
;
2562 if (!(urb
->transfer_flags
& URB_ALIGNED_TEMP_BUFFER
))
2565 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2567 temp
= container_of(urb
->transfer_buffer
, struct musb_temp_buffer
,
2570 if (dir
== DMA_FROM_DEVICE
) {
2571 if (usb_pipeisoc(urb
->pipe
))
2572 length
= urb
->transfer_buffer_length
;
2574 length
= urb
->actual_length
;
2576 memcpy(temp
->old_xfer_buffer
, temp
->data
, length
);
2578 urb
->transfer_buffer
= temp
->old_xfer_buffer
;
2579 kfree(temp
->kmalloc_ptr
);
2581 urb
->transfer_flags
&= ~URB_ALIGNED_TEMP_BUFFER
;
2584 static int musb_alloc_temp_buffer(struct urb
*urb
, gfp_t mem_flags
)
2586 enum dma_data_direction dir
;
2587 struct musb_temp_buffer
*temp
;
2589 size_t kmalloc_size
;
2591 if (urb
->num_sgs
|| urb
->sg
||
2592 urb
->transfer_buffer_length
== 0 ||
2593 !((uintptr_t)urb
->transfer_buffer
& (MUSB_USB_DMA_ALIGN
- 1)))
2596 dir
= usb_urb_dir_in(urb
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
2598 /* Allocate a buffer with enough padding for alignment */
2599 kmalloc_size
= urb
->transfer_buffer_length
+
2600 sizeof(struct musb_temp_buffer
) + MUSB_USB_DMA_ALIGN
- 1;
2602 kmalloc_ptr
= kmalloc(kmalloc_size
, mem_flags
);
2606 /* Position our struct temp_buffer such that data is aligned */
2607 temp
= PTR_ALIGN(kmalloc_ptr
, MUSB_USB_DMA_ALIGN
);
2610 temp
->kmalloc_ptr
= kmalloc_ptr
;
2611 temp
->old_xfer_buffer
= urb
->transfer_buffer
;
2612 if (dir
== DMA_TO_DEVICE
)
2613 memcpy(temp
->data
, urb
->transfer_buffer
,
2614 urb
->transfer_buffer_length
);
2615 urb
->transfer_buffer
= temp
->data
;
2617 urb
->transfer_flags
|= URB_ALIGNED_TEMP_BUFFER
;
2622 static int musb_map_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
,
2625 struct musb
*musb
= hcd_to_musb(hcd
);
2629 * The DMA engine in RTL1.8 and above cannot handle
2630 * DMA addresses that are not aligned to a 4 byte boundary.
2631 * For such engine implemented (un)map_urb_for_dma hooks.
2632 * Do not use these hooks for RTL<1.8
2634 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2635 return usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2637 ret
= musb_alloc_temp_buffer(urb
, mem_flags
);
2641 ret
= usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
2643 musb_free_temp_buffer(urb
);
2648 static void musb_unmap_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
)
2650 struct musb
*musb
= hcd_to_musb(hcd
);
2652 usb_hcd_unmap_urb_for_dma(hcd
, urb
);
2654 /* Do not use this hook for RTL<1.8 (see description above) */
2655 if (musb
->hwvers
< MUSB_HWVERS_1800
)
2658 musb_free_temp_buffer(urb
);
2660 #endif /* !CONFIG_MUSB_PIO_ONLY */
2662 static const struct hc_driver musb_hc_driver
= {
2663 .description
= "musb-hcd",
2664 .product_desc
= "MUSB HDRC host driver",
2665 .hcd_priv_size
= sizeof(struct musb
*),
2666 .flags
= HCD_USB2
| HCD_DMA
| HCD_MEMORY
,
2668 /* not using irq handler or reset hooks from usbcore, since
2669 * those must be shared with peripheral code for OTG configs
2672 .start
= musb_h_start
,
2673 .stop
= musb_h_stop
,
2675 .get_frame_number
= musb_h_get_frame_number
,
2677 .urb_enqueue
= musb_urb_enqueue
,
2678 .urb_dequeue
= musb_urb_dequeue
,
2679 .endpoint_disable
= musb_h_disable
,
2681 #ifndef CONFIG_MUSB_PIO_ONLY
2682 .map_urb_for_dma
= musb_map_urb_for_dma
,
2683 .unmap_urb_for_dma
= musb_unmap_urb_for_dma
,
2686 .hub_status_data
= musb_hub_status_data
,
2687 .hub_control
= musb_hub_control
,
2688 .bus_suspend
= musb_bus_suspend
,
2689 .bus_resume
= musb_bus_resume
,
2690 /* .start_port_reset = NULL, */
2691 /* .hub_irq_enable = NULL, */
2694 int musb_host_alloc(struct musb
*musb
)
2696 struct device
*dev
= musb
->controller
;
2698 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
2699 musb
->hcd
= usb_create_hcd(&musb_hc_driver
, dev
, dev_name(dev
));
2703 *musb
->hcd
->hcd_priv
= (unsigned long) musb
;
2704 musb
->hcd
->self
.uses_pio_for_control
= 1;
2705 musb
->hcd
->uses_new_polling
= 1;
2706 musb
->hcd
->has_tt
= 1;
2711 void musb_host_cleanup(struct musb
*musb
)
2713 if (musb
->port_mode
== MUSB_PERIPHERAL
)
2715 usb_remove_hcd(musb
->hcd
);
2718 void musb_host_free(struct musb
*musb
)
2720 usb_put_hcd(musb
->hcd
);
2723 int musb_host_setup(struct musb
*musb
, int power_budget
)
2726 struct usb_hcd
*hcd
= musb
->hcd
;
2728 if (musb
->port_mode
== MUSB_HOST
) {
2729 MUSB_HST_MODE(musb
);
2730 musb
->xceiv
->otg
->state
= OTG_STATE_A_IDLE
;
2732 otg_set_host(musb
->xceiv
->otg
, &hcd
->self
);
2733 /* don't support otg protocols */
2734 hcd
->self
.otg_port
= 0;
2735 musb
->xceiv
->otg
->host
= &hcd
->self
;
2736 hcd
->power_budget
= 2 * (power_budget
? : 250);
2737 hcd
->skip_phy_initialization
= 1;
2739 ret
= usb_add_hcd(hcd
, 0, 0);
2743 device_wakeup_enable(hcd
->self
.controller
);
2747 void musb_host_resume_root_hub(struct musb
*musb
)
2749 usb_hcd_resume_root_hub(musb
->hcd
);
2752 void musb_host_poke_root_hub(struct musb
*musb
)
2754 MUSB_HST_MODE(musb
);
2755 if (musb
->hcd
->status_urb
)
2756 usb_hcd_poll_rh_status(musb
->hcd
);
2758 usb_hcd_resume_root_hub(musb
->hcd
);