bpf: Prevent memory disambiguation attack
[linux/fpc-iii.git] / drivers / usb / musb / musb_host.c
blob0ee0c6d7f194b08c4b4f91e793bdf9dd8b451e69
1 // SPDX-License-Identifier: GPL-2.0
2 /*
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>
9 */
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
65 * benefit from it.)
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;
90 u16 csr;
91 int retries = 1000;
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
105 * host port.
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",
115 ep->epnum, csr))
116 return;
117 mdelay(1);
121 static void musb_h_ep0_flush_fifo(struct musb_hw_ep *ep)
123 void __iomem *epio = ep->regs;
124 u16 csr;
125 int retries = 5;
127 /* scrub any data left in the fifo */
128 do {
129 csr = musb_readw(epio, MUSB_TXCSR);
130 if (!(csr & (MUSB_CSR0_TXPKTRDY | MUSB_CSR0_RXPKTRDY)))
131 break;
132 musb_writew(epio, MUSB_TXCSR, MUSB_CSR0_FLUSHFIFO);
133 csr = musb_readw(epio, MUSB_TXCSR);
134 udelay(10);
135 } while (--retries);
137 WARN(!retries, "Could not flush host TX%d fifo: csr: %04x\n",
138 ep->epnum, csr);
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)
150 u16 txcsr;
152 /* NOTE: no locks here; caller should lock and select EP */
153 if (ep->epnum) {
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);
157 } else {
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)
166 u16 txcsr;
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)
179 ep->in_qh = qh;
180 if (is_in == 0 || ep->is_shared_fifo)
181 ep->out_qh = qh;
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
195 static void
196 musb_start_urb(struct musb *musb, int is_in, struct musb_qh *qh)
198 u32 len;
199 void __iomem *mbase = musb->mregs;
200 struct urb *urb = next_urb(qh);
201 void *buf = urb->transfer_buffer;
202 u32 offset = 0;
203 struct musb_hw_ep *hw_ep = qh->hw_ep;
204 int epnum = hw_ep->epnum;
206 /* initialize software qh state */
207 qh->offset = 0;
208 qh->segsize = 0;
210 /* gather right source of data */
211 switch (qh->type) {
212 case USB_ENDPOINT_XFER_CONTROL:
213 /* control transfers always start with SETUP */
214 is_in = 0;
215 musb->ep0_stage = MUSB_EP0_START;
216 buf = urb->setup_packet;
217 len = 8;
218 break;
219 case USB_ENDPOINT_XFER_ISOC:
220 qh->iso_idx = 0;
221 qh->frame = 0;
222 offset = urb->iso_frame_desc[0].offset;
223 len = urb->iso_frame_desc[0].length;
224 break;
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 */
238 if (is_in)
239 return;
241 /* determine if the time is right for a periodic transfer */
242 switch (qh->type) {
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...
253 qh->frame = 0;
254 goto start;
255 } else {
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);
261 #endif
263 break;
264 default:
265 start:
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);
289 /* For bulk/interrupt endpoints only */
290 static inline void musb_save_toggle(struct musb_qh *qh, int is_in,
291 struct urb *urb)
293 void __iomem *epio = qh->hw_ep->regs;
294 u16 csr;
297 * FIXME: the current Mentor DMA code seems to have
298 * problems getting toggle correct.
301 if (is_in)
302 csr = musb_readw(epio, MUSB_RXCSR) & MUSB_RXCSR_H_DATATOGGLE;
303 else
304 csr = musb_readw(epio, MUSB_TXCSR) & MUSB_TXCSR_H_DATATOGGLE;
306 usb_settoggle(urb->dev, qh->epnum, !is_in, csr ? 1 : 0);
310 * Advance this hardware endpoint's queue, completing the specified URB and
311 * advancing to either the next URB queued to that qh, or else invalidating
312 * that qh and advancing to the next qh scheduled after the current one.
314 * Context: caller owns controller lock, IRQs are blocked
316 static void musb_advance_schedule(struct musb *musb, struct urb *urb,
317 struct musb_hw_ep *hw_ep, int is_in)
319 struct musb_qh *qh = musb_ep_get_qh(hw_ep, is_in);
320 struct musb_hw_ep *ep = qh->hw_ep;
321 int ready = qh->is_ready;
322 int status;
324 status = (urb->status == -EINPROGRESS) ? 0 : urb->status;
326 /* save toggle eagerly, for paranoia */
327 switch (qh->type) {
328 case USB_ENDPOINT_XFER_BULK:
329 case USB_ENDPOINT_XFER_INT:
330 musb_save_toggle(qh, is_in, urb);
331 break;
332 case USB_ENDPOINT_XFER_ISOC:
333 if (status == 0 && urb->error_count)
334 status = -EXDEV;
335 break;
338 qh->is_ready = 0;
339 musb_giveback(musb, urb, status);
340 qh->is_ready = ready;
342 /* reclaim resources (and bandwidth) ASAP; deschedule it, and
343 * invalidate qh as soon as list_empty(&hep->urb_list)
345 if (list_empty(&qh->hep->urb_list)) {
346 struct list_head *head;
347 struct dma_controller *dma = musb->dma_controller;
349 if (is_in) {
350 ep->rx_reinit = 1;
351 if (ep->rx_channel) {
352 dma->channel_release(ep->rx_channel);
353 ep->rx_channel = NULL;
355 } else {
356 ep->tx_reinit = 1;
357 if (ep->tx_channel) {
358 dma->channel_release(ep->tx_channel);
359 ep->tx_channel = NULL;
363 /* Clobber old pointers to this qh */
364 musb_ep_set_qh(ep, is_in, NULL);
365 qh->hep->hcpriv = NULL;
367 switch (qh->type) {
369 case USB_ENDPOINT_XFER_CONTROL:
370 case USB_ENDPOINT_XFER_BULK:
371 /* fifo policy for these lists, except that NAKing
372 * should rotate a qh to the end (for fairness).
374 if (qh->mux == 1) {
375 head = qh->ring.prev;
376 list_del(&qh->ring);
377 kfree(qh);
378 qh = first_qh(head);
379 break;
382 case USB_ENDPOINT_XFER_ISOC:
383 case USB_ENDPOINT_XFER_INT:
384 /* this is where periodic bandwidth should be
385 * de-allocated if it's tracked and allocated;
386 * and where we'd update the schedule tree...
388 kfree(qh);
389 qh = NULL;
390 break;
394 if (qh != NULL && qh->is_ready) {
395 musb_dbg(musb, "... next ep%d %cX urb %p",
396 hw_ep->epnum, is_in ? 'R' : 'T', next_urb(qh));
397 musb_start_urb(musb, is_in, qh);
401 static u16 musb_h_flush_rxfifo(struct musb_hw_ep *hw_ep, u16 csr)
403 /* we don't want fifo to fill itself again;
404 * ignore dma (various models),
405 * leave toggle alone (may not have been saved yet)
407 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_RXPKTRDY;
408 csr &= ~(MUSB_RXCSR_H_REQPKT
409 | MUSB_RXCSR_H_AUTOREQ
410 | MUSB_RXCSR_AUTOCLEAR);
412 /* write 2x to allow double buffering */
413 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
414 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
416 /* flush writebuffer */
417 return musb_readw(hw_ep->regs, MUSB_RXCSR);
421 * PIO RX for a packet (or part of it).
423 static bool
424 musb_host_packet_rx(struct musb *musb, struct urb *urb, u8 epnum, u8 iso_err)
426 u16 rx_count;
427 u8 *buf;
428 u16 csr;
429 bool done = false;
430 u32 length;
431 int do_flush = 0;
432 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
433 void __iomem *epio = hw_ep->regs;
434 struct musb_qh *qh = hw_ep->in_qh;
435 int pipe = urb->pipe;
436 void *buffer = urb->transfer_buffer;
438 /* musb_ep_select(mbase, epnum); */
439 rx_count = musb_readw(epio, MUSB_RXCOUNT);
440 musb_dbg(musb, "RX%d count %d, buffer %p len %d/%d", epnum, rx_count,
441 urb->transfer_buffer, qh->offset,
442 urb->transfer_buffer_length);
444 /* unload FIFO */
445 if (usb_pipeisoc(pipe)) {
446 int status = 0;
447 struct usb_iso_packet_descriptor *d;
449 if (iso_err) {
450 status = -EILSEQ;
451 urb->error_count++;
454 d = urb->iso_frame_desc + qh->iso_idx;
455 buf = buffer + d->offset;
456 length = d->length;
457 if (rx_count > length) {
458 if (status == 0) {
459 status = -EOVERFLOW;
460 urb->error_count++;
462 musb_dbg(musb, "OVERFLOW %d into %d", rx_count, length);
463 do_flush = 1;
464 } else
465 length = rx_count;
466 urb->actual_length += length;
467 d->actual_length = length;
469 d->status = status;
471 /* see if we are done */
472 done = (++qh->iso_idx >= urb->number_of_packets);
473 } else {
474 /* non-isoch */
475 buf = buffer + qh->offset;
476 length = urb->transfer_buffer_length - qh->offset;
477 if (rx_count > length) {
478 if (urb->status == -EINPROGRESS)
479 urb->status = -EOVERFLOW;
480 musb_dbg(musb, "OVERFLOW %d into %d", rx_count, length);
481 do_flush = 1;
482 } else
483 length = rx_count;
484 urb->actual_length += length;
485 qh->offset += length;
487 /* see if we are done */
488 done = (urb->actual_length == urb->transfer_buffer_length)
489 || (rx_count < qh->maxpacket)
490 || (urb->status != -EINPROGRESS);
491 if (done
492 && (urb->status == -EINPROGRESS)
493 && (urb->transfer_flags & URB_SHORT_NOT_OK)
494 && (urb->actual_length
495 < urb->transfer_buffer_length))
496 urb->status = -EREMOTEIO;
499 musb_read_fifo(hw_ep, length, buf);
501 csr = musb_readw(epio, MUSB_RXCSR);
502 csr |= MUSB_RXCSR_H_WZC_BITS;
503 if (unlikely(do_flush))
504 musb_h_flush_rxfifo(hw_ep, csr);
505 else {
506 /* REVISIT this assumes AUTOCLEAR is never set */
507 csr &= ~(MUSB_RXCSR_RXPKTRDY | MUSB_RXCSR_H_REQPKT);
508 if (!done)
509 csr |= MUSB_RXCSR_H_REQPKT;
510 musb_writew(epio, MUSB_RXCSR, csr);
513 return done;
516 /* we don't always need to reinit a given side of an endpoint...
517 * when we do, use tx/rx reinit routine and then construct a new CSR
518 * to address data toggle, NYET, and DMA or PIO.
520 * it's possible that driver bugs (especially for DMA) or aborting a
521 * transfer might have left the endpoint busier than it should be.
522 * the busy/not-empty tests are basically paranoia.
524 static void
525 musb_rx_reinit(struct musb *musb, struct musb_qh *qh, u8 epnum)
527 struct musb_hw_ep *ep = musb->endpoints + epnum;
528 u16 csr;
530 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
531 * That always uses tx_reinit since ep0 repurposes TX register
532 * offsets; the initial SETUP packet is also a kind of OUT.
535 /* if programmed for Tx, put it in RX mode */
536 if (ep->is_shared_fifo) {
537 csr = musb_readw(ep->regs, MUSB_TXCSR);
538 if (csr & MUSB_TXCSR_MODE) {
539 musb_h_tx_flush_fifo(ep);
540 csr = musb_readw(ep->regs, MUSB_TXCSR);
541 musb_writew(ep->regs, MUSB_TXCSR,
542 csr | MUSB_TXCSR_FRCDATATOG);
546 * Clear the MODE bit (and everything else) to enable Rx.
547 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
549 if (csr & MUSB_TXCSR_DMAMODE)
550 musb_writew(ep->regs, MUSB_TXCSR, MUSB_TXCSR_DMAMODE);
551 musb_writew(ep->regs, MUSB_TXCSR, 0);
553 /* scrub all previous state, clearing toggle */
555 csr = musb_readw(ep->regs, MUSB_RXCSR);
556 if (csr & MUSB_RXCSR_RXPKTRDY)
557 WARNING("rx%d, packet/%d ready?\n", ep->epnum,
558 musb_readw(ep->regs, MUSB_RXCOUNT));
560 musb_h_flush_rxfifo(ep, MUSB_RXCSR_CLRDATATOG);
562 /* target addr and (for multipoint) hub addr/port */
563 if (musb->is_multipoint) {
564 musb_write_rxfunaddr(musb, epnum, qh->addr_reg);
565 musb_write_rxhubaddr(musb, epnum, qh->h_addr_reg);
566 musb_write_rxhubport(musb, epnum, qh->h_port_reg);
567 } else
568 musb_writeb(musb->mregs, MUSB_FADDR, qh->addr_reg);
570 /* protocol/endpoint, interval/NAKlimit, i/o size */
571 musb_writeb(ep->regs, MUSB_RXTYPE, qh->type_reg);
572 musb_writeb(ep->regs, MUSB_RXINTERVAL, qh->intv_reg);
573 /* NOTE: bulk combining rewrites high bits of maxpacket */
574 /* Set RXMAXP with the FIFO size of the endpoint
575 * to disable double buffer mode.
577 if (musb->double_buffer_not_ok)
578 musb_writew(ep->regs, MUSB_RXMAXP, ep->max_packet_sz_rx);
579 else
580 musb_writew(ep->regs, MUSB_RXMAXP,
581 qh->maxpacket | ((qh->hb_mult - 1) << 11));
583 ep->rx_reinit = 0;
586 static void musb_tx_dma_set_mode_mentor(struct dma_controller *dma,
587 struct musb_hw_ep *hw_ep, struct musb_qh *qh,
588 struct urb *urb, u32 offset,
589 u32 *length, u8 *mode)
591 struct dma_channel *channel = hw_ep->tx_channel;
592 void __iomem *epio = hw_ep->regs;
593 u16 pkt_size = qh->maxpacket;
594 u16 csr;
596 if (*length > channel->max_len)
597 *length = channel->max_len;
599 csr = musb_readw(epio, MUSB_TXCSR);
600 if (*length > pkt_size) {
601 *mode = 1;
602 csr |= MUSB_TXCSR_DMAMODE | MUSB_TXCSR_DMAENAB;
603 /* autoset shouldn't be set in high bandwidth */
605 * Enable Autoset according to table
606 * below
607 * bulk_split hb_mult Autoset_Enable
608 * 0 1 Yes(Normal)
609 * 0 >1 No(High BW ISO)
610 * 1 1 Yes(HS bulk)
611 * 1 >1 Yes(FS bulk)
613 if (qh->hb_mult == 1 || (qh->hb_mult > 1 &&
614 can_bulk_split(hw_ep->musb, qh->type)))
615 csr |= MUSB_TXCSR_AUTOSET;
616 } else {
617 *mode = 0;
618 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAMODE);
619 csr |= MUSB_TXCSR_DMAENAB; /* against programmer's guide */
621 channel->desired_mode = *mode;
622 musb_writew(epio, MUSB_TXCSR, csr);
625 static void musb_tx_dma_set_mode_cppi_tusb(struct dma_controller *dma,
626 struct musb_hw_ep *hw_ep,
627 struct musb_qh *qh,
628 struct urb *urb,
629 u32 offset,
630 u32 *length,
631 u8 *mode)
633 struct dma_channel *channel = hw_ep->tx_channel;
635 channel->actual_len = 0;
638 * TX uses "RNDIS" mode automatically but needs help
639 * to identify the zero-length-final-packet case.
641 *mode = (urb->transfer_flags & URB_ZERO_PACKET) ? 1 : 0;
644 static bool musb_tx_dma_program(struct dma_controller *dma,
645 struct musb_hw_ep *hw_ep, struct musb_qh *qh,
646 struct urb *urb, u32 offset, u32 length)
648 struct dma_channel *channel = hw_ep->tx_channel;
649 u16 pkt_size = qh->maxpacket;
650 u8 mode;
652 if (musb_dma_inventra(hw_ep->musb) || musb_dma_ux500(hw_ep->musb))
653 musb_tx_dma_set_mode_mentor(dma, hw_ep, qh, urb, offset,
654 &length, &mode);
655 else if (is_cppi_enabled(hw_ep->musb) || tusb_dma_omap(hw_ep->musb))
656 musb_tx_dma_set_mode_cppi_tusb(dma, hw_ep, qh, urb, offset,
657 &length, &mode);
658 else
659 return false;
661 qh->segsize = length;
664 * Ensure the data reaches to main memory before starting
665 * DMA transfer
667 wmb();
669 if (!dma->channel_program(channel, pkt_size, mode,
670 urb->transfer_dma + offset, length)) {
671 void __iomem *epio = hw_ep->regs;
672 u16 csr;
674 dma->channel_release(channel);
675 hw_ep->tx_channel = NULL;
677 csr = musb_readw(epio, MUSB_TXCSR);
678 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAENAB);
679 musb_writew(epio, MUSB_TXCSR, csr | MUSB_TXCSR_H_WZC_BITS);
680 return false;
682 return true;
686 * Program an HDRC endpoint as per the given URB
687 * Context: irqs blocked, controller lock held
689 static void musb_ep_program(struct musb *musb, u8 epnum,
690 struct urb *urb, int is_out,
691 u8 *buf, u32 offset, u32 len)
693 struct dma_controller *dma_controller;
694 struct dma_channel *dma_channel;
695 u8 dma_ok;
696 void __iomem *mbase = musb->mregs;
697 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
698 void __iomem *epio = hw_ep->regs;
699 struct musb_qh *qh = musb_ep_get_qh(hw_ep, !is_out);
700 u16 packet_sz = qh->maxpacket;
701 u8 use_dma = 1;
702 u16 csr;
704 musb_dbg(musb, "%s hw%d urb %p spd%d dev%d ep%d%s "
705 "h_addr%02x h_port%02x bytes %d",
706 is_out ? "-->" : "<--",
707 epnum, urb, urb->dev->speed,
708 qh->addr_reg, qh->epnum, is_out ? "out" : "in",
709 qh->h_addr_reg, qh->h_port_reg,
710 len);
712 musb_ep_select(mbase, epnum);
714 if (is_out && !len) {
715 use_dma = 0;
716 csr = musb_readw(epio, MUSB_TXCSR);
717 csr &= ~MUSB_TXCSR_DMAENAB;
718 musb_writew(epio, MUSB_TXCSR, csr);
719 hw_ep->tx_channel = NULL;
722 /* candidate for DMA? */
723 dma_controller = musb->dma_controller;
724 if (use_dma && is_dma_capable() && epnum && dma_controller) {
725 dma_channel = is_out ? hw_ep->tx_channel : hw_ep->rx_channel;
726 if (!dma_channel) {
727 dma_channel = dma_controller->channel_alloc(
728 dma_controller, hw_ep, is_out);
729 if (is_out)
730 hw_ep->tx_channel = dma_channel;
731 else
732 hw_ep->rx_channel = dma_channel;
734 } else
735 dma_channel = NULL;
737 /* make sure we clear DMAEnab, autoSet bits from previous run */
739 /* OUT/transmit/EP0 or IN/receive? */
740 if (is_out) {
741 u16 csr;
742 u16 int_txe;
743 u16 load_count;
745 csr = musb_readw(epio, MUSB_TXCSR);
747 /* disable interrupt in case we flush */
748 int_txe = musb->intrtxe;
749 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
751 /* general endpoint setup */
752 if (epnum) {
753 /* flush all old state, set default */
755 * We could be flushing valid
756 * packets in double buffering
757 * case
759 if (!hw_ep->tx_double_buffered)
760 musb_h_tx_flush_fifo(hw_ep);
763 * We must not clear the DMAMODE bit before or in
764 * the same cycle with the DMAENAB bit, so we clear
765 * the latter first...
767 csr &= ~(MUSB_TXCSR_H_NAKTIMEOUT
768 | MUSB_TXCSR_AUTOSET
769 | MUSB_TXCSR_DMAENAB
770 | MUSB_TXCSR_FRCDATATOG
771 | MUSB_TXCSR_H_RXSTALL
772 | MUSB_TXCSR_H_ERROR
773 | MUSB_TXCSR_TXPKTRDY
775 csr |= MUSB_TXCSR_MODE;
777 if (!hw_ep->tx_double_buffered) {
778 if (usb_gettoggle(urb->dev, qh->epnum, 1))
779 csr |= MUSB_TXCSR_H_WR_DATATOGGLE
780 | MUSB_TXCSR_H_DATATOGGLE;
781 else
782 csr |= MUSB_TXCSR_CLRDATATOG;
785 musb_writew(epio, MUSB_TXCSR, csr);
786 /* REVISIT may need to clear FLUSHFIFO ... */
787 csr &= ~MUSB_TXCSR_DMAMODE;
788 musb_writew(epio, MUSB_TXCSR, csr);
789 csr = musb_readw(epio, MUSB_TXCSR);
790 } else {
791 /* endpoint 0: just flush */
792 musb_h_ep0_flush_fifo(hw_ep);
795 /* target addr and (for multipoint) hub addr/port */
796 if (musb->is_multipoint) {
797 musb_write_txfunaddr(musb, epnum, qh->addr_reg);
798 musb_write_txhubaddr(musb, epnum, qh->h_addr_reg);
799 musb_write_txhubport(musb, epnum, qh->h_port_reg);
800 /* FIXME if !epnum, do the same for RX ... */
801 } else
802 musb_writeb(mbase, MUSB_FADDR, qh->addr_reg);
804 /* protocol/endpoint/interval/NAKlimit */
805 if (epnum) {
806 musb_writeb(epio, MUSB_TXTYPE, qh->type_reg);
807 if (musb->double_buffer_not_ok) {
808 musb_writew(epio, MUSB_TXMAXP,
809 hw_ep->max_packet_sz_tx);
810 } else if (can_bulk_split(musb, qh->type)) {
811 qh->hb_mult = hw_ep->max_packet_sz_tx
812 / packet_sz;
813 musb_writew(epio, MUSB_TXMAXP, packet_sz
814 | ((qh->hb_mult) - 1) << 11);
815 } else {
816 musb_writew(epio, MUSB_TXMAXP,
817 qh->maxpacket |
818 ((qh->hb_mult - 1) << 11));
820 musb_writeb(epio, MUSB_TXINTERVAL, qh->intv_reg);
821 } else {
822 musb_writeb(epio, MUSB_NAKLIMIT0, qh->intv_reg);
823 if (musb->is_multipoint)
824 musb_writeb(epio, MUSB_TYPE0,
825 qh->type_reg);
828 if (can_bulk_split(musb, qh->type))
829 load_count = min((u32) hw_ep->max_packet_sz_tx,
830 len);
831 else
832 load_count = min((u32) packet_sz, len);
834 if (dma_channel && musb_tx_dma_program(dma_controller,
835 hw_ep, qh, urb, offset, len))
836 load_count = 0;
838 if (load_count) {
839 /* PIO to load FIFO */
840 qh->segsize = load_count;
841 if (!buf) {
842 sg_miter_start(&qh->sg_miter, urb->sg, 1,
843 SG_MITER_ATOMIC
844 | SG_MITER_FROM_SG);
845 if (!sg_miter_next(&qh->sg_miter)) {
846 dev_err(musb->controller,
847 "error: sg"
848 "list empty\n");
849 sg_miter_stop(&qh->sg_miter);
850 goto finish;
852 buf = qh->sg_miter.addr + urb->sg->offset +
853 urb->actual_length;
854 load_count = min_t(u32, load_count,
855 qh->sg_miter.length);
856 musb_write_fifo(hw_ep, load_count, buf);
857 qh->sg_miter.consumed = load_count;
858 sg_miter_stop(&qh->sg_miter);
859 } else
860 musb_write_fifo(hw_ep, load_count, buf);
862 finish:
863 /* re-enable interrupt */
864 musb_writew(mbase, MUSB_INTRTXE, int_txe);
866 /* IN/receive */
867 } else {
868 u16 csr;
870 if (hw_ep->rx_reinit) {
871 musb_rx_reinit(musb, qh, epnum);
873 /* init new state: toggle and NYET, maybe DMA later */
874 if (usb_gettoggle(urb->dev, qh->epnum, 0))
875 csr = MUSB_RXCSR_H_WR_DATATOGGLE
876 | MUSB_RXCSR_H_DATATOGGLE;
877 else
878 csr = 0;
879 if (qh->type == USB_ENDPOINT_XFER_INT)
880 csr |= MUSB_RXCSR_DISNYET;
882 } else {
883 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
885 if (csr & (MUSB_RXCSR_RXPKTRDY
886 | MUSB_RXCSR_DMAENAB
887 | MUSB_RXCSR_H_REQPKT))
888 ERR("broken !rx_reinit, ep%d csr %04x\n",
889 hw_ep->epnum, csr);
891 /* scrub any stale state, leaving toggle alone */
892 csr &= MUSB_RXCSR_DISNYET;
895 /* kick things off */
897 if ((is_cppi_enabled(musb) || tusb_dma_omap(musb)) && dma_channel) {
898 /* Candidate for DMA */
899 dma_channel->actual_len = 0L;
900 qh->segsize = len;
902 /* AUTOREQ is in a DMA register */
903 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
904 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
907 * Unless caller treats short RX transfers as
908 * errors, we dare not queue multiple transfers.
910 dma_ok = dma_controller->channel_program(dma_channel,
911 packet_sz, !(urb->transfer_flags &
912 URB_SHORT_NOT_OK),
913 urb->transfer_dma + offset,
914 qh->segsize);
915 if (!dma_ok) {
916 dma_controller->channel_release(dma_channel);
917 hw_ep->rx_channel = dma_channel = NULL;
918 } else
919 csr |= MUSB_RXCSR_DMAENAB;
922 csr |= MUSB_RXCSR_H_REQPKT;
923 musb_dbg(musb, "RXCSR%d := %04x", epnum, csr);
924 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
925 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
929 /* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
930 * the end; avoids starvation for other endpoints.
932 static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
933 int is_in)
935 struct dma_channel *dma;
936 struct urb *urb;
937 void __iomem *mbase = musb->mregs;
938 void __iomem *epio = ep->regs;
939 struct musb_qh *cur_qh, *next_qh;
940 u16 rx_csr, tx_csr;
942 musb_ep_select(mbase, ep->epnum);
943 if (is_in) {
944 dma = is_dma_capable() ? ep->rx_channel : NULL;
947 * Need to stop the transaction by clearing REQPKT first
948 * then the NAK Timeout bit ref MUSBMHDRC USB 2.0 HIGH-SPEED
949 * DUAL-ROLE CONTROLLER Programmer's Guide, section 9.2.2
951 rx_csr = musb_readw(epio, MUSB_RXCSR);
952 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
953 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
954 musb_writew(epio, MUSB_RXCSR, rx_csr);
955 rx_csr &= ~MUSB_RXCSR_DATAERROR;
956 musb_writew(epio, MUSB_RXCSR, rx_csr);
958 cur_qh = first_qh(&musb->in_bulk);
959 } else {
960 dma = is_dma_capable() ? ep->tx_channel : NULL;
962 /* clear nak timeout bit */
963 tx_csr = musb_readw(epio, MUSB_TXCSR);
964 tx_csr |= MUSB_TXCSR_H_WZC_BITS;
965 tx_csr &= ~MUSB_TXCSR_H_NAKTIMEOUT;
966 musb_writew(epio, MUSB_TXCSR, tx_csr);
968 cur_qh = first_qh(&musb->out_bulk);
970 if (cur_qh) {
971 urb = next_urb(cur_qh);
972 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
973 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
974 musb->dma_controller->channel_abort(dma);
975 urb->actual_length += dma->actual_len;
976 dma->actual_len = 0L;
978 musb_save_toggle(cur_qh, is_in, urb);
980 if (is_in) {
981 /* move cur_qh to end of queue */
982 list_move_tail(&cur_qh->ring, &musb->in_bulk);
984 /* get the next qh from musb->in_bulk */
985 next_qh = first_qh(&musb->in_bulk);
987 /* set rx_reinit and schedule the next qh */
988 ep->rx_reinit = 1;
989 } else {
990 /* move cur_qh to end of queue */
991 list_move_tail(&cur_qh->ring, &musb->out_bulk);
993 /* get the next qh from musb->out_bulk */
994 next_qh = first_qh(&musb->out_bulk);
996 /* set tx_reinit and schedule the next qh */
997 ep->tx_reinit = 1;
1000 if (next_qh)
1001 musb_start_urb(musb, is_in, next_qh);
1006 * Service the default endpoint (ep0) as host.
1007 * Return true until it's time to start the status stage.
1009 static bool musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb)
1011 bool more = false;
1012 u8 *fifo_dest = NULL;
1013 u16 fifo_count = 0;
1014 struct musb_hw_ep *hw_ep = musb->control_ep;
1015 struct musb_qh *qh = hw_ep->in_qh;
1016 struct usb_ctrlrequest *request;
1018 switch (musb->ep0_stage) {
1019 case MUSB_EP0_IN:
1020 fifo_dest = urb->transfer_buffer + urb->actual_length;
1021 fifo_count = min_t(size_t, len, urb->transfer_buffer_length -
1022 urb->actual_length);
1023 if (fifo_count < len)
1024 urb->status = -EOVERFLOW;
1026 musb_read_fifo(hw_ep, fifo_count, fifo_dest);
1028 urb->actual_length += fifo_count;
1029 if (len < qh->maxpacket) {
1030 /* always terminate on short read; it's
1031 * rarely reported as an error.
1033 } else if (urb->actual_length <
1034 urb->transfer_buffer_length)
1035 more = true;
1036 break;
1037 case MUSB_EP0_START:
1038 request = (struct usb_ctrlrequest *) urb->setup_packet;
1040 if (!request->wLength) {
1041 musb_dbg(musb, "start no-DATA");
1042 break;
1043 } else if (request->bRequestType & USB_DIR_IN) {
1044 musb_dbg(musb, "start IN-DATA");
1045 musb->ep0_stage = MUSB_EP0_IN;
1046 more = true;
1047 break;
1048 } else {
1049 musb_dbg(musb, "start OUT-DATA");
1050 musb->ep0_stage = MUSB_EP0_OUT;
1051 more = true;
1053 /* FALLTHROUGH */
1054 case MUSB_EP0_OUT:
1055 fifo_count = min_t(size_t, qh->maxpacket,
1056 urb->transfer_buffer_length -
1057 urb->actual_length);
1058 if (fifo_count) {
1059 fifo_dest = (u8 *) (urb->transfer_buffer
1060 + urb->actual_length);
1061 musb_dbg(musb, "Sending %d byte%s to ep0 fifo %p",
1062 fifo_count,
1063 (fifo_count == 1) ? "" : "s",
1064 fifo_dest);
1065 musb_write_fifo(hw_ep, fifo_count, fifo_dest);
1067 urb->actual_length += fifo_count;
1068 more = true;
1070 break;
1071 default:
1072 ERR("bogus ep0 stage %d\n", musb->ep0_stage);
1073 break;
1076 return more;
1080 * Handle default endpoint interrupt as host. Only called in IRQ time
1081 * from musb_interrupt().
1083 * called with controller irqlocked
1085 irqreturn_t musb_h_ep0_irq(struct musb *musb)
1087 struct urb *urb;
1088 u16 csr, len;
1089 int status = 0;
1090 void __iomem *mbase = musb->mregs;
1091 struct musb_hw_ep *hw_ep = musb->control_ep;
1092 void __iomem *epio = hw_ep->regs;
1093 struct musb_qh *qh = hw_ep->in_qh;
1094 bool complete = false;
1095 irqreturn_t retval = IRQ_NONE;
1097 /* ep0 only has one queue, "in" */
1098 urb = next_urb(qh);
1100 musb_ep_select(mbase, 0);
1101 csr = musb_readw(epio, MUSB_CSR0);
1102 len = (csr & MUSB_CSR0_RXPKTRDY)
1103 ? musb_readb(epio, MUSB_COUNT0)
1104 : 0;
1106 musb_dbg(musb, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d",
1107 csr, qh, len, urb, musb->ep0_stage);
1109 /* if we just did status stage, we are done */
1110 if (MUSB_EP0_STATUS == musb->ep0_stage) {
1111 retval = IRQ_HANDLED;
1112 complete = true;
1115 /* prepare status */
1116 if (csr & MUSB_CSR0_H_RXSTALL) {
1117 musb_dbg(musb, "STALLING ENDPOINT");
1118 status = -EPIPE;
1120 } else if (csr & MUSB_CSR0_H_ERROR) {
1121 musb_dbg(musb, "no response, csr0 %04x", csr);
1122 status = -EPROTO;
1124 } else if (csr & MUSB_CSR0_H_NAKTIMEOUT) {
1125 musb_dbg(musb, "control NAK timeout");
1127 /* NOTE: this code path would be a good place to PAUSE a
1128 * control transfer, if another one is queued, so that
1129 * ep0 is more likely to stay busy. That's already done
1130 * for bulk RX transfers.
1132 * if (qh->ring.next != &musb->control), then
1133 * we have a candidate... NAKing is *NOT* an error
1135 musb_writew(epio, MUSB_CSR0, 0);
1136 retval = IRQ_HANDLED;
1139 if (status) {
1140 musb_dbg(musb, "aborting");
1141 retval = IRQ_HANDLED;
1142 if (urb)
1143 urb->status = status;
1144 complete = true;
1146 /* use the proper sequence to abort the transfer */
1147 if (csr & MUSB_CSR0_H_REQPKT) {
1148 csr &= ~MUSB_CSR0_H_REQPKT;
1149 musb_writew(epio, MUSB_CSR0, csr);
1150 csr &= ~MUSB_CSR0_H_NAKTIMEOUT;
1151 musb_writew(epio, MUSB_CSR0, csr);
1152 } else {
1153 musb_h_ep0_flush_fifo(hw_ep);
1156 musb_writeb(epio, MUSB_NAKLIMIT0, 0);
1158 /* clear it */
1159 musb_writew(epio, MUSB_CSR0, 0);
1162 if (unlikely(!urb)) {
1163 /* stop endpoint since we have no place for its data, this
1164 * SHOULD NEVER HAPPEN! */
1165 ERR("no URB for end 0\n");
1167 musb_h_ep0_flush_fifo(hw_ep);
1168 goto done;
1171 if (!complete) {
1172 /* call common logic and prepare response */
1173 if (musb_h_ep0_continue(musb, len, urb)) {
1174 /* more packets required */
1175 csr = (MUSB_EP0_IN == musb->ep0_stage)
1176 ? MUSB_CSR0_H_REQPKT : MUSB_CSR0_TXPKTRDY;
1177 } else {
1178 /* data transfer complete; perform status phase */
1179 if (usb_pipeout(urb->pipe)
1180 || !urb->transfer_buffer_length)
1181 csr = MUSB_CSR0_H_STATUSPKT
1182 | MUSB_CSR0_H_REQPKT;
1183 else
1184 csr = MUSB_CSR0_H_STATUSPKT
1185 | MUSB_CSR0_TXPKTRDY;
1187 /* disable ping token in status phase */
1188 csr |= MUSB_CSR0_H_DIS_PING;
1190 /* flag status stage */
1191 musb->ep0_stage = MUSB_EP0_STATUS;
1193 musb_dbg(musb, "ep0 STATUS, csr %04x", csr);
1196 musb_writew(epio, MUSB_CSR0, csr);
1197 retval = IRQ_HANDLED;
1198 } else
1199 musb->ep0_stage = MUSB_EP0_IDLE;
1201 /* call completion handler if done */
1202 if (complete)
1203 musb_advance_schedule(musb, urb, hw_ep, 1);
1204 done:
1205 return retval;
1209 #ifdef CONFIG_USB_INVENTRA_DMA
1211 /* Host side TX (OUT) using Mentor DMA works as follows:
1212 submit_urb ->
1213 - if queue was empty, Program Endpoint
1214 - ... which starts DMA to fifo in mode 1 or 0
1216 DMA Isr (transfer complete) -> TxAvail()
1217 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1218 only in musb_cleanup_urb)
1219 - TxPktRdy has to be set in mode 0 or for
1220 short packets in mode 1.
1223 #endif
1225 /* Service a Tx-Available or dma completion irq for the endpoint */
1226 void musb_host_tx(struct musb *musb, u8 epnum)
1228 int pipe;
1229 bool done = false;
1230 u16 tx_csr;
1231 size_t length = 0;
1232 size_t offset = 0;
1233 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1234 void __iomem *epio = hw_ep->regs;
1235 struct musb_qh *qh = hw_ep->out_qh;
1236 struct urb *urb = next_urb(qh);
1237 u32 status = 0;
1238 void __iomem *mbase = musb->mregs;
1239 struct dma_channel *dma;
1240 bool transfer_pending = false;
1242 musb_ep_select(mbase, epnum);
1243 tx_csr = musb_readw(epio, MUSB_TXCSR);
1245 /* with CPPI, DMA sometimes triggers "extra" irqs */
1246 if (!urb) {
1247 musb_dbg(musb, "extra TX%d ready, csr %04x", epnum, tx_csr);
1248 return;
1251 pipe = urb->pipe;
1252 dma = is_dma_capable() ? hw_ep->tx_channel : NULL;
1253 trace_musb_urb_tx(musb, urb);
1254 musb_dbg(musb, "OUT/TX%d end, csr %04x%s", epnum, tx_csr,
1255 dma ? ", dma" : "");
1257 /* check for errors */
1258 if (tx_csr & MUSB_TXCSR_H_RXSTALL) {
1259 /* dma was disabled, fifo flushed */
1260 musb_dbg(musb, "TX end %d stall", epnum);
1262 /* stall; record URB status */
1263 status = -EPIPE;
1265 } else if (tx_csr & MUSB_TXCSR_H_ERROR) {
1266 /* (NON-ISO) dma was disabled, fifo flushed */
1267 musb_dbg(musb, "TX 3strikes on ep=%d", epnum);
1269 status = -ETIMEDOUT;
1271 } else if (tx_csr & MUSB_TXCSR_H_NAKTIMEOUT) {
1272 if (USB_ENDPOINT_XFER_BULK == qh->type && qh->mux == 1
1273 && !list_is_singular(&musb->out_bulk)) {
1274 musb_dbg(musb, "NAK timeout on TX%d ep", epnum);
1275 musb_bulk_nak_timeout(musb, hw_ep, 0);
1276 } else {
1277 musb_dbg(musb, "TX ep%d device not responding", epnum);
1278 /* NOTE: this code path would be a good place to PAUSE a
1279 * transfer, if there's some other (nonperiodic) tx urb
1280 * that could use this fifo. (dma complicates it...)
1281 * That's already done for bulk RX transfers.
1283 * if (bulk && qh->ring.next != &musb->out_bulk), then
1284 * we have a candidate... NAKing is *NOT* an error
1286 musb_ep_select(mbase, epnum);
1287 musb_writew(epio, MUSB_TXCSR,
1288 MUSB_TXCSR_H_WZC_BITS
1289 | MUSB_TXCSR_TXPKTRDY);
1291 return;
1294 done:
1295 if (status) {
1296 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1297 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1298 musb->dma_controller->channel_abort(dma);
1301 /* do the proper sequence to abort the transfer in the
1302 * usb core; the dma engine should already be stopped.
1304 musb_h_tx_flush_fifo(hw_ep);
1305 tx_csr &= ~(MUSB_TXCSR_AUTOSET
1306 | MUSB_TXCSR_DMAENAB
1307 | MUSB_TXCSR_H_ERROR
1308 | MUSB_TXCSR_H_RXSTALL
1309 | MUSB_TXCSR_H_NAKTIMEOUT
1312 musb_ep_select(mbase, epnum);
1313 musb_writew(epio, MUSB_TXCSR, tx_csr);
1314 /* REVISIT may need to clear FLUSHFIFO ... */
1315 musb_writew(epio, MUSB_TXCSR, tx_csr);
1316 musb_writeb(epio, MUSB_TXINTERVAL, 0);
1318 done = true;
1321 /* second cppi case */
1322 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1323 musb_dbg(musb, "extra TX%d ready, csr %04x", epnum, tx_csr);
1324 return;
1327 if (is_dma_capable() && dma && !status) {
1329 * DMA has completed. But if we're using DMA mode 1 (multi
1330 * packet DMA), we need a terminal TXPKTRDY interrupt before
1331 * we can consider this transfer completed, lest we trash
1332 * its last packet when writing the next URB's data. So we
1333 * switch back to mode 0 to get that interrupt; we'll come
1334 * back here once it happens.
1336 if (tx_csr & MUSB_TXCSR_DMAMODE) {
1338 * We shouldn't clear DMAMODE with DMAENAB set; so
1339 * clear them in a safe order. That should be OK
1340 * once TXPKTRDY has been set (and I've never seen
1341 * it being 0 at this moment -- DMA interrupt latency
1342 * is significant) but if it hasn't been then we have
1343 * no choice but to stop being polite and ignore the
1344 * programmer's guide... :-)
1346 * Note that we must write TXCSR with TXPKTRDY cleared
1347 * in order not to re-trigger the packet send (this bit
1348 * can't be cleared by CPU), and there's another caveat:
1349 * TXPKTRDY may be set shortly and then cleared in the
1350 * double-buffered FIFO mode, so we do an extra TXCSR
1351 * read for debouncing...
1353 tx_csr &= musb_readw(epio, MUSB_TXCSR);
1354 if (tx_csr & MUSB_TXCSR_TXPKTRDY) {
1355 tx_csr &= ~(MUSB_TXCSR_DMAENAB |
1356 MUSB_TXCSR_TXPKTRDY);
1357 musb_writew(epio, MUSB_TXCSR,
1358 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1360 tx_csr &= ~(MUSB_TXCSR_DMAMODE |
1361 MUSB_TXCSR_TXPKTRDY);
1362 musb_writew(epio, MUSB_TXCSR,
1363 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1366 * There is no guarantee that we'll get an interrupt
1367 * after clearing DMAMODE as we might have done this
1368 * too late (after TXPKTRDY was cleared by controller).
1369 * Re-read TXCSR as we have spoiled its previous value.
1371 tx_csr = musb_readw(epio, MUSB_TXCSR);
1375 * We may get here from a DMA completion or TXPKTRDY interrupt.
1376 * In any case, we must check the FIFO status here and bail out
1377 * only if the FIFO still has data -- that should prevent the
1378 * "missed" TXPKTRDY interrupts and deal with double-buffered
1379 * FIFO mode too...
1381 if (tx_csr & (MUSB_TXCSR_FIFONOTEMPTY | MUSB_TXCSR_TXPKTRDY)) {
1382 musb_dbg(musb,
1383 "DMA complete but FIFO not empty, CSR %04x",
1384 tx_csr);
1385 return;
1389 if (!status || dma || usb_pipeisoc(pipe)) {
1390 if (dma)
1391 length = dma->actual_len;
1392 else
1393 length = qh->segsize;
1394 qh->offset += length;
1396 if (usb_pipeisoc(pipe)) {
1397 struct usb_iso_packet_descriptor *d;
1399 d = urb->iso_frame_desc + qh->iso_idx;
1400 d->actual_length = length;
1401 d->status = status;
1402 if (++qh->iso_idx >= urb->number_of_packets) {
1403 done = true;
1404 } else {
1405 d++;
1406 offset = d->offset;
1407 length = d->length;
1409 } else if (dma && urb->transfer_buffer_length == qh->offset) {
1410 done = true;
1411 } else {
1412 /* see if we need to send more data, or ZLP */
1413 if (qh->segsize < qh->maxpacket)
1414 done = true;
1415 else if (qh->offset == urb->transfer_buffer_length
1416 && !(urb->transfer_flags
1417 & URB_ZERO_PACKET))
1418 done = true;
1419 if (!done) {
1420 offset = qh->offset;
1421 length = urb->transfer_buffer_length - offset;
1422 transfer_pending = true;
1427 /* urb->status != -EINPROGRESS means request has been faulted,
1428 * so we must abort this transfer after cleanup
1430 if (urb->status != -EINPROGRESS) {
1431 done = true;
1432 if (status == 0)
1433 status = urb->status;
1436 if (done) {
1437 /* set status */
1438 urb->status = status;
1439 urb->actual_length = qh->offset;
1440 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_OUT);
1441 return;
1442 } else if ((usb_pipeisoc(pipe) || transfer_pending) && dma) {
1443 if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb,
1444 offset, length)) {
1445 if (is_cppi_enabled(musb) || tusb_dma_omap(musb))
1446 musb_h_tx_dma_start(hw_ep);
1447 return;
1449 } else if (tx_csr & MUSB_TXCSR_DMAENAB) {
1450 musb_dbg(musb, "not complete, but DMA enabled?");
1451 return;
1455 * PIO: start next packet in this URB.
1457 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1458 * (and presumably, FIFO is not half-full) we should write *two*
1459 * packets before updating TXCSR; other docs disagree...
1461 if (length > qh->maxpacket)
1462 length = qh->maxpacket;
1463 /* Unmap the buffer so that CPU can use it */
1464 usb_hcd_unmap_urb_for_dma(musb->hcd, urb);
1467 * We need to map sg if the transfer_buffer is
1468 * NULL.
1470 if (!urb->transfer_buffer)
1471 qh->use_sg = true;
1473 if (qh->use_sg) {
1474 /* sg_miter_start is already done in musb_ep_program */
1475 if (!sg_miter_next(&qh->sg_miter)) {
1476 dev_err(musb->controller, "error: sg list empty\n");
1477 sg_miter_stop(&qh->sg_miter);
1478 status = -EINVAL;
1479 goto done;
1481 urb->transfer_buffer = qh->sg_miter.addr;
1482 length = min_t(u32, length, qh->sg_miter.length);
1483 musb_write_fifo(hw_ep, length, urb->transfer_buffer);
1484 qh->sg_miter.consumed = length;
1485 sg_miter_stop(&qh->sg_miter);
1486 } else {
1487 musb_write_fifo(hw_ep, length, urb->transfer_buffer + offset);
1490 qh->segsize = length;
1492 if (qh->use_sg) {
1493 if (offset + length >= urb->transfer_buffer_length)
1494 qh->use_sg = false;
1497 musb_ep_select(mbase, epnum);
1498 musb_writew(epio, MUSB_TXCSR,
1499 MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY);
1502 #ifdef CONFIG_USB_TI_CPPI41_DMA
1503 /* Seems to set up ISO for cppi41 and not advance len. See commit c57c41d */
1504 static int musb_rx_dma_iso_cppi41(struct dma_controller *dma,
1505 struct musb_hw_ep *hw_ep,
1506 struct musb_qh *qh,
1507 struct urb *urb,
1508 size_t len)
1510 struct dma_channel *channel = hw_ep->rx_channel;
1511 void __iomem *epio = hw_ep->regs;
1512 dma_addr_t *buf;
1513 u32 length;
1514 u16 val;
1516 buf = (void *)urb->iso_frame_desc[qh->iso_idx].offset +
1517 (u32)urb->transfer_dma;
1519 length = urb->iso_frame_desc[qh->iso_idx].length;
1521 val = musb_readw(epio, MUSB_RXCSR);
1522 val |= MUSB_RXCSR_DMAENAB;
1523 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1525 return dma->channel_program(channel, qh->maxpacket, 0,
1526 (u32)buf, length);
1528 #else
1529 static inline int musb_rx_dma_iso_cppi41(struct dma_controller *dma,
1530 struct musb_hw_ep *hw_ep,
1531 struct musb_qh *qh,
1532 struct urb *urb,
1533 size_t len)
1535 return false;
1537 #endif
1539 #if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1540 defined(CONFIG_USB_TI_CPPI41_DMA)
1541 /* Host side RX (IN) using Mentor DMA works as follows:
1542 submit_urb ->
1543 - if queue was empty, ProgramEndpoint
1544 - first IN token is sent out (by setting ReqPkt)
1545 LinuxIsr -> RxReady()
1546 /\ => first packet is received
1547 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1548 | -> DMA Isr (transfer complete) -> RxReady()
1549 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1550 | - if urb not complete, send next IN token (ReqPkt)
1551 | | else complete urb.
1553 ---------------------------
1555 * Nuances of mode 1:
1556 * For short packets, no ack (+RxPktRdy) is sent automatically
1557 * (even if AutoClear is ON)
1558 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1559 * automatically => major problem, as collecting the next packet becomes
1560 * difficult. Hence mode 1 is not used.
1562 * REVISIT
1563 * All we care about at this driver level is that
1564 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1565 * (b) termination conditions are: short RX, or buffer full;
1566 * (c) fault modes include
1567 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1568 * (and that endpoint's dma queue stops immediately)
1569 * - overflow (full, PLUS more bytes in the terminal packet)
1571 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1572 * thus be a great candidate for using mode 1 ... for all but the
1573 * last packet of one URB's transfer.
1575 static int musb_rx_dma_inventra_cppi41(struct dma_controller *dma,
1576 struct musb_hw_ep *hw_ep,
1577 struct musb_qh *qh,
1578 struct urb *urb,
1579 size_t len)
1581 struct dma_channel *channel = hw_ep->rx_channel;
1582 void __iomem *epio = hw_ep->regs;
1583 u16 val;
1584 int pipe;
1585 bool done;
1587 pipe = urb->pipe;
1589 if (usb_pipeisoc(pipe)) {
1590 struct usb_iso_packet_descriptor *d;
1592 d = urb->iso_frame_desc + qh->iso_idx;
1593 d->actual_length = len;
1595 /* even if there was an error, we did the dma
1596 * for iso_frame_desc->length
1598 if (d->status != -EILSEQ && d->status != -EOVERFLOW)
1599 d->status = 0;
1601 if (++qh->iso_idx >= urb->number_of_packets) {
1602 done = true;
1603 } else {
1604 /* REVISIT: Why ignore return value here? */
1605 if (musb_dma_cppi41(hw_ep->musb))
1606 done = musb_rx_dma_iso_cppi41(dma, hw_ep, qh,
1607 urb, len);
1608 done = false;
1611 } else {
1612 /* done if urb buffer is full or short packet is recd */
1613 done = (urb->actual_length + len >=
1614 urb->transfer_buffer_length
1615 || channel->actual_len < qh->maxpacket
1616 || channel->rx_packet_done);
1619 /* send IN token for next packet, without AUTOREQ */
1620 if (!done) {
1621 val = musb_readw(epio, MUSB_RXCSR);
1622 val |= MUSB_RXCSR_H_REQPKT;
1623 musb_writew(epio, MUSB_RXCSR, MUSB_RXCSR_H_WZC_BITS | val);
1626 return done;
1629 /* Disadvantage of using mode 1:
1630 * It's basically usable only for mass storage class; essentially all
1631 * other protocols also terminate transfers on short packets.
1633 * Details:
1634 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1635 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1636 * to use the extra IN token to grab the last packet using mode 0, then
1637 * the problem is that you cannot be sure when the device will send the
1638 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1639 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1640 * transfer, while sometimes it is recd just a little late so that if you
1641 * try to configure for mode 0 soon after the mode 1 transfer is
1642 * completed, you will find rxcount 0. Okay, so you might think why not
1643 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1645 static int musb_rx_dma_in_inventra_cppi41(struct dma_controller *dma,
1646 struct musb_hw_ep *hw_ep,
1647 struct musb_qh *qh,
1648 struct urb *urb,
1649 size_t len,
1650 u8 iso_err)
1652 struct musb *musb = hw_ep->musb;
1653 void __iomem *epio = hw_ep->regs;
1654 struct dma_channel *channel = hw_ep->rx_channel;
1655 u16 rx_count, val;
1656 int length, pipe, done;
1657 dma_addr_t buf;
1659 rx_count = musb_readw(epio, MUSB_RXCOUNT);
1660 pipe = urb->pipe;
1662 if (usb_pipeisoc(pipe)) {
1663 int d_status = 0;
1664 struct usb_iso_packet_descriptor *d;
1666 d = urb->iso_frame_desc + qh->iso_idx;
1668 if (iso_err) {
1669 d_status = -EILSEQ;
1670 urb->error_count++;
1672 if (rx_count > d->length) {
1673 if (d_status == 0) {
1674 d_status = -EOVERFLOW;
1675 urb->error_count++;
1677 musb_dbg(musb, "** OVERFLOW %d into %d",
1678 rx_count, d->length);
1680 length = d->length;
1681 } else
1682 length = rx_count;
1683 d->status = d_status;
1684 buf = urb->transfer_dma + d->offset;
1685 } else {
1686 length = rx_count;
1687 buf = urb->transfer_dma + urb->actual_length;
1690 channel->desired_mode = 0;
1691 #ifdef USE_MODE1
1692 /* because of the issue below, mode 1 will
1693 * only rarely behave with correct semantics.
1695 if ((urb->transfer_flags & URB_SHORT_NOT_OK)
1696 && (urb->transfer_buffer_length - urb->actual_length)
1697 > qh->maxpacket)
1698 channel->desired_mode = 1;
1699 if (rx_count < hw_ep->max_packet_sz_rx) {
1700 length = rx_count;
1701 channel->desired_mode = 0;
1702 } else {
1703 length = urb->transfer_buffer_length;
1705 #endif
1707 /* See comments above on disadvantages of using mode 1 */
1708 val = musb_readw(epio, MUSB_RXCSR);
1709 val &= ~MUSB_RXCSR_H_REQPKT;
1711 if (channel->desired_mode == 0)
1712 val &= ~MUSB_RXCSR_H_AUTOREQ;
1713 else
1714 val |= MUSB_RXCSR_H_AUTOREQ;
1715 val |= MUSB_RXCSR_DMAENAB;
1717 /* autoclear shouldn't be set in high bandwidth */
1718 if (qh->hb_mult == 1)
1719 val |= MUSB_RXCSR_AUTOCLEAR;
1721 musb_writew(epio, MUSB_RXCSR, MUSB_RXCSR_H_WZC_BITS | val);
1723 /* REVISIT if when actual_length != 0,
1724 * transfer_buffer_length needs to be
1725 * adjusted first...
1727 done = dma->channel_program(channel, qh->maxpacket,
1728 channel->desired_mode,
1729 buf, length);
1731 if (!done) {
1732 dma->channel_release(channel);
1733 hw_ep->rx_channel = NULL;
1734 channel = NULL;
1735 val = musb_readw(epio, MUSB_RXCSR);
1736 val &= ~(MUSB_RXCSR_DMAENAB
1737 | MUSB_RXCSR_H_AUTOREQ
1738 | MUSB_RXCSR_AUTOCLEAR);
1739 musb_writew(epio, MUSB_RXCSR, val);
1742 return done;
1744 #else
1745 static inline int musb_rx_dma_inventra_cppi41(struct dma_controller *dma,
1746 struct musb_hw_ep *hw_ep,
1747 struct musb_qh *qh,
1748 struct urb *urb,
1749 size_t len)
1751 return false;
1754 static inline int musb_rx_dma_in_inventra_cppi41(struct dma_controller *dma,
1755 struct musb_hw_ep *hw_ep,
1756 struct musb_qh *qh,
1757 struct urb *urb,
1758 size_t len,
1759 u8 iso_err)
1761 return false;
1763 #endif
1766 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1767 * and high-bandwidth IN transfer cases.
1769 void musb_host_rx(struct musb *musb, u8 epnum)
1771 struct urb *urb;
1772 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1773 struct dma_controller *c = musb->dma_controller;
1774 void __iomem *epio = hw_ep->regs;
1775 struct musb_qh *qh = hw_ep->in_qh;
1776 size_t xfer_len;
1777 void __iomem *mbase = musb->mregs;
1778 u16 rx_csr, val;
1779 bool iso_err = false;
1780 bool done = false;
1781 u32 status;
1782 struct dma_channel *dma;
1783 unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
1785 musb_ep_select(mbase, epnum);
1787 urb = next_urb(qh);
1788 dma = is_dma_capable() ? hw_ep->rx_channel : NULL;
1789 status = 0;
1790 xfer_len = 0;
1792 rx_csr = musb_readw(epio, MUSB_RXCSR);
1793 val = rx_csr;
1795 if (unlikely(!urb)) {
1796 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1797 * usbtest #11 (unlinks) triggers it regularly, sometimes
1798 * with fifo full. (Only with DMA??)
1800 musb_dbg(musb, "BOGUS RX%d ready, csr %04x, count %d",
1801 epnum, val, musb_readw(epio, MUSB_RXCOUNT));
1802 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1803 return;
1806 trace_musb_urb_rx(musb, urb);
1808 /* check for errors, concurrent stall & unlink is not really
1809 * handled yet! */
1810 if (rx_csr & MUSB_RXCSR_H_RXSTALL) {
1811 musb_dbg(musb, "RX end %d STALL", epnum);
1813 /* stall; record URB status */
1814 status = -EPIPE;
1816 } else if (rx_csr & MUSB_RXCSR_H_ERROR) {
1817 musb_dbg(musb, "end %d RX proto error", epnum);
1819 status = -EPROTO;
1820 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1822 rx_csr &= ~MUSB_RXCSR_H_ERROR;
1823 musb_writew(epio, MUSB_RXCSR, rx_csr);
1825 } else if (rx_csr & MUSB_RXCSR_DATAERROR) {
1827 if (USB_ENDPOINT_XFER_ISOC != qh->type) {
1828 musb_dbg(musb, "RX end %d NAK timeout", epnum);
1830 /* NOTE: NAKing is *NOT* an error, so we want to
1831 * continue. Except ... if there's a request for
1832 * another QH, use that instead of starving it.
1834 * Devices like Ethernet and serial adapters keep
1835 * reads posted at all times, which will starve
1836 * other devices without this logic.
1838 if (usb_pipebulk(urb->pipe)
1839 && qh->mux == 1
1840 && !list_is_singular(&musb->in_bulk)) {
1841 musb_bulk_nak_timeout(musb, hw_ep, 1);
1842 return;
1844 musb_ep_select(mbase, epnum);
1845 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1846 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1847 musb_writew(epio, MUSB_RXCSR, rx_csr);
1849 goto finish;
1850 } else {
1851 musb_dbg(musb, "RX end %d ISO data error", epnum);
1852 /* packet error reported later */
1853 iso_err = true;
1855 } else if (rx_csr & MUSB_RXCSR_INCOMPRX) {
1856 musb_dbg(musb, "end %d high bandwidth incomplete ISO packet RX",
1857 epnum);
1858 status = -EPROTO;
1861 /* faults abort the transfer */
1862 if (status) {
1863 /* clean up dma and collect transfer count */
1864 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1865 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1866 musb->dma_controller->channel_abort(dma);
1867 xfer_len = dma->actual_len;
1869 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1870 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1871 done = true;
1872 goto finish;
1875 if (unlikely(dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY)) {
1876 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1877 ERR("RX%d dma busy, csr %04x\n", epnum, rx_csr);
1878 goto finish;
1881 /* thorough shutdown for now ... given more precise fault handling
1882 * and better queueing support, we might keep a DMA pipeline going
1883 * while processing this irq for earlier completions.
1886 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1887 if (!musb_dma_inventra(musb) && !musb_dma_ux500(musb) &&
1888 (rx_csr & MUSB_RXCSR_H_REQPKT)) {
1889 /* REVISIT this happened for a while on some short reads...
1890 * the cleanup still needs investigation... looks bad...
1891 * and also duplicates dma cleanup code above ... plus,
1892 * shouldn't this be the "half full" double buffer case?
1894 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1895 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1896 musb->dma_controller->channel_abort(dma);
1897 xfer_len = dma->actual_len;
1898 done = true;
1901 musb_dbg(musb, "RXCSR%d %04x, reqpkt, len %zu%s", epnum, rx_csr,
1902 xfer_len, dma ? ", dma" : "");
1903 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
1905 musb_ep_select(mbase, epnum);
1906 musb_writew(epio, MUSB_RXCSR,
1907 MUSB_RXCSR_H_WZC_BITS | rx_csr);
1910 if (dma && (rx_csr & MUSB_RXCSR_DMAENAB)) {
1911 xfer_len = dma->actual_len;
1913 val &= ~(MUSB_RXCSR_DMAENAB
1914 | MUSB_RXCSR_H_AUTOREQ
1915 | MUSB_RXCSR_AUTOCLEAR
1916 | MUSB_RXCSR_RXPKTRDY);
1917 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1919 if (musb_dma_inventra(musb) || musb_dma_ux500(musb) ||
1920 musb_dma_cppi41(musb)) {
1921 done = musb_rx_dma_inventra_cppi41(c, hw_ep, qh, urb, xfer_len);
1922 musb_dbg(hw_ep->musb,
1923 "ep %d dma %s, rxcsr %04x, rxcount %d",
1924 epnum, done ? "off" : "reset",
1925 musb_readw(epio, MUSB_RXCSR),
1926 musb_readw(epio, MUSB_RXCOUNT));
1927 } else {
1928 done = true;
1931 } else if (urb->status == -EINPROGRESS) {
1932 /* if no errors, be sure a packet is ready for unloading */
1933 if (unlikely(!(rx_csr & MUSB_RXCSR_RXPKTRDY))) {
1934 status = -EPROTO;
1935 ERR("Rx interrupt with no errors or packet!\n");
1937 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1939 /* SCRUB (RX) */
1940 /* do the proper sequence to abort the transfer */
1941 musb_ep_select(mbase, epnum);
1942 val &= ~MUSB_RXCSR_H_REQPKT;
1943 musb_writew(epio, MUSB_RXCSR, val);
1944 goto finish;
1947 /* we are expecting IN packets */
1948 if ((musb_dma_inventra(musb) || musb_dma_ux500(musb) ||
1949 musb_dma_cppi41(musb)) && dma) {
1950 musb_dbg(hw_ep->musb,
1951 "RX%d count %d, buffer 0x%llx len %d/%d",
1952 epnum, musb_readw(epio, MUSB_RXCOUNT),
1953 (unsigned long long) urb->transfer_dma
1954 + urb->actual_length,
1955 qh->offset,
1956 urb->transfer_buffer_length);
1958 if (musb_rx_dma_in_inventra_cppi41(c, hw_ep, qh, urb,
1959 xfer_len, iso_err))
1960 goto finish;
1961 else
1962 dev_err(musb->controller, "error: rx_dma failed\n");
1965 if (!dma) {
1966 unsigned int received_len;
1968 /* Unmap the buffer so that CPU can use it */
1969 usb_hcd_unmap_urb_for_dma(musb->hcd, urb);
1972 * We need to map sg if the transfer_buffer is
1973 * NULL.
1975 if (!urb->transfer_buffer) {
1976 qh->use_sg = true;
1977 sg_miter_start(&qh->sg_miter, urb->sg, 1,
1978 sg_flags);
1981 if (qh->use_sg) {
1982 if (!sg_miter_next(&qh->sg_miter)) {
1983 dev_err(musb->controller, "error: sg list empty\n");
1984 sg_miter_stop(&qh->sg_miter);
1985 status = -EINVAL;
1986 done = true;
1987 goto finish;
1989 urb->transfer_buffer = qh->sg_miter.addr;
1990 received_len = urb->actual_length;
1991 qh->offset = 0x0;
1992 done = musb_host_packet_rx(musb, urb, epnum,
1993 iso_err);
1994 /* Calculate the number of bytes received */
1995 received_len = urb->actual_length -
1996 received_len;
1997 qh->sg_miter.consumed = received_len;
1998 sg_miter_stop(&qh->sg_miter);
1999 } else {
2000 done = musb_host_packet_rx(musb, urb,
2001 epnum, iso_err);
2003 musb_dbg(musb, "read %spacket", done ? "last " : "");
2007 finish:
2008 urb->actual_length += xfer_len;
2009 qh->offset += xfer_len;
2010 if (done) {
2011 if (qh->use_sg)
2012 qh->use_sg = false;
2014 if (urb->status == -EINPROGRESS)
2015 urb->status = status;
2016 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_IN);
2020 /* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
2021 * the software schedule associates multiple such nodes with a given
2022 * host side hardware endpoint + direction; scheduling may activate
2023 * that hardware endpoint.
2025 static int musb_schedule(
2026 struct musb *musb,
2027 struct musb_qh *qh,
2028 int is_in)
2030 int idle = 0;
2031 int best_diff;
2032 int best_end, epnum;
2033 struct musb_hw_ep *hw_ep = NULL;
2034 struct list_head *head = NULL;
2035 u8 toggle;
2036 u8 txtype;
2037 struct urb *urb = next_urb(qh);
2039 /* use fixed hardware for control and bulk */
2040 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
2041 head = &musb->control;
2042 hw_ep = musb->control_ep;
2043 goto success;
2046 /* else, periodic transfers get muxed to other endpoints */
2049 * We know this qh hasn't been scheduled, so all we need to do
2050 * is choose which hardware endpoint to put it on ...
2052 * REVISIT what we really want here is a regular schedule tree
2053 * like e.g. OHCI uses.
2055 best_diff = 4096;
2056 best_end = -1;
2058 for (epnum = 1, hw_ep = musb->endpoints + 1;
2059 epnum < musb->nr_endpoints;
2060 epnum++, hw_ep++) {
2061 int diff;
2063 if (musb_ep_get_qh(hw_ep, is_in) != NULL)
2064 continue;
2066 if (hw_ep == musb->bulk_ep)
2067 continue;
2069 if (is_in)
2070 diff = hw_ep->max_packet_sz_rx;
2071 else
2072 diff = hw_ep->max_packet_sz_tx;
2073 diff -= (qh->maxpacket * qh->hb_mult);
2075 if (diff >= 0 && best_diff > diff) {
2078 * Mentor controller has a bug in that if we schedule
2079 * a BULK Tx transfer on an endpoint that had earlier
2080 * handled ISOC then the BULK transfer has to start on
2081 * a zero toggle. If the BULK transfer starts on a 1
2082 * toggle then this transfer will fail as the mentor
2083 * controller starts the Bulk transfer on a 0 toggle
2084 * irrespective of the programming of the toggle bits
2085 * in the TXCSR register. Check for this condition
2086 * while allocating the EP for a Tx Bulk transfer. If
2087 * so skip this EP.
2089 hw_ep = musb->endpoints + epnum;
2090 toggle = usb_gettoggle(urb->dev, qh->epnum, !is_in);
2091 txtype = (musb_readb(hw_ep->regs, MUSB_TXTYPE)
2092 >> 4) & 0x3;
2093 if (!is_in && (qh->type == USB_ENDPOINT_XFER_BULK) &&
2094 toggle && (txtype == USB_ENDPOINT_XFER_ISOC))
2095 continue;
2097 best_diff = diff;
2098 best_end = epnum;
2101 /* use bulk reserved ep1 if no other ep is free */
2102 if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
2103 hw_ep = musb->bulk_ep;
2104 if (is_in)
2105 head = &musb->in_bulk;
2106 else
2107 head = &musb->out_bulk;
2109 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
2110 * multiplexed. This scheme does not work in high speed to full
2111 * speed scenario as NAK interrupts are not coming from a
2112 * full speed device connected to a high speed device.
2113 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2114 * 4 (8 frame or 8ms) for FS device.
2116 if (qh->dev)
2117 qh->intv_reg =
2118 (USB_SPEED_HIGH == qh->dev->speed) ? 8 : 4;
2119 goto success;
2120 } else if (best_end < 0) {
2121 dev_err(musb->controller,
2122 "%s hwep alloc failed for %dx%d\n",
2123 musb_ep_xfertype_string(qh->type),
2124 qh->hb_mult, qh->maxpacket);
2125 return -ENOSPC;
2128 idle = 1;
2129 qh->mux = 0;
2130 hw_ep = musb->endpoints + best_end;
2131 musb_dbg(musb, "qh %p periodic slot %d", qh, best_end);
2132 success:
2133 if (head) {
2134 idle = list_empty(head);
2135 list_add_tail(&qh->ring, head);
2136 qh->mux = 1;
2138 qh->hw_ep = hw_ep;
2139 qh->hep->hcpriv = qh;
2140 if (idle)
2141 musb_start_urb(musb, is_in, qh);
2142 return 0;
2145 static int musb_urb_enqueue(
2146 struct usb_hcd *hcd,
2147 struct urb *urb,
2148 gfp_t mem_flags)
2150 unsigned long flags;
2151 struct musb *musb = hcd_to_musb(hcd);
2152 struct usb_host_endpoint *hep = urb->ep;
2153 struct musb_qh *qh;
2154 struct usb_endpoint_descriptor *epd = &hep->desc;
2155 int ret;
2156 unsigned type_reg;
2157 unsigned interval;
2159 /* host role must be active */
2160 if (!is_host_active(musb) || !musb->is_active)
2161 return -ENODEV;
2163 trace_musb_urb_enq(musb, urb);
2165 spin_lock_irqsave(&musb->lock, flags);
2166 ret = usb_hcd_link_urb_to_ep(hcd, urb);
2167 qh = ret ? NULL : hep->hcpriv;
2168 if (qh)
2169 urb->hcpriv = qh;
2170 spin_unlock_irqrestore(&musb->lock, flags);
2172 /* DMA mapping was already done, if needed, and this urb is on
2173 * hep->urb_list now ... so we're done, unless hep wasn't yet
2174 * scheduled onto a live qh.
2176 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2177 * disabled, testing for empty qh->ring and avoiding qh setup costs
2178 * except for the first urb queued after a config change.
2180 if (qh || ret)
2181 return ret;
2183 /* Allocate and initialize qh, minimizing the work done each time
2184 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2186 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2187 * for bugs in other kernel code to break this driver...
2189 qh = kzalloc(sizeof *qh, mem_flags);
2190 if (!qh) {
2191 spin_lock_irqsave(&musb->lock, flags);
2192 usb_hcd_unlink_urb_from_ep(hcd, urb);
2193 spin_unlock_irqrestore(&musb->lock, flags);
2194 return -ENOMEM;
2197 qh->hep = hep;
2198 qh->dev = urb->dev;
2199 INIT_LIST_HEAD(&qh->ring);
2200 qh->is_ready = 1;
2202 qh->maxpacket = usb_endpoint_maxp(epd);
2203 qh->type = usb_endpoint_type(epd);
2205 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2206 * Some musb cores don't support high bandwidth ISO transfers; and
2207 * we don't (yet!) support high bandwidth interrupt transfers.
2209 qh->hb_mult = usb_endpoint_maxp_mult(epd);
2210 if (qh->hb_mult > 1) {
2211 int ok = (qh->type == USB_ENDPOINT_XFER_ISOC);
2213 if (ok)
2214 ok = (usb_pipein(urb->pipe) && musb->hb_iso_rx)
2215 || (usb_pipeout(urb->pipe) && musb->hb_iso_tx);
2216 if (!ok) {
2217 dev_err(musb->controller,
2218 "high bandwidth %s (%dx%d) not supported\n",
2219 musb_ep_xfertype_string(qh->type),
2220 qh->hb_mult, qh->maxpacket & 0x7ff);
2221 ret = -EMSGSIZE;
2222 goto done;
2224 qh->maxpacket &= 0x7ff;
2227 qh->epnum = usb_endpoint_num(epd);
2229 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2230 qh->addr_reg = (u8) usb_pipedevice(urb->pipe);
2232 /* precompute rxtype/txtype/type0 register */
2233 type_reg = (qh->type << 4) | qh->epnum;
2234 switch (urb->dev->speed) {
2235 case USB_SPEED_LOW:
2236 type_reg |= 0xc0;
2237 break;
2238 case USB_SPEED_FULL:
2239 type_reg |= 0x80;
2240 break;
2241 default:
2242 type_reg |= 0x40;
2244 qh->type_reg = type_reg;
2246 /* Precompute RXINTERVAL/TXINTERVAL register */
2247 switch (qh->type) {
2248 case USB_ENDPOINT_XFER_INT:
2250 * Full/low speeds use the linear encoding,
2251 * high speed uses the logarithmic encoding.
2253 if (urb->dev->speed <= USB_SPEED_FULL) {
2254 interval = max_t(u8, epd->bInterval, 1);
2255 break;
2257 /* FALLTHROUGH */
2258 case USB_ENDPOINT_XFER_ISOC:
2259 /* ISO always uses logarithmic encoding */
2260 interval = min_t(u8, epd->bInterval, 16);
2261 break;
2262 default:
2263 /* REVISIT we actually want to use NAK limits, hinting to the
2264 * transfer scheduling logic to try some other qh, e.g. try
2265 * for 2 msec first:
2267 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2269 * The downside of disabling this is that transfer scheduling
2270 * gets VERY unfair for nonperiodic transfers; a misbehaving
2271 * peripheral could make that hurt. That's perfectly normal
2272 * for reads from network or serial adapters ... so we have
2273 * partial NAKlimit support for bulk RX.
2275 * The upside of disabling it is simpler transfer scheduling.
2277 interval = 0;
2279 qh->intv_reg = interval;
2281 /* precompute addressing for external hub/tt ports */
2282 if (musb->is_multipoint) {
2283 struct usb_device *parent = urb->dev->parent;
2285 if (parent != hcd->self.root_hub) {
2286 qh->h_addr_reg = (u8) parent->devnum;
2288 /* set up tt info if needed */
2289 if (urb->dev->tt) {
2290 qh->h_port_reg = (u8) urb->dev->ttport;
2291 if (urb->dev->tt->hub)
2292 qh->h_addr_reg =
2293 (u8) urb->dev->tt->hub->devnum;
2294 if (urb->dev->tt->multi)
2295 qh->h_addr_reg |= 0x80;
2300 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2301 * until we get real dma queues (with an entry for each urb/buffer),
2302 * we only have work to do in the former case.
2304 spin_lock_irqsave(&musb->lock, flags);
2305 if (hep->hcpriv || !next_urb(qh)) {
2306 /* some concurrent activity submitted another urb to hep...
2307 * odd, rare, error prone, but legal.
2309 kfree(qh);
2310 qh = NULL;
2311 ret = 0;
2312 } else
2313 ret = musb_schedule(musb, qh,
2314 epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK);
2316 if (ret == 0) {
2317 urb->hcpriv = qh;
2318 /* FIXME set urb->start_frame for iso/intr, it's tested in
2319 * musb_start_urb(), but otherwise only konicawc cares ...
2322 spin_unlock_irqrestore(&musb->lock, flags);
2324 done:
2325 if (ret != 0) {
2326 spin_lock_irqsave(&musb->lock, flags);
2327 usb_hcd_unlink_urb_from_ep(hcd, urb);
2328 spin_unlock_irqrestore(&musb->lock, flags);
2329 kfree(qh);
2331 return ret;
2336 * abort a transfer that's at the head of a hardware queue.
2337 * called with controller locked, irqs blocked
2338 * that hardware queue advances to the next transfer, unless prevented
2340 static int musb_cleanup_urb(struct urb *urb, struct musb_qh *qh)
2342 struct musb_hw_ep *ep = qh->hw_ep;
2343 struct musb *musb = ep->musb;
2344 void __iomem *epio = ep->regs;
2345 unsigned hw_end = ep->epnum;
2346 void __iomem *regs = ep->musb->mregs;
2347 int is_in = usb_pipein(urb->pipe);
2348 int status = 0;
2349 u16 csr;
2350 struct dma_channel *dma = NULL;
2352 musb_ep_select(regs, hw_end);
2354 if (is_dma_capable()) {
2355 dma = is_in ? ep->rx_channel : ep->tx_channel;
2356 if (dma) {
2357 status = ep->musb->dma_controller->channel_abort(dma);
2358 musb_dbg(musb, "abort %cX%d DMA for urb %p --> %d",
2359 is_in ? 'R' : 'T', ep->epnum,
2360 urb, status);
2361 urb->actual_length += dma->actual_len;
2365 /* turn off DMA requests, discard state, stop polling ... */
2366 if (ep->epnum && is_in) {
2367 /* giveback saves bulk toggle */
2368 csr = musb_h_flush_rxfifo(ep, 0);
2370 /* clear the endpoint's irq status here to avoid bogus irqs */
2371 if (is_dma_capable() && dma)
2372 musb_platform_clear_ep_rxintr(musb, ep->epnum);
2373 } else if (ep->epnum) {
2374 musb_h_tx_flush_fifo(ep);
2375 csr = musb_readw(epio, MUSB_TXCSR);
2376 csr &= ~(MUSB_TXCSR_AUTOSET
2377 | MUSB_TXCSR_DMAENAB
2378 | MUSB_TXCSR_H_RXSTALL
2379 | MUSB_TXCSR_H_NAKTIMEOUT
2380 | MUSB_TXCSR_H_ERROR
2381 | MUSB_TXCSR_TXPKTRDY);
2382 musb_writew(epio, MUSB_TXCSR, csr);
2383 /* REVISIT may need to clear FLUSHFIFO ... */
2384 musb_writew(epio, MUSB_TXCSR, csr);
2385 /* flush cpu writebuffer */
2386 csr = musb_readw(epio, MUSB_TXCSR);
2387 } else {
2388 musb_h_ep0_flush_fifo(ep);
2390 if (status == 0)
2391 musb_advance_schedule(ep->musb, urb, ep, is_in);
2392 return status;
2395 static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2397 struct musb *musb = hcd_to_musb(hcd);
2398 struct musb_qh *qh;
2399 unsigned long flags;
2400 int is_in = usb_pipein(urb->pipe);
2401 int ret;
2403 trace_musb_urb_deq(musb, urb);
2405 spin_lock_irqsave(&musb->lock, flags);
2406 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
2407 if (ret)
2408 goto done;
2410 qh = urb->hcpriv;
2411 if (!qh)
2412 goto done;
2415 * Any URB not actively programmed into endpoint hardware can be
2416 * immediately given back; that's any URB not at the head of an
2417 * endpoint queue, unless someday we get real DMA queues. And even
2418 * if it's at the head, it might not be known to the hardware...
2420 * Otherwise abort current transfer, pending DMA, etc.; urb->status
2421 * has already been updated. This is a synchronous abort; it'd be
2422 * OK to hold off until after some IRQ, though.
2424 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
2426 if (!qh->is_ready
2427 || urb->urb_list.prev != &qh->hep->urb_list
2428 || musb_ep_get_qh(qh->hw_ep, is_in) != qh) {
2429 int ready = qh->is_ready;
2431 qh->is_ready = 0;
2432 musb_giveback(musb, urb, 0);
2433 qh->is_ready = ready;
2435 /* If nothing else (usually musb_giveback) is using it
2436 * and its URB list has emptied, recycle this qh.
2438 if (ready && list_empty(&qh->hep->urb_list)) {
2439 qh->hep->hcpriv = NULL;
2440 list_del(&qh->ring);
2441 kfree(qh);
2443 } else
2444 ret = musb_cleanup_urb(urb, qh);
2445 done:
2446 spin_unlock_irqrestore(&musb->lock, flags);
2447 return ret;
2450 /* disable an endpoint */
2451 static void
2452 musb_h_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
2454 u8 is_in = hep->desc.bEndpointAddress & USB_DIR_IN;
2455 unsigned long flags;
2456 struct musb *musb = hcd_to_musb(hcd);
2457 struct musb_qh *qh;
2458 struct urb *urb;
2460 spin_lock_irqsave(&musb->lock, flags);
2462 qh = hep->hcpriv;
2463 if (qh == NULL)
2464 goto exit;
2466 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
2468 /* Kick the first URB off the hardware, if needed */
2469 qh->is_ready = 0;
2470 if (musb_ep_get_qh(qh->hw_ep, is_in) == qh) {
2471 urb = next_urb(qh);
2473 /* make software (then hardware) stop ASAP */
2474 if (!urb->unlinked)
2475 urb->status = -ESHUTDOWN;
2477 /* cleanup */
2478 musb_cleanup_urb(urb, qh);
2480 /* Then nuke all the others ... and advance the
2481 * queue on hw_ep (e.g. bulk ring) when we're done.
2483 while (!list_empty(&hep->urb_list)) {
2484 urb = next_urb(qh);
2485 urb->status = -ESHUTDOWN;
2486 musb_advance_schedule(musb, urb, qh->hw_ep, is_in);
2488 } else {
2489 /* Just empty the queue; the hardware is busy with
2490 * other transfers, and since !qh->is_ready nothing
2491 * will activate any of these as it advances.
2493 while (!list_empty(&hep->urb_list))
2494 musb_giveback(musb, next_urb(qh), -ESHUTDOWN);
2496 hep->hcpriv = NULL;
2497 list_del(&qh->ring);
2498 kfree(qh);
2500 exit:
2501 spin_unlock_irqrestore(&musb->lock, flags);
2504 static int musb_h_get_frame_number(struct usb_hcd *hcd)
2506 struct musb *musb = hcd_to_musb(hcd);
2508 return musb_readw(musb->mregs, MUSB_FRAME);
2511 static int musb_h_start(struct usb_hcd *hcd)
2513 struct musb *musb = hcd_to_musb(hcd);
2515 /* NOTE: musb_start() is called when the hub driver turns
2516 * on port power, or when (OTG) peripheral starts.
2518 hcd->state = HC_STATE_RUNNING;
2519 musb->port1_status = 0;
2520 return 0;
2523 static void musb_h_stop(struct usb_hcd *hcd)
2525 musb_stop(hcd_to_musb(hcd));
2526 hcd->state = HC_STATE_HALT;
2529 static int musb_bus_suspend(struct usb_hcd *hcd)
2531 struct musb *musb = hcd_to_musb(hcd);
2532 u8 devctl;
2534 musb_port_suspend(musb, true);
2536 if (!is_host_active(musb))
2537 return 0;
2539 switch (musb->xceiv->otg->state) {
2540 case OTG_STATE_A_SUSPEND:
2541 return 0;
2542 case OTG_STATE_A_WAIT_VRISE:
2543 /* ID could be grounded even if there's no device
2544 * on the other end of the cable. NOTE that the
2545 * A_WAIT_VRISE timers are messy with MUSB...
2547 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2548 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
2549 musb->xceiv->otg->state = OTG_STATE_A_WAIT_BCON;
2550 break;
2551 default:
2552 break;
2555 if (musb->is_active) {
2556 WARNING("trying to suspend as %s while active\n",
2557 usb_otg_state_string(musb->xceiv->otg->state));
2558 return -EBUSY;
2559 } else
2560 return 0;
2563 static int musb_bus_resume(struct usb_hcd *hcd)
2565 struct musb *musb = hcd_to_musb(hcd);
2567 if (musb->config &&
2568 musb->config->host_port_deassert_reset_at_resume)
2569 musb_port_reset(musb, false);
2571 return 0;
2574 #ifndef CONFIG_MUSB_PIO_ONLY
2576 #define MUSB_USB_DMA_ALIGN 4
2578 struct musb_temp_buffer {
2579 void *kmalloc_ptr;
2580 void *old_xfer_buffer;
2581 u8 data[0];
2584 static void musb_free_temp_buffer(struct urb *urb)
2586 enum dma_data_direction dir;
2587 struct musb_temp_buffer *temp;
2588 size_t length;
2590 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
2591 return;
2593 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
2595 temp = container_of(urb->transfer_buffer, struct musb_temp_buffer,
2596 data);
2598 if (dir == DMA_FROM_DEVICE) {
2599 if (usb_pipeisoc(urb->pipe))
2600 length = urb->transfer_buffer_length;
2601 else
2602 length = urb->actual_length;
2604 memcpy(temp->old_xfer_buffer, temp->data, length);
2606 urb->transfer_buffer = temp->old_xfer_buffer;
2607 kfree(temp->kmalloc_ptr);
2609 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
2612 static int musb_alloc_temp_buffer(struct urb *urb, gfp_t mem_flags)
2614 enum dma_data_direction dir;
2615 struct musb_temp_buffer *temp;
2616 void *kmalloc_ptr;
2617 size_t kmalloc_size;
2619 if (urb->num_sgs || urb->sg ||
2620 urb->transfer_buffer_length == 0 ||
2621 !((uintptr_t)urb->transfer_buffer & (MUSB_USB_DMA_ALIGN - 1)))
2622 return 0;
2624 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
2626 /* Allocate a buffer with enough padding for alignment */
2627 kmalloc_size = urb->transfer_buffer_length +
2628 sizeof(struct musb_temp_buffer) + MUSB_USB_DMA_ALIGN - 1;
2630 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
2631 if (!kmalloc_ptr)
2632 return -ENOMEM;
2634 /* Position our struct temp_buffer such that data is aligned */
2635 temp = PTR_ALIGN(kmalloc_ptr, MUSB_USB_DMA_ALIGN);
2638 temp->kmalloc_ptr = kmalloc_ptr;
2639 temp->old_xfer_buffer = urb->transfer_buffer;
2640 if (dir == DMA_TO_DEVICE)
2641 memcpy(temp->data, urb->transfer_buffer,
2642 urb->transfer_buffer_length);
2643 urb->transfer_buffer = temp->data;
2645 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
2647 return 0;
2650 static int musb_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
2651 gfp_t mem_flags)
2653 struct musb *musb = hcd_to_musb(hcd);
2654 int ret;
2657 * The DMA engine in RTL1.8 and above cannot handle
2658 * DMA addresses that are not aligned to a 4 byte boundary.
2659 * For such engine implemented (un)map_urb_for_dma hooks.
2660 * Do not use these hooks for RTL<1.8
2662 if (musb->hwvers < MUSB_HWVERS_1800)
2663 return usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
2665 ret = musb_alloc_temp_buffer(urb, mem_flags);
2666 if (ret)
2667 return ret;
2669 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
2670 if (ret)
2671 musb_free_temp_buffer(urb);
2673 return ret;
2676 static void musb_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
2678 struct musb *musb = hcd_to_musb(hcd);
2680 usb_hcd_unmap_urb_for_dma(hcd, urb);
2682 /* Do not use this hook for RTL<1.8 (see description above) */
2683 if (musb->hwvers < MUSB_HWVERS_1800)
2684 return;
2686 musb_free_temp_buffer(urb);
2688 #endif /* !CONFIG_MUSB_PIO_ONLY */
2690 static const struct hc_driver musb_hc_driver = {
2691 .description = "musb-hcd",
2692 .product_desc = "MUSB HDRC host driver",
2693 .hcd_priv_size = sizeof(struct musb *),
2694 .flags = HCD_USB2 | HCD_MEMORY,
2696 /* not using irq handler or reset hooks from usbcore, since
2697 * those must be shared with peripheral code for OTG configs
2700 .start = musb_h_start,
2701 .stop = musb_h_stop,
2703 .get_frame_number = musb_h_get_frame_number,
2705 .urb_enqueue = musb_urb_enqueue,
2706 .urb_dequeue = musb_urb_dequeue,
2707 .endpoint_disable = musb_h_disable,
2709 #ifndef CONFIG_MUSB_PIO_ONLY
2710 .map_urb_for_dma = musb_map_urb_for_dma,
2711 .unmap_urb_for_dma = musb_unmap_urb_for_dma,
2712 #endif
2714 .hub_status_data = musb_hub_status_data,
2715 .hub_control = musb_hub_control,
2716 .bus_suspend = musb_bus_suspend,
2717 .bus_resume = musb_bus_resume,
2718 /* .start_port_reset = NULL, */
2719 /* .hub_irq_enable = NULL, */
2722 int musb_host_alloc(struct musb *musb)
2724 struct device *dev = musb->controller;
2726 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
2727 musb->hcd = usb_create_hcd(&musb_hc_driver, dev, dev_name(dev));
2728 if (!musb->hcd)
2729 return -EINVAL;
2731 *musb->hcd->hcd_priv = (unsigned long) musb;
2732 musb->hcd->self.uses_pio_for_control = 1;
2733 musb->hcd->uses_new_polling = 1;
2734 musb->hcd->has_tt = 1;
2736 return 0;
2739 void musb_host_cleanup(struct musb *musb)
2741 if (musb->port_mode == MUSB_PORT_MODE_GADGET)
2742 return;
2743 usb_remove_hcd(musb->hcd);
2746 void musb_host_free(struct musb *musb)
2748 usb_put_hcd(musb->hcd);
2751 int musb_host_setup(struct musb *musb, int power_budget)
2753 int ret;
2754 struct usb_hcd *hcd = musb->hcd;
2756 if (musb->port_mode == MUSB_PORT_MODE_HOST) {
2757 MUSB_HST_MODE(musb);
2758 musb->xceiv->otg->default_a = 1;
2759 musb->xceiv->otg->state = OTG_STATE_A_IDLE;
2761 otg_set_host(musb->xceiv->otg, &hcd->self);
2762 hcd->self.otg_port = 1;
2763 musb->xceiv->otg->host = &hcd->self;
2764 hcd->power_budget = 2 * (power_budget ? : 250);
2766 ret = usb_add_hcd(hcd, 0, 0);
2767 if (ret < 0)
2768 return ret;
2770 device_wakeup_enable(hcd->self.controller);
2771 return 0;
2774 void musb_host_resume_root_hub(struct musb *musb)
2776 usb_hcd_resume_root_hub(musb->hcd);
2779 void musb_host_poke_root_hub(struct musb *musb)
2781 MUSB_HST_MODE(musb);
2782 if (musb->hcd->status_urb)
2783 usb_hcd_poll_rh_status(musb->hcd);
2784 else
2785 usb_hcd_resume_root_hub(musb->hcd);