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