usb: musb: Remove ifdefs for TX DMA for musb_host.c
[linux-2.6-block.git] / drivers / usb / musb / musb_host.c
CommitLineData
550a7375
FB
1/*
2 * MUSB OTG driver host support
3 *
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
c7bbc056 7 * Copyright (C) 2008-2009 MontaVista Software, Inc. <source@mvista.com>
550a7375
FB
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
26 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
29 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
30 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36#include <linux/module.h>
37#include <linux/kernel.h>
38#include <linux/delay.h>
39#include <linux/sched.h>
40#include <linux/slab.h>
41#include <linux/errno.h>
550a7375 42#include <linux/list.h>
496dda70 43#include <linux/dma-mapping.h>
550a7375
FB
44
45#include "musb_core.h"
46#include "musb_host.h"
47
550a7375
FB
48/* MUSB HOST status 22-mar-2006
49 *
50 * - There's still lots of partial code duplication for fault paths, so
51 * they aren't handled as consistently as they need to be.
52 *
53 * - PIO mostly behaved when last tested.
54 * + including ep0, with all usbtest cases 9, 10
55 * + usbtest 14 (ep0out) doesn't seem to run at all
56 * + double buffered OUT/TX endpoints saw stalls(!) with certain usbtest
57 * configurations, but otherwise double buffering passes basic tests.
58 * + for 2.6.N, for N > ~10, needs API changes for hcd framework.
59 *
60 * - DMA (CPPI) ... partially behaves, not currently recommended
61 * + about 1/15 the speed of typical EHCI implementations (PCI)
62 * + RX, all too often reqpkt seems to misbehave after tx
63 * + TX, no known issues (other than evident silicon issue)
64 *
65 * - DMA (Mentor/OMAP) ...has at least toggle update problems
66 *
1e0320f0
AKG
67 * - [23-feb-2009] minimal traffic scheduling to avoid bulk RX packet
68 * starvation ... nothing yet for TX, interrupt, or bulk.
550a7375
FB
69 *
70 * - Not tested with HNP, but some SRP paths seem to behave.
71 *
72 * NOTE 24-August-2006:
73 *
74 * - Bulk traffic finally uses both sides of hardware ep1, freeing up an
75 * extra endpoint for periodic use enabling hub + keybd + mouse. That
76 * mostly works, except that with "usbnet" it's easy to trigger cases
77 * with "ping" where RX loses. (a) ping to davinci, even "ping -f",
78 * fine; but (b) ping _from_ davinci, even "ping -c 1", ICMP RX loses
79 * although ARP RX wins. (That test was done with a full speed link.)
80 */
81
82
83/*
84 * NOTE on endpoint usage:
85 *
86 * CONTROL transfers all go through ep0. BULK ones go through dedicated IN
87 * and OUT endpoints ... hardware is dedicated for those "async" queue(s).
550a7375 88 * (Yes, bulk _could_ use more of the endpoints than that, and would even
1e0320f0 89 * benefit from it.)
550a7375
FB
90 *
91 * INTERUPPT and ISOCHRONOUS transfers are scheduled to the other endpoints.
92 * So far that scheduling is both dumb and optimistic: the endpoint will be
93 * "claimed" until its software queue is no longer refilled. No multiplexing
94 * of transfers between endpoints, or anything clever.
95 */
96
74c2e936
DM
97struct musb *hcd_to_musb(struct usb_hcd *hcd)
98{
99 return *(struct musb **) hcd->hcd_priv;
100}
101
550a7375
FB
102
103static void musb_ep_program(struct musb *musb, u8 epnum,
6b6e9710
SS
104 struct urb *urb, int is_out,
105 u8 *buf, u32 offset, u32 len);
550a7375
FB
106
107/*
108 * Clear TX fifo. Needed to avoid BABBLE errors.
109 */
c767c1c6 110static void musb_h_tx_flush_fifo(struct musb_hw_ep *ep)
550a7375 111{
5c8a86e1 112 struct musb *musb = ep->musb;
550a7375
FB
113 void __iomem *epio = ep->regs;
114 u16 csr;
bb1c9ef1 115 u16 lastcsr = 0;
550a7375
FB
116 int retries = 1000;
117
118 csr = musb_readw(epio, MUSB_TXCSR);
119 while (csr & MUSB_TXCSR_FIFONOTEMPTY) {
bb1c9ef1 120 if (csr != lastcsr)
5c8a86e1 121 dev_dbg(musb->controller, "Host TX FIFONOTEMPTY csr: %02x\n", csr);
bb1c9ef1 122 lastcsr = csr;
2ccc6d30 123 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_TXPKTRDY;
550a7375
FB
124 musb_writew(epio, MUSB_TXCSR, csr);
125 csr = musb_readw(epio, MUSB_TXCSR);
bb1c9ef1
DB
126 if (WARN(retries-- < 1,
127 "Could not flush host TX%d fifo: csr: %04x\n",
128 ep->epnum, csr))
550a7375 129 return;
550a7375
FB
130 mdelay(1);
131 }
132}
133
78322c1a
DB
134static void musb_h_ep0_flush_fifo(struct musb_hw_ep *ep)
135{
136 void __iomem *epio = ep->regs;
137 u16 csr;
138 int retries = 5;
139
140 /* scrub any data left in the fifo */
141 do {
142 csr = musb_readw(epio, MUSB_TXCSR);
143 if (!(csr & (MUSB_CSR0_TXPKTRDY | MUSB_CSR0_RXPKTRDY)))
144 break;
145 musb_writew(epio, MUSB_TXCSR, MUSB_CSR0_FLUSHFIFO);
146 csr = musb_readw(epio, MUSB_TXCSR);
147 udelay(10);
148 } while (--retries);
149
150 WARN(!retries, "Could not flush host TX%d fifo: csr: %04x\n",
151 ep->epnum, csr);
152
153 /* and reset for the next transfer */
154 musb_writew(epio, MUSB_TXCSR, 0);
155}
156
550a7375
FB
157/*
158 * Start transmit. Caller is responsible for locking shared resources.
159 * musb must be locked.
160 */
161static inline void musb_h_tx_start(struct musb_hw_ep *ep)
162{
163 u16 txcsr;
164
165 /* NOTE: no locks here; caller should lock and select EP */
166 if (ep->epnum) {
167 txcsr = musb_readw(ep->regs, MUSB_TXCSR);
168 txcsr |= MUSB_TXCSR_TXPKTRDY | MUSB_TXCSR_H_WZC_BITS;
169 musb_writew(ep->regs, MUSB_TXCSR, txcsr);
170 } else {
171 txcsr = MUSB_CSR0_H_SETUPPKT | MUSB_CSR0_TXPKTRDY;
172 musb_writew(ep->regs, MUSB_CSR0, txcsr);
173 }
174
175}
176
c7bbc056 177static inline void musb_h_tx_dma_start(struct musb_hw_ep *ep)
550a7375
FB
178{
179 u16 txcsr;
180
181 /* NOTE: no locks here; caller should lock and select EP */
182 txcsr = musb_readw(ep->regs, MUSB_TXCSR);
183 txcsr |= MUSB_TXCSR_DMAENAB | MUSB_TXCSR_H_WZC_BITS;
f8e9f34f 184 if (is_cppi_enabled(ep->musb))
c7bbc056 185 txcsr |= MUSB_TXCSR_DMAMODE;
550a7375
FB
186 musb_writew(ep->regs, MUSB_TXCSR, txcsr);
187}
188
3e5c6dc7
SS
189static void musb_ep_set_qh(struct musb_hw_ep *ep, int is_in, struct musb_qh *qh)
190{
191 if (is_in != 0 || ep->is_shared_fifo)
192 ep->in_qh = qh;
193 if (is_in == 0 || ep->is_shared_fifo)
194 ep->out_qh = qh;
195}
196
197static struct musb_qh *musb_ep_get_qh(struct musb_hw_ep *ep, int is_in)
198{
199 return is_in ? ep->in_qh : ep->out_qh;
200}
201
550a7375
FB
202/*
203 * Start the URB at the front of an endpoint's queue
204 * end must be claimed from the caller.
205 *
206 * Context: controller locked, irqs blocked
207 */
208static void
209musb_start_urb(struct musb *musb, int is_in, struct musb_qh *qh)
210{
211 u16 frame;
212 u32 len;
550a7375
FB
213 void __iomem *mbase = musb->mregs;
214 struct urb *urb = next_urb(qh);
6b6e9710
SS
215 void *buf = urb->transfer_buffer;
216 u32 offset = 0;
550a7375
FB
217 struct musb_hw_ep *hw_ep = qh->hw_ep;
218 unsigned pipe = urb->pipe;
219 u8 address = usb_pipedevice(pipe);
220 int epnum = hw_ep->epnum;
221
222 /* initialize software qh state */
223 qh->offset = 0;
224 qh->segsize = 0;
225
226 /* gather right source of data */
227 switch (qh->type) {
228 case USB_ENDPOINT_XFER_CONTROL:
229 /* control transfers always start with SETUP */
230 is_in = 0;
550a7375
FB
231 musb->ep0_stage = MUSB_EP0_START;
232 buf = urb->setup_packet;
233 len = 8;
234 break;
235 case USB_ENDPOINT_XFER_ISOC:
236 qh->iso_idx = 0;
237 qh->frame = 0;
6b6e9710 238 offset = urb->iso_frame_desc[0].offset;
550a7375
FB
239 len = urb->iso_frame_desc[0].length;
240 break;
241 default: /* bulk, interrupt */
1e0320f0
AKG
242 /* actual_length may be nonzero on retry paths */
243 buf = urb->transfer_buffer + urb->actual_length;
244 len = urb->transfer_buffer_length - urb->actual_length;
550a7375
FB
245 }
246
5c8a86e1 247 dev_dbg(musb->controller, "qh %p urb %p dev%d ep%d%s%s, hw_ep %d, %p/%d\n",
550a7375
FB
248 qh, urb, address, qh->epnum,
249 is_in ? "in" : "out",
250 ({char *s; switch (qh->type) {
251 case USB_ENDPOINT_XFER_CONTROL: s = ""; break;
252 case USB_ENDPOINT_XFER_BULK: s = "-bulk"; break;
253 case USB_ENDPOINT_XFER_ISOC: s = "-iso"; break;
254 default: s = "-intr"; break;
2b84f92b 255 } s; }),
6b6e9710 256 epnum, buf + offset, len);
550a7375
FB
257
258 /* Configure endpoint */
3e5c6dc7 259 musb_ep_set_qh(hw_ep, is_in, qh);
6b6e9710 260 musb_ep_program(musb, epnum, urb, !is_in, buf, offset, len);
550a7375
FB
261
262 /* transmit may have more work: start it when it is time */
263 if (is_in)
264 return;
265
266 /* determine if the time is right for a periodic transfer */
267 switch (qh->type) {
268 case USB_ENDPOINT_XFER_ISOC:
269 case USB_ENDPOINT_XFER_INT:
5c8a86e1 270 dev_dbg(musb->controller, "check whether there's still time for periodic Tx\n");
550a7375
FB
271 frame = musb_readw(mbase, MUSB_FRAME);
272 /* FIXME this doesn't implement that scheduling policy ...
273 * or handle framecounter wrapping
274 */
8a1ea51f 275 if (1) { /* Always assume URB_ISO_ASAP */
550a7375
FB
276 /* REVISIT the SOF irq handler shouldn't duplicate
277 * this code; and we don't init urb->start_frame...
278 */
279 qh->frame = 0;
280 goto start;
281 } else {
282 qh->frame = urb->start_frame;
283 /* enable SOF interrupt so we can count down */
5c8a86e1 284 dev_dbg(musb->controller, "SOF for %d\n", epnum);
550a7375
FB
285#if 1 /* ifndef CONFIG_ARCH_DAVINCI */
286 musb_writeb(mbase, MUSB_INTRUSBE, 0xff);
287#endif
288 }
289 break;
290 default:
291start:
5c8a86e1 292 dev_dbg(musb->controller, "Start TX%d %s\n", epnum,
550a7375
FB
293 hw_ep->tx_channel ? "dma" : "pio");
294
295 if (!hw_ep->tx_channel)
296 musb_h_tx_start(hw_ep);
f8e9f34f 297 else if (is_cppi_enabled(musb) || tusb_dma_omap(musb))
c7bbc056 298 musb_h_tx_dma_start(hw_ep);
550a7375
FB
299 }
300}
301
c9cd06b3
SS
302/* Context: caller owns controller lock, IRQs are blocked */
303static void musb_giveback(struct musb *musb, struct urb *urb, int status)
550a7375
FB
304__releases(musb->lock)
305__acquires(musb->lock)
306{
5c8a86e1 307 dev_dbg(musb->controller,
bb1c9ef1
DB
308 "complete %p %pF (%d), dev%d ep%d%s, %d/%d\n",
309 urb, urb->complete, status,
550a7375
FB
310 usb_pipedevice(urb->pipe),
311 usb_pipeendpoint(urb->pipe),
312 usb_pipein(urb->pipe) ? "in" : "out",
313 urb->actual_length, urb->transfer_buffer_length
314 );
315
8b125df5 316 usb_hcd_unlink_urb_from_ep(musb->hcd, urb);
550a7375 317 spin_unlock(&musb->lock);
8b125df5 318 usb_hcd_giveback_urb(musb->hcd, urb, status);
550a7375
FB
319 spin_lock(&musb->lock);
320}
321
846099a6
SS
322/* For bulk/interrupt endpoints only */
323static inline void musb_save_toggle(struct musb_qh *qh, int is_in,
324 struct urb *urb)
550a7375 325{
846099a6 326 void __iomem *epio = qh->hw_ep->regs;
550a7375 327 u16 csr;
550a7375 328
846099a6
SS
329 /*
330 * FIXME: the current Mentor DMA code seems to have
550a7375
FB
331 * problems getting toggle correct.
332 */
333
846099a6
SS
334 if (is_in)
335 csr = musb_readw(epio, MUSB_RXCSR) & MUSB_RXCSR_H_DATATOGGLE;
550a7375 336 else
846099a6 337 csr = musb_readw(epio, MUSB_TXCSR) & MUSB_TXCSR_H_DATATOGGLE;
550a7375 338
846099a6 339 usb_settoggle(urb->dev, qh->epnum, !is_in, csr ? 1 : 0);
550a7375
FB
340}
341
c9cd06b3
SS
342/*
343 * Advance this hardware endpoint's queue, completing the specified URB and
344 * advancing to either the next URB queued to that qh, or else invalidating
345 * that qh and advancing to the next qh scheduled after the current one.
346 *
347 * Context: caller owns controller lock, IRQs are blocked
348 */
349static void musb_advance_schedule(struct musb *musb, struct urb *urb,
350 struct musb_hw_ep *hw_ep, int is_in)
550a7375 351{
c9cd06b3 352 struct musb_qh *qh = musb_ep_get_qh(hw_ep, is_in);
550a7375 353 struct musb_hw_ep *ep = qh->hw_ep;
550a7375 354 int ready = qh->is_ready;
c9cd06b3
SS
355 int status;
356
357 status = (urb->status == -EINPROGRESS) ? 0 : urb->status;
550a7375 358
550a7375
FB
359 /* save toggle eagerly, for paranoia */
360 switch (qh->type) {
361 case USB_ENDPOINT_XFER_BULK:
362 case USB_ENDPOINT_XFER_INT:
846099a6 363 musb_save_toggle(qh, is_in, urb);
550a7375
FB
364 break;
365 case USB_ENDPOINT_XFER_ISOC:
1fe975f9 366 if (status == 0 && urb->error_count)
550a7375
FB
367 status = -EXDEV;
368 break;
369 }
370
550a7375 371 qh->is_ready = 0;
c9cd06b3 372 musb_giveback(musb, urb, status);
550a7375
FB
373 qh->is_ready = ready;
374
375 /* reclaim resources (and bandwidth) ASAP; deschedule it, and
376 * invalidate qh as soon as list_empty(&hep->urb_list)
377 */
378 if (list_empty(&qh->hep->urb_list)) {
379 struct list_head *head;
8c778db9 380 struct dma_controller *dma = musb->dma_controller;
550a7375 381
8c778db9 382 if (is_in) {
550a7375 383 ep->rx_reinit = 1;
8c778db9
AKG
384 if (ep->rx_channel) {
385 dma->channel_release(ep->rx_channel);
386 ep->rx_channel = NULL;
387 }
388 } else {
550a7375 389 ep->tx_reinit = 1;
8c778db9
AKG
390 if (ep->tx_channel) {
391 dma->channel_release(ep->tx_channel);
392 ep->tx_channel = NULL;
393 }
394 }
550a7375 395
3e5c6dc7
SS
396 /* Clobber old pointers to this qh */
397 musb_ep_set_qh(ep, is_in, NULL);
550a7375
FB
398 qh->hep->hcpriv = NULL;
399
400 switch (qh->type) {
401
23d15e07
AKG
402 case USB_ENDPOINT_XFER_CONTROL:
403 case USB_ENDPOINT_XFER_BULK:
404 /* fifo policy for these lists, except that NAKing
405 * should rotate a qh to the end (for fairness).
406 */
407 if (qh->mux == 1) {
408 head = qh->ring.prev;
409 list_del(&qh->ring);
410 kfree(qh);
411 qh = first_qh(head);
412 break;
413 }
414
550a7375
FB
415 case USB_ENDPOINT_XFER_ISOC:
416 case USB_ENDPOINT_XFER_INT:
417 /* this is where periodic bandwidth should be
418 * de-allocated if it's tracked and allocated;
419 * and where we'd update the schedule tree...
420 */
550a7375
FB
421 kfree(qh);
422 qh = NULL;
423 break;
550a7375
FB
424 }
425 }
550a7375 426
a2fd814e 427 if (qh != NULL && qh->is_ready) {
5c8a86e1 428 dev_dbg(musb->controller, "... next ep%d %cX urb %p\n",
c9cd06b3 429 hw_ep->epnum, is_in ? 'R' : 'T', next_urb(qh));
550a7375
FB
430 musb_start_urb(musb, is_in, qh);
431 }
432}
433
c767c1c6 434static u16 musb_h_flush_rxfifo(struct musb_hw_ep *hw_ep, u16 csr)
550a7375
FB
435{
436 /* we don't want fifo to fill itself again;
437 * ignore dma (various models),
438 * leave toggle alone (may not have been saved yet)
439 */
440 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_RXPKTRDY;
441 csr &= ~(MUSB_RXCSR_H_REQPKT
442 | MUSB_RXCSR_H_AUTOREQ
443 | MUSB_RXCSR_AUTOCLEAR);
444
445 /* write 2x to allow double buffering */
446 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
447 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
448
449 /* flush writebuffer */
450 return musb_readw(hw_ep->regs, MUSB_RXCSR);
451}
452
453/*
454 * PIO RX for a packet (or part of it).
455 */
456static bool
457musb_host_packet_rx(struct musb *musb, struct urb *urb, u8 epnum, u8 iso_err)
458{
459 u16 rx_count;
460 u8 *buf;
461 u16 csr;
462 bool done = false;
463 u32 length;
464 int do_flush = 0;
465 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
466 void __iomem *epio = hw_ep->regs;
467 struct musb_qh *qh = hw_ep->in_qh;
468 int pipe = urb->pipe;
469 void *buffer = urb->transfer_buffer;
470
471 /* musb_ep_select(mbase, epnum); */
472 rx_count = musb_readw(epio, MUSB_RXCOUNT);
5c8a86e1 473 dev_dbg(musb->controller, "RX%d count %d, buffer %p len %d/%d\n", epnum, rx_count,
550a7375
FB
474 urb->transfer_buffer, qh->offset,
475 urb->transfer_buffer_length);
476
477 /* unload FIFO */
478 if (usb_pipeisoc(pipe)) {
479 int status = 0;
480 struct usb_iso_packet_descriptor *d;
481
482 if (iso_err) {
483 status = -EILSEQ;
484 urb->error_count++;
485 }
486
487 d = urb->iso_frame_desc + qh->iso_idx;
488 buf = buffer + d->offset;
489 length = d->length;
490 if (rx_count > length) {
491 if (status == 0) {
492 status = -EOVERFLOW;
493 urb->error_count++;
494 }
5c8a86e1 495 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
550a7375
FB
496 do_flush = 1;
497 } else
498 length = rx_count;
499 urb->actual_length += length;
500 d->actual_length = length;
501
502 d->status = status;
503
504 /* see if we are done */
505 done = (++qh->iso_idx >= urb->number_of_packets);
506 } else {
507 /* non-isoch */
508 buf = buffer + qh->offset;
509 length = urb->transfer_buffer_length - qh->offset;
510 if (rx_count > length) {
511 if (urb->status == -EINPROGRESS)
512 urb->status = -EOVERFLOW;
5c8a86e1 513 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
550a7375
FB
514 do_flush = 1;
515 } else
516 length = rx_count;
517 urb->actual_length += length;
518 qh->offset += length;
519
520 /* see if we are done */
521 done = (urb->actual_length == urb->transfer_buffer_length)
522 || (rx_count < qh->maxpacket)
523 || (urb->status != -EINPROGRESS);
524 if (done
525 && (urb->status == -EINPROGRESS)
526 && (urb->transfer_flags & URB_SHORT_NOT_OK)
527 && (urb->actual_length
528 < urb->transfer_buffer_length))
529 urb->status = -EREMOTEIO;
530 }
531
532 musb_read_fifo(hw_ep, length, buf);
533
534 csr = musb_readw(epio, MUSB_RXCSR);
535 csr |= MUSB_RXCSR_H_WZC_BITS;
536 if (unlikely(do_flush))
537 musb_h_flush_rxfifo(hw_ep, csr);
538 else {
539 /* REVISIT this assumes AUTOCLEAR is never set */
540 csr &= ~(MUSB_RXCSR_RXPKTRDY | MUSB_RXCSR_H_REQPKT);
541 if (!done)
542 csr |= MUSB_RXCSR_H_REQPKT;
543 musb_writew(epio, MUSB_RXCSR, csr);
544 }
545
546 return done;
547}
548
549/* we don't always need to reinit a given side of an endpoint...
550 * when we do, use tx/rx reinit routine and then construct a new CSR
551 * to address data toggle, NYET, and DMA or PIO.
552 *
553 * it's possible that driver bugs (especially for DMA) or aborting a
554 * transfer might have left the endpoint busier than it should be.
555 * the busy/not-empty tests are basically paranoia.
556 */
557static void
558musb_rx_reinit(struct musb *musb, struct musb_qh *qh, struct musb_hw_ep *ep)
559{
560 u16 csr;
561
562 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
563 * That always uses tx_reinit since ep0 repurposes TX register
564 * offsets; the initial SETUP packet is also a kind of OUT.
565 */
566
567 /* if programmed for Tx, put it in RX mode */
568 if (ep->is_shared_fifo) {
569 csr = musb_readw(ep->regs, MUSB_TXCSR);
570 if (csr & MUSB_TXCSR_MODE) {
571 musb_h_tx_flush_fifo(ep);
b6e434a5 572 csr = musb_readw(ep->regs, MUSB_TXCSR);
550a7375 573 musb_writew(ep->regs, MUSB_TXCSR,
b6e434a5 574 csr | MUSB_TXCSR_FRCDATATOG);
550a7375 575 }
b6e434a5
SS
576
577 /*
578 * Clear the MODE bit (and everything else) to enable Rx.
579 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
580 */
581 if (csr & MUSB_TXCSR_DMAMODE)
582 musb_writew(ep->regs, MUSB_TXCSR, MUSB_TXCSR_DMAMODE);
550a7375
FB
583 musb_writew(ep->regs, MUSB_TXCSR, 0);
584
585 /* scrub all previous state, clearing toggle */
586 } else {
587 csr = musb_readw(ep->regs, MUSB_RXCSR);
588 if (csr & MUSB_RXCSR_RXPKTRDY)
589 WARNING("rx%d, packet/%d ready?\n", ep->epnum,
590 musb_readw(ep->regs, MUSB_RXCOUNT));
591
592 musb_h_flush_rxfifo(ep, MUSB_RXCSR_CLRDATATOG);
593 }
594
595 /* target addr and (for multipoint) hub addr/port */
596 if (musb->is_multipoint) {
c6cf8b00
BW
597 musb_write_rxfunaddr(ep->target_regs, qh->addr_reg);
598 musb_write_rxhubaddr(ep->target_regs, qh->h_addr_reg);
599 musb_write_rxhubport(ep->target_regs, qh->h_port_reg);
600
550a7375
FB
601 } else
602 musb_writeb(musb->mregs, MUSB_FADDR, qh->addr_reg);
603
604 /* protocol/endpoint, interval/NAKlimit, i/o size */
605 musb_writeb(ep->regs, MUSB_RXTYPE, qh->type_reg);
606 musb_writeb(ep->regs, MUSB_RXINTERVAL, qh->intv_reg);
607 /* NOTE: bulk combining rewrites high bits of maxpacket */
9f445cb2
CC
608 /* Set RXMAXP with the FIFO size of the endpoint
609 * to disable double buffer mode.
610 */
06624818 611 if (musb->double_buffer_not_ok)
9f445cb2
CC
612 musb_writew(ep->regs, MUSB_RXMAXP, ep->max_packet_sz_rx);
613 else
614 musb_writew(ep->regs, MUSB_RXMAXP,
615 qh->maxpacket | ((qh->hb_mult - 1) << 11));
550a7375
FB
616
617 ep->rx_reinit = 0;
618}
619
754fe4a9 620static int musb_tx_dma_set_mode_mentor(struct dma_controller *dma,
6b6e9710 621 struct musb_hw_ep *hw_ep, struct musb_qh *qh,
754fe4a9
TL
622 struct urb *urb, u32 offset,
623 u32 *length, u8 *mode)
6b6e9710
SS
624{
625 struct dma_channel *channel = hw_ep->tx_channel;
626 void __iomem *epio = hw_ep->regs;
627 u16 pkt_size = qh->maxpacket;
628 u16 csr;
6b6e9710 629
754fe4a9
TL
630 if (*length > channel->max_len)
631 *length = channel->max_len;
6b6e9710
SS
632
633 csr = musb_readw(epio, MUSB_TXCSR);
754fe4a9
TL
634 if (*length > pkt_size) {
635 *mode = 1;
a483d706
AKG
636 csr |= MUSB_TXCSR_DMAMODE | MUSB_TXCSR_DMAENAB;
637 /* autoset shouldn't be set in high bandwidth */
f2786281 638 /*
639 * Enable Autoset according to table
640 * below
641 * bulk_split hb_mult Autoset_Enable
642 * 0 1 Yes(Normal)
643 * 0 >1 No(High BW ISO)
644 * 1 1 Yes(HS bulk)
645 * 1 >1 Yes(FS bulk)
646 */
647 if (qh->hb_mult == 1 || (qh->hb_mult > 1 &&
648 can_bulk_split(hw_ep->musb, qh->type)))
a483d706 649 csr |= MUSB_TXCSR_AUTOSET;
6b6e9710 650 } else {
754fe4a9 651 *mode = 0;
6b6e9710
SS
652 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAMODE);
653 csr |= MUSB_TXCSR_DMAENAB; /* against programmer's guide */
654 }
655 channel->desired_mode = mode;
656 musb_writew(epio, MUSB_TXCSR, csr);
754fe4a9
TL
657
658 return 0;
659}
660
661static int musb_tx_dma_set_mode_cppi_tusb(struct dma_controller *dma,
662 struct musb_hw_ep *hw_ep,
663 struct musb_qh *qh,
664 struct urb *urb,
665 u32 offset,
666 u32 *length,
667 u8 *mode)
668{
669 struct dma_channel *channel = hw_ep->tx_channel;
670
f8e9f34f 671 if (!is_cppi_enabled(hw_ep->musb) && !tusb_dma_omap(hw_ep->musb))
754fe4a9 672 return -ENODEV;
6b6e9710
SS
673
674 channel->actual_len = 0;
675
676 /*
677 * TX uses "RNDIS" mode automatically but needs help
678 * to identify the zero-length-final-packet case.
679 */
754fe4a9
TL
680 *mode = (urb->transfer_flags & URB_ZERO_PACKET) ? 1 : 0;
681
682 return 0;
683}
684
685static bool musb_tx_dma_program(struct dma_controller *dma,
686 struct musb_hw_ep *hw_ep, struct musb_qh *qh,
687 struct urb *urb, u32 offset, u32 length)
688{
689 struct dma_channel *channel = hw_ep->tx_channel;
690 u16 pkt_size = qh->maxpacket;
691 u8 mode;
692 int res;
693
694 if (musb_dma_inventra(hw_ep->musb) || musb_dma_ux500(hw_ep->musb))
695 res = musb_tx_dma_set_mode_mentor(dma, hw_ep, qh, urb,
696 offset, &length, &mode);
697 else
698 res = musb_tx_dma_set_mode_cppi_tusb(dma, hw_ep, qh, urb,
699 offset, &length, &mode);
700 if (res)
701 return false;
6b6e9710
SS
702
703 qh->segsize = length;
704
4c647338
SS
705 /*
706 * Ensure the data reaches to main memory before starting
707 * DMA transfer
708 */
709 wmb();
710
6b6e9710
SS
711 if (!dma->channel_program(channel, pkt_size, mode,
712 urb->transfer_dma + offset, length)) {
754fe4a9
TL
713 void __iomem *epio = hw_ep->regs;
714 u16 csr;
715
6b6e9710
SS
716 dma->channel_release(channel);
717 hw_ep->tx_channel = NULL;
718
719 csr = musb_readw(epio, MUSB_TXCSR);
720 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAENAB);
721 musb_writew(epio, MUSB_TXCSR, csr | MUSB_TXCSR_H_WZC_BITS);
722 return false;
723 }
724 return true;
725}
550a7375
FB
726
727/*
728 * Program an HDRC endpoint as per the given URB
729 * Context: irqs blocked, controller lock held
730 */
731static void musb_ep_program(struct musb *musb, u8 epnum,
6b6e9710
SS
732 struct urb *urb, int is_out,
733 u8 *buf, u32 offset, u32 len)
550a7375
FB
734{
735 struct dma_controller *dma_controller;
736 struct dma_channel *dma_channel;
737 u8 dma_ok;
738 void __iomem *mbase = musb->mregs;
739 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
740 void __iomem *epio = hw_ep->regs;
3e5c6dc7
SS
741 struct musb_qh *qh = musb_ep_get_qh(hw_ep, !is_out);
742 u16 packet_sz = qh->maxpacket;
3132122c
AKG
743 u8 use_dma = 1;
744 u16 csr;
550a7375 745
5c8a86e1 746 dev_dbg(musb->controller, "%s hw%d urb %p spd%d dev%d ep%d%s "
550a7375
FB
747 "h_addr%02x h_port%02x bytes %d\n",
748 is_out ? "-->" : "<--",
749 epnum, urb, urb->dev->speed,
750 qh->addr_reg, qh->epnum, is_out ? "out" : "in",
751 qh->h_addr_reg, qh->h_port_reg,
752 len);
753
754 musb_ep_select(mbase, epnum);
755
3132122c
AKG
756 if (is_out && !len) {
757 use_dma = 0;
758 csr = musb_readw(epio, MUSB_TXCSR);
759 csr &= ~MUSB_TXCSR_DMAENAB;
760 musb_writew(epio, MUSB_TXCSR, csr);
761 hw_ep->tx_channel = NULL;
762 }
763
550a7375
FB
764 /* candidate for DMA? */
765 dma_controller = musb->dma_controller;
3132122c 766 if (use_dma && is_dma_capable() && epnum && dma_controller) {
550a7375
FB
767 dma_channel = is_out ? hw_ep->tx_channel : hw_ep->rx_channel;
768 if (!dma_channel) {
769 dma_channel = dma_controller->channel_alloc(
770 dma_controller, hw_ep, is_out);
771 if (is_out)
772 hw_ep->tx_channel = dma_channel;
773 else
774 hw_ep->rx_channel = dma_channel;
775 }
776 } else
777 dma_channel = NULL;
778
779 /* make sure we clear DMAEnab, autoSet bits from previous run */
780
781 /* OUT/transmit/EP0 or IN/receive? */
782 if (is_out) {
783 u16 csr;
784 u16 int_txe;
785 u16 load_count;
786
787 csr = musb_readw(epio, MUSB_TXCSR);
788
789 /* disable interrupt in case we flush */
b18d26f6 790 int_txe = musb->intrtxe;
550a7375
FB
791 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
792
793 /* general endpoint setup */
794 if (epnum) {
550a7375 795 /* flush all old state, set default */
a70b8442 796 /*
797 * We could be flushing valid
798 * packets in double buffering
799 * case
800 */
801 if (!hw_ep->tx_double_buffered)
802 musb_h_tx_flush_fifo(hw_ep);
b6e434a5
SS
803
804 /*
805 * We must not clear the DMAMODE bit before or in
806 * the same cycle with the DMAENAB bit, so we clear
807 * the latter first...
808 */
550a7375 809 csr &= ~(MUSB_TXCSR_H_NAKTIMEOUT
b6e434a5
SS
810 | MUSB_TXCSR_AUTOSET
811 | MUSB_TXCSR_DMAENAB
550a7375
FB
812 | MUSB_TXCSR_FRCDATATOG
813 | MUSB_TXCSR_H_RXSTALL
814 | MUSB_TXCSR_H_ERROR
815 | MUSB_TXCSR_TXPKTRDY
816 );
817 csr |= MUSB_TXCSR_MODE;
818
a70b8442 819 if (!hw_ep->tx_double_buffered) {
820 if (usb_gettoggle(urb->dev, qh->epnum, 1))
821 csr |= MUSB_TXCSR_H_WR_DATATOGGLE
822 | MUSB_TXCSR_H_DATATOGGLE;
823 else
824 csr |= MUSB_TXCSR_CLRDATATOG;
825 }
550a7375 826
550a7375
FB
827 musb_writew(epio, MUSB_TXCSR, csr);
828 /* REVISIT may need to clear FLUSHFIFO ... */
b6e434a5 829 csr &= ~MUSB_TXCSR_DMAMODE;
550a7375
FB
830 musb_writew(epio, MUSB_TXCSR, csr);
831 csr = musb_readw(epio, MUSB_TXCSR);
832 } else {
833 /* endpoint 0: just flush */
78322c1a 834 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
835 }
836
837 /* target addr and (for multipoint) hub addr/port */
838 if (musb->is_multipoint) {
c6cf8b00
BW
839 musb_write_txfunaddr(mbase, epnum, qh->addr_reg);
840 musb_write_txhubaddr(mbase, epnum, qh->h_addr_reg);
841 musb_write_txhubport(mbase, epnum, qh->h_port_reg);
550a7375
FB
842/* FIXME if !epnum, do the same for RX ... */
843 } else
844 musb_writeb(mbase, MUSB_FADDR, qh->addr_reg);
845
846 /* protocol/endpoint/interval/NAKlimit */
847 if (epnum) {
848 musb_writeb(epio, MUSB_TXTYPE, qh->type_reg);
f2786281 849 if (musb->double_buffer_not_ok) {
550a7375 850 musb_writew(epio, MUSB_TXMAXP,
06624818 851 hw_ep->max_packet_sz_tx);
f2786281 852 } else if (can_bulk_split(musb, qh->type)) {
853 qh->hb_mult = hw_ep->max_packet_sz_tx
854 / packet_sz;
ccc080c7 855 musb_writew(epio, MUSB_TXMAXP, packet_sz
f2786281 856 | ((qh->hb_mult) - 1) << 11);
857 } else {
550a7375 858 musb_writew(epio, MUSB_TXMAXP,
06624818
FB
859 qh->maxpacket |
860 ((qh->hb_mult - 1) << 11));
f2786281 861 }
550a7375
FB
862 musb_writeb(epio, MUSB_TXINTERVAL, qh->intv_reg);
863 } else {
864 musb_writeb(epio, MUSB_NAKLIMIT0, qh->intv_reg);
865 if (musb->is_multipoint)
866 musb_writeb(epio, MUSB_TYPE0,
867 qh->type_reg);
868 }
869
870 if (can_bulk_split(musb, qh->type))
871 load_count = min((u32) hw_ep->max_packet_sz_tx,
872 len);
873 else
874 load_count = min((u32) packet_sz, len);
875
6b6e9710
SS
876 if (dma_channel && musb_tx_dma_program(dma_controller,
877 hw_ep, qh, urb, offset, len))
878 load_count = 0;
550a7375
FB
879
880 if (load_count) {
550a7375
FB
881 /* PIO to load FIFO */
882 qh->segsize = load_count;
8e8a5516
VS
883 if (!buf) {
884 sg_miter_start(&qh->sg_miter, urb->sg, 1,
885 SG_MITER_ATOMIC
886 | SG_MITER_FROM_SG);
887 if (!sg_miter_next(&qh->sg_miter)) {
888 dev_err(musb->controller,
889 "error: sg"
890 "list empty\n");
891 sg_miter_stop(&qh->sg_miter);
892 goto finish;
893 }
894 buf = qh->sg_miter.addr + urb->sg->offset +
895 urb->actual_length;
896 load_count = min_t(u32, load_count,
897 qh->sg_miter.length);
898 musb_write_fifo(hw_ep, load_count, buf);
899 qh->sg_miter.consumed = load_count;
900 sg_miter_stop(&qh->sg_miter);
901 } else
902 musb_write_fifo(hw_ep, load_count, buf);
550a7375 903 }
8e8a5516 904finish:
550a7375
FB
905 /* re-enable interrupt */
906 musb_writew(mbase, MUSB_INTRTXE, int_txe);
907
908 /* IN/receive */
909 } else {
910 u16 csr;
911
912 if (hw_ep->rx_reinit) {
913 musb_rx_reinit(musb, qh, hw_ep);
914
915 /* init new state: toggle and NYET, maybe DMA later */
916 if (usb_gettoggle(urb->dev, qh->epnum, 0))
917 csr = MUSB_RXCSR_H_WR_DATATOGGLE
918 | MUSB_RXCSR_H_DATATOGGLE;
919 else
920 csr = 0;
921 if (qh->type == USB_ENDPOINT_XFER_INT)
922 csr |= MUSB_RXCSR_DISNYET;
923
924 } else {
925 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
926
927 if (csr & (MUSB_RXCSR_RXPKTRDY
928 | MUSB_RXCSR_DMAENAB
929 | MUSB_RXCSR_H_REQPKT))
930 ERR("broken !rx_reinit, ep%d csr %04x\n",
931 hw_ep->epnum, csr);
932
933 /* scrub any stale state, leaving toggle alone */
934 csr &= MUSB_RXCSR_DISNYET;
935 }
936
937 /* kick things off */
938
f8e9f34f 939 if ((is_cppi_enabled(musb) || tusb_dma_omap(musb)) && dma_channel) {
c51e36dc
SS
940 /* Candidate for DMA */
941 dma_channel->actual_len = 0L;
942 qh->segsize = len;
943
944 /* AUTOREQ is in a DMA register */
945 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
946 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
947
948 /*
949 * Unless caller treats short RX transfers as
950 * errors, we dare not queue multiple transfers.
951 */
952 dma_ok = dma_controller->channel_program(dma_channel,
953 packet_sz, !(urb->transfer_flags &
954 URB_SHORT_NOT_OK),
955 urb->transfer_dma + offset,
956 qh->segsize);
957 if (!dma_ok) {
958 dma_controller->channel_release(dma_channel);
959 hw_ep->rx_channel = dma_channel = NULL;
960 } else
961 csr |= MUSB_RXCSR_DMAENAB;
550a7375
FB
962 }
963
964 csr |= MUSB_RXCSR_H_REQPKT;
5c8a86e1 965 dev_dbg(musb->controller, "RXCSR%d := %04x\n", epnum, csr);
550a7375
FB
966 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
967 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
968 }
969}
970
f283862f
AKG
971/* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
972 * the end; avoids starvation for other endpoints.
973 */
974static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
975 int is_in)
976{
977 struct dma_channel *dma;
978 struct urb *urb;
979 void __iomem *mbase = musb->mregs;
980 void __iomem *epio = ep->regs;
981 struct musb_qh *cur_qh, *next_qh;
982 u16 rx_csr, tx_csr;
983
984 musb_ep_select(mbase, ep->epnum);
985 if (is_in) {
986 dma = is_dma_capable() ? ep->rx_channel : NULL;
987
988 /* clear nak timeout bit */
989 rx_csr = musb_readw(epio, MUSB_RXCSR);
990 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
991 rx_csr &= ~MUSB_RXCSR_DATAERROR;
992 musb_writew(epio, MUSB_RXCSR, rx_csr);
993
994 cur_qh = first_qh(&musb->in_bulk);
995 } else {
996 dma = is_dma_capable() ? ep->tx_channel : NULL;
997
998 /* clear nak timeout bit */
999 tx_csr = musb_readw(epio, MUSB_TXCSR);
1000 tx_csr |= MUSB_TXCSR_H_WZC_BITS;
1001 tx_csr &= ~MUSB_TXCSR_H_NAKTIMEOUT;
1002 musb_writew(epio, MUSB_TXCSR, tx_csr);
1003
1004 cur_qh = first_qh(&musb->out_bulk);
1005 }
1006 if (cur_qh) {
1007 urb = next_urb(cur_qh);
1008 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1009 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1010 musb->dma_controller->channel_abort(dma);
1011 urb->actual_length += dma->actual_len;
1012 dma->actual_len = 0L;
1013 }
1014 musb_save_toggle(cur_qh, is_in, urb);
1015
1016 if (is_in) {
1017 /* move cur_qh to end of queue */
1018 list_move_tail(&cur_qh->ring, &musb->in_bulk);
1019
1020 /* get the next qh from musb->in_bulk */
1021 next_qh = first_qh(&musb->in_bulk);
1022
1023 /* set rx_reinit and schedule the next qh */
1024 ep->rx_reinit = 1;
1025 } else {
1026 /* move cur_qh to end of queue */
1027 list_move_tail(&cur_qh->ring, &musb->out_bulk);
1028
1029 /* get the next qh from musb->out_bulk */
1030 next_qh = first_qh(&musb->out_bulk);
1031
1032 /* set tx_reinit and schedule the next qh */
1033 ep->tx_reinit = 1;
1034 }
1035 musb_start_urb(musb, is_in, next_qh);
1036 }
1037}
550a7375
FB
1038
1039/*
1040 * Service the default endpoint (ep0) as host.
1041 * Return true until it's time to start the status stage.
1042 */
1043static bool musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb)
1044{
1045 bool more = false;
1046 u8 *fifo_dest = NULL;
1047 u16 fifo_count = 0;
1048 struct musb_hw_ep *hw_ep = musb->control_ep;
1049 struct musb_qh *qh = hw_ep->in_qh;
1050 struct usb_ctrlrequest *request;
1051
1052 switch (musb->ep0_stage) {
1053 case MUSB_EP0_IN:
1054 fifo_dest = urb->transfer_buffer + urb->actual_length;
3ecdb9ac
SS
1055 fifo_count = min_t(size_t, len, urb->transfer_buffer_length -
1056 urb->actual_length);
550a7375
FB
1057 if (fifo_count < len)
1058 urb->status = -EOVERFLOW;
1059
1060 musb_read_fifo(hw_ep, fifo_count, fifo_dest);
1061
1062 urb->actual_length += fifo_count;
1063 if (len < qh->maxpacket) {
1064 /* always terminate on short read; it's
1065 * rarely reported as an error.
1066 */
1067 } else if (urb->actual_length <
1068 urb->transfer_buffer_length)
1069 more = true;
1070 break;
1071 case MUSB_EP0_START:
1072 request = (struct usb_ctrlrequest *) urb->setup_packet;
1073
1074 if (!request->wLength) {
5c8a86e1 1075 dev_dbg(musb->controller, "start no-DATA\n");
550a7375
FB
1076 break;
1077 } else if (request->bRequestType & USB_DIR_IN) {
5c8a86e1 1078 dev_dbg(musb->controller, "start IN-DATA\n");
550a7375
FB
1079 musb->ep0_stage = MUSB_EP0_IN;
1080 more = true;
1081 break;
1082 } else {
5c8a86e1 1083 dev_dbg(musb->controller, "start OUT-DATA\n");
550a7375
FB
1084 musb->ep0_stage = MUSB_EP0_OUT;
1085 more = true;
1086 }
1087 /* FALLTHROUGH */
1088 case MUSB_EP0_OUT:
3ecdb9ac
SS
1089 fifo_count = min_t(size_t, qh->maxpacket,
1090 urb->transfer_buffer_length -
1091 urb->actual_length);
550a7375
FB
1092 if (fifo_count) {
1093 fifo_dest = (u8 *) (urb->transfer_buffer
1094 + urb->actual_length);
5c8a86e1 1095 dev_dbg(musb->controller, "Sending %d byte%s to ep0 fifo %p\n",
bb1c9ef1
DB
1096 fifo_count,
1097 (fifo_count == 1) ? "" : "s",
1098 fifo_dest);
550a7375
FB
1099 musb_write_fifo(hw_ep, fifo_count, fifo_dest);
1100
1101 urb->actual_length += fifo_count;
1102 more = true;
1103 }
1104 break;
1105 default:
1106 ERR("bogus ep0 stage %d\n", musb->ep0_stage);
1107 break;
1108 }
1109
1110 return more;
1111}
1112
1113/*
1114 * Handle default endpoint interrupt as host. Only called in IRQ time
c767c1c6 1115 * from musb_interrupt().
550a7375
FB
1116 *
1117 * called with controller irqlocked
1118 */
1119irqreturn_t musb_h_ep0_irq(struct musb *musb)
1120{
1121 struct urb *urb;
1122 u16 csr, len;
1123 int status = 0;
1124 void __iomem *mbase = musb->mregs;
1125 struct musb_hw_ep *hw_ep = musb->control_ep;
1126 void __iomem *epio = hw_ep->regs;
1127 struct musb_qh *qh = hw_ep->in_qh;
1128 bool complete = false;
1129 irqreturn_t retval = IRQ_NONE;
1130
1131 /* ep0 only has one queue, "in" */
1132 urb = next_urb(qh);
1133
1134 musb_ep_select(mbase, 0);
1135 csr = musb_readw(epio, MUSB_CSR0);
1136 len = (csr & MUSB_CSR0_RXPKTRDY)
1137 ? musb_readb(epio, MUSB_COUNT0)
1138 : 0;
1139
5c8a86e1 1140 dev_dbg(musb->controller, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
550a7375
FB
1141 csr, qh, len, urb, musb->ep0_stage);
1142
1143 /* if we just did status stage, we are done */
1144 if (MUSB_EP0_STATUS == musb->ep0_stage) {
1145 retval = IRQ_HANDLED;
1146 complete = true;
1147 }
1148
1149 /* prepare status */
1150 if (csr & MUSB_CSR0_H_RXSTALL) {
5c8a86e1 1151 dev_dbg(musb->controller, "STALLING ENDPOINT\n");
550a7375
FB
1152 status = -EPIPE;
1153
1154 } else if (csr & MUSB_CSR0_H_ERROR) {
5c8a86e1 1155 dev_dbg(musb->controller, "no response, csr0 %04x\n", csr);
550a7375
FB
1156 status = -EPROTO;
1157
1158 } else if (csr & MUSB_CSR0_H_NAKTIMEOUT) {
5c8a86e1 1159 dev_dbg(musb->controller, "control NAK timeout\n");
550a7375
FB
1160
1161 /* NOTE: this code path would be a good place to PAUSE a
1162 * control transfer, if another one is queued, so that
1e0320f0
AKG
1163 * ep0 is more likely to stay busy. That's already done
1164 * for bulk RX transfers.
550a7375
FB
1165 *
1166 * if (qh->ring.next != &musb->control), then
1167 * we have a candidate... NAKing is *NOT* an error
1168 */
1169 musb_writew(epio, MUSB_CSR0, 0);
1170 retval = IRQ_HANDLED;
1171 }
1172
1173 if (status) {
5c8a86e1 1174 dev_dbg(musb->controller, "aborting\n");
550a7375
FB
1175 retval = IRQ_HANDLED;
1176 if (urb)
1177 urb->status = status;
1178 complete = true;
1179
1180 /* use the proper sequence to abort the transfer */
1181 if (csr & MUSB_CSR0_H_REQPKT) {
1182 csr &= ~MUSB_CSR0_H_REQPKT;
1183 musb_writew(epio, MUSB_CSR0, csr);
1184 csr &= ~MUSB_CSR0_H_NAKTIMEOUT;
1185 musb_writew(epio, MUSB_CSR0, csr);
1186 } else {
78322c1a 1187 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
1188 }
1189
1190 musb_writeb(epio, MUSB_NAKLIMIT0, 0);
1191
1192 /* clear it */
1193 musb_writew(epio, MUSB_CSR0, 0);
1194 }
1195
1196 if (unlikely(!urb)) {
1197 /* stop endpoint since we have no place for its data, this
1198 * SHOULD NEVER HAPPEN! */
1199 ERR("no URB for end 0\n");
1200
78322c1a 1201 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
1202 goto done;
1203 }
1204
1205 if (!complete) {
1206 /* call common logic and prepare response */
1207 if (musb_h_ep0_continue(musb, len, urb)) {
1208 /* more packets required */
1209 csr = (MUSB_EP0_IN == musb->ep0_stage)
1210 ? MUSB_CSR0_H_REQPKT : MUSB_CSR0_TXPKTRDY;
1211 } else {
1212 /* data transfer complete; perform status phase */
1213 if (usb_pipeout(urb->pipe)
1214 || !urb->transfer_buffer_length)
1215 csr = MUSB_CSR0_H_STATUSPKT
1216 | MUSB_CSR0_H_REQPKT;
1217 else
1218 csr = MUSB_CSR0_H_STATUSPKT
1219 | MUSB_CSR0_TXPKTRDY;
1220
3c4653c1
AKG
1221 /* disable ping token in status phase */
1222 csr |= MUSB_CSR0_H_DIS_PING;
1223
550a7375
FB
1224 /* flag status stage */
1225 musb->ep0_stage = MUSB_EP0_STATUS;
1226
5c8a86e1 1227 dev_dbg(musb->controller, "ep0 STATUS, csr %04x\n", csr);
550a7375
FB
1228
1229 }
1230 musb_writew(epio, MUSB_CSR0, csr);
1231 retval = IRQ_HANDLED;
1232 } else
1233 musb->ep0_stage = MUSB_EP0_IDLE;
1234
1235 /* call completion handler if done */
1236 if (complete)
1237 musb_advance_schedule(musb, urb, hw_ep, 1);
1238done:
1239 return retval;
1240}
1241
1242
1243#ifdef CONFIG_USB_INVENTRA_DMA
1244
1245/* Host side TX (OUT) using Mentor DMA works as follows:
1246 submit_urb ->
1247 - if queue was empty, Program Endpoint
1248 - ... which starts DMA to fifo in mode 1 or 0
1249
1250 DMA Isr (transfer complete) -> TxAvail()
1251 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1252 only in musb_cleanup_urb)
1253 - TxPktRdy has to be set in mode 0 or for
1254 short packets in mode 1.
1255*/
1256
1257#endif
1258
1259/* Service a Tx-Available or dma completion irq for the endpoint */
1260void musb_host_tx(struct musb *musb, u8 epnum)
1261{
1262 int pipe;
1263 bool done = false;
1264 u16 tx_csr;
6b6e9710
SS
1265 size_t length = 0;
1266 size_t offset = 0;
550a7375
FB
1267 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1268 void __iomem *epio = hw_ep->regs;
3e5c6dc7
SS
1269 struct musb_qh *qh = hw_ep->out_qh;
1270 struct urb *urb = next_urb(qh);
550a7375
FB
1271 u32 status = 0;
1272 void __iomem *mbase = musb->mregs;
1273 struct dma_channel *dma;
f8afbf7f 1274 bool transfer_pending = false;
550a7375 1275
550a7375
FB
1276 musb_ep_select(mbase, epnum);
1277 tx_csr = musb_readw(epio, MUSB_TXCSR);
1278
1279 /* with CPPI, DMA sometimes triggers "extra" irqs */
1280 if (!urb) {
5c8a86e1 1281 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
6b6e9710 1282 return;
550a7375
FB
1283 }
1284
1285 pipe = urb->pipe;
1286 dma = is_dma_capable() ? hw_ep->tx_channel : NULL;
5c8a86e1 1287 dev_dbg(musb->controller, "OUT/TX%d end, csr %04x%s\n", epnum, tx_csr,
550a7375
FB
1288 dma ? ", dma" : "");
1289
1290 /* check for errors */
1291 if (tx_csr & MUSB_TXCSR_H_RXSTALL) {
1292 /* dma was disabled, fifo flushed */
5c8a86e1 1293 dev_dbg(musb->controller, "TX end %d stall\n", epnum);
550a7375
FB
1294
1295 /* stall; record URB status */
1296 status = -EPIPE;
1297
1298 } else if (tx_csr & MUSB_TXCSR_H_ERROR) {
1299 /* (NON-ISO) dma was disabled, fifo flushed */
5c8a86e1 1300 dev_dbg(musb->controller, "TX 3strikes on ep=%d\n", epnum);
550a7375
FB
1301
1302 status = -ETIMEDOUT;
1303
1304 } else if (tx_csr & MUSB_TXCSR_H_NAKTIMEOUT) {
f283862f
AKG
1305 if (USB_ENDPOINT_XFER_BULK == qh->type && qh->mux == 1
1306 && !list_is_singular(&musb->out_bulk)) {
1307 dev_dbg(musb->controller,
1308 "NAK timeout on TX%d ep\n", epnum);
1309 musb_bulk_nak_timeout(musb, hw_ep, 0);
1310 } else {
1311 dev_dbg(musb->controller,
1312 "TX end=%d device not responding\n", epnum);
1313 /* NOTE: this code path would be a good place to PAUSE a
1314 * transfer, if there's some other (nonperiodic) tx urb
1315 * that could use this fifo. (dma complicates it...)
1316 * That's already done for bulk RX transfers.
1317 *
1318 * if (bulk && qh->ring.next != &musb->out_bulk), then
1319 * we have a candidate... NAKing is *NOT* an error
1320 */
1321 musb_ep_select(mbase, epnum);
1322 musb_writew(epio, MUSB_TXCSR,
1323 MUSB_TXCSR_H_WZC_BITS
1324 | MUSB_TXCSR_TXPKTRDY);
1325 }
1326 return;
550a7375
FB
1327 }
1328
8e8a5516 1329done:
550a7375
FB
1330 if (status) {
1331 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1332 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
9c547699 1333 musb->dma_controller->channel_abort(dma);
550a7375
FB
1334 }
1335
1336 /* do the proper sequence to abort the transfer in the
1337 * usb core; the dma engine should already be stopped.
1338 */
1339 musb_h_tx_flush_fifo(hw_ep);
1340 tx_csr &= ~(MUSB_TXCSR_AUTOSET
1341 | MUSB_TXCSR_DMAENAB
1342 | MUSB_TXCSR_H_ERROR
1343 | MUSB_TXCSR_H_RXSTALL
1344 | MUSB_TXCSR_H_NAKTIMEOUT
1345 );
1346
1347 musb_ep_select(mbase, epnum);
1348 musb_writew(epio, MUSB_TXCSR, tx_csr);
1349 /* REVISIT may need to clear FLUSHFIFO ... */
1350 musb_writew(epio, MUSB_TXCSR, tx_csr);
1351 musb_writeb(epio, MUSB_TXINTERVAL, 0);
1352
1353 done = true;
1354 }
1355
1356 /* second cppi case */
1357 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
5c8a86e1 1358 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
6b6e9710 1359 return;
550a7375
FB
1360 }
1361
c7bbc056
SS
1362 if (is_dma_capable() && dma && !status) {
1363 /*
1364 * DMA has completed. But if we're using DMA mode 1 (multi
1365 * packet DMA), we need a terminal TXPKTRDY interrupt before
1366 * we can consider this transfer completed, lest we trash
1367 * its last packet when writing the next URB's data. So we
1368 * switch back to mode 0 to get that interrupt; we'll come
1369 * back here once it happens.
1370 */
1371 if (tx_csr & MUSB_TXCSR_DMAMODE) {
1372 /*
1373 * We shouldn't clear DMAMODE with DMAENAB set; so
1374 * clear them in a safe order. That should be OK
1375 * once TXPKTRDY has been set (and I've never seen
1376 * it being 0 at this moment -- DMA interrupt latency
1377 * is significant) but if it hasn't been then we have
1378 * no choice but to stop being polite and ignore the
1379 * programmer's guide... :-)
1380 *
1381 * Note that we must write TXCSR with TXPKTRDY cleared
1382 * in order not to re-trigger the packet send (this bit
1383 * can't be cleared by CPU), and there's another caveat:
1384 * TXPKTRDY may be set shortly and then cleared in the
1385 * double-buffered FIFO mode, so we do an extra TXCSR
1386 * read for debouncing...
1387 */
1388 tx_csr &= musb_readw(epio, MUSB_TXCSR);
1389 if (tx_csr & MUSB_TXCSR_TXPKTRDY) {
1390 tx_csr &= ~(MUSB_TXCSR_DMAENAB |
1391 MUSB_TXCSR_TXPKTRDY);
1392 musb_writew(epio, MUSB_TXCSR,
1393 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1394 }
1395 tx_csr &= ~(MUSB_TXCSR_DMAMODE |
1396 MUSB_TXCSR_TXPKTRDY);
1397 musb_writew(epio, MUSB_TXCSR,
1398 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1399
1400 /*
1401 * There is no guarantee that we'll get an interrupt
1402 * after clearing DMAMODE as we might have done this
1403 * too late (after TXPKTRDY was cleared by controller).
1404 * Re-read TXCSR as we have spoiled its previous value.
1405 */
1406 tx_csr = musb_readw(epio, MUSB_TXCSR);
1407 }
1408
1409 /*
1410 * We may get here from a DMA completion or TXPKTRDY interrupt.
1411 * In any case, we must check the FIFO status here and bail out
1412 * only if the FIFO still has data -- that should prevent the
1413 * "missed" TXPKTRDY interrupts and deal with double-buffered
1414 * FIFO mode too...
1415 */
1416 if (tx_csr & (MUSB_TXCSR_FIFONOTEMPTY | MUSB_TXCSR_TXPKTRDY)) {
5c8a86e1 1417 dev_dbg(musb->controller, "DMA complete but packet still in FIFO, "
c7bbc056
SS
1418 "CSR %04x\n", tx_csr);
1419 return;
1420 }
1421 }
1422
550a7375
FB
1423 if (!status || dma || usb_pipeisoc(pipe)) {
1424 if (dma)
6b6e9710 1425 length = dma->actual_len;
550a7375 1426 else
6b6e9710
SS
1427 length = qh->segsize;
1428 qh->offset += length;
550a7375
FB
1429
1430 if (usb_pipeisoc(pipe)) {
1431 struct usb_iso_packet_descriptor *d;
1432
1433 d = urb->iso_frame_desc + qh->iso_idx;
6b6e9710
SS
1434 d->actual_length = length;
1435 d->status = status;
550a7375
FB
1436 if (++qh->iso_idx >= urb->number_of_packets) {
1437 done = true;
1438 } else {
1439 d++;
6b6e9710
SS
1440 offset = d->offset;
1441 length = d->length;
550a7375 1442 }
f8afbf7f 1443 } else if (dma && urb->transfer_buffer_length == qh->offset) {
550a7375
FB
1444 done = true;
1445 } else {
1446 /* see if we need to send more data, or ZLP */
1447 if (qh->segsize < qh->maxpacket)
1448 done = true;
1449 else if (qh->offset == urb->transfer_buffer_length
1450 && !(urb->transfer_flags
1451 & URB_ZERO_PACKET))
1452 done = true;
1453 if (!done) {
6b6e9710
SS
1454 offset = qh->offset;
1455 length = urb->transfer_buffer_length - offset;
f8afbf7f 1456 transfer_pending = true;
550a7375
FB
1457 }
1458 }
1459 }
1460
1461 /* urb->status != -EINPROGRESS means request has been faulted,
1462 * so we must abort this transfer after cleanup
1463 */
1464 if (urb->status != -EINPROGRESS) {
1465 done = true;
1466 if (status == 0)
1467 status = urb->status;
1468 }
1469
1470 if (done) {
1471 /* set status */
1472 urb->status = status;
1473 urb->actual_length = qh->offset;
1474 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_OUT);
6b6e9710 1475 return;
f8afbf7f 1476 } else if ((usb_pipeisoc(pipe) || transfer_pending) && dma) {
6b6e9710 1477 if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb,
dfeffa53 1478 offset, length)) {
f8e9f34f 1479 if (is_cppi_enabled(musb) || tusb_dma_omap(musb))
dfeffa53 1480 musb_h_tx_dma_start(hw_ep);
6b6e9710 1481 return;
dfeffa53 1482 }
6b6e9710 1483 } else if (tx_csr & MUSB_TXCSR_DMAENAB) {
5c8a86e1 1484 dev_dbg(musb->controller, "not complete, but DMA enabled?\n");
6b6e9710
SS
1485 return;
1486 }
550a7375 1487
6b6e9710
SS
1488 /*
1489 * PIO: start next packet in this URB.
1490 *
1491 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1492 * (and presumably, FIFO is not half-full) we should write *two*
1493 * packets before updating TXCSR; other docs disagree...
1494 */
1495 if (length > qh->maxpacket)
1496 length = qh->maxpacket;
496dda70 1497 /* Unmap the buffer so that CPU can use it */
8b125df5 1498 usb_hcd_unmap_urb_for_dma(musb->hcd, urb);
8e8a5516
VS
1499
1500 /*
1501 * We need to map sg if the transfer_buffer is
1502 * NULL.
1503 */
1504 if (!urb->transfer_buffer)
ed74df12 1505 qh->use_sg = true;
8e8a5516 1506
ed74df12 1507 if (qh->use_sg) {
8e8a5516
VS
1508 /* sg_miter_start is already done in musb_ep_program */
1509 if (!sg_miter_next(&qh->sg_miter)) {
1510 dev_err(musb->controller, "error: sg list empty\n");
1511 sg_miter_stop(&qh->sg_miter);
1512 status = -EINVAL;
1513 goto done;
1514 }
1515 urb->transfer_buffer = qh->sg_miter.addr;
1516 length = min_t(u32, length, qh->sg_miter.length);
1517 musb_write_fifo(hw_ep, length, urb->transfer_buffer);
1518 qh->sg_miter.consumed = length;
1519 sg_miter_stop(&qh->sg_miter);
1520 } else {
1521 musb_write_fifo(hw_ep, length, urb->transfer_buffer + offset);
1522 }
1523
6b6e9710 1524 qh->segsize = length;
550a7375 1525
ed74df12 1526 if (qh->use_sg) {
8e8a5516 1527 if (offset + length >= urb->transfer_buffer_length)
ed74df12 1528 qh->use_sg = false;
8e8a5516
VS
1529 }
1530
6b6e9710
SS
1531 musb_ep_select(mbase, epnum);
1532 musb_writew(epio, MUSB_TXCSR,
1533 MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY);
550a7375
FB
1534}
1535
1536
1537#ifdef CONFIG_USB_INVENTRA_DMA
1538
1539/* Host side RX (IN) using Mentor DMA works as follows:
1540 submit_urb ->
1541 - if queue was empty, ProgramEndpoint
1542 - first IN token is sent out (by setting ReqPkt)
1543 LinuxIsr -> RxReady()
1544 /\ => first packet is received
1545 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1546 | -> DMA Isr (transfer complete) -> RxReady()
1547 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1548 | - if urb not complete, send next IN token (ReqPkt)
1549 | | else complete urb.
1550 | |
1551 ---------------------------
1552 *
1553 * Nuances of mode 1:
1554 * For short packets, no ack (+RxPktRdy) is sent automatically
1555 * (even if AutoClear is ON)
1556 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1557 * automatically => major problem, as collecting the next packet becomes
1558 * difficult. Hence mode 1 is not used.
1559 *
1560 * REVISIT
1561 * All we care about at this driver level is that
1562 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1563 * (b) termination conditions are: short RX, or buffer full;
1564 * (c) fault modes include
1565 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1566 * (and that endpoint's dma queue stops immediately)
1567 * - overflow (full, PLUS more bytes in the terminal packet)
1568 *
1569 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1570 * thus be a great candidate for using mode 1 ... for all but the
1571 * last packet of one URB's transfer.
1572 */
1573
1574#endif
1575
1576/*
1577 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1578 * and high-bandwidth IN transfer cases.
1579 */
1580void musb_host_rx(struct musb *musb, u8 epnum)
1581{
1582 struct urb *urb;
1583 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1584 void __iomem *epio = hw_ep->regs;
1585 struct musb_qh *qh = hw_ep->in_qh;
1586 size_t xfer_len;
1587 void __iomem *mbase = musb->mregs;
1588 int pipe;
1589 u16 rx_csr, val;
1590 bool iso_err = false;
1591 bool done = false;
1592 u32 status;
1593 struct dma_channel *dma;
8e8a5516 1594 unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
550a7375
FB
1595
1596 musb_ep_select(mbase, epnum);
1597
1598 urb = next_urb(qh);
1599 dma = is_dma_capable() ? hw_ep->rx_channel : NULL;
1600 status = 0;
1601 xfer_len = 0;
1602
1603 rx_csr = musb_readw(epio, MUSB_RXCSR);
1604 val = rx_csr;
1605
1606 if (unlikely(!urb)) {
1607 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1608 * usbtest #11 (unlinks) triggers it regularly, sometimes
1609 * with fifo full. (Only with DMA??)
1610 */
5c8a86e1 1611 dev_dbg(musb->controller, "BOGUS RX%d ready, csr %04x, count %d\n", epnum, val,
550a7375
FB
1612 musb_readw(epio, MUSB_RXCOUNT));
1613 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1614 return;
1615 }
1616
1617 pipe = urb->pipe;
1618
5c8a86e1 1619 dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
550a7375
FB
1620 epnum, rx_csr, urb->actual_length,
1621 dma ? dma->actual_len : 0);
1622
1623 /* check for errors, concurrent stall & unlink is not really
1624 * handled yet! */
1625 if (rx_csr & MUSB_RXCSR_H_RXSTALL) {
5c8a86e1 1626 dev_dbg(musb->controller, "RX end %d STALL\n", epnum);
550a7375
FB
1627
1628 /* stall; record URB status */
1629 status = -EPIPE;
1630
1631 } else if (rx_csr & MUSB_RXCSR_H_ERROR) {
5c8a86e1 1632 dev_dbg(musb->controller, "end %d RX proto error\n", epnum);
550a7375
FB
1633
1634 status = -EPROTO;
1635 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1636
1637 } else if (rx_csr & MUSB_RXCSR_DATAERROR) {
1638
1639 if (USB_ENDPOINT_XFER_ISOC != qh->type) {
5c8a86e1 1640 dev_dbg(musb->controller, "RX end %d NAK timeout\n", epnum);
1e0320f0
AKG
1641
1642 /* NOTE: NAKing is *NOT* an error, so we want to
1643 * continue. Except ... if there's a request for
1644 * another QH, use that instead of starving it.
550a7375 1645 *
1e0320f0
AKG
1646 * Devices like Ethernet and serial adapters keep
1647 * reads posted at all times, which will starve
1648 * other devices without this logic.
550a7375 1649 */
1e0320f0
AKG
1650 if (usb_pipebulk(urb->pipe)
1651 && qh->mux == 1
1652 && !list_is_singular(&musb->in_bulk)) {
f283862f 1653 musb_bulk_nak_timeout(musb, hw_ep, 1);
1e0320f0
AKG
1654 return;
1655 }
550a7375 1656 musb_ep_select(mbase, epnum);
1e0320f0
AKG
1657 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1658 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1659 musb_writew(epio, MUSB_RXCSR, rx_csr);
550a7375
FB
1660
1661 goto finish;
1662 } else {
5c8a86e1 1663 dev_dbg(musb->controller, "RX end %d ISO data error\n", epnum);
550a7375
FB
1664 /* packet error reported later */
1665 iso_err = true;
1666 }
a483d706 1667 } else if (rx_csr & MUSB_RXCSR_INCOMPRX) {
5c8a86e1 1668 dev_dbg(musb->controller, "end %d high bandwidth incomplete ISO packet RX\n",
a483d706
AKG
1669 epnum);
1670 status = -EPROTO;
550a7375
FB
1671 }
1672
1673 /* faults abort the transfer */
1674 if (status) {
1675 /* clean up dma and collect transfer count */
1676 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1677 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
9c547699 1678 musb->dma_controller->channel_abort(dma);
550a7375
FB
1679 xfer_len = dma->actual_len;
1680 }
1681 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1682 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1683 done = true;
1684 goto finish;
1685 }
1686
1687 if (unlikely(dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY)) {
1688 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1689 ERR("RX%d dma busy, csr %04x\n", epnum, rx_csr);
1690 goto finish;
1691 }
1692
1693 /* thorough shutdown for now ... given more precise fault handling
1694 * and better queueing support, we might keep a DMA pipeline going
1695 * while processing this irq for earlier completions.
1696 */
1697
1698 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1699
aee5500f 1700#if !defined(CONFIG_USB_INVENTRA_DMA) && !defined(CONFIG_USB_UX500_DMA)
550a7375
FB
1701 if (rx_csr & MUSB_RXCSR_H_REQPKT) {
1702 /* REVISIT this happened for a while on some short reads...
1703 * the cleanup still needs investigation... looks bad...
1704 * and also duplicates dma cleanup code above ... plus,
1705 * shouldn't this be the "half full" double buffer case?
1706 */
1707 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1708 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
9c547699 1709 musb->dma_controller->channel_abort(dma);
550a7375
FB
1710 xfer_len = dma->actual_len;
1711 done = true;
1712 }
1713
5c8a86e1 1714 dev_dbg(musb->controller, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum, rx_csr,
550a7375
FB
1715 xfer_len, dma ? ", dma" : "");
1716 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
1717
1718 musb_ep_select(mbase, epnum);
1719 musb_writew(epio, MUSB_RXCSR,
1720 MUSB_RXCSR_H_WZC_BITS | rx_csr);
1721 }
1722#endif
1723 if (dma && (rx_csr & MUSB_RXCSR_DMAENAB)) {
1724 xfer_len = dma->actual_len;
1725
1726 val &= ~(MUSB_RXCSR_DMAENAB
1727 | MUSB_RXCSR_H_AUTOREQ
1728 | MUSB_RXCSR_AUTOCLEAR
1729 | MUSB_RXCSR_RXPKTRDY);
1730 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1731
c57c41d2
GC
1732#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1733 defined(CONFIG_USB_TI_CPPI41_DMA)
f82a689f
AKG
1734 if (usb_pipeisoc(pipe)) {
1735 struct usb_iso_packet_descriptor *d;
1736
1737 d = urb->iso_frame_desc + qh->iso_idx;
1738 d->actual_length = xfer_len;
1739
1740 /* even if there was an error, we did the dma
1741 * for iso_frame_desc->length
1742 */
72887c86 1743 if (d->status != -EILSEQ && d->status != -EOVERFLOW)
f82a689f
AKG
1744 d->status = 0;
1745
c57c41d2 1746 if (++qh->iso_idx >= urb->number_of_packets) {
f82a689f 1747 done = true;
c57c41d2
GC
1748 } else {
1749#if defined(CONFIG_USB_TI_CPPI41_DMA)
1750 struct dma_controller *c;
1751 dma_addr_t *buf;
1752 u32 length, ret;
1753
1754 c = musb->dma_controller;
1755 buf = (void *)
1756 urb->iso_frame_desc[qh->iso_idx].offset
1757 + (u32)urb->transfer_dma;
1758
1759 length =
1760 urb->iso_frame_desc[qh->iso_idx].length;
1761
1762 val |= MUSB_RXCSR_DMAENAB;
1763 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1764
1765 ret = c->channel_program(dma, qh->maxpacket,
1766 0, (u32) buf, length);
1767#endif
f82a689f 1768 done = false;
c57c41d2 1769 }
f82a689f
AKG
1770
1771 } else {
49a9e885
DM
1772 /* done if urb buffer is full or short packet is recd */
1773 done = (urb->actual_length + xfer_len >=
1774 urb->transfer_buffer_length
1775 || dma->actual_len < qh->maxpacket
1776 || dma->rx_packet_done);
f82a689f 1777 }
550a7375
FB
1778
1779 /* send IN token for next packet, without AUTOREQ */
1780 if (!done) {
1781 val |= MUSB_RXCSR_H_REQPKT;
1782 musb_writew(epio, MUSB_RXCSR,
1783 MUSB_RXCSR_H_WZC_BITS | val);
1784 }
1785
5c8a86e1 1786 dev_dbg(musb->controller, "ep %d dma %s, rxcsr %04x, rxcount %d\n", epnum,
550a7375
FB
1787 done ? "off" : "reset",
1788 musb_readw(epio, MUSB_RXCSR),
1789 musb_readw(epio, MUSB_RXCOUNT));
1790#else
1791 done = true;
1792#endif
1793 } else if (urb->status == -EINPROGRESS) {
1794 /* if no errors, be sure a packet is ready for unloading */
1795 if (unlikely(!(rx_csr & MUSB_RXCSR_RXPKTRDY))) {
1796 status = -EPROTO;
1797 ERR("Rx interrupt with no errors or packet!\n");
1798
1799 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1800
1801/* SCRUB (RX) */
1802 /* do the proper sequence to abort the transfer */
1803 musb_ep_select(mbase, epnum);
1804 val &= ~MUSB_RXCSR_H_REQPKT;
1805 musb_writew(epio, MUSB_RXCSR, val);
1806 goto finish;
1807 }
1808
1809 /* we are expecting IN packets */
c57c41d2
GC
1810#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA) || \
1811 defined(CONFIG_USB_TI_CPPI41_DMA)
550a7375
FB
1812 if (dma) {
1813 struct dma_controller *c;
1814 u16 rx_count;
f82a689f
AKG
1815 int ret, length;
1816 dma_addr_t buf;
550a7375
FB
1817
1818 rx_count = musb_readw(epio, MUSB_RXCOUNT);
1819
91e3af64 1820 dev_dbg(musb->controller, "RX%d count %d, buffer 0x%llx len %d/%d\n",
550a7375 1821 epnum, rx_count,
91e3af64
FB
1822 (unsigned long long) urb->transfer_dma
1823 + urb->actual_length,
550a7375
FB
1824 qh->offset,
1825 urb->transfer_buffer_length);
1826
1827 c = musb->dma_controller;
1828
f82a689f 1829 if (usb_pipeisoc(pipe)) {
8b4959d6 1830 int d_status = 0;
f82a689f
AKG
1831 struct usb_iso_packet_descriptor *d;
1832
1833 d = urb->iso_frame_desc + qh->iso_idx;
1834
1835 if (iso_err) {
8b4959d6 1836 d_status = -EILSEQ;
f82a689f
AKG
1837 urb->error_count++;
1838 }
1839 if (rx_count > d->length) {
8b4959d6
FB
1840 if (d_status == 0) {
1841 d_status = -EOVERFLOW;
f82a689f
AKG
1842 urb->error_count++;
1843 }
5c8a86e1 1844 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n",\
f82a689f
AKG
1845 rx_count, d->length);
1846
1847 length = d->length;
1848 } else
1849 length = rx_count;
8b4959d6 1850 d->status = d_status;
f82a689f
AKG
1851 buf = urb->transfer_dma + d->offset;
1852 } else {
1853 length = rx_count;
1854 buf = urb->transfer_dma +
1855 urb->actual_length;
1856 }
1857
550a7375
FB
1858 dma->desired_mode = 0;
1859#ifdef USE_MODE1
1860 /* because of the issue below, mode 1 will
1861 * only rarely behave with correct semantics.
1862 */
1863 if ((urb->transfer_flags &
1864 URB_SHORT_NOT_OK)
1865 && (urb->transfer_buffer_length -
1866 urb->actual_length)
1867 > qh->maxpacket)
1868 dma->desired_mode = 1;
f82a689f
AKG
1869 if (rx_count < hw_ep->max_packet_sz_rx) {
1870 length = rx_count;
ae926976 1871 dma->desired_mode = 0;
f82a689f
AKG
1872 } else {
1873 length = urb->transfer_buffer_length;
1874 }
550a7375
FB
1875#endif
1876
1877/* Disadvantage of using mode 1:
1878 * It's basically usable only for mass storage class; essentially all
1879 * other protocols also terminate transfers on short packets.
1880 *
1881 * Details:
1882 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1883 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1884 * to use the extra IN token to grab the last packet using mode 0, then
1885 * the problem is that you cannot be sure when the device will send the
1886 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1887 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1888 * transfer, while sometimes it is recd just a little late so that if you
1889 * try to configure for mode 0 soon after the mode 1 transfer is
1890 * completed, you will find rxcount 0. Okay, so you might think why not
1891 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1892 */
1893
1894 val = musb_readw(epio, MUSB_RXCSR);
1895 val &= ~MUSB_RXCSR_H_REQPKT;
1896
1897 if (dma->desired_mode == 0)
1898 val &= ~MUSB_RXCSR_H_AUTOREQ;
1899 else
1900 val |= MUSB_RXCSR_H_AUTOREQ;
a483d706
AKG
1901 val |= MUSB_RXCSR_DMAENAB;
1902
1903 /* autoclear shouldn't be set in high bandwidth */
1904 if (qh->hb_mult == 1)
1905 val |= MUSB_RXCSR_AUTOCLEAR;
550a7375
FB
1906
1907 musb_writew(epio, MUSB_RXCSR,
1908 MUSB_RXCSR_H_WZC_BITS | val);
1909
1910 /* REVISIT if when actual_length != 0,
1911 * transfer_buffer_length needs to be
1912 * adjusted first...
1913 */
1914 ret = c->channel_program(
1915 dma, qh->maxpacket,
f82a689f 1916 dma->desired_mode, buf, length);
550a7375
FB
1917
1918 if (!ret) {
1919 c->channel_release(dma);
1920 hw_ep->rx_channel = NULL;
1921 dma = NULL;
2ed9127c
MS
1922 val = musb_readw(epio, MUSB_RXCSR);
1923 val &= ~(MUSB_RXCSR_DMAENAB
1924 | MUSB_RXCSR_H_AUTOREQ
1925 | MUSB_RXCSR_AUTOCLEAR);
1926 musb_writew(epio, MUSB_RXCSR, val);
550a7375
FB
1927 }
1928 }
1929#endif /* Mentor DMA */
1930
1931 if (!dma) {
8e8a5516
VS
1932 unsigned int received_len;
1933
496dda70 1934 /* Unmap the buffer so that CPU can use it */
8b125df5 1935 usb_hcd_unmap_urb_for_dma(musb->hcd, urb);
8e8a5516
VS
1936
1937 /*
1938 * We need to map sg if the transfer_buffer is
1939 * NULL.
1940 */
1941 if (!urb->transfer_buffer) {
ed74df12 1942 qh->use_sg = true;
8e8a5516
VS
1943 sg_miter_start(&qh->sg_miter, urb->sg, 1,
1944 sg_flags);
1945 }
1946
ed74df12 1947 if (qh->use_sg) {
8e8a5516
VS
1948 if (!sg_miter_next(&qh->sg_miter)) {
1949 dev_err(musb->controller, "error: sg list empty\n");
1950 sg_miter_stop(&qh->sg_miter);
1951 status = -EINVAL;
1952 done = true;
1953 goto finish;
1954 }
1955 urb->transfer_buffer = qh->sg_miter.addr;
1956 received_len = urb->actual_length;
1957 qh->offset = 0x0;
1958 done = musb_host_packet_rx(musb, urb, epnum,
1959 iso_err);
1960 /* Calculate the number of bytes received */
1961 received_len = urb->actual_length -
1962 received_len;
1963 qh->sg_miter.consumed = received_len;
1964 sg_miter_stop(&qh->sg_miter);
1965 } else {
1966 done = musb_host_packet_rx(musb, urb,
1967 epnum, iso_err);
1968 }
5c8a86e1 1969 dev_dbg(musb->controller, "read %spacket\n", done ? "last " : "");
550a7375
FB
1970 }
1971 }
1972
550a7375
FB
1973finish:
1974 urb->actual_length += xfer_len;
1975 qh->offset += xfer_len;
1976 if (done) {
ed74df12
VS
1977 if (qh->use_sg)
1978 qh->use_sg = false;
8e8a5516 1979
550a7375
FB
1980 if (urb->status == -EINPROGRESS)
1981 urb->status = status;
1982 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_IN);
1983 }
1984}
1985
1986/* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
1987 * the software schedule associates multiple such nodes with a given
1988 * host side hardware endpoint + direction; scheduling may activate
1989 * that hardware endpoint.
1990 */
1991static int musb_schedule(
1992 struct musb *musb,
1993 struct musb_qh *qh,
1994 int is_in)
1995{
eac44dc4 1996 int idle = 0;
550a7375
FB
1997 int best_diff;
1998 int best_end, epnum;
1999 struct musb_hw_ep *hw_ep = NULL;
2000 struct list_head *head = NULL;
5274dab6
S
2001 u8 toggle;
2002 u8 txtype;
2003 struct urb *urb = next_urb(qh);
550a7375
FB
2004
2005 /* use fixed hardware for control and bulk */
23d15e07 2006 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
550a7375
FB
2007 head = &musb->control;
2008 hw_ep = musb->control_ep;
550a7375
FB
2009 goto success;
2010 }
2011
2012 /* else, periodic transfers get muxed to other endpoints */
2013
5d67a851
SS
2014 /*
2015 * We know this qh hasn't been scheduled, so all we need to do
550a7375
FB
2016 * is choose which hardware endpoint to put it on ...
2017 *
2018 * REVISIT what we really want here is a regular schedule tree
5d67a851 2019 * like e.g. OHCI uses.
550a7375
FB
2020 */
2021 best_diff = 4096;
2022 best_end = -1;
2023
5d67a851
SS
2024 for (epnum = 1, hw_ep = musb->endpoints + 1;
2025 epnum < musb->nr_endpoints;
2026 epnum++, hw_ep++) {
550a7375
FB
2027 int diff;
2028
3e5c6dc7 2029 if (musb_ep_get_qh(hw_ep, is_in) != NULL)
550a7375 2030 continue;
5d67a851 2031
550a7375
FB
2032 if (hw_ep == musb->bulk_ep)
2033 continue;
2034
2035 if (is_in)
a483d706 2036 diff = hw_ep->max_packet_sz_rx;
550a7375 2037 else
a483d706
AKG
2038 diff = hw_ep->max_packet_sz_tx;
2039 diff -= (qh->maxpacket * qh->hb_mult);
550a7375 2040
23d15e07 2041 if (diff >= 0 && best_diff > diff) {
5274dab6
S
2042
2043 /*
2044 * Mentor controller has a bug in that if we schedule
2045 * a BULK Tx transfer on an endpoint that had earlier
2046 * handled ISOC then the BULK transfer has to start on
2047 * a zero toggle. If the BULK transfer starts on a 1
2048 * toggle then this transfer will fail as the mentor
2049 * controller starts the Bulk transfer on a 0 toggle
2050 * irrespective of the programming of the toggle bits
2051 * in the TXCSR register. Check for this condition
2052 * while allocating the EP for a Tx Bulk transfer. If
2053 * so skip this EP.
2054 */
2055 hw_ep = musb->endpoints + epnum;
2056 toggle = usb_gettoggle(urb->dev, qh->epnum, !is_in);
2057 txtype = (musb_readb(hw_ep->regs, MUSB_TXTYPE)
2058 >> 4) & 0x3;
2059 if (!is_in && (qh->type == USB_ENDPOINT_XFER_BULK) &&
2060 toggle && (txtype == USB_ENDPOINT_XFER_ISOC))
2061 continue;
2062
550a7375
FB
2063 best_diff = diff;
2064 best_end = epnum;
2065 }
2066 }
23d15e07 2067 /* use bulk reserved ep1 if no other ep is free */
aa5cbbec 2068 if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
23d15e07
AKG
2069 hw_ep = musb->bulk_ep;
2070 if (is_in)
2071 head = &musb->in_bulk;
2072 else
2073 head = &musb->out_bulk;
1e0320f0 2074
f283862f 2075 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
5ae477b0 2076 * multiplexed. This scheme does not work in high speed to full
1e0320f0
AKG
2077 * speed scenario as NAK interrupts are not coming from a
2078 * full speed device connected to a high speed device.
2079 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2080 * 4 (8 frame or 8ms) for FS device.
2081 */
f283862f 2082 if (qh->dev)
1e0320f0
AKG
2083 qh->intv_reg =
2084 (USB_SPEED_HIGH == qh->dev->speed) ? 8 : 4;
23d15e07
AKG
2085 goto success;
2086 } else if (best_end < 0) {
550a7375 2087 return -ENOSPC;
23d15e07 2088 }
550a7375
FB
2089
2090 idle = 1;
23d15e07 2091 qh->mux = 0;
550a7375 2092 hw_ep = musb->endpoints + best_end;
5c8a86e1 2093 dev_dbg(musb->controller, "qh %p periodic slot %d\n", qh, best_end);
550a7375 2094success:
23d15e07
AKG
2095 if (head) {
2096 idle = list_empty(head);
2097 list_add_tail(&qh->ring, head);
2098 qh->mux = 1;
2099 }
550a7375
FB
2100 qh->hw_ep = hw_ep;
2101 qh->hep->hcpriv = qh;
2102 if (idle)
2103 musb_start_urb(musb, is_in, qh);
2104 return 0;
2105}
2106
2107static int musb_urb_enqueue(
2108 struct usb_hcd *hcd,
2109 struct urb *urb,
2110 gfp_t mem_flags)
2111{
2112 unsigned long flags;
2113 struct musb *musb = hcd_to_musb(hcd);
2114 struct usb_host_endpoint *hep = urb->ep;
74bb3508 2115 struct musb_qh *qh;
550a7375
FB
2116 struct usb_endpoint_descriptor *epd = &hep->desc;
2117 int ret;
2118 unsigned type_reg;
2119 unsigned interval;
2120
2121 /* host role must be active */
2122 if (!is_host_active(musb) || !musb->is_active)
2123 return -ENODEV;
2124
2125 spin_lock_irqsave(&musb->lock, flags);
2126 ret = usb_hcd_link_urb_to_ep(hcd, urb);
74bb3508
DB
2127 qh = ret ? NULL : hep->hcpriv;
2128 if (qh)
2129 urb->hcpriv = qh;
550a7375 2130 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2131
2132 /* DMA mapping was already done, if needed, and this urb is on
74bb3508
DB
2133 * hep->urb_list now ... so we're done, unless hep wasn't yet
2134 * scheduled onto a live qh.
550a7375
FB
2135 *
2136 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2137 * disabled, testing for empty qh->ring and avoiding qh setup costs
2138 * except for the first urb queued after a config change.
2139 */
74bb3508
DB
2140 if (qh || ret)
2141 return ret;
550a7375
FB
2142
2143 /* Allocate and initialize qh, minimizing the work done each time
2144 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2145 *
2146 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2147 * for bugs in other kernel code to break this driver...
2148 */
2149 qh = kzalloc(sizeof *qh, mem_flags);
2150 if (!qh) {
2492e674 2151 spin_lock_irqsave(&musb->lock, flags);
550a7375 2152 usb_hcd_unlink_urb_from_ep(hcd, urb);
2492e674 2153 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2154 return -ENOMEM;
2155 }
2156
2157 qh->hep = hep;
2158 qh->dev = urb->dev;
2159 INIT_LIST_HEAD(&qh->ring);
2160 qh->is_ready = 1;
2161
29cc8897 2162 qh->maxpacket = usb_endpoint_maxp(epd);
a483d706 2163 qh->type = usb_endpoint_type(epd);
550a7375 2164
a483d706
AKG
2165 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2166 * Some musb cores don't support high bandwidth ISO transfers; and
2167 * we don't (yet!) support high bandwidth interrupt transfers.
2168 */
2169 qh->hb_mult = 1 + ((qh->maxpacket >> 11) & 0x03);
2170 if (qh->hb_mult > 1) {
2171 int ok = (qh->type == USB_ENDPOINT_XFER_ISOC);
2172
2173 if (ok)
2174 ok = (usb_pipein(urb->pipe) && musb->hb_iso_rx)
2175 || (usb_pipeout(urb->pipe) && musb->hb_iso_tx);
2176 if (!ok) {
2177 ret = -EMSGSIZE;
2178 goto done;
2179 }
2180 qh->maxpacket &= 0x7ff;
550a7375
FB
2181 }
2182
96bcd090 2183 qh->epnum = usb_endpoint_num(epd);
550a7375
FB
2184
2185 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2186 qh->addr_reg = (u8) usb_pipedevice(urb->pipe);
2187
2188 /* precompute rxtype/txtype/type0 register */
2189 type_reg = (qh->type << 4) | qh->epnum;
2190 switch (urb->dev->speed) {
2191 case USB_SPEED_LOW:
2192 type_reg |= 0xc0;
2193 break;
2194 case USB_SPEED_FULL:
2195 type_reg |= 0x80;
2196 break;
2197 default:
2198 type_reg |= 0x40;
2199 }
2200 qh->type_reg = type_reg;
2201
136733d6 2202 /* Precompute RXINTERVAL/TXINTERVAL register */
550a7375
FB
2203 switch (qh->type) {
2204 case USB_ENDPOINT_XFER_INT:
136733d6
SS
2205 /*
2206 * Full/low speeds use the linear encoding,
2207 * high speed uses the logarithmic encoding.
2208 */
2209 if (urb->dev->speed <= USB_SPEED_FULL) {
2210 interval = max_t(u8, epd->bInterval, 1);
2211 break;
550a7375
FB
2212 }
2213 /* FALLTHROUGH */
2214 case USB_ENDPOINT_XFER_ISOC:
136733d6
SS
2215 /* ISO always uses logarithmic encoding */
2216 interval = min_t(u8, epd->bInterval, 16);
550a7375
FB
2217 break;
2218 default:
2219 /* REVISIT we actually want to use NAK limits, hinting to the
2220 * transfer scheduling logic to try some other qh, e.g. try
2221 * for 2 msec first:
2222 *
2223 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2224 *
2225 * The downside of disabling this is that transfer scheduling
2226 * gets VERY unfair for nonperiodic transfers; a misbehaving
1e0320f0
AKG
2227 * peripheral could make that hurt. That's perfectly normal
2228 * for reads from network or serial adapters ... so we have
2229 * partial NAKlimit support for bulk RX.
550a7375 2230 *
1e0320f0 2231 * The upside of disabling it is simpler transfer scheduling.
550a7375
FB
2232 */
2233 interval = 0;
2234 }
2235 qh->intv_reg = interval;
2236
2237 /* precompute addressing for external hub/tt ports */
2238 if (musb->is_multipoint) {
2239 struct usb_device *parent = urb->dev->parent;
2240
2241 if (parent != hcd->self.root_hub) {
2242 qh->h_addr_reg = (u8) parent->devnum;
2243
2244 /* set up tt info if needed */
2245 if (urb->dev->tt) {
2246 qh->h_port_reg = (u8) urb->dev->ttport;
ae5ad296
AKG
2247 if (urb->dev->tt->hub)
2248 qh->h_addr_reg =
2249 (u8) urb->dev->tt->hub->devnum;
2250 if (urb->dev->tt->multi)
2251 qh->h_addr_reg |= 0x80;
550a7375
FB
2252 }
2253 }
2254 }
2255
2256 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2257 * until we get real dma queues (with an entry for each urb/buffer),
2258 * we only have work to do in the former case.
2259 */
2260 spin_lock_irqsave(&musb->lock, flags);
3067779b 2261 if (hep->hcpriv || !next_urb(qh)) {
550a7375
FB
2262 /* some concurrent activity submitted another urb to hep...
2263 * odd, rare, error prone, but legal.
2264 */
2265 kfree(qh);
714bc5ef 2266 qh = NULL;
550a7375
FB
2267 ret = 0;
2268 } else
2269 ret = musb_schedule(musb, qh,
2270 epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK);
2271
2272 if (ret == 0) {
2273 urb->hcpriv = qh;
2274 /* FIXME set urb->start_frame for iso/intr, it's tested in
2275 * musb_start_urb(), but otherwise only konicawc cares ...
2276 */
2277 }
2278 spin_unlock_irqrestore(&musb->lock, flags);
2279
2280done:
2281 if (ret != 0) {
2492e674 2282 spin_lock_irqsave(&musb->lock, flags);
550a7375 2283 usb_hcd_unlink_urb_from_ep(hcd, urb);
2492e674 2284 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2285 kfree(qh);
2286 }
2287 return ret;
2288}
2289
2290
2291/*
2292 * abort a transfer that's at the head of a hardware queue.
2293 * called with controller locked, irqs blocked
2294 * that hardware queue advances to the next transfer, unless prevented
2295 */
81ec4e4a 2296static int musb_cleanup_urb(struct urb *urb, struct musb_qh *qh)
550a7375
FB
2297{
2298 struct musb_hw_ep *ep = qh->hw_ep;
5c8a86e1 2299 struct musb *musb = ep->musb;
550a7375
FB
2300 void __iomem *epio = ep->regs;
2301 unsigned hw_end = ep->epnum;
2302 void __iomem *regs = ep->musb->mregs;
81ec4e4a 2303 int is_in = usb_pipein(urb->pipe);
550a7375 2304 int status = 0;
81ec4e4a 2305 u16 csr;
550a7375
FB
2306
2307 musb_ep_select(regs, hw_end);
2308
2309 if (is_dma_capable()) {
2310 struct dma_channel *dma;
2311
2312 dma = is_in ? ep->rx_channel : ep->tx_channel;
2313 if (dma) {
2314 status = ep->musb->dma_controller->channel_abort(dma);
5c8a86e1 2315 dev_dbg(musb->controller,
550a7375
FB
2316 "abort %cX%d DMA for urb %p --> %d\n",
2317 is_in ? 'R' : 'T', ep->epnum,
2318 urb, status);
2319 urb->actual_length += dma->actual_len;
2320 }
2321 }
2322
2323 /* turn off DMA requests, discard state, stop polling ... */
692933b2 2324 if (ep->epnum && is_in) {
550a7375
FB
2325 /* giveback saves bulk toggle */
2326 csr = musb_h_flush_rxfifo(ep, 0);
2327
2328 /* REVISIT we still get an irq; should likely clear the
2329 * endpoint's irq status here to avoid bogus irqs.
2330 * clearing that status is platform-specific...
2331 */
78322c1a 2332 } else if (ep->epnum) {
550a7375
FB
2333 musb_h_tx_flush_fifo(ep);
2334 csr = musb_readw(epio, MUSB_TXCSR);
2335 csr &= ~(MUSB_TXCSR_AUTOSET
2336 | MUSB_TXCSR_DMAENAB
2337 | MUSB_TXCSR_H_RXSTALL
2338 | MUSB_TXCSR_H_NAKTIMEOUT
2339 | MUSB_TXCSR_H_ERROR
2340 | MUSB_TXCSR_TXPKTRDY);
2341 musb_writew(epio, MUSB_TXCSR, csr);
2342 /* REVISIT may need to clear FLUSHFIFO ... */
2343 musb_writew(epio, MUSB_TXCSR, csr);
2344 /* flush cpu writebuffer */
2345 csr = musb_readw(epio, MUSB_TXCSR);
78322c1a
DB
2346 } else {
2347 musb_h_ep0_flush_fifo(ep);
550a7375
FB
2348 }
2349 if (status == 0)
2350 musb_advance_schedule(ep->musb, urb, ep, is_in);
2351 return status;
2352}
2353
2354static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2355{
2356 struct musb *musb = hcd_to_musb(hcd);
2357 struct musb_qh *qh;
550a7375 2358 unsigned long flags;
22a0d6f1 2359 int is_in = usb_pipein(urb->pipe);
550a7375
FB
2360 int ret;
2361
5c8a86e1 2362 dev_dbg(musb->controller, "urb=%p, dev%d ep%d%s\n", urb,
550a7375
FB
2363 usb_pipedevice(urb->pipe),
2364 usb_pipeendpoint(urb->pipe),
22a0d6f1 2365 is_in ? "in" : "out");
550a7375
FB
2366
2367 spin_lock_irqsave(&musb->lock, flags);
2368 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
2369 if (ret)
2370 goto done;
2371
2372 qh = urb->hcpriv;
2373 if (!qh)
2374 goto done;
2375
22a0d6f1
SS
2376 /*
2377 * Any URB not actively programmed into endpoint hardware can be
a2fd814e 2378 * immediately given back; that's any URB not at the head of an
550a7375 2379 * endpoint queue, unless someday we get real DMA queues. And even
a2fd814e 2380 * if it's at the head, it might not be known to the hardware...
550a7375 2381 *
22a0d6f1 2382 * Otherwise abort current transfer, pending DMA, etc.; urb->status
550a7375
FB
2383 * has already been updated. This is a synchronous abort; it'd be
2384 * OK to hold off until after some IRQ, though.
22a0d6f1
SS
2385 *
2386 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
550a7375 2387 */
22a0d6f1
SS
2388 if (!qh->is_ready
2389 || urb->urb_list.prev != &qh->hep->urb_list
2390 || musb_ep_get_qh(qh->hw_ep, is_in) != qh) {
550a7375
FB
2391 int ready = qh->is_ready;
2392
550a7375 2393 qh->is_ready = 0;
c9cd06b3 2394 musb_giveback(musb, urb, 0);
550a7375 2395 qh->is_ready = ready;
a2fd814e
SS
2396
2397 /* If nothing else (usually musb_giveback) is using it
2398 * and its URB list has emptied, recycle this qh.
2399 */
2400 if (ready && list_empty(&qh->hep->urb_list)) {
2401 qh->hep->hcpriv = NULL;
2402 list_del(&qh->ring);
2403 kfree(qh);
2404 }
550a7375 2405 } else
81ec4e4a 2406 ret = musb_cleanup_urb(urb, qh);
550a7375
FB
2407done:
2408 spin_unlock_irqrestore(&musb->lock, flags);
2409 return ret;
2410}
2411
2412/* disable an endpoint */
2413static void
2414musb_h_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
2415{
22a0d6f1 2416 u8 is_in = hep->desc.bEndpointAddress & USB_DIR_IN;
550a7375
FB
2417 unsigned long flags;
2418 struct musb *musb = hcd_to_musb(hcd);
dc61d238
SS
2419 struct musb_qh *qh;
2420 struct urb *urb;
550a7375 2421
550a7375
FB
2422 spin_lock_irqsave(&musb->lock, flags);
2423
dc61d238
SS
2424 qh = hep->hcpriv;
2425 if (qh == NULL)
2426 goto exit;
2427
22a0d6f1 2428 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
550a7375 2429
22a0d6f1 2430 /* Kick the first URB off the hardware, if needed */
550a7375 2431 qh->is_ready = 0;
22a0d6f1 2432 if (musb_ep_get_qh(qh->hw_ep, is_in) == qh) {
550a7375
FB
2433 urb = next_urb(qh);
2434
2435 /* make software (then hardware) stop ASAP */
2436 if (!urb->unlinked)
2437 urb->status = -ESHUTDOWN;
2438
2439 /* cleanup */
81ec4e4a 2440 musb_cleanup_urb(urb, qh);
550a7375 2441
dc61d238
SS
2442 /* Then nuke all the others ... and advance the
2443 * queue on hw_ep (e.g. bulk ring) when we're done.
2444 */
2445 while (!list_empty(&hep->urb_list)) {
2446 urb = next_urb(qh);
2447 urb->status = -ESHUTDOWN;
2448 musb_advance_schedule(musb, urb, qh->hw_ep, is_in);
2449 }
2450 } else {
2451 /* Just empty the queue; the hardware is busy with
2452 * other transfers, and since !qh->is_ready nothing
2453 * will activate any of these as it advances.
2454 */
2455 while (!list_empty(&hep->urb_list))
c9cd06b3 2456 musb_giveback(musb, next_urb(qh), -ESHUTDOWN);
550a7375 2457
dc61d238
SS
2458 hep->hcpriv = NULL;
2459 list_del(&qh->ring);
2460 kfree(qh);
2461 }
2462exit:
550a7375
FB
2463 spin_unlock_irqrestore(&musb->lock, flags);
2464}
2465
2466static int musb_h_get_frame_number(struct usb_hcd *hcd)
2467{
2468 struct musb *musb = hcd_to_musb(hcd);
2469
2470 return musb_readw(musb->mregs, MUSB_FRAME);
2471}
2472
2473static int musb_h_start(struct usb_hcd *hcd)
2474{
2475 struct musb *musb = hcd_to_musb(hcd);
2476
2477 /* NOTE: musb_start() is called when the hub driver turns
2478 * on port power, or when (OTG) peripheral starts.
2479 */
2480 hcd->state = HC_STATE_RUNNING;
2481 musb->port1_status = 0;
2482 return 0;
2483}
2484
2485static void musb_h_stop(struct usb_hcd *hcd)
2486{
2487 musb_stop(hcd_to_musb(hcd));
2488 hcd->state = HC_STATE_HALT;
2489}
2490
2491static int musb_bus_suspend(struct usb_hcd *hcd)
2492{
2493 struct musb *musb = hcd_to_musb(hcd);
89368d3d 2494 u8 devctl;
550a7375 2495
94f72136
DM
2496 musb_port_suspend(musb, true);
2497
89368d3d 2498 if (!is_host_active(musb))
550a7375
FB
2499 return 0;
2500
e47d9254 2501 switch (musb->xceiv->otg->state) {
89368d3d
DB
2502 case OTG_STATE_A_SUSPEND:
2503 return 0;
2504 case OTG_STATE_A_WAIT_VRISE:
2505 /* ID could be grounded even if there's no device
2506 * on the other end of the cable. NOTE that the
2507 * A_WAIT_VRISE timers are messy with MUSB...
2508 */
2509 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2510 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
e47d9254 2511 musb->xceiv->otg->state = OTG_STATE_A_WAIT_BCON;
89368d3d
DB
2512 break;
2513 default:
2514 break;
2515 }
2516
2517 if (musb->is_active) {
2518 WARNING("trying to suspend as %s while active\n",
e47d9254 2519 usb_otg_state_string(musb->xceiv->otg->state));
550a7375
FB
2520 return -EBUSY;
2521 } else
2522 return 0;
2523}
2524
2525static int musb_bus_resume(struct usb_hcd *hcd)
2526{
869c5978
DM
2527 struct musb *musb = hcd_to_musb(hcd);
2528
2529 if (musb->config &&
2530 musb->config->host_port_deassert_reset_at_resume)
2531 musb_port_reset(musb, false);
2532
550a7375
FB
2533 return 0;
2534}
2535
8408fd1d
RB
2536#ifndef CONFIG_MUSB_PIO_ONLY
2537
2538#define MUSB_USB_DMA_ALIGN 4
2539
2540struct musb_temp_buffer {
2541 void *kmalloc_ptr;
2542 void *old_xfer_buffer;
2543 u8 data[0];
2544};
2545
2546static void musb_free_temp_buffer(struct urb *urb)
2547{
2548 enum dma_data_direction dir;
2549 struct musb_temp_buffer *temp;
d72348fb 2550 size_t length;
8408fd1d
RB
2551
2552 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
2553 return;
2554
2555 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
2556
2557 temp = container_of(urb->transfer_buffer, struct musb_temp_buffer,
2558 data);
2559
2560 if (dir == DMA_FROM_DEVICE) {
d72348fb
JH
2561 if (usb_pipeisoc(urb->pipe))
2562 length = urb->transfer_buffer_length;
2563 else
2564 length = urb->actual_length;
2565
2566 memcpy(temp->old_xfer_buffer, temp->data, length);
8408fd1d
RB
2567 }
2568 urb->transfer_buffer = temp->old_xfer_buffer;
2569 kfree(temp->kmalloc_ptr);
2570
2571 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
2572}
2573
2574static int musb_alloc_temp_buffer(struct urb *urb, gfp_t mem_flags)
2575{
2576 enum dma_data_direction dir;
2577 struct musb_temp_buffer *temp;
2578 void *kmalloc_ptr;
2579 size_t kmalloc_size;
2580
2581 if (urb->num_sgs || urb->sg ||
2582 urb->transfer_buffer_length == 0 ||
2583 !((uintptr_t)urb->transfer_buffer & (MUSB_USB_DMA_ALIGN - 1)))
2584 return 0;
2585
2586 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
2587
2588 /* Allocate a buffer with enough padding for alignment */
2589 kmalloc_size = urb->transfer_buffer_length +
2590 sizeof(struct musb_temp_buffer) + MUSB_USB_DMA_ALIGN - 1;
2591
2592 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
2593 if (!kmalloc_ptr)
2594 return -ENOMEM;
2595
2596 /* Position our struct temp_buffer such that data is aligned */
2597 temp = PTR_ALIGN(kmalloc_ptr, MUSB_USB_DMA_ALIGN);
2598
2599
2600 temp->kmalloc_ptr = kmalloc_ptr;
2601 temp->old_xfer_buffer = urb->transfer_buffer;
2602 if (dir == DMA_TO_DEVICE)
2603 memcpy(temp->data, urb->transfer_buffer,
2604 urb->transfer_buffer_length);
2605 urb->transfer_buffer = temp->data;
2606
2607 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
2608
2609 return 0;
2610}
2611
2612static int musb_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
2613 gfp_t mem_flags)
2614{
2615 struct musb *musb = hcd_to_musb(hcd);
2616 int ret;
2617
2618 /*
2619 * The DMA engine in RTL1.8 and above cannot handle
2620 * DMA addresses that are not aligned to a 4 byte boundary.
2621 * For such engine implemented (un)map_urb_for_dma hooks.
2622 * Do not use these hooks for RTL<1.8
2623 */
2624 if (musb->hwvers < MUSB_HWVERS_1800)
2625 return usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
2626
2627 ret = musb_alloc_temp_buffer(urb, mem_flags);
2628 if (ret)
2629 return ret;
2630
2631 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
2632 if (ret)
2633 musb_free_temp_buffer(urb);
2634
2635 return ret;
2636}
2637
2638static void musb_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
2639{
2640 struct musb *musb = hcd_to_musb(hcd);
2641
2642 usb_hcd_unmap_urb_for_dma(hcd, urb);
2643
2644 /* Do not use this hook for RTL<1.8 (see description above) */
2645 if (musb->hwvers < MUSB_HWVERS_1800)
2646 return;
2647
2648 musb_free_temp_buffer(urb);
2649}
2650#endif /* !CONFIG_MUSB_PIO_ONLY */
2651
74c2e936 2652static const struct hc_driver musb_hc_driver = {
550a7375
FB
2653 .description = "musb-hcd",
2654 .product_desc = "MUSB HDRC host driver",
74c2e936 2655 .hcd_priv_size = sizeof(struct musb *),
20357720 2656 .flags = HCD_USB2 | HCD_MEMORY | HCD_BH,
550a7375
FB
2657
2658 /* not using irq handler or reset hooks from usbcore, since
2659 * those must be shared with peripheral code for OTG configs
2660 */
2661
2662 .start = musb_h_start,
2663 .stop = musb_h_stop,
2664
2665 .get_frame_number = musb_h_get_frame_number,
2666
2667 .urb_enqueue = musb_urb_enqueue,
2668 .urb_dequeue = musb_urb_dequeue,
2669 .endpoint_disable = musb_h_disable,
2670
8408fd1d
RB
2671#ifndef CONFIG_MUSB_PIO_ONLY
2672 .map_urb_for_dma = musb_map_urb_for_dma,
2673 .unmap_urb_for_dma = musb_unmap_urb_for_dma,
2674#endif
2675
550a7375
FB
2676 .hub_status_data = musb_hub_status_data,
2677 .hub_control = musb_hub_control,
2678 .bus_suspend = musb_bus_suspend,
2679 .bus_resume = musb_bus_resume,
2680 /* .start_port_reset = NULL, */
2681 /* .hub_irq_enable = NULL, */
2682};
0b3eba44 2683
74c2e936
DM
2684int musb_host_alloc(struct musb *musb)
2685{
2686 struct device *dev = musb->controller;
2687
2688 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
2689 musb->hcd = usb_create_hcd(&musb_hc_driver, dev, dev_name(dev));
2690 if (!musb->hcd)
2691 return -EINVAL;
2692
2693 *musb->hcd->hcd_priv = (unsigned long) musb;
2694 musb->hcd->self.uses_pio_for_control = 1;
2695 musb->hcd->uses_new_polling = 1;
2696 musb->hcd->has_tt = 1;
2697
2698 return 0;
2699}
2700
2701void musb_host_cleanup(struct musb *musb)
2702{
90474288
SAS
2703 if (musb->port_mode == MUSB_PORT_MODE_GADGET)
2704 return;
74c2e936 2705 usb_remove_hcd(musb->hcd);
74c2e936
DM
2706}
2707
2708void musb_host_free(struct musb *musb)
2709{
2710 usb_put_hcd(musb->hcd);
2711}
2712
2cc65fea
DM
2713int musb_host_setup(struct musb *musb, int power_budget)
2714{
2715 int ret;
2716 struct usb_hcd *hcd = musb->hcd;
2717
2718 MUSB_HST_MODE(musb);
2719 musb->xceiv->otg->default_a = 1;
e47d9254 2720 musb->xceiv->otg->state = OTG_STATE_A_IDLE;
2cc65fea
DM
2721
2722 otg_set_host(musb->xceiv->otg, &hcd->self);
2723 hcd->self.otg_port = 1;
2724 musb->xceiv->otg->host = &hcd->self;
2725 hcd->power_budget = 2 * (power_budget ? : 250);
2726
2727 ret = usb_add_hcd(hcd, 0, 0);
2728 if (ret < 0)
2729 return ret;
2730
3c9740a1 2731 device_wakeup_enable(hcd->self.controller);
2cc65fea
DM
2732 return 0;
2733}
2734
0b3eba44
DM
2735void musb_host_resume_root_hub(struct musb *musb)
2736{
74c2e936 2737 usb_hcd_resume_root_hub(musb->hcd);
0b3eba44
DM
2738}
2739
2740void musb_host_poke_root_hub(struct musb *musb)
2741{
2742 MUSB_HST_MODE(musb);
74c2e936
DM
2743 if (musb->hcd->status_urb)
2744 usb_hcd_poll_rh_status(musb->hcd);
0b3eba44 2745 else
74c2e936 2746 usb_hcd_resume_root_hub(musb->hcd);
0b3eba44 2747}