blob: e82c6995ce26693f07031342e32ea84100356111 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * omap_udc.c -- for OMAP full speed udc; most chips support OTG.
3 *
4 * Copyright (C) 2004 Texas Instruments, Inc.
5 * Copyright (C) 2004-2005 David Brownell
6 *
Kyungmin Park527ea732007-11-21 15:13:15 -08007 * OMAP2 & DMA support by Kyungmin Park <kyungmin.park@samsung.com>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#undef DEBUG
16#undef VERBOSE
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/ioport.h>
21#include <linux/types.h>
22#include <linux/errno.h>
23#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/timer.h>
27#include <linux/list.h>
28#include <linux/interrupt.h>
29#include <linux/proc_fs.h>
30#include <linux/mm.h>
31#include <linux/moduleparam.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
David Brownell5f848132006-12-16 15:34:53 -080033#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070034#include <linux/usb/gadget.h>
David Brownell3a16f7b2006-06-29 12:27:23 -070035#include <linux/usb/otg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/dma-mapping.h>
David Brownelle6a6e472006-12-10 11:47:04 -080037#include <linux/clk.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070038#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <asm/byteorder.h>
41#include <asm/io.h>
42#include <asm/irq.h>
43#include <asm/system.h>
44#include <asm/unaligned.h>
45#include <asm/mach-types.h>
46
Tony Lindgrence491cf2009-10-20 09:40:47 -070047#include <plat/dma.h>
48#include <plat/usb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "omap_udc.h"
51
52#undef USB_TRACE
53
54/* bulk DMA seems to be behaving for both IN and OUT */
55#define USE_DMA
56
57/* ISO too */
58#define USE_ISO
59
60#define DRIVER_DESC "OMAP UDC driver"
61#define DRIVER_VERSION "4 October 2004"
62
63#define DMA_ADDR_INVALID (~(dma_addr_t)0)
64
Kyungmin Park527ea732007-11-21 15:13:15 -080065#define OMAP2_DMA_CH(ch) (((ch) - 1) << 1)
66#define OMAP24XX_DMA(name, ch) (OMAP24XX_DMA_##name + OMAP2_DMA_CH(ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
70 * D+ pullup to allow enumeration. That's too early for the gadget
71 * framework to use from usb_endpoint_enable(), which happens after
72 * enumeration as part of activating an interface. (But if we add an
73 * optional new "UDC not yet running" state to the gadget driver model,
74 * even just during driver binding, the endpoint autoconfig logic is the
75 * natural spot to manufacture new endpoints.)
76 *
77 * So instead of using endpoint enable calls to control the hardware setup,
78 * this driver defines a "fifo mode" parameter. It's used during driver
79 * initialization to choose among a set of pre-defined endpoint configs.
80 * See omap_udc_setup() for available modes, or to add others. That code
81 * lives in an init section, so use this driver as a module if you need
82 * to change the fifo mode after the kernel boots.
83 *
84 * Gadget drivers normally ignore endpoints they don't care about, and
85 * won't include them in configuration descriptors. That means only
86 * misbehaving hosts would even notice they exist.
87 */
88#ifdef USE_ISO
89static unsigned fifo_mode = 3;
90#else
91static unsigned fifo_mode = 0;
92#endif
93
94/* "modprobe omap_udc fifo_mode=42", or else as a kernel
95 * boot parameter "omap_udc:fifo_mode=42"
96 */
97module_param (fifo_mode, uint, 0);
David Brownelle6a6e472006-12-10 11:47:04 -080098MODULE_PARM_DESC (fifo_mode, "endpoint configuration");
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#ifdef USE_DMA
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030101static bool use_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* "modprobe omap_udc use_dma=y", or else as a kernel
104 * boot parameter "omap_udc:use_dma=y"
105 */
106module_param (use_dma, bool, 0);
107MODULE_PARM_DESC (use_dma, "enable/disable DMA");
108#else /* !USE_DMA */
109
110/* save a bit of code */
111#define use_dma 0
112#endif /* !USE_DMA */
113
114
115static const char driver_name [] = "omap_udc";
116static const char driver_desc [] = DRIVER_DESC;
117
118/*-------------------------------------------------------------------------*/
119
120/* there's a notion of "current endpoint" for modifying endpoint
David Brownelle6a6e472006-12-10 11:47:04 -0800121 * state, and PIO access to its FIFO.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 */
123
124static void use_ep(struct omap_ep *ep, u16 select)
125{
126 u16 num = ep->bEndpointAddress & 0x0f;
127
128 if (ep->bEndpointAddress & USB_DIR_IN)
129 num |= UDC_EP_DIR;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300130 omap_writew(num | select, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* when select, MUST deselect later !! */
132}
133
134static inline void deselect_ep(void)
135{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300136 u16 w;
137
138 w = omap_readw(UDC_EP_NUM);
139 w &= ~UDC_EP_SEL;
140 omap_writew(w, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* 6 wait states before TX will happen */
142}
143
144static void dma_channel_claim(struct omap_ep *ep, unsigned preferred);
145
146/*-------------------------------------------------------------------------*/
147
148static int omap_ep_enable(struct usb_ep *_ep,
149 const struct usb_endpoint_descriptor *desc)
150{
151 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
152 struct omap_udc *udc;
153 unsigned long flags;
154 u16 maxp;
155
156 /* catch various bogus parameters */
157 if (!_ep || !desc || ep->desc
158 || desc->bDescriptorType != USB_DT_ENDPOINT
159 || ep->bEndpointAddress != desc->bEndpointAddress
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700160 || ep->maxpacket < usb_endpoint_maxp(desc)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800161 DBG("%s, bad ep or descriptor\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return -EINVAL;
163 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700164 maxp = usb_endpoint_maxp(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
166 && maxp != ep->maxpacket)
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700167 || usb_endpoint_maxp(desc) > ep->maxpacket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 || !desc->wMaxPacketSize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800169 DBG("%s, bad %s maxpacket\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ERANGE;
171 }
172
173#ifdef USE_ISO
174 if ((desc->bmAttributes == USB_ENDPOINT_XFER_ISOC
175 && desc->bInterval != 1)) {
176 /* hardware wants period = 1; USB allows 2^(Interval-1) */
177 DBG("%s, unsupported ISO period %dms\n", _ep->name,
178 1 << (desc->bInterval - 1));
179 return -EDOM;
180 }
181#else
182 if (desc->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
183 DBG("%s, ISO nyet\n", _ep->name);
184 return -EDOM;
185 }
186#endif
187
188 /* xfer types must match, except that interrupt ~= bulk */
189 if (ep->bmAttributes != desc->bmAttributes
190 && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
191 && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800192 DBG("%s, %s type mismatch\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EINVAL;
194 }
195
196 udc = ep->udc;
197 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800198 DBG("%s, bogus device state\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -ESHUTDOWN;
200 }
201
202 spin_lock_irqsave(&udc->lock, flags);
203
204 ep->desc = desc;
205 ep->irqs = 0;
206 ep->stopped = 0;
207 ep->ep.maxpacket = maxp;
208
209 /* set endpoint to initial state */
210 ep->dma_channel = 0;
211 ep->has_dma = 0;
212 ep->lch = -1;
213 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300214 omap_writew(udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ep->ackwait = 0;
216 deselect_ep();
217
218 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
219 list_add(&ep->iso, &udc->iso);
220
221 /* maybe assign a DMA channel to this endpoint */
222 if (use_dma && desc->bmAttributes == USB_ENDPOINT_XFER_BULK)
223 /* FIXME ISO can dma, but prefers first channel */
224 dma_channel_claim(ep, 0);
225
226 /* PIO OUT may RX packets */
227 if (desc->bmAttributes != USB_ENDPOINT_XFER_ISOC
228 && !ep->has_dma
229 && !(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300230 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 ep->ackwait = 1 + ep->double_buf;
232 }
233
234 spin_unlock_irqrestore(&udc->lock, flags);
235 VDBG("%s enabled\n", _ep->name);
236 return 0;
237}
238
239static void nuke(struct omap_ep *, int status);
240
241static int omap_ep_disable(struct usb_ep *_ep)
242{
243 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
244 unsigned long flags;
245
246 if (!_ep || !ep->desc) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800247 DBG("%s, %s not enabled\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 _ep ? ep->ep.name : NULL);
249 return -EINVAL;
250 }
251
252 spin_lock_irqsave(&ep->udc->lock, flags);
David Brownell313980c2005-04-11 15:38:25 -0700253 ep->desc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 nuke (ep, -ESHUTDOWN);
255 ep->ep.maxpacket = ep->maxpacket;
256 ep->has_dma = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300257 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 list_del_init(&ep->iso);
259 del_timer(&ep->timer);
260
261 spin_unlock_irqrestore(&ep->udc->lock, flags);
262
263 VDBG("%s disabled\n", _ep->name);
264 return 0;
265}
266
267/*-------------------------------------------------------------------------*/
268
269static struct usb_request *
Al Viro55016f12005-10-21 03:21:58 -0400270omap_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct omap_req *req;
273
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800274 req = kzalloc(sizeof(*req), gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 req->req.dma = DMA_ADDR_INVALID;
277 INIT_LIST_HEAD (&req->queue);
278 }
279 return &req->req;
280}
281
282static void
283omap_free_request(struct usb_ep *ep, struct usb_request *_req)
284{
285 struct omap_req *req = container_of(_req, struct omap_req, req);
286
287 if (_req)
288 kfree (req);
289}
290
291/*-------------------------------------------------------------------------*/
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293static void
294done(struct omap_ep *ep, struct omap_req *req, int status)
295{
296 unsigned stopped = ep->stopped;
297
298 list_del_init(&req->queue);
299
300 if (req->req.status == -EINPROGRESS)
301 req->req.status = status;
302 else
303 status = req->req.status;
304
305 if (use_dma && ep->has_dma) {
306 if (req->mapped) {
307 dma_unmap_single(ep->udc->gadget.dev.parent,
308 req->req.dma, req->req.length,
309 (ep->bEndpointAddress & USB_DIR_IN)
310 ? DMA_TO_DEVICE
311 : DMA_FROM_DEVICE);
312 req->req.dma = DMA_ADDR_INVALID;
313 req->mapped = 0;
314 } else
315 dma_sync_single_for_cpu(ep->udc->gadget.dev.parent,
316 req->req.dma, req->req.length,
317 (ep->bEndpointAddress & USB_DIR_IN)
318 ? DMA_TO_DEVICE
319 : DMA_FROM_DEVICE);
320 }
321
322#ifndef USB_TRACE
323 if (status && status != -ESHUTDOWN)
324#endif
325 VDBG("complete %s req %p stat %d len %u/%u\n",
326 ep->ep.name, &req->req, status,
327 req->req.actual, req->req.length);
328
329 /* don't modify queue heads during completion callback */
330 ep->stopped = 1;
331 spin_unlock(&ep->udc->lock);
332 req->req.complete(&ep->ep, &req->req);
333 spin_lock(&ep->udc->lock);
334 ep->stopped = stopped;
335}
336
337/*-------------------------------------------------------------------------*/
338
David Brownell313980c2005-04-11 15:38:25 -0700339#define UDC_FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
340#define UDC_FIFO_UNWRITABLE (UDC_EP_HALTED | UDC_FIFO_FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342#define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
343#define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
344
David Brownelle6a6e472006-12-10 11:47:04 -0800345static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346write_packet(u8 *buf, struct omap_req *req, unsigned max)
347{
348 unsigned len;
349 u16 *wp;
350
351 len = min(req->req.length - req->req.actual, max);
352 req->req.actual += len;
353
354 max = len;
355 if (likely((((int)buf) & 1) == 0)) {
356 wp = (u16 *)buf;
357 while (max >= 2) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300358 omap_writew(*wp++, UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 max -= 2;
360 }
361 buf = (u8 *)wp;
362 }
363 while (max--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300364 omap_writeb(*buf++, UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return len;
366}
367
368// FIXME change r/w fifo calling convention
369
370
371// return: 0 = still running, 1 = completed, negative = errno
372static int write_fifo(struct omap_ep *ep, struct omap_req *req)
373{
374 u8 *buf;
375 unsigned count;
376 int is_last;
377 u16 ep_stat;
378
379 buf = req->req.buf + req->req.actual;
380 prefetch(buf);
381
382 /* PIO-IN isn't double buffered except for iso */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300383 ep_stat = omap_readw(UDC_STAT_FLG);
David Brownell313980c2005-04-11 15:38:25 -0700384 if (ep_stat & UDC_FIFO_UNWRITABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
386
387 count = ep->ep.maxpacket;
388 count = write_packet(buf, req, count);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300389 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 ep->ackwait = 1;
391
392 /* last packet is often short (sometimes a zlp) */
393 if (count != ep->ep.maxpacket)
394 is_last = 1;
395 else if (req->req.length == req->req.actual
396 && !req->req.zero)
397 is_last = 1;
398 else
399 is_last = 0;
400
401 /* NOTE: requests complete when all IN data is in a
402 * FIFO (or sometimes later, if a zlp was needed).
403 * Use usb_ep_fifo_status() where needed.
404 */
405 if (is_last)
406 done(ep, req, 0);
407 return is_last;
408}
409
David Brownelle6a6e472006-12-10 11:47:04 -0800410static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411read_packet(u8 *buf, struct omap_req *req, unsigned avail)
412{
413 unsigned len;
414 u16 *wp;
415
416 len = min(req->req.length - req->req.actual, avail);
417 req->req.actual += len;
418 avail = len;
419
420 if (likely((((int)buf) & 1) == 0)) {
421 wp = (u16 *)buf;
422 while (avail >= 2) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300423 *wp++ = omap_readw(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 avail -= 2;
425 }
426 buf = (u8 *)wp;
427 }
428 while (avail--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300429 *buf++ = omap_readb(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return len;
431}
432
433// return: 0 = still running, 1 = queue empty, negative = errno
434static int read_fifo(struct omap_ep *ep, struct omap_req *req)
435{
436 u8 *buf;
437 unsigned count, avail;
438 int is_last;
439
440 buf = req->req.buf + req->req.actual;
441 prefetchw(buf);
442
443 for (;;) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300444 u16 ep_stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 is_last = 0;
447 if (ep_stat & FIFO_EMPTY) {
448 if (!ep->double_buf)
449 break;
450 ep->fnf = 1;
451 }
452 if (ep_stat & UDC_EP_HALTED)
453 break;
454
David Brownell313980c2005-04-11 15:38:25 -0700455 if (ep_stat & UDC_FIFO_FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 avail = ep->ep.maxpacket;
457 else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300458 avail = omap_readw(UDC_RXFSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 ep->fnf = ep->double_buf;
460 }
461 count = read_packet(buf, req, avail);
462
463 /* partial packet reads may not be errors */
464 if (count < ep->ep.maxpacket) {
465 is_last = 1;
466 /* overflowed this request? flush extra data */
467 if (count != avail) {
468 req->req.status = -EOVERFLOW;
469 avail -= count;
470 while (avail--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300471 omap_readw(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473 } else if (req->req.length == req->req.actual)
474 is_last = 1;
475 else
476 is_last = 0;
477
478 if (!ep->bEndpointAddress)
479 break;
480 if (is_last)
481 done(ep, req, 0);
482 break;
483 }
484 return is_last;
485}
486
487/*-------------------------------------------------------------------------*/
488
489static u16 dma_src_len(struct omap_ep *ep, dma_addr_t start)
490{
491 dma_addr_t end;
492
493 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
494 * the last transfer's bytecount by more than a FIFO's worth.
495 */
496 if (cpu_is_omap15xx())
497 return 0;
498
Tony Lindgren0499bde2008-07-03 12:24:36 +0300499 end = omap_get_dma_src_pos(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (end == ep->dma_counter)
501 return 0;
502
503 end |= start & (0xffff << 16);
504 if (end < start)
505 end += 0x10000;
506 return end - start;
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509static u16 dma_dest_len(struct omap_ep *ep, dma_addr_t start)
510{
511 dma_addr_t end;
512
Tony Lindgren0499bde2008-07-03 12:24:36 +0300513 end = omap_get_dma_dst_pos(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (end == ep->dma_counter)
515 return 0;
516
517 end |= start & (0xffff << 16);
518 if (cpu_is_omap15xx())
519 end++;
520 if (end < start)
521 end += 0x10000;
522 return end - start;
523}
524
525
526/* Each USB transfer request using DMA maps to one or more DMA transfers.
527 * When DMA completion isn't request completion, the UDC continues with
528 * the next DMA transfer for that USB transfer.
529 */
530
531static void next_in_dma(struct omap_ep *ep, struct omap_req *req)
532{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300533 u16 txdma_ctrl, w;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 unsigned length = req->req.length - req->req.actual;
535 const int sync_mode = cpu_is_omap15xx()
536 ? OMAP_DMA_SYNC_FRAME
537 : OMAP_DMA_SYNC_ELEMENT;
Kyungmin Park527ea732007-11-21 15:13:15 -0800538 int dma_trigger = 0;
539
540 if (cpu_is_omap24xx())
541 dma_trigger = OMAP24XX_DMA(USB_W2FC_TX0, ep->dma_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* measure length in either bytes or packets */
David Brownell65111082005-04-28 13:52:31 -0700544 if ((cpu_is_omap16xx() && length <= UDC_TXN_TSC)
Kyungmin Park527ea732007-11-21 15:13:15 -0800545 || (cpu_is_omap24xx() && length < ep->maxpacket)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 || (cpu_is_omap15xx() && length < ep->maxpacket)) {
547 txdma_ctrl = UDC_TXN_EOT | length;
548 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S8,
Kyungmin Park527ea732007-11-21 15:13:15 -0800549 length, 1, sync_mode, dma_trigger, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 } else {
551 length = min(length / ep->maxpacket,
552 (unsigned) UDC_TXN_TSC + 1);
David Brownelle6a6e472006-12-10 11:47:04 -0800553 txdma_ctrl = length;
David Brownell65111082005-04-28 13:52:31 -0700554 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
David Brownelle6a6e472006-12-10 11:47:04 -0800555 ep->ep.maxpacket >> 1, length, sync_mode,
Kyungmin Park527ea732007-11-21 15:13:15 -0800556 dma_trigger, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 length *= ep->maxpacket;
558 }
559 omap_set_dma_src_params(ep->lch, OMAP_DMA_PORT_EMIFF,
David Brownelle6a6e472006-12-10 11:47:04 -0800560 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
561 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 omap_start_dma(ep->lch);
Tony Lindgren0499bde2008-07-03 12:24:36 +0300564 ep->dma_counter = omap_get_dma_src_pos(ep->lch);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300565 w = omap_readw(UDC_DMA_IRQ_EN);
566 w |= UDC_TX_DONE_IE(ep->dma_channel);
567 omap_writew(w, UDC_DMA_IRQ_EN);
568 omap_writew(UDC_TXN_START | txdma_ctrl, UDC_TXDMA(ep->dma_channel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 req->dma_bytes = length;
570}
571
572static void finish_in_dma(struct omap_ep *ep, struct omap_req *req, int status)
573{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300574 u16 w;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (status == 0) {
577 req->req.actual += req->dma_bytes;
578
579 /* return if this request needs to send data or zlp */
580 if (req->req.actual < req->req.length)
581 return;
582 if (req->req.zero
583 && req->dma_bytes != 0
584 && (req->req.actual % ep->maxpacket) == 0)
585 return;
586 } else
587 req->req.actual += dma_src_len(ep, req->req.dma
588 + req->req.actual);
589
590 /* tx completion */
591 omap_stop_dma(ep->lch);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300592 w = omap_readw(UDC_DMA_IRQ_EN);
593 w &= ~UDC_TX_DONE_IE(ep->dma_channel);
594 omap_writew(w, UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 done(ep, req, status);
596}
597
598static void next_out_dma(struct omap_ep *ep, struct omap_req *req)
599{
Kyungmin Park527ea732007-11-21 15:13:15 -0800600 unsigned packets = req->req.length - req->req.actual;
601 int dma_trigger = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300602 u16 w;
Kyungmin Park527ea732007-11-21 15:13:15 -0800603
604 if (cpu_is_omap24xx())
605 dma_trigger = OMAP24XX_DMA(USB_W2FC_RX0, ep->dma_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* NOTE: we filtered out "short reads" before, so we know
608 * the buffer has only whole numbers of packets.
Kyungmin Park527ea732007-11-21 15:13:15 -0800609 * except MODE SELECT(6) sent the 24 bytes data in OMAP24XX DMA mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Kyungmin Park527ea732007-11-21 15:13:15 -0800611 if (cpu_is_omap24xx() && packets < ep->maxpacket) {
612 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S8,
613 packets, 1, OMAP_DMA_SYNC_ELEMENT,
614 dma_trigger, 0);
615 req->dma_bytes = packets;
616 } else {
617 /* set up this DMA transfer, enable the fifo, start */
618 packets /= ep->ep.maxpacket;
619 packets = min(packets, (unsigned)UDC_RXN_TC + 1);
620 req->dma_bytes = packets * ep->ep.maxpacket;
621 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
622 ep->ep.maxpacket >> 1, packets,
623 OMAP_DMA_SYNC_ELEMENT,
624 dma_trigger, 0);
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 omap_set_dma_dest_params(ep->lch, OMAP_DMA_PORT_EMIFF,
David Brownelle6a6e472006-12-10 11:47:04 -0800627 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
628 0, 0);
Tony Lindgren0499bde2008-07-03 12:24:36 +0300629 ep->dma_counter = omap_get_dma_dst_pos(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300631 omap_writew(UDC_RXN_STOP | (packets - 1), UDC_RXDMA(ep->dma_channel));
632 w = omap_readw(UDC_DMA_IRQ_EN);
633 w |= UDC_RX_EOT_IE(ep->dma_channel);
634 omap_writew(w, UDC_DMA_IRQ_EN);
635 omap_writew(ep->bEndpointAddress & 0xf, UDC_EP_NUM);
636 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 omap_start_dma(ep->lch);
639}
640
641static void
David Brownellcb97c5c2005-10-16 15:06:51 -0700642finish_out_dma(struct omap_ep *ep, struct omap_req *req, int status, int one)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300644 u16 count, w;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if (status == 0)
647 ep->dma_counter = (u16) (req->req.dma + req->req.actual);
648 count = dma_dest_len(ep, req->req.dma + req->req.actual);
649 count += req->req.actual;
David Brownellcb97c5c2005-10-16 15:06:51 -0700650 if (one)
651 count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (count <= req->req.length)
653 req->req.actual = count;
654
655 if (count != req->dma_bytes || status)
656 omap_stop_dma(ep->lch);
657
658 /* if this wasn't short, request may need another transfer */
659 else if (req->req.actual < req->req.length)
660 return;
661
662 /* rx completion */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300663 w = omap_readw(UDC_DMA_IRQ_EN);
664 w &= ~UDC_RX_EOT_IE(ep->dma_channel);
665 omap_writew(w, UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 done(ep, req, status);
667}
668
669static void dma_irq(struct omap_udc *udc, u16 irq_src)
670{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300671 u16 dman_stat = omap_readw(UDC_DMAN_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct omap_ep *ep;
673 struct omap_req *req;
674
675 /* IN dma: tx to host */
676 if (irq_src & UDC_TXN_DONE) {
677 ep = &udc->ep[16 + UDC_DMA_TX_SRC(dman_stat)];
678 ep->irqs++;
679 /* can see TXN_DONE after dma abort */
680 if (!list_empty(&ep->queue)) {
681 req = container_of(ep->queue.next,
682 struct omap_req, queue);
683 finish_in_dma(ep, req, 0);
684 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300685 omap_writew(UDC_TXN_DONE, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 if (!list_empty (&ep->queue)) {
688 req = container_of(ep->queue.next,
689 struct omap_req, queue);
690 next_in_dma(ep, req);
691 }
692 }
693
694 /* OUT dma: rx from host */
695 if (irq_src & UDC_RXN_EOT) {
696 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
697 ep->irqs++;
698 /* can see RXN_EOT after dma abort */
699 if (!list_empty(&ep->queue)) {
700 req = container_of(ep->queue.next,
701 struct omap_req, queue);
David Brownellcb97c5c2005-10-16 15:06:51 -0700702 finish_out_dma(ep, req, 0, dman_stat & UDC_DMA_RX_SB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300704 omap_writew(UDC_RXN_EOT, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (!list_empty (&ep->queue)) {
707 req = container_of(ep->queue.next,
708 struct omap_req, queue);
709 next_out_dma(ep, req);
710 }
711 }
712
713 if (irq_src & UDC_RXN_CNT) {
714 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
715 ep->irqs++;
716 /* omap15xx does this unasked... */
717 VDBG("%s, RX_CNT irq?\n", ep->ep.name);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300718 omap_writew(UDC_RXN_CNT, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720}
721
722static void dma_error(int lch, u16 ch_status, void *data)
723{
724 struct omap_ep *ep = data;
725
726 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700727 /* if ch_status & OMAP1_DMA_TOUT_IRQ ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 ERR("%s dma error, lch %d status %02x\n", ep->ep.name, lch, ch_status);
729
730 /* complete current transfer ... */
731}
732
733static void dma_channel_claim(struct omap_ep *ep, unsigned channel)
734{
735 u16 reg;
736 int status, restart, is_in;
Kyungmin Park527ea732007-11-21 15:13:15 -0800737 int dma_channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 is_in = ep->bEndpointAddress & USB_DIR_IN;
740 if (is_in)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300741 reg = omap_readw(UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300743 reg = omap_readw(UDC_RXDMA_CFG);
David Brownell65111082005-04-28 13:52:31 -0700744 reg |= UDC_DMA_REQ; /* "pulse" activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 ep->dma_channel = 0;
747 ep->lch = -1;
748 if (channel == 0 || channel > 3) {
749 if ((reg & 0x0f00) == 0)
750 channel = 3;
751 else if ((reg & 0x00f0) == 0)
752 channel = 2;
753 else if ((reg & 0x000f) == 0) /* preferred for ISO */
754 channel = 1;
755 else {
756 status = -EMLINK;
757 goto just_restart;
758 }
759 }
760 reg |= (0x0f & ep->bEndpointAddress) << (4 * (channel - 1));
761 ep->dma_channel = channel;
762
763 if (is_in) {
Kyungmin Park527ea732007-11-21 15:13:15 -0800764 if (cpu_is_omap24xx())
765 dma_channel = OMAP24XX_DMA(USB_W2FC_TX0, channel);
766 else
767 dma_channel = OMAP_DMA_USB_W2FC_TX0 - 1 + channel;
768 status = omap_request_dma(dma_channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 ep->ep.name, dma_error, ep, &ep->lch);
770 if (status == 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300771 omap_writew(reg, UDC_TXDMA_CFG);
Kyungmin Park527ea732007-11-21 15:13:15 -0800772 /* EMIFF or SDRC */
David Brownell65111082005-04-28 13:52:31 -0700773 omap_set_dma_src_burst_mode(ep->lch,
774 OMAP_DMA_DATA_BURST_4);
775 omap_set_dma_src_data_pack(ep->lch, 1);
776 /* TIPB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 omap_set_dma_dest_params(ep->lch,
778 OMAP_DMA_PORT_TIPB,
779 OMAP_DMA_AMODE_CONSTANT,
David Brownellc3e32082008-08-31 18:04:27 -0700780 UDC_DATA_DMA,
David Brownelle6a6e472006-12-10 11:47:04 -0800781 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783 } else {
Kyungmin Park527ea732007-11-21 15:13:15 -0800784 if (cpu_is_omap24xx())
785 dma_channel = OMAP24XX_DMA(USB_W2FC_RX0, channel);
786 else
787 dma_channel = OMAP_DMA_USB_W2FC_RX0 - 1 + channel;
788
789 status = omap_request_dma(dma_channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 ep->ep.name, dma_error, ep, &ep->lch);
791 if (status == 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300792 omap_writew(reg, UDC_RXDMA_CFG);
David Brownell65111082005-04-28 13:52:31 -0700793 /* TIPB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 omap_set_dma_src_params(ep->lch,
795 OMAP_DMA_PORT_TIPB,
796 OMAP_DMA_AMODE_CONSTANT,
David Brownellc3e32082008-08-31 18:04:27 -0700797 UDC_DATA_DMA,
David Brownelle6a6e472006-12-10 11:47:04 -0800798 0, 0);
Kyungmin Park527ea732007-11-21 15:13:15 -0800799 /* EMIFF or SDRC */
David Brownell65111082005-04-28 13:52:31 -0700800 omap_set_dma_dest_burst_mode(ep->lch,
801 OMAP_DMA_DATA_BURST_4);
802 omap_set_dma_dest_data_pack(ep->lch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 }
805 if (status)
806 ep->dma_channel = 0;
807 else {
808 ep->has_dma = 1;
809 omap_disable_dma_irq(ep->lch, OMAP_DMA_BLOCK_IRQ);
810
811 /* channel type P: hw synch (fifo) */
Kyungmin Park527ea732007-11-21 15:13:15 -0800812 if (cpu_class_is_omap1() && !cpu_is_omap15xx())
Tony Lindgren0499bde2008-07-03 12:24:36 +0300813 omap_set_dma_channel_mode(ep->lch, OMAP_DMA_LCH_P);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
816just_restart:
817 /* restart any queue, even if the claim failed */
818 restart = !ep->stopped && !list_empty(&ep->queue);
819
820 if (status)
821 DBG("%s no dma channel: %d%s\n", ep->ep.name, status,
822 restart ? " (restart)" : "");
823 else
824 DBG("%s claimed %cxdma%d lch %d%s\n", ep->ep.name,
825 is_in ? 't' : 'r',
826 ep->dma_channel - 1, ep->lch,
827 restart ? " (restart)" : "");
828
829 if (restart) {
830 struct omap_req *req;
831 req = container_of(ep->queue.next, struct omap_req, queue);
832 if (ep->has_dma)
833 (is_in ? next_in_dma : next_out_dma)(ep, req);
834 else {
835 use_ep(ep, UDC_EP_SEL);
836 (is_in ? write_fifo : read_fifo)(ep, req);
837 deselect_ep();
838 if (!is_in) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300839 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ep->ackwait = 1 + ep->double_buf;
841 }
842 /* IN: 6 wait states before it'll tx */
843 }
844 }
845}
846
847static void dma_channel_release(struct omap_ep *ep)
848{
849 int shift = 4 * (ep->dma_channel - 1);
850 u16 mask = 0x0f << shift;
851 struct omap_req *req;
852 int active;
853
854 /* abort any active usb transfer request */
855 if (!list_empty(&ep->queue))
856 req = container_of(ep->queue.next, struct omap_req, queue);
857 else
David Brownell313980c2005-04-11 15:38:25 -0700858 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Tony Lindgren0499bde2008-07-03 12:24:36 +0300860 active = omap_get_dma_active_status(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 DBG("%s release %s %cxdma%d %p\n", ep->ep.name,
863 active ? "active" : "idle",
864 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
865 ep->dma_channel - 1, req);
866
David Brownell65111082005-04-28 13:52:31 -0700867 /* NOTE: re-setting RX_REQ/TX_REQ because of a chip bug (before
868 * OMAP 1710 ES2.0) where reading the DMA_CFG can clear them.
869 */
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /* wait till current packet DMA finishes, and fifo empties */
872 if (ep->bEndpointAddress & USB_DIR_IN) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300873 omap_writew((omap_readw(UDC_TXDMA_CFG) & ~mask) | UDC_DMA_REQ,
874 UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (req) {
877 finish_in_dma(ep, req, -ECONNRESET);
878
879 /* clear FIFO; hosts probably won't empty it */
880 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300881 omap_writew(UDC_CLR_EP, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 deselect_ep();
883 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300884 while (omap_readw(UDC_TXDMA_CFG) & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 udelay(10);
886 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300887 omap_writew((omap_readw(UDC_RXDMA_CFG) & ~mask) | UDC_DMA_REQ,
888 UDC_RXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 /* dma empties the fifo */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300891 while (omap_readw(UDC_RXDMA_CFG) & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 udelay(10);
893 if (req)
David Brownellcb97c5c2005-10-16 15:06:51 -0700894 finish_out_dma(ep, req, -ECONNRESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896 omap_free_dma(ep->lch);
897 ep->dma_channel = 0;
898 ep->lch = -1;
899 /* has_dma still set, till endpoint is fully quiesced */
900}
901
902
903/*-------------------------------------------------------------------------*/
904
905static int
Al Viro55016f12005-10-21 03:21:58 -0400906omap_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
909 struct omap_req *req = container_of(_req, struct omap_req, req);
910 struct omap_udc *udc;
911 unsigned long flags;
912 int is_iso = 0;
913
914 /* catch various bogus parameters */
915 if (!_req || !req->req.complete || !req->req.buf
916 || !list_empty(&req->queue)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800917 DBG("%s, bad params\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return -EINVAL;
919 }
920 if (!_ep || (!ep->desc && ep->bEndpointAddress)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800921 DBG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return -EINVAL;
923 }
924 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
925 if (req->req.length > ep->ep.maxpacket)
926 return -EMSGSIZE;
927 is_iso = 1;
928 }
929
930 /* this isn't bogus, but OMAP DMA isn't the only hardware to
931 * have a hard time with partial packet reads... reject it.
Kyungmin Park527ea732007-11-21 15:13:15 -0800932 * Except OMAP2 can handle the small packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 */
934 if (use_dma
935 && ep->has_dma
936 && ep->bEndpointAddress != 0
937 && (ep->bEndpointAddress & USB_DIR_IN) == 0
Kyungmin Park527ea732007-11-21 15:13:15 -0800938 && !cpu_class_is_omap2()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 && (req->req.length % ep->ep.maxpacket) != 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800940 DBG("%s, no partial packet OUT reads\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return -EMSGSIZE;
942 }
943
944 udc = ep->udc;
945 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN)
946 return -ESHUTDOWN;
947
948 if (use_dma && ep->has_dma) {
949 if (req->req.dma == DMA_ADDR_INVALID) {
950 req->req.dma = dma_map_single(
951 ep->udc->gadget.dev.parent,
952 req->req.buf,
953 req->req.length,
954 (ep->bEndpointAddress & USB_DIR_IN)
955 ? DMA_TO_DEVICE
956 : DMA_FROM_DEVICE);
957 req->mapped = 1;
958 } else {
959 dma_sync_single_for_device(
960 ep->udc->gadget.dev.parent,
961 req->req.dma, req->req.length,
962 (ep->bEndpointAddress & USB_DIR_IN)
963 ? DMA_TO_DEVICE
964 : DMA_FROM_DEVICE);
965 req->mapped = 0;
966 }
967 }
968
969 VDBG("%s queue req %p, len %d buf %p\n",
970 ep->ep.name, _req, _req->length, _req->buf);
971
972 spin_lock_irqsave(&udc->lock, flags);
973
974 req->req.status = -EINPROGRESS;
975 req->req.actual = 0;
976
977 /* maybe kickstart non-iso i/o queues */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300978 if (is_iso) {
979 u16 w;
980
981 w = omap_readw(UDC_IRQ_EN);
982 w |= UDC_SOF_IE;
983 omap_writew(w, UDC_IRQ_EN);
984 } else if (list_empty(&ep->queue) && !ep->stopped && !ep->ackwait) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 int is_in;
986
987 if (ep->bEndpointAddress == 0) {
988 if (!udc->ep0_pending || !list_empty (&ep->queue)) {
989 spin_unlock_irqrestore(&udc->lock, flags);
990 return -EL2HLT;
991 }
992
993 /* empty DATA stage? */
994 is_in = udc->ep0_in;
995 if (!req->req.length) {
996
997 /* chip became CONFIGURED or ADDRESSED
998 * earlier; drivers may already have queued
999 * requests to non-control endpoints
1000 */
1001 if (udc->ep0_set_config) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001002 u16 irq_en = omap_readw(UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 irq_en |= UDC_DS_CHG_IE | UDC_EP0_IE;
1005 if (!udc->ep0_reset_config)
1006 irq_en |= UDC_EPN_RX_IE
1007 | UDC_EPN_TX_IE;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001008 omap_writew(irq_en, UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010
David Brownell313980c2005-04-11 15:38:25 -07001011 /* STATUS for zero length DATA stages is
1012 * always an IN ... even for IN transfers,
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001013 * a weird case which seem to stall OMAP.
David Brownell313980c2005-04-11 15:38:25 -07001014 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001015 omap_writew(UDC_EP_SEL | UDC_EP_DIR, UDC_EP_NUM);
1016 omap_writew(UDC_CLR_EP, UDC_CTRL);
1017 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1018 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /* cleanup */
1021 udc->ep0_pending = 0;
1022 done(ep, req, 0);
David Brownell313980c2005-04-11 15:38:25 -07001023 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /* non-empty DATA stage */
1026 } else if (is_in) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001027 omap_writew(UDC_EP_SEL | UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 } else {
1029 if (udc->ep0_setup)
1030 goto irq_wait;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001031 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 } else {
1034 is_in = ep->bEndpointAddress & USB_DIR_IN;
1035 if (!ep->has_dma)
1036 use_ep(ep, UDC_EP_SEL);
1037 /* if ISO: SOF IRQs must be enabled/disabled! */
1038 }
1039
1040 if (ep->has_dma)
1041 (is_in ? next_in_dma : next_out_dma)(ep, req);
1042 else if (req) {
1043 if ((is_in ? write_fifo : read_fifo)(ep, req) == 1)
David Brownell313980c2005-04-11 15:38:25 -07001044 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 deselect_ep();
1046 if (!is_in) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001047 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 ep->ackwait = 1 + ep->double_buf;
1049 }
1050 /* IN: 6 wait states before it'll tx */
1051 }
1052 }
1053
1054irq_wait:
1055 /* irq handler advances the queue */
David Brownell313980c2005-04-11 15:38:25 -07001056 if (req != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 list_add_tail(&req->queue, &ep->queue);
1058 spin_unlock_irqrestore(&udc->lock, flags);
1059
1060 return 0;
1061}
1062
1063static int omap_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
1064{
1065 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1066 struct omap_req *req;
1067 unsigned long flags;
1068
1069 if (!_ep || !_req)
1070 return -EINVAL;
1071
1072 spin_lock_irqsave(&ep->udc->lock, flags);
1073
1074 /* make sure it's actually queued on this endpoint */
1075 list_for_each_entry (req, &ep->queue, queue) {
1076 if (&req->req == _req)
1077 break;
1078 }
1079 if (&req->req != _req) {
1080 spin_unlock_irqrestore(&ep->udc->lock, flags);
1081 return -EINVAL;
1082 }
1083
1084 if (use_dma && ep->dma_channel && ep->queue.next == &req->queue) {
1085 int channel = ep->dma_channel;
1086
1087 /* releasing the channel cancels the request,
1088 * reclaiming the channel restarts the queue
1089 */
1090 dma_channel_release(ep);
1091 dma_channel_claim(ep, channel);
David Brownelle6a6e472006-12-10 11:47:04 -08001092 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 done(ep, req, -ECONNRESET);
1094 spin_unlock_irqrestore(&ep->udc->lock, flags);
1095 return 0;
1096}
1097
1098/*-------------------------------------------------------------------------*/
1099
1100static int omap_ep_set_halt(struct usb_ep *_ep, int value)
1101{
1102 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1103 unsigned long flags;
1104 int status = -EOPNOTSUPP;
1105
1106 spin_lock_irqsave(&ep->udc->lock, flags);
1107
1108 /* just use protocol stalls for ep0; real halts are annoying */
1109 if (ep->bEndpointAddress == 0) {
1110 if (!ep->udc->ep0_pending)
1111 status = -EINVAL;
1112 else if (value) {
1113 if (ep->udc->ep0_set_config) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07001114 WARNING("error changing config?\n");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001115 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001117 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 ep->udc->ep0_pending = 0;
1119 status = 0;
1120 } else /* NOP */
1121 status = 0;
1122
1123 /* otherwise, all active non-ISO endpoints can halt */
1124 } else if (ep->bmAttributes != USB_ENDPOINT_XFER_ISOC && ep->desc) {
1125
1126 /* IN endpoints must already be idle */
1127 if ((ep->bEndpointAddress & USB_DIR_IN)
David Brownelle6a6e472006-12-10 11:47:04 -08001128 && !list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 status = -EAGAIN;
1130 goto done;
1131 }
1132
1133 if (value) {
1134 int channel;
1135
1136 if (use_dma && ep->dma_channel
1137 && !list_empty(&ep->queue)) {
1138 channel = ep->dma_channel;
1139 dma_channel_release(ep);
1140 } else
1141 channel = 0;
1142
1143 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001144 if (omap_readw(UDC_STAT_FLG) & UDC_NON_ISO_FIFO_EMPTY) {
1145 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 status = 0;
1147 } else
1148 status = -EAGAIN;
1149 deselect_ep();
1150
1151 if (channel)
1152 dma_channel_claim(ep, channel);
1153 } else {
1154 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001155 omap_writew(ep->udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 ep->ackwait = 0;
1157 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001158 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 ep->ackwait = 1 + ep->double_buf;
1160 }
1161 }
1162 }
1163done:
1164 VDBG("%s %s halt stat %d\n", ep->ep.name,
1165 value ? "set" : "clear", status);
1166
1167 spin_unlock_irqrestore(&ep->udc->lock, flags);
1168 return status;
1169}
1170
1171static struct usb_ep_ops omap_ep_ops = {
1172 .enable = omap_ep_enable,
1173 .disable = omap_ep_disable,
1174
1175 .alloc_request = omap_alloc_request,
1176 .free_request = omap_free_request,
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 .queue = omap_ep_queue,
1179 .dequeue = omap_ep_dequeue,
1180
1181 .set_halt = omap_ep_set_halt,
1182 // fifo_status ... report bytes in fifo
1183 // fifo_flush ... flush fifo
1184};
1185
1186/*-------------------------------------------------------------------------*/
1187
1188static int omap_get_frame(struct usb_gadget *gadget)
1189{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001190 u16 sof = omap_readw(UDC_SOF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return (sof & UDC_TS_OK) ? (sof & UDC_TS) : -EL2NSYNC;
1192}
1193
1194static int omap_wakeup(struct usb_gadget *gadget)
1195{
1196 struct omap_udc *udc;
1197 unsigned long flags;
1198 int retval = -EHOSTUNREACH;
1199
1200 udc = container_of(gadget, struct omap_udc, gadget);
1201
1202 spin_lock_irqsave(&udc->lock, flags);
1203 if (udc->devstat & UDC_SUS) {
1204 /* NOTE: OTG spec erratum says that OTG devices may
1205 * issue wakeups without host enable.
1206 */
1207 if (udc->devstat & (UDC_B_HNP_ENABLE|UDC_R_WK_OK)) {
1208 DBG("remote wakeup...\n");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001209 omap_writew(UDC_RMT_WKP, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 retval = 0;
1211 }
1212
1213 /* NOTE: non-OTG systems may use SRP TOO... */
1214 } else if (!(udc->devstat & UDC_ATT)) {
1215 if (udc->transceiver)
1216 retval = otg_start_srp(udc->transceiver);
1217 }
1218 spin_unlock_irqrestore(&udc->lock, flags);
1219
1220 return retval;
1221}
1222
1223static int
1224omap_set_selfpowered(struct usb_gadget *gadget, int is_selfpowered)
1225{
1226 struct omap_udc *udc;
1227 unsigned long flags;
1228 u16 syscon1;
1229
1230 udc = container_of(gadget, struct omap_udc, gadget);
1231 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001232 syscon1 = omap_readw(UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (is_selfpowered)
1234 syscon1 |= UDC_SELF_PWR;
1235 else
1236 syscon1 &= ~UDC_SELF_PWR;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001237 omap_writew(syscon1, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 spin_unlock_irqrestore(&udc->lock, flags);
1239
1240 return 0;
1241}
1242
1243static int can_pullup(struct omap_udc *udc)
1244{
1245 return udc->driver && udc->softconnect && udc->vbus_active;
1246}
1247
1248static void pullup_enable(struct omap_udc *udc)
1249{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001250 u16 w;
1251
1252 w = omap_readw(UDC_SYSCON1);
1253 w |= UDC_PULLUP_EN;
1254 omap_writew(w, UDC_SYSCON1);
1255 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx()) {
1256 u32 l;
1257
1258 l = omap_readl(OTG_CTRL);
1259 l |= OTG_BSESSVLD;
1260 omap_writel(l, OTG_CTRL);
1261 }
1262 omap_writew(UDC_DS_CHG_IE, UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
1265static void pullup_disable(struct omap_udc *udc)
1266{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001267 u16 w;
1268
1269 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx()) {
1270 u32 l;
1271
1272 l = omap_readl(OTG_CTRL);
1273 l &= ~OTG_BSESSVLD;
1274 omap_writel(l, OTG_CTRL);
1275 }
1276 omap_writew(UDC_DS_CHG_IE, UDC_IRQ_EN);
1277 w = omap_readw(UDC_SYSCON1);
1278 w &= ~UDC_PULLUP_EN;
1279 omap_writew(w, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
David Brownelle6a6e472006-12-10 11:47:04 -08001282static struct omap_udc *udc;
1283
1284static void omap_udc_enable_clock(int enable)
1285{
1286 if (udc == NULL || udc->dc_clk == NULL || udc->hhc_clk == NULL)
1287 return;
1288
1289 if (enable) {
1290 clk_enable(udc->dc_clk);
1291 clk_enable(udc->hhc_clk);
1292 udelay(100);
1293 } else {
1294 clk_disable(udc->hhc_clk);
1295 clk_disable(udc->dc_clk);
1296 }
1297}
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299/*
1300 * Called by whatever detects VBUS sessions: external transceiver
1301 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1302 */
1303static int omap_vbus_session(struct usb_gadget *gadget, int is_active)
1304{
1305 struct omap_udc *udc;
1306 unsigned long flags;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001307 u32 l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 udc = container_of(gadget, struct omap_udc, gadget);
1310 spin_lock_irqsave(&udc->lock, flags);
1311 VDBG("VBUS %s\n", is_active ? "on" : "off");
1312 udc->vbus_active = (is_active != 0);
1313 if (cpu_is_omap15xx()) {
1314 /* "software" detect, ignored if !VBUS_MODE_1510 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001315 l = omap_readl(FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (is_active)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001317 l |= VBUS_CTRL_1510;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001319 l &= ~VBUS_CTRL_1510;
1320 omap_writel(l, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
David Brownelle6a6e472006-12-10 11:47:04 -08001322 if (udc->dc_clk != NULL && is_active) {
1323 if (!udc->clk_requested) {
1324 omap_udc_enable_clock(1);
1325 udc->clk_requested = 1;
1326 }
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (can_pullup(udc))
1329 pullup_enable(udc);
1330 else
1331 pullup_disable(udc);
David Brownelle6a6e472006-12-10 11:47:04 -08001332 if (udc->dc_clk != NULL && !is_active) {
1333 if (udc->clk_requested) {
1334 omap_udc_enable_clock(0);
1335 udc->clk_requested = 0;
1336 }
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 spin_unlock_irqrestore(&udc->lock, flags);
1339 return 0;
1340}
1341
1342static int omap_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1343{
1344 struct omap_udc *udc;
1345
1346 udc = container_of(gadget, struct omap_udc, gadget);
1347 if (udc->transceiver)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001348 return usb_phy_set_power(udc->transceiver, mA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return -EOPNOTSUPP;
1350}
1351
1352static int omap_pullup(struct usb_gadget *gadget, int is_on)
1353{
1354 struct omap_udc *udc;
1355 unsigned long flags;
1356
1357 udc = container_of(gadget, struct omap_udc, gadget);
1358 spin_lock_irqsave(&udc->lock, flags);
1359 udc->softconnect = (is_on != 0);
1360 if (can_pullup(udc))
1361 pullup_enable(udc);
1362 else
1363 pullup_disable(udc);
1364 spin_unlock_irqrestore(&udc->lock, flags);
1365 return 0;
1366}
1367
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001368static int omap_udc_start(struct usb_gadget_driver *driver,
1369 int (*bind)(struct usb_gadget *));
1370static int omap_udc_stop(struct usb_gadget_driver *driver);
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372static struct usb_gadget_ops omap_gadget_ops = {
1373 .get_frame = omap_get_frame,
1374 .wakeup = omap_wakeup,
1375 .set_selfpowered = omap_set_selfpowered,
1376 .vbus_session = omap_vbus_session,
1377 .vbus_draw = omap_vbus_draw,
1378 .pullup = omap_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001379 .start = omap_udc_start,
1380 .stop = omap_udc_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381};
1382
1383/*-------------------------------------------------------------------------*/
1384
1385/* dequeue ALL requests; caller holds udc->lock */
1386static void nuke(struct omap_ep *ep, int status)
1387{
1388 struct omap_req *req;
1389
1390 ep->stopped = 1;
1391
1392 if (use_dma && ep->dma_channel)
1393 dma_channel_release(ep);
1394
1395 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001396 omap_writew(UDC_CLR_EP, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (ep->bEndpointAddress && ep->bmAttributes != USB_ENDPOINT_XFER_ISOC)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001398 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 while (!list_empty(&ep->queue)) {
1401 req = list_entry(ep->queue.next, struct omap_req, queue);
1402 done(ep, req, status);
1403 }
1404}
1405
1406/* caller holds udc->lock */
1407static void udc_quiesce(struct omap_udc *udc)
1408{
1409 struct omap_ep *ep;
1410
1411 udc->gadget.speed = USB_SPEED_UNKNOWN;
1412 nuke(&udc->ep[0], -ESHUTDOWN);
1413 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list)
1414 nuke(ep, -ESHUTDOWN);
1415}
1416
1417/*-------------------------------------------------------------------------*/
1418
1419static void update_otg(struct omap_udc *udc)
1420{
1421 u16 devstat;
1422
David Brownell9cfbba72007-10-26 13:42:18 -07001423 if (!gadget_is_otg(&udc->gadget))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return;
1425
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001426 if (omap_readl(OTG_CTRL) & OTG_ID)
1427 devstat = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 else
1429 devstat = 0;
1430
1431 udc->gadget.b_hnp_enable = !!(devstat & UDC_B_HNP_ENABLE);
1432 udc->gadget.a_hnp_support = !!(devstat & UDC_A_HNP_SUPPORT);
1433 udc->gadget.a_alt_hnp_support = !!(devstat & UDC_A_ALT_HNP_SUPPORT);
1434
1435 /* Enable HNP early, avoiding races on suspend irq path.
1436 * ASSUMES OTG state machine B_BUS_REQ input is true.
1437 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001438 if (udc->gadget.b_hnp_enable) {
1439 u32 l;
1440
1441 l = omap_readl(OTG_CTRL);
1442 l |= OTG_B_HNPEN | OTG_B_BUSREQ;
1443 l &= ~OTG_PULLUP;
1444 omap_writel(l, OTG_CTRL);
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448static void ep0_irq(struct omap_udc *udc, u16 irq_src)
1449{
1450 struct omap_ep *ep0 = &udc->ep[0];
David Brownell313980c2005-04-11 15:38:25 -07001451 struct omap_req *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 ep0->irqs++;
1454
1455 /* Clear any pending requests and then scrub any rx/tx state
1456 * before starting to handle the SETUP request.
1457 */
1458 if (irq_src & UDC_SETUP) {
1459 u16 ack = irq_src & (UDC_EP0_TX|UDC_EP0_RX);
1460
1461 nuke(ep0, 0);
1462 if (ack) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001463 omap_writew(ack, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 irq_src = UDC_SETUP;
1465 }
1466 }
1467
David Brownelle6a6e472006-12-10 11:47:04 -08001468 /* IN/OUT packets mean we're in the DATA or STATUS stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 * This driver uses only uses protocol stalls (ep0 never halts),
1470 * and if we got this far the gadget driver already had a
1471 * chance to stall. Tries to be forgiving of host oddities.
1472 *
1473 * NOTE: the last chance gadget drivers have to stall control
1474 * requests is during their request completion callback.
1475 */
1476 if (!list_empty(&ep0->queue))
1477 req = container_of(ep0->queue.next, struct omap_req, queue);
1478
1479 /* IN == TX to host */
1480 if (irq_src & UDC_EP0_TX) {
1481 int stat;
1482
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001483 omap_writew(UDC_EP0_TX, UDC_IRQ_SRC);
1484 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1485 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (stat & UDC_ACK) {
1487 if (udc->ep0_in) {
1488 /* write next IN packet from response,
1489 * or set up the status stage.
1490 */
1491 if (req)
1492 stat = write_fifo(ep0, req);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001493 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (!req && udc->ep0_pending) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001495 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
1496 omap_writew(UDC_CLR_EP, UDC_CTRL);
1497 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1498 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 udc->ep0_pending = 0;
1500 } /* else: 6 wait states before it'll tx */
1501 } else {
1502 /* ack status stage of OUT transfer */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001503 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (req)
1505 done(ep0, req, 0);
1506 }
David Brownell313980c2005-04-11 15:38:25 -07001507 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 } else if (stat & UDC_STALL) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001509 omap_writew(UDC_CLR_HALT, UDC_CTRL);
1510 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001512 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
1514 }
1515
1516 /* OUT == RX from host */
1517 if (irq_src & UDC_EP0_RX) {
1518 int stat;
1519
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001520 omap_writew(UDC_EP0_RX, UDC_IRQ_SRC);
1521 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
1522 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (stat & UDC_ACK) {
1524 if (!udc->ep0_in) {
1525 stat = 0;
1526 /* read next OUT packet of request, maybe
1527 * reactiviting the fifo; stall on errors.
1528 */
1529 if (!req || (stat = read_fifo(ep0, req)) < 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001530 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 udc->ep0_pending = 0;
1532 stat = 0;
1533 } else if (stat == 0)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001534 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1535 omap_writew(0, UDC_EP_NUM);
David Brownelle6a6e472006-12-10 11:47:04 -08001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /* activate status stage */
1538 if (stat == 1) {
1539 done(ep0, req, 0);
1540 /* that may have STALLed ep0... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001541 omap_writew(UDC_EP_SEL | UDC_EP_DIR,
1542 UDC_EP_NUM);
1543 omap_writew(UDC_CLR_EP, UDC_CTRL);
1544 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1545 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 udc->ep0_pending = 0;
1547 }
1548 } else {
1549 /* ack status stage of IN transfer */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001550 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (req)
1552 done(ep0, req, 0);
1553 }
1554 } else if (stat & UDC_STALL) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001555 omap_writew(UDC_CLR_HALT, UDC_CTRL);
1556 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001558 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560 }
1561
1562 /* SETUP starts all control transfers */
1563 if (irq_src & UDC_SETUP) {
1564 union u {
1565 u16 word[4];
1566 struct usb_ctrlrequest r;
1567 } u;
1568 int status = -EINVAL;
1569 struct omap_ep *ep;
1570
1571 /* read the (latest) SETUP message */
1572 do {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001573 omap_writew(UDC_SETUP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 /* two bytes at a time */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001575 u.word[0] = omap_readw(UDC_DATA);
1576 u.word[1] = omap_readw(UDC_DATA);
1577 u.word[2] = omap_readw(UDC_DATA);
1578 u.word[3] = omap_readw(UDC_DATA);
1579 omap_writew(0, UDC_EP_NUM);
1580 } while (omap_readw(UDC_IRQ_SRC) & UDC_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
David Brownell01ee7d72007-05-25 20:40:14 -07001582#define w_value le16_to_cpu(u.r.wValue)
1583#define w_index le16_to_cpu(u.r.wIndex)
1584#define w_length le16_to_cpu(u.r.wLength)
David Brownell65111082005-04-28 13:52:31 -07001585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 /* Delegate almost all control requests to the gadget driver,
1587 * except for a handful of ch9 status/feature requests that
1588 * hardware doesn't autodecode _and_ the gadget API hides.
1589 */
1590 udc->ep0_in = (u.r.bRequestType & USB_DIR_IN) != 0;
1591 udc->ep0_set_config = 0;
1592 udc->ep0_pending = 1;
1593 ep0->stopped = 0;
1594 ep0->ackwait = 0;
1595 switch (u.r.bRequest) {
1596 case USB_REQ_SET_CONFIGURATION:
1597 /* udc needs to know when ep != 0 is valid */
1598 if (u.r.bRequestType != USB_RECIP_DEVICE)
1599 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001600 if (w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 goto do_stall;
1602 udc->ep0_set_config = 1;
David Brownell65111082005-04-28 13:52:31 -07001603 udc->ep0_reset_config = (w_value == 0);
1604 VDBG("set config %d\n", w_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /* update udc NOW since gadget driver may start
1607 * queueing requests immediately; clear config
1608 * later if it fails the request.
1609 */
1610 if (udc->ep0_reset_config)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001611 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001613 omap_writew(UDC_DEV_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 update_otg(udc);
1615 goto delegate;
1616 case USB_REQ_CLEAR_FEATURE:
1617 /* clear endpoint halt */
1618 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1619 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001620 if (w_value != USB_ENDPOINT_HALT
1621 || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 goto do_stall;
David Brownell65111082005-04-28 13:52:31 -07001623 ep = &udc->ep[w_index & 0xf];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (ep != ep0) {
David Brownell65111082005-04-28 13:52:31 -07001625 if (w_index & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 ep += 16;
1627 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
1628 || !ep->desc)
1629 goto do_stall;
1630 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001631 omap_writew(udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 ep->ackwait = 0;
1633 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001634 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 ep->ackwait = 1 + ep->double_buf;
1636 }
David Brownell313980c2005-04-11 15:38:25 -07001637 /* NOTE: assumes the host behaves sanely,
1638 * only clearing real halts. Else we may
1639 * need to kill pending transfers and then
1640 * restart the queue... very messy for DMA!
1641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643 VDBG("%s halt cleared by host\n", ep->name);
1644 goto ep0out_status_stage;
1645 case USB_REQ_SET_FEATURE:
1646 /* set endpoint halt */
1647 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1648 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001649 if (w_value != USB_ENDPOINT_HALT
1650 || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 goto do_stall;
David Brownell65111082005-04-28 13:52:31 -07001652 ep = &udc->ep[w_index & 0xf];
1653 if (w_index & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 ep += 16;
1655 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
1656 || ep == ep0 || !ep->desc)
1657 goto do_stall;
1658 if (use_dma && ep->has_dma) {
1659 /* this has rude side-effects (aborts) and
1660 * can't really work if DMA-IN is active
1661 */
1662 DBG("%s host set_halt, NYET \n", ep->name);
1663 goto do_stall;
1664 }
1665 use_ep(ep, 0);
1666 /* can't halt if fifo isn't empty... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001667 omap_writew(UDC_CLR_EP, UDC_CTRL);
1668 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 VDBG("%s halted by host\n", ep->name);
1670ep0out_status_stage:
1671 status = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001672 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1673 omap_writew(UDC_CLR_EP, UDC_CTRL);
1674 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1675 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 udc->ep0_pending = 0;
1677 break;
1678 case USB_REQ_GET_STATUS:
David Brownell8a3c1f52007-03-21 12:26:32 -07001679 /* USB_ENDPOINT_HALT status? */
1680 if (u.r.bRequestType != (USB_DIR_IN|USB_RECIP_ENDPOINT))
1681 goto intf_status;
1682
1683 /* ep0 never stalls */
1684 if (!(w_index & 0xf))
1685 goto zero_status;
1686
1687 /* only active endpoints count */
1688 ep = &udc->ep[w_index & 0xf];
1689 if (w_index & USB_DIR_IN)
1690 ep += 16;
1691 if (!ep->desc)
1692 goto do_stall;
1693
1694 /* iso never stalls */
1695 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
1696 goto zero_status;
1697
1698 /* FIXME don't assume non-halted endpoints!! */
1699 ERR("%s status, can't report\n", ep->ep.name);
1700 goto do_stall;
1701
1702intf_status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 /* return interface status. if we were pedantic,
1704 * we'd detect non-existent interfaces, and stall.
1705 */
1706 if (u.r.bRequestType
1707 != (USB_DIR_IN|USB_RECIP_INTERFACE))
1708 goto delegate;
David Brownell8a3c1f52007-03-21 12:26:32 -07001709
1710zero_status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 /* return two zero bytes */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001712 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1713 omap_writew(0, UDC_DATA);
1714 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1715 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 status = 0;
David Brownell65111082005-04-28 13:52:31 -07001717 VDBG("GET_STATUS, interface %d\n", w_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 /* next, status stage */
1719 break;
1720 default:
1721delegate:
1722 /* activate the ep0out fifo right away */
David Brownell65111082005-04-28 13:52:31 -07001723 if (!udc->ep0_in && w_length) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001724 omap_writew(0, UDC_EP_NUM);
1725 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727
1728 /* gadget drivers see class/vendor specific requests,
1729 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1730 * and more
1731 */
1732 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1733 u.r.bRequestType, u.r.bRequest,
David Brownell65111082005-04-28 13:52:31 -07001734 w_value, w_index, w_length);
1735
1736#undef w_value
1737#undef w_index
1738#undef w_length
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 /* The gadget driver may return an error here,
1741 * causing an immediate protocol stall.
1742 *
1743 * Else it must issue a response, either queueing a
1744 * response buffer for the DATA stage, or halting ep0
1745 * (causing a protocol stall, not a real halt). A
1746 * zero length buffer means no DATA stage.
1747 *
1748 * It's fine to issue that response after the setup()
1749 * call returns, and this IRQ was handled.
1750 */
1751 udc->ep0_setup = 1;
1752 spin_unlock(&udc->lock);
1753 status = udc->driver->setup (&udc->gadget, &u.r);
1754 spin_lock(&udc->lock);
1755 udc->ep0_setup = 0;
1756 }
1757
1758 if (status < 0) {
1759do_stall:
1760 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1761 u.r.bRequestType, u.r.bRequest, status);
1762 if (udc->ep0_set_config) {
1763 if (udc->ep0_reset_config)
Arjan van de Venb6c63932008-07-25 01:45:52 -07001764 WARNING("error resetting config?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001766 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001768 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 udc->ep0_pending = 0;
1770 }
1771 }
1772}
1773
1774/*-------------------------------------------------------------------------*/
1775
1776#define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1777
1778static void devstate_irq(struct omap_udc *udc, u16 irq_src)
1779{
1780 u16 devstat, change;
1781
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001782 devstat = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 change = devstat ^ udc->devstat;
1784 udc->devstat = devstat;
1785
1786 if (change & (UDC_USB_RESET|UDC_ATT)) {
1787 udc_quiesce(udc);
1788
1789 if (change & UDC_ATT) {
1790 /* driver for any external transceiver will
1791 * have called omap_vbus_session() already
1792 */
1793 if (devstat & UDC_ATT) {
1794 udc->gadget.speed = USB_SPEED_FULL;
1795 VDBG("connect\n");
1796 if (!udc->transceiver)
1797 pullup_enable(udc);
1798 // if (driver->connect) call it
1799 } else if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
1800 udc->gadget.speed = USB_SPEED_UNKNOWN;
1801 if (!udc->transceiver)
1802 pullup_disable(udc);
1803 DBG("disconnect, gadget %s\n",
1804 udc->driver->driver.name);
1805 if (udc->driver->disconnect) {
1806 spin_unlock(&udc->lock);
1807 udc->driver->disconnect(&udc->gadget);
1808 spin_lock(&udc->lock);
1809 }
1810 }
1811 change &= ~UDC_ATT;
1812 }
1813
1814 if (change & UDC_USB_RESET) {
1815 if (devstat & UDC_USB_RESET) {
1816 VDBG("RESET=1\n");
1817 } else {
1818 udc->gadget.speed = USB_SPEED_FULL;
1819 INFO("USB reset done, gadget %s\n",
1820 udc->driver->driver.name);
1821 /* ep0 traffic is legal from now on */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001822 omap_writew(UDC_DS_CHG_IE | UDC_EP0_IE,
1823 UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
1825 change &= ~UDC_USB_RESET;
1826 }
1827 }
1828 if (change & UDC_SUS) {
1829 if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
1830 // FIXME tell isp1301 to suspend/resume (?)
1831 if (devstat & UDC_SUS) {
1832 VDBG("suspend\n");
1833 update_otg(udc);
1834 /* HNP could be under way already */
1835 if (udc->gadget.speed == USB_SPEED_FULL
1836 && udc->driver->suspend) {
1837 spin_unlock(&udc->lock);
1838 udc->driver->suspend(&udc->gadget);
1839 spin_lock(&udc->lock);
1840 }
Juha Yrj?l?4e671852005-10-16 15:47:04 -07001841 if (udc->transceiver)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001842 usb_phy_set_suspend(
1843 udc->transceiver, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 } else {
1845 VDBG("resume\n");
Juha Yrj?l?4e671852005-10-16 15:47:04 -07001846 if (udc->transceiver)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001847 usb_phy_set_suspend(
1848 udc->transceiver, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (udc->gadget.speed == USB_SPEED_FULL
1850 && udc->driver->resume) {
1851 spin_unlock(&udc->lock);
1852 udc->driver->resume(&udc->gadget);
1853 spin_lock(&udc->lock);
1854 }
1855 }
1856 }
1857 change &= ~UDC_SUS;
1858 }
1859 if (!cpu_is_omap15xx() && (change & OTG_FLAGS)) {
1860 update_otg(udc);
1861 change &= ~OTG_FLAGS;
1862 }
1863
1864 change &= ~(UDC_CFG|UDC_DEF|UDC_ADD);
1865 if (change)
1866 VDBG("devstat %03x, ignore change %03x\n",
1867 devstat, change);
1868
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001869 omap_writew(UDC_DS_CHG, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
David Howells7d12e782006-10-05 14:55:46 +01001872static irqreturn_t omap_udc_irq(int irq, void *_udc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 struct omap_udc *udc = _udc;
1875 u16 irq_src;
1876 irqreturn_t status = IRQ_NONE;
1877 unsigned long flags;
1878
1879 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001880 irq_src = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 /* Device state change (usb ch9 stuff) */
1883 if (irq_src & UDC_DS_CHG) {
1884 devstate_irq(_udc, irq_src);
1885 status = IRQ_HANDLED;
1886 irq_src &= ~UDC_DS_CHG;
1887 }
1888
1889 /* EP0 control transfers */
1890 if (irq_src & (UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX)) {
1891 ep0_irq(_udc, irq_src);
1892 status = IRQ_HANDLED;
1893 irq_src &= ~(UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX);
1894 }
1895
1896 /* DMA transfer completion */
1897 if (use_dma && (irq_src & (UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT))) {
1898 dma_irq(_udc, irq_src);
1899 status = IRQ_HANDLED;
1900 irq_src &= ~(UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT);
1901 }
1902
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001903 irq_src &= ~(UDC_IRQ_SOF | UDC_EPN_TX|UDC_EPN_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (irq_src)
1905 DBG("udc_irq, unhandled %03x\n", irq_src);
1906 spin_unlock_irqrestore(&udc->lock, flags);
1907
1908 return status;
1909}
1910
1911/* workaround for seemingly-lost IRQs for RX ACKs... */
1912#define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1913#define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1914
1915static void pio_out_timer(unsigned long _ep)
1916{
1917 struct omap_ep *ep = (void *) _ep;
1918 unsigned long flags;
1919 u16 stat_flg;
1920
1921 spin_lock_irqsave(&ep->udc->lock, flags);
1922 if (!list_empty(&ep->queue) && ep->ackwait) {
David Brownelle6a6e472006-12-10 11:47:04 -08001923 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001924 stat_flg = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 if ((stat_flg & UDC_ACK) && (!(stat_flg & UDC_FIFO_EN)
1927 || (ep->double_buf && HALF_FULL(stat_flg)))) {
1928 struct omap_req *req;
1929
1930 VDBG("%s: lose, %04x\n", ep->ep.name, stat_flg);
1931 req = container_of(ep->queue.next,
1932 struct omap_req, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 (void) read_fifo(ep, req);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001934 omap_writew(ep->bEndpointAddress, UDC_EP_NUM);
1935 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 ep->ackwait = 1 + ep->double_buf;
David Brownelle6a6e472006-12-10 11:47:04 -08001937 } else
1938 deselect_ep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
1940 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1941 spin_unlock_irqrestore(&ep->udc->lock, flags);
1942}
1943
David Howells7d12e782006-10-05 14:55:46 +01001944static irqreturn_t omap_udc_pio_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
1946 u16 epn_stat, irq_src;
1947 irqreturn_t status = IRQ_NONE;
1948 struct omap_ep *ep;
1949 int epnum;
1950 struct omap_udc *udc = _dev;
1951 struct omap_req *req;
1952 unsigned long flags;
1953
1954 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001955 epn_stat = omap_readw(UDC_EPN_STAT);
1956 irq_src = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 /* handle OUT first, to avoid some wasteful NAKs */
1959 if (irq_src & UDC_EPN_RX) {
1960 epnum = (epn_stat >> 8) & 0x0f;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001961 omap_writew(UDC_EPN_RX, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 status = IRQ_HANDLED;
1963 ep = &udc->ep[epnum];
1964 ep->irqs++;
1965
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001966 omap_writew(epnum | UDC_EP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 ep->fnf = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001968 if (omap_readw(UDC_STAT_FLG) & UDC_ACK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 ep->ackwait--;
1970 if (!list_empty(&ep->queue)) {
1971 int stat;
1972 req = container_of(ep->queue.next,
1973 struct omap_req, queue);
1974 stat = read_fifo(ep, req);
1975 if (!ep->double_buf)
1976 ep->fnf = 1;
1977 }
1978 }
1979 /* min 6 clock delay before clearing EP_SEL ... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001980 epn_stat = omap_readw(UDC_EPN_STAT);
1981 epn_stat = omap_readw(UDC_EPN_STAT);
1982 omap_writew(epnum, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 /* enabling fifo _after_ clearing ACK, contrary to docs,
1985 * reduces lossage; timer still needed though (sigh).
1986 */
1987 if (ep->fnf) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001988 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 ep->ackwait = 1 + ep->double_buf;
1990 }
1991 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1992 }
1993
1994 /* then IN transfers */
1995 else if (irq_src & UDC_EPN_TX) {
1996 epnum = epn_stat & 0x0f;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001997 omap_writew(UDC_EPN_TX, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 status = IRQ_HANDLED;
1999 ep = &udc->ep[16 + epnum];
2000 ep->irqs++;
2001
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002002 omap_writew(epnum | UDC_EP_DIR | UDC_EP_SEL, UDC_EP_NUM);
2003 if (omap_readw(UDC_STAT_FLG) & UDC_ACK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 ep->ackwait = 0;
2005 if (!list_empty(&ep->queue)) {
2006 req = container_of(ep->queue.next,
2007 struct omap_req, queue);
2008 (void) write_fifo(ep, req);
2009 }
2010 }
2011 /* min 6 clock delay before clearing EP_SEL ... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002012 epn_stat = omap_readw(UDC_EPN_STAT);
2013 epn_stat = omap_readw(UDC_EPN_STAT);
2014 omap_writew(epnum | UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 /* then 6 clocks before it'd tx */
2016 }
2017
2018 spin_unlock_irqrestore(&udc->lock, flags);
2019 return status;
2020}
2021
2022#ifdef USE_ISO
David Howells7d12e782006-10-05 14:55:46 +01002023static irqreturn_t omap_udc_iso_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
2025 struct omap_udc *udc = _dev;
2026 struct omap_ep *ep;
2027 int pending = 0;
2028 unsigned long flags;
2029
2030 spin_lock_irqsave(&udc->lock, flags);
2031
2032 /* handle all non-DMA ISO transfers */
2033 list_for_each_entry (ep, &udc->iso, iso) {
2034 u16 stat;
2035 struct omap_req *req;
2036
2037 if (ep->has_dma || list_empty(&ep->queue))
2038 continue;
2039 req = list_entry(ep->queue.next, struct omap_req, queue);
2040
2041 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002042 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 /* NOTE: like the other controller drivers, this isn't
2045 * currently reporting lost or damaged frames.
2046 */
2047 if (ep->bEndpointAddress & USB_DIR_IN) {
2048 if (stat & UDC_MISS_IN)
2049 /* done(ep, req, -EPROTO) */;
2050 else
2051 write_fifo(ep, req);
2052 } else {
2053 int status = 0;
2054
2055 if (stat & UDC_NO_RXPACKET)
2056 status = -EREMOTEIO;
2057 else if (stat & UDC_ISO_ERR)
2058 status = -EILSEQ;
2059 else if (stat & UDC_DATA_FLUSH)
2060 status = -ENOSR;
2061
2062 if (status)
2063 /* done(ep, req, status) */;
2064 else
2065 read_fifo(ep, req);
2066 }
2067 deselect_ep();
2068 /* 6 wait states before next EP */
2069
2070 ep->irqs++;
2071 if (!list_empty(&ep->queue))
2072 pending = 1;
2073 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002074 if (!pending) {
2075 u16 w;
2076
2077 w = omap_readw(UDC_IRQ_EN);
2078 w &= ~UDC_SOF_IE;
2079 omap_writew(w, UDC_IRQ_EN);
2080 }
2081 omap_writew(UDC_IRQ_SOF, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 spin_unlock_irqrestore(&udc->lock, flags);
2084 return IRQ_HANDLED;
2085}
2086#endif
2087
2088/*-------------------------------------------------------------------------*/
2089
David Brownell8a3c1f52007-03-21 12:26:32 -07002090static inline int machine_without_vbus_sense(void)
David Brownelle6a6e472006-12-10 11:47:04 -08002091{
2092 return (machine_is_omap_innovator()
2093 || machine_is_omap_osk()
2094 || machine_is_omap_apollon()
2095#ifndef CONFIG_MACH_OMAP_H4_OTG
2096 || machine_is_omap_h4()
2097#endif
2098 || machine_is_sx1()
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002099 || cpu_is_omap7xx() /* No known omap7xx boards with vbus sense */
David Brownelle6a6e472006-12-10 11:47:04 -08002100 );
2101}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002103static int omap_udc_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02002104 int (*bind)(struct usb_gadget *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 int status = -ENODEV;
2107 struct omap_ep *ep;
2108 unsigned long flags;
2109
2110 /* basic sanity tests */
2111 if (!udc)
2112 return -ENODEV;
2113 if (!driver
2114 // FIXME if otg, check: driver->is_otg
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01002115 || driver->max_speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02002116 || !bind || !driver->setup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return -EINVAL;
2118
2119 spin_lock_irqsave(&udc->lock, flags);
2120 if (udc->driver) {
2121 spin_unlock_irqrestore(&udc->lock, flags);
2122 return -EBUSY;
2123 }
2124
2125 /* reset state */
2126 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
2127 ep->irqs = 0;
2128 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
2129 continue;
2130 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002131 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133 udc->ep0_pending = 0;
2134 udc->ep[0].irqs = 0;
2135 udc->softconnect = 1;
2136
2137 /* hook up the driver */
David Brownell313980c2005-04-11 15:38:25 -07002138 driver->driver.bus = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 udc->driver = driver;
2140 udc->gadget.dev.driver = &driver->driver;
2141 spin_unlock_irqrestore(&udc->lock, flags);
2142
David Brownelle6a6e472006-12-10 11:47:04 -08002143 if (udc->dc_clk != NULL)
2144 omap_udc_enable_clock(1);
2145
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02002146 status = bind(&udc->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (status) {
2148 DBG("bind to %s --> %d\n", driver->driver.name, status);
David Brownell313980c2005-04-11 15:38:25 -07002149 udc->gadget.dev.driver = NULL;
2150 udc->driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 goto done;
2152 }
2153 DBG("bound to driver %s\n", driver->driver.name);
2154
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002155 omap_writew(UDC_IRQ_SRC_MASK, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 /* connect to bus through transceiver */
2158 if (udc->transceiver) {
2159 status = otg_set_peripheral(udc->transceiver, &udc->gadget);
2160 if (status < 0) {
2161 ERR("can't bind to transceiver\n");
David Brownell6bea4762006-12-05 03:15:33 -08002162 if (driver->unbind) {
2163 driver->unbind (&udc->gadget);
2164 udc->gadget.dev.driver = NULL;
2165 udc->driver = NULL;
2166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 goto done;
2168 }
2169 } else {
2170 if (can_pullup(udc))
2171 pullup_enable (udc);
2172 else
2173 pullup_disable (udc);
2174 }
2175
2176 /* boards that don't have VBUS sensing can't autogate 48MHz;
2177 * can't enter deep sleep while a gadget driver is active.
2178 */
David Brownell8a3c1f52007-03-21 12:26:32 -07002179 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 omap_vbus_session(&udc->gadget, 1);
2181
2182done:
David Brownelle6a6e472006-12-10 11:47:04 -08002183 if (udc->dc_clk != NULL)
2184 omap_udc_enable_clock(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return status;
2186}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002188static int omap_udc_stop(struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
2190 unsigned long flags;
2191 int status = -ENODEV;
2192
2193 if (!udc)
2194 return -ENODEV;
David Brownell6bea4762006-12-05 03:15:33 -08002195 if (!driver || driver != udc->driver || !driver->unbind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 return -EINVAL;
2197
David Brownelle6a6e472006-12-10 11:47:04 -08002198 if (udc->dc_clk != NULL)
2199 omap_udc_enable_clock(1);
2200
David Brownell8a3c1f52007-03-21 12:26:32 -07002201 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 omap_vbus_session(&udc->gadget, 0);
2203
2204 if (udc->transceiver)
David Brownell313980c2005-04-11 15:38:25 -07002205 (void) otg_set_peripheral(udc->transceiver, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 else
2207 pullup_disable(udc);
2208
2209 spin_lock_irqsave(&udc->lock, flags);
2210 udc_quiesce(udc);
2211 spin_unlock_irqrestore(&udc->lock, flags);
2212
2213 driver->unbind(&udc->gadget);
David Brownell313980c2005-04-11 15:38:25 -07002214 udc->gadget.dev.driver = NULL;
2215 udc->driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
David Brownelle6a6e472006-12-10 11:47:04 -08002217 if (udc->dc_clk != NULL)
2218 omap_udc_enable_clock(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 DBG("unregistered driver '%s'\n", driver->driver.name);
2220 return status;
2221}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223/*-------------------------------------------------------------------------*/
2224
2225#ifdef CONFIG_USB_GADGET_DEBUG_FILES
2226
2227#include <linux/seq_file.h>
2228
2229static const char proc_filename[] = "driver/udc";
2230
2231#define FOURBITS "%s%s%s%s"
2232#define EIGHTBITS FOURBITS FOURBITS
2233
2234static void proc_ep_show(struct seq_file *s, struct omap_ep *ep)
2235{
2236 u16 stat_flg;
2237 struct omap_req *req;
2238 char buf[20];
2239
2240 use_ep(ep, 0);
2241
2242 if (use_dma && ep->has_dma)
2243 snprintf(buf, sizeof buf, "(%cxdma%d lch%d) ",
2244 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
2245 ep->dma_channel - 1, ep->lch);
2246 else
2247 buf[0] = 0;
2248
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002249 stat_flg = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 seq_printf(s,
2251 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS "%s\n",
2252 ep->name, buf,
2253 ep->double_buf ? "dbuf " : "",
2254 ({char *s; switch(ep->ackwait){
2255 case 0: s = ""; break;
2256 case 1: s = "(ackw) "; break;
2257 case 2: s = "(ackw2) "; break;
2258 default: s = "(?) "; break;
2259 } s;}),
2260 ep->irqs, stat_flg,
2261 (stat_flg & UDC_NO_RXPACKET) ? "no_rxpacket " : "",
2262 (stat_flg & UDC_MISS_IN) ? "miss_in " : "",
2263 (stat_flg & UDC_DATA_FLUSH) ? "data_flush " : "",
2264 (stat_flg & UDC_ISO_ERR) ? "iso_err " : "",
2265 (stat_flg & UDC_ISO_FIFO_EMPTY) ? "iso_fifo_empty " : "",
2266 (stat_flg & UDC_ISO_FIFO_FULL) ? "iso_fifo_full " : "",
2267 (stat_flg & UDC_EP_HALTED) ? "HALT " : "",
2268 (stat_flg & UDC_STALL) ? "STALL " : "",
2269 (stat_flg & UDC_NAK) ? "NAK " : "",
2270 (stat_flg & UDC_ACK) ? "ACK " : "",
2271 (stat_flg & UDC_FIFO_EN) ? "fifo_en " : "",
2272 (stat_flg & UDC_NON_ISO_FIFO_EMPTY) ? "fifo_empty " : "",
2273 (stat_flg & UDC_NON_ISO_FIFO_FULL) ? "fifo_full " : "");
2274
2275 if (list_empty (&ep->queue))
2276 seq_printf(s, "\t(queue empty)\n");
2277 else
2278 list_for_each_entry (req, &ep->queue, queue) {
2279 unsigned length = req->req.actual;
2280
2281 if (use_dma && buf[0]) {
2282 length += ((ep->bEndpointAddress & USB_DIR_IN)
2283 ? dma_src_len : dma_dest_len)
2284 (ep, req->req.dma + length);
2285 buf[0] = 0;
2286 }
2287 seq_printf(s, "\treq %p len %d/%d buf %p\n",
2288 &req->req, length,
2289 req->req.length, req->req.buf);
2290 }
2291}
2292
2293static char *trx_mode(unsigned m, int enabled)
2294{
2295 switch (m) {
2296 case 0: return enabled ? "*6wire" : "unused";
2297 case 1: return "4wire";
2298 case 2: return "3wire";
David Brownelle6a6e472006-12-10 11:47:04 -08002299 case 3: return "6wire";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 default: return "unknown";
2301 }
2302}
2303
2304static int proc_otg_show(struct seq_file *s)
2305{
2306 u32 tmp;
Paul Walmsley4814ced2010-10-08 11:40:20 -06002307 u32 trans = 0;
2308 char *ctrl_name = "(UNKNOWN)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Paul Walmsley4814ced2010-10-08 11:40:20 -06002310 /* XXX This needs major revision for OMAP2+ */
Dmitry Baryshkove12cc342008-08-07 16:29:25 +04002311 tmp = omap_readl(OTG_REV);
Paul Walmsley4814ced2010-10-08 11:40:20 -06002312 if (cpu_class_is_omap1()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002313 ctrl_name = "tranceiver_ctrl";
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002314 trans = omap_readw(USB_TRANSCEIVER_CTRL);
David Brownelle6a6e472006-12-10 11:47:04 -08002315 }
2316 seq_printf(s, "\nOTG rev %d.%d, %s %05x\n",
2317 tmp >> 4, tmp & 0xf, ctrl_name, trans);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002318 tmp = omap_readw(OTG_SYSCON_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 seq_printf(s, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2320 FOURBITS "\n", tmp,
2321 trx_mode(USB2_TRX_MODE(tmp), trans & CONF_USB2_UNI_R),
2322 trx_mode(USB1_TRX_MODE(tmp), trans & CONF_USB1_UNI_R),
David Brownell65111082005-04-28 13:52:31 -07002323 (USB0_TRX_MODE(tmp) == 0 && !cpu_is_omap1710())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 ? "internal"
2325 : trx_mode(USB0_TRX_MODE(tmp), 1),
2326 (tmp & OTG_IDLE_EN) ? " !otg" : "",
2327 (tmp & HST_IDLE_EN) ? " !host" : "",
2328 (tmp & DEV_IDLE_EN) ? " !dev" : "",
2329 (tmp & OTG_RESET_DONE) ? " reset_done" : " reset_active");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002330 tmp = omap_readl(OTG_SYSCON_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 seq_printf(s, "otg_syscon2 %08x%s" EIGHTBITS
2332 " b_ase_brst=%d hmc=%d\n", tmp,
2333 (tmp & OTG_EN) ? " otg_en" : "",
2334 (tmp & USBX_SYNCHRO) ? " synchro" : "",
2335 // much more SRP stuff
2336 (tmp & SRP_DATA) ? " srp_data" : "",
2337 (tmp & SRP_VBUS) ? " srp_vbus" : "",
2338 (tmp & OTG_PADEN) ? " otg_paden" : "",
2339 (tmp & HMC_PADEN) ? " hmc_paden" : "",
2340 (tmp & UHOST_EN) ? " uhost_en" : "",
2341 (tmp & HMC_TLLSPEED) ? " tllspeed" : "",
2342 (tmp & HMC_TLLATTACH) ? " tllattach" : "",
2343 B_ASE_BRST(tmp),
2344 OTG_HMC(tmp));
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002345 tmp = omap_readl(OTG_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 seq_printf(s, "otg_ctrl %06x" EIGHTBITS EIGHTBITS "%s\n", tmp,
2347 (tmp & OTG_ASESSVLD) ? " asess" : "",
2348 (tmp & OTG_BSESSEND) ? " bsess_end" : "",
2349 (tmp & OTG_BSESSVLD) ? " bsess" : "",
2350 (tmp & OTG_VBUSVLD) ? " vbus" : "",
2351 (tmp & OTG_ID) ? " id" : "",
2352 (tmp & OTG_DRIVER_SEL) ? " DEVICE" : " HOST",
2353 (tmp & OTG_A_SETB_HNPEN) ? " a_setb_hnpen" : "",
2354 (tmp & OTG_A_BUSREQ) ? " a_bus" : "",
2355 (tmp & OTG_B_HNPEN) ? " b_hnpen" : "",
2356 (tmp & OTG_B_BUSREQ) ? " b_bus" : "",
2357 (tmp & OTG_BUSDROP) ? " busdrop" : "",
2358 (tmp & OTG_PULLDOWN) ? " down" : "",
2359 (tmp & OTG_PULLUP) ? " up" : "",
2360 (tmp & OTG_DRV_VBUS) ? " drv" : "",
2361 (tmp & OTG_PD_VBUS) ? " pd_vb" : "",
2362 (tmp & OTG_PU_VBUS) ? " pu_vb" : "",
2363 (tmp & OTG_PU_ID) ? " pu_id" : ""
2364 );
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002365 tmp = omap_readw(OTG_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 seq_printf(s, "otg_irq_en %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002367 tmp = omap_readw(OTG_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 seq_printf(s, "otg_irq_src %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002369 tmp = omap_readw(OTG_OUTCTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 seq_printf(s, "otg_outctrl %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002371 tmp = omap_readw(OTG_TEST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 seq_printf(s, "otg_test %04x" "\n", tmp);
David Brownell313980c2005-04-11 15:38:25 -07002373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
2376static int proc_udc_show(struct seq_file *s, void *_)
2377{
2378 u32 tmp;
2379 struct omap_ep *ep;
2380 unsigned long flags;
2381
2382 spin_lock_irqsave(&udc->lock, flags);
2383
2384 seq_printf(s, "%s, version: " DRIVER_VERSION
2385#ifdef USE_ISO
2386 " (iso)"
2387#endif
2388 "%s\n",
2389 driver_desc,
2390 use_dma ? " (dma)" : "");
2391
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002392 tmp = omap_readw(UDC_REV) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 seq_printf(s,
2394 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2395 "hmc %d, transceiver %s\n",
2396 tmp >> 4, tmp & 0xf,
2397 fifo_mode,
2398 udc->driver ? udc->driver->driver.name : "(none)",
2399 HMC,
David Brownelle6a6e472006-12-10 11:47:04 -08002400 udc->transceiver
2401 ? udc->transceiver->label
2402 : ((cpu_is_omap1710() || cpu_is_omap24xx())
2403 ? "external" : "(none)"));
2404 if (cpu_class_is_omap1()) {
2405 seq_printf(s, "ULPD control %04x req %04x status %04x\n",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002406 omap_readw(ULPD_CLOCK_CTRL),
2407 omap_readw(ULPD_SOFT_REQ),
2408 omap_readw(ULPD_STATUS_REQ));
David Brownelle6a6e472006-12-10 11:47:04 -08002409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 /* OTG controller registers */
2412 if (!cpu_is_omap15xx())
2413 proc_otg_show(s);
2414
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002415 tmp = omap_readw(UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 seq_printf(s, "\nsyscon1 %04x" EIGHTBITS "\n", tmp,
2417 (tmp & UDC_CFG_LOCK) ? " cfg_lock" : "",
2418 (tmp & UDC_DATA_ENDIAN) ? " data_endian" : "",
2419 (tmp & UDC_DMA_ENDIAN) ? " dma_endian" : "",
2420 (tmp & UDC_NAK_EN) ? " nak" : "",
2421 (tmp & UDC_AUTODECODE_DIS) ? " autodecode_dis" : "",
2422 (tmp & UDC_SELF_PWR) ? " self_pwr" : "",
2423 (tmp & UDC_SOFF_DIS) ? " soff_dis" : "",
2424 (tmp & UDC_PULLUP_EN) ? " PULLUP" : "");
2425 // syscon2 is write-only
2426
2427 /* UDC controller registers */
2428 if (!(tmp & UDC_PULLUP_EN)) {
2429 seq_printf(s, "(suspended)\n");
2430 spin_unlock_irqrestore(&udc->lock, flags);
2431 return 0;
2432 }
2433
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002434 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 seq_printf(s, "devstat %04x" EIGHTBITS "%s%s\n", tmp,
2436 (tmp & UDC_B_HNP_ENABLE) ? " b_hnp" : "",
2437 (tmp & UDC_A_HNP_SUPPORT) ? " a_hnp" : "",
2438 (tmp & UDC_A_ALT_HNP_SUPPORT) ? " a_alt_hnp" : "",
2439 (tmp & UDC_R_WK_OK) ? " r_wk_ok" : "",
2440 (tmp & UDC_USB_RESET) ? " usb_reset" : "",
2441 (tmp & UDC_SUS) ? " SUS" : "",
2442 (tmp & UDC_CFG) ? " CFG" : "",
2443 (tmp & UDC_ADD) ? " ADD" : "",
2444 (tmp & UDC_DEF) ? " DEF" : "",
2445 (tmp & UDC_ATT) ? " ATT" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002446 seq_printf(s, "sof %04x\n", omap_readw(UDC_SOF));
2447 tmp = omap_readw(UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 seq_printf(s, "irq_en %04x" FOURBITS "%s\n", tmp,
2449 (tmp & UDC_SOF_IE) ? " sof" : "",
2450 (tmp & UDC_EPN_RX_IE) ? " epn_rx" : "",
2451 (tmp & UDC_EPN_TX_IE) ? " epn_tx" : "",
2452 (tmp & UDC_DS_CHG_IE) ? " ds_chg" : "",
2453 (tmp & UDC_EP0_IE) ? " ep0" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002454 tmp = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 seq_printf(s, "irq_src %04x" EIGHTBITS "%s%s\n", tmp,
2456 (tmp & UDC_TXN_DONE) ? " txn_done" : "",
2457 (tmp & UDC_RXN_CNT) ? " rxn_cnt" : "",
2458 (tmp & UDC_RXN_EOT) ? " rxn_eot" : "",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002459 (tmp & UDC_IRQ_SOF) ? " sof" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 (tmp & UDC_EPN_RX) ? " epn_rx" : "",
2461 (tmp & UDC_EPN_TX) ? " epn_tx" : "",
2462 (tmp & UDC_DS_CHG) ? " ds_chg" : "",
2463 (tmp & UDC_SETUP) ? " setup" : "",
2464 (tmp & UDC_EP0_RX) ? " ep0out" : "",
2465 (tmp & UDC_EP0_TX) ? " ep0in" : "");
2466 if (use_dma) {
2467 unsigned i;
2468
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002469 tmp = omap_readw(UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 seq_printf(s, "dma_irq_en %04x%s" EIGHTBITS "\n", tmp,
2471 (tmp & UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2472 (tmp & UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2473 (tmp & UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2474
2475 (tmp & UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2476 (tmp & UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2477 (tmp & UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2478
2479 (tmp & UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2480 (tmp & UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2481 (tmp & UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2482
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002483 tmp = omap_readw(UDC_RXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 seq_printf(s, "rxdma_cfg %04x\n", tmp);
2485 if (tmp) {
2486 for (i = 0; i < 3; i++) {
2487 if ((tmp & (0x0f << (i * 4))) == 0)
2488 continue;
2489 seq_printf(s, "rxdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002490 omap_readw(UDC_RXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
2492 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002493 tmp = omap_readw(UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 seq_printf(s, "txdma_cfg %04x\n", tmp);
2495 if (tmp) {
2496 for (i = 0; i < 3; i++) {
2497 if (!(tmp & (0x0f << (i * 4))))
2498 continue;
2499 seq_printf(s, "txdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002500 omap_readw(UDC_TXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502 }
2503 }
2504
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002505 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (tmp & UDC_ATT) {
2507 proc_ep_show(s, &udc->ep[0]);
2508 if (tmp & UDC_ADD) {
2509 list_for_each_entry (ep, &udc->gadget.ep_list,
2510 ep.ep_list) {
2511 if (ep->desc)
2512 proc_ep_show(s, ep);
2513 }
2514 }
2515 }
2516 spin_unlock_irqrestore(&udc->lock, flags);
2517 return 0;
2518}
2519
2520static int proc_udc_open(struct inode *inode, struct file *file)
2521{
David Brownell313980c2005-04-11 15:38:25 -07002522 return single_open(file, proc_udc_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03002525static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002526 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 .open = proc_udc_open,
2528 .read = seq_read,
2529 .llseek = seq_lseek,
2530 .release = single_release,
2531};
2532
2533static void create_proc_file(void)
2534{
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002535 proc_create(proc_filename, 0, NULL, &proc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536}
2537
2538static void remove_proc_file(void)
2539{
David Brownell313980c2005-04-11 15:38:25 -07002540 remove_proc_entry(proc_filename, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542
2543#else
2544
2545static inline void create_proc_file(void) {}
2546static inline void remove_proc_file(void) {}
2547
2548#endif
2549
2550/*-------------------------------------------------------------------------*/
2551
2552/* Before this controller can enumerate, we need to pick an endpoint
2553 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2554 * buffer space among the endpoints we'll be operating.
David Brownell65111082005-04-28 13:52:31 -07002555 *
2556 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002557 * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
David Brownell65111082005-04-28 13:52:31 -07002558 * capability yet though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 */
2560static unsigned __init
2561omap_ep_setup(char *name, u8 addr, u8 type,
2562 unsigned buf, unsigned maxp, int dbuf)
2563{
2564 struct omap_ep *ep;
2565 u16 epn_rxtx = 0;
2566
2567 /* OUT endpoints first, then IN */
2568 ep = &udc->ep[addr & 0xf];
2569 if (addr & USB_DIR_IN)
2570 ep += 16;
2571
2572 /* in case of ep init table bugs */
2573 BUG_ON(ep->name[0]);
2574
2575 /* chip setup ... bit values are same for IN, OUT */
2576 if (type == USB_ENDPOINT_XFER_ISOC) {
2577 switch (maxp) {
2578 case 8: epn_rxtx = 0 << 12; break;
2579 case 16: epn_rxtx = 1 << 12; break;
2580 case 32: epn_rxtx = 2 << 12; break;
2581 case 64: epn_rxtx = 3 << 12; break;
2582 case 128: epn_rxtx = 4 << 12; break;
2583 case 256: epn_rxtx = 5 << 12; break;
2584 case 512: epn_rxtx = 6 << 12; break;
2585 default: BUG();
2586 }
2587 epn_rxtx |= UDC_EPN_RX_ISO;
2588 dbuf = 1;
2589 } else {
2590 /* double-buffering "not supported" on 15xx,
David Brownelle6a6e472006-12-10 11:47:04 -08002591 * and ignored for PIO-IN on newer chips
2592 * (for more reliable behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 */
David Brownelle6a6e472006-12-10 11:47:04 -08002594 if (!use_dma || cpu_is_omap15xx() || cpu_is_omap24xx())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 dbuf = 0;
2596
2597 switch (maxp) {
2598 case 8: epn_rxtx = 0 << 12; break;
2599 case 16: epn_rxtx = 1 << 12; break;
2600 case 32: epn_rxtx = 2 << 12; break;
2601 case 64: epn_rxtx = 3 << 12; break;
2602 default: BUG();
2603 }
2604 if (dbuf && addr)
2605 epn_rxtx |= UDC_EPN_RX_DB;
2606 init_timer(&ep->timer);
2607 ep->timer.function = pio_out_timer;
2608 ep->timer.data = (unsigned long) ep;
2609 }
2610 if (addr)
2611 epn_rxtx |= UDC_EPN_RX_VALID;
2612 BUG_ON(buf & 0x07);
2613 epn_rxtx |= buf >> 3;
2614
2615 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2616 name, addr, epn_rxtx, maxp, dbuf ? "x2" : "", buf);
2617
2618 if (addr & USB_DIR_IN)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002619 omap_writew(epn_rxtx, UDC_EP_TX(addr & 0xf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002621 omap_writew(epn_rxtx, UDC_EP_RX(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 /* next endpoint's buffer starts after this one's */
2624 buf += maxp;
2625 if (dbuf)
2626 buf += maxp;
2627 BUG_ON(buf > 2048);
2628
2629 /* set up driver data structures */
2630 BUG_ON(strlen(name) >= sizeof ep->name);
2631 strlcpy(ep->name, name, sizeof ep->name);
2632 INIT_LIST_HEAD(&ep->queue);
2633 INIT_LIST_HEAD(&ep->iso);
2634 ep->bEndpointAddress = addr;
2635 ep->bmAttributes = type;
2636 ep->double_buf = dbuf;
David Brownelle6a6e472006-12-10 11:47:04 -08002637 ep->udc = udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 ep->ep.name = ep->name;
2640 ep->ep.ops = &omap_ep_ops;
2641 ep->ep.maxpacket = ep->maxpacket = maxp;
2642 list_add_tail (&ep->ep.ep_list, &udc->gadget.ep_list);
2643
2644 return buf;
2645}
2646
2647static void omap_udc_release(struct device *dev)
2648{
2649 complete(udc->done);
2650 kfree (udc);
David Brownell313980c2005-04-11 15:38:25 -07002651 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
2654static int __init
Heikki Krogerus86753812012-02-13 13:24:02 +02002655omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 unsigned tmp, buf;
2658
2659 /* abolish any previous hardware state */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002660 omap_writew(0, UDC_SYSCON1);
2661 omap_writew(0, UDC_IRQ_EN);
2662 omap_writew(UDC_IRQ_SRC_MASK, UDC_IRQ_SRC);
2663 omap_writew(0, UDC_DMA_IRQ_EN);
2664 omap_writew(0, UDC_RXDMA_CFG);
2665 omap_writew(0, UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 /* UDC_PULLUP_EN gates the chip clock */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002668 // OTG_SYSCON_1 |= DEV_IDLE_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Christoph Lametere94b1762006-12-06 20:33:17 -08002670 udc = kzalloc(sizeof(*udc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (!udc)
2672 return -ENOMEM;
2673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 spin_lock_init (&udc->lock);
2675
2676 udc->gadget.ops = &omap_gadget_ops;
2677 udc->gadget.ep0 = &udc->ep[0].ep;
2678 INIT_LIST_HEAD(&udc->gadget.ep_list);
2679 INIT_LIST_HEAD(&udc->iso);
2680 udc->gadget.speed = USB_SPEED_UNKNOWN;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01002681 udc->gadget.max_speed = USB_SPEED_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 udc->gadget.name = driver_name;
2683
2684 device_initialize(&udc->gadget.dev);
Kay Sievers0031a062008-05-02 06:02:41 +02002685 dev_set_name(&udc->gadget.dev, "gadget");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 udc->gadget.dev.release = omap_udc_release;
2687 udc->gadget.dev.parent = &odev->dev;
2688 if (use_dma)
2689 udc->gadget.dev.dma_mask = odev->dev.dma_mask;
2690
2691 udc->transceiver = xceiv;
2692
2693 /* ep0 is special; put it right after the SETUP buffer */
2694 buf = omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL,
2695 8 /* after SETUP */, 64 /* maxpacket */, 0);
2696 list_del_init(&udc->ep[0].ep.ep_list);
2697
2698 /* initially disable all non-ep0 endpoints */
2699 for (tmp = 1; tmp < 15; tmp++) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002700 omap_writew(0, UDC_EP_RX(tmp));
2701 omap_writew(0, UDC_EP_TX(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
2703
2704#define OMAP_BULK_EP(name,addr) \
2705 buf = omap_ep_setup(name "-bulk", addr, \
2706 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2707#define OMAP_INT_EP(name,addr, maxp) \
2708 buf = omap_ep_setup(name "-int", addr, \
2709 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2710#define OMAP_ISO_EP(name,addr, maxp) \
2711 buf = omap_ep_setup(name "-iso", addr, \
2712 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2713
2714 switch (fifo_mode) {
2715 case 0:
2716 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2717 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2718 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2719 break;
2720 case 1:
2721 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2722 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
David Brownell313980c2005-04-11 15:38:25 -07002723 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 OMAP_BULK_EP("ep3in", USB_DIR_IN | 3);
2726 OMAP_BULK_EP("ep4out", USB_DIR_OUT | 4);
David Brownell313980c2005-04-11 15:38:25 -07002727 OMAP_INT_EP("ep10in", USB_DIR_IN | 10, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
2729 OMAP_BULK_EP("ep5in", USB_DIR_IN | 5);
2730 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
David Brownell313980c2005-04-11 15:38:25 -07002731 OMAP_INT_EP("ep11in", USB_DIR_IN | 11, 16);
2732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2734 OMAP_BULK_EP("ep6out", USB_DIR_OUT | 6);
David Brownell313980c2005-04-11 15:38:25 -07002735 OMAP_INT_EP("ep12in", USB_DIR_IN | 12, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 OMAP_BULK_EP("ep7in", USB_DIR_IN | 7);
2738 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
David Brownell313980c2005-04-11 15:38:25 -07002739 OMAP_INT_EP("ep13in", USB_DIR_IN | 13, 16);
2740 OMAP_INT_EP("ep13out", USB_DIR_OUT | 13, 16);
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 OMAP_BULK_EP("ep8in", USB_DIR_IN | 8);
2743 OMAP_BULK_EP("ep8out", USB_DIR_OUT | 8);
David Brownell313980c2005-04-11 15:38:25 -07002744 OMAP_INT_EP("ep14in", USB_DIR_IN | 14, 16);
2745 OMAP_INT_EP("ep14out", USB_DIR_OUT | 14, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
David Brownell313980c2005-04-11 15:38:25 -07002747 OMAP_BULK_EP("ep15in", USB_DIR_IN | 15);
2748 OMAP_BULK_EP("ep15out", USB_DIR_OUT | 15);
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 break;
2751
2752#ifdef USE_ISO
2753 case 2: /* mixed iso/bulk */
2754 OMAP_ISO_EP("ep1in", USB_DIR_IN | 1, 256);
2755 OMAP_ISO_EP("ep2out", USB_DIR_OUT | 2, 256);
2756 OMAP_ISO_EP("ep3in", USB_DIR_IN | 3, 128);
2757 OMAP_ISO_EP("ep4out", USB_DIR_OUT | 4, 128);
2758
2759 OMAP_INT_EP("ep5in", USB_DIR_IN | 5, 16);
2760
2761 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2762 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
2763 OMAP_INT_EP("ep8in", USB_DIR_IN | 8, 16);
2764 break;
2765 case 3: /* mixed bulk/iso */
2766 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2767 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2768 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2769
2770 OMAP_BULK_EP("ep4in", USB_DIR_IN | 4);
2771 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
2772 OMAP_INT_EP("ep6in", USB_DIR_IN | 6, 16);
2773
2774 OMAP_ISO_EP("ep7in", USB_DIR_IN | 7, 256);
2775 OMAP_ISO_EP("ep8out", USB_DIR_OUT | 8, 256);
2776 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2777 break;
2778#endif
2779
2780 /* add more modes as needed */
2781
2782 default:
2783 ERR("unsupported fifo_mode #%d\n", fifo_mode);
2784 return -ENODEV;
2785 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002786 omap_writew(UDC_CFG_LOCK|UDC_SELF_PWR, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 INFO("fifo mode %d, %d bytes not used\n", fifo_mode, 2048 - buf);
2788 return 0;
2789}
2790
Russell King3ae5eae2005-11-09 22:32:44 +00002791static int __init omap_udc_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 int status = -ENODEV;
2794 int hmc;
Heikki Krogerus86753812012-02-13 13:24:02 +02002795 struct usb_phy *xceiv = NULL;
David Brownell313980c2005-04-11 15:38:25 -07002796 const char *type = NULL;
Russell King3ae5eae2005-11-09 22:32:44 +00002797 struct omap_usb_config *config = pdev->dev.platform_data;
David Brownelle6a6e472006-12-10 11:47:04 -08002798 struct clk *dc_clk;
2799 struct clk *hhc_clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 /* NOTE: "knows" the order of the resources! */
David Brownelle6a6e472006-12-10 11:47:04 -08002802 if (!request_mem_region(pdev->resource[0].start,
Russell King3ae5eae2005-11-09 22:32:44 +00002803 pdev->resource[0].end - pdev->resource[0].start + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 driver_name)) {
2805 DBG("request_mem_region failed\n");
2806 return -EBUSY;
2807 }
2808
David Brownelle6a6e472006-12-10 11:47:04 -08002809 if (cpu_is_omap16xx()) {
2810 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2811 hhc_clk = clk_get(&pdev->dev, "usb_hhc_ck");
2812 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2813 /* can't use omap_udc_enable_clock yet */
2814 clk_enable(dc_clk);
2815 clk_enable(hhc_clk);
2816 udelay(100);
2817 }
2818
2819 if (cpu_is_omap24xx()) {
2820 dc_clk = clk_get(&pdev->dev, "usb_fck");
2821 hhc_clk = clk_get(&pdev->dev, "usb_l4_ick");
2822 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2823 /* can't use omap_udc_enable_clock yet */
2824 clk_enable(dc_clk);
2825 clk_enable(hhc_clk);
2826 udelay(100);
2827 }
2828
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002829 if (cpu_is_omap7xx()) {
2830 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2831 hhc_clk = clk_get(&pdev->dev, "l3_ocpi_ck");
2832 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2833 /* can't use omap_udc_enable_clock yet */
2834 clk_enable(dc_clk);
2835 clk_enable(hhc_clk);
2836 udelay(100);
2837 }
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 INFO("OMAP UDC rev %d.%d%s\n",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002840 omap_readw(UDC_REV) >> 4, omap_readw(UDC_REV) & 0xf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 config->otg ? ", Mini-AB" : "");
2842
2843 /* use the mode given to us by board init code */
2844 if (cpu_is_omap15xx()) {
2845 hmc = HMC_1510;
2846 type = "(unknown)";
2847
David Brownell8a3c1f52007-03-21 12:26:32 -07002848 if (machine_without_vbus_sense()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 /* just set up software VBUS detect, and then
2850 * later rig it so we always report VBUS.
2851 * FIXME without really sensing VBUS, we can't
2852 * know when to turn PULLUP_EN on/off; and that
2853 * means we always "need" the 48MHz clock.
2854 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002855 u32 tmp = omap_readl(FUNC_MUX_CTRL_0);
2856 tmp &= ~VBUS_CTRL_1510;
2857 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 tmp |= VBUS_MODE_1510;
2859 tmp &= ~VBUS_CTRL_1510;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002860 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 }
2862 } else {
David Brownell65111082005-04-28 13:52:31 -07002863 /* The transceiver may package some GPIO logic or handle
2864 * loopback and/or transceiverless setup; if we find one,
2865 * use it. Except for OTG, we don't _need_ to talk to one;
2866 * but not having one probably means no VBUS detection.
2867 */
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02002868 xceiv = usb_get_transceiver();
David Brownell65111082005-04-28 13:52:31 -07002869 if (xceiv)
2870 type = xceiv->label;
2871 else if (config->otg) {
2872 DBG("OTG requires external transceiver!\n");
2873 goto cleanup0;
2874 }
2875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 hmc = HMC_1610;
David Brownelle6a6e472006-12-10 11:47:04 -08002877
2878 if (cpu_is_omap24xx()) {
2879 /* this could be transceiverless in one of the
2880 * "we don't need to know" modes.
2881 */
2882 type = "external";
2883 goto known;
2884 }
2885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 switch (hmc) {
David Brownell313980c2005-04-11 15:38:25 -07002887 case 0: /* POWERUP DEFAULT == 0 */
2888 case 4:
2889 case 12:
2890 case 20:
2891 if (!cpu_is_omap1710()) {
2892 type = "integrated";
2893 break;
2894 }
2895 /* FALL THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 case 3:
2897 case 11:
2898 case 16:
2899 case 19:
2900 case 25:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 if (!xceiv) {
2902 DBG("external transceiver not registered!\n");
David Brownell313980c2005-04-11 15:38:25 -07002903 type = "unknown";
David Brownell65111082005-04-28 13:52:31 -07002904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 case 21: /* internal loopback */
David Brownell313980c2005-04-11 15:38:25 -07002907 type = "loopback";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 break;
2909 case 14: /* transceiverless */
David Brownell65111082005-04-28 13:52:31 -07002910 if (cpu_is_omap1710())
2911 goto bad_on_1710;
2912 /* FALL THROUGH */
2913 case 13:
2914 case 15:
David Brownell313980c2005-04-11 15:38:25 -07002915 type = "no";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 break;
2917
2918 default:
David Brownell65111082005-04-28 13:52:31 -07002919bad_on_1710:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 ERR("unrecognized UDC HMC mode %d\n", hmc);
David Brownell65111082005-04-28 13:52:31 -07002921 goto cleanup0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 }
2923 }
David Brownelle6a6e472006-12-10 11:47:04 -08002924known:
David Brownell313980c2005-04-11 15:38:25 -07002925 INFO("hmc mode %d, %s transceiver\n", hmc, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
2927 /* a "gadget" abstracts/virtualizes the controller */
Russell King3ae5eae2005-11-09 22:32:44 +00002928 status = omap_udc_setup(pdev, xceiv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 if (status) {
2930 goto cleanup0;
2931 }
David Brownell313980c2005-04-11 15:38:25 -07002932 xceiv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 // "udc" is now valid
2934 pullup_disable(udc);
2935#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2936 udc->gadget.is_otg = (config->otg != 0);
2937#endif
2938
David Brownell65111082005-04-28 13:52:31 -07002939 /* starting with omap1710 es2.0, clear toggle is a separate bit */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002940 if (omap_readw(UDC_REV) >= 0x61)
David Brownell65111082005-04-28 13:52:31 -07002941 udc->clr_halt = UDC_RESET_EP | UDC_CLRDATA_TOGGLE;
2942 else
2943 udc->clr_halt = UDC_RESET_EP;
2944
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 /* USB general purpose IRQ: ep0, state changes, dma, etc */
Russell King3ae5eae2005-11-09 22:32:44 +00002946 status = request_irq(pdev->resource[1].start, omap_udc_irq,
Thomas Gleixnerd54b5ca2006-07-01 19:29:44 -07002947 IRQF_SAMPLE_RANDOM, driver_name, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002949 ERR("can't get irq %d, err %d\n",
2950 (int) pdev->resource[1].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 goto cleanup1;
2952 }
2953
2954 /* USB "non-iso" IRQ (PIO for all but ep0) */
Russell King3ae5eae2005-11-09 22:32:44 +00002955 status = request_irq(pdev->resource[2].start, omap_udc_pio_irq,
Thomas Gleixnerd54b5ca2006-07-01 19:29:44 -07002956 IRQF_SAMPLE_RANDOM, "omap_udc pio", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002958 ERR("can't get irq %d, err %d\n",
2959 (int) pdev->resource[2].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 goto cleanup2;
2961 }
2962#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00002963 status = request_irq(pdev->resource[3].start, omap_udc_iso_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002964 0, "omap_udc iso", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002966 ERR("can't get irq %d, err %d\n",
2967 (int) pdev->resource[3].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 goto cleanup3;
2969 }
2970#endif
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002971 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002972 udc->dc_clk = dc_clk;
2973 udc->hhc_clk = hhc_clk;
2974 clk_disable(hhc_clk);
2975 clk_disable(dc_clk);
2976 }
2977
2978 if (cpu_is_omap24xx()) {
2979 udc->dc_clk = dc_clk;
2980 udc->hhc_clk = hhc_clk;
2981 /* FIXME OMAP2 don't release hhc & dc clock */
2982#if 0
2983 clk_disable(hhc_clk);
2984 clk_disable(dc_clk);
2985#endif
2986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 create_proc_file();
David Brownelle6a6e472006-12-10 11:47:04 -08002989 status = device_add(&udc->gadget.dev);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002990 if (status)
2991 goto cleanup4;
2992
2993 status = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
David Brownelle6a6e472006-12-10 11:47:04 -08002994 if (!status)
2995 return status;
2996 /* If fail, fall through */
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002997cleanup4:
2998 remove_proc_file();
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000#ifdef USE_ISO
3001cleanup3:
Russell King3ae5eae2005-11-09 22:32:44 +00003002 free_irq(pdev->resource[2].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003#endif
3004
3005cleanup2:
Russell King3ae5eae2005-11-09 22:32:44 +00003006 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008cleanup1:
3009 kfree (udc);
David Brownell313980c2005-04-11 15:38:25 -07003010 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
3012cleanup0:
3013 if (xceiv)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02003014 usb_put_transceiver(xceiv);
David Brownelle6a6e472006-12-10 11:47:04 -08003015
Cory Maccarrone45f780a2009-11-22 10:10:52 -08003016 if (cpu_is_omap16xx() || cpu_is_omap24xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08003017 clk_disable(hhc_clk);
3018 clk_disable(dc_clk);
3019 clk_put(hhc_clk);
3020 clk_put(dc_clk);
3021 }
3022
Russell King3ae5eae2005-11-09 22:32:44 +00003023 release_mem_region(pdev->resource[0].start,
3024 pdev->resource[0].end - pdev->resource[0].start + 1);
David Brownelle6a6e472006-12-10 11:47:04 -08003025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 return status;
3027}
3028
Russell King3ae5eae2005-11-09 22:32:44 +00003029static int __exit omap_udc_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07003031 DECLARE_COMPLETION_ONSTACK(done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 if (!udc)
3034 return -ENODEV;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003035
3036 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08003037 if (udc->driver)
3038 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 udc->done = &done;
3041
3042 pullup_disable(udc);
3043 if (udc->transceiver) {
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02003044 usb_put_transceiver(udc->transceiver);
David Brownell313980c2005-04-11 15:38:25 -07003045 udc->transceiver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003047 omap_writew(0, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049 remove_proc_file();
3050
3051#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00003052 free_irq(pdev->resource[3].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053#endif
Russell King3ae5eae2005-11-09 22:32:44 +00003054 free_irq(pdev->resource[2].start, udc);
3055 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
David Brownelle6a6e472006-12-10 11:47:04 -08003057 if (udc->dc_clk) {
3058 if (udc->clk_requested)
3059 omap_udc_enable_clock(0);
3060 clk_put(udc->hhc_clk);
3061 clk_put(udc->dc_clk);
3062 }
3063
Russell King3ae5eae2005-11-09 22:32:44 +00003064 release_mem_region(pdev->resource[0].start,
3065 pdev->resource[0].end - pdev->resource[0].start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
3067 device_unregister(&udc->gadget.dev);
3068 wait_for_completion(&done);
3069
3070 return 0;
3071}
3072
David Brownell313980c2005-04-11 15:38:25 -07003073/* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3074 * system is forced into deep sleep
3075 *
3076 * REVISIT we should probably reject suspend requests when there's a host
3077 * session active, rather than disconnecting, at least on boards that can
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003078 * report VBUS irqs (UDC_DEVSTAT.UDC_ATT). And in any case, we need to
David Brownell313980c2005-04-11 15:38:25 -07003079 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3080 * may involve talking to an external transceiver (e.g. isp1301).
3081 */
david-b@pacbell.net1d7beee2005-06-29 07:00:56 -07003082
Russell King3ae5eae2005-11-09 22:32:44 +00003083static int omap_udc_suspend(struct platform_device *dev, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
David Brownell313980c2005-04-11 15:38:25 -07003085 u32 devstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003087 devstat = omap_readw(UDC_DEVSTAT);
David Brownell313980c2005-04-11 15:38:25 -07003088
3089 /* we're requesting 48 MHz clock if the pullup is enabled
3090 * (== we're attached to the host) and we're not suspended,
3091 * which would prevent entry to deep sleep...
3092 */
3093 if ((devstat & UDC_ATT) != 0 && (devstat & UDC_SUS) == 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07003094 WARNING("session active; suspend requires disconnect\n");
David Brownell313980c2005-04-11 15:38:25 -07003095 omap_pullup(&udc->gadget, 0);
3096 }
3097
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 return 0;
3099}
3100
Russell King3ae5eae2005-11-09 22:32:44 +00003101static int omap_udc_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 DBG("resume + wakeup/SRP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 omap_pullup(&udc->gadget, 1);
3105
3106 /* maybe the host would enumerate us if we nudged it */
3107 msleep(100);
3108 return omap_wakeup(&udc->gadget);
3109}
3110
3111/*-------------------------------------------------------------------------*/
3112
Russell King3ae5eae2005-11-09 22:32:44 +00003113static struct platform_driver udc_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 .remove = __exit_p(omap_udc_remove),
3115 .suspend = omap_udc_suspend,
3116 .resume = omap_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003117 .driver = {
3118 .owner = THIS_MODULE,
3119 .name = (char *) driver_name,
3120 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121};
3122
3123static int __init udc_init(void)
3124{
Cory Maccarrone45f780a2009-11-22 10:10:52 -08003125 /* Disable DMA for omap7xx -- it doesn't work right. */
3126 if (cpu_is_omap7xx())
3127 use_dma = 0;
3128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 INFO("%s, version: " DRIVER_VERSION
3130#ifdef USE_ISO
3131 " (iso)"
3132#endif
3133 "%s\n", driver_desc,
3134 use_dma ? " (dma)" : "");
David Brownell864e28b2009-04-16 13:51:46 -07003135 return platform_driver_probe(&udc_driver, omap_udc_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
3137module_init(udc_init);
3138
3139static void __exit udc_exit(void)
3140{
Russell King3ae5eae2005-11-09 22:32:44 +00003141 platform_driver_unregister(&udc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142}
3143module_exit(udc_exit);
3144
3145MODULE_DESCRIPTION(DRIVER_DESC);
3146MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07003147MODULE_ALIAS("platform:omap_udc");