blob: 33fc45151b8f189e0e121abe79a3a04d5269f32e [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;
378
379 if (is_in)
380 ep->rx_reinit = 1;
381 else
382 ep->tx_reinit = 1;
383
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700384 /* Clobber old pointers to this qh */
385 musb_ep_set_qh(ep, is_in, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +0300386 qh->hep->hcpriv = NULL;
387
388 switch (qh->type) {
389
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +0200390 case USB_ENDPOINT_XFER_CONTROL:
391 case USB_ENDPOINT_XFER_BULK:
392 /* fifo policy for these lists, except that NAKing
393 * should rotate a qh to the end (for fairness).
394 */
395 if (qh->mux == 1) {
396 head = qh->ring.prev;
397 list_del(&qh->ring);
398 kfree(qh);
399 qh = first_qh(head);
400 break;
401 }
402
Felipe Balbi550a7372008-07-24 12:27:36 +0300403 case USB_ENDPOINT_XFER_ISOC:
404 case USB_ENDPOINT_XFER_INT:
405 /* this is where periodic bandwidth should be
406 * de-allocated if it's tracked and allocated;
407 * and where we'd update the schedule tree...
408 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300409 kfree(qh);
410 qh = NULL;
411 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300412 }
413 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300414
Sergei Shtylyova2fd8142009-02-21 15:30:45 -0800415 if (qh != NULL && qh->is_ready) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300416 dev_dbg(musb->controller, "... next ep%d %cX urb %p\n",
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -0700417 hw_ep->epnum, is_in ? 'R' : 'T', next_urb(qh));
Felipe Balbi550a7372008-07-24 12:27:36 +0300418 musb_start_urb(musb, is_in, qh);
419 }
420}
421
David Brownellc767c1c2008-09-11 11:53:23 +0300422static u16 musb_h_flush_rxfifo(struct musb_hw_ep *hw_ep, u16 csr)
Felipe Balbi550a7372008-07-24 12:27:36 +0300423{
424 /* we don't want fifo to fill itself again;
425 * ignore dma (various models),
426 * leave toggle alone (may not have been saved yet)
427 */
428 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_RXPKTRDY;
429 csr &= ~(MUSB_RXCSR_H_REQPKT
430 | MUSB_RXCSR_H_AUTOREQ
431 | MUSB_RXCSR_AUTOCLEAR);
432
433 /* write 2x to allow double buffering */
434 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
435 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
436
437 /* flush writebuffer */
438 return musb_readw(hw_ep->regs, MUSB_RXCSR);
439}
440
441/*
442 * PIO RX for a packet (or part of it).
443 */
444static bool
445musb_host_packet_rx(struct musb *musb, struct urb *urb, u8 epnum, u8 iso_err)
446{
447 u16 rx_count;
448 u8 *buf;
449 u16 csr;
450 bool done = false;
451 u32 length;
452 int do_flush = 0;
453 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
454 void __iomem *epio = hw_ep->regs;
455 struct musb_qh *qh = hw_ep->in_qh;
456 int pipe = urb->pipe;
457 void *buffer = urb->transfer_buffer;
458
459 /* musb_ep_select(mbase, epnum); */
460 rx_count = musb_readw(epio, MUSB_RXCOUNT);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300461 dev_dbg(musb->controller, "RX%d count %d, buffer %p len %d/%d\n", epnum, rx_count,
Felipe Balbi550a7372008-07-24 12:27:36 +0300462 urb->transfer_buffer, qh->offset,
463 urb->transfer_buffer_length);
464
465 /* unload FIFO */
466 if (usb_pipeisoc(pipe)) {
467 int status = 0;
468 struct usb_iso_packet_descriptor *d;
469
470 if (iso_err) {
471 status = -EILSEQ;
472 urb->error_count++;
473 }
474
475 d = urb->iso_frame_desc + qh->iso_idx;
476 buf = buffer + d->offset;
477 length = d->length;
478 if (rx_count > length) {
479 if (status == 0) {
480 status = -EOVERFLOW;
481 urb->error_count++;
482 }
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300483 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300484 do_flush = 1;
485 } else
486 length = rx_count;
487 urb->actual_length += length;
488 d->actual_length = length;
489
490 d->status = status;
491
492 /* see if we are done */
493 done = (++qh->iso_idx >= urb->number_of_packets);
494 } else {
495 /* non-isoch */
496 buf = buffer + qh->offset;
497 length = urb->transfer_buffer_length - qh->offset;
498 if (rx_count > length) {
499 if (urb->status == -EINPROGRESS)
500 urb->status = -EOVERFLOW;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300501 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n", rx_count, length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300502 do_flush = 1;
503 } else
504 length = rx_count;
505 urb->actual_length += length;
506 qh->offset += length;
507
508 /* see if we are done */
509 done = (urb->actual_length == urb->transfer_buffer_length)
510 || (rx_count < qh->maxpacket)
511 || (urb->status != -EINPROGRESS);
512 if (done
513 && (urb->status == -EINPROGRESS)
514 && (urb->transfer_flags & URB_SHORT_NOT_OK)
515 && (urb->actual_length
516 < urb->transfer_buffer_length))
517 urb->status = -EREMOTEIO;
518 }
519
520 musb_read_fifo(hw_ep, length, buf);
521
522 csr = musb_readw(epio, MUSB_RXCSR);
523 csr |= MUSB_RXCSR_H_WZC_BITS;
524 if (unlikely(do_flush))
525 musb_h_flush_rxfifo(hw_ep, csr);
526 else {
527 /* REVISIT this assumes AUTOCLEAR is never set */
528 csr &= ~(MUSB_RXCSR_RXPKTRDY | MUSB_RXCSR_H_REQPKT);
529 if (!done)
530 csr |= MUSB_RXCSR_H_REQPKT;
531 musb_writew(epio, MUSB_RXCSR, csr);
532 }
533
534 return done;
535}
536
537/* we don't always need to reinit a given side of an endpoint...
538 * when we do, use tx/rx reinit routine and then construct a new CSR
539 * to address data toggle, NYET, and DMA or PIO.
540 *
541 * it's possible that driver bugs (especially for DMA) or aborting a
542 * transfer might have left the endpoint busier than it should be.
543 * the busy/not-empty tests are basically paranoia.
544 */
545static void
546musb_rx_reinit(struct musb *musb, struct musb_qh *qh, struct musb_hw_ep *ep)
547{
548 u16 csr;
549
550 /* NOTE: we know the "rx" fifo reinit never triggers for ep0.
551 * That always uses tx_reinit since ep0 repurposes TX register
552 * offsets; the initial SETUP packet is also a kind of OUT.
553 */
554
555 /* if programmed for Tx, put it in RX mode */
556 if (ep->is_shared_fifo) {
557 csr = musb_readw(ep->regs, MUSB_TXCSR);
558 if (csr & MUSB_TXCSR_MODE) {
559 musb_h_tx_flush_fifo(ep);
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700560 csr = musb_readw(ep->regs, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +0300561 musb_writew(ep->regs, MUSB_TXCSR,
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700562 csr | MUSB_TXCSR_FRCDATATOG);
Felipe Balbi550a7372008-07-24 12:27:36 +0300563 }
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700564
565 /*
566 * Clear the MODE bit (and everything else) to enable Rx.
567 * NOTE: we mustn't clear the DMAMODE bit before DMAENAB.
568 */
569 if (csr & MUSB_TXCSR_DMAMODE)
570 musb_writew(ep->regs, MUSB_TXCSR, MUSB_TXCSR_DMAMODE);
Felipe Balbi550a7372008-07-24 12:27:36 +0300571 musb_writew(ep->regs, MUSB_TXCSR, 0);
572
573 /* scrub all previous state, clearing toggle */
574 } else {
575 csr = musb_readw(ep->regs, MUSB_RXCSR);
576 if (csr & MUSB_RXCSR_RXPKTRDY)
577 WARNING("rx%d, packet/%d ready?\n", ep->epnum,
578 musb_readw(ep->regs, MUSB_RXCOUNT));
579
580 musb_h_flush_rxfifo(ep, MUSB_RXCSR_CLRDATATOG);
581 }
582
583 /* target addr and (for multipoint) hub addr/port */
584 if (musb->is_multipoint) {
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200585 musb_write_rxfunaddr(ep->target_regs, qh->addr_reg);
586 musb_write_rxhubaddr(ep->target_regs, qh->h_addr_reg);
587 musb_write_rxhubport(ep->target_regs, qh->h_port_reg);
588
Felipe Balbi550a7372008-07-24 12:27:36 +0300589 } else
590 musb_writeb(musb->mregs, MUSB_FADDR, qh->addr_reg);
591
592 /* protocol/endpoint, interval/NAKlimit, i/o size */
593 musb_writeb(ep->regs, MUSB_RXTYPE, qh->type_reg);
594 musb_writeb(ep->regs, MUSB_RXINTERVAL, qh->intv_reg);
595 /* NOTE: bulk combining rewrites high bits of maxpacket */
Cliff Cai9f445cb2010-01-28 20:44:18 -0500596 /* Set RXMAXP with the FIFO size of the endpoint
597 * to disable double buffer mode.
598 */
Felipe Balbi06624812011-01-21 13:39:20 +0800599 if (musb->double_buffer_not_ok)
Cliff Cai9f445cb2010-01-28 20:44:18 -0500600 musb_writew(ep->regs, MUSB_RXMAXP, ep->max_packet_sz_rx);
601 else
602 musb_writew(ep->regs, MUSB_RXMAXP,
603 qh->maxpacket | ((qh->hb_mult - 1) << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300604
605 ep->rx_reinit = 0;
606}
607
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700608static bool musb_tx_dma_program(struct dma_controller *dma,
609 struct musb_hw_ep *hw_ep, struct musb_qh *qh,
610 struct urb *urb, u32 offset, u32 length)
611{
612 struct dma_channel *channel = hw_ep->tx_channel;
613 void __iomem *epio = hw_ep->regs;
614 u16 pkt_size = qh->maxpacket;
615 u16 csr;
616 u8 mode;
617
618#ifdef CONFIG_USB_INVENTRA_DMA
619 if (length > channel->max_len)
620 length = channel->max_len;
621
622 csr = musb_readw(epio, MUSB_TXCSR);
623 if (length > pkt_size) {
624 mode = 1;
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -0700625 csr |= MUSB_TXCSR_DMAMODE | MUSB_TXCSR_DMAENAB;
626 /* autoset shouldn't be set in high bandwidth */
627 if (qh->hb_mult == 1)
628 csr |= MUSB_TXCSR_AUTOSET;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700629 } else {
630 mode = 0;
631 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAMODE);
632 csr |= MUSB_TXCSR_DMAENAB; /* against programmer's guide */
633 }
634 channel->desired_mode = mode;
635 musb_writew(epio, MUSB_TXCSR, csr);
636#else
637 if (!is_cppi_enabled() && !tusb_dma_omap())
638 return false;
639
640 channel->actual_len = 0;
641
642 /*
643 * TX uses "RNDIS" mode automatically but needs help
644 * to identify the zero-length-final-packet case.
645 */
646 mode = (urb->transfer_flags & URB_ZERO_PACKET) ? 1 : 0;
647#endif
648
649 qh->segsize = length;
650
Santosh Shilimkar4c647332010-09-20 10:32:07 +0300651 /*
652 * Ensure the data reaches to main memory before starting
653 * DMA transfer
654 */
655 wmb();
656
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700657 if (!dma->channel_program(channel, pkt_size, mode,
658 urb->transfer_dma + offset, length)) {
659 dma->channel_release(channel);
660 hw_ep->tx_channel = NULL;
661
662 csr = musb_readw(epio, MUSB_TXCSR);
663 csr &= ~(MUSB_TXCSR_AUTOSET | MUSB_TXCSR_DMAENAB);
664 musb_writew(epio, MUSB_TXCSR, csr | MUSB_TXCSR_H_WZC_BITS);
665 return false;
666 }
667 return true;
668}
Felipe Balbi550a7372008-07-24 12:27:36 +0300669
670/*
671 * Program an HDRC endpoint as per the given URB
672 * Context: irqs blocked, controller lock held
673 */
674static void musb_ep_program(struct musb *musb, u8 epnum,
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700675 struct urb *urb, int is_out,
676 u8 *buf, u32 offset, u32 len)
Felipe Balbi550a7372008-07-24 12:27:36 +0300677{
678 struct dma_controller *dma_controller;
679 struct dma_channel *dma_channel;
680 u8 dma_ok;
681 void __iomem *mbase = musb->mregs;
682 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
683 void __iomem *epio = hw_ep->regs;
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -0700684 struct musb_qh *qh = musb_ep_get_qh(hw_ep, !is_out);
685 u16 packet_sz = qh->maxpacket;
Felipe Balbi550a7372008-07-24 12:27:36 +0300686
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300687 dev_dbg(musb->controller, "%s hw%d urb %p spd%d dev%d ep%d%s "
Felipe Balbi550a7372008-07-24 12:27:36 +0300688 "h_addr%02x h_port%02x bytes %d\n",
689 is_out ? "-->" : "<--",
690 epnum, urb, urb->dev->speed,
691 qh->addr_reg, qh->epnum, is_out ? "out" : "in",
692 qh->h_addr_reg, qh->h_port_reg,
693 len);
694
695 musb_ep_select(mbase, epnum);
696
697 /* candidate for DMA? */
698 dma_controller = musb->dma_controller;
699 if (is_dma_capable() && epnum && dma_controller) {
700 dma_channel = is_out ? hw_ep->tx_channel : hw_ep->rx_channel;
701 if (!dma_channel) {
702 dma_channel = dma_controller->channel_alloc(
703 dma_controller, hw_ep, is_out);
704 if (is_out)
705 hw_ep->tx_channel = dma_channel;
706 else
707 hw_ep->rx_channel = dma_channel;
708 }
709 } else
710 dma_channel = NULL;
711
712 /* make sure we clear DMAEnab, autoSet bits from previous run */
713
714 /* OUT/transmit/EP0 or IN/receive? */
715 if (is_out) {
716 u16 csr;
717 u16 int_txe;
718 u16 load_count;
719
720 csr = musb_readw(epio, MUSB_TXCSR);
721
722 /* disable interrupt in case we flush */
723 int_txe = musb_readw(mbase, MUSB_INTRTXE);
724 musb_writew(mbase, MUSB_INTRTXE, int_txe & ~(1 << epnum));
725
726 /* general endpoint setup */
727 if (epnum) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300728 /* flush all old state, set default */
729 musb_h_tx_flush_fifo(hw_ep);
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700730
731 /*
732 * We must not clear the DMAMODE bit before or in
733 * the same cycle with the DMAENAB bit, so we clear
734 * the latter first...
735 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300736 csr &= ~(MUSB_TXCSR_H_NAKTIMEOUT
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700737 | MUSB_TXCSR_AUTOSET
738 | MUSB_TXCSR_DMAENAB
Felipe Balbi550a7372008-07-24 12:27:36 +0300739 | MUSB_TXCSR_FRCDATATOG
740 | MUSB_TXCSR_H_RXSTALL
741 | MUSB_TXCSR_H_ERROR
742 | MUSB_TXCSR_TXPKTRDY
743 );
744 csr |= MUSB_TXCSR_MODE;
745
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700746 if (usb_gettoggle(urb->dev, qh->epnum, 1))
Felipe Balbi550a7372008-07-24 12:27:36 +0300747 csr |= MUSB_TXCSR_H_WR_DATATOGGLE
748 | MUSB_TXCSR_H_DATATOGGLE;
749 else
750 csr |= MUSB_TXCSR_CLRDATATOG;
751
Felipe Balbi550a7372008-07-24 12:27:36 +0300752 musb_writew(epio, MUSB_TXCSR, csr);
753 /* REVISIT may need to clear FLUSHFIFO ... */
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700754 csr &= ~MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300755 musb_writew(epio, MUSB_TXCSR, csr);
756 csr = musb_readw(epio, MUSB_TXCSR);
757 } else {
758 /* endpoint 0: just flush */
David Brownell78322c12009-03-26 17:38:30 -0700759 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +0300760 }
761
762 /* target addr and (for multipoint) hub addr/port */
763 if (musb->is_multipoint) {
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200764 musb_write_txfunaddr(mbase, epnum, qh->addr_reg);
765 musb_write_txhubaddr(mbase, epnum, qh->h_addr_reg);
766 musb_write_txhubport(mbase, epnum, qh->h_port_reg);
Felipe Balbi550a7372008-07-24 12:27:36 +0300767/* FIXME if !epnum, do the same for RX ... */
768 } else
769 musb_writeb(mbase, MUSB_FADDR, qh->addr_reg);
770
771 /* protocol/endpoint/interval/NAKlimit */
772 if (epnum) {
773 musb_writeb(epio, MUSB_TXTYPE, qh->type_reg);
Felipe Balbi06624812011-01-21 13:39:20 +0800774 if (musb->double_buffer_not_ok)
Felipe Balbi550a7372008-07-24 12:27:36 +0300775 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi06624812011-01-21 13:39:20 +0800776 hw_ep->max_packet_sz_tx);
Ajay Kumar Guptaccc080c2011-12-13 10:32:42 +0530777 else if (can_bulk_split(musb, qh->type))
778 musb_writew(epio, MUSB_TXMAXP, packet_sz
779 | ((hw_ep->max_packet_sz_tx /
780 packet_sz) - 1) << 11);
Felipe Balbi550a7372008-07-24 12:27:36 +0300781 else
782 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi06624812011-01-21 13:39:20 +0800783 qh->maxpacket |
784 ((qh->hb_mult - 1) << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +0300785 musb_writeb(epio, MUSB_TXINTERVAL, qh->intv_reg);
786 } else {
787 musb_writeb(epio, MUSB_NAKLIMIT0, qh->intv_reg);
788 if (musb->is_multipoint)
789 musb_writeb(epio, MUSB_TYPE0,
790 qh->type_reg);
791 }
792
793 if (can_bulk_split(musb, qh->type))
794 load_count = min((u32) hw_ep->max_packet_sz_tx,
795 len);
796 else
797 load_count = min((u32) packet_sz, len);
798
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -0700799 if (dma_channel && musb_tx_dma_program(dma_controller,
800 hw_ep, qh, urb, offset, len))
801 load_count = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300802
803 if (load_count) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300804 /* PIO to load FIFO */
805 qh->segsize = load_count;
806 musb_write_fifo(hw_ep, load_count, buf);
Felipe Balbi550a7372008-07-24 12:27:36 +0300807 }
808
809 /* re-enable interrupt */
810 musb_writew(mbase, MUSB_INTRTXE, int_txe);
811
812 /* IN/receive */
813 } else {
814 u16 csr;
815
816 if (hw_ep->rx_reinit) {
817 musb_rx_reinit(musb, qh, hw_ep);
818
819 /* init new state: toggle and NYET, maybe DMA later */
820 if (usb_gettoggle(urb->dev, qh->epnum, 0))
821 csr = MUSB_RXCSR_H_WR_DATATOGGLE
822 | MUSB_RXCSR_H_DATATOGGLE;
823 else
824 csr = 0;
825 if (qh->type == USB_ENDPOINT_XFER_INT)
826 csr |= MUSB_RXCSR_DISNYET;
827
828 } else {
829 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
830
831 if (csr & (MUSB_RXCSR_RXPKTRDY
832 | MUSB_RXCSR_DMAENAB
833 | MUSB_RXCSR_H_REQPKT))
834 ERR("broken !rx_reinit, ep%d csr %04x\n",
835 hw_ep->epnum, csr);
836
837 /* scrub any stale state, leaving toggle alone */
838 csr &= MUSB_RXCSR_DISNYET;
839 }
840
841 /* kick things off */
842
843 if ((is_cppi_enabled() || tusb_dma_omap()) && dma_channel) {
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400844 /* Candidate for DMA */
845 dma_channel->actual_len = 0L;
846 qh->segsize = len;
Felipe Balbi550a7372008-07-24 12:27:36 +0300847
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400848 /* AUTOREQ is in a DMA register */
849 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
850 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +0300851
Sergei Shtylyovc51e36d2011-05-07 19:44:13 +0400852 /*
853 * Unless caller treats short RX transfers as
854 * errors, we dare not queue multiple transfers.
855 */
856 dma_ok = dma_controller->channel_program(dma_channel,
857 packet_sz, !(urb->transfer_flags &
858 URB_SHORT_NOT_OK),
859 urb->transfer_dma + offset,
860 qh->segsize);
861 if (!dma_ok) {
862 dma_controller->channel_release(dma_channel);
863 hw_ep->rx_channel = dma_channel = NULL;
864 } else
865 csr |= MUSB_RXCSR_DMAENAB;
Felipe Balbi550a7372008-07-24 12:27:36 +0300866 }
867
868 csr |= MUSB_RXCSR_H_REQPKT;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300869 dev_dbg(musb->controller, "RXCSR%d := %04x\n", epnum, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300870 musb_writew(hw_ep->regs, MUSB_RXCSR, csr);
871 csr = musb_readw(hw_ep->regs, MUSB_RXCSR);
872 }
873}
874
875
876/*
877 * Service the default endpoint (ep0) as host.
878 * Return true until it's time to start the status stage.
879 */
880static bool musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb)
881{
882 bool more = false;
883 u8 *fifo_dest = NULL;
884 u16 fifo_count = 0;
885 struct musb_hw_ep *hw_ep = musb->control_ep;
886 struct musb_qh *qh = hw_ep->in_qh;
887 struct usb_ctrlrequest *request;
888
889 switch (musb->ep0_stage) {
890 case MUSB_EP0_IN:
891 fifo_dest = urb->transfer_buffer + urb->actual_length;
Sergei Shtylyov3ecdb9a2009-02-21 15:31:23 -0800892 fifo_count = min_t(size_t, len, urb->transfer_buffer_length -
893 urb->actual_length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300894 if (fifo_count < len)
895 urb->status = -EOVERFLOW;
896
897 musb_read_fifo(hw_ep, fifo_count, fifo_dest);
898
899 urb->actual_length += fifo_count;
900 if (len < qh->maxpacket) {
901 /* always terminate on short read; it's
902 * rarely reported as an error.
903 */
904 } else if (urb->actual_length <
905 urb->transfer_buffer_length)
906 more = true;
907 break;
908 case MUSB_EP0_START:
909 request = (struct usb_ctrlrequest *) urb->setup_packet;
910
911 if (!request->wLength) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300912 dev_dbg(musb->controller, "start no-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300913 break;
914 } else if (request->bRequestType & USB_DIR_IN) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300915 dev_dbg(musb->controller, "start IN-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300916 musb->ep0_stage = MUSB_EP0_IN;
917 more = true;
918 break;
919 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300920 dev_dbg(musb->controller, "start OUT-DATA\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300921 musb->ep0_stage = MUSB_EP0_OUT;
922 more = true;
923 }
924 /* FALLTHROUGH */
925 case MUSB_EP0_OUT:
Sergei Shtylyov3ecdb9a2009-02-21 15:31:23 -0800926 fifo_count = min_t(size_t, qh->maxpacket,
927 urb->transfer_buffer_length -
928 urb->actual_length);
Felipe Balbi550a7372008-07-24 12:27:36 +0300929 if (fifo_count) {
930 fifo_dest = (u8 *) (urb->transfer_buffer
931 + urb->actual_length);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300932 dev_dbg(musb->controller, "Sending %d byte%s to ep0 fifo %p\n",
David Brownellbb1c9ef2008-11-24 13:06:50 +0200933 fifo_count,
934 (fifo_count == 1) ? "" : "s",
935 fifo_dest);
Felipe Balbi550a7372008-07-24 12:27:36 +0300936 musb_write_fifo(hw_ep, fifo_count, fifo_dest);
937
938 urb->actual_length += fifo_count;
939 more = true;
940 }
941 break;
942 default:
943 ERR("bogus ep0 stage %d\n", musb->ep0_stage);
944 break;
945 }
946
947 return more;
948}
949
950/*
951 * Handle default endpoint interrupt as host. Only called in IRQ time
David Brownellc767c1c2008-09-11 11:53:23 +0300952 * from musb_interrupt().
Felipe Balbi550a7372008-07-24 12:27:36 +0300953 *
954 * called with controller irqlocked
955 */
956irqreturn_t musb_h_ep0_irq(struct musb *musb)
957{
958 struct urb *urb;
959 u16 csr, len;
960 int status = 0;
961 void __iomem *mbase = musb->mregs;
962 struct musb_hw_ep *hw_ep = musb->control_ep;
963 void __iomem *epio = hw_ep->regs;
964 struct musb_qh *qh = hw_ep->in_qh;
965 bool complete = false;
966 irqreturn_t retval = IRQ_NONE;
967
968 /* ep0 only has one queue, "in" */
969 urb = next_urb(qh);
970
971 musb_ep_select(mbase, 0);
972 csr = musb_readw(epio, MUSB_CSR0);
973 len = (csr & MUSB_CSR0_RXPKTRDY)
974 ? musb_readb(epio, MUSB_COUNT0)
975 : 0;
976
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300977 dev_dbg(musb->controller, "<== csr0 %04x, qh %p, count %d, urb %p, stage %d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300978 csr, qh, len, urb, musb->ep0_stage);
979
980 /* if we just did status stage, we are done */
981 if (MUSB_EP0_STATUS == musb->ep0_stage) {
982 retval = IRQ_HANDLED;
983 complete = true;
984 }
985
986 /* prepare status */
987 if (csr & MUSB_CSR0_H_RXSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300988 dev_dbg(musb->controller, "STALLING ENDPOINT\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300989 status = -EPIPE;
990
991 } else if (csr & MUSB_CSR0_H_ERROR) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300992 dev_dbg(musb->controller, "no response, csr0 %04x\n", csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300993 status = -EPROTO;
994
995 } else if (csr & MUSB_CSR0_H_NAKTIMEOUT) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300996 dev_dbg(musb->controller, "control NAK timeout\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300997
998 /* NOTE: this code path would be a good place to PAUSE a
999 * control transfer, if another one is queued, so that
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001000 * ep0 is more likely to stay busy. That's already done
1001 * for bulk RX transfers.
Felipe Balbi550a7372008-07-24 12:27:36 +03001002 *
1003 * if (qh->ring.next != &musb->control), then
1004 * we have a candidate... NAKing is *NOT* an error
1005 */
1006 musb_writew(epio, MUSB_CSR0, 0);
1007 retval = IRQ_HANDLED;
1008 }
1009
1010 if (status) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001011 dev_dbg(musb->controller, "aborting\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001012 retval = IRQ_HANDLED;
1013 if (urb)
1014 urb->status = status;
1015 complete = true;
1016
1017 /* use the proper sequence to abort the transfer */
1018 if (csr & MUSB_CSR0_H_REQPKT) {
1019 csr &= ~MUSB_CSR0_H_REQPKT;
1020 musb_writew(epio, MUSB_CSR0, csr);
1021 csr &= ~MUSB_CSR0_H_NAKTIMEOUT;
1022 musb_writew(epio, MUSB_CSR0, csr);
1023 } else {
David Brownell78322c12009-03-26 17:38:30 -07001024 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03001025 }
1026
1027 musb_writeb(epio, MUSB_NAKLIMIT0, 0);
1028
1029 /* clear it */
1030 musb_writew(epio, MUSB_CSR0, 0);
1031 }
1032
1033 if (unlikely(!urb)) {
1034 /* stop endpoint since we have no place for its data, this
1035 * SHOULD NEVER HAPPEN! */
1036 ERR("no URB for end 0\n");
1037
David Brownell78322c12009-03-26 17:38:30 -07001038 musb_h_ep0_flush_fifo(hw_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03001039 goto done;
1040 }
1041
1042 if (!complete) {
1043 /* call common logic and prepare response */
1044 if (musb_h_ep0_continue(musb, len, urb)) {
1045 /* more packets required */
1046 csr = (MUSB_EP0_IN == musb->ep0_stage)
1047 ? MUSB_CSR0_H_REQPKT : MUSB_CSR0_TXPKTRDY;
1048 } else {
1049 /* data transfer complete; perform status phase */
1050 if (usb_pipeout(urb->pipe)
1051 || !urb->transfer_buffer_length)
1052 csr = MUSB_CSR0_H_STATUSPKT
1053 | MUSB_CSR0_H_REQPKT;
1054 else
1055 csr = MUSB_CSR0_H_STATUSPKT
1056 | MUSB_CSR0_TXPKTRDY;
1057
1058 /* flag status stage */
1059 musb->ep0_stage = MUSB_EP0_STATUS;
1060
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001061 dev_dbg(musb->controller, "ep0 STATUS, csr %04x\n", csr);
Felipe Balbi550a7372008-07-24 12:27:36 +03001062
1063 }
1064 musb_writew(epio, MUSB_CSR0, csr);
1065 retval = IRQ_HANDLED;
1066 } else
1067 musb->ep0_stage = MUSB_EP0_IDLE;
1068
1069 /* call completion handler if done */
1070 if (complete)
1071 musb_advance_schedule(musb, urb, hw_ep, 1);
1072done:
1073 return retval;
1074}
1075
1076
1077#ifdef CONFIG_USB_INVENTRA_DMA
1078
1079/* Host side TX (OUT) using Mentor DMA works as follows:
1080 submit_urb ->
1081 - if queue was empty, Program Endpoint
1082 - ... which starts DMA to fifo in mode 1 or 0
1083
1084 DMA Isr (transfer complete) -> TxAvail()
1085 - Stop DMA (~DmaEnab) (<--- Alert ... currently happens
1086 only in musb_cleanup_urb)
1087 - TxPktRdy has to be set in mode 0 or for
1088 short packets in mode 1.
1089*/
1090
1091#endif
1092
1093/* Service a Tx-Available or dma completion irq for the endpoint */
1094void musb_host_tx(struct musb *musb, u8 epnum)
1095{
1096 int pipe;
1097 bool done = false;
1098 u16 tx_csr;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001099 size_t length = 0;
1100 size_t offset = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001101 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1102 void __iomem *epio = hw_ep->regs;
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -07001103 struct musb_qh *qh = hw_ep->out_qh;
1104 struct urb *urb = next_urb(qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03001105 u32 status = 0;
1106 void __iomem *mbase = musb->mregs;
1107 struct dma_channel *dma;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001108 bool transfer_pending = false;
Felipe Balbi550a7372008-07-24 12:27:36 +03001109
Felipe Balbi550a7372008-07-24 12:27:36 +03001110 musb_ep_select(mbase, epnum);
1111 tx_csr = musb_readw(epio, MUSB_TXCSR);
1112
1113 /* with CPPI, DMA sometimes triggers "extra" irqs */
1114 if (!urb) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001115 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001116 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001117 }
1118
1119 pipe = urb->pipe;
1120 dma = is_dma_capable() ? hw_ep->tx_channel : NULL;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001121 dev_dbg(musb->controller, "OUT/TX%d end, csr %04x%s\n", epnum, tx_csr,
Felipe Balbi550a7372008-07-24 12:27:36 +03001122 dma ? ", dma" : "");
1123
1124 /* check for errors */
1125 if (tx_csr & MUSB_TXCSR_H_RXSTALL) {
1126 /* dma was disabled, fifo flushed */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001127 dev_dbg(musb->controller, "TX end %d stall\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001128
1129 /* stall; record URB status */
1130 status = -EPIPE;
1131
1132 } else if (tx_csr & MUSB_TXCSR_H_ERROR) {
1133 /* (NON-ISO) dma was disabled, fifo flushed */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001134 dev_dbg(musb->controller, "TX 3strikes on ep=%d\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001135
1136 status = -ETIMEDOUT;
1137
1138 } else if (tx_csr & MUSB_TXCSR_H_NAKTIMEOUT) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001139 dev_dbg(musb->controller, "TX end=%d device not responding\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001140
1141 /* NOTE: this code path would be a good place to PAUSE a
1142 * transfer, if there's some other (nonperiodic) tx urb
1143 * that could use this fifo. (dma complicates it...)
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001144 * That's already done for bulk RX transfers.
Felipe Balbi550a7372008-07-24 12:27:36 +03001145 *
1146 * if (bulk && qh->ring.next != &musb->out_bulk), then
1147 * we have a candidate... NAKing is *NOT* an error
1148 */
1149 musb_ep_select(mbase, epnum);
1150 musb_writew(epio, MUSB_TXCSR,
1151 MUSB_TXCSR_H_WZC_BITS
1152 | MUSB_TXCSR_TXPKTRDY);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001153 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001154 }
1155
1156 if (status) {
1157 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1158 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1159 (void) musb->dma_controller->channel_abort(dma);
1160 }
1161
1162 /* do the proper sequence to abort the transfer in the
1163 * usb core; the dma engine should already be stopped.
1164 */
1165 musb_h_tx_flush_fifo(hw_ep);
1166 tx_csr &= ~(MUSB_TXCSR_AUTOSET
1167 | MUSB_TXCSR_DMAENAB
1168 | MUSB_TXCSR_H_ERROR
1169 | MUSB_TXCSR_H_RXSTALL
1170 | MUSB_TXCSR_H_NAKTIMEOUT
1171 );
1172
1173 musb_ep_select(mbase, epnum);
1174 musb_writew(epio, MUSB_TXCSR, tx_csr);
1175 /* REVISIT may need to clear FLUSHFIFO ... */
1176 musb_writew(epio, MUSB_TXCSR, tx_csr);
1177 musb_writeb(epio, MUSB_TXINTERVAL, 0);
1178
1179 done = true;
1180 }
1181
1182 /* second cppi case */
1183 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001184 dev_dbg(musb->controller, "extra TX%d ready, csr %04x\n", epnum, tx_csr);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001185 return;
Felipe Balbi550a7372008-07-24 12:27:36 +03001186 }
1187
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -07001188 if (is_dma_capable() && dma && !status) {
1189 /*
1190 * DMA has completed. But if we're using DMA mode 1 (multi
1191 * packet DMA), we need a terminal TXPKTRDY interrupt before
1192 * we can consider this transfer completed, lest we trash
1193 * its last packet when writing the next URB's data. So we
1194 * switch back to mode 0 to get that interrupt; we'll come
1195 * back here once it happens.
1196 */
1197 if (tx_csr & MUSB_TXCSR_DMAMODE) {
1198 /*
1199 * We shouldn't clear DMAMODE with DMAENAB set; so
1200 * clear them in a safe order. That should be OK
1201 * once TXPKTRDY has been set (and I've never seen
1202 * it being 0 at this moment -- DMA interrupt latency
1203 * is significant) but if it hasn't been then we have
1204 * no choice but to stop being polite and ignore the
1205 * programmer's guide... :-)
1206 *
1207 * Note that we must write TXCSR with TXPKTRDY cleared
1208 * in order not to re-trigger the packet send (this bit
1209 * can't be cleared by CPU), and there's another caveat:
1210 * TXPKTRDY may be set shortly and then cleared in the
1211 * double-buffered FIFO mode, so we do an extra TXCSR
1212 * read for debouncing...
1213 */
1214 tx_csr &= musb_readw(epio, MUSB_TXCSR);
1215 if (tx_csr & MUSB_TXCSR_TXPKTRDY) {
1216 tx_csr &= ~(MUSB_TXCSR_DMAENAB |
1217 MUSB_TXCSR_TXPKTRDY);
1218 musb_writew(epio, MUSB_TXCSR,
1219 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1220 }
1221 tx_csr &= ~(MUSB_TXCSR_DMAMODE |
1222 MUSB_TXCSR_TXPKTRDY);
1223 musb_writew(epio, MUSB_TXCSR,
1224 tx_csr | MUSB_TXCSR_H_WZC_BITS);
1225
1226 /*
1227 * There is no guarantee that we'll get an interrupt
1228 * after clearing DMAMODE as we might have done this
1229 * too late (after TXPKTRDY was cleared by controller).
1230 * Re-read TXCSR as we have spoiled its previous value.
1231 */
1232 tx_csr = musb_readw(epio, MUSB_TXCSR);
1233 }
1234
1235 /*
1236 * We may get here from a DMA completion or TXPKTRDY interrupt.
1237 * In any case, we must check the FIFO status here and bail out
1238 * only if the FIFO still has data -- that should prevent the
1239 * "missed" TXPKTRDY interrupts and deal with double-buffered
1240 * FIFO mode too...
1241 */
1242 if (tx_csr & (MUSB_TXCSR_FIFONOTEMPTY | MUSB_TXCSR_TXPKTRDY)) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001243 dev_dbg(musb->controller, "DMA complete but packet still in FIFO, "
Sergei Shtylyovc7bbc052009-03-26 18:26:40 -07001244 "CSR %04x\n", tx_csr);
1245 return;
1246 }
1247 }
1248
Felipe Balbi550a7372008-07-24 12:27:36 +03001249 if (!status || dma || usb_pipeisoc(pipe)) {
1250 if (dma)
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001251 length = dma->actual_len;
Felipe Balbi550a7372008-07-24 12:27:36 +03001252 else
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001253 length = qh->segsize;
1254 qh->offset += length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001255
1256 if (usb_pipeisoc(pipe)) {
1257 struct usb_iso_packet_descriptor *d;
1258
1259 d = urb->iso_frame_desc + qh->iso_idx;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001260 d->actual_length = length;
1261 d->status = status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001262 if (++qh->iso_idx >= urb->number_of_packets) {
1263 done = true;
1264 } else {
1265 d++;
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001266 offset = d->offset;
1267 length = d->length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001268 }
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001269 } else if (dma && urb->transfer_buffer_length == qh->offset) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001270 done = true;
1271 } else {
1272 /* see if we need to send more data, or ZLP */
1273 if (qh->segsize < qh->maxpacket)
1274 done = true;
1275 else if (qh->offset == urb->transfer_buffer_length
1276 && !(urb->transfer_flags
1277 & URB_ZERO_PACKET))
1278 done = true;
1279 if (!done) {
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001280 offset = qh->offset;
1281 length = urb->transfer_buffer_length - offset;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001282 transfer_pending = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001283 }
1284 }
1285 }
1286
1287 /* urb->status != -EINPROGRESS means request has been faulted,
1288 * so we must abort this transfer after cleanup
1289 */
1290 if (urb->status != -EINPROGRESS) {
1291 done = true;
1292 if (status == 0)
1293 status = urb->status;
1294 }
1295
1296 if (done) {
1297 /* set status */
1298 urb->status = status;
1299 urb->actual_length = qh->offset;
1300 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_OUT);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001301 return;
T. S., Anil Kumarf8afbf7f2010-09-24 13:44:09 +03001302 } else if ((usb_pipeisoc(pipe) || transfer_pending) && dma) {
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001303 if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb,
Ajay Kumar Guptadfeffa52009-11-17 15:22:55 +05301304 offset, length)) {
1305 if (is_cppi_enabled() || tusb_dma_omap())
1306 musb_h_tx_dma_start(hw_ep);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001307 return;
Ajay Kumar Guptadfeffa52009-11-17 15:22:55 +05301308 }
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001309 } else if (tx_csr & MUSB_TXCSR_DMAENAB) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001310 dev_dbg(musb->controller, "not complete, but DMA enabled?\n");
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001311 return;
1312 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001313
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001314 /*
1315 * PIO: start next packet in this URB.
1316 *
1317 * REVISIT: some docs say that when hw_ep->tx_double_buffered,
1318 * (and presumably, FIFO is not half-full) we should write *two*
1319 * packets before updating TXCSR; other docs disagree...
1320 */
1321 if (length > qh->maxpacket)
1322 length = qh->maxpacket;
Maulik Mankad496dda72010-09-24 13:44:06 +03001323 /* Unmap the buffer so that CPU can use it */
Robert Morellc8cf2032011-01-26 19:06:47 -08001324 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001325 musb_write_fifo(hw_ep, length, urb->transfer_buffer + offset);
1326 qh->segsize = length;
Felipe Balbi550a7372008-07-24 12:27:36 +03001327
Sergei Shtylyov6b6e9712009-03-26 18:29:19 -07001328 musb_ep_select(mbase, epnum);
1329 musb_writew(epio, MUSB_TXCSR,
1330 MUSB_TXCSR_H_WZC_BITS | MUSB_TXCSR_TXPKTRDY);
Felipe Balbi550a7372008-07-24 12:27:36 +03001331}
1332
1333
1334#ifdef CONFIG_USB_INVENTRA_DMA
1335
1336/* Host side RX (IN) using Mentor DMA works as follows:
1337 submit_urb ->
1338 - if queue was empty, ProgramEndpoint
1339 - first IN token is sent out (by setting ReqPkt)
1340 LinuxIsr -> RxReady()
1341 /\ => first packet is received
1342 | - Set in mode 0 (DmaEnab, ~ReqPkt)
1343 | -> DMA Isr (transfer complete) -> RxReady()
1344 | - Ack receive (~RxPktRdy), turn off DMA (~DmaEnab)
1345 | - if urb not complete, send next IN token (ReqPkt)
1346 | | else complete urb.
1347 | |
1348 ---------------------------
1349 *
1350 * Nuances of mode 1:
1351 * For short packets, no ack (+RxPktRdy) is sent automatically
1352 * (even if AutoClear is ON)
1353 * For full packets, ack (~RxPktRdy) and next IN token (+ReqPkt) is sent
1354 * automatically => major problem, as collecting the next packet becomes
1355 * difficult. Hence mode 1 is not used.
1356 *
1357 * REVISIT
1358 * All we care about at this driver level is that
1359 * (a) all URBs terminate with REQPKT cleared and fifo(s) empty;
1360 * (b) termination conditions are: short RX, or buffer full;
1361 * (c) fault modes include
1362 * - iff URB_SHORT_NOT_OK, short RX status is -EREMOTEIO.
1363 * (and that endpoint's dma queue stops immediately)
1364 * - overflow (full, PLUS more bytes in the terminal packet)
1365 *
1366 * So for example, usb-storage sets URB_SHORT_NOT_OK, and would
1367 * thus be a great candidate for using mode 1 ... for all but the
1368 * last packet of one URB's transfer.
1369 */
1370
1371#endif
1372
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001373/* Schedule next QH from musb->in_bulk and move the current qh to
1374 * the end; avoids starvation for other endpoints.
1375 */
1376static void musb_bulk_rx_nak_timeout(struct musb *musb, struct musb_hw_ep *ep)
1377{
1378 struct dma_channel *dma;
1379 struct urb *urb;
1380 void __iomem *mbase = musb->mregs;
1381 void __iomem *epio = ep->regs;
1382 struct musb_qh *cur_qh, *next_qh;
1383 u16 rx_csr;
1384
1385 musb_ep_select(mbase, ep->epnum);
1386 dma = is_dma_capable() ? ep->rx_channel : NULL;
1387
1388 /* clear nak timeout bit */
1389 rx_csr = musb_readw(epio, MUSB_RXCSR);
1390 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1391 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1392 musb_writew(epio, MUSB_RXCSR, rx_csr);
1393
1394 cur_qh = first_qh(&musb->in_bulk);
1395 if (cur_qh) {
1396 urb = next_urb(cur_qh);
1397 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1398 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1399 musb->dma_controller->channel_abort(dma);
1400 urb->actual_length += dma->actual_len;
1401 dma->actual_len = 0L;
1402 }
Sergei Shtylyov846099a2009-03-27 12:54:21 -07001403 musb_save_toggle(cur_qh, 1, urb);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001404
1405 /* move cur_qh to end of queue */
1406 list_move_tail(&cur_qh->ring, &musb->in_bulk);
1407
1408 /* get the next qh from musb->in_bulk */
1409 next_qh = first_qh(&musb->in_bulk);
1410
1411 /* set rx_reinit and schedule the next qh */
1412 ep->rx_reinit = 1;
1413 musb_start_urb(musb, 1, next_qh);
1414 }
1415}
1416
Felipe Balbi550a7372008-07-24 12:27:36 +03001417/*
1418 * Service an RX interrupt for the given IN endpoint; docs cover bulk, iso,
1419 * and high-bandwidth IN transfer cases.
1420 */
1421void musb_host_rx(struct musb *musb, u8 epnum)
1422{
1423 struct urb *urb;
1424 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1425 void __iomem *epio = hw_ep->regs;
1426 struct musb_qh *qh = hw_ep->in_qh;
1427 size_t xfer_len;
1428 void __iomem *mbase = musb->mregs;
1429 int pipe;
1430 u16 rx_csr, val;
1431 bool iso_err = false;
1432 bool done = false;
1433 u32 status;
1434 struct dma_channel *dma;
1435
1436 musb_ep_select(mbase, epnum);
1437
1438 urb = next_urb(qh);
1439 dma = is_dma_capable() ? hw_ep->rx_channel : NULL;
1440 status = 0;
1441 xfer_len = 0;
1442
1443 rx_csr = musb_readw(epio, MUSB_RXCSR);
1444 val = rx_csr;
1445
1446 if (unlikely(!urb)) {
1447 /* REVISIT -- THIS SHOULD NEVER HAPPEN ... but, at least
1448 * usbtest #11 (unlinks) triggers it regularly, sometimes
1449 * with fifo full. (Only with DMA??)
1450 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001451 dev_dbg(musb->controller, "BOGUS RX%d ready, csr %04x, count %d\n", epnum, val,
Felipe Balbi550a7372008-07-24 12:27:36 +03001452 musb_readw(epio, MUSB_RXCOUNT));
1453 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1454 return;
1455 }
1456
1457 pipe = urb->pipe;
1458
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001459 dev_dbg(musb->controller, "<== hw %d rxcsr %04x, urb actual %d (+dma %zu)\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001460 epnum, rx_csr, urb->actual_length,
1461 dma ? dma->actual_len : 0);
1462
1463 /* check for errors, concurrent stall & unlink is not really
1464 * handled yet! */
1465 if (rx_csr & MUSB_RXCSR_H_RXSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001466 dev_dbg(musb->controller, "RX end %d STALL\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001467
1468 /* stall; record URB status */
1469 status = -EPIPE;
1470
1471 } else if (rx_csr & MUSB_RXCSR_H_ERROR) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001472 dev_dbg(musb->controller, "end %d RX proto error\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001473
1474 status = -EPROTO;
1475 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1476
1477 } else if (rx_csr & MUSB_RXCSR_DATAERROR) {
1478
1479 if (USB_ENDPOINT_XFER_ISOC != qh->type) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001480 dev_dbg(musb->controller, "RX end %d NAK timeout\n", epnum);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001481
1482 /* NOTE: NAKing is *NOT* an error, so we want to
1483 * continue. Except ... if there's a request for
1484 * another QH, use that instead of starving it.
1485 *
1486 * Devices like Ethernet and serial adapters keep
1487 * reads posted at all times, which will starve
1488 * other devices without this logic.
1489 */
1490 if (usb_pipebulk(urb->pipe)
1491 && qh->mux == 1
1492 && !list_is_singular(&musb->in_bulk)) {
1493 musb_bulk_rx_nak_timeout(musb, hw_ep);
1494 return;
1495 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001496 musb_ep_select(mbase, epnum);
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001497 rx_csr |= MUSB_RXCSR_H_WZC_BITS;
1498 rx_csr &= ~MUSB_RXCSR_DATAERROR;
1499 musb_writew(epio, MUSB_RXCSR, rx_csr);
Felipe Balbi550a7372008-07-24 12:27:36 +03001500
1501 goto finish;
1502 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001503 dev_dbg(musb->controller, "RX end %d ISO data error\n", epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001504 /* packet error reported later */
1505 iso_err = true;
1506 }
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001507 } else if (rx_csr & MUSB_RXCSR_INCOMPRX) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001508 dev_dbg(musb->controller, "end %d high bandwidth incomplete ISO packet RX\n",
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001509 epnum);
1510 status = -EPROTO;
Felipe Balbi550a7372008-07-24 12:27:36 +03001511 }
1512
1513 /* faults abort the transfer */
1514 if (status) {
1515 /* clean up dma and collect transfer count */
1516 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1517 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1518 (void) musb->dma_controller->channel_abort(dma);
1519 xfer_len = dma->actual_len;
1520 }
1521 musb_h_flush_rxfifo(hw_ep, MUSB_RXCSR_CLRDATATOG);
1522 musb_writeb(epio, MUSB_RXINTERVAL, 0);
1523 done = true;
1524 goto finish;
1525 }
1526
1527 if (unlikely(dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY)) {
1528 /* SHOULD NEVER HAPPEN ... but at least DaVinci has done it */
1529 ERR("RX%d dma busy, csr %04x\n", epnum, rx_csr);
1530 goto finish;
1531 }
1532
1533 /* thorough shutdown for now ... given more precise fault handling
1534 * and better queueing support, we might keep a DMA pipeline going
1535 * while processing this irq for earlier completions.
1536 */
1537
1538 /* FIXME this is _way_ too much in-line logic for Mentor DMA */
1539
1540#ifndef CONFIG_USB_INVENTRA_DMA
1541 if (rx_csr & MUSB_RXCSR_H_REQPKT) {
1542 /* REVISIT this happened for a while on some short reads...
1543 * the cleanup still needs investigation... looks bad...
1544 * and also duplicates dma cleanup code above ... plus,
1545 * shouldn't this be the "half full" double buffer case?
1546 */
1547 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
1548 dma->status = MUSB_DMA_STATUS_CORE_ABORT;
1549 (void) musb->dma_controller->channel_abort(dma);
1550 xfer_len = dma->actual_len;
1551 done = true;
1552 }
1553
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001554 dev_dbg(musb->controller, "RXCSR%d %04x, reqpkt, len %zu%s\n", epnum, rx_csr,
Felipe Balbi550a7372008-07-24 12:27:36 +03001555 xfer_len, dma ? ", dma" : "");
1556 rx_csr &= ~MUSB_RXCSR_H_REQPKT;
1557
1558 musb_ep_select(mbase, epnum);
1559 musb_writew(epio, MUSB_RXCSR,
1560 MUSB_RXCSR_H_WZC_BITS | rx_csr);
1561 }
1562#endif
1563 if (dma && (rx_csr & MUSB_RXCSR_DMAENAB)) {
1564 xfer_len = dma->actual_len;
1565
1566 val &= ~(MUSB_RXCSR_DMAENAB
1567 | MUSB_RXCSR_H_AUTOREQ
1568 | MUSB_RXCSR_AUTOCLEAR
1569 | MUSB_RXCSR_RXPKTRDY);
1570 musb_writew(hw_ep->regs, MUSB_RXCSR, val);
1571
1572#ifdef CONFIG_USB_INVENTRA_DMA
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001573 if (usb_pipeisoc(pipe)) {
1574 struct usb_iso_packet_descriptor *d;
1575
1576 d = urb->iso_frame_desc + qh->iso_idx;
1577 d->actual_length = xfer_len;
1578
1579 /* even if there was an error, we did the dma
1580 * for iso_frame_desc->length
1581 */
Márton Németh72887c82011-05-30 20:45:42 +02001582 if (d->status != -EILSEQ && d->status != -EOVERFLOW)
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001583 d->status = 0;
1584
1585 if (++qh->iso_idx >= urb->number_of_packets)
1586 done = true;
1587 else
1588 done = false;
1589
1590 } else {
Felipe Balbi550a7372008-07-24 12:27:36 +03001591 /* done if urb buffer is full or short packet is recd */
1592 done = (urb->actual_length + xfer_len >=
1593 urb->transfer_buffer_length
1594 || dma->actual_len < qh->maxpacket);
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001595 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001596
1597 /* send IN token for next packet, without AUTOREQ */
1598 if (!done) {
1599 val |= MUSB_RXCSR_H_REQPKT;
1600 musb_writew(epio, MUSB_RXCSR,
1601 MUSB_RXCSR_H_WZC_BITS | val);
1602 }
1603
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001604 dev_dbg(musb->controller, "ep %d dma %s, rxcsr %04x, rxcount %d\n", epnum,
Felipe Balbi550a7372008-07-24 12:27:36 +03001605 done ? "off" : "reset",
1606 musb_readw(epio, MUSB_RXCSR),
1607 musb_readw(epio, MUSB_RXCOUNT));
1608#else
1609 done = true;
1610#endif
1611 } else if (urb->status == -EINPROGRESS) {
1612 /* if no errors, be sure a packet is ready for unloading */
1613 if (unlikely(!(rx_csr & MUSB_RXCSR_RXPKTRDY))) {
1614 status = -EPROTO;
1615 ERR("Rx interrupt with no errors or packet!\n");
1616
1617 /* FIXME this is another "SHOULD NEVER HAPPEN" */
1618
1619/* SCRUB (RX) */
1620 /* do the proper sequence to abort the transfer */
1621 musb_ep_select(mbase, epnum);
1622 val &= ~MUSB_RXCSR_H_REQPKT;
1623 musb_writew(epio, MUSB_RXCSR, val);
1624 goto finish;
1625 }
1626
1627 /* we are expecting IN packets */
1628#ifdef CONFIG_USB_INVENTRA_DMA
1629 if (dma) {
1630 struct dma_controller *c;
1631 u16 rx_count;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001632 int ret, length;
1633 dma_addr_t buf;
Felipe Balbi550a7372008-07-24 12:27:36 +03001634
1635 rx_count = musb_readw(epio, MUSB_RXCOUNT);
1636
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001637 dev_dbg(musb->controller, "RX%d count %d, buffer 0x%x len %d/%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001638 epnum, rx_count,
1639 urb->transfer_dma
1640 + urb->actual_length,
1641 qh->offset,
1642 urb->transfer_buffer_length);
1643
1644 c = musb->dma_controller;
1645
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001646 if (usb_pipeisoc(pipe)) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001647 int d_status = 0;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001648 struct usb_iso_packet_descriptor *d;
1649
1650 d = urb->iso_frame_desc + qh->iso_idx;
1651
1652 if (iso_err) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001653 d_status = -EILSEQ;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001654 urb->error_count++;
1655 }
1656 if (rx_count > d->length) {
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001657 if (d_status == 0) {
1658 d_status = -EOVERFLOW;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001659 urb->error_count++;
1660 }
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001661 dev_dbg(musb->controller, "** OVERFLOW %d into %d\n",\
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001662 rx_count, d->length);
1663
1664 length = d->length;
1665 } else
1666 length = rx_count;
Felipe Balbi8b4959d2009-12-04 15:47:47 +02001667 d->status = d_status;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001668 buf = urb->transfer_dma + d->offset;
1669 } else {
1670 length = rx_count;
1671 buf = urb->transfer_dma +
1672 urb->actual_length;
1673 }
1674
Felipe Balbi550a7372008-07-24 12:27:36 +03001675 dma->desired_mode = 0;
1676#ifdef USE_MODE1
1677 /* because of the issue below, mode 1 will
1678 * only rarely behave with correct semantics.
1679 */
1680 if ((urb->transfer_flags &
1681 URB_SHORT_NOT_OK)
1682 && (urb->transfer_buffer_length -
1683 urb->actual_length)
1684 > qh->maxpacket)
1685 dma->desired_mode = 1;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001686 if (rx_count < hw_ep->max_packet_sz_rx) {
1687 length = rx_count;
Sonic Zhangae926972010-03-08 11:26:01 -05001688 dma->desired_mode = 0;
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001689 } else {
1690 length = urb->transfer_buffer_length;
1691 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001692#endif
1693
1694/* Disadvantage of using mode 1:
1695 * It's basically usable only for mass storage class; essentially all
1696 * other protocols also terminate transfers on short packets.
1697 *
1698 * Details:
1699 * An extra IN token is sent at the end of the transfer (due to AUTOREQ)
1700 * If you try to use mode 1 for (transfer_buffer_length - 512), and try
1701 * to use the extra IN token to grab the last packet using mode 0, then
1702 * the problem is that you cannot be sure when the device will send the
1703 * last packet and RxPktRdy set. Sometimes the packet is recd too soon
1704 * such that it gets lost when RxCSR is re-set at the end of the mode 1
1705 * transfer, while sometimes it is recd just a little late so that if you
1706 * try to configure for mode 0 soon after the mode 1 transfer is
1707 * completed, you will find rxcount 0. Okay, so you might think why not
1708 * wait for an interrupt when the pkt is recd. Well, you won't get any!
1709 */
1710
1711 val = musb_readw(epio, MUSB_RXCSR);
1712 val &= ~MUSB_RXCSR_H_REQPKT;
1713
1714 if (dma->desired_mode == 0)
1715 val &= ~MUSB_RXCSR_H_AUTOREQ;
1716 else
1717 val |= MUSB_RXCSR_H_AUTOREQ;
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001718 val |= MUSB_RXCSR_DMAENAB;
1719
1720 /* autoclear shouldn't be set in high bandwidth */
1721 if (qh->hb_mult == 1)
1722 val |= MUSB_RXCSR_AUTOCLEAR;
Felipe Balbi550a7372008-07-24 12:27:36 +03001723
1724 musb_writew(epio, MUSB_RXCSR,
1725 MUSB_RXCSR_H_WZC_BITS | val);
1726
1727 /* REVISIT if when actual_length != 0,
1728 * transfer_buffer_length needs to be
1729 * adjusted first...
1730 */
1731 ret = c->channel_program(
1732 dma, qh->maxpacket,
Ajay Kumar Guptaf82a6892008-10-29 15:10:31 +02001733 dma->desired_mode, buf, length);
Felipe Balbi550a7372008-07-24 12:27:36 +03001734
1735 if (!ret) {
1736 c->channel_release(dma);
1737 hw_ep->rx_channel = NULL;
1738 dma = NULL;
Mantesh Sarasetti2ed91272012-06-01 14:54:30 +03001739 val = musb_readw(epio, MUSB_RXCSR);
1740 val &= ~(MUSB_RXCSR_DMAENAB
1741 | MUSB_RXCSR_H_AUTOREQ
1742 | MUSB_RXCSR_AUTOCLEAR);
1743 musb_writew(epio, MUSB_RXCSR, val);
Felipe Balbi550a7372008-07-24 12:27:36 +03001744 }
1745 }
1746#endif /* Mentor DMA */
1747
1748 if (!dma) {
Maulik Mankad496dda72010-09-24 13:44:06 +03001749 /* Unmap the buffer so that CPU can use it */
Robert Morellc8cf2032011-01-26 19:06:47 -08001750 usb_hcd_unmap_urb_for_dma(musb_to_hcd(musb), urb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001751 done = musb_host_packet_rx(musb, urb,
1752 epnum, iso_err);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001753 dev_dbg(musb->controller, "read %spacket\n", done ? "last " : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001754 }
1755 }
1756
Felipe Balbi550a7372008-07-24 12:27:36 +03001757finish:
1758 urb->actual_length += xfer_len;
1759 qh->offset += xfer_len;
1760 if (done) {
1761 if (urb->status == -EINPROGRESS)
1762 urb->status = status;
1763 musb_advance_schedule(musb, urb, hw_ep, USB_DIR_IN);
1764 }
1765}
1766
1767/* schedule nodes correspond to peripheral endpoints, like an OHCI QH.
1768 * the software schedule associates multiple such nodes with a given
1769 * host side hardware endpoint + direction; scheduling may activate
1770 * that hardware endpoint.
1771 */
1772static int musb_schedule(
1773 struct musb *musb,
1774 struct musb_qh *qh,
1775 int is_in)
1776{
1777 int idle;
1778 int best_diff;
1779 int best_end, epnum;
1780 struct musb_hw_ep *hw_ep = NULL;
1781 struct list_head *head = NULL;
Swaminathan S5274dab2009-12-28 13:40:37 +02001782 u8 toggle;
1783 u8 txtype;
1784 struct urb *urb = next_urb(qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03001785
1786 /* use fixed hardware for control and bulk */
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001787 if (qh->type == USB_ENDPOINT_XFER_CONTROL) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001788 head = &musb->control;
1789 hw_ep = musb->control_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001790 goto success;
1791 }
1792
1793 /* else, periodic transfers get muxed to other endpoints */
1794
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001795 /*
1796 * We know this qh hasn't been scheduled, so all we need to do
Felipe Balbi550a7372008-07-24 12:27:36 +03001797 * is choose which hardware endpoint to put it on ...
1798 *
1799 * REVISIT what we really want here is a regular schedule tree
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001800 * like e.g. OHCI uses.
Felipe Balbi550a7372008-07-24 12:27:36 +03001801 */
1802 best_diff = 4096;
1803 best_end = -1;
1804
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001805 for (epnum = 1, hw_ep = musb->endpoints + 1;
1806 epnum < musb->nr_endpoints;
1807 epnum++, hw_ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001808 int diff;
1809
Sergei Shtylyov3e5c6dc2009-03-27 12:55:16 -07001810 if (musb_ep_get_qh(hw_ep, is_in) != NULL)
Felipe Balbi550a7372008-07-24 12:27:36 +03001811 continue;
Sergei Shtylyov5d67a852009-02-24 15:23:34 -08001812
Felipe Balbi550a7372008-07-24 12:27:36 +03001813 if (hw_ep == musb->bulk_ep)
1814 continue;
1815
1816 if (is_in)
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001817 diff = hw_ep->max_packet_sz_rx;
Felipe Balbi550a7372008-07-24 12:27:36 +03001818 else
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001819 diff = hw_ep->max_packet_sz_tx;
1820 diff -= (qh->maxpacket * qh->hb_mult);
Felipe Balbi550a7372008-07-24 12:27:36 +03001821
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001822 if (diff >= 0 && best_diff > diff) {
Swaminathan S5274dab2009-12-28 13:40:37 +02001823
1824 /*
1825 * Mentor controller has a bug in that if we schedule
1826 * a BULK Tx transfer on an endpoint that had earlier
1827 * handled ISOC then the BULK transfer has to start on
1828 * a zero toggle. If the BULK transfer starts on a 1
1829 * toggle then this transfer will fail as the mentor
1830 * controller starts the Bulk transfer on a 0 toggle
1831 * irrespective of the programming of the toggle bits
1832 * in the TXCSR register. Check for this condition
1833 * while allocating the EP for a Tx Bulk transfer. If
1834 * so skip this EP.
1835 */
1836 hw_ep = musb->endpoints + epnum;
1837 toggle = usb_gettoggle(urb->dev, qh->epnum, !is_in);
1838 txtype = (musb_readb(hw_ep->regs, MUSB_TXTYPE)
1839 >> 4) & 0x3;
1840 if (!is_in && (qh->type == USB_ENDPOINT_XFER_BULK) &&
1841 toggle && (txtype == USB_ENDPOINT_XFER_ISOC))
1842 continue;
1843
Felipe Balbi550a7372008-07-24 12:27:36 +03001844 best_diff = diff;
1845 best_end = epnum;
1846 }
1847 }
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001848 /* use bulk reserved ep1 if no other ep is free */
Felipe Balbiaa5cbbe2008-11-17 09:08:16 +02001849 if (best_end < 0 && qh->type == USB_ENDPOINT_XFER_BULK) {
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001850 hw_ep = musb->bulk_ep;
1851 if (is_in)
1852 head = &musb->in_bulk;
1853 else
1854 head = &musb->out_bulk;
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08001855
1856 /* Enable bulk RX NAK timeout scheme when bulk requests are
1857 * multiplexed. This scheme doen't work in high speed to full
1858 * speed scenario as NAK interrupts are not coming from a
1859 * full speed device connected to a high speed device.
1860 * NAK timeout interval is 8 (128 uframe or 16ms) for HS and
1861 * 4 (8 frame or 8ms) for FS device.
1862 */
1863 if (is_in && qh->dev)
1864 qh->intv_reg =
1865 (USB_SPEED_HIGH == qh->dev->speed) ? 8 : 4;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001866 goto success;
1867 } else if (best_end < 0) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001868 return -ENOSPC;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001869 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001870
1871 idle = 1;
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001872 qh->mux = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001873 hw_ep = musb->endpoints + best_end;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001874 dev_dbg(musb->controller, "qh %p periodic slot %d\n", qh, best_end);
Felipe Balbi550a7372008-07-24 12:27:36 +03001875success:
Ajay Kumar Gupta23d15e02008-10-29 15:10:35 +02001876 if (head) {
1877 idle = list_empty(head);
1878 list_add_tail(&qh->ring, head);
1879 qh->mux = 1;
1880 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001881 qh->hw_ep = hw_ep;
1882 qh->hep->hcpriv = qh;
1883 if (idle)
1884 musb_start_urb(musb, is_in, qh);
1885 return 0;
1886}
1887
1888static int musb_urb_enqueue(
1889 struct usb_hcd *hcd,
1890 struct urb *urb,
1891 gfp_t mem_flags)
1892{
1893 unsigned long flags;
1894 struct musb *musb = hcd_to_musb(hcd);
1895 struct usb_host_endpoint *hep = urb->ep;
David Brownell74bb3502009-03-26 17:36:57 -07001896 struct musb_qh *qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03001897 struct usb_endpoint_descriptor *epd = &hep->desc;
1898 int ret;
1899 unsigned type_reg;
1900 unsigned interval;
1901
1902 /* host role must be active */
1903 if (!is_host_active(musb) || !musb->is_active)
1904 return -ENODEV;
1905
1906 spin_lock_irqsave(&musb->lock, flags);
1907 ret = usb_hcd_link_urb_to_ep(hcd, urb);
David Brownell74bb3502009-03-26 17:36:57 -07001908 qh = ret ? NULL : hep->hcpriv;
1909 if (qh)
1910 urb->hcpriv = qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03001911 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001912
1913 /* DMA mapping was already done, if needed, and this urb is on
David Brownell74bb3502009-03-26 17:36:57 -07001914 * hep->urb_list now ... so we're done, unless hep wasn't yet
1915 * scheduled onto a live qh.
Felipe Balbi550a7372008-07-24 12:27:36 +03001916 *
1917 * REVISIT best to keep hep->hcpriv valid until the endpoint gets
1918 * disabled, testing for empty qh->ring and avoiding qh setup costs
1919 * except for the first urb queued after a config change.
1920 */
David Brownell74bb3502009-03-26 17:36:57 -07001921 if (qh || ret)
1922 return ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001923
1924 /* Allocate and initialize qh, minimizing the work done each time
1925 * hw_ep gets reprogrammed, or with irqs blocked. Then schedule it.
1926 *
1927 * REVISIT consider a dedicated qh kmem_cache, so it's harder
1928 * for bugs in other kernel code to break this driver...
1929 */
1930 qh = kzalloc(sizeof *qh, mem_flags);
1931 if (!qh) {
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03001932 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001933 usb_hcd_unlink_urb_from_ep(hcd, urb);
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03001934 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03001935 return -ENOMEM;
1936 }
1937
1938 qh->hep = hep;
1939 qh->dev = urb->dev;
1940 INIT_LIST_HEAD(&qh->ring);
1941 qh->is_ready = 1;
1942
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001943 qh->maxpacket = usb_endpoint_maxp(epd);
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001944 qh->type = usb_endpoint_type(epd);
Felipe Balbi550a7372008-07-24 12:27:36 +03001945
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001946 /* Bits 11 & 12 of wMaxPacketSize encode high bandwidth multiplier.
1947 * Some musb cores don't support high bandwidth ISO transfers; and
1948 * we don't (yet!) support high bandwidth interrupt transfers.
1949 */
1950 qh->hb_mult = 1 + ((qh->maxpacket >> 11) & 0x03);
1951 if (qh->hb_mult > 1) {
1952 int ok = (qh->type == USB_ENDPOINT_XFER_ISOC);
1953
1954 if (ok)
1955 ok = (usb_pipein(urb->pipe) && musb->hb_iso_rx)
1956 || (usb_pipeout(urb->pipe) && musb->hb_iso_tx);
1957 if (!ok) {
1958 ret = -EMSGSIZE;
1959 goto done;
1960 }
1961 qh->maxpacket &= 0x7ff;
Felipe Balbi550a7372008-07-24 12:27:36 +03001962 }
1963
Julia Lawall96bcd092009-01-24 17:57:24 -08001964 qh->epnum = usb_endpoint_num(epd);
Felipe Balbi550a7372008-07-24 12:27:36 +03001965
1966 /* NOTE: urb->dev->devnum is wrong during SET_ADDRESS */
1967 qh->addr_reg = (u8) usb_pipedevice(urb->pipe);
1968
1969 /* precompute rxtype/txtype/type0 register */
1970 type_reg = (qh->type << 4) | qh->epnum;
1971 switch (urb->dev->speed) {
1972 case USB_SPEED_LOW:
1973 type_reg |= 0xc0;
1974 break;
1975 case USB_SPEED_FULL:
1976 type_reg |= 0x80;
1977 break;
1978 default:
1979 type_reg |= 0x40;
1980 }
1981 qh->type_reg = type_reg;
1982
Sergei Shtylyov136733d2009-02-21 15:31:35 -08001983 /* Precompute RXINTERVAL/TXINTERVAL register */
Felipe Balbi550a7372008-07-24 12:27:36 +03001984 switch (qh->type) {
1985 case USB_ENDPOINT_XFER_INT:
Sergei Shtylyov136733d2009-02-21 15:31:35 -08001986 /*
1987 * Full/low speeds use the linear encoding,
1988 * high speed uses the logarithmic encoding.
1989 */
1990 if (urb->dev->speed <= USB_SPEED_FULL) {
1991 interval = max_t(u8, epd->bInterval, 1);
1992 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001993 }
1994 /* FALLTHROUGH */
1995 case USB_ENDPOINT_XFER_ISOC:
Sergei Shtylyov136733d2009-02-21 15:31:35 -08001996 /* ISO always uses logarithmic encoding */
1997 interval = min_t(u8, epd->bInterval, 16);
Felipe Balbi550a7372008-07-24 12:27:36 +03001998 break;
1999 default:
2000 /* REVISIT we actually want to use NAK limits, hinting to the
2001 * transfer scheduling logic to try some other qh, e.g. try
2002 * for 2 msec first:
2003 *
2004 * interval = (USB_SPEED_HIGH == urb->dev->speed) ? 16 : 2;
2005 *
2006 * The downside of disabling this is that transfer scheduling
2007 * gets VERY unfair for nonperiodic transfers; a misbehaving
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08002008 * peripheral could make that hurt. That's perfectly normal
2009 * for reads from network or serial adapters ... so we have
2010 * partial NAKlimit support for bulk RX.
Felipe Balbi550a7372008-07-24 12:27:36 +03002011 *
Ajay Kumar Gupta1e0320f2009-02-24 15:26:13 -08002012 * The upside of disabling it is simpler transfer scheduling.
Felipe Balbi550a7372008-07-24 12:27:36 +03002013 */
2014 interval = 0;
2015 }
2016 qh->intv_reg = interval;
2017
2018 /* precompute addressing for external hub/tt ports */
2019 if (musb->is_multipoint) {
2020 struct usb_device *parent = urb->dev->parent;
2021
2022 if (parent != hcd->self.root_hub) {
2023 qh->h_addr_reg = (u8) parent->devnum;
2024
2025 /* set up tt info if needed */
2026 if (urb->dev->tt) {
2027 qh->h_port_reg = (u8) urb->dev->ttport;
Ajay Kumar Guptaae5ad292008-09-11 11:53:20 +03002028 if (urb->dev->tt->hub)
2029 qh->h_addr_reg =
2030 (u8) urb->dev->tt->hub->devnum;
2031 if (urb->dev->tt->multi)
2032 qh->h_addr_reg |= 0x80;
Felipe Balbi550a7372008-07-24 12:27:36 +03002033 }
2034 }
2035 }
2036
2037 /* invariant: hep->hcpriv is null OR the qh that's already scheduled.
2038 * until we get real dma queues (with an entry for each urb/buffer),
2039 * we only have work to do in the former case.
2040 */
2041 spin_lock_irqsave(&musb->lock, flags);
2042 if (hep->hcpriv) {
2043 /* some concurrent activity submitted another urb to hep...
2044 * odd, rare, error prone, but legal.
2045 */
2046 kfree(qh);
Dan Carpenter714bc5e2010-03-25 13:14:27 +02002047 qh = NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002048 ret = 0;
2049 } else
2050 ret = musb_schedule(musb, qh,
2051 epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK);
2052
2053 if (ret == 0) {
2054 urb->hcpriv = qh;
2055 /* FIXME set urb->start_frame for iso/intr, it's tested in
2056 * musb_start_urb(), but otherwise only konicawc cares ...
2057 */
2058 }
2059 spin_unlock_irqrestore(&musb->lock, flags);
2060
2061done:
2062 if (ret != 0) {
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03002063 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03002064 usb_hcd_unlink_urb_from_ep(hcd, urb);
Ajay Kumar Gupta2492e672008-09-11 11:53:21 +03002065 spin_unlock_irqrestore(&musb->lock, flags);
Felipe Balbi550a7372008-07-24 12:27:36 +03002066 kfree(qh);
2067 }
2068 return ret;
2069}
2070
2071
2072/*
2073 * abort a transfer that's at the head of a hardware queue.
2074 * called with controller locked, irqs blocked
2075 * that hardware queue advances to the next transfer, unless prevented
2076 */
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002077static int musb_cleanup_urb(struct urb *urb, struct musb_qh *qh)
Felipe Balbi550a7372008-07-24 12:27:36 +03002078{
2079 struct musb_hw_ep *ep = qh->hw_ep;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002080 struct musb *musb = ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +03002081 void __iomem *epio = ep->regs;
2082 unsigned hw_end = ep->epnum;
2083 void __iomem *regs = ep->musb->mregs;
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002084 int is_in = usb_pipein(urb->pipe);
Felipe Balbi550a7372008-07-24 12:27:36 +03002085 int status = 0;
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002086 u16 csr;
Felipe Balbi550a7372008-07-24 12:27:36 +03002087
2088 musb_ep_select(regs, hw_end);
2089
2090 if (is_dma_capable()) {
2091 struct dma_channel *dma;
2092
2093 dma = is_in ? ep->rx_channel : ep->tx_channel;
2094 if (dma) {
2095 status = ep->musb->dma_controller->channel_abort(dma);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002096 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03002097 "abort %cX%d DMA for urb %p --> %d\n",
2098 is_in ? 'R' : 'T', ep->epnum,
2099 urb, status);
2100 urb->actual_length += dma->actual_len;
2101 }
2102 }
2103
2104 /* turn off DMA requests, discard state, stop polling ... */
Ajay Kumar Gupta692933b2012-03-14 17:33:35 +05302105 if (ep->epnum && is_in) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002106 /* giveback saves bulk toggle */
2107 csr = musb_h_flush_rxfifo(ep, 0);
2108
2109 /* REVISIT we still get an irq; should likely clear the
2110 * endpoint's irq status here to avoid bogus irqs.
2111 * clearing that status is platform-specific...
2112 */
David Brownell78322c12009-03-26 17:38:30 -07002113 } else if (ep->epnum) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002114 musb_h_tx_flush_fifo(ep);
2115 csr = musb_readw(epio, MUSB_TXCSR);
2116 csr &= ~(MUSB_TXCSR_AUTOSET
2117 | MUSB_TXCSR_DMAENAB
2118 | MUSB_TXCSR_H_RXSTALL
2119 | MUSB_TXCSR_H_NAKTIMEOUT
2120 | MUSB_TXCSR_H_ERROR
2121 | MUSB_TXCSR_TXPKTRDY);
2122 musb_writew(epio, MUSB_TXCSR, csr);
2123 /* REVISIT may need to clear FLUSHFIFO ... */
2124 musb_writew(epio, MUSB_TXCSR, csr);
2125 /* flush cpu writebuffer */
2126 csr = musb_readw(epio, MUSB_TXCSR);
David Brownell78322c12009-03-26 17:38:30 -07002127 } else {
2128 musb_h_ep0_flush_fifo(ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03002129 }
2130 if (status == 0)
2131 musb_advance_schedule(ep->musb, urb, ep, is_in);
2132 return status;
2133}
2134
2135static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
2136{
2137 struct musb *musb = hcd_to_musb(hcd);
2138 struct musb_qh *qh;
Felipe Balbi550a7372008-07-24 12:27:36 +03002139 unsigned long flags;
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002140 int is_in = usb_pipein(urb->pipe);
Felipe Balbi550a7372008-07-24 12:27:36 +03002141 int ret;
2142
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002143 dev_dbg(musb->controller, "urb=%p, dev%d ep%d%s\n", urb,
Felipe Balbi550a7372008-07-24 12:27:36 +03002144 usb_pipedevice(urb->pipe),
2145 usb_pipeendpoint(urb->pipe),
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002146 is_in ? "in" : "out");
Felipe Balbi550a7372008-07-24 12:27:36 +03002147
2148 spin_lock_irqsave(&musb->lock, flags);
2149 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
2150 if (ret)
2151 goto done;
2152
2153 qh = urb->hcpriv;
2154 if (!qh)
2155 goto done;
2156
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002157 /*
2158 * Any URB not actively programmed into endpoint hardware can be
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002159 * immediately given back; that's any URB not at the head of an
Felipe Balbi550a7372008-07-24 12:27:36 +03002160 * endpoint queue, unless someday we get real DMA queues. And even
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002161 * if it's at the head, it might not be known to the hardware...
Felipe Balbi550a7372008-07-24 12:27:36 +03002162 *
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002163 * Otherwise abort current transfer, pending DMA, etc.; urb->status
Felipe Balbi550a7372008-07-24 12:27:36 +03002164 * has already been updated. This is a synchronous abort; it'd be
2165 * OK to hold off until after some IRQ, though.
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002166 *
2167 * NOTE: qh is invalid unless !list_empty(&hep->urb_list)
Felipe Balbi550a7372008-07-24 12:27:36 +03002168 */
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002169 if (!qh->is_ready
2170 || urb->urb_list.prev != &qh->hep->urb_list
2171 || musb_ep_get_qh(qh->hw_ep, is_in) != qh) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002172 int ready = qh->is_ready;
2173
Felipe Balbi550a7372008-07-24 12:27:36 +03002174 qh->is_ready = 0;
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -07002175 musb_giveback(musb, urb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03002176 qh->is_ready = ready;
Sergei Shtylyova2fd8142009-02-21 15:30:45 -08002177
2178 /* If nothing else (usually musb_giveback) is using it
2179 * and its URB list has emptied, recycle this qh.
2180 */
2181 if (ready && list_empty(&qh->hep->urb_list)) {
2182 qh->hep->hcpriv = NULL;
2183 list_del(&qh->ring);
2184 kfree(qh);
2185 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002186 } else
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002187 ret = musb_cleanup_urb(urb, qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03002188done:
2189 spin_unlock_irqrestore(&musb->lock, flags);
2190 return ret;
2191}
2192
2193/* disable an endpoint */
2194static void
2195musb_h_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
2196{
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002197 u8 is_in = hep->desc.bEndpointAddress & USB_DIR_IN;
Felipe Balbi550a7372008-07-24 12:27:36 +03002198 unsigned long flags;
2199 struct musb *musb = hcd_to_musb(hcd);
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002200 struct musb_qh *qh;
2201 struct urb *urb;
Felipe Balbi550a7372008-07-24 12:27:36 +03002202
Felipe Balbi550a7372008-07-24 12:27:36 +03002203 spin_lock_irqsave(&musb->lock, flags);
2204
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002205 qh = hep->hcpriv;
2206 if (qh == NULL)
2207 goto exit;
2208
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002209 /* NOTE: qh is invalid unless !list_empty(&hep->urb_list) */
Felipe Balbi550a7372008-07-24 12:27:36 +03002210
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002211 /* Kick the first URB off the hardware, if needed */
Felipe Balbi550a7372008-07-24 12:27:36 +03002212 qh->is_ready = 0;
Sergei Shtylyov22a0d6f2009-03-27 12:56:26 -07002213 if (musb_ep_get_qh(qh->hw_ep, is_in) == qh) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002214 urb = next_urb(qh);
2215
2216 /* make software (then hardware) stop ASAP */
2217 if (!urb->unlinked)
2218 urb->status = -ESHUTDOWN;
2219
2220 /* cleanup */
Sergei Shtylyov81ec4e42009-03-27 12:57:50 -07002221 musb_cleanup_urb(urb, qh);
Felipe Balbi550a7372008-07-24 12:27:36 +03002222
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002223 /* Then nuke all the others ... and advance the
2224 * queue on hw_ep (e.g. bulk ring) when we're done.
2225 */
2226 while (!list_empty(&hep->urb_list)) {
2227 urb = next_urb(qh);
2228 urb->status = -ESHUTDOWN;
2229 musb_advance_schedule(musb, urb, qh->hw_ep, is_in);
2230 }
2231 } else {
2232 /* Just empty the queue; the hardware is busy with
2233 * other transfers, and since !qh->is_ready nothing
2234 * will activate any of these as it advances.
2235 */
2236 while (!list_empty(&hep->urb_list))
Sergei Shtylyovc9cd06b2009-03-27 12:58:31 -07002237 musb_giveback(musb, next_urb(qh), -ESHUTDOWN);
Felipe Balbi550a7372008-07-24 12:27:36 +03002238
Sergei Shtylyovdc61d232009-02-21 15:31:01 -08002239 hep->hcpriv = NULL;
2240 list_del(&qh->ring);
2241 kfree(qh);
2242 }
2243exit:
Felipe Balbi550a7372008-07-24 12:27:36 +03002244 spin_unlock_irqrestore(&musb->lock, flags);
2245}
2246
2247static int musb_h_get_frame_number(struct usb_hcd *hcd)
2248{
2249 struct musb *musb = hcd_to_musb(hcd);
2250
2251 return musb_readw(musb->mregs, MUSB_FRAME);
2252}
2253
2254static int musb_h_start(struct usb_hcd *hcd)
2255{
2256 struct musb *musb = hcd_to_musb(hcd);
2257
2258 /* NOTE: musb_start() is called when the hub driver turns
2259 * on port power, or when (OTG) peripheral starts.
2260 */
2261 hcd->state = HC_STATE_RUNNING;
2262 musb->port1_status = 0;
2263 return 0;
2264}
2265
2266static void musb_h_stop(struct usb_hcd *hcd)
2267{
2268 musb_stop(hcd_to_musb(hcd));
2269 hcd->state = HC_STATE_HALT;
2270}
2271
2272static int musb_bus_suspend(struct usb_hcd *hcd)
2273{
2274 struct musb *musb = hcd_to_musb(hcd);
David Brownell89368d32009-07-01 03:36:16 -07002275 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03002276
David Brownell89368d32009-07-01 03:36:16 -07002277 if (!is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03002278 return 0;
2279
David Brownell89368d32009-07-01 03:36:16 -07002280 switch (musb->xceiv->state) {
2281 case OTG_STATE_A_SUSPEND:
2282 return 0;
2283 case OTG_STATE_A_WAIT_VRISE:
2284 /* ID could be grounded even if there's no device
2285 * on the other end of the cable. NOTE that the
2286 * A_WAIT_VRISE timers are messy with MUSB...
2287 */
2288 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2289 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
2290 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
2291 break;
2292 default:
2293 break;
2294 }
2295
2296 if (musb->is_active) {
2297 WARNING("trying to suspend as %s while active\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +02002298 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03002299 return -EBUSY;
2300 } else
2301 return 0;
2302}
2303
2304static int musb_bus_resume(struct usb_hcd *hcd)
2305{
2306 /* resuming child port does the work */
2307 return 0;
2308}
2309
2310const struct hc_driver musb_hc_driver = {
2311 .description = "musb-hcd",
2312 .product_desc = "MUSB HDRC host driver",
2313 .hcd_priv_size = sizeof(struct musb),
2314 .flags = HCD_USB2 | HCD_MEMORY,
2315
2316 /* not using irq handler or reset hooks from usbcore, since
2317 * those must be shared with peripheral code for OTG configs
2318 */
2319
2320 .start = musb_h_start,
2321 .stop = musb_h_stop,
2322
2323 .get_frame_number = musb_h_get_frame_number,
2324
2325 .urb_enqueue = musb_urb_enqueue,
2326 .urb_dequeue = musb_urb_dequeue,
2327 .endpoint_disable = musb_h_disable,
2328
2329 .hub_status_data = musb_hub_status_data,
2330 .hub_control = musb_hub_control,
2331 .bus_suspend = musb_bus_suspend,
2332 .bus_resume = musb_bus_resume,
2333 /* .start_port_reset = NULL, */
2334 /* .hub_irq_enable = NULL, */
2335};