blob: 3b4b6dd0f95a9a2a473a31fdb72cf8921cc64a2c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/unaligned.h>
44#include <asm/mach-types.h>
45
Tony Lindgrence491cf2009-10-20 09:40:47 -070046#include <plat/dma.h>
47#include <plat/usb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include "omap_udc.h"
50
51#undef USB_TRACE
52
53/* bulk DMA seems to be behaving for both IN and OUT */
54#define USE_DMA
55
56/* ISO too */
57#define USE_ISO
58
59#define DRIVER_DESC "OMAP UDC driver"
60#define DRIVER_VERSION "4 October 2004"
61
62#define DMA_ADDR_INVALID (~(dma_addr_t)0)
63
Kyungmin Park527ea732007-11-21 15:13:15 -080064#define OMAP2_DMA_CH(ch) (((ch) - 1) << 1)
65#define OMAP24XX_DMA(name, ch) (OMAP24XX_DMA_##name + OMAP2_DMA_CH(ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
69 * D+ pullup to allow enumeration. That's too early for the gadget
70 * framework to use from usb_endpoint_enable(), which happens after
71 * enumeration as part of activating an interface. (But if we add an
72 * optional new "UDC not yet running" state to the gadget driver model,
73 * even just during driver binding, the endpoint autoconfig logic is the
74 * natural spot to manufacture new endpoints.)
75 *
76 * So instead of using endpoint enable calls to control the hardware setup,
77 * this driver defines a "fifo mode" parameter. It's used during driver
78 * initialization to choose among a set of pre-defined endpoint configs.
79 * See omap_udc_setup() for available modes, or to add others. That code
80 * lives in an init section, so use this driver as a module if you need
81 * to change the fifo mode after the kernel boots.
82 *
83 * Gadget drivers normally ignore endpoints they don't care about, and
84 * won't include them in configuration descriptors. That means only
85 * misbehaving hosts would even notice they exist.
86 */
87#ifdef USE_ISO
88static unsigned fifo_mode = 3;
89#else
90static unsigned fifo_mode = 0;
91#endif
92
93/* "modprobe omap_udc fifo_mode=42", or else as a kernel
94 * boot parameter "omap_udc:fifo_mode=42"
95 */
96module_param (fifo_mode, uint, 0);
David Brownelle6a6e472006-12-10 11:47:04 -080097MODULE_PARM_DESC (fifo_mode, "endpoint configuration");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#ifdef USE_DMA
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030100static bool use_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/* "modprobe omap_udc use_dma=y", or else as a kernel
103 * boot parameter "omap_udc:use_dma=y"
104 */
105module_param (use_dma, bool, 0);
106MODULE_PARM_DESC (use_dma, "enable/disable DMA");
107#else /* !USE_DMA */
108
109/* save a bit of code */
110#define use_dma 0
111#endif /* !USE_DMA */
112
113
114static const char driver_name [] = "omap_udc";
115static const char driver_desc [] = DRIVER_DESC;
116
117/*-------------------------------------------------------------------------*/
118
119/* there's a notion of "current endpoint" for modifying endpoint
David Brownelle6a6e472006-12-10 11:47:04 -0800120 * state, and PIO access to its FIFO.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
122
123static void use_ep(struct omap_ep *ep, u16 select)
124{
125 u16 num = ep->bEndpointAddress & 0x0f;
126
127 if (ep->bEndpointAddress & USB_DIR_IN)
128 num |= UDC_EP_DIR;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300129 omap_writew(num | select, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* when select, MUST deselect later !! */
131}
132
133static inline void deselect_ep(void)
134{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300135 u16 w;
136
137 w = omap_readw(UDC_EP_NUM);
138 w &= ~UDC_EP_SEL;
139 omap_writew(w, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* 6 wait states before TX will happen */
141}
142
143static void dma_channel_claim(struct omap_ep *ep, unsigned preferred);
144
145/*-------------------------------------------------------------------------*/
146
147static int omap_ep_enable(struct usb_ep *_ep,
148 const struct usb_endpoint_descriptor *desc)
149{
150 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
151 struct omap_udc *udc;
152 unsigned long flags;
153 u16 maxp;
154
155 /* catch various bogus parameters */
156 if (!_ep || !desc || ep->desc
157 || desc->bDescriptorType != USB_DT_ENDPOINT
158 || ep->bEndpointAddress != desc->bEndpointAddress
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700159 || ep->maxpacket < usb_endpoint_maxp(desc)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800160 DBG("%s, bad ep or descriptor\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return -EINVAL;
162 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700163 maxp = usb_endpoint_maxp(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
165 && maxp != ep->maxpacket)
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700166 || usb_endpoint_maxp(desc) > ep->maxpacket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 || !desc->wMaxPacketSize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800168 DBG("%s, bad %s maxpacket\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return -ERANGE;
170 }
171
172#ifdef USE_ISO
173 if ((desc->bmAttributes == USB_ENDPOINT_XFER_ISOC
174 && desc->bInterval != 1)) {
175 /* hardware wants period = 1; USB allows 2^(Interval-1) */
176 DBG("%s, unsupported ISO period %dms\n", _ep->name,
177 1 << (desc->bInterval - 1));
178 return -EDOM;
179 }
180#else
181 if (desc->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
182 DBG("%s, ISO nyet\n", _ep->name);
183 return -EDOM;
184 }
185#endif
186
187 /* xfer types must match, except that interrupt ~= bulk */
188 if (ep->bmAttributes != desc->bmAttributes
189 && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
190 && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800191 DBG("%s, %s type mismatch\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EINVAL;
193 }
194
195 udc = ep->udc;
196 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800197 DBG("%s, bogus device state\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return -ESHUTDOWN;
199 }
200
201 spin_lock_irqsave(&udc->lock, flags);
202
203 ep->desc = desc;
204 ep->irqs = 0;
205 ep->stopped = 0;
206 ep->ep.maxpacket = maxp;
207
208 /* set endpoint to initial state */
209 ep->dma_channel = 0;
210 ep->has_dma = 0;
211 ep->lch = -1;
212 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300213 omap_writew(udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 ep->ackwait = 0;
215 deselect_ep();
216
217 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
218 list_add(&ep->iso, &udc->iso);
219
220 /* maybe assign a DMA channel to this endpoint */
221 if (use_dma && desc->bmAttributes == USB_ENDPOINT_XFER_BULK)
222 /* FIXME ISO can dma, but prefers first channel */
223 dma_channel_claim(ep, 0);
224
225 /* PIO OUT may RX packets */
226 if (desc->bmAttributes != USB_ENDPOINT_XFER_ISOC
227 && !ep->has_dma
228 && !(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300229 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ep->ackwait = 1 + ep->double_buf;
231 }
232
233 spin_unlock_irqrestore(&udc->lock, flags);
234 VDBG("%s enabled\n", _ep->name);
235 return 0;
236}
237
238static void nuke(struct omap_ep *, int status);
239
240static int omap_ep_disable(struct usb_ep *_ep)
241{
242 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
243 unsigned long flags;
244
245 if (!_ep || !ep->desc) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800246 DBG("%s, %s not enabled\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 _ep ? ep->ep.name : NULL);
248 return -EINVAL;
249 }
250
251 spin_lock_irqsave(&ep->udc->lock, flags);
David Brownell313980c2005-04-11 15:38:25 -0700252 ep->desc = NULL;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200253 ep->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)
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001216 retval = otg_start_srp(udc->transceiver->otg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
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) {
Heikki Krogerus6e13c652012-02-13 13:24:20 +02002159 status = otg_set_peripheral(udc->transceiver->otg,
2160 &udc->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (status < 0) {
2162 ERR("can't bind to transceiver\n");
David Brownell6bea4762006-12-05 03:15:33 -08002163 if (driver->unbind) {
2164 driver->unbind (&udc->gadget);
2165 udc->gadget.dev.driver = NULL;
2166 udc->driver = NULL;
2167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 goto done;
2169 }
2170 } else {
2171 if (can_pullup(udc))
2172 pullup_enable (udc);
2173 else
2174 pullup_disable (udc);
2175 }
2176
2177 /* boards that don't have VBUS sensing can't autogate 48MHz;
2178 * can't enter deep sleep while a gadget driver is active.
2179 */
David Brownell8a3c1f52007-03-21 12:26:32 -07002180 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 omap_vbus_session(&udc->gadget, 1);
2182
2183done:
David Brownelle6a6e472006-12-10 11:47:04 -08002184 if (udc->dc_clk != NULL)
2185 omap_udc_enable_clock(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return status;
2187}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002189static int omap_udc_stop(struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
2191 unsigned long flags;
2192 int status = -ENODEV;
2193
2194 if (!udc)
2195 return -ENODEV;
David Brownell6bea4762006-12-05 03:15:33 -08002196 if (!driver || driver != udc->driver || !driver->unbind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return -EINVAL;
2198
David Brownelle6a6e472006-12-10 11:47:04 -08002199 if (udc->dc_clk != NULL)
2200 omap_udc_enable_clock(1);
2201
David Brownell8a3c1f52007-03-21 12:26:32 -07002202 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 omap_vbus_session(&udc->gadget, 0);
2204
2205 if (udc->transceiver)
Heikki Krogerus6e13c652012-02-13 13:24:20 +02002206 (void) otg_set_peripheral(udc->transceiver->otg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 else
2208 pullup_disable(udc);
2209
2210 spin_lock_irqsave(&udc->lock, flags);
2211 udc_quiesce(udc);
2212 spin_unlock_irqrestore(&udc->lock, flags);
2213
2214 driver->unbind(&udc->gadget);
David Brownell313980c2005-04-11 15:38:25 -07002215 udc->gadget.dev.driver = NULL;
2216 udc->driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
David Brownelle6a6e472006-12-10 11:47:04 -08002218 if (udc->dc_clk != NULL)
2219 omap_udc_enable_clock(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 DBG("unregistered driver '%s'\n", driver->driver.name);
2221 return status;
2222}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224/*-------------------------------------------------------------------------*/
2225
2226#ifdef CONFIG_USB_GADGET_DEBUG_FILES
2227
2228#include <linux/seq_file.h>
2229
2230static const char proc_filename[] = "driver/udc";
2231
2232#define FOURBITS "%s%s%s%s"
2233#define EIGHTBITS FOURBITS FOURBITS
2234
2235static void proc_ep_show(struct seq_file *s, struct omap_ep *ep)
2236{
2237 u16 stat_flg;
2238 struct omap_req *req;
2239 char buf[20];
2240
2241 use_ep(ep, 0);
2242
2243 if (use_dma && ep->has_dma)
2244 snprintf(buf, sizeof buf, "(%cxdma%d lch%d) ",
2245 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
2246 ep->dma_channel - 1, ep->lch);
2247 else
2248 buf[0] = 0;
2249
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002250 stat_flg = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 seq_printf(s,
2252 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS "%s\n",
2253 ep->name, buf,
2254 ep->double_buf ? "dbuf " : "",
2255 ({char *s; switch(ep->ackwait){
2256 case 0: s = ""; break;
2257 case 1: s = "(ackw) "; break;
2258 case 2: s = "(ackw2) "; break;
2259 default: s = "(?) "; break;
2260 } s;}),
2261 ep->irqs, stat_flg,
2262 (stat_flg & UDC_NO_RXPACKET) ? "no_rxpacket " : "",
2263 (stat_flg & UDC_MISS_IN) ? "miss_in " : "",
2264 (stat_flg & UDC_DATA_FLUSH) ? "data_flush " : "",
2265 (stat_flg & UDC_ISO_ERR) ? "iso_err " : "",
2266 (stat_flg & UDC_ISO_FIFO_EMPTY) ? "iso_fifo_empty " : "",
2267 (stat_flg & UDC_ISO_FIFO_FULL) ? "iso_fifo_full " : "",
2268 (stat_flg & UDC_EP_HALTED) ? "HALT " : "",
2269 (stat_flg & UDC_STALL) ? "STALL " : "",
2270 (stat_flg & UDC_NAK) ? "NAK " : "",
2271 (stat_flg & UDC_ACK) ? "ACK " : "",
2272 (stat_flg & UDC_FIFO_EN) ? "fifo_en " : "",
2273 (stat_flg & UDC_NON_ISO_FIFO_EMPTY) ? "fifo_empty " : "",
2274 (stat_flg & UDC_NON_ISO_FIFO_FULL) ? "fifo_full " : "");
2275
2276 if (list_empty (&ep->queue))
2277 seq_printf(s, "\t(queue empty)\n");
2278 else
2279 list_for_each_entry (req, &ep->queue, queue) {
2280 unsigned length = req->req.actual;
2281
2282 if (use_dma && buf[0]) {
2283 length += ((ep->bEndpointAddress & USB_DIR_IN)
2284 ? dma_src_len : dma_dest_len)
2285 (ep, req->req.dma + length);
2286 buf[0] = 0;
2287 }
2288 seq_printf(s, "\treq %p len %d/%d buf %p\n",
2289 &req->req, length,
2290 req->req.length, req->req.buf);
2291 }
2292}
2293
2294static char *trx_mode(unsigned m, int enabled)
2295{
2296 switch (m) {
2297 case 0: return enabled ? "*6wire" : "unused";
2298 case 1: return "4wire";
2299 case 2: return "3wire";
David Brownelle6a6e472006-12-10 11:47:04 -08002300 case 3: return "6wire";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 default: return "unknown";
2302 }
2303}
2304
2305static int proc_otg_show(struct seq_file *s)
2306{
2307 u32 tmp;
Paul Walmsley4814ced2010-10-08 11:40:20 -06002308 u32 trans = 0;
2309 char *ctrl_name = "(UNKNOWN)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Paul Walmsley4814ced2010-10-08 11:40:20 -06002311 /* XXX This needs major revision for OMAP2+ */
Dmitry Baryshkove12cc342008-08-07 16:29:25 +04002312 tmp = omap_readl(OTG_REV);
Paul Walmsley4814ced2010-10-08 11:40:20 -06002313 if (cpu_class_is_omap1()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002314 ctrl_name = "tranceiver_ctrl";
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002315 trans = omap_readw(USB_TRANSCEIVER_CTRL);
David Brownelle6a6e472006-12-10 11:47:04 -08002316 }
2317 seq_printf(s, "\nOTG rev %d.%d, %s %05x\n",
2318 tmp >> 4, tmp & 0xf, ctrl_name, trans);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002319 tmp = omap_readw(OTG_SYSCON_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 seq_printf(s, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2321 FOURBITS "\n", tmp,
2322 trx_mode(USB2_TRX_MODE(tmp), trans & CONF_USB2_UNI_R),
2323 trx_mode(USB1_TRX_MODE(tmp), trans & CONF_USB1_UNI_R),
David Brownell65111082005-04-28 13:52:31 -07002324 (USB0_TRX_MODE(tmp) == 0 && !cpu_is_omap1710())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 ? "internal"
2326 : trx_mode(USB0_TRX_MODE(tmp), 1),
2327 (tmp & OTG_IDLE_EN) ? " !otg" : "",
2328 (tmp & HST_IDLE_EN) ? " !host" : "",
2329 (tmp & DEV_IDLE_EN) ? " !dev" : "",
2330 (tmp & OTG_RESET_DONE) ? " reset_done" : " reset_active");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002331 tmp = omap_readl(OTG_SYSCON_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 seq_printf(s, "otg_syscon2 %08x%s" EIGHTBITS
2333 " b_ase_brst=%d hmc=%d\n", tmp,
2334 (tmp & OTG_EN) ? " otg_en" : "",
2335 (tmp & USBX_SYNCHRO) ? " synchro" : "",
2336 // much more SRP stuff
2337 (tmp & SRP_DATA) ? " srp_data" : "",
2338 (tmp & SRP_VBUS) ? " srp_vbus" : "",
2339 (tmp & OTG_PADEN) ? " otg_paden" : "",
2340 (tmp & HMC_PADEN) ? " hmc_paden" : "",
2341 (tmp & UHOST_EN) ? " uhost_en" : "",
2342 (tmp & HMC_TLLSPEED) ? " tllspeed" : "",
2343 (tmp & HMC_TLLATTACH) ? " tllattach" : "",
2344 B_ASE_BRST(tmp),
2345 OTG_HMC(tmp));
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002346 tmp = omap_readl(OTG_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 seq_printf(s, "otg_ctrl %06x" EIGHTBITS EIGHTBITS "%s\n", tmp,
2348 (tmp & OTG_ASESSVLD) ? " asess" : "",
2349 (tmp & OTG_BSESSEND) ? " bsess_end" : "",
2350 (tmp & OTG_BSESSVLD) ? " bsess" : "",
2351 (tmp & OTG_VBUSVLD) ? " vbus" : "",
2352 (tmp & OTG_ID) ? " id" : "",
2353 (tmp & OTG_DRIVER_SEL) ? " DEVICE" : " HOST",
2354 (tmp & OTG_A_SETB_HNPEN) ? " a_setb_hnpen" : "",
2355 (tmp & OTG_A_BUSREQ) ? " a_bus" : "",
2356 (tmp & OTG_B_HNPEN) ? " b_hnpen" : "",
2357 (tmp & OTG_B_BUSREQ) ? " b_bus" : "",
2358 (tmp & OTG_BUSDROP) ? " busdrop" : "",
2359 (tmp & OTG_PULLDOWN) ? " down" : "",
2360 (tmp & OTG_PULLUP) ? " up" : "",
2361 (tmp & OTG_DRV_VBUS) ? " drv" : "",
2362 (tmp & OTG_PD_VBUS) ? " pd_vb" : "",
2363 (tmp & OTG_PU_VBUS) ? " pu_vb" : "",
2364 (tmp & OTG_PU_ID) ? " pu_id" : ""
2365 );
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002366 tmp = omap_readw(OTG_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 seq_printf(s, "otg_irq_en %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002368 tmp = omap_readw(OTG_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 seq_printf(s, "otg_irq_src %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002370 tmp = omap_readw(OTG_OUTCTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 seq_printf(s, "otg_outctrl %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002372 tmp = omap_readw(OTG_TEST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 seq_printf(s, "otg_test %04x" "\n", tmp);
David Brownell313980c2005-04-11 15:38:25 -07002374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377static int proc_udc_show(struct seq_file *s, void *_)
2378{
2379 u32 tmp;
2380 struct omap_ep *ep;
2381 unsigned long flags;
2382
2383 spin_lock_irqsave(&udc->lock, flags);
2384
2385 seq_printf(s, "%s, version: " DRIVER_VERSION
2386#ifdef USE_ISO
2387 " (iso)"
2388#endif
2389 "%s\n",
2390 driver_desc,
2391 use_dma ? " (dma)" : "");
2392
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002393 tmp = omap_readw(UDC_REV) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 seq_printf(s,
2395 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2396 "hmc %d, transceiver %s\n",
2397 tmp >> 4, tmp & 0xf,
2398 fifo_mode,
2399 udc->driver ? udc->driver->driver.name : "(none)",
2400 HMC,
David Brownelle6a6e472006-12-10 11:47:04 -08002401 udc->transceiver
2402 ? udc->transceiver->label
2403 : ((cpu_is_omap1710() || cpu_is_omap24xx())
2404 ? "external" : "(none)"));
2405 if (cpu_class_is_omap1()) {
2406 seq_printf(s, "ULPD control %04x req %04x status %04x\n",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002407 omap_readw(ULPD_CLOCK_CTRL),
2408 omap_readw(ULPD_SOFT_REQ),
2409 omap_readw(ULPD_STATUS_REQ));
David Brownelle6a6e472006-12-10 11:47:04 -08002410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 /* OTG controller registers */
2413 if (!cpu_is_omap15xx())
2414 proc_otg_show(s);
2415
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002416 tmp = omap_readw(UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 seq_printf(s, "\nsyscon1 %04x" EIGHTBITS "\n", tmp,
2418 (tmp & UDC_CFG_LOCK) ? " cfg_lock" : "",
2419 (tmp & UDC_DATA_ENDIAN) ? " data_endian" : "",
2420 (tmp & UDC_DMA_ENDIAN) ? " dma_endian" : "",
2421 (tmp & UDC_NAK_EN) ? " nak" : "",
2422 (tmp & UDC_AUTODECODE_DIS) ? " autodecode_dis" : "",
2423 (tmp & UDC_SELF_PWR) ? " self_pwr" : "",
2424 (tmp & UDC_SOFF_DIS) ? " soff_dis" : "",
2425 (tmp & UDC_PULLUP_EN) ? " PULLUP" : "");
2426 // syscon2 is write-only
2427
2428 /* UDC controller registers */
2429 if (!(tmp & UDC_PULLUP_EN)) {
2430 seq_printf(s, "(suspended)\n");
2431 spin_unlock_irqrestore(&udc->lock, flags);
2432 return 0;
2433 }
2434
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002435 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 seq_printf(s, "devstat %04x" EIGHTBITS "%s%s\n", tmp,
2437 (tmp & UDC_B_HNP_ENABLE) ? " b_hnp" : "",
2438 (tmp & UDC_A_HNP_SUPPORT) ? " a_hnp" : "",
2439 (tmp & UDC_A_ALT_HNP_SUPPORT) ? " a_alt_hnp" : "",
2440 (tmp & UDC_R_WK_OK) ? " r_wk_ok" : "",
2441 (tmp & UDC_USB_RESET) ? " usb_reset" : "",
2442 (tmp & UDC_SUS) ? " SUS" : "",
2443 (tmp & UDC_CFG) ? " CFG" : "",
2444 (tmp & UDC_ADD) ? " ADD" : "",
2445 (tmp & UDC_DEF) ? " DEF" : "",
2446 (tmp & UDC_ATT) ? " ATT" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002447 seq_printf(s, "sof %04x\n", omap_readw(UDC_SOF));
2448 tmp = omap_readw(UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 seq_printf(s, "irq_en %04x" FOURBITS "%s\n", tmp,
2450 (tmp & UDC_SOF_IE) ? " sof" : "",
2451 (tmp & UDC_EPN_RX_IE) ? " epn_rx" : "",
2452 (tmp & UDC_EPN_TX_IE) ? " epn_tx" : "",
2453 (tmp & UDC_DS_CHG_IE) ? " ds_chg" : "",
2454 (tmp & UDC_EP0_IE) ? " ep0" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002455 tmp = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 seq_printf(s, "irq_src %04x" EIGHTBITS "%s%s\n", tmp,
2457 (tmp & UDC_TXN_DONE) ? " txn_done" : "",
2458 (tmp & UDC_RXN_CNT) ? " rxn_cnt" : "",
2459 (tmp & UDC_RXN_EOT) ? " rxn_eot" : "",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002460 (tmp & UDC_IRQ_SOF) ? " sof" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 (tmp & UDC_EPN_RX) ? " epn_rx" : "",
2462 (tmp & UDC_EPN_TX) ? " epn_tx" : "",
2463 (tmp & UDC_DS_CHG) ? " ds_chg" : "",
2464 (tmp & UDC_SETUP) ? " setup" : "",
2465 (tmp & UDC_EP0_RX) ? " ep0out" : "",
2466 (tmp & UDC_EP0_TX) ? " ep0in" : "");
2467 if (use_dma) {
2468 unsigned i;
2469
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002470 tmp = omap_readw(UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 seq_printf(s, "dma_irq_en %04x%s" EIGHTBITS "\n", tmp,
2472 (tmp & UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2473 (tmp & UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2474 (tmp & UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2475
2476 (tmp & UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2477 (tmp & UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2478 (tmp & UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2479
2480 (tmp & UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2481 (tmp & UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2482 (tmp & UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2483
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002484 tmp = omap_readw(UDC_RXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 seq_printf(s, "rxdma_cfg %04x\n", tmp);
2486 if (tmp) {
2487 for (i = 0; i < 3; i++) {
2488 if ((tmp & (0x0f << (i * 4))) == 0)
2489 continue;
2490 seq_printf(s, "rxdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002491 omap_readw(UDC_RXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002494 tmp = omap_readw(UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 seq_printf(s, "txdma_cfg %04x\n", tmp);
2496 if (tmp) {
2497 for (i = 0; i < 3; i++) {
2498 if (!(tmp & (0x0f << (i * 4))))
2499 continue;
2500 seq_printf(s, "txdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002501 omap_readw(UDC_TXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
2503 }
2504 }
2505
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002506 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (tmp & UDC_ATT) {
2508 proc_ep_show(s, &udc->ep[0]);
2509 if (tmp & UDC_ADD) {
2510 list_for_each_entry (ep, &udc->gadget.ep_list,
2511 ep.ep_list) {
2512 if (ep->desc)
2513 proc_ep_show(s, ep);
2514 }
2515 }
2516 }
2517 spin_unlock_irqrestore(&udc->lock, flags);
2518 return 0;
2519}
2520
2521static int proc_udc_open(struct inode *inode, struct file *file)
2522{
David Brownell313980c2005-04-11 15:38:25 -07002523 return single_open(file, proc_udc_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
2525
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03002526static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002527 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 .open = proc_udc_open,
2529 .read = seq_read,
2530 .llseek = seq_lseek,
2531 .release = single_release,
2532};
2533
2534static void create_proc_file(void)
2535{
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002536 proc_create(proc_filename, 0, NULL, &proc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537}
2538
2539static void remove_proc_file(void)
2540{
David Brownell313980c2005-04-11 15:38:25 -07002541 remove_proc_entry(proc_filename, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
2544#else
2545
2546static inline void create_proc_file(void) {}
2547static inline void remove_proc_file(void) {}
2548
2549#endif
2550
2551/*-------------------------------------------------------------------------*/
2552
2553/* Before this controller can enumerate, we need to pick an endpoint
2554 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2555 * buffer space among the endpoints we'll be operating.
David Brownell65111082005-04-28 13:52:31 -07002556 *
2557 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002558 * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
David Brownell65111082005-04-28 13:52:31 -07002559 * capability yet though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 */
2561static unsigned __init
2562omap_ep_setup(char *name, u8 addr, u8 type,
2563 unsigned buf, unsigned maxp, int dbuf)
2564{
2565 struct omap_ep *ep;
2566 u16 epn_rxtx = 0;
2567
2568 /* OUT endpoints first, then IN */
2569 ep = &udc->ep[addr & 0xf];
2570 if (addr & USB_DIR_IN)
2571 ep += 16;
2572
2573 /* in case of ep init table bugs */
2574 BUG_ON(ep->name[0]);
2575
2576 /* chip setup ... bit values are same for IN, OUT */
2577 if (type == USB_ENDPOINT_XFER_ISOC) {
2578 switch (maxp) {
2579 case 8: epn_rxtx = 0 << 12; break;
2580 case 16: epn_rxtx = 1 << 12; break;
2581 case 32: epn_rxtx = 2 << 12; break;
2582 case 64: epn_rxtx = 3 << 12; break;
2583 case 128: epn_rxtx = 4 << 12; break;
2584 case 256: epn_rxtx = 5 << 12; break;
2585 case 512: epn_rxtx = 6 << 12; break;
2586 default: BUG();
2587 }
2588 epn_rxtx |= UDC_EPN_RX_ISO;
2589 dbuf = 1;
2590 } else {
2591 /* double-buffering "not supported" on 15xx,
David Brownelle6a6e472006-12-10 11:47:04 -08002592 * and ignored for PIO-IN on newer chips
2593 * (for more reliable behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
David Brownelle6a6e472006-12-10 11:47:04 -08002595 if (!use_dma || cpu_is_omap15xx() || cpu_is_omap24xx())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 dbuf = 0;
2597
2598 switch (maxp) {
2599 case 8: epn_rxtx = 0 << 12; break;
2600 case 16: epn_rxtx = 1 << 12; break;
2601 case 32: epn_rxtx = 2 << 12; break;
2602 case 64: epn_rxtx = 3 << 12; break;
2603 default: BUG();
2604 }
2605 if (dbuf && addr)
2606 epn_rxtx |= UDC_EPN_RX_DB;
2607 init_timer(&ep->timer);
2608 ep->timer.function = pio_out_timer;
2609 ep->timer.data = (unsigned long) ep;
2610 }
2611 if (addr)
2612 epn_rxtx |= UDC_EPN_RX_VALID;
2613 BUG_ON(buf & 0x07);
2614 epn_rxtx |= buf >> 3;
2615
2616 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2617 name, addr, epn_rxtx, maxp, dbuf ? "x2" : "", buf);
2618
2619 if (addr & USB_DIR_IN)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002620 omap_writew(epn_rxtx, UDC_EP_TX(addr & 0xf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002622 omap_writew(epn_rxtx, UDC_EP_RX(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 /* next endpoint's buffer starts after this one's */
2625 buf += maxp;
2626 if (dbuf)
2627 buf += maxp;
2628 BUG_ON(buf > 2048);
2629
2630 /* set up driver data structures */
2631 BUG_ON(strlen(name) >= sizeof ep->name);
2632 strlcpy(ep->name, name, sizeof ep->name);
2633 INIT_LIST_HEAD(&ep->queue);
2634 INIT_LIST_HEAD(&ep->iso);
2635 ep->bEndpointAddress = addr;
2636 ep->bmAttributes = type;
2637 ep->double_buf = dbuf;
David Brownelle6a6e472006-12-10 11:47:04 -08002638 ep->udc = udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640 ep->ep.name = ep->name;
2641 ep->ep.ops = &omap_ep_ops;
2642 ep->ep.maxpacket = ep->maxpacket = maxp;
2643 list_add_tail (&ep->ep.ep_list, &udc->gadget.ep_list);
2644
2645 return buf;
2646}
2647
2648static void omap_udc_release(struct device *dev)
2649{
2650 complete(udc->done);
2651 kfree (udc);
David Brownell313980c2005-04-11 15:38:25 -07002652 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
2655static int __init
Heikki Krogerus86753812012-02-13 13:24:02 +02002656omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 unsigned tmp, buf;
2659
2660 /* abolish any previous hardware state */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002661 omap_writew(0, UDC_SYSCON1);
2662 omap_writew(0, UDC_IRQ_EN);
2663 omap_writew(UDC_IRQ_SRC_MASK, UDC_IRQ_SRC);
2664 omap_writew(0, UDC_DMA_IRQ_EN);
2665 omap_writew(0, UDC_RXDMA_CFG);
2666 omap_writew(0, UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 /* UDC_PULLUP_EN gates the chip clock */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002669 // OTG_SYSCON_1 |= DEV_IDLE_EN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Christoph Lametere94b1762006-12-06 20:33:17 -08002671 udc = kzalloc(sizeof(*udc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (!udc)
2673 return -ENOMEM;
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 spin_lock_init (&udc->lock);
2676
2677 udc->gadget.ops = &omap_gadget_ops;
2678 udc->gadget.ep0 = &udc->ep[0].ep;
2679 INIT_LIST_HEAD(&udc->gadget.ep_list);
2680 INIT_LIST_HEAD(&udc->iso);
2681 udc->gadget.speed = USB_SPEED_UNKNOWN;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01002682 udc->gadget.max_speed = USB_SPEED_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 udc->gadget.name = driver_name;
2684
2685 device_initialize(&udc->gadget.dev);
Kay Sievers0031a062008-05-02 06:02:41 +02002686 dev_set_name(&udc->gadget.dev, "gadget");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 udc->gadget.dev.release = omap_udc_release;
2688 udc->gadget.dev.parent = &odev->dev;
2689 if (use_dma)
2690 udc->gadget.dev.dma_mask = odev->dev.dma_mask;
2691
2692 udc->transceiver = xceiv;
2693
2694 /* ep0 is special; put it right after the SETUP buffer */
2695 buf = omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL,
2696 8 /* after SETUP */, 64 /* maxpacket */, 0);
2697 list_del_init(&udc->ep[0].ep.ep_list);
2698
2699 /* initially disable all non-ep0 endpoints */
2700 for (tmp = 1; tmp < 15; tmp++) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002701 omap_writew(0, UDC_EP_RX(tmp));
2702 omap_writew(0, UDC_EP_TX(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 }
2704
2705#define OMAP_BULK_EP(name,addr) \
2706 buf = omap_ep_setup(name "-bulk", addr, \
2707 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
2708#define OMAP_INT_EP(name,addr, maxp) \
2709 buf = omap_ep_setup(name "-int", addr, \
2710 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
2711#define OMAP_ISO_EP(name,addr, maxp) \
2712 buf = omap_ep_setup(name "-iso", addr, \
2713 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2714
2715 switch (fifo_mode) {
2716 case 0:
2717 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2718 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2719 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2720 break;
2721 case 1:
2722 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2723 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
David Brownell313980c2005-04-11 15:38:25 -07002724 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 OMAP_BULK_EP("ep3in", USB_DIR_IN | 3);
2727 OMAP_BULK_EP("ep4out", USB_DIR_OUT | 4);
David Brownell313980c2005-04-11 15:38:25 -07002728 OMAP_INT_EP("ep10in", USB_DIR_IN | 10, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 OMAP_BULK_EP("ep5in", USB_DIR_IN | 5);
2731 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
David Brownell313980c2005-04-11 15:38:25 -07002732 OMAP_INT_EP("ep11in", USB_DIR_IN | 11, 16);
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2735 OMAP_BULK_EP("ep6out", USB_DIR_OUT | 6);
David Brownell313980c2005-04-11 15:38:25 -07002736 OMAP_INT_EP("ep12in", USB_DIR_IN | 12, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 OMAP_BULK_EP("ep7in", USB_DIR_IN | 7);
2739 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
David Brownell313980c2005-04-11 15:38:25 -07002740 OMAP_INT_EP("ep13in", USB_DIR_IN | 13, 16);
2741 OMAP_INT_EP("ep13out", USB_DIR_OUT | 13, 16);
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 OMAP_BULK_EP("ep8in", USB_DIR_IN | 8);
2744 OMAP_BULK_EP("ep8out", USB_DIR_OUT | 8);
David Brownell313980c2005-04-11 15:38:25 -07002745 OMAP_INT_EP("ep14in", USB_DIR_IN | 14, 16);
2746 OMAP_INT_EP("ep14out", USB_DIR_OUT | 14, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
David Brownell313980c2005-04-11 15:38:25 -07002748 OMAP_BULK_EP("ep15in", USB_DIR_IN | 15);
2749 OMAP_BULK_EP("ep15out", USB_DIR_OUT | 15);
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 break;
2752
2753#ifdef USE_ISO
2754 case 2: /* mixed iso/bulk */
2755 OMAP_ISO_EP("ep1in", USB_DIR_IN | 1, 256);
2756 OMAP_ISO_EP("ep2out", USB_DIR_OUT | 2, 256);
2757 OMAP_ISO_EP("ep3in", USB_DIR_IN | 3, 128);
2758 OMAP_ISO_EP("ep4out", USB_DIR_OUT | 4, 128);
2759
2760 OMAP_INT_EP("ep5in", USB_DIR_IN | 5, 16);
2761
2762 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2763 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
2764 OMAP_INT_EP("ep8in", USB_DIR_IN | 8, 16);
2765 break;
2766 case 3: /* mixed bulk/iso */
2767 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2768 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2769 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2770
2771 OMAP_BULK_EP("ep4in", USB_DIR_IN | 4);
2772 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
2773 OMAP_INT_EP("ep6in", USB_DIR_IN | 6, 16);
2774
2775 OMAP_ISO_EP("ep7in", USB_DIR_IN | 7, 256);
2776 OMAP_ISO_EP("ep8out", USB_DIR_OUT | 8, 256);
2777 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2778 break;
2779#endif
2780
2781 /* add more modes as needed */
2782
2783 default:
2784 ERR("unsupported fifo_mode #%d\n", fifo_mode);
2785 return -ENODEV;
2786 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002787 omap_writew(UDC_CFG_LOCK|UDC_SELF_PWR, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 INFO("fifo mode %d, %d bytes not used\n", fifo_mode, 2048 - buf);
2789 return 0;
2790}
2791
Russell King3ae5eae2005-11-09 22:32:44 +00002792static int __init omap_udc_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 int status = -ENODEV;
2795 int hmc;
Heikki Krogerus86753812012-02-13 13:24:02 +02002796 struct usb_phy *xceiv = NULL;
David Brownell313980c2005-04-11 15:38:25 -07002797 const char *type = NULL;
Russell King3ae5eae2005-11-09 22:32:44 +00002798 struct omap_usb_config *config = pdev->dev.platform_data;
David Brownelle6a6e472006-12-10 11:47:04 -08002799 struct clk *dc_clk;
2800 struct clk *hhc_clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 /* NOTE: "knows" the order of the resources! */
David Brownelle6a6e472006-12-10 11:47:04 -08002803 if (!request_mem_region(pdev->resource[0].start,
Russell King3ae5eae2005-11-09 22:32:44 +00002804 pdev->resource[0].end - pdev->resource[0].start + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 driver_name)) {
2806 DBG("request_mem_region failed\n");
2807 return -EBUSY;
2808 }
2809
David Brownelle6a6e472006-12-10 11:47:04 -08002810 if (cpu_is_omap16xx()) {
2811 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2812 hhc_clk = clk_get(&pdev->dev, "usb_hhc_ck");
2813 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2814 /* can't use omap_udc_enable_clock yet */
2815 clk_enable(dc_clk);
2816 clk_enable(hhc_clk);
2817 udelay(100);
2818 }
2819
2820 if (cpu_is_omap24xx()) {
2821 dc_clk = clk_get(&pdev->dev, "usb_fck");
2822 hhc_clk = clk_get(&pdev->dev, "usb_l4_ick");
2823 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2824 /* can't use omap_udc_enable_clock yet */
2825 clk_enable(dc_clk);
2826 clk_enable(hhc_clk);
2827 udelay(100);
2828 }
2829
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002830 if (cpu_is_omap7xx()) {
2831 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2832 hhc_clk = clk_get(&pdev->dev, "l3_ocpi_ck");
2833 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2834 /* can't use omap_udc_enable_clock yet */
2835 clk_enable(dc_clk);
2836 clk_enable(hhc_clk);
2837 udelay(100);
2838 }
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 INFO("OMAP UDC rev %d.%d%s\n",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002841 omap_readw(UDC_REV) >> 4, omap_readw(UDC_REV) & 0xf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 config->otg ? ", Mini-AB" : "");
2843
2844 /* use the mode given to us by board init code */
2845 if (cpu_is_omap15xx()) {
2846 hmc = HMC_1510;
2847 type = "(unknown)";
2848
David Brownell8a3c1f52007-03-21 12:26:32 -07002849 if (machine_without_vbus_sense()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 /* just set up software VBUS detect, and then
2851 * later rig it so we always report VBUS.
2852 * FIXME without really sensing VBUS, we can't
2853 * know when to turn PULLUP_EN on/off; and that
2854 * means we always "need" the 48MHz clock.
2855 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002856 u32 tmp = omap_readl(FUNC_MUX_CTRL_0);
2857 tmp &= ~VBUS_CTRL_1510;
2858 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 tmp |= VBUS_MODE_1510;
2860 tmp &= ~VBUS_CTRL_1510;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002861 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 }
2863 } else {
David Brownell65111082005-04-28 13:52:31 -07002864 /* The transceiver may package some GPIO logic or handle
2865 * loopback and/or transceiverless setup; if we find one,
2866 * use it. Except for OTG, we don't _need_ to talk to one;
2867 * but not having one probably means no VBUS detection.
2868 */
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02002869 xceiv = usb_get_transceiver();
David Brownell65111082005-04-28 13:52:31 -07002870 if (xceiv)
2871 type = xceiv->label;
2872 else if (config->otg) {
2873 DBG("OTG requires external transceiver!\n");
2874 goto cleanup0;
2875 }
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 hmc = HMC_1610;
David Brownelle6a6e472006-12-10 11:47:04 -08002878
2879 if (cpu_is_omap24xx()) {
2880 /* this could be transceiverless in one of the
2881 * "we don't need to know" modes.
2882 */
2883 type = "external";
2884 goto known;
2885 }
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 switch (hmc) {
David Brownell313980c2005-04-11 15:38:25 -07002888 case 0: /* POWERUP DEFAULT == 0 */
2889 case 4:
2890 case 12:
2891 case 20:
2892 if (!cpu_is_omap1710()) {
2893 type = "integrated";
2894 break;
2895 }
2896 /* FALL THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 case 3:
2898 case 11:
2899 case 16:
2900 case 19:
2901 case 25:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 if (!xceiv) {
2903 DBG("external transceiver not registered!\n");
David Brownell313980c2005-04-11 15:38:25 -07002904 type = "unknown";
David Brownell65111082005-04-28 13:52:31 -07002905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 case 21: /* internal loopback */
David Brownell313980c2005-04-11 15:38:25 -07002908 type = "loopback";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 break;
2910 case 14: /* transceiverless */
David Brownell65111082005-04-28 13:52:31 -07002911 if (cpu_is_omap1710())
2912 goto bad_on_1710;
2913 /* FALL THROUGH */
2914 case 13:
2915 case 15:
David Brownell313980c2005-04-11 15:38:25 -07002916 type = "no";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 break;
2918
2919 default:
David Brownell65111082005-04-28 13:52:31 -07002920bad_on_1710:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 ERR("unrecognized UDC HMC mode %d\n", hmc);
David Brownell65111082005-04-28 13:52:31 -07002922 goto cleanup0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 }
2924 }
David Brownelle6a6e472006-12-10 11:47:04 -08002925known:
David Brownell313980c2005-04-11 15:38:25 -07002926 INFO("hmc mode %d, %s transceiver\n", hmc, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
2928 /* a "gadget" abstracts/virtualizes the controller */
Russell King3ae5eae2005-11-09 22:32:44 +00002929 status = omap_udc_setup(pdev, xceiv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (status) {
2931 goto cleanup0;
2932 }
David Brownell313980c2005-04-11 15:38:25 -07002933 xceiv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 // "udc" is now valid
2935 pullup_disable(udc);
2936#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2937 udc->gadget.is_otg = (config->otg != 0);
2938#endif
2939
David Brownell65111082005-04-28 13:52:31 -07002940 /* starting with omap1710 es2.0, clear toggle is a separate bit */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002941 if (omap_readw(UDC_REV) >= 0x61)
David Brownell65111082005-04-28 13:52:31 -07002942 udc->clr_halt = UDC_RESET_EP | UDC_CLRDATA_TOGGLE;
2943 else
2944 udc->clr_halt = UDC_RESET_EP;
2945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 /* USB general purpose IRQ: ep0, state changes, dma, etc */
Russell King3ae5eae2005-11-09 22:32:44 +00002947 status = request_irq(pdev->resource[1].start, omap_udc_irq,
Thomas Gleixnerd54b5ca2006-07-01 19:29:44 -07002948 IRQF_SAMPLE_RANDOM, driver_name, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002950 ERR("can't get irq %d, err %d\n",
2951 (int) pdev->resource[1].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 goto cleanup1;
2953 }
2954
2955 /* USB "non-iso" IRQ (PIO for all but ep0) */
Russell King3ae5eae2005-11-09 22:32:44 +00002956 status = request_irq(pdev->resource[2].start, omap_udc_pio_irq,
Thomas Gleixnerd54b5ca2006-07-01 19:29:44 -07002957 IRQF_SAMPLE_RANDOM, "omap_udc pio", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002959 ERR("can't get irq %d, err %d\n",
2960 (int) pdev->resource[2].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 goto cleanup2;
2962 }
2963#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00002964 status = request_irq(pdev->resource[3].start, omap_udc_iso_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002965 0, "omap_udc iso", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002967 ERR("can't get irq %d, err %d\n",
2968 (int) pdev->resource[3].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 goto cleanup3;
2970 }
2971#endif
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002972 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002973 udc->dc_clk = dc_clk;
2974 udc->hhc_clk = hhc_clk;
2975 clk_disable(hhc_clk);
2976 clk_disable(dc_clk);
2977 }
2978
2979 if (cpu_is_omap24xx()) {
2980 udc->dc_clk = dc_clk;
2981 udc->hhc_clk = hhc_clk;
2982 /* FIXME OMAP2 don't release hhc & dc clock */
2983#if 0
2984 clk_disable(hhc_clk);
2985 clk_disable(dc_clk);
2986#endif
2987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 create_proc_file();
David Brownelle6a6e472006-12-10 11:47:04 -08002990 status = device_add(&udc->gadget.dev);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002991 if (status)
2992 goto cleanup4;
2993
2994 status = usb_add_gadget_udc(&pdev->dev, &udc->gadget);
David Brownelle6a6e472006-12-10 11:47:04 -08002995 if (!status)
2996 return status;
2997 /* If fail, fall through */
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002998cleanup4:
2999 remove_proc_file();
3000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001#ifdef USE_ISO
3002cleanup3:
Russell King3ae5eae2005-11-09 22:32:44 +00003003 free_irq(pdev->resource[2].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004#endif
3005
3006cleanup2:
Russell King3ae5eae2005-11-09 22:32:44 +00003007 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
3009cleanup1:
3010 kfree (udc);
David Brownell313980c2005-04-11 15:38:25 -07003011 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013cleanup0:
3014 if (xceiv)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02003015 usb_put_transceiver(xceiv);
David Brownelle6a6e472006-12-10 11:47:04 -08003016
Cory Maccarrone45f780a2009-11-22 10:10:52 -08003017 if (cpu_is_omap16xx() || cpu_is_omap24xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08003018 clk_disable(hhc_clk);
3019 clk_disable(dc_clk);
3020 clk_put(hhc_clk);
3021 clk_put(dc_clk);
3022 }
3023
Russell King3ae5eae2005-11-09 22:32:44 +00003024 release_mem_region(pdev->resource[0].start,
3025 pdev->resource[0].end - pdev->resource[0].start + 1);
David Brownelle6a6e472006-12-10 11:47:04 -08003026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 return status;
3028}
3029
Russell King3ae5eae2005-11-09 22:32:44 +00003030static int __exit omap_udc_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07003032 DECLARE_COMPLETION_ONSTACK(done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
3034 if (!udc)
3035 return -ENODEV;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003036
3037 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08003038 if (udc->driver)
3039 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 udc->done = &done;
3042
3043 pullup_disable(udc);
3044 if (udc->transceiver) {
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02003045 usb_put_transceiver(udc->transceiver);
David Brownell313980c2005-04-11 15:38:25 -07003046 udc->transceiver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003048 omap_writew(0, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 remove_proc_file();
3051
3052#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00003053 free_irq(pdev->resource[3].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054#endif
Russell King3ae5eae2005-11-09 22:32:44 +00003055 free_irq(pdev->resource[2].start, udc);
3056 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
David Brownelle6a6e472006-12-10 11:47:04 -08003058 if (udc->dc_clk) {
3059 if (udc->clk_requested)
3060 omap_udc_enable_clock(0);
3061 clk_put(udc->hhc_clk);
3062 clk_put(udc->dc_clk);
3063 }
3064
Russell King3ae5eae2005-11-09 22:32:44 +00003065 release_mem_region(pdev->resource[0].start,
3066 pdev->resource[0].end - pdev->resource[0].start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
3068 device_unregister(&udc->gadget.dev);
3069 wait_for_completion(&done);
3070
3071 return 0;
3072}
3073
David Brownell313980c2005-04-11 15:38:25 -07003074/* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3075 * system is forced into deep sleep
3076 *
3077 * REVISIT we should probably reject suspend requests when there's a host
3078 * session active, rather than disconnecting, at least on boards that can
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003079 * report VBUS irqs (UDC_DEVSTAT.UDC_ATT). And in any case, we need to
David Brownell313980c2005-04-11 15:38:25 -07003080 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3081 * may involve talking to an external transceiver (e.g. isp1301).
3082 */
david-b@pacbell.net1d7beee2005-06-29 07:00:56 -07003083
Russell King3ae5eae2005-11-09 22:32:44 +00003084static int omap_udc_suspend(struct platform_device *dev, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
David Brownell313980c2005-04-11 15:38:25 -07003086 u32 devstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003088 devstat = omap_readw(UDC_DEVSTAT);
David Brownell313980c2005-04-11 15:38:25 -07003089
3090 /* we're requesting 48 MHz clock if the pullup is enabled
3091 * (== we're attached to the host) and we're not suspended,
3092 * which would prevent entry to deep sleep...
3093 */
3094 if ((devstat & UDC_ATT) != 0 && (devstat & UDC_SUS) == 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07003095 WARNING("session active; suspend requires disconnect\n");
David Brownell313980c2005-04-11 15:38:25 -07003096 omap_pullup(&udc->gadget, 0);
3097 }
3098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return 0;
3100}
3101
Russell King3ae5eae2005-11-09 22:32:44 +00003102static int omap_udc_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 DBG("resume + wakeup/SRP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 omap_pullup(&udc->gadget, 1);
3106
3107 /* maybe the host would enumerate us if we nudged it */
3108 msleep(100);
3109 return omap_wakeup(&udc->gadget);
3110}
3111
3112/*-------------------------------------------------------------------------*/
3113
Russell King3ae5eae2005-11-09 22:32:44 +00003114static struct platform_driver udc_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 .remove = __exit_p(omap_udc_remove),
3116 .suspend = omap_udc_suspend,
3117 .resume = omap_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003118 .driver = {
3119 .owner = THIS_MODULE,
3120 .name = (char *) driver_name,
3121 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122};
3123
3124static int __init udc_init(void)
3125{
Cory Maccarrone45f780a2009-11-22 10:10:52 -08003126 /* Disable DMA for omap7xx -- it doesn't work right. */
3127 if (cpu_is_omap7xx())
3128 use_dma = 0;
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 INFO("%s, version: " DRIVER_VERSION
3131#ifdef USE_ISO
3132 " (iso)"
3133#endif
3134 "%s\n", driver_desc,
3135 use_dma ? " (dma)" : "");
David Brownell864e28b2009-04-16 13:51:46 -07003136 return platform_driver_probe(&udc_driver, omap_udc_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138module_init(udc_init);
3139
3140static void __exit udc_exit(void)
3141{
Russell King3ae5eae2005-11-09 22:32:44 +00003142 platform_driver_unregister(&udc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143}
3144module_exit(udc_exit);
3145
3146MODULE_DESCRIPTION(DRIVER_DESC);
3147MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07003148MODULE_ALIAS("platform:omap_udc");