usb: musb: omap2430: kill redundant assignments in omap2430_probe()
[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 */
f2786281 637 /*
638 * Enable Autoset according to table
639 * below
640 * bulk_split hb_mult Autoset_Enable
641 * 0 1 Yes(Normal)
642 * 0 >1 No(High BW ISO)
643 * 1 1 Yes(HS bulk)
644 * 1 >1 Yes(FS bulk)
645 */
646 if (qh->hb_mult == 1 || (qh->hb_mult > 1 &&
647 can_bulk_split(hw_ep->musb, qh->type)))
a483d706 648 csr |= MUSB_TXCSR_AUTOSET;
6b6e9710
SS
649 } else {
650 mode = 0;
651 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAMODE);
652 csr |= MUSB_TXCSR_DMAENAB; /* against programmer's guide */
653 }
654 channel->desired_mode = mode;
655 musb_writew(epio, MUSB_TXCSR, csr);
656#else
657 if (!is_cppi_enabled() && !tusb_dma_omap())
658 return false;
659
660 channel->actual_len = 0;
661
662 /*
663 * TX uses "RNDIS" mode automatically but needs help
664 * to identify the zero-length-final-packet case.
665 */
666 mode = (urb->transfer_flags & URB_ZERO_PACKET) ? 1 : 0;
667#endif
668
669 qh->segsize = length;
670
4c647338
SS
671 /*
672 * Ensure the data reaches to main memory before starting
673 * DMA transfer
674 */
675 wmb();
676
6b6e9710
SS
677 if (!dma->channel_program(channel, pkt_size, mode,
678 urb->transfer_dma + offset, length)) {
679 dma->channel_release(channel);
680 hw_ep->tx_channel = NULL;
681
682 csr = musb_readw(epio, MUSB_TXCSR);
683 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAENAB);
684 musb_writew(epio, MUSB_TXCSR, csr | MUSB_TXCSR_H_WZC_BITS);
685 return false;
686 }
687 return true;
688}
550a7375
FB
689
690/*
691 * Program an HDRC endpoint as per the given URB
692 * Context: irqs blocked, controller lock held
693 */
694static void musb_ep_program(struct musb *musb, u8 epnum,
6b6e9710
SS
695 struct urb *urb, int is_out,
696 u8 *buf, u32 offset, u32 len)
550a7375
FB
697{
698 struct dma_controller *dma_controller;
699 struct dma_channel *dma_channel;
700 u8 dma_ok;
701 void __iomem *mbase = musb->mregs;
702 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
703 void __iomem *epio = hw_ep->regs;
3e5c6dc7
SS
704 struct musb_qh *qh = musb_ep_get_qh(hw_ep, !is_out);
705 u16 packet_sz = qh->maxpacket;
3132122c
AKG
706 u8 use_dma = 1;
707 u16 csr;
550a7375 708
5c8a86e1 709 dev_dbg(musb->controller, "%s hw%d urb %p spd%d dev%d ep%d%s "
550a7375
FB
710 "h_addr%02x h_port%02x bytes %d\n",
711 is_out ? "-->" : "<--",
712 epnum, urb, urb->dev->speed,
713 qh->addr_reg, qh->epnum, is_out ? "out" : "in",
714 qh->h_addr_reg, qh->h_port_reg,
715 len);
716
717 musb_ep_select(mbase, epnum);
718
3132122c
AKG
719 if (is_out && !len) {
720 use_dma = 0;
721 csr = musb_readw(epio, MUSB_TXCSR);
722 csr &= ~MUSB_TXCSR_DMAENAB;
723 musb_writew(epio, MUSB_TXCSR, csr);
724 hw_ep->tx_channel = NULL;
725 }
726
550a7375
FB
727 /* candidate for DMA? */
728 dma_controller = musb->dma_controller;
3132122c 729 if (use_dma && is_dma_capable() && epnum && dma_controller) {
550a7375
FB
730 dma_channel = is_out ? hw_ep->tx_channel : hw_ep->rx_channel;
731 if (!dma_channel) {
732 dma_channel = dma_controller->channel_alloc(
733 dma_controller, hw_ep, is_out);
734 if (is_out)
735 hw_ep->tx_channel = dma_channel;
736 else
737 hw_ep->rx_channel = dma_channel;
738 }
739 } else
740 dma_channel = NULL;
741
742 /* make sure we clear DMAEnab, autoSet bits from previous run */
743
744 /* OUT/transmit/EP0 or IN/receive? */
745 if (is_out) {
746 u16 csr;
747 u16 int_txe;
748 u16 load_count;
749
750 csr = musb_readw(epio, MUSB_TXCSR);
751
752 /* disable interrupt in case we flush */
b18d26f6 753 int_txe = musb->intrtxe;
550a7375
FB
754 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
755
756 /* general endpoint setup */
757 if (epnum) {
550a7375
FB
758 /* flush all old state, set default */
759 musb_h_tx_flush_fifo(hw_ep);
b6e434a5
SS
760
761 /*
762 * We must not clear the DMAMODE bit before or in
763 * the same cycle with the DMAENAB bit, so we clear
764 * the latter first...
765 */
550a7375 766 csr &= ~(MUSB_TXCSR_H_NAKTIMEOUT
b6e434a5
SS
767 | MUSB_TXCSR_AUTOSET
768 | MUSB_TXCSR_DMAENAB
550a7375
FB
769 | MUSB_TXCSR_FRCDATATOG
770 | MUSB_TXCSR_H_RXSTALL
771 | MUSB_TXCSR_H_ERROR
772 | MUSB_TXCSR_TXPKTRDY
773 );
774 csr |= MUSB_TXCSR_MODE;
775
b6e434a5 776 if (usb_gettoggle(urb->dev, qh->epnum, 1))
550a7375
FB
777 csr |= MUSB_TXCSR_H_WR_DATATOGGLE
778 | MUSB_TXCSR_H_DATATOGGLE;
779 else
780 csr |= MUSB_TXCSR_CLRDATATOG;
781
550a7375
FB
782 musb_writew(epio, MUSB_TXCSR, csr);
783 /* REVISIT may need to clear FLUSHFIFO ... */
b6e434a5 784 csr &= ~MUSB_TXCSR_DMAMODE;
550a7375
FB
785 musb_writew(epio, MUSB_TXCSR, csr);
786 csr = musb_readw(epio, MUSB_TXCSR);
787 } else {
788 /* endpoint 0: just flush */
78322c1a 789 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
790 }
791
792 /* target addr and (for multipoint) hub addr/port */
793 if (musb->is_multipoint) {
c6cf8b00
BW
794 musb_write_txfunaddr(mbase, epnum, qh->addr_reg);
795 musb_write_txhubaddr(mbase, epnum, qh->h_addr_reg);
796 musb_write_txhubport(mbase, epnum, qh->h_port_reg);
550a7375
FB
797/* FIXME if !epnum, do the same for RX ... */
798 } else
799 musb_writeb(mbase, MUSB_FADDR, qh->addr_reg);
800
801 /* protocol/endpoint/interval/NAKlimit */
802 if (epnum) {
803 musb_writeb(epio, MUSB_TXTYPE, qh->type_reg);
f2786281 804 if (musb->double_buffer_not_ok) {
550a7375 805 musb_writew(epio, MUSB_TXMAXP,
06624818 806 hw_ep->max_packet_sz_tx);
f2786281 807 } else if (can_bulk_split(musb, qh->type)) {
808 qh->hb_mult = hw_ep->max_packet_sz_tx
809 / packet_sz;
ccc080c7 810 musb_writew(epio, MUSB_TXMAXP, packet_sz
f2786281 811 | ((qh->hb_mult) - 1) << 11);
812 } else {
550a7375 813 musb_writew(epio, MUSB_TXMAXP,
06624818
FB
814 qh->maxpacket |
815 ((qh->hb_mult - 1) << 11));
f2786281 816 }
550a7375
FB
817 musb_writeb(epio, MUSB_TXINTERVAL, qh->intv_reg);
818 } else {
819 musb_writeb(epio, MUSB_NAKLIMIT0, qh->intv_reg);
820 if (musb->is_multipoint)
821 musb_writeb(epio, MUSB_TYPE0,
822 qh->type_reg);
823 }
824
825 if (can_bulk_split(musb, qh->type))
826 load_count = min((u32) hw_ep->max_packet_sz_tx,
827 len);
828 else
829 load_count = min((u32) packet_sz, len);
830
6b6e9710
SS
831 if (dma_channel && musb_tx_dma_program(dma_controller,
832 hw_ep, qh, urb, offset, len))
833 load_count = 0;
550a7375
FB
834
835 if (load_count) {
550a7375
FB
836 /* PIO to load FIFO */
837 qh->segsize = load_count;
8e8a5516
VS
838 if (!buf) {
839 sg_miter_start(&qh->sg_miter, urb->sg, 1,
840 SG_MITER_ATOMIC
841 | SG_MITER_FROM_SG);
842 if (!sg_miter_next(&qh->sg_miter)) {
843 dev_err(musb->controller,
844 "error: sg"
845 "list empty\n");
846 sg_miter_stop(&qh->sg_miter);
847 goto finish;
848 }
849 buf = qh->sg_miter.addr + urb->sg->offset +
850 urb->actual_length;
851 load_count = min_t(u32, load_count,
852 qh->sg_miter.length);
853 musb_write_fifo(hw_ep, load_count, buf);
854 qh->sg_miter.consumed = load_count;
855 sg_miter_stop(&qh->sg_miter);
856 } else
857 musb_write_fifo(hw_ep, load_count, buf);
550a7375 858 }
8e8a5516 859finish:
550a7375
FB
860 /* re-enable interrupt */
861 musb_writew(mbase, MUSB_INTRTXE, int_txe);
862
863 /* IN/receive */
864 } else {
865 u16 csr;
866
867 if (hw_ep->rx_reinit) {
868 musb_rx_reinit(musb, qh, hw_ep);
869
870 /* init new state: toggle and NYET, maybe DMA later */
871 if (usb_gettoggle(urb->dev, qh->epnum, 0))
872 csr = MUSB_RXCSR_H_WR_DATATOGGLE
873 | MUSB_RXCSR_H_DATATOGGLE;
874 else
875 csr = 0;
876 if (qh->type == USB_ENDPOINT_XFER_INT)
877 csr |= MUSB_RXCSR_DISNYET;
878
879 } else {
880 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
881
882 if (csr & (MUSB_RXCSR_RXPKTRDY
883 | MUSB_RXCSR_DMAENAB
884 | MUSB_RXCSR_H_REQPKT))
885 ERR("broken !rx_reinit, ep%d csr %04x\n",
886 hw_ep->epnum, csr);
887
888 /* scrub any stale state, leaving toggle alone */
889 csr &= MUSB_RXCSR_DISNYET;
890 }
891
892 /* kick things off */
893
894 if ((is_cppi_enabled() || tusb_dma_omap()) && dma_channel) {
c51e36dc
SS
895 /* Candidate for DMA */
896 dma_channel->actual_len = 0L;
897 qh->segsize = len;
898
899 /* AUTOREQ is in a DMA register */
900 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
901 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
902
903 /*
904 * Unless caller treats short RX transfers as
905 * errors, we dare not queue multiple transfers.
906 */
907 dma_ok = dma_controller->channel_program(dma_channel,
908 packet_sz, !(urb->transfer_flags &
909 URB_SHORT_NOT_OK),
910 urb->transfer_dma + offset,
911 qh->segsize);
912 if (!dma_ok) {
913 dma_controller->channel_release(dma_channel);
914 hw_ep->rx_channel = dma_channel = NULL;
915 } else
916 csr |= MUSB_RXCSR_DMAENAB;
550a7375
FB
917 }
918
919 csr |= MUSB_RXCSR_H_REQPKT;
5c8a86e1 920 dev_dbg(musb->controller, "RXCSR%d := %04x\n", epnum, csr);
550a7375
FB
921 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
922 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
923 }
924}
925
f283862f
AKG
926/* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
927 * the end; avoids starvation for other endpoints.
928 */
929static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
930 int is_in)
931{
932 struct dma_channel *dma;
933 struct urb *urb;
934 void __iomem *mbase = musb->mregs;
935 void __iomem *epio = ep->regs;
936 struct musb_qh *cur_qh, *next_qh;
937 u16 rx_csr, tx_csr;
938
939 musb_ep_select(mbase, ep->epnum);
940 if (is_in) {
941 dma = is_dma_capable() ? ep->rx_channel : NULL;
942
943 /* clear nak timeout bit */
944 rx_csr = musb_readw(epio, MUSB_RXCSR);
945 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
946 rx_csr &= ~MUSB_RXCSR_DATAERROR;
947 musb_writew(epio, MUSB_RXCSR, rx_csr);
948
949 cur_qh = first_qh(&musb->in_bulk);
950 } else {
951 dma = is_dma_capable() ? ep->tx_channel : NULL;
952
953 /* clear nak timeout bit */
954 tx_csr = musb_readw(epio, MUSB_TXCSR);
955 tx_csr |= MUSB_TXCSR_H_WZC_BITS;
956 tx_csr &= ~MUSB_TXCSR_H_NAKTIMEOUT;
957 musb_writew(epio, MUSB_TXCSR, tx_csr);
958
959 cur_qh = first_qh(&musb->out_bulk);
960 }
961 if (cur_qh) {
962 urb = next_urb(cur_qh);
963 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
964 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
965 musb->dma_controller->channel_abort(dma);
966 urb->actual_length += dma->actual_len;
967 dma->actual_len = 0L;
968 }
969 musb_save_toggle(cur_qh, is_in, urb);
970
971 if (is_in) {
972 /* move cur_qh to end of queue */
973 list_move_tail(&cur_qh->ring, &musb->in_bulk);
974
975 /* get the next qh from musb->in_bulk */
976 next_qh = first_qh(&musb->in_bulk);
977
978 /* set rx_reinit and schedule the next qh */
979 ep->rx_reinit = 1;
980 } else {
981 /* move cur_qh to end of queue */
982 list_move_tail(&cur_qh->ring, &musb->out_bulk);
983
984 /* get the next qh from musb->out_bulk */
985 next_qh = first_qh(&musb->out_bulk);
986
987 /* set tx_reinit and schedule the next qh */
988 ep->tx_reinit = 1;
989 }
990 musb_start_urb(musb, is_in, next_qh);
991 }
992}
550a7375
FB
993
994/*
995 * Service the default endpoint (ep0) as host.
996 * Return true until it's time to start the status stage.
997 */
998static bool musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb)
999{
1000 bool more = false;
1001 u8 *fifo_dest = NULL;
1002 u16 fifo_count = 0;
1003 struct musb_hw_ep *hw_ep = musb->control_ep;
1004 struct musb_qh *qh = hw_ep->in_qh;
1005 struct usb_ctrlrequest *request;
1006
1007 switch (musb->ep0_stage) {
1008 case MUSB_EP0_IN:
1009 fifo_dest = urb->transfer_buffer + urb->actual_length;
3ecdb9ac
SS
1010 fifo_count = min_t(size_t, len, urb->transfer_buffer_length -
1011 urb->actual_length);
550a7375
FB
1012 if (fifo_count < len)
1013 urb->status = -EOVERFLOW;
1014
1015 musb_read_fifo(hw_ep, fifo_count, fifo_dest);
1016
1017 urb->actual_length += fifo_count;
1018 if (len < qh->maxpacket) {
1019 /* always terminate on short read; it's
1020 * rarely reported as an error.
1021 */
1022 } else if (urb->actual_length <
1023 urb->transfer_buffer_length)
1024 more = true;
1025 break;
1026 case MUSB_EP0_START:
1027 request = (struct usb_ctrlrequest *) urb->setup_packet;
1028
1029 if (!request->wLength) {
5c8a86e1 1030 dev_dbg(musb->controller, "start no-DATA\n");
550a7375
FB
1031 break;
1032 } else if (request->bRequestType & USB_DIR_IN) {
5c8a86e1 1033 dev_dbg(musb->controller, "start IN-DATA\n");
550a7375
FB
1034 musb->ep0_stage = MUSB_EP0_IN;
1035 more = true;
1036 break;
1037 } else {
5c8a86e1 1038 dev_dbg(musb->controller, "start OUT-DATA\n");
550a7375
FB
1039 musb->ep0_stage = MUSB_EP0_OUT;
1040 more = true;
1041 }
1042 /* FALLTHROUGH */
1043 case MUSB_EP0_OUT:
3ecdb9ac
SS
1044 fifo_count = min_t(size_t, qh->maxpacket,
1045 urb->transfer_buffer_length -
1046 urb->actual_length);
550a7375
FB
1047 if (fifo_count) {
1048 fifo_dest = (u8 *) (urb->transfer_buffer
1049 + urb->actual_length);
5c8a86e1 1050 dev_dbg(musb->controller, "Sending %d byte%s to ep0 fifo %p\n",
bb1c9ef1
DB
1051 fifo_count,
1052 (fifo_count == 1) ? "" : "s",
1053 fifo_dest);
550a7375
FB
1054 musb_write_fifo(hw_ep, fifo_count, fifo_dest);
1055
1056 urb->actual_length += fifo_count;
1057 more = true;
1058 }
1059 break;
1060 default:
1061 ERR("bogus ep0 stage %d\n", musb->ep0_stage);
1062 break;
1063 }
1064
1065 return more;
1066}
1067
1068/*
1069 * Handle default endpoint interrupt as host. Only called in IRQ time
c767c1c6 1070 * from musb_interrupt().
550a7375
FB
1071 *
1072 * called with controller irqlocked
1073 */
1074irqreturn_t musb_h_ep0_irq(struct musb *musb)
1075{
1076 struct urb *urb;
1077 u16 csr, len;
1078 int status = 0;
1079 void __iomem *mbase = musb->mregs;
1080 struct musb_hw_ep *hw_ep = musb->control_ep;
1081 void __iomem *epio = hw_ep->regs;
1082 struct musb_qh *qh = hw_ep->in_qh;
1083 bool complete = false;
1084 irqreturn_t retval = IRQ_NONE;
1085
1086 /* ep0 only has one queue, "in" */
1087 urb = next_urb(qh);
1088
1089 musb_ep_select(mbase, 0);
1090 csr = musb_readw(epio, MUSB_CSR0);
1091 len = (csr & MUSB_CSR0_RXPKTRDY)
1092 ? musb_readb(epio, MUSB_COUNT0)
1093 : 0;
1094
5c8a86e1 1095 dev_dbg(musb->controller, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
550a7375
FB
1096 csr, qh, len, urb, musb->ep0_stage);
1097
1098 /* if we just did status stage, we are done */
1099 if (MUSB_EP0_STATUS == musb->ep0_stage) {
1100 retval = IRQ_HANDLED;
1101 complete = true;
1102 }
1103
1104 /* prepare status */
1105 if (csr & MUSB_CSR0_H_RXSTALL) {
5c8a86e1 1106 dev_dbg(musb->controller, "STALLING ENDPOINT\n");
550a7375
FB
1107 status = -EPIPE;
1108
1109 } else if (csr & MUSB_CSR0_H_ERROR) {
5c8a86e1 1110 dev_dbg(musb->controller, "no response, csr0 %04x\n", csr);
550a7375
FB
1111 status = -EPROTO;
1112
1113 } else if (csr & MUSB_CSR0_H_NAKTIMEOUT) {
5c8a86e1 1114 dev_dbg(musb->controller, "control NAK timeout\n");
550a7375
FB
1115
1116 /* NOTE: this code path would be a good place to PAUSE a
1117 * control transfer, if another one is queued, so that
1e0320f0
AKG
1118 * ep0 is more likely to stay busy. That's already done
1119 * for bulk RX transfers.
550a7375
FB
1120 *
1121 * if (qh->ring.next != &musb->control), then
1122 * we have a candidate... NAKing is *NOT* an error
1123 */
1124 musb_writew(epio, MUSB_CSR0, 0);
1125 retval = IRQ_HANDLED;
1126 }
1127
1128 if (status) {
5c8a86e1 1129 dev_dbg(musb->controller, "aborting\n");
550a7375
FB
1130 retval = IRQ_HANDLED;
1131 if (urb)
1132 urb->status = status;
1133 complete = true;
1134
1135 /* use the proper sequence to abort the transfer */
1136 if (csr & MUSB_CSR0_H_REQPKT) {
1137 csr &= ~MUSB_CSR0_H_REQPKT;
1138 musb_writew(epio, MUSB_CSR0, csr);
1139 csr &= ~MUSB_CSR0_H_NAKTIMEOUT;
1140 musb_writew(epio, MUSB_CSR0, csr);
1141 } else {
78322c1a 1142 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
1143 }
1144
1145 musb_writeb(epio, MUSB_NAKLIMIT0, 0);
1146
1147 /* clear it */
1148 musb_writew(epio, MUSB_CSR0, 0);
1149 }
1150
1151 if (unlikely(!urb)) {
1152 /* stop endpoint since we have no place for its data, this
1153 * SHOULD NEVER HAPPEN! */
1154 ERR("no URB for end 0\n");
1155
78322c1a 1156 musb_h_ep0_flush_fifo(hw_ep);
550a7375
FB
1157 goto done;
1158 }
1159
1160 if (!complete) {
1161 /* call common logic and prepare response */
1162 if (musb_h_ep0_continue(musb, len, urb)) {
1163 /* more packets required */
1164 csr = (MUSB_EP0_IN == musb->ep0_stage)
1165 ? MUSB_CSR0_H_REQPKT : MUSB_CSR0_TXPKTRDY;
1166 } else {
1167 /* data transfer complete; perform status phase */
1168 if (usb_pipeout(urb->pipe)
1169 || !urb->transfer_buffer_length)
1170 csr = MUSB_CSR0_H_STATUSPKT
1171 | MUSB_CSR0_H_REQPKT;
1172 else
1173 csr = MUSB_CSR0_H_STATUSPKT
1174 | MUSB_CSR0_TXPKTRDY;
1175
1176 /* flag status stage */
1177 musb->ep0_stage = MUSB_EP0_STATUS;
1178
5c8a86e1 1179 dev_dbg(musb->controller, "ep0 STATUS, csr %04x\n", csr);
550a7375
FB
1180
1181 }
1182 musb_writew(epio, MUSB_CSR0, csr);
1183 retval = IRQ_HANDLED;
1184 } else
1185 musb->ep0_stage = MUSB_EP0_IDLE;
1186
1187 /* call completion handler if done */
1188 if (complete)
1189 musb_advance_schedule(musb, urb, hw_ep, 1);
1190done:
1191 return retval;
1192}
1193
1194
1195#ifdef CONFIG_USB_INVENTRA_DMA
1196
1197/* Host side TX (OUT) using Mentor DMA works as follows:
1198 submit_urb ->
1199 - if queue was empty, Program Endpoint
1200 - ... which starts DMA to fifo in mode 1 or 0
1201
1202 DMA Isr (transfer complete) -> TxAvail()
1203 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1204 only in musb_cleanup_urb)
1205 - TxPktRdy has to be set in mode 0 or for
1206 short packets in mode 1.
1207*/
1208
1209#endif
1210
1211/* Service a Tx-Available or dma completion irq for the endpoint */
1212void musb_host_tx(struct musb *musb, u8 epnum)
1213{
1214 int pipe;
1215 bool done = false;
1216 u16 tx_csr;
6b6e9710
SS
1217 size_t length = 0;
1218 size_t offset = 0;
550a7375
FB
1219 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1220 void __iomem *epio = hw_ep->regs;
3e5c6dc7
SS
1221 struct musb_qh *qh = hw_ep->out_qh;
1222 struct urb *urb = next_urb(qh);
550a7375
FB
1223 u32 status = 0;
1224 void __iomem *mbase = musb->mregs;
1225 struct dma_channel *dma;
f8afbf7f 1226 bool transfer_pending = false;
8e8a5516 1227 static bool use_sg;
550a7375 1228
550a7375
FB
1229 musb_ep_select(mbase, epnum);
1230 tx_csr = musb_readw(epio, MUSB_TXCSR);
1231
1232 /* with CPPI, DMA sometimes triggers "extra" irqs */
1233 if (!urb) {
5c8a86e1 1234 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
6b6e9710 1235 return;
550a7375
FB
1236 }
1237
1238 pipe = urb->pipe;
1239 dma = is_dma_capable() ? hw_ep->tx_channel : NULL;
5c8a86e1 1240 dev_dbg(musb->controller, "OUT/TX%d end, csr %04x%s\n", epnum, tx_csr,
550a7375
FB
1241 dma ? ", dma" : "");
1242
1243 /* check for errors */
1244 if (tx_csr & MUSB_TXCSR_H_RXSTALL) {
1245 /* dma was disabled, fifo flushed */
5c8a86e1 1246 dev_dbg(musb->controller, "TX end %d stall\n", epnum);
550a7375
FB
1247
1248 /* stall; record URB status */
1249 status = -EPIPE;
1250
1251 } else if (tx_csr & MUSB_TXCSR_H_ERROR) {
1252 /* (NON-ISO) dma was disabled, fifo flushed */
5c8a86e1 1253 dev_dbg(musb->controller, "TX 3strikes on ep=%d\n", epnum);
550a7375
FB
1254
1255 status = -ETIMEDOUT;
1256
1257 } else if (tx_csr & MUSB_TXCSR_H_NAKTIMEOUT) {
f283862f
AKG
1258 if (USB_ENDPOINT_XFER_BULK == qh->type && qh->mux == 1
1259 && !list_is_singular(&musb->out_bulk)) {
1260 dev_dbg(musb->controller,
1261 "NAK timeout on TX%d ep\n", epnum);
1262 musb_bulk_nak_timeout(musb, hw_ep, 0);
1263 } else {
1264 dev_dbg(musb->controller,
1265 "TX end=%d device not responding\n", epnum);
1266 /* NOTE: this code path would be a good place to PAUSE a
1267 * transfer, if there's some other (nonperiodic) tx urb
1268 * that could use this fifo. (dma complicates it...)
1269 * That's already done for bulk RX transfers.
1270 *
1271 * if (bulk && qh->ring.next != &musb->out_bulk), then
1272 * we have a candidate... NAKing is *NOT* an error
1273 */
1274 musb_ep_select(mbase, epnum);
1275 musb_writew(epio, MUSB_TXCSR,
1276 MUSB_TXCSR_H_WZC_BITS
1277 | MUSB_TXCSR_TXPKTRDY);
1278 }
1279 return;
550a7375
FB
1280 }
1281
8e8a5516 1282done:
550a7375
FB
1283 if (status) {
1284 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1285 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1286 (void) musb->dma_controller->channel_abort(dma);
1287 }
1288
1289 /* do the proper sequence to abort the transfer in the
1290 * usb core; the dma engine should already be stopped.
1291 */
1292 musb_h_tx_flush_fifo(hw_ep);
1293 tx_csr &= ~(MUSB_TXCSR_AUTOSET
1294 | MUSB_TXCSR_DMAENAB
1295 | MUSB_TXCSR_H_ERROR
1296 | MUSB_TXCSR_H_RXSTALL
1297 | MUSB_TXCSR_H_NAKTIMEOUT
1298 );
1299
1300 musb_ep_select(mbase, epnum);
1301 musb_writew(epio, MUSB_TXCSR, tx_csr);
1302 /* REVISIT may need to clear FLUSHFIFO ... */
1303 musb_writew(epio, MUSB_TXCSR, tx_csr);
1304 musb_writeb(epio, MUSB_TXINTERVAL, 0);
1305
1306 done = true;
1307 }
1308
1309 /* second cppi case */
1310 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
5c8a86e1 1311 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
6b6e9710 1312 return;
550a7375
FB
1313 }
1314
c7bbc056
SS
1315 if (is_dma_capable() && dma && !status) {
1316 /*
1317 * DMA has completed. But if we're using DMA mode 1 (multi
1318 * packet DMA), we need a terminal TXPKTRDY interrupt before
1319 * we can consider this transfer completed, lest we trash
1320 * its last packet when writing the next URB's data. So we
1321 * switch back to mode 0 to get that interrupt; we'll come
1322 * back here once it happens.
1323 */
1324 if (tx_csr & MUSB_TXCSR_DMAMODE) {
1325 /*
1326 * We shouldn't clear DMAMODE with DMAENAB set; so
1327 * clear them in a safe order. That should be OK
1328 * once TXPKTRDY has been set (and I've never seen
1329 * it being 0 at this moment -- DMA interrupt latency
1330 * is significant) but if it hasn't been then we have
1331 * no choice but to stop being polite and ignore the
1332 * programmer's guide... :-)
1333 *
1334 * Note that we must write TXCSR with TXPKTRDY cleared
1335 * in order not to re-trigger the packet send (this bit
1336 * can't be cleared by CPU), and there's another caveat:
1337 * TXPKTRDY may be set shortly and then cleared in the
1338 * double-buffered FIFO mode, so we do an extra TXCSR
1339 * read for debouncing...
1340 */
1341 tx_csr &= musb_readw(epio, MUSB_TXCSR);
1342 if (tx_csr & MUSB_TXCSR_TXPKTRDY) {
1343 tx_csr &= ~(MUSB_TXCSR_DMAENAB |
1344 MUSB_TXCSR_TXPKTRDY);
1345 musb_writew(epio, MUSB_TXCSR,
1346 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1347 }
1348 tx_csr &= ~(MUSB_TXCSR_DMAMODE |
1349 MUSB_TXCSR_TXPKTRDY);
1350 musb_writew(epio, MUSB_TXCSR,
1351 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1352
1353 /*
1354 * There is no guarantee that we'll get an interrupt
1355 * after clearing DMAMODE as we might have done this
1356 * too late (after TXPKTRDY was cleared by controller).
1357 * Re-read TXCSR as we have spoiled its previous value.
1358 */
1359 tx_csr = musb_readw(epio, MUSB_TXCSR);
1360 }
1361
1362 /*
1363 * We may get here from a DMA completion or TXPKTRDY interrupt.
1364 * In any case, we must check the FIFO status here and bail out
1365 * only if the FIFO still has data -- that should prevent the
1366 * "missed" TXPKTRDY interrupts and deal with double-buffered
1367 * FIFO mode too...
1368 */
1369 if (tx_csr & (MUSB_TXCSR_FIFONOTEMPTY | MUSB_TXCSR_TXPKTRDY)) {
5c8a86e1 1370 dev_dbg(musb->controller, "DMA complete but packet still in FIFO, "
c7bbc056
SS
1371 "CSR %04x\n", tx_csr);
1372 return;
1373 }
1374 }
1375
550a7375
FB
1376 if (!status || dma || usb_pipeisoc(pipe)) {
1377 if (dma)
6b6e9710 1378 length = dma->actual_len;
550a7375 1379 else
6b6e9710
SS
1380 length = qh->segsize;
1381 qh->offset += length;
550a7375
FB
1382
1383 if (usb_pipeisoc(pipe)) {
1384 struct usb_iso_packet_descriptor *d;
1385
1386 d = urb->iso_frame_desc + qh->iso_idx;
6b6e9710
SS
1387 d->actual_length = length;
1388 d->status = status;
550a7375
FB
1389 if (++qh->iso_idx >= urb->number_of_packets) {
1390 done = true;
1391 } else {
1392 d++;
6b6e9710
SS
1393 offset = d->offset;
1394 length = d->length;
550a7375 1395 }
f8afbf7f 1396 } else if (dma && urb->transfer_buffer_length == qh->offset) {
550a7375
FB
1397 done = true;
1398 } else {
1399 /* see if we need to send more data, or ZLP */
1400 if (qh->segsize < qh->maxpacket)
1401 done = true;
1402 else if (qh->offset == urb->transfer_buffer_length
1403 && !(urb->transfer_flags
1404 & URB_ZERO_PACKET))
1405 done = true;
1406 if (!done) {
6b6e9710
SS
1407 offset = qh->offset;
1408 length = urb->transfer_buffer_length - offset;
f8afbf7f 1409 transfer_pending = true;
550a7375
FB
1410 }
1411 }
1412 }
1413
1414 /* urb->status != -EINPROGRESS means request has been faulted,
1415 * so we must abort this transfer after cleanup
1416 */
1417 if (urb->status != -EINPROGRESS) {
1418 done = true;
1419 if (status == 0)
1420 status = urb->status;
1421 }
1422
1423 if (done) {
1424 /* set status */
1425 urb->status = status;
1426 urb->actual_length = qh->offset;
1427 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_OUT);
6b6e9710 1428 return;
f8afbf7f 1429 } else if ((usb_pipeisoc(pipe) || transfer_pending) && dma) {
6b6e9710 1430 if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb,
dfeffa53
AKG
1431 offset, length)) {
1432 if (is_cppi_enabled() || tusb_dma_omap())
1433 musb_h_tx_dma_start(hw_ep);
6b6e9710 1434 return;
dfeffa53 1435 }
6b6e9710 1436 } else if (tx_csr & MUSB_TXCSR_DMAENAB) {
5c8a86e1 1437 dev_dbg(musb->controller, "not complete, but DMA enabled?\n");
6b6e9710
SS
1438 return;
1439 }
550a7375 1440
6b6e9710
SS
1441 /*
1442 * PIO: start next packet in this URB.
1443 *
1444 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1445 * (and presumably, FIFO is not half-full) we should write *two*
1446 * packets before updating TXCSR; other docs disagree...
1447 */
1448 if (length > qh->maxpacket)
1449 length = qh->maxpacket;
496dda70 1450 /* Unmap the buffer so that CPU can use it */
c8cf203a 1451 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
8e8a5516
VS
1452
1453 /*
1454 * We need to map sg if the transfer_buffer is
1455 * NULL.
1456 */
1457 if (!urb->transfer_buffer)
1458 use_sg = true;
1459
1460 if (use_sg) {
1461 /* sg_miter_start is already done in musb_ep_program */
1462 if (!sg_miter_next(&qh->sg_miter)) {
1463 dev_err(musb->controller, "error: sg list empty\n");
1464 sg_miter_stop(&qh->sg_miter);
1465 status = -EINVAL;
1466 goto done;
1467 }
1468 urb->transfer_buffer = qh->sg_miter.addr;
1469 length = min_t(u32, length, qh->sg_miter.length);
1470 musb_write_fifo(hw_ep, length, urb->transfer_buffer);
1471 qh->sg_miter.consumed = length;
1472 sg_miter_stop(&qh->sg_miter);
1473 } else {
1474 musb_write_fifo(hw_ep, length, urb->transfer_buffer + offset);
1475 }
1476
6b6e9710 1477 qh->segsize = length;
550a7375 1478
8e8a5516
VS
1479 if (use_sg) {
1480 if (offset + length >= urb->transfer_buffer_length)
1481 use_sg = false;
1482 }
1483
6b6e9710
SS
1484 musb_ep_select(mbase, epnum);
1485 musb_writew(epio, MUSB_TXCSR,
1486 MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY);
550a7375
FB
1487}
1488
1489
1490#ifdef CONFIG_USB_INVENTRA_DMA
1491
1492/* Host side RX (IN) using Mentor DMA works as follows:
1493 submit_urb ->
1494 - if queue was empty, ProgramEndpoint
1495 - first IN token is sent out (by setting ReqPkt)
1496 LinuxIsr -> RxReady()
1497 /\ => first packet is received
1498 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1499 | -> DMA Isr (transfer complete) -> RxReady()
1500 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1501 | - if urb not complete, send next IN token (ReqPkt)
1502 | | else complete urb.
1503 | |
1504 ---------------------------
1505 *
1506 * Nuances of mode 1:
1507 * For short packets, no ack (+RxPktRdy) is sent automatically
1508 * (even if AutoClear is ON)
1509 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1510 * automatically => major problem, as collecting the next packet becomes
1511 * difficult. Hence mode 1 is not used.
1512 *
1513 * REVISIT
1514 * All we care about at this driver level is that
1515 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1516 * (b) termination conditions are: short RX, or buffer full;
1517 * (c) fault modes include
1518 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1519 * (and that endpoint's dma queue stops immediately)
1520 * - overflow (full, PLUS more bytes in the terminal packet)
1521 *
1522 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1523 * thus be a great candidate for using mode 1 ... for all but the
1524 * last packet of one URB's transfer.
1525 */
1526
1527#endif
1528
1529/*
1530 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1531 * and high-bandwidth IN transfer cases.
1532 */
1533void musb_host_rx(struct musb *musb, u8 epnum)
1534{
1535 struct urb *urb;
1536 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1537 void __iomem *epio = hw_ep->regs;
1538 struct musb_qh *qh = hw_ep->in_qh;
1539 size_t xfer_len;
1540 void __iomem *mbase = musb->mregs;
1541 int pipe;
1542 u16 rx_csr, val;
1543 bool iso_err = false;
1544 bool done = false;
1545 u32 status;
1546 struct dma_channel *dma;
8e8a5516
VS
1547 static bool use_sg;
1548 unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
550a7375
FB
1549
1550 musb_ep_select(mbase, epnum);
1551
1552 urb = next_urb(qh);
1553 dma = is_dma_capable() ? hw_ep->rx_channel : NULL;
1554 status = 0;
1555 xfer_len = 0;
1556
1557 rx_csr = musb_readw(epio, MUSB_RXCSR);
1558 val = rx_csr;
1559
1560 if (unlikely(!urb)) {
1561 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1562 * usbtest #11 (unlinks) triggers it regularly, sometimes
1563 * with fifo full. (Only with DMA??)
1564 */
5c8a86e1 1565 dev_dbg(musb->controller, "BOGUS RX%d ready, csr %04x, count %d\n", epnum, val,
550a7375
FB
1566 musb_readw(epio, MUSB_RXCOUNT));
1567 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1568 return;
1569 }
1570
1571 pipe = urb->pipe;
1572
5c8a86e1 1573 dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
550a7375
FB
1574 epnum, rx_csr, urb->actual_length,
1575 dma ? dma->actual_len : 0);
1576
1577 /* check for errors, concurrent stall & unlink is not really
1578 * handled yet! */
1579 if (rx_csr & MUSB_RXCSR_H_RXSTALL) {
5c8a86e1 1580 dev_dbg(musb->controller, "RX end %d STALL\n", epnum);
550a7375
FB
1581
1582 /* stall; record URB status */
1583 status = -EPIPE;
1584
1585 } else if (rx_csr & MUSB_RXCSR_H_ERROR) {
5c8a86e1 1586 dev_dbg(musb->controller, "end %d RX proto error\n", epnum);
550a7375
FB
1587
1588 status = -EPROTO;
1589 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1590
1591 } else if (rx_csr & MUSB_RXCSR_DATAERROR) {
1592
1593 if (USB_ENDPOINT_XFER_ISOC != qh->type) {
5c8a86e1 1594 dev_dbg(musb->controller, "RX end %d NAK timeout\n", epnum);
1e0320f0
AKG
1595
1596 /* NOTE: NAKing is *NOT* an error, so we want to
1597 * continue. Except ... if there's a request for
1598 * another QH, use that instead of starving it.
550a7375 1599 *
1e0320f0
AKG
1600 * Devices like Ethernet and serial adapters keep
1601 * reads posted at all times, which will starve
1602 * other devices without this logic.
550a7375 1603 */
1e0320f0
AKG
1604 if (usb_pipebulk(urb->pipe)
1605 && qh->mux == 1
1606 && !list_is_singular(&musb->in_bulk)) {
f283862f 1607 musb_bulk_nak_timeout(musb, hw_ep, 1);
1e0320f0
AKG
1608 return;
1609 }
550a7375 1610 musb_ep_select(mbase, epnum);
1e0320f0
AKG
1611 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1612 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1613 musb_writew(epio, MUSB_RXCSR, rx_csr);
550a7375
FB
1614
1615 goto finish;
1616 } else {
5c8a86e1 1617 dev_dbg(musb->controller, "RX end %d ISO data error\n", epnum);
550a7375
FB
1618 /* packet error reported later */
1619 iso_err = true;
1620 }
a483d706 1621 } else if (rx_csr & MUSB_RXCSR_INCOMPRX) {
5c8a86e1 1622 dev_dbg(musb->controller, "end %d high bandwidth incomplete ISO packet RX\n",
a483d706
AKG
1623 epnum);
1624 status = -EPROTO;
550a7375
FB
1625 }
1626
1627 /* faults abort the transfer */
1628 if (status) {
1629 /* clean up dma and collect transfer count */
1630 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1631 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1632 (void) musb->dma_controller->channel_abort(dma);
1633 xfer_len = dma->actual_len;
1634 }
1635 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1636 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1637 done = true;
1638 goto finish;
1639 }
1640
1641 if (unlikely(dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY)) {
1642 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1643 ERR("RX%d dma busy, csr %04x\n", epnum, rx_csr);
1644 goto finish;
1645 }
1646
1647 /* thorough shutdown for now ... given more precise fault handling
1648 * and better queueing support, we might keep a DMA pipeline going
1649 * while processing this irq for earlier completions.
1650 */
1651
1652 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1653
1654#ifndef CONFIG_USB_INVENTRA_DMA
1655 if (rx_csr & MUSB_RXCSR_H_REQPKT) {
1656 /* REVISIT this happened for a while on some short reads...
1657 * the cleanup still needs investigation... looks bad...
1658 * and also duplicates dma cleanup code above ... plus,
1659 * shouldn't this be the "half full" double buffer case?
1660 */
1661 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1662 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1663 (void) musb->dma_controller->channel_abort(dma);
1664 xfer_len = dma->actual_len;
1665 done = true;
1666 }
1667
5c8a86e1 1668 dev_dbg(musb->controller, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum, rx_csr,
550a7375
FB
1669 xfer_len, dma ? ", dma" : "");
1670 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
1671
1672 musb_ep_select(mbase, epnum);
1673 musb_writew(epio, MUSB_RXCSR,
1674 MUSB_RXCSR_H_WZC_BITS | rx_csr);
1675 }
1676#endif
1677 if (dma && (rx_csr & MUSB_RXCSR_DMAENAB)) {
1678 xfer_len = dma->actual_len;
1679
1680 val &= ~(MUSB_RXCSR_DMAENAB
1681 | MUSB_RXCSR_H_AUTOREQ
1682 | MUSB_RXCSR_AUTOCLEAR
1683 | MUSB_RXCSR_RXPKTRDY);
1684 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1685
1686#ifdef CONFIG_USB_INVENTRA_DMA
f82a689f
AKG
1687 if (usb_pipeisoc(pipe)) {
1688 struct usb_iso_packet_descriptor *d;
1689
1690 d = urb->iso_frame_desc + qh->iso_idx;
1691 d->actual_length = xfer_len;
1692
1693 /* even if there was an error, we did the dma
1694 * for iso_frame_desc->length
1695 */
72887c86 1696 if (d->status != -EILSEQ && d->status != -EOVERFLOW)
f82a689f
AKG
1697 d->status = 0;
1698
1699 if (++qh->iso_idx >= urb->number_of_packets)
1700 done = true;
1701 else
1702 done = false;
1703
1704 } else {
550a7375
FB
1705 /* done if urb buffer is full or short packet is recd */
1706 done = (urb->actual_length + xfer_len >=
1707 urb->transfer_buffer_length
1708 || dma->actual_len < qh->maxpacket);
f82a689f 1709 }
550a7375
FB
1710
1711 /* send IN token for next packet, without AUTOREQ */
1712 if (!done) {
1713 val |= MUSB_RXCSR_H_REQPKT;
1714 musb_writew(epio, MUSB_RXCSR,
1715 MUSB_RXCSR_H_WZC_BITS | val);
1716 }
1717
5c8a86e1 1718 dev_dbg(musb->controller, "ep %d dma %s, rxcsr %04x, rxcount %d\n", epnum,
550a7375
FB
1719 done ? "off" : "reset",
1720 musb_readw(epio, MUSB_RXCSR),
1721 musb_readw(epio, MUSB_RXCOUNT));
1722#else
1723 done = true;
1724#endif
1725 } else if (urb->status == -EINPROGRESS) {
1726 /* if no errors, be sure a packet is ready for unloading */
1727 if (unlikely(!(rx_csr & MUSB_RXCSR_RXPKTRDY))) {
1728 status = -EPROTO;
1729 ERR("Rx interrupt with no errors or packet!\n");
1730
1731 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1732
1733/* SCRUB (RX) */
1734 /* do the proper sequence to abort the transfer */
1735 musb_ep_select(mbase, epnum);
1736 val &= ~MUSB_RXCSR_H_REQPKT;
1737 musb_writew(epio, MUSB_RXCSR, val);
1738 goto finish;
1739 }
1740
1741 /* we are expecting IN packets */
1742#ifdef CONFIG_USB_INVENTRA_DMA
1743 if (dma) {
1744 struct dma_controller *c;
1745 u16 rx_count;
f82a689f
AKG
1746 int ret, length;
1747 dma_addr_t buf;
550a7375
FB
1748
1749 rx_count = musb_readw(epio, MUSB_RXCOUNT);
1750
5c8a86e1 1751 dev_dbg(musb->controller, "RX%d count %d, buffer 0x%x len %d/%d\n",
550a7375
FB
1752 epnum, rx_count,
1753 urb->transfer_dma
1754 + urb->actual_length,
1755 qh->offset,
1756 urb->transfer_buffer_length);
1757
1758 c = musb->dma_controller;
1759
f82a689f 1760 if (usb_pipeisoc(pipe)) {
8b4959d6 1761 int d_status = 0;
f82a689f
AKG
1762 struct usb_iso_packet_descriptor *d;
1763
1764 d = urb->iso_frame_desc + qh->iso_idx;
1765
1766 if (iso_err) {
8b4959d6 1767 d_status = -EILSEQ;
f82a689f
AKG
1768 urb->error_count++;
1769 }
1770 if (rx_count > d->length) {
8b4959d6
FB
1771 if (d_status == 0) {
1772 d_status = -EOVERFLOW;
f82a689f
AKG
1773 urb->error_count++;
1774 }
5c8a86e1 1775 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n",\
f82a689f
AKG
1776 rx_count, d->length);
1777
1778 length = d->length;
1779 } else
1780 length = rx_count;
8b4959d6 1781 d->status = d_status;
f82a689f
AKG
1782 buf = urb->transfer_dma + d->offset;
1783 } else {
1784 length = rx_count;
1785 buf = urb->transfer_dma +
1786 urb->actual_length;
1787 }
1788
550a7375
FB
1789 dma->desired_mode = 0;
1790#ifdef USE_MODE1
1791 /* because of the issue below, mode 1 will
1792 * only rarely behave with correct semantics.
1793 */
1794 if ((urb->transfer_flags &
1795 URB_SHORT_NOT_OK)
1796 && (urb->transfer_buffer_length -
1797 urb->actual_length)
1798 > qh->maxpacket)
1799 dma->desired_mode = 1;
f82a689f
AKG
1800 if (rx_count < hw_ep->max_packet_sz_rx) {
1801 length = rx_count;
ae926976 1802 dma->desired_mode = 0;
f82a689f
AKG
1803 } else {
1804 length = urb->transfer_buffer_length;
1805 }
550a7375
FB
1806#endif
1807
1808/* Disadvantage of using mode 1:
1809 * It's basically usable only for mass storage class; essentially all
1810 * other protocols also terminate transfers on short packets.
1811 *
1812 * Details:
1813 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1814 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1815 * to use the extra IN token to grab the last packet using mode 0, then
1816 * the problem is that you cannot be sure when the device will send the
1817 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1818 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1819 * transfer, while sometimes it is recd just a little late so that if you
1820 * try to configure for mode 0 soon after the mode 1 transfer is
1821 * completed, you will find rxcount 0. Okay, so you might think why not
1822 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1823 */
1824
1825 val = musb_readw(epio, MUSB_RXCSR);
1826 val &= ~MUSB_RXCSR_H_REQPKT;
1827
1828 if (dma->desired_mode == 0)
1829 val &= ~MUSB_RXCSR_H_AUTOREQ;
1830 else
1831 val |= MUSB_RXCSR_H_AUTOREQ;
a483d706
AKG
1832 val |= MUSB_RXCSR_DMAENAB;
1833
1834 /* autoclear shouldn't be set in high bandwidth */
1835 if (qh->hb_mult == 1)
1836 val |= MUSB_RXCSR_AUTOCLEAR;
550a7375
FB
1837
1838 musb_writew(epio, MUSB_RXCSR,
1839 MUSB_RXCSR_H_WZC_BITS | val);
1840
1841 /* REVISIT if when actual_length != 0,
1842 * transfer_buffer_length needs to be
1843 * adjusted first...
1844 */
1845 ret = c->channel_program(
1846 dma, qh->maxpacket,
f82a689f 1847 dma->desired_mode, buf, length);
550a7375
FB
1848
1849 if (!ret) {
1850 c->channel_release(dma);
1851 hw_ep->rx_channel = NULL;
1852 dma = NULL;
2ed9127c
MS
1853 val = musb_readw(epio, MUSB_RXCSR);
1854 val &= ~(MUSB_RXCSR_DMAENAB
1855 | MUSB_RXCSR_H_AUTOREQ
1856 | MUSB_RXCSR_AUTOCLEAR);
1857 musb_writew(epio, MUSB_RXCSR, val);
550a7375
FB
1858 }
1859 }
1860#endif /* Mentor DMA */
1861
1862 if (!dma) {
8e8a5516
VS
1863 unsigned int received_len;
1864
496dda70 1865 /* Unmap the buffer so that CPU can use it */
c8cf203a 1866 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
8e8a5516
VS
1867
1868 /*
1869 * We need to map sg if the transfer_buffer is
1870 * NULL.
1871 */
1872 if (!urb->transfer_buffer) {
1873 use_sg = true;
1874 sg_miter_start(&qh->sg_miter, urb->sg, 1,
1875 sg_flags);
1876 }
1877
1878 if (use_sg) {
1879 if (!sg_miter_next(&qh->sg_miter)) {
1880 dev_err(musb->controller, "error: sg list empty\n");
1881 sg_miter_stop(&qh->sg_miter);
1882 status = -EINVAL;
1883 done = true;
1884 goto finish;
1885 }
1886 urb->transfer_buffer = qh->sg_miter.addr;
1887 received_len = urb->actual_length;
1888 qh->offset = 0x0;
1889 done = musb_host_packet_rx(musb, urb, epnum,
1890 iso_err);
1891 /* Calculate the number of bytes received */
1892 received_len = urb->actual_length -
1893 received_len;
1894 qh->sg_miter.consumed = received_len;
1895 sg_miter_stop(&qh->sg_miter);
1896 } else {
1897 done = musb_host_packet_rx(musb, urb,
1898 epnum, iso_err);
1899 }
5c8a86e1 1900 dev_dbg(musb->controller, "read %spacket\n", done ? "last " : "");
550a7375
FB
1901 }
1902 }
1903
550a7375
FB
1904finish:
1905 urb->actual_length += xfer_len;
1906 qh->offset += xfer_len;
1907 if (done) {
8e8a5516
VS
1908 if (use_sg)
1909 use_sg = false;
1910
550a7375
FB
1911 if (urb->status == -EINPROGRESS)
1912 urb->status = status;
1913 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_IN);
1914 }
1915}
1916
1917/* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
1918 * the software schedule associates multiple such nodes with a given
1919 * host side hardware endpoint + direction; scheduling may activate
1920 * that hardware endpoint.
1921 */
1922static int musb_schedule(
1923 struct musb *musb,
1924 struct musb_qh *qh,
1925 int is_in)
1926{
1927 int idle;
1928 int best_diff;
1929 int best_end, epnum;
1930 struct musb_hw_ep *hw_ep = NULL;
1931 struct list_head *head = NULL;
5274dab6
S
1932 u8 toggle;
1933 u8 txtype;
1934 struct urb *urb = next_urb(qh);
550a7375
FB
1935
1936 /* use fixed hardware for control and bulk */
23d15e07 1937 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
550a7375
FB
1938 head = &musb->control;
1939 hw_ep = musb->control_ep;
550a7375
FB
1940 goto success;
1941 }
1942
1943 /* else, periodic transfers get muxed to other endpoints */
1944
5d67a851
SS
1945 /*
1946 * We know this qh hasn't been scheduled, so all we need to do
550a7375
FB
1947 * is choose which hardware endpoint to put it on ...
1948 *
1949 * REVISIT what we really want here is a regular schedule tree
5d67a851 1950 * like e.g. OHCI uses.
550a7375
FB
1951 */
1952 best_diff = 4096;
1953 best_end = -1;
1954
5d67a851
SS
1955 for (epnum = 1, hw_ep = musb->endpoints + 1;
1956 epnum < musb->nr_endpoints;
1957 epnum++, hw_ep++) {
550a7375
FB
1958 int diff;
1959
3e5c6dc7 1960 if (musb_ep_get_qh(hw_ep, is_in) != NULL)
550a7375 1961 continue;
5d67a851 1962
550a7375
FB
1963 if (hw_ep == musb->bulk_ep)
1964 continue;
1965
1966 if (is_in)
a483d706 1967 diff = hw_ep->max_packet_sz_rx;
550a7375 1968 else
a483d706
AKG
1969 diff = hw_ep->max_packet_sz_tx;
1970 diff -= (qh->maxpacket * qh->hb_mult);
550a7375 1971
23d15e07 1972 if (diff >= 0 && best_diff > diff) {
5274dab6
S
1973
1974 /*
1975 * Mentor controller has a bug in that if we schedule
1976 * a BULK Tx transfer on an endpoint that had earlier
1977 * handled ISOC then the BULK transfer has to start on
1978 * a zero toggle. If the BULK transfer starts on a 1
1979 * toggle then this transfer will fail as the mentor
1980 * controller starts the Bulk transfer on a 0 toggle
1981 * irrespective of the programming of the toggle bits
1982 * in the TXCSR register. Check for this condition
1983 * while allocating the EP for a Tx Bulk transfer. If
1984 * so skip this EP.
1985 */
1986 hw_ep = musb->endpoints + epnum;
1987 toggle = usb_gettoggle(urb->dev, qh->epnum, !is_in);
1988 txtype = (musb_readb(hw_ep->regs, MUSB_TXTYPE)
1989 >> 4) & 0x3;
1990 if (!is_in && (qh->type == USB_ENDPOINT_XFER_BULK) &&
1991 toggle && (txtype == USB_ENDPOINT_XFER_ISOC))
1992 continue;
1993
550a7375
FB
1994 best_diff = diff;
1995 best_end = epnum;
1996 }
1997 }
23d15e07 1998 /* use bulk reserved ep1 if no other ep is free */
aa5cbbec 1999 if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
23d15e07
AKG
2000 hw_ep = musb->bulk_ep;
2001 if (is_in)
2002 head = &musb->in_bulk;
2003 else
2004 head = &musb->out_bulk;
1e0320f0 2005
f283862f 2006 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
1e0320f0
AKG
2007 * multiplexed. This scheme doen't work in high speed to full
2008 * speed scenario as NAK interrupts are not coming from a
2009 * full speed device connected to a high speed device.
2010 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
2011 * 4 (8 frame or 8ms) for FS device.
2012 */
f283862f 2013 if (qh->dev)
1e0320f0
AKG
2014 qh->intv_reg =
2015 (USB_SPEED_HIGH == qh->dev->speed) ? 8 : 4;
23d15e07
AKG
2016 goto success;
2017 } else if (best_end < 0) {
550a7375 2018 return -ENOSPC;
23d15e07 2019 }
550a7375
FB
2020
2021 idle = 1;
23d15e07 2022 qh->mux = 0;
550a7375 2023 hw_ep = musb->endpoints + best_end;
5c8a86e1 2024 dev_dbg(musb->controller, "qh %p periodic slot %d\n", qh, best_end);
550a7375 2025success:
23d15e07
AKG
2026 if (head) {
2027 idle = list_empty(head);
2028 list_add_tail(&qh->ring, head);
2029 qh->mux = 1;
2030 }
550a7375
FB
2031 qh->hw_ep = hw_ep;
2032 qh->hep->hcpriv = qh;
2033 if (idle)
2034 musb_start_urb(musb, is_in, qh);
2035 return 0;
2036}
2037
2038static int musb_urb_enqueue(
2039 struct usb_hcd *hcd,
2040 struct urb *urb,
2041 gfp_t mem_flags)
2042{
2043 unsigned long flags;
2044 struct musb *musb = hcd_to_musb(hcd);
2045 struct usb_host_endpoint *hep = urb->ep;
74bb3508 2046 struct musb_qh *qh;
550a7375
FB
2047 struct usb_endpoint_descriptor *epd = &hep->desc;
2048 int ret;
2049 unsigned type_reg;
2050 unsigned interval;
2051
2052 /* host role must be active */
2053 if (!is_host_active(musb) || !musb->is_active)
2054 return -ENODEV;
2055
2056 spin_lock_irqsave(&musb->lock, flags);
2057 ret = usb_hcd_link_urb_to_ep(hcd, urb);
74bb3508
DB
2058 qh = ret ? NULL : hep->hcpriv;
2059 if (qh)
2060 urb->hcpriv = qh;
550a7375 2061 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2062
2063 /* DMA mapping was already done, if needed, and this urb is on
74bb3508
DB
2064 * hep->urb_list now ... so we're done, unless hep wasn't yet
2065 * scheduled onto a live qh.
550a7375
FB
2066 *
2067 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
2068 * disabled, testing for empty qh->ring and avoiding qh setup costs
2069 * except for the first urb queued after a config change.
2070 */
74bb3508
DB
2071 if (qh || ret)
2072 return ret;
550a7375
FB
2073
2074 /* Allocate and initialize qh, minimizing the work done each time
2075 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
2076 *
2077 * REVISIT consider a dedicated qh kmem_cache, so it's harder
2078 * for bugs in other kernel code to break this driver...
2079 */
2080 qh = kzalloc(sizeof *qh, mem_flags);
2081 if (!qh) {
2492e674 2082 spin_lock_irqsave(&musb->lock, flags);
550a7375 2083 usb_hcd_unlink_urb_from_ep(hcd, urb);
2492e674 2084 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2085 return -ENOMEM;
2086 }
2087
2088 qh->hep = hep;
2089 qh->dev = urb->dev;
2090 INIT_LIST_HEAD(&qh->ring);
2091 qh->is_ready = 1;
2092
29cc8897 2093 qh->maxpacket = usb_endpoint_maxp(epd);
a483d706 2094 qh->type = usb_endpoint_type(epd);
550a7375 2095
a483d706
AKG
2096 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
2097 * Some musb cores don't support high bandwidth ISO transfers; and
2098 * we don't (yet!) support high bandwidth interrupt transfers.
2099 */
2100 qh->hb_mult = 1 + ((qh->maxpacket >> 11) & 0x03);
2101 if (qh->hb_mult > 1) {
2102 int ok = (qh->type == USB_ENDPOINT_XFER_ISOC);
2103
2104 if (ok)
2105 ok = (usb_pipein(urb->pipe) && musb->hb_iso_rx)
2106 || (usb_pipeout(urb->pipe) && musb->hb_iso_tx);
2107 if (!ok) {
2108 ret = -EMSGSIZE;
2109 goto done;
2110 }
2111 qh->maxpacket &= 0x7ff;
550a7375
FB
2112 }
2113
96bcd090 2114 qh->epnum = usb_endpoint_num(epd);
550a7375
FB
2115
2116 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2117 qh->addr_reg = (u8) usb_pipedevice(urb->pipe);
2118
2119 /* precompute rxtype/txtype/type0 register */
2120 type_reg = (qh->type << 4) | qh->epnum;
2121 switch (urb->dev->speed) {
2122 case USB_SPEED_LOW:
2123 type_reg |= 0xc0;
2124 break;
2125 case USB_SPEED_FULL:
2126 type_reg |= 0x80;
2127 break;
2128 default:
2129 type_reg |= 0x40;
2130 }
2131 qh->type_reg = type_reg;
2132
136733d6 2133 /* Precompute RXINTERVAL/TXINTERVAL register */
550a7375
FB
2134 switch (qh->type) {
2135 case USB_ENDPOINT_XFER_INT:
136733d6
SS
2136 /*
2137 * Full/low speeds use the linear encoding,
2138 * high speed uses the logarithmic encoding.
2139 */
2140 if (urb->dev->speed <= USB_SPEED_FULL) {
2141 interval = max_t(u8, epd->bInterval, 1);
2142 break;
550a7375
FB
2143 }
2144 /* FALLTHROUGH */
2145 case USB_ENDPOINT_XFER_ISOC:
136733d6
SS
2146 /* ISO always uses logarithmic encoding */
2147 interval = min_t(u8, epd->bInterval, 16);
550a7375
FB
2148 break;
2149 default:
2150 /* REVISIT we actually want to use NAK limits, hinting to the
2151 * transfer scheduling logic to try some other qh, e.g. try
2152 * for 2 msec first:
2153 *
2154 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2155 *
2156 * The downside of disabling this is that transfer scheduling
2157 * gets VERY unfair for nonperiodic transfers; a misbehaving
1e0320f0
AKG
2158 * peripheral could make that hurt. That's perfectly normal
2159 * for reads from network or serial adapters ... so we have
2160 * partial NAKlimit support for bulk RX.
550a7375 2161 *
1e0320f0 2162 * The upside of disabling it is simpler transfer scheduling.
550a7375
FB
2163 */
2164 interval = 0;
2165 }
2166 qh->intv_reg = interval;
2167
2168 /* precompute addressing for external hub/tt ports */
2169 if (musb->is_multipoint) {
2170 struct usb_device *parent = urb->dev->parent;
2171
2172 if (parent != hcd->self.root_hub) {
2173 qh->h_addr_reg = (u8) parent->devnum;
2174
2175 /* set up tt info if needed */
2176 if (urb->dev->tt) {
2177 qh->h_port_reg = (u8) urb->dev->ttport;
ae5ad296
AKG
2178 if (urb->dev->tt->hub)
2179 qh->h_addr_reg =
2180 (u8) urb->dev->tt->hub->devnum;
2181 if (urb->dev->tt->multi)
2182 qh->h_addr_reg |= 0x80;
550a7375
FB
2183 }
2184 }
2185 }
2186
2187 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2188 * until we get real dma queues (with an entry for each urb/buffer),
2189 * we only have work to do in the former case.
2190 */
2191 spin_lock_irqsave(&musb->lock, flags);
3067779b 2192 if (hep->hcpriv || !next_urb(qh)) {
550a7375
FB
2193 /* some concurrent activity submitted another urb to hep...
2194 * odd, rare, error prone, but legal.
2195 */
2196 kfree(qh);
714bc5ef 2197 qh = NULL;
550a7375
FB
2198 ret = 0;
2199 } else
2200 ret = musb_schedule(musb, qh,
2201 epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK);
2202
2203 if (ret == 0) {
2204 urb->hcpriv = qh;
2205 /* FIXME set urb->start_frame for iso/intr, it's tested in
2206 * musb_start_urb(), but otherwise only konicawc cares ...
2207 */
2208 }
2209 spin_unlock_irqrestore(&musb->lock, flags);
2210
2211done:
2212 if (ret != 0) {
2492e674 2213 spin_lock_irqsave(&musb->lock, flags);
550a7375 2214 usb_hcd_unlink_urb_from_ep(hcd, urb);
2492e674 2215 spin_unlock_irqrestore(&musb->lock, flags);
550a7375
FB
2216 kfree(qh);
2217 }
2218 return ret;
2219}
2220
2221
2222/*
2223 * abort a transfer that's at the head of a hardware queue.
2224 * called with controller locked, irqs blocked
2225 * that hardware queue advances to the next transfer, unless prevented
2226 */
81ec4e4a 2227static int musb_cleanup_urb(struct urb *urb, struct musb_qh *qh)
550a7375
FB
2228{
2229 struct musb_hw_ep *ep = qh->hw_ep;
5c8a86e1 2230 struct musb *musb = ep->musb;
550a7375
FB
2231 void __iomem *epio = ep->regs;
2232 unsigned hw_end = ep->epnum;
2233 void __iomem *regs = ep->musb->mregs;
81ec4e4a 2234 int is_in = usb_pipein(urb->pipe);
550a7375 2235 int status = 0;
81ec4e4a 2236 u16 csr;
550a7375
FB
2237
2238 musb_ep_select(regs, hw_end);
2239
2240 if (is_dma_capable()) {
2241 struct dma_channel *dma;
2242
2243 dma = is_in ? ep->rx_channel : ep->tx_channel;
2244 if (dma) {
2245 status = ep->musb->dma_controller->channel_abort(dma);
5c8a86e1 2246 dev_dbg(musb->controller,
550a7375
FB
2247 "abort %cX%d DMA for urb %p --> %d\n",
2248 is_in ? 'R' : 'T', ep->epnum,
2249 urb, status);
2250 urb->actual_length += dma->actual_len;
2251 }
2252 }
2253
2254 /* turn off DMA requests, discard state, stop polling ... */
692933b2 2255 if (ep->epnum && is_in) {
550a7375
FB
2256 /* giveback saves bulk toggle */
2257 csr = musb_h_flush_rxfifo(ep, 0);
2258
2259 /* REVISIT we still get an irq; should likely clear the
2260 * endpoint's irq status here to avoid bogus irqs.
2261 * clearing that status is platform-specific...
2262 */
78322c1a 2263 } else if (ep->epnum) {
550a7375
FB
2264 musb_h_tx_flush_fifo(ep);
2265 csr = musb_readw(epio, MUSB_TXCSR);
2266 csr &= ~(MUSB_TXCSR_AUTOSET
2267 | MUSB_TXCSR_DMAENAB
2268 | MUSB_TXCSR_H_RXSTALL
2269 | MUSB_TXCSR_H_NAKTIMEOUT
2270 | MUSB_TXCSR_H_ERROR
2271 | MUSB_TXCSR_TXPKTRDY);
2272 musb_writew(epio, MUSB_TXCSR, csr);
2273 /* REVISIT may need to clear FLUSHFIFO ... */
2274 musb_writew(epio, MUSB_TXCSR, csr);
2275 /* flush cpu writebuffer */
2276 csr = musb_readw(epio, MUSB_TXCSR);
78322c1a
DB
2277 } else {
2278 musb_h_ep0_flush_fifo(ep);
550a7375
FB
2279 }
2280 if (status == 0)
2281 musb_advance_schedule(ep->musb, urb, ep, is_in);
2282 return status;
2283}
2284
2285static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2286{
2287 struct musb *musb = hcd_to_musb(hcd);
2288 struct musb_qh *qh;
550a7375 2289 unsigned long flags;
22a0d6f1 2290 int is_in = usb_pipein(urb->pipe);
550a7375
FB
2291 int ret;
2292
5c8a86e1 2293 dev_dbg(musb->controller, "urb=%p, dev%d ep%d%s\n", urb,
550a7375
FB
2294 usb_pipedevice(urb->pipe),
2295 usb_pipeendpoint(urb->pipe),
22a0d6f1 2296 is_in ? "in" : "out");
550a7375
FB
2297
2298 spin_lock_irqsave(&musb->lock, flags);
2299 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
2300 if (ret)
2301 goto done;
2302
2303 qh = urb->hcpriv;
2304 if (!qh)
2305 goto done;
2306
22a0d6f1
SS
2307 /*
2308 * Any URB not actively programmed into endpoint hardware can be
a2fd814e 2309 * immediately given back; that's any URB not at the head of an
550a7375 2310 * endpoint queue, unless someday we get real DMA queues. And even
a2fd814e 2311 * if it's at the head, it might not be known to the hardware...
550a7375 2312 *
22a0d6f1 2313 * Otherwise abort current transfer, pending DMA, etc.; urb->status
550a7375
FB
2314 * has already been updated. This is a synchronous abort; it'd be
2315 * OK to hold off until after some IRQ, though.
22a0d6f1
SS
2316 *
2317 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
550a7375 2318 */
22a0d6f1
SS
2319 if (!qh->is_ready
2320 || urb->urb_list.prev != &qh->hep->urb_list
2321 || musb_ep_get_qh(qh->hw_ep, is_in) != qh) {
550a7375
FB
2322 int ready = qh->is_ready;
2323
550a7375 2324 qh->is_ready = 0;
c9cd06b3 2325 musb_giveback(musb, urb, 0);
550a7375 2326 qh->is_ready = ready;
a2fd814e
SS
2327
2328 /* If nothing else (usually musb_giveback) is using it
2329 * and its URB list has emptied, recycle this qh.
2330 */
2331 if (ready && list_empty(&qh->hep->urb_list)) {
2332 qh->hep->hcpriv = NULL;
2333 list_del(&qh->ring);
2334 kfree(qh);
2335 }
550a7375 2336 } else
81ec4e4a 2337 ret = musb_cleanup_urb(urb, qh);
550a7375
FB
2338done:
2339 spin_unlock_irqrestore(&musb->lock, flags);
2340 return ret;
2341}
2342
2343/* disable an endpoint */
2344static void
2345musb_h_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
2346{
22a0d6f1 2347 u8 is_in = hep->desc.bEndpointAddress & USB_DIR_IN;
550a7375
FB
2348 unsigned long flags;
2349 struct musb *musb = hcd_to_musb(hcd);
dc61d238
SS
2350 struct musb_qh *qh;
2351 struct urb *urb;
550a7375 2352
550a7375
FB
2353 spin_lock_irqsave(&musb->lock, flags);
2354
dc61d238
SS
2355 qh = hep->hcpriv;
2356 if (qh == NULL)
2357 goto exit;
2358
22a0d6f1 2359 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
550a7375 2360
22a0d6f1 2361 /* Kick the first URB off the hardware, if needed */
550a7375 2362 qh->is_ready = 0;
22a0d6f1 2363 if (musb_ep_get_qh(qh->hw_ep, is_in) == qh) {
550a7375
FB
2364 urb = next_urb(qh);
2365
2366 /* make software (then hardware) stop ASAP */
2367 if (!urb->unlinked)
2368 urb->status = -ESHUTDOWN;
2369
2370 /* cleanup */
81ec4e4a 2371 musb_cleanup_urb(urb, qh);
550a7375 2372
dc61d238
SS
2373 /* Then nuke all the others ... and advance the
2374 * queue on hw_ep (e.g. bulk ring) when we're done.
2375 */
2376 while (!list_empty(&hep->urb_list)) {
2377 urb = next_urb(qh);
2378 urb->status = -ESHUTDOWN;
2379 musb_advance_schedule(musb, urb, qh->hw_ep, is_in);
2380 }
2381 } else {
2382 /* Just empty the queue; the hardware is busy with
2383 * other transfers, and since !qh->is_ready nothing
2384 * will activate any of these as it advances.
2385 */
2386 while (!list_empty(&hep->urb_list))
c9cd06b3 2387 musb_giveback(musb, next_urb(qh), -ESHUTDOWN);
550a7375 2388
dc61d238
SS
2389 hep->hcpriv = NULL;
2390 list_del(&qh->ring);
2391 kfree(qh);
2392 }
2393exit:
550a7375
FB
2394 spin_unlock_irqrestore(&musb->lock, flags);
2395}
2396
2397static int musb_h_get_frame_number(struct usb_hcd *hcd)
2398{
2399 struct musb *musb = hcd_to_musb(hcd);
2400
2401 return musb_readw(musb->mregs, MUSB_FRAME);
2402}
2403
2404static int musb_h_start(struct usb_hcd *hcd)
2405{
2406 struct musb *musb = hcd_to_musb(hcd);
2407
2408 /* NOTE: musb_start() is called when the hub driver turns
2409 * on port power, or when (OTG) peripheral starts.
2410 */
2411 hcd->state = HC_STATE_RUNNING;
2412 musb->port1_status = 0;
2413 return 0;
2414}
2415
2416static void musb_h_stop(struct usb_hcd *hcd)
2417{
2418 musb_stop(hcd_to_musb(hcd));
2419 hcd->state = HC_STATE_HALT;
2420}
2421
2422static int musb_bus_suspend(struct usb_hcd *hcd)
2423{
2424 struct musb *musb = hcd_to_musb(hcd);
89368d3d 2425 u8 devctl;
550a7375 2426
89368d3d 2427 if (!is_host_active(musb))
550a7375
FB
2428 return 0;
2429
89368d3d
DB
2430 switch (musb->xceiv->state) {
2431 case OTG_STATE_A_SUSPEND:
2432 return 0;
2433 case OTG_STATE_A_WAIT_VRISE:
2434 /* ID could be grounded even if there's no device
2435 * on the other end of the cable. NOTE that the
2436 * A_WAIT_VRISE timers are messy with MUSB...
2437 */
2438 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2439 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
2440 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
2441 break;
2442 default:
2443 break;
2444 }
2445
2446 if (musb->is_active) {
2447 WARNING("trying to suspend as %s while active\n",
3df00453 2448 otg_state_string(musb->xceiv->state));
550a7375
FB
2449 return -EBUSY;
2450 } else
2451 return 0;
2452}
2453
2454static int musb_bus_resume(struct usb_hcd *hcd)
2455{
2456 /* resuming child port does the work */
2457 return 0;
2458}
2459
2460const struct hc_driver musb_hc_driver = {
2461 .description = "musb-hcd",
2462 .product_desc = "MUSB HDRC host driver",
2463 .hcd_priv_size = sizeof(struct musb),
2464 .flags = HCD_USB2 | HCD_MEMORY,
2465
2466 /* not using irq handler or reset hooks from usbcore, since
2467 * those must be shared with peripheral code for OTG configs
2468 */
2469
2470 .start = musb_h_start,
2471 .stop = musb_h_stop,
2472
2473 .get_frame_number = musb_h_get_frame_number,
2474
2475 .urb_enqueue = musb_urb_enqueue,
2476 .urb_dequeue = musb_urb_dequeue,
2477 .endpoint_disable = musb_h_disable,
2478
2479 .hub_status_data = musb_hub_status_data,
2480 .hub_control = musb_hub_control,
2481 .bus_suspend = musb_bus_suspend,
2482 .bus_resume = musb_bus_resume,
2483 /* .start_port_reset = NULL, */
2484 /* .hub_irq_enable = NULL, */
2485};