blob: 2f6f9a89802ef4da09956fddd4aafcad106fbb31 [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
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
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -07007 * Copyright (C) 2008-2009 MontaVista Software, Inc. <source@mvista.com>
Felipe Balbi550a7372008-07-24 12:27:36 +03008 *
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>
Maulik Mankad496dda72010-09-24 13:44:06 +030044#include <linux/dma-mapping.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030045
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 *
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -080069 * - [23-feb-2009] minimal traffic scheduling to avoid bulk RX packet
70 * starvation ... nothing yet for TX, interrupt, or bulk.
Felipe Balbi550a7372008-07-24 12:27:36 +030071 *
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).
Felipe Balbi550a7372008-07-24 12:27:36 +030090 * (Yes, bulk _could_ use more of the endpoints than that, and would even
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -080091 * benefit from it.)
Felipe Balbi550a7372008-07-24 12:27:36 +030092 *
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,
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700101 struct urb *urb, int is_out,
102 u8 *buf, u32 offset, u32 len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300103
104/*
105 * Clear TX fifo. Needed to avoid BABBLE errors.
106 */
David Brownellc767c1c2008-09-11 11:53:23 +0300107static void musb_h_tx_flush_fifo(struct musb_hw_ep *ep)
Felipe Balbi550a7372008-07-24 12:27:36 +0300108{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300109 struct musb *musb = ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300110 void __iomem *epio = ep->regs;
111 u16 csr;
David Brownellbb1c9ef2008-11-24 13:06:50 +0200112 u16 lastcsr = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300113 int retries = 1000;
114
115 csr = musb_readw(epio, MUSB_TXCSR);
116 while (csr & MUSB_TXCSR_FIFONOTEMPTY) {
David Brownellbb1c9ef2008-11-24 13:06:50 +0200117 if (csr != lastcsr)
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300118 dev_dbg(musb->controller, "Host TX FIFONOTEMPTY csr: %02x\n", csr);
David Brownellbb1c9ef2008-11-24 13:06:50 +0200119 lastcsr = csr;
Felipe Balbi550a7372008-07-24 12:27:36 +0300120 csr |= MUSB_TXCSR_FLUSHFIFO;
121 musb_writew(epio, MUSB_TXCSR, csr);
122 csr = musb_readw(epio, MUSB_TXCSR);
David Brownellbb1c9ef2008-11-24 13:06:50 +0200123 if (WARN(retries-- < 1,
124 "Could not flush host TX%d fifo: csr: %04x\n",
125 ep->epnum, csr))
Felipe Balbi550a7372008-07-24 12:27:36 +0300126 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300127 mdelay(1);
128 }
129}
130
David Brownell78322c12009-03-26 17:38:30 -0700131static 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
Felipe Balbi550a7372008-07-24 12:27:36 +0300154/*
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
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -0700174static inline void musb_h_tx_dma_start(struct musb_hw_ep *ep)
Felipe Balbi550a7372008-07-24 12:27:36 +0300175{
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;
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -0700181 if (is_cppi_enabled())
182 txcsr |= MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300183 musb_writew(ep->regs, MUSB_TXCSR, txcsr);
184}
185
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700186static 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
Felipe Balbi550a7372008-07-24 12:27:36 +0300199/*
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;
Felipe Balbi550a7372008-07-24 12:27:36 +0300210 void __iomem *mbase = musb->mregs;
211 struct urb *urb = next_urb(qh);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700212 void *buf = urb->transfer_buffer;
213 u32 offset = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300214 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;
Felipe Balbi550a7372008-07-24 12:27:36 +0300228 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;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700235 offset = urb->iso_frame_desc[0].offset;
Felipe Balbi550a7372008-07-24 12:27:36 +0300236 len = urb->iso_frame_desc[0].length;
237 break;
238 default: /* bulk, interrupt */
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -0800239 /* 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;
Felipe Balbi550a7372008-07-24 12:27:36 +0300242 }
243
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300244 dev_dbg(musb->controller, "qh %p urb %p dev%d ep%d%s%s, hw_ep %d, %p/%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300245 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; }),
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700253 epnum, buf + offset, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300254
255 /* Configure endpoint */
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700256 musb_ep_set_qh(hw_ep, is_in, qh);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700257 musb_ep_program(musb, epnum, urb, !is_in, buf, offset, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300258
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:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300267 dev_dbg(musb->controller, "check whether there's still time for periodic Tx\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300268 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 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300282 dev_dbg(musb->controller, "SOF for %d\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300283#if 1 /* ifndef CONFIG_ARCH_DAVINCI */
284 musb_writeb(mbase, MUSB_INTRUSBE, 0xff);
285#endif
286 }
287 break;
288 default:
289start:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300290 dev_dbg(musb->controller, "Start TX%d %s\n", epnum,
Felipe Balbi550a7372008-07-24 12:27:36 +0300291 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())
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -0700296 musb_h_tx_dma_start(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +0300297 }
298}
299
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700300/* Context: caller owns controller lock, IRQs are blocked */
301static void musb_giveback(struct musb *musb, struct urb *urb, int status)
Felipe Balbi550a7372008-07-24 12:27:36 +0300302__releases(musb->lock)
303__acquires(musb->lock)
304{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300305 dev_dbg(musb->controller,
David Brownellbb1c9ef2008-11-24 13:06:50 +0200306 "complete %p %pF (%d), dev%d ep%d%s, %d/%d\n",
307 urb, urb->complete, status,
Felipe Balbi550a7372008-07-24 12:27:36 +0300308 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
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +0300314 usb_hcd_unlink_urb_from_ep(musb_to_hcd(musb), urb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300315 spin_unlock(&musb->lock);
316 usb_hcd_giveback_urb(musb_to_hcd(musb), urb, status);
317 spin_lock(&musb->lock);
318}
319
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700320/* For bulk/interrupt endpoints only */
321static inline void musb_save_toggle(struct musb_qh *qh, int is_in,
322 struct urb *urb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300323{
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700324 void __iomem *epio = qh->hw_ep->regs;
Felipe Balbi550a7372008-07-24 12:27:36 +0300325 u16 csr;
Felipe Balbi550a7372008-07-24 12:27:36 +0300326
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700327 /*
328 * FIXME: the current Mentor DMA code seems to have
Felipe Balbi550a7372008-07-24 12:27:36 +0300329 * problems getting toggle correct.
330 */
331
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700332 if (is_in)
333 csr = musb_readw(epio, MUSB_RXCSR) & MUSB_RXCSR_H_DATATOGGLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300334 else
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700335 csr = musb_readw(epio, MUSB_TXCSR) & MUSB_TXCSR_H_DATATOGGLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300336
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700337 usb_settoggle(urb->dev, qh->epnum, !is_in, csr ? 1 : 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300338}
339
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700340/*
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)
Felipe Balbi550a7372008-07-24 12:27:36 +0300349{
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700350 struct musb_qh *qh = musb_ep_get_qh(hw_ep, is_in);
Felipe Balbi550a7372008-07-24 12:27:36 +0300351 struct musb_hw_ep *ep = qh->hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300352 int ready = qh->is_ready;
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700353 int status;
354
355 status = (urb->status == -EINPROGRESS) ? 0 : urb->status;
Felipe Balbi550a7372008-07-24 12:27:36 +0300356
Felipe Balbi550a7372008-07-24 12:27:36 +0300357 /* save toggle eagerly, for paranoia */
358 switch (qh->type) {
359 case USB_ENDPOINT_XFER_BULK:
360 case USB_ENDPOINT_XFER_INT:
Sergei Shtylyov846099a2009-03-27 12:54:21 -0700361 musb_save_toggle(qh, is_in, urb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300362 break;
363 case USB_ENDPOINT_XFER_ISOC:
Sergei Shtylyov1fe975f2009-07-10 20:02:44 +0300364 if (status == 0 && urb->error_count)
Felipe Balbi550a7372008-07-24 12:27:36 +0300365 status = -EXDEV;
366 break;
367 }
368
Felipe Balbi550a7372008-07-24 12:27:36 +0300369 qh->is_ready = 0;
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700370 musb_giveback(musb, urb, status);
Felipe Balbi550a7372008-07-24 12:27:36 +0300371 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;
Ajay Kumar Gupta8c778db2012-06-21 17:18:12 +0530378 struct dma_controller *dma = musb->dma_controller;
Felipe Balbi550a7372008-07-24 12:27:36 +0300379
Ajay Kumar Gupta8c778db2012-06-21 17:18:12 +0530380 if (is_in) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300381 ep->rx_reinit = 1;
Ajay Kumar Gupta8c778db2012-06-21 17:18:12 +0530382 if (ep->rx_channel) {
383 dma->channel_release(ep->rx_channel);
384 ep->rx_channel = NULL;
385 }
386 } else {
Felipe Balbi550a7372008-07-24 12:27:36 +0300387 ep->tx_reinit = 1;
Ajay Kumar Gupta8c778db2012-06-21 17:18:12 +0530388 if (ep->tx_channel) {
389 dma->channel_release(ep->tx_channel);
390 ep->tx_channel = NULL;
391 }
392 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300393
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700394 /* Clobber old pointers to this qh */
395 musb_ep_set_qh(ep, is_in, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +0300396 qh->hep->hcpriv = NULL;
397
398 switch (qh->type) {
399
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +0200400 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
Felipe Balbi550a7372008-07-24 12:27:36 +0300413 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 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300419 kfree(qh);
420 qh = NULL;
421 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300422 }
423 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300424
Sergei Shtylyova2fd8142009-02-21 15:30:45 -0800425 if (qh != NULL && qh->is_ready) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300426 dev_dbg(musb->controller, "... next ep%d %cX urb %p\n",
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700427 hw_ep->epnum, is_in ? 'R' : 'T', next_urb(qh));
Felipe Balbi550a7372008-07-24 12:27:36 +0300428 musb_start_urb(musb, is_in, qh);
429 }
430}
431
David Brownellc767c1c2008-09-11 11:53:23 +0300432static u16 musb_h_flush_rxfifo(struct musb_hw_ep *hw_ep, u16 csr)
Felipe Balbi550a7372008-07-24 12:27:36 +0300433{
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);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300471 dev_dbg(musb->controller, "RX%d count %d, buffer %p len %d/%d\n", epnum, rx_count,
Felipe Balbi550a7372008-07-24 12:27:36 +0300472 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 }
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300493 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300494 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;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300511 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300512 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);
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700570 csr = musb_readw(ep->regs, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +0300571 musb_writew(ep->regs, MUSB_TXCSR,
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700572 csr | MUSB_TXCSR_FRCDATATOG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300573 }
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700574
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);
Felipe Balbi550a7372008-07-24 12:27:36 +0300581 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) {
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200595 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
Felipe Balbi550a7372008-07-24 12:27:36 +0300599 } 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 */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500606 /* Set RXMAXP with the FIFO size of the endpoint
607 * to disable double buffer mode.
608 */
Felipe Balbi06624812011-01-21 13:39:20 +0800609 if (musb->double_buffer_not_ok)
Cliff Cai9f445cb2010-01-28 20:44:18 -0500610 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));
Felipe Balbi550a7372008-07-24 12:27:36 +0300614
615 ep->rx_reinit = 0;
616}
617
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700618static 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;
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -0700635 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;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700639 } 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
Santosh Shilimkar4c647332010-09-20 10:32:07 +0300661 /*
662 * Ensure the data reaches to main memory before starting
663 * DMA transfer
664 */
665 wmb();
666
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700667 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}
Felipe Balbi550a7372008-07-24 12:27:36 +0300679
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,
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700685 struct urb *urb, int is_out,
686 u8 *buf, u32 offset, u32 len)
Felipe Balbi550a7372008-07-24 12:27:36 +0300687{
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;
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700694 struct musb_qh *qh = musb_ep_get_qh(hw_ep, !is_out);
695 u16 packet_sz = qh->maxpacket;
Ajay Kumar Gupta31321222012-07-20 11:07:22 +0530696 u8 use_dma = 1;
697 u16 csr;
Felipe Balbi550a7372008-07-24 12:27:36 +0300698
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300699 dev_dbg(musb->controller, "%s hw%d urb %p spd%d dev%d ep%d%s "
Felipe Balbi550a7372008-07-24 12:27:36 +0300700 "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
Ajay Kumar Gupta31321222012-07-20 11:07:22 +0530709 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
Felipe Balbi550a7372008-07-24 12:27:36 +0300717 /* candidate for DMA? */
718 dma_controller = musb->dma_controller;
Ajay Kumar Gupta31321222012-07-20 11:07:22 +0530719 if (use_dma && is_dma_capable() && epnum && dma_controller) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300720 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) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300748 /* flush all old state, set default */
749 musb_h_tx_flush_fifo(hw_ep);
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700750
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 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300756 csr &= ~(MUSB_TXCSR_H_NAKTIMEOUT
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700757 | MUSB_TXCSR_AUTOSET
758 | MUSB_TXCSR_DMAENAB
Felipe Balbi550a7372008-07-24 12:27:36 +0300759 | MUSB_TXCSR_FRCDATATOG
760 | MUSB_TXCSR_H_RXSTALL
761 | MUSB_TXCSR_H_ERROR
762 | MUSB_TXCSR_TXPKTRDY
763 );
764 csr |= MUSB_TXCSR_MODE;
765
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700766 if (usb_gettoggle(urb->dev, qh->epnum, 1))
Felipe Balbi550a7372008-07-24 12:27:36 +0300767 csr |= MUSB_TXCSR_H_WR_DATATOGGLE
768 | MUSB_TXCSR_H_DATATOGGLE;
769 else
770 csr |= MUSB_TXCSR_CLRDATATOG;
771
Felipe Balbi550a7372008-07-24 12:27:36 +0300772 musb_writew(epio, MUSB_TXCSR, csr);
773 /* REVISIT may need to clear FLUSHFIFO ... */
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700774 csr &= ~MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300775 musb_writew(epio, MUSB_TXCSR, csr);
776 csr = musb_readw(epio, MUSB_TXCSR);
777 } else {
778 /* endpoint 0: just flush */
David Brownell78322c12009-03-26 17:38:30 -0700779 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +0300780 }
781
782 /* target addr and (for multipoint) hub addr/port */
783 if (musb->is_multipoint) {
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200784 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);
Felipe Balbi550a7372008-07-24 12:27:36 +0300787/* 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);
Felipe Balbi06624812011-01-21 13:39:20 +0800794 if (musb->double_buffer_not_ok)
Felipe Balbi550a7372008-07-24 12:27:36 +0300795 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi06624812011-01-21 13:39:20 +0800796 hw_ep->max_packet_sz_tx);
Ajay Kumar Guptaccc080c2011-12-13 10:32:42 +0530797 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);
Felipe Balbi550a7372008-07-24 12:27:36 +0300801 else
802 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi06624812011-01-21 13:39:20 +0800803 qh->maxpacket |
804 ((qh->hb_mult - 1) << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300805 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
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700819 if (dma_channel && musb_tx_dma_program(dma_controller,
820 hw_ep, qh, urb, offset, len))
821 load_count = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300822
823 if (load_count) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300824 /* PIO to load FIFO */
825 qh->segsize = load_count;
826 musb_write_fifo(hw_ep, load_count, buf);
Felipe Balbi550a7372008-07-24 12:27:36 +0300827 }
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) {
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400864 /* Candidate for DMA */
865 dma_channel->actual_len = 0L;
866 qh->segsize = len;
Felipe Balbi550a7372008-07-24 12:27:36 +0300867
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400868 /* AUTOREQ is in a DMA register */
869 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
870 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +0300871
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400872 /*
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;
Felipe Balbi550a7372008-07-24 12:27:36 +0300886 }
887
888 csr |= MUSB_RXCSR_H_REQPKT;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300889 dev_dbg(musb->controller, "RXCSR%d := %04x\n", epnum, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300890 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
891 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
892 }
893}
894
Ajay Kumar Guptaf2838622012-07-19 13:41:59 +0530895/* Schedule next QH from musb->in_bulk/out_bulk and move the current qh to
896 * the end; avoids starvation for other endpoints.
897 */
898static void musb_bulk_nak_timeout(struct musb *musb, struct musb_hw_ep *ep,
899 int is_in)
900{
901 struct dma_channel *dma;
902 struct urb *urb;
903 void __iomem *mbase = musb->mregs;
904 void __iomem *epio = ep->regs;
905 struct musb_qh *cur_qh, *next_qh;
906 u16 rx_csr, tx_csr;
907
908 musb_ep_select(mbase, ep->epnum);
909 if (is_in) {
910 dma = is_dma_capable() ? ep->rx_channel : NULL;
911
912 /* clear nak timeout bit */
913 rx_csr = musb_readw(epio, MUSB_RXCSR);
914 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
915 rx_csr &= ~MUSB_RXCSR_DATAERROR;
916 musb_writew(epio, MUSB_RXCSR, rx_csr);
917
918 cur_qh = first_qh(&musb->in_bulk);
919 } else {
920 dma = is_dma_capable() ? ep->tx_channel : NULL;
921
922 /* clear nak timeout bit */
923 tx_csr = musb_readw(epio, MUSB_TXCSR);
924 tx_csr |= MUSB_TXCSR_H_WZC_BITS;
925 tx_csr &= ~MUSB_TXCSR_H_NAKTIMEOUT;
926 musb_writew(epio, MUSB_TXCSR, tx_csr);
927
928 cur_qh = first_qh(&musb->out_bulk);
929 }
930 if (cur_qh) {
931 urb = next_urb(cur_qh);
932 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
933 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
934 musb->dma_controller->channel_abort(dma);
935 urb->actual_length += dma->actual_len;
936 dma->actual_len = 0L;
937 }
938 musb_save_toggle(cur_qh, is_in, urb);
939
940 if (is_in) {
941 /* move cur_qh to end of queue */
942 list_move_tail(&cur_qh->ring, &musb->in_bulk);
943
944 /* get the next qh from musb->in_bulk */
945 next_qh = first_qh(&musb->in_bulk);
946
947 /* set rx_reinit and schedule the next qh */
948 ep->rx_reinit = 1;
949 } else {
950 /* move cur_qh to end of queue */
951 list_move_tail(&cur_qh->ring, &musb->out_bulk);
952
953 /* get the next qh from musb->out_bulk */
954 next_qh = first_qh(&musb->out_bulk);
955
956 /* set tx_reinit and schedule the next qh */
957 ep->tx_reinit = 1;
958 }
959 musb_start_urb(musb, is_in, next_qh);
960 }
961}
Felipe Balbi550a7372008-07-24 12:27:36 +0300962
963/*
964 * Service the default endpoint (ep0) as host.
965 * Return true until it's time to start the status stage.
966 */
967static bool musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb)
968{
969 bool more = false;
970 u8 *fifo_dest = NULL;
971 u16 fifo_count = 0;
972 struct musb_hw_ep *hw_ep = musb->control_ep;
973 struct musb_qh *qh = hw_ep->in_qh;
974 struct usb_ctrlrequest *request;
975
976 switch (musb->ep0_stage) {
977 case MUSB_EP0_IN:
978 fifo_dest = urb->transfer_buffer + urb->actual_length;
Sergei Shtylyov3ecdb9a2009-02-21 15:31:23 -0800979 fifo_count = min_t(size_t, len, urb->transfer_buffer_length -
980 urb->actual_length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300981 if (fifo_count < len)
982 urb->status = -EOVERFLOW;
983
984 musb_read_fifo(hw_ep, fifo_count, fifo_dest);
985
986 urb->actual_length += fifo_count;
987 if (len < qh->maxpacket) {
988 /* always terminate on short read; it's
989 * rarely reported as an error.
990 */
991 } else if (urb->actual_length <
992 urb->transfer_buffer_length)
993 more = true;
994 break;
995 case MUSB_EP0_START:
996 request = (struct usb_ctrlrequest *) urb->setup_packet;
997
998 if (!request->wLength) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300999 dev_dbg(musb->controller, "start no-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001000 break;
1001 } else if (request->bRequestType & USB_DIR_IN) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001002 dev_dbg(musb->controller, "start IN-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001003 musb->ep0_stage = MUSB_EP0_IN;
1004 more = true;
1005 break;
1006 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001007 dev_dbg(musb->controller, "start OUT-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001008 musb->ep0_stage = MUSB_EP0_OUT;
1009 more = true;
1010 }
1011 /* FALLTHROUGH */
1012 case MUSB_EP0_OUT:
Sergei Shtylyov3ecdb9a2009-02-21 15:31:23 -08001013 fifo_count = min_t(size_t, qh->maxpacket,
1014 urb->transfer_buffer_length -
1015 urb->actual_length);
Felipe Balbi550a7372008-07-24 12:27:36 +03001016 if (fifo_count) {
1017 fifo_dest = (u8 *) (urb->transfer_buffer
1018 + urb->actual_length);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001019 dev_dbg(musb->controller, "Sending %d byte%s to ep0 fifo %p\n",
David Brownellbb1c9ef2008-11-24 13:06:50 +02001020 fifo_count,
1021 (fifo_count == 1) ? "" : "s",
1022 fifo_dest);
Felipe Balbi550a7372008-07-24 12:27:36 +03001023 musb_write_fifo(hw_ep, fifo_count, fifo_dest);
1024
1025 urb->actual_length += fifo_count;
1026 more = true;
1027 }
1028 break;
1029 default:
1030 ERR("bogus ep0 stage %d\n", musb->ep0_stage);
1031 break;
1032 }
1033
1034 return more;
1035}
1036
1037/*
1038 * Handle default endpoint interrupt as host. Only called in IRQ time
David Brownellc767c1c2008-09-11 11:53:23 +03001039 * from musb_interrupt().
Felipe Balbi550a7372008-07-24 12:27:36 +03001040 *
1041 * called with controller irqlocked
1042 */
1043irqreturn_t musb_h_ep0_irq(struct musb *musb)
1044{
1045 struct urb *urb;
1046 u16 csr, len;
1047 int status = 0;
1048 void __iomem *mbase = musb->mregs;
1049 struct musb_hw_ep *hw_ep = musb->control_ep;
1050 void __iomem *epio = hw_ep->regs;
1051 struct musb_qh *qh = hw_ep->in_qh;
1052 bool complete = false;
1053 irqreturn_t retval = IRQ_NONE;
1054
1055 /* ep0 only has one queue, "in" */
1056 urb = next_urb(qh);
1057
1058 musb_ep_select(mbase, 0);
1059 csr = musb_readw(epio, MUSB_CSR0);
1060 len = (csr & MUSB_CSR0_RXPKTRDY)
1061 ? musb_readb(epio, MUSB_COUNT0)
1062 : 0;
1063
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001064 dev_dbg(musb->controller, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001065 csr, qh, len, urb, musb->ep0_stage);
1066
1067 /* if we just did status stage, we are done */
1068 if (MUSB_EP0_STATUS == musb->ep0_stage) {
1069 retval = IRQ_HANDLED;
1070 complete = true;
1071 }
1072
1073 /* prepare status */
1074 if (csr & MUSB_CSR0_H_RXSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001075 dev_dbg(musb->controller, "STALLING ENDPOINT\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001076 status = -EPIPE;
1077
1078 } else if (csr & MUSB_CSR0_H_ERROR) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001079 dev_dbg(musb->controller, "no response, csr0 %04x\n", csr);
Felipe Balbi550a7372008-07-24 12:27:36 +03001080 status = -EPROTO;
1081
1082 } else if (csr & MUSB_CSR0_H_NAKTIMEOUT) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001083 dev_dbg(musb->controller, "control NAK timeout\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001084
1085 /* NOTE: this code path would be a good place to PAUSE a
1086 * control transfer, if another one is queued, so that
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001087 * ep0 is more likely to stay busy. That's already done
1088 * for bulk RX transfers.
Felipe Balbi550a7372008-07-24 12:27:36 +03001089 *
1090 * if (qh->ring.next != &musb->control), then
1091 * we have a candidate... NAKing is *NOT* an error
1092 */
1093 musb_writew(epio, MUSB_CSR0, 0);
1094 retval = IRQ_HANDLED;
1095 }
1096
1097 if (status) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001098 dev_dbg(musb->controller, "aborting\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001099 retval = IRQ_HANDLED;
1100 if (urb)
1101 urb->status = status;
1102 complete = true;
1103
1104 /* use the proper sequence to abort the transfer */
1105 if (csr & MUSB_CSR0_H_REQPKT) {
1106 csr &= ~MUSB_CSR0_H_REQPKT;
1107 musb_writew(epio, MUSB_CSR0, csr);
1108 csr &= ~MUSB_CSR0_H_NAKTIMEOUT;
1109 musb_writew(epio, MUSB_CSR0, csr);
1110 } else {
David Brownell78322c12009-03-26 17:38:30 -07001111 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03001112 }
1113
1114 musb_writeb(epio, MUSB_NAKLIMIT0, 0);
1115
1116 /* clear it */
1117 musb_writew(epio, MUSB_CSR0, 0);
1118 }
1119
1120 if (unlikely(!urb)) {
1121 /* stop endpoint since we have no place for its data, this
1122 * SHOULD NEVER HAPPEN! */
1123 ERR("no URB for end 0\n");
1124
David Brownell78322c12009-03-26 17:38:30 -07001125 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03001126 goto done;
1127 }
1128
1129 if (!complete) {
1130 /* call common logic and prepare response */
1131 if (musb_h_ep0_continue(musb, len, urb)) {
1132 /* more packets required */
1133 csr = (MUSB_EP0_IN == musb->ep0_stage)
1134 ? MUSB_CSR0_H_REQPKT : MUSB_CSR0_TXPKTRDY;
1135 } else {
1136 /* data transfer complete; perform status phase */
1137 if (usb_pipeout(urb->pipe)
1138 || !urb->transfer_buffer_length)
1139 csr = MUSB_CSR0_H_STATUSPKT
1140 | MUSB_CSR0_H_REQPKT;
1141 else
1142 csr = MUSB_CSR0_H_STATUSPKT
1143 | MUSB_CSR0_TXPKTRDY;
1144
1145 /* flag status stage */
1146 musb->ep0_stage = MUSB_EP0_STATUS;
1147
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001148 dev_dbg(musb->controller, "ep0 STATUS, csr %04x\n", csr);
Felipe Balbi550a7372008-07-24 12:27:36 +03001149
1150 }
1151 musb_writew(epio, MUSB_CSR0, csr);
1152 retval = IRQ_HANDLED;
1153 } else
1154 musb->ep0_stage = MUSB_EP0_IDLE;
1155
1156 /* call completion handler if done */
1157 if (complete)
1158 musb_advance_schedule(musb, urb, hw_ep, 1);
1159done:
1160 return retval;
1161}
1162
1163
1164#ifdef CONFIG_USB_INVENTRA_DMA
1165
1166/* Host side TX (OUT) using Mentor DMA works as follows:
1167 submit_urb ->
1168 - if queue was empty, Program Endpoint
1169 - ... which starts DMA to fifo in mode 1 or 0
1170
1171 DMA Isr (transfer complete) -> TxAvail()
1172 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1173 only in musb_cleanup_urb)
1174 - TxPktRdy has to be set in mode 0 or for
1175 short packets in mode 1.
1176*/
1177
1178#endif
1179
1180/* Service a Tx-Available or dma completion irq for the endpoint */
1181void musb_host_tx(struct musb *musb, u8 epnum)
1182{
1183 int pipe;
1184 bool done = false;
1185 u16 tx_csr;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001186 size_t length = 0;
1187 size_t offset = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001188 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1189 void __iomem *epio = hw_ep->regs;
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -07001190 struct musb_qh *qh = hw_ep->out_qh;
1191 struct urb *urb = next_urb(qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03001192 u32 status = 0;
1193 void __iomem *mbase = musb->mregs;
1194 struct dma_channel *dma;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001195 bool transfer_pending = false;
Felipe Balbi550a7372008-07-24 12:27:36 +03001196
Felipe Balbi550a7372008-07-24 12:27:36 +03001197 musb_ep_select(mbase, epnum);
1198 tx_csr = musb_readw(epio, MUSB_TXCSR);
1199
1200 /* with CPPI, DMA sometimes triggers "extra" irqs */
1201 if (!urb) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001202 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001203 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001204 }
1205
1206 pipe = urb->pipe;
1207 dma = is_dma_capable() ? hw_ep->tx_channel : NULL;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001208 dev_dbg(musb->controller, "OUT/TX%d end, csr %04x%s\n", epnum, tx_csr,
Felipe Balbi550a7372008-07-24 12:27:36 +03001209 dma ? ", dma" : "");
1210
1211 /* check for errors */
1212 if (tx_csr & MUSB_TXCSR_H_RXSTALL) {
1213 /* dma was disabled, fifo flushed */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001214 dev_dbg(musb->controller, "TX end %d stall\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001215
1216 /* stall; record URB status */
1217 status = -EPIPE;
1218
1219 } else if (tx_csr & MUSB_TXCSR_H_ERROR) {
1220 /* (NON-ISO) dma was disabled, fifo flushed */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001221 dev_dbg(musb->controller, "TX 3strikes on ep=%d\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001222
1223 status = -ETIMEDOUT;
1224
1225 } else if (tx_csr & MUSB_TXCSR_H_NAKTIMEOUT) {
Ajay Kumar Guptaf2838622012-07-19 13:41:59 +05301226 if (USB_ENDPOINT_XFER_BULK == qh->type && qh->mux == 1
1227 && !list_is_singular(&musb->out_bulk)) {
1228 dev_dbg(musb->controller,
1229 "NAK timeout on TX%d ep\n", epnum);
1230 musb_bulk_nak_timeout(musb, hw_ep, 0);
1231 } else {
1232 dev_dbg(musb->controller,
1233 "TX end=%d device not responding\n", epnum);
1234 /* NOTE: this code path would be a good place to PAUSE a
1235 * transfer, if there's some other (nonperiodic) tx urb
1236 * that could use this fifo. (dma complicates it...)
1237 * That's already done for bulk RX transfers.
1238 *
1239 * if (bulk && qh->ring.next != &musb->out_bulk), then
1240 * we have a candidate... NAKing is *NOT* an error
1241 */
1242 musb_ep_select(mbase, epnum);
1243 musb_writew(epio, MUSB_TXCSR,
1244 MUSB_TXCSR_H_WZC_BITS
1245 | MUSB_TXCSR_TXPKTRDY);
1246 }
1247 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001248 }
1249
1250 if (status) {
1251 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1252 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1253 (void) musb->dma_controller->channel_abort(dma);
1254 }
1255
1256 /* do the proper sequence to abort the transfer in the
1257 * usb core; the dma engine should already be stopped.
1258 */
1259 musb_h_tx_flush_fifo(hw_ep);
1260 tx_csr &= ~(MUSB_TXCSR_AUTOSET
1261 | MUSB_TXCSR_DMAENAB
1262 | MUSB_TXCSR_H_ERROR
1263 | MUSB_TXCSR_H_RXSTALL
1264 | MUSB_TXCSR_H_NAKTIMEOUT
1265 );
1266
1267 musb_ep_select(mbase, epnum);
1268 musb_writew(epio, MUSB_TXCSR, tx_csr);
1269 /* REVISIT may need to clear FLUSHFIFO ... */
1270 musb_writew(epio, MUSB_TXCSR, tx_csr);
1271 musb_writeb(epio, MUSB_TXINTERVAL, 0);
1272
1273 done = true;
1274 }
1275
1276 /* second cppi case */
1277 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001278 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001279 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001280 }
1281
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -07001282 if (is_dma_capable() && dma && !status) {
1283 /*
1284 * DMA has completed. But if we're using DMA mode 1 (multi
1285 * packet DMA), we need a terminal TXPKTRDY interrupt before
1286 * we can consider this transfer completed, lest we trash
1287 * its last packet when writing the next URB's data. So we
1288 * switch back to mode 0 to get that interrupt; we'll come
1289 * back here once it happens.
1290 */
1291 if (tx_csr & MUSB_TXCSR_DMAMODE) {
1292 /*
1293 * We shouldn't clear DMAMODE with DMAENAB set; so
1294 * clear them in a safe order. That should be OK
1295 * once TXPKTRDY has been set (and I've never seen
1296 * it being 0 at this moment -- DMA interrupt latency
1297 * is significant) but if it hasn't been then we have
1298 * no choice but to stop being polite and ignore the
1299 * programmer's guide... :-)
1300 *
1301 * Note that we must write TXCSR with TXPKTRDY cleared
1302 * in order not to re-trigger the packet send (this bit
1303 * can't be cleared by CPU), and there's another caveat:
1304 * TXPKTRDY may be set shortly and then cleared in the
1305 * double-buffered FIFO mode, so we do an extra TXCSR
1306 * read for debouncing...
1307 */
1308 tx_csr &= musb_readw(epio, MUSB_TXCSR);
1309 if (tx_csr & MUSB_TXCSR_TXPKTRDY) {
1310 tx_csr &= ~(MUSB_TXCSR_DMAENAB |
1311 MUSB_TXCSR_TXPKTRDY);
1312 musb_writew(epio, MUSB_TXCSR,
1313 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1314 }
1315 tx_csr &= ~(MUSB_TXCSR_DMAMODE |
1316 MUSB_TXCSR_TXPKTRDY);
1317 musb_writew(epio, MUSB_TXCSR,
1318 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1319
1320 /*
1321 * There is no guarantee that we'll get an interrupt
1322 * after clearing DMAMODE as we might have done this
1323 * too late (after TXPKTRDY was cleared by controller).
1324 * Re-read TXCSR as we have spoiled its previous value.
1325 */
1326 tx_csr = musb_readw(epio, MUSB_TXCSR);
1327 }
1328
1329 /*
1330 * We may get here from a DMA completion or TXPKTRDY interrupt.
1331 * In any case, we must check the FIFO status here and bail out
1332 * only if the FIFO still has data -- that should prevent the
1333 * "missed" TXPKTRDY interrupts and deal with double-buffered
1334 * FIFO mode too...
1335 */
1336 if (tx_csr & (MUSB_TXCSR_FIFONOTEMPTY | MUSB_TXCSR_TXPKTRDY)) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001337 dev_dbg(musb->controller, "DMA complete but packet still in FIFO, "
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -07001338 "CSR %04x\n", tx_csr);
1339 return;
1340 }
1341 }
1342
Felipe Balbi550a7372008-07-24 12:27:36 +03001343 if (!status || dma || usb_pipeisoc(pipe)) {
1344 if (dma)
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001345 length = dma->actual_len;
Felipe Balbi550a7372008-07-24 12:27:36 +03001346 else
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001347 length = qh->segsize;
1348 qh->offset += length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001349
1350 if (usb_pipeisoc(pipe)) {
1351 struct usb_iso_packet_descriptor *d;
1352
1353 d = urb->iso_frame_desc + qh->iso_idx;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001354 d->actual_length = length;
1355 d->status = status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001356 if (++qh->iso_idx >= urb->number_of_packets) {
1357 done = true;
1358 } else {
1359 d++;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001360 offset = d->offset;
1361 length = d->length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001362 }
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001363 } else if (dma && urb->transfer_buffer_length == qh->offset) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001364 done = true;
1365 } else {
1366 /* see if we need to send more data, or ZLP */
1367 if (qh->segsize < qh->maxpacket)
1368 done = true;
1369 else if (qh->offset == urb->transfer_buffer_length
1370 && !(urb->transfer_flags
1371 & URB_ZERO_PACKET))
1372 done = true;
1373 if (!done) {
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001374 offset = qh->offset;
1375 length = urb->transfer_buffer_length - offset;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001376 transfer_pending = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001377 }
1378 }
1379 }
1380
1381 /* urb->status != -EINPROGRESS means request has been faulted,
1382 * so we must abort this transfer after cleanup
1383 */
1384 if (urb->status != -EINPROGRESS) {
1385 done = true;
1386 if (status == 0)
1387 status = urb->status;
1388 }
1389
1390 if (done) {
1391 /* set status */
1392 urb->status = status;
1393 urb->actual_length = qh->offset;
1394 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_OUT);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001395 return;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001396 } else if ((usb_pipeisoc(pipe) || transfer_pending) && dma) {
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001397 if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb,
Ajay Kumar Guptadfeffa52009-11-17 15:22:55 +05301398 offset, length)) {
1399 if (is_cppi_enabled() || tusb_dma_omap())
1400 musb_h_tx_dma_start(hw_ep);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001401 return;
Ajay Kumar Guptadfeffa52009-11-17 15:22:55 +05301402 }
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001403 } else if (tx_csr & MUSB_TXCSR_DMAENAB) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001404 dev_dbg(musb->controller, "not complete, but DMA enabled?\n");
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001405 return;
1406 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001407
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001408 /*
1409 * PIO: start next packet in this URB.
1410 *
1411 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1412 * (and presumably, FIFO is not half-full) we should write *two*
1413 * packets before updating TXCSR; other docs disagree...
1414 */
1415 if (length > qh->maxpacket)
1416 length = qh->maxpacket;
Maulik Mankad496dda72010-09-24 13:44:06 +03001417 /* Unmap the buffer so that CPU can use it */
Robert Morellc8cf2032011-01-26 19:06:47 -08001418 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001419 musb_write_fifo(hw_ep, length, urb->transfer_buffer + offset);
1420 qh->segsize = length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001421
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001422 musb_ep_select(mbase, epnum);
1423 musb_writew(epio, MUSB_TXCSR,
1424 MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY);
Felipe Balbi550a7372008-07-24 12:27:36 +03001425}
1426
1427
1428#ifdef CONFIG_USB_INVENTRA_DMA
1429
1430/* Host side RX (IN) using Mentor DMA works as follows:
1431 submit_urb ->
1432 - if queue was empty, ProgramEndpoint
1433 - first IN token is sent out (by setting ReqPkt)
1434 LinuxIsr -> RxReady()
1435 /\ => first packet is received
1436 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1437 | -> DMA Isr (transfer complete) -> RxReady()
1438 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1439 | - if urb not complete, send next IN token (ReqPkt)
1440 | | else complete urb.
1441 | |
1442 ---------------------------
1443 *
1444 * Nuances of mode 1:
1445 * For short packets, no ack (+RxPktRdy) is sent automatically
1446 * (even if AutoClear is ON)
1447 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1448 * automatically => major problem, as collecting the next packet becomes
1449 * difficult. Hence mode 1 is not used.
1450 *
1451 * REVISIT
1452 * All we care about at this driver level is that
1453 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1454 * (b) termination conditions are: short RX, or buffer full;
1455 * (c) fault modes include
1456 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1457 * (and that endpoint's dma queue stops immediately)
1458 * - overflow (full, PLUS more bytes in the terminal packet)
1459 *
1460 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1461 * thus be a great candidate for using mode 1 ... for all but the
1462 * last packet of one URB's transfer.
1463 */
1464
1465#endif
1466
1467/*
1468 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1469 * and high-bandwidth IN transfer cases.
1470 */
1471void musb_host_rx(struct musb *musb, u8 epnum)
1472{
1473 struct urb *urb;
1474 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1475 void __iomem *epio = hw_ep->regs;
1476 struct musb_qh *qh = hw_ep->in_qh;
1477 size_t xfer_len;
1478 void __iomem *mbase = musb->mregs;
1479 int pipe;
1480 u16 rx_csr, val;
1481 bool iso_err = false;
1482 bool done = false;
1483 u32 status;
1484 struct dma_channel *dma;
1485
1486 musb_ep_select(mbase, epnum);
1487
1488 urb = next_urb(qh);
1489 dma = is_dma_capable() ? hw_ep->rx_channel : NULL;
1490 status = 0;
1491 xfer_len = 0;
1492
1493 rx_csr = musb_readw(epio, MUSB_RXCSR);
1494 val = rx_csr;
1495
1496 if (unlikely(!urb)) {
1497 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1498 * usbtest #11 (unlinks) triggers it regularly, sometimes
1499 * with fifo full. (Only with DMA??)
1500 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001501 dev_dbg(musb->controller, "BOGUS RX%d ready, csr %04x, count %d\n", epnum, val,
Felipe Balbi550a7372008-07-24 12:27:36 +03001502 musb_readw(epio, MUSB_RXCOUNT));
1503 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1504 return;
1505 }
1506
1507 pipe = urb->pipe;
1508
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001509 dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001510 epnum, rx_csr, urb->actual_length,
1511 dma ? dma->actual_len : 0);
1512
1513 /* check for errors, concurrent stall & unlink is not really
1514 * handled yet! */
1515 if (rx_csr & MUSB_RXCSR_H_RXSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001516 dev_dbg(musb->controller, "RX end %d STALL\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001517
1518 /* stall; record URB status */
1519 status = -EPIPE;
1520
1521 } else if (rx_csr & MUSB_RXCSR_H_ERROR) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001522 dev_dbg(musb->controller, "end %d RX proto error\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001523
1524 status = -EPROTO;
1525 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1526
1527 } else if (rx_csr & MUSB_RXCSR_DATAERROR) {
1528
1529 if (USB_ENDPOINT_XFER_ISOC != qh->type) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001530 dev_dbg(musb->controller, "RX end %d NAK timeout\n", epnum);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001531
1532 /* NOTE: NAKing is *NOT* an error, so we want to
1533 * continue. Except ... if there's a request for
1534 * another QH, use that instead of starving it.
1535 *
1536 * Devices like Ethernet and serial adapters keep
1537 * reads posted at all times, which will starve
1538 * other devices without this logic.
1539 */
1540 if (usb_pipebulk(urb->pipe)
1541 && qh->mux == 1
1542 && !list_is_singular(&musb->in_bulk)) {
Ajay Kumar Guptaf2838622012-07-19 13:41:59 +05301543 musb_bulk_nak_timeout(musb, hw_ep, 1);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001544 return;
1545 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001546 musb_ep_select(mbase, epnum);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001547 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1548 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1549 musb_writew(epio, MUSB_RXCSR, rx_csr);
Felipe Balbi550a7372008-07-24 12:27:36 +03001550
1551 goto finish;
1552 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001553 dev_dbg(musb->controller, "RX end %d ISO data error\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001554 /* packet error reported later */
1555 iso_err = true;
1556 }
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001557 } else if (rx_csr & MUSB_RXCSR_INCOMPRX) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001558 dev_dbg(musb->controller, "end %d high bandwidth incomplete ISO packet RX\n",
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001559 epnum);
1560 status = -EPROTO;
Felipe Balbi550a7372008-07-24 12:27:36 +03001561 }
1562
1563 /* faults abort the transfer */
1564 if (status) {
1565 /* clean up dma and collect transfer count */
1566 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1567 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1568 (void) musb->dma_controller->channel_abort(dma);
1569 xfer_len = dma->actual_len;
1570 }
1571 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1572 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1573 done = true;
1574 goto finish;
1575 }
1576
1577 if (unlikely(dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY)) {
1578 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1579 ERR("RX%d dma busy, csr %04x\n", epnum, rx_csr);
1580 goto finish;
1581 }
1582
1583 /* thorough shutdown for now ... given more precise fault handling
1584 * and better queueing support, we might keep a DMA pipeline going
1585 * while processing this irq for earlier completions.
1586 */
1587
1588 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1589
1590#ifndef CONFIG_USB_INVENTRA_DMA
1591 if (rx_csr & MUSB_RXCSR_H_REQPKT) {
1592 /* REVISIT this happened for a while on some short reads...
1593 * the cleanup still needs investigation... looks bad...
1594 * and also duplicates dma cleanup code above ... plus,
1595 * shouldn't this be the "half full" double buffer case?
1596 */
1597 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1598 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1599 (void) musb->dma_controller->channel_abort(dma);
1600 xfer_len = dma->actual_len;
1601 done = true;
1602 }
1603
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001604 dev_dbg(musb->controller, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum, rx_csr,
Felipe Balbi550a7372008-07-24 12:27:36 +03001605 xfer_len, dma ? ", dma" : "");
1606 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
1607
1608 musb_ep_select(mbase, epnum);
1609 musb_writew(epio, MUSB_RXCSR,
1610 MUSB_RXCSR_H_WZC_BITS | rx_csr);
1611 }
1612#endif
1613 if (dma && (rx_csr & MUSB_RXCSR_DMAENAB)) {
1614 xfer_len = dma->actual_len;
1615
1616 val &= ~(MUSB_RXCSR_DMAENAB
1617 | MUSB_RXCSR_H_AUTOREQ
1618 | MUSB_RXCSR_AUTOCLEAR
1619 | MUSB_RXCSR_RXPKTRDY);
1620 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1621
1622#ifdef CONFIG_USB_INVENTRA_DMA
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001623 if (usb_pipeisoc(pipe)) {
1624 struct usb_iso_packet_descriptor *d;
1625
1626 d = urb->iso_frame_desc + qh->iso_idx;
1627 d->actual_length = xfer_len;
1628
1629 /* even if there was an error, we did the dma
1630 * for iso_frame_desc->length
1631 */
Márton Németh72887c82011-05-30 20:45:42 +02001632 if (d->status != -EILSEQ && d->status != -EOVERFLOW)
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001633 d->status = 0;
1634
1635 if (++qh->iso_idx >= urb->number_of_packets)
1636 done = true;
1637 else
1638 done = false;
1639
1640 } else {
Felipe Balbi550a7372008-07-24 12:27:36 +03001641 /* done if urb buffer is full or short packet is recd */
1642 done = (urb->actual_length + xfer_len >=
1643 urb->transfer_buffer_length
1644 || dma->actual_len < qh->maxpacket);
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001645 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001646
1647 /* send IN token for next packet, without AUTOREQ */
1648 if (!done) {
1649 val |= MUSB_RXCSR_H_REQPKT;
1650 musb_writew(epio, MUSB_RXCSR,
1651 MUSB_RXCSR_H_WZC_BITS | val);
1652 }
1653
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001654 dev_dbg(musb->controller, "ep %d dma %s, rxcsr %04x, rxcount %d\n", epnum,
Felipe Balbi550a7372008-07-24 12:27:36 +03001655 done ? "off" : "reset",
1656 musb_readw(epio, MUSB_RXCSR),
1657 musb_readw(epio, MUSB_RXCOUNT));
1658#else
1659 done = true;
1660#endif
1661 } else if (urb->status == -EINPROGRESS) {
1662 /* if no errors, be sure a packet is ready for unloading */
1663 if (unlikely(!(rx_csr & MUSB_RXCSR_RXPKTRDY))) {
1664 status = -EPROTO;
1665 ERR("Rx interrupt with no errors or packet!\n");
1666
1667 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1668
1669/* SCRUB (RX) */
1670 /* do the proper sequence to abort the transfer */
1671 musb_ep_select(mbase, epnum);
1672 val &= ~MUSB_RXCSR_H_REQPKT;
1673 musb_writew(epio, MUSB_RXCSR, val);
1674 goto finish;
1675 }
1676
1677 /* we are expecting IN packets */
1678#ifdef CONFIG_USB_INVENTRA_DMA
1679 if (dma) {
1680 struct dma_controller *c;
1681 u16 rx_count;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001682 int ret, length;
1683 dma_addr_t buf;
Felipe Balbi550a7372008-07-24 12:27:36 +03001684
1685 rx_count = musb_readw(epio, MUSB_RXCOUNT);
1686
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001687 dev_dbg(musb->controller, "RX%d count %d, buffer 0x%x len %d/%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001688 epnum, rx_count,
1689 urb->transfer_dma
1690 + urb->actual_length,
1691 qh->offset,
1692 urb->transfer_buffer_length);
1693
1694 c = musb->dma_controller;
1695
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001696 if (usb_pipeisoc(pipe)) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001697 int d_status = 0;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001698 struct usb_iso_packet_descriptor *d;
1699
1700 d = urb->iso_frame_desc + qh->iso_idx;
1701
1702 if (iso_err) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001703 d_status = -EILSEQ;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001704 urb->error_count++;
1705 }
1706 if (rx_count > d->length) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001707 if (d_status == 0) {
1708 d_status = -EOVERFLOW;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001709 urb->error_count++;
1710 }
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001711 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n",\
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001712 rx_count, d->length);
1713
1714 length = d->length;
1715 } else
1716 length = rx_count;
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001717 d->status = d_status;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001718 buf = urb->transfer_dma + d->offset;
1719 } else {
1720 length = rx_count;
1721 buf = urb->transfer_dma +
1722 urb->actual_length;
1723 }
1724
Felipe Balbi550a7372008-07-24 12:27:36 +03001725 dma->desired_mode = 0;
1726#ifdef USE_MODE1
1727 /* because of the issue below, mode 1 will
1728 * only rarely behave with correct semantics.
1729 */
1730 if ((urb->transfer_flags &
1731 URB_SHORT_NOT_OK)
1732 && (urb->transfer_buffer_length -
1733 urb->actual_length)
1734 > qh->maxpacket)
1735 dma->desired_mode = 1;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001736 if (rx_count < hw_ep->max_packet_sz_rx) {
1737 length = rx_count;
Sonic Zhangae926972010-03-08 11:26:01 -05001738 dma->desired_mode = 0;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001739 } else {
1740 length = urb->transfer_buffer_length;
1741 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001742#endif
1743
1744/* Disadvantage of using mode 1:
1745 * It's basically usable only for mass storage class; essentially all
1746 * other protocols also terminate transfers on short packets.
1747 *
1748 * Details:
1749 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1750 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1751 * to use the extra IN token to grab the last packet using mode 0, then
1752 * the problem is that you cannot be sure when the device will send the
1753 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1754 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1755 * transfer, while sometimes it is recd just a little late so that if you
1756 * try to configure for mode 0 soon after the mode 1 transfer is
1757 * completed, you will find rxcount 0. Okay, so you might think why not
1758 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1759 */
1760
1761 val = musb_readw(epio, MUSB_RXCSR);
1762 val &= ~MUSB_RXCSR_H_REQPKT;
1763
1764 if (dma->desired_mode == 0)
1765 val &= ~MUSB_RXCSR_H_AUTOREQ;
1766 else
1767 val |= MUSB_RXCSR_H_AUTOREQ;
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001768 val |= MUSB_RXCSR_DMAENAB;
1769
1770 /* autoclear shouldn't be set in high bandwidth */
1771 if (qh->hb_mult == 1)
1772 val |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +03001773
1774 musb_writew(epio, MUSB_RXCSR,
1775 MUSB_RXCSR_H_WZC_BITS | val);
1776
1777 /* REVISIT if when actual_length != 0,
1778 * transfer_buffer_length needs to be
1779 * adjusted first...
1780 */
1781 ret = c->channel_program(
1782 dma, qh->maxpacket,
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001783 dma->desired_mode, buf, length);
Felipe Balbi550a7372008-07-24 12:27:36 +03001784
1785 if (!ret) {
1786 c->channel_release(dma);
1787 hw_ep->rx_channel = NULL;
1788 dma = NULL;
Mantesh Sarasetti2ed91272012-06-01 14:54:30 +03001789 val = musb_readw(epio, MUSB_RXCSR);
1790 val &= ~(MUSB_RXCSR_DMAENAB
1791 | MUSB_RXCSR_H_AUTOREQ
1792 | MUSB_RXCSR_AUTOCLEAR);
1793 musb_writew(epio, MUSB_RXCSR, val);
Felipe Balbi550a7372008-07-24 12:27:36 +03001794 }
1795 }
1796#endif /* Mentor DMA */
1797
1798 if (!dma) {
Maulik Mankad496dda72010-09-24 13:44:06 +03001799 /* Unmap the buffer so that CPU can use it */
Robert Morellc8cf2032011-01-26 19:06:47 -08001800 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001801 done = musb_host_packet_rx(musb, urb,
1802 epnum, iso_err);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001803 dev_dbg(musb->controller, "read %spacket\n", done ? "last " : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001804 }
1805 }
1806
Felipe Balbi550a7372008-07-24 12:27:36 +03001807finish:
1808 urb->actual_length += xfer_len;
1809 qh->offset += xfer_len;
1810 if (done) {
1811 if (urb->status == -EINPROGRESS)
1812 urb->status = status;
1813 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_IN);
1814 }
1815}
1816
1817/* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
1818 * the software schedule associates multiple such nodes with a given
1819 * host side hardware endpoint + direction; scheduling may activate
1820 * that hardware endpoint.
1821 */
1822static int musb_schedule(
1823 struct musb *musb,
1824 struct musb_qh *qh,
1825 int is_in)
1826{
1827 int idle;
1828 int best_diff;
1829 int best_end, epnum;
1830 struct musb_hw_ep *hw_ep = NULL;
1831 struct list_head *head = NULL;
Swaminathan S5274dab2009-12-28 13:40:37 +02001832 u8 toggle;
1833 u8 txtype;
1834 struct urb *urb = next_urb(qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03001835
1836 /* use fixed hardware for control and bulk */
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001837 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001838 head = &musb->control;
1839 hw_ep = musb->control_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001840 goto success;
1841 }
1842
1843 /* else, periodic transfers get muxed to other endpoints */
1844
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001845 /*
1846 * We know this qh hasn't been scheduled, so all we need to do
Felipe Balbi550a7372008-07-24 12:27:36 +03001847 * is choose which hardware endpoint to put it on ...
1848 *
1849 * REVISIT what we really want here is a regular schedule tree
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001850 * like e.g. OHCI uses.
Felipe Balbi550a7372008-07-24 12:27:36 +03001851 */
1852 best_diff = 4096;
1853 best_end = -1;
1854
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001855 for (epnum = 1, hw_ep = musb->endpoints + 1;
1856 epnum < musb->nr_endpoints;
1857 epnum++, hw_ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001858 int diff;
1859
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -07001860 if (musb_ep_get_qh(hw_ep, is_in) != NULL)
Felipe Balbi550a7372008-07-24 12:27:36 +03001861 continue;
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001862
Felipe Balbi550a7372008-07-24 12:27:36 +03001863 if (hw_ep == musb->bulk_ep)
1864 continue;
1865
1866 if (is_in)
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001867 diff = hw_ep->max_packet_sz_rx;
Felipe Balbi550a7372008-07-24 12:27:36 +03001868 else
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001869 diff = hw_ep->max_packet_sz_tx;
1870 diff -= (qh->maxpacket * qh->hb_mult);
Felipe Balbi550a7372008-07-24 12:27:36 +03001871
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001872 if (diff >= 0 && best_diff > diff) {
Swaminathan S5274dab2009-12-28 13:40:37 +02001873
1874 /*
1875 * Mentor controller has a bug in that if we schedule
1876 * a BULK Tx transfer on an endpoint that had earlier
1877 * handled ISOC then the BULK transfer has to start on
1878 * a zero toggle. If the BULK transfer starts on a 1
1879 * toggle then this transfer will fail as the mentor
1880 * controller starts the Bulk transfer on a 0 toggle
1881 * irrespective of the programming of the toggle bits
1882 * in the TXCSR register. Check for this condition
1883 * while allocating the EP for a Tx Bulk transfer. If
1884 * so skip this EP.
1885 */
1886 hw_ep = musb->endpoints + epnum;
1887 toggle = usb_gettoggle(urb->dev, qh->epnum, !is_in);
1888 txtype = (musb_readb(hw_ep->regs, MUSB_TXTYPE)
1889 >> 4) & 0x3;
1890 if (!is_in && (qh->type == USB_ENDPOINT_XFER_BULK) &&
1891 toggle && (txtype == USB_ENDPOINT_XFER_ISOC))
1892 continue;
1893
Felipe Balbi550a7372008-07-24 12:27:36 +03001894 best_diff = diff;
1895 best_end = epnum;
1896 }
1897 }
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001898 /* use bulk reserved ep1 if no other ep is free */
Felipe Balbiaa5cbbe2008-11-17 09:08:16 +02001899 if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001900 hw_ep = musb->bulk_ep;
1901 if (is_in)
1902 head = &musb->in_bulk;
1903 else
1904 head = &musb->out_bulk;
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001905
Ajay Kumar Guptaf2838622012-07-19 13:41:59 +05301906 /* Enable bulk RX/TX NAK timeout scheme when bulk requests are
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001907 * multiplexed. This scheme doen't work in high speed to full
1908 * speed scenario as NAK interrupts are not coming from a
1909 * full speed device connected to a high speed device.
1910 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
1911 * 4 (8 frame or 8ms) for FS device.
1912 */
Ajay Kumar Guptaf2838622012-07-19 13:41:59 +05301913 if (qh->dev)
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001914 qh->intv_reg =
1915 (USB_SPEED_HIGH == qh->dev->speed) ? 8 : 4;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001916 goto success;
1917 } else if (best_end < 0) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001918 return -ENOSPC;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001919 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001920
1921 idle = 1;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001922 qh->mux = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001923 hw_ep = musb->endpoints + best_end;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001924 dev_dbg(musb->controller, "qh %p periodic slot %d\n", qh, best_end);
Felipe Balbi550a7372008-07-24 12:27:36 +03001925success:
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001926 if (head) {
1927 idle = list_empty(head);
1928 list_add_tail(&qh->ring, head);
1929 qh->mux = 1;
1930 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001931 qh->hw_ep = hw_ep;
1932 qh->hep->hcpriv = qh;
1933 if (idle)
1934 musb_start_urb(musb, is_in, qh);
1935 return 0;
1936}
1937
1938static int musb_urb_enqueue(
1939 struct usb_hcd *hcd,
1940 struct urb *urb,
1941 gfp_t mem_flags)
1942{
1943 unsigned long flags;
1944 struct musb *musb = hcd_to_musb(hcd);
1945 struct usb_host_endpoint *hep = urb->ep;
David Brownell74bb3502009-03-26 17:36:57 -07001946 struct musb_qh *qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03001947 struct usb_endpoint_descriptor *epd = &hep->desc;
1948 int ret;
1949 unsigned type_reg;
1950 unsigned interval;
1951
1952 /* host role must be active */
1953 if (!is_host_active(musb) || !musb->is_active)
1954 return -ENODEV;
1955
1956 spin_lock_irqsave(&musb->lock, flags);
1957 ret = usb_hcd_link_urb_to_ep(hcd, urb);
David Brownell74bb3502009-03-26 17:36:57 -07001958 qh = ret ? NULL : hep->hcpriv;
1959 if (qh)
1960 urb->hcpriv = qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03001961 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001962
1963 /* DMA mapping was already done, if needed, and this urb is on
David Brownell74bb3502009-03-26 17:36:57 -07001964 * hep->urb_list now ... so we're done, unless hep wasn't yet
1965 * scheduled onto a live qh.
Felipe Balbi550a7372008-07-24 12:27:36 +03001966 *
1967 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
1968 * disabled, testing for empty qh->ring and avoiding qh setup costs
1969 * except for the first urb queued after a config change.
1970 */
David Brownell74bb3502009-03-26 17:36:57 -07001971 if (qh || ret)
1972 return ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001973
1974 /* Allocate and initialize qh, minimizing the work done each time
1975 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
1976 *
1977 * REVISIT consider a dedicated qh kmem_cache, so it's harder
1978 * for bugs in other kernel code to break this driver...
1979 */
1980 qh = kzalloc(sizeof *qh, mem_flags);
1981 if (!qh) {
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03001982 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001983 usb_hcd_unlink_urb_from_ep(hcd, urb);
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03001984 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001985 return -ENOMEM;
1986 }
1987
1988 qh->hep = hep;
1989 qh->dev = urb->dev;
1990 INIT_LIST_HEAD(&qh->ring);
1991 qh->is_ready = 1;
1992
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001993 qh->maxpacket = usb_endpoint_maxp(epd);
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001994 qh->type = usb_endpoint_type(epd);
Felipe Balbi550a7372008-07-24 12:27:36 +03001995
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001996 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
1997 * Some musb cores don't support high bandwidth ISO transfers; and
1998 * we don't (yet!) support high bandwidth interrupt transfers.
1999 */
2000 qh->hb_mult = 1 + ((qh->maxpacket >> 11) & 0x03);
2001 if (qh->hb_mult > 1) {
2002 int ok = (qh->type == USB_ENDPOINT_XFER_ISOC);
2003
2004 if (ok)
2005 ok = (usb_pipein(urb->pipe) && musb->hb_iso_rx)
2006 || (usb_pipeout(urb->pipe) && musb->hb_iso_tx);
2007 if (!ok) {
2008 ret = -EMSGSIZE;
2009 goto done;
2010 }
2011 qh->maxpacket &= 0x7ff;
Felipe Balbi550a7372008-07-24 12:27:36 +03002012 }
2013
Julia Lawall96bcd092009-01-24 17:57:24 -08002014 qh->epnum = usb_endpoint_num(epd);
Felipe Balbi550a7372008-07-24 12:27:36 +03002015
2016 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
2017 qh->addr_reg = (u8) usb_pipedevice(urb->pipe);
2018
2019 /* precompute rxtype/txtype/type0 register */
2020 type_reg = (qh->type << 4) | qh->epnum;
2021 switch (urb->dev->speed) {
2022 case USB_SPEED_LOW:
2023 type_reg |= 0xc0;
2024 break;
2025 case USB_SPEED_FULL:
2026 type_reg |= 0x80;
2027 break;
2028 default:
2029 type_reg |= 0x40;
2030 }
2031 qh->type_reg = type_reg;
2032
Sergei Shtylyov136733d2009-02-21 15:31:35 -08002033 /* Precompute RXINTERVAL/TXINTERVAL register */
Felipe Balbi550a7372008-07-24 12:27:36 +03002034 switch (qh->type) {
2035 case USB_ENDPOINT_XFER_INT:
Sergei Shtylyov136733d2009-02-21 15:31:35 -08002036 /*
2037 * Full/low speeds use the linear encoding,
2038 * high speed uses the logarithmic encoding.
2039 */
2040 if (urb->dev->speed <= USB_SPEED_FULL) {
2041 interval = max_t(u8, epd->bInterval, 1);
2042 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03002043 }
2044 /* FALLTHROUGH */
2045 case USB_ENDPOINT_XFER_ISOC:
Sergei Shtylyov136733d2009-02-21 15:31:35 -08002046 /* ISO always uses logarithmic encoding */
2047 interval = min_t(u8, epd->bInterval, 16);
Felipe Balbi550a7372008-07-24 12:27:36 +03002048 break;
2049 default:
2050 /* REVISIT we actually want to use NAK limits, hinting to the
2051 * transfer scheduling logic to try some other qh, e.g. try
2052 * for 2 msec first:
2053 *
2054 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2055 *
2056 * The downside of disabling this is that transfer scheduling
2057 * gets VERY unfair for nonperiodic transfers; a misbehaving
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08002058 * peripheral could make that hurt. That's perfectly normal
2059 * for reads from network or serial adapters ... so we have
2060 * partial NAKlimit support for bulk RX.
Felipe Balbi550a7372008-07-24 12:27:36 +03002061 *
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08002062 * The upside of disabling it is simpler transfer scheduling.
Felipe Balbi550a7372008-07-24 12:27:36 +03002063 */
2064 interval = 0;
2065 }
2066 qh->intv_reg = interval;
2067
2068 /* precompute addressing for external hub/tt ports */
2069 if (musb->is_multipoint) {
2070 struct usb_device *parent = urb->dev->parent;
2071
2072 if (parent != hcd->self.root_hub) {
2073 qh->h_addr_reg = (u8) parent->devnum;
2074
2075 /* set up tt info if needed */
2076 if (urb->dev->tt) {
2077 qh->h_port_reg = (u8) urb->dev->ttport;
Ajay Kumar Guptaae5ad292008-09-11 11:53:20 +03002078 if (urb->dev->tt->hub)
2079 qh->h_addr_reg =
2080 (u8) urb->dev->tt->hub->devnum;
2081 if (urb->dev->tt->multi)
2082 qh->h_addr_reg |= 0x80;
Felipe Balbi550a7372008-07-24 12:27:36 +03002083 }
2084 }
2085 }
2086
2087 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2088 * until we get real dma queues (with an entry for each urb/buffer),
2089 * we only have work to do in the former case.
2090 */
2091 spin_lock_irqsave(&musb->lock, flags);
2092 if (hep->hcpriv) {
2093 /* some concurrent activity submitted another urb to hep...
2094 * odd, rare, error prone, but legal.
2095 */
2096 kfree(qh);
Dan Carpenter714bc5e2010-03-25 13:14:27 +02002097 qh = NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002098 ret = 0;
2099 } else
2100 ret = musb_schedule(musb, qh,
2101 epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK);
2102
2103 if (ret == 0) {
2104 urb->hcpriv = qh;
2105 /* FIXME set urb->start_frame for iso/intr, it's tested in
2106 * musb_start_urb(), but otherwise only konicawc cares ...
2107 */
2108 }
2109 spin_unlock_irqrestore(&musb->lock, flags);
2110
2111done:
2112 if (ret != 0) {
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03002113 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03002114 usb_hcd_unlink_urb_from_ep(hcd, urb);
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03002115 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03002116 kfree(qh);
2117 }
2118 return ret;
2119}
2120
2121
2122/*
2123 * abort a transfer that's at the head of a hardware queue.
2124 * called with controller locked, irqs blocked
2125 * that hardware queue advances to the next transfer, unless prevented
2126 */
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002127static int musb_cleanup_urb(struct urb *urb, struct musb_qh *qh)
Felipe Balbi550a7372008-07-24 12:27:36 +03002128{
2129 struct musb_hw_ep *ep = qh->hw_ep;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002130 struct musb *musb = ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +03002131 void __iomem *epio = ep->regs;
2132 unsigned hw_end = ep->epnum;
2133 void __iomem *regs = ep->musb->mregs;
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002134 int is_in = usb_pipein(urb->pipe);
Felipe Balbi550a7372008-07-24 12:27:36 +03002135 int status = 0;
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002136 u16 csr;
Felipe Balbi550a7372008-07-24 12:27:36 +03002137
2138 musb_ep_select(regs, hw_end);
2139
2140 if (is_dma_capable()) {
2141 struct dma_channel *dma;
2142
2143 dma = is_in ? ep->rx_channel : ep->tx_channel;
2144 if (dma) {
2145 status = ep->musb->dma_controller->channel_abort(dma);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002146 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03002147 "abort %cX%d DMA for urb %p --> %d\n",
2148 is_in ? 'R' : 'T', ep->epnum,
2149 urb, status);
2150 urb->actual_length += dma->actual_len;
2151 }
2152 }
2153
2154 /* turn off DMA requests, discard state, stop polling ... */
Ajay Kumar Gupta692933b2012-03-14 17:33:35 +05302155 if (ep->epnum && is_in) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002156 /* giveback saves bulk toggle */
2157 csr = musb_h_flush_rxfifo(ep, 0);
2158
2159 /* REVISIT we still get an irq; should likely clear the
2160 * endpoint's irq status here to avoid bogus irqs.
2161 * clearing that status is platform-specific...
2162 */
David Brownell78322c12009-03-26 17:38:30 -07002163 } else if (ep->epnum) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002164 musb_h_tx_flush_fifo(ep);
2165 csr = musb_readw(epio, MUSB_TXCSR);
2166 csr &= ~(MUSB_TXCSR_AUTOSET
2167 | MUSB_TXCSR_DMAENAB
2168 | MUSB_TXCSR_H_RXSTALL
2169 | MUSB_TXCSR_H_NAKTIMEOUT
2170 | MUSB_TXCSR_H_ERROR
2171 | MUSB_TXCSR_TXPKTRDY);
2172 musb_writew(epio, MUSB_TXCSR, csr);
2173 /* REVISIT may need to clear FLUSHFIFO ... */
2174 musb_writew(epio, MUSB_TXCSR, csr);
2175 /* flush cpu writebuffer */
2176 csr = musb_readw(epio, MUSB_TXCSR);
David Brownell78322c12009-03-26 17:38:30 -07002177 } else {
2178 musb_h_ep0_flush_fifo(ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03002179 }
2180 if (status == 0)
2181 musb_advance_schedule(ep->musb, urb, ep, is_in);
2182 return status;
2183}
2184
2185static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2186{
2187 struct musb *musb = hcd_to_musb(hcd);
2188 struct musb_qh *qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03002189 unsigned long flags;
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002190 int is_in = usb_pipein(urb->pipe);
Felipe Balbi550a7372008-07-24 12:27:36 +03002191 int ret;
2192
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002193 dev_dbg(musb->controller, "urb=%p, dev%d ep%d%s\n", urb,
Felipe Balbi550a7372008-07-24 12:27:36 +03002194 usb_pipedevice(urb->pipe),
2195 usb_pipeendpoint(urb->pipe),
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002196 is_in ? "in" : "out");
Felipe Balbi550a7372008-07-24 12:27:36 +03002197
2198 spin_lock_irqsave(&musb->lock, flags);
2199 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
2200 if (ret)
2201 goto done;
2202
2203 qh = urb->hcpriv;
2204 if (!qh)
2205 goto done;
2206
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002207 /*
2208 * Any URB not actively programmed into endpoint hardware can be
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002209 * immediately given back; that's any URB not at the head of an
Felipe Balbi550a7372008-07-24 12:27:36 +03002210 * endpoint queue, unless someday we get real DMA queues. And even
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002211 * if it's at the head, it might not be known to the hardware...
Felipe Balbi550a7372008-07-24 12:27:36 +03002212 *
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002213 * Otherwise abort current transfer, pending DMA, etc.; urb->status
Felipe Balbi550a7372008-07-24 12:27:36 +03002214 * has already been updated. This is a synchronous abort; it'd be
2215 * OK to hold off until after some IRQ, though.
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002216 *
2217 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
Felipe Balbi550a7372008-07-24 12:27:36 +03002218 */
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002219 if (!qh->is_ready
2220 || urb->urb_list.prev != &qh->hep->urb_list
2221 || musb_ep_get_qh(qh->hw_ep, is_in) != qh) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002222 int ready = qh->is_ready;
2223
Felipe Balbi550a7372008-07-24 12:27:36 +03002224 qh->is_ready = 0;
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -07002225 musb_giveback(musb, urb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03002226 qh->is_ready = ready;
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002227
2228 /* If nothing else (usually musb_giveback) is using it
2229 * and its URB list has emptied, recycle this qh.
2230 */
2231 if (ready && list_empty(&qh->hep->urb_list)) {
2232 qh->hep->hcpriv = NULL;
2233 list_del(&qh->ring);
2234 kfree(qh);
2235 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002236 } else
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002237 ret = musb_cleanup_urb(urb, qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03002238done:
2239 spin_unlock_irqrestore(&musb->lock, flags);
2240 return ret;
2241}
2242
2243/* disable an endpoint */
2244static void
2245musb_h_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
2246{
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002247 u8 is_in = hep->desc.bEndpointAddress & USB_DIR_IN;
Felipe Balbi550a7372008-07-24 12:27:36 +03002248 unsigned long flags;
2249 struct musb *musb = hcd_to_musb(hcd);
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002250 struct musb_qh *qh;
2251 struct urb *urb;
Felipe Balbi550a7372008-07-24 12:27:36 +03002252
Felipe Balbi550a7372008-07-24 12:27:36 +03002253 spin_lock_irqsave(&musb->lock, flags);
2254
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002255 qh = hep->hcpriv;
2256 if (qh == NULL)
2257 goto exit;
2258
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002259 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
Felipe Balbi550a7372008-07-24 12:27:36 +03002260
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002261 /* Kick the first URB off the hardware, if needed */
Felipe Balbi550a7372008-07-24 12:27:36 +03002262 qh->is_ready = 0;
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002263 if (musb_ep_get_qh(qh->hw_ep, is_in) == qh) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002264 urb = next_urb(qh);
2265
2266 /* make software (then hardware) stop ASAP */
2267 if (!urb->unlinked)
2268 urb->status = -ESHUTDOWN;
2269
2270 /* cleanup */
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002271 musb_cleanup_urb(urb, qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03002272
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002273 /* Then nuke all the others ... and advance the
2274 * queue on hw_ep (e.g. bulk ring) when we're done.
2275 */
2276 while (!list_empty(&hep->urb_list)) {
2277 urb = next_urb(qh);
2278 urb->status = -ESHUTDOWN;
2279 musb_advance_schedule(musb, urb, qh->hw_ep, is_in);
2280 }
2281 } else {
2282 /* Just empty the queue; the hardware is busy with
2283 * other transfers, and since !qh->is_ready nothing
2284 * will activate any of these as it advances.
2285 */
2286 while (!list_empty(&hep->urb_list))
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -07002287 musb_giveback(musb, next_urb(qh), -ESHUTDOWN);
Felipe Balbi550a7372008-07-24 12:27:36 +03002288
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002289 hep->hcpriv = NULL;
2290 list_del(&qh->ring);
2291 kfree(qh);
2292 }
2293exit:
Felipe Balbi550a7372008-07-24 12:27:36 +03002294 spin_unlock_irqrestore(&musb->lock, flags);
2295}
2296
2297static int musb_h_get_frame_number(struct usb_hcd *hcd)
2298{
2299 struct musb *musb = hcd_to_musb(hcd);
2300
2301 return musb_readw(musb->mregs, MUSB_FRAME);
2302}
2303
2304static int musb_h_start(struct usb_hcd *hcd)
2305{
2306 struct musb *musb = hcd_to_musb(hcd);
2307
2308 /* NOTE: musb_start() is called when the hub driver turns
2309 * on port power, or when (OTG) peripheral starts.
2310 */
2311 hcd->state = HC_STATE_RUNNING;
2312 musb->port1_status = 0;
2313 return 0;
2314}
2315
2316static void musb_h_stop(struct usb_hcd *hcd)
2317{
2318 musb_stop(hcd_to_musb(hcd));
2319 hcd->state = HC_STATE_HALT;
2320}
2321
2322static int musb_bus_suspend(struct usb_hcd *hcd)
2323{
2324 struct musb *musb = hcd_to_musb(hcd);
David Brownell89368d32009-07-01 03:36:16 -07002325 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03002326
David Brownell89368d32009-07-01 03:36:16 -07002327 if (!is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03002328 return 0;
2329
David Brownell89368d32009-07-01 03:36:16 -07002330 switch (musb->xceiv->state) {
2331 case OTG_STATE_A_SUSPEND:
2332 return 0;
2333 case OTG_STATE_A_WAIT_VRISE:
2334 /* ID could be grounded even if there's no device
2335 * on the other end of the cable. NOTE that the
2336 * A_WAIT_VRISE timers are messy with MUSB...
2337 */
2338 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2339 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
2340 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
2341 break;
2342 default:
2343 break;
2344 }
2345
2346 if (musb->is_active) {
2347 WARNING("trying to suspend as %s while active\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +02002348 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03002349 return -EBUSY;
2350 } else
2351 return 0;
2352}
2353
2354static int musb_bus_resume(struct usb_hcd *hcd)
2355{
2356 /* resuming child port does the work */
2357 return 0;
2358}
2359
2360const struct hc_driver musb_hc_driver = {
2361 .description = "musb-hcd",
2362 .product_desc = "MUSB HDRC host driver",
2363 .hcd_priv_size = sizeof(struct musb),
2364 .flags = HCD_USB2 | HCD_MEMORY,
2365
2366 /* not using irq handler or reset hooks from usbcore, since
2367 * those must be shared with peripheral code for OTG configs
2368 */
2369
2370 .start = musb_h_start,
2371 .stop = musb_h_stop,
2372
2373 .get_frame_number = musb_h_get_frame_number,
2374
2375 .urb_enqueue = musb_urb_enqueue,
2376 .urb_dequeue = musb_urb_dequeue,
2377 .endpoint_disable = musb_h_disable,
2378
2379 .hub_status_data = musb_hub_status_data,
2380 .hub_control = musb_hub_control,
2381 .bus_suspend = musb_bus_suspend,
2382 .bus_resume = musb_bus_resume,
2383 /* .start_port_reset = NULL, */
2384 /* .hub_irq_enable = NULL, */
2385};