blob: 9b7d39484ed3afa55c95a254379b995341bc7ad4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/timer.h>
26#include <linux/list.h>
27#include <linux/interrupt.h>
28#include <linux/proc_fs.h>
29#include <linux/mm.h>
30#include <linux/moduleparam.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010031#include <linux/platform_device.h>
David Brownell5f848132006-12-16 15:34:53 -080032#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070033#include <linux/usb/gadget.h>
David Brownell3a16f7b2006-06-29 12:27:23 -070034#include <linux/usb/otg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/dma-mapping.h>
David Brownelle6a6e472006-12-10 11:47:04 -080036#include <linux/clk.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053037#include <linux/err.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070038#include <linux/prefetch.h>
Felipe Balbi80dd1352012-05-29 14:26:09 +030039#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/unaligned.h>
44#include <asm/mach-types.h>
45
Tony Lindgren45c3eb72012-11-30 08:41:50 -080046#include <linux/omap-dma.h>
Tony Lindgrenb924b202012-06-04 00:56:15 -070047
48#include <mach/usb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "omap_udc.h"
51
52#undef USB_TRACE
53
54/* bulk DMA seems to be behaving for both IN and OUT */
55#define USE_DMA
56
57/* ISO too */
58#define USE_ISO
59
60#define DRIVER_DESC "OMAP UDC driver"
61#define DRIVER_VERSION "4 October 2004"
62
Lokesh Vutla8c4cc002012-10-15 14:01:01 -070063#define OMAP_DMA_USB_W2FC_TX0 29
Arnd Bergmann518868c2013-03-05 23:16:44 +010064#define OMAP_DMA_USB_W2FC_RX0 26
Lokesh Vutla8c4cc002012-10-15 14:01:01 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * The OMAP UDC needs _very_ early endpoint setup: before enabling the
68 * D+ pullup to allow enumeration. That's too early for the gadget
69 * framework to use from usb_endpoint_enable(), which happens after
70 * enumeration as part of activating an interface. (But if we add an
71 * optional new "UDC not yet running" state to the gadget driver model,
72 * even just during driver binding, the endpoint autoconfig logic is the
73 * natural spot to manufacture new endpoints.)
74 *
75 * So instead of using endpoint enable calls to control the hardware setup,
76 * this driver defines a "fifo mode" parameter. It's used during driver
77 * initialization to choose among a set of pre-defined endpoint configs.
78 * See omap_udc_setup() for available modes, or to add others. That code
79 * lives in an init section, so use this driver as a module if you need
80 * to change the fifo mode after the kernel boots.
81 *
82 * Gadget drivers normally ignore endpoints they don't care about, and
83 * won't include them in configuration descriptors. That means only
84 * misbehaving hosts would even notice they exist.
85 */
86#ifdef USE_ISO
87static unsigned fifo_mode = 3;
88#else
Felipe Balbi80dd1352012-05-29 14:26:09 +030089static unsigned fifo_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif
91
92/* "modprobe omap_udc fifo_mode=42", or else as a kernel
93 * boot parameter "omap_udc:fifo_mode=42"
94 */
Felipe Balbi80dd1352012-05-29 14:26:09 +030095module_param(fifo_mode, uint, 0);
96MODULE_PARM_DESC(fifo_mode, "endpoint configuration");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98#ifdef USE_DMA
Rusty Russell90ab5ee2012-01-13 09:32:20 +103099static bool use_dma = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/* "modprobe omap_udc use_dma=y", or else as a kernel
102 * boot parameter "omap_udc:use_dma=y"
103 */
Felipe Balbi80dd1352012-05-29 14:26:09 +0300104module_param(use_dma, bool, 0);
105MODULE_PARM_DESC(use_dma, "enable/disable DMA");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#else /* !USE_DMA */
107
108/* save a bit of code */
109#define use_dma 0
110#endif /* !USE_DMA */
111
112
Felipe Balbi80dd1352012-05-29 14:26:09 +0300113static const char driver_name[] = "omap_udc";
114static const char driver_desc[] = DRIVER_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*-------------------------------------------------------------------------*/
117
118/* there's a notion of "current endpoint" for modifying endpoint
David Brownelle6a6e472006-12-10 11:47:04 -0800119 * state, and PIO access to its FIFO.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 */
121
122static void use_ep(struct omap_ep *ep, u16 select)
123{
124 u16 num = ep->bEndpointAddress & 0x0f;
125
126 if (ep->bEndpointAddress & USB_DIR_IN)
127 num |= UDC_EP_DIR;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300128 omap_writew(num | select, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* when select, MUST deselect later !! */
130}
131
132static inline void deselect_ep(void)
133{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300134 u16 w;
135
136 w = omap_readw(UDC_EP_NUM);
137 w &= ~UDC_EP_SEL;
138 omap_writew(w, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* 6 wait states before TX will happen */
140}
141
142static void dma_channel_claim(struct omap_ep *ep, unsigned preferred);
143
144/*-------------------------------------------------------------------------*/
145
146static int omap_ep_enable(struct usb_ep *_ep,
147 const struct usb_endpoint_descriptor *desc)
148{
149 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
150 struct omap_udc *udc;
151 unsigned long flags;
152 u16 maxp;
153
154 /* catch various bogus parameters */
Ido Shayevitz77964b32012-06-04 13:35:25 +0300155 if (!_ep || !desc
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 || desc->bDescriptorType != USB_DT_ENDPOINT
157 || ep->bEndpointAddress != desc->bEndpointAddress
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700158 || ep->maxpacket < usb_endpoint_maxp(desc)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800159 DBG("%s, bad ep or descriptor\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EINVAL;
161 }
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700162 maxp = usb_endpoint_maxp(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
164 && maxp != ep->maxpacket)
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700165 || usb_endpoint_maxp(desc) > ep->maxpacket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 || !desc->wMaxPacketSize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800167 DBG("%s, bad %s maxpacket\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -ERANGE;
169 }
170
171#ifdef USE_ISO
172 if ((desc->bmAttributes == USB_ENDPOINT_XFER_ISOC
173 && desc->bInterval != 1)) {
174 /* hardware wants period = 1; USB allows 2^(Interval-1) */
175 DBG("%s, unsupported ISO period %dms\n", _ep->name,
176 1 << (desc->bInterval - 1));
177 return -EDOM;
178 }
179#else
180 if (desc->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
181 DBG("%s, ISO nyet\n", _ep->name);
182 return -EDOM;
183 }
184#endif
185
186 /* xfer types must match, except that interrupt ~= bulk */
187 if (ep->bmAttributes != desc->bmAttributes
188 && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
189 && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800190 DBG("%s, %s type mismatch\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EINVAL;
192 }
193
194 udc = ep->udc;
195 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800196 DBG("%s, bogus device state\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -ESHUTDOWN;
198 }
199
200 spin_lock_irqsave(&udc->lock, flags);
201
Ido Shayevitzf8bdae02012-03-12 20:25:35 +0200202 ep->ep.desc = desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 ep->irqs = 0;
204 ep->stopped = 0;
205 ep->ep.maxpacket = maxp;
206
207 /* set endpoint to initial state */
208 ep->dma_channel = 0;
209 ep->has_dma = 0;
210 ep->lch = -1;
211 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300212 omap_writew(udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 ep->ackwait = 0;
214 deselect_ep();
215
216 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
217 list_add(&ep->iso, &udc->iso);
218
219 /* maybe assign a DMA channel to this endpoint */
220 if (use_dma && desc->bmAttributes == USB_ENDPOINT_XFER_BULK)
221 /* FIXME ISO can dma, but prefers first channel */
222 dma_channel_claim(ep, 0);
223
224 /* PIO OUT may RX packets */
225 if (desc->bmAttributes != USB_ENDPOINT_XFER_ISOC
226 && !ep->has_dma
227 && !(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300228 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 ep->ackwait = 1 + ep->double_buf;
230 }
231
232 spin_unlock_irqrestore(&udc->lock, flags);
233 VDBG("%s enabled\n", _ep->name);
234 return 0;
235}
236
237static void nuke(struct omap_ep *, int status);
238
239static int omap_ep_disable(struct usb_ep *_ep)
240{
241 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
242 unsigned long flags;
243
Ido Shayevitzf8bdae02012-03-12 20:25:35 +0200244 if (!_ep || !ep->ep.desc) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800245 DBG("%s, %s not enabled\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 _ep ? ep->ep.name : NULL);
247 return -EINVAL;
248 }
249
250 spin_lock_irqsave(&ep->udc->lock, flags);
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200251 ep->ep.desc = NULL;
Felipe Balbi80dd1352012-05-29 14:26:09 +0300252 nuke(ep, -ESHUTDOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 ep->ep.maxpacket = ep->maxpacket;
254 ep->has_dma = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300255 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 list_del_init(&ep->iso);
257 del_timer(&ep->timer);
258
259 spin_unlock_irqrestore(&ep->udc->lock, flags);
260
261 VDBG("%s disabled\n", _ep->name);
262 return 0;
263}
264
265/*-------------------------------------------------------------------------*/
266
267static struct usb_request *
Al Viro55016f12005-10-21 03:21:58 -0400268omap_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct omap_req *req;
271
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800272 req = kzalloc(sizeof(*req), gfp_flags);
Felipe Balbi70617db2012-05-29 14:36:42 +0300273 if (!req)
274 return NULL;
275
Felipe Balbi70617db2012-05-29 14:36:42 +0300276 INIT_LIST_HEAD(&req->queue);
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return &req->req;
279}
280
281static void
282omap_free_request(struct usb_ep *ep, struct usb_request *_req)
283{
284 struct omap_req *req = container_of(_req, struct omap_req, req);
285
Felipe Balbi23673d72012-05-29 14:38:32 +0300286 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*-------------------------------------------------------------------------*/
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static void
292done(struct omap_ep *ep, struct omap_req *req, int status)
293{
Felipe Balbidd8e9382012-05-29 14:42:56 +0300294 struct omap_udc *udc = ep->udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned stopped = ep->stopped;
296
297 list_del_init(&req->queue);
298
299 if (req->req.status == -EINPROGRESS)
300 req->req.status = status;
301 else
302 status = req->req.status;
303
Felipe Balbidd8e9382012-05-29 14:42:56 +0300304 if (use_dma && ep->has_dma)
305 usb_gadget_unmap_request(&udc->gadget, &req->req,
306 (ep->bEndpointAddress & USB_DIR_IN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308#ifndef USB_TRACE
309 if (status && status != -ESHUTDOWN)
310#endif
311 VDBG("complete %s req %p stat %d len %u/%u\n",
312 ep->ep.name, &req->req, status,
313 req->req.actual, req->req.length);
314
315 /* don't modify queue heads during completion callback */
316 ep->stopped = 1;
317 spin_unlock(&ep->udc->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200318 usb_gadget_giveback_request(&ep->ep, &req->req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 spin_lock(&ep->udc->lock);
320 ep->stopped = stopped;
321}
322
323/*-------------------------------------------------------------------------*/
324
David Brownell313980c2005-04-11 15:38:25 -0700325#define UDC_FIFO_FULL (UDC_NON_ISO_FIFO_FULL | UDC_ISO_FIFO_FULL)
326#define UDC_FIFO_UNWRITABLE (UDC_EP_HALTED | UDC_FIFO_FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328#define FIFO_EMPTY (UDC_NON_ISO_FIFO_EMPTY | UDC_ISO_FIFO_EMPTY)
329#define FIFO_UNREADABLE (UDC_EP_HALTED | FIFO_EMPTY)
330
David Brownelle6a6e472006-12-10 11:47:04 -0800331static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332write_packet(u8 *buf, struct omap_req *req, unsigned max)
333{
334 unsigned len;
335 u16 *wp;
336
337 len = min(req->req.length - req->req.actual, max);
338 req->req.actual += len;
339
340 max = len;
341 if (likely((((int)buf) & 1) == 0)) {
342 wp = (u16 *)buf;
343 while (max >= 2) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300344 omap_writew(*wp++, UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 max -= 2;
346 }
347 buf = (u8 *)wp;
348 }
349 while (max--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300350 omap_writeb(*buf++, UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return len;
352}
353
Felipe Balbi80dd1352012-05-29 14:26:09 +0300354/* FIXME change r/w fifo calling convention */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356
Felipe Balbi80dd1352012-05-29 14:26:09 +0300357/* return: 0 = still running, 1 = completed, negative = errno */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358static int write_fifo(struct omap_ep *ep, struct omap_req *req)
359{
360 u8 *buf;
361 unsigned count;
362 int is_last;
363 u16 ep_stat;
364
365 buf = req->req.buf + req->req.actual;
366 prefetch(buf);
367
368 /* PIO-IN isn't double buffered except for iso */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300369 ep_stat = omap_readw(UDC_STAT_FLG);
David Brownell313980c2005-04-11 15:38:25 -0700370 if (ep_stat & UDC_FIFO_UNWRITABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372
373 count = ep->ep.maxpacket;
374 count = write_packet(buf, req, count);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300375 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 ep->ackwait = 1;
377
378 /* last packet is often short (sometimes a zlp) */
379 if (count != ep->ep.maxpacket)
380 is_last = 1;
381 else if (req->req.length == req->req.actual
382 && !req->req.zero)
383 is_last = 1;
384 else
385 is_last = 0;
386
387 /* NOTE: requests complete when all IN data is in a
388 * FIFO (or sometimes later, if a zlp was needed).
389 * Use usb_ep_fifo_status() where needed.
390 */
391 if (is_last)
392 done(ep, req, 0);
393 return is_last;
394}
395
David Brownelle6a6e472006-12-10 11:47:04 -0800396static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397read_packet(u8 *buf, struct omap_req *req, unsigned avail)
398{
399 unsigned len;
400 u16 *wp;
401
402 len = min(req->req.length - req->req.actual, avail);
403 req->req.actual += len;
404 avail = len;
405
406 if (likely((((int)buf) & 1) == 0)) {
407 wp = (u16 *)buf;
408 while (avail >= 2) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300409 *wp++ = omap_readw(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 avail -= 2;
411 }
412 buf = (u8 *)wp;
413 }
414 while (avail--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300415 *buf++ = omap_readb(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return len;
417}
418
Felipe Balbi80dd1352012-05-29 14:26:09 +0300419/* return: 0 = still running, 1 = queue empty, negative = errno */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static int read_fifo(struct omap_ep *ep, struct omap_req *req)
421{
422 u8 *buf;
423 unsigned count, avail;
424 int is_last;
425
426 buf = req->req.buf + req->req.actual;
427 prefetchw(buf);
428
429 for (;;) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300430 u16 ep_stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 is_last = 0;
433 if (ep_stat & FIFO_EMPTY) {
434 if (!ep->double_buf)
435 break;
436 ep->fnf = 1;
437 }
438 if (ep_stat & UDC_EP_HALTED)
439 break;
440
David Brownell313980c2005-04-11 15:38:25 -0700441 if (ep_stat & UDC_FIFO_FULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 avail = ep->ep.maxpacket;
443 else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300444 avail = omap_readw(UDC_RXFSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ep->fnf = ep->double_buf;
446 }
447 count = read_packet(buf, req, avail);
448
449 /* partial packet reads may not be errors */
450 if (count < ep->ep.maxpacket) {
451 is_last = 1;
452 /* overflowed this request? flush extra data */
453 if (count != avail) {
454 req->req.status = -EOVERFLOW;
455 avail -= count;
456 while (avail--)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300457 omap_readw(UDC_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 } else if (req->req.length == req->req.actual)
460 is_last = 1;
461 else
462 is_last = 0;
463
464 if (!ep->bEndpointAddress)
465 break;
466 if (is_last)
467 done(ep, req, 0);
468 break;
469 }
470 return is_last;
471}
472
473/*-------------------------------------------------------------------------*/
474
475static u16 dma_src_len(struct omap_ep *ep, dma_addr_t start)
476{
477 dma_addr_t end;
478
479 /* IN-DMA needs this on fault/cancel paths, so 15xx misreports
480 * the last transfer's bytecount by more than a FIFO's worth.
481 */
482 if (cpu_is_omap15xx())
483 return 0;
484
Tony Lindgren0499bde2008-07-03 12:24:36 +0300485 end = omap_get_dma_src_pos(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (end == ep->dma_counter)
487 return 0;
488
489 end |= start & (0xffff << 16);
490 if (end < start)
491 end += 0x10000;
492 return end - start;
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static u16 dma_dest_len(struct omap_ep *ep, dma_addr_t start)
496{
497 dma_addr_t end;
498
Tony Lindgren0499bde2008-07-03 12:24:36 +0300499 end = omap_get_dma_dst_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 (cpu_is_omap15xx())
505 end++;
506 if (end < start)
507 end += 0x10000;
508 return end - start;
509}
510
511
512/* Each USB transfer request using DMA maps to one or more DMA transfers.
513 * When DMA completion isn't request completion, the UDC continues with
514 * the next DMA transfer for that USB transfer.
515 */
516
517static void next_in_dma(struct omap_ep *ep, struct omap_req *req)
518{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300519 u16 txdma_ctrl, w;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 unsigned length = req->req.length - req->req.actual;
521 const int sync_mode = cpu_is_omap15xx()
522 ? OMAP_DMA_SYNC_FRAME
523 : OMAP_DMA_SYNC_ELEMENT;
Kyungmin Park527ea732007-11-21 15:13:15 -0800524 int dma_trigger = 0;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* measure length in either bytes or packets */
David Brownell65111082005-04-28 13:52:31 -0700527 if ((cpu_is_omap16xx() && length <= UDC_TXN_TSC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 || (cpu_is_omap15xx() && length < ep->maxpacket)) {
529 txdma_ctrl = UDC_TXN_EOT | length;
530 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S8,
Kyungmin Park527ea732007-11-21 15:13:15 -0800531 length, 1, sync_mode, dma_trigger, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } else {
533 length = min(length / ep->maxpacket,
534 (unsigned) UDC_TXN_TSC + 1);
David Brownelle6a6e472006-12-10 11:47:04 -0800535 txdma_ctrl = length;
David Brownell65111082005-04-28 13:52:31 -0700536 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
David Brownelle6a6e472006-12-10 11:47:04 -0800537 ep->ep.maxpacket >> 1, length, sync_mode,
Kyungmin Park527ea732007-11-21 15:13:15 -0800538 dma_trigger, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 length *= ep->maxpacket;
540 }
541 omap_set_dma_src_params(ep->lch, OMAP_DMA_PORT_EMIFF,
David Brownelle6a6e472006-12-10 11:47:04 -0800542 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
543 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 omap_start_dma(ep->lch);
Tony Lindgren0499bde2008-07-03 12:24:36 +0300546 ep->dma_counter = omap_get_dma_src_pos(ep->lch);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300547 w = omap_readw(UDC_DMA_IRQ_EN);
548 w |= UDC_TX_DONE_IE(ep->dma_channel);
549 omap_writew(w, UDC_DMA_IRQ_EN);
550 omap_writew(UDC_TXN_START | txdma_ctrl, UDC_TXDMA(ep->dma_channel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 req->dma_bytes = length;
552}
553
554static void finish_in_dma(struct omap_ep *ep, struct omap_req *req, int status)
555{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300556 u16 w;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (status == 0) {
559 req->req.actual += req->dma_bytes;
560
561 /* return if this request needs to send data or zlp */
562 if (req->req.actual < req->req.length)
563 return;
564 if (req->req.zero
565 && req->dma_bytes != 0
566 && (req->req.actual % ep->maxpacket) == 0)
567 return;
568 } else
569 req->req.actual += dma_src_len(ep, req->req.dma
570 + req->req.actual);
571
572 /* tx completion */
573 omap_stop_dma(ep->lch);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300574 w = omap_readw(UDC_DMA_IRQ_EN);
575 w &= ~UDC_TX_DONE_IE(ep->dma_channel);
576 omap_writew(w, UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 done(ep, req, status);
578}
579
580static void next_out_dma(struct omap_ep *ep, struct omap_req *req)
581{
Kyungmin Park527ea732007-11-21 15:13:15 -0800582 unsigned packets = req->req.length - req->req.actual;
583 int dma_trigger = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300584 u16 w;
Kyungmin Park527ea732007-11-21 15:13:15 -0800585
Tony Lindgrenae372572012-05-21 12:01:11 -0700586 /* set up this DMA transfer, enable the fifo, start */
587 packets /= ep->ep.maxpacket;
588 packets = min(packets, (unsigned)UDC_RXN_TC + 1);
589 req->dma_bytes = packets * ep->ep.maxpacket;
590 omap_set_dma_transfer_params(ep->lch, OMAP_DMA_DATA_TYPE_S16,
591 ep->ep.maxpacket >> 1, packets,
592 OMAP_DMA_SYNC_ELEMENT,
593 dma_trigger, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 omap_set_dma_dest_params(ep->lch, OMAP_DMA_PORT_EMIFF,
David Brownelle6a6e472006-12-10 11:47:04 -0800595 OMAP_DMA_AMODE_POST_INC, req->req.dma + req->req.actual,
596 0, 0);
Tony Lindgren0499bde2008-07-03 12:24:36 +0300597 ep->dma_counter = omap_get_dma_dst_pos(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300599 omap_writew(UDC_RXN_STOP | (packets - 1), UDC_RXDMA(ep->dma_channel));
600 w = omap_readw(UDC_DMA_IRQ_EN);
601 w |= UDC_RX_EOT_IE(ep->dma_channel);
602 omap_writew(w, UDC_DMA_IRQ_EN);
603 omap_writew(ep->bEndpointAddress & 0xf, UDC_EP_NUM);
604 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 omap_start_dma(ep->lch);
607}
608
609static void
David Brownellcb97c5c2005-10-16 15:06:51 -0700610finish_out_dma(struct omap_ep *ep, struct omap_req *req, int status, int one)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300612 u16 count, w;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (status == 0)
615 ep->dma_counter = (u16) (req->req.dma + req->req.actual);
616 count = dma_dest_len(ep, req->req.dma + req->req.actual);
617 count += req->req.actual;
David Brownellcb97c5c2005-10-16 15:06:51 -0700618 if (one)
619 count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (count <= req->req.length)
621 req->req.actual = count;
622
623 if (count != req->dma_bytes || status)
624 omap_stop_dma(ep->lch);
625
626 /* if this wasn't short, request may need another transfer */
627 else if (req->req.actual < req->req.length)
628 return;
629
630 /* rx completion */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300631 w = omap_readw(UDC_DMA_IRQ_EN);
632 w &= ~UDC_RX_EOT_IE(ep->dma_channel);
633 omap_writew(w, UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 done(ep, req, status);
635}
636
637static void dma_irq(struct omap_udc *udc, u16 irq_src)
638{
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300639 u16 dman_stat = omap_readw(UDC_DMAN_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct omap_ep *ep;
641 struct omap_req *req;
642
643 /* IN dma: tx to host */
644 if (irq_src & UDC_TXN_DONE) {
645 ep = &udc->ep[16 + UDC_DMA_TX_SRC(dman_stat)];
646 ep->irqs++;
647 /* can see TXN_DONE after dma abort */
648 if (!list_empty(&ep->queue)) {
649 req = container_of(ep->queue.next,
650 struct omap_req, queue);
651 finish_in_dma(ep, req, 0);
652 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300653 omap_writew(UDC_TXN_DONE, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Felipe Balbi80dd1352012-05-29 14:26:09 +0300655 if (!list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 req = container_of(ep->queue.next,
657 struct omap_req, queue);
658 next_in_dma(ep, req);
659 }
660 }
661
662 /* OUT dma: rx from host */
663 if (irq_src & UDC_RXN_EOT) {
664 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
665 ep->irqs++;
666 /* can see RXN_EOT after dma abort */
667 if (!list_empty(&ep->queue)) {
668 req = container_of(ep->queue.next,
669 struct omap_req, queue);
David Brownellcb97c5c2005-10-16 15:06:51 -0700670 finish_out_dma(ep, req, 0, dman_stat & UDC_DMA_RX_SB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300672 omap_writew(UDC_RXN_EOT, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Felipe Balbi80dd1352012-05-29 14:26:09 +0300674 if (!list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 req = container_of(ep->queue.next,
676 struct omap_req, queue);
677 next_out_dma(ep, req);
678 }
679 }
680
681 if (irq_src & UDC_RXN_CNT) {
682 ep = &udc->ep[UDC_DMA_RX_SRC(dman_stat)];
683 ep->irqs++;
684 /* omap15xx does this unasked... */
685 VDBG("%s, RX_CNT irq?\n", ep->ep.name);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300686 omap_writew(UDC_RXN_CNT, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688}
689
690static void dma_error(int lch, u16 ch_status, void *data)
691{
692 struct omap_ep *ep = data;
693
694 /* if ch_status & OMAP_DMA_DROP_IRQ ... */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700695 /* if ch_status & OMAP1_DMA_TOUT_IRQ ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ERR("%s dma error, lch %d status %02x\n", ep->ep.name, lch, ch_status);
697
698 /* complete current transfer ... */
699}
700
701static void dma_channel_claim(struct omap_ep *ep, unsigned channel)
702{
703 u16 reg;
704 int status, restart, is_in;
Kyungmin Park527ea732007-11-21 15:13:15 -0800705 int dma_channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 is_in = ep->bEndpointAddress & USB_DIR_IN;
708 if (is_in)
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300709 reg = omap_readw(UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300711 reg = omap_readw(UDC_RXDMA_CFG);
David Brownell65111082005-04-28 13:52:31 -0700712 reg |= UDC_DMA_REQ; /* "pulse" activated */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 ep->dma_channel = 0;
715 ep->lch = -1;
716 if (channel == 0 || channel > 3) {
717 if ((reg & 0x0f00) == 0)
718 channel = 3;
719 else if ((reg & 0x00f0) == 0)
720 channel = 2;
721 else if ((reg & 0x000f) == 0) /* preferred for ISO */
722 channel = 1;
723 else {
724 status = -EMLINK;
725 goto just_restart;
726 }
727 }
728 reg |= (0x0f & ep->bEndpointAddress) << (4 * (channel - 1));
729 ep->dma_channel = channel;
730
731 if (is_in) {
Tony Lindgrenae372572012-05-21 12:01:11 -0700732 dma_channel = OMAP_DMA_USB_W2FC_TX0 - 1 + channel;
Kyungmin Park527ea732007-11-21 15:13:15 -0800733 status = omap_request_dma(dma_channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 ep->ep.name, dma_error, ep, &ep->lch);
735 if (status == 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300736 omap_writew(reg, UDC_TXDMA_CFG);
Kyungmin Park527ea732007-11-21 15:13:15 -0800737 /* EMIFF or SDRC */
David Brownell65111082005-04-28 13:52:31 -0700738 omap_set_dma_src_burst_mode(ep->lch,
739 OMAP_DMA_DATA_BURST_4);
740 omap_set_dma_src_data_pack(ep->lch, 1);
741 /* TIPB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 omap_set_dma_dest_params(ep->lch,
743 OMAP_DMA_PORT_TIPB,
744 OMAP_DMA_AMODE_CONSTANT,
David Brownellc3e32082008-08-31 18:04:27 -0700745 UDC_DATA_DMA,
David Brownelle6a6e472006-12-10 11:47:04 -0800746 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 } else {
Tony Lindgrenae372572012-05-21 12:01:11 -0700749 dma_channel = OMAP_DMA_USB_W2FC_RX0 - 1 + channel;
Kyungmin Park527ea732007-11-21 15:13:15 -0800750 status = omap_request_dma(dma_channel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 ep->ep.name, dma_error, ep, &ep->lch);
752 if (status == 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300753 omap_writew(reg, UDC_RXDMA_CFG);
David Brownell65111082005-04-28 13:52:31 -0700754 /* TIPB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 omap_set_dma_src_params(ep->lch,
756 OMAP_DMA_PORT_TIPB,
757 OMAP_DMA_AMODE_CONSTANT,
David Brownellc3e32082008-08-31 18:04:27 -0700758 UDC_DATA_DMA,
David Brownelle6a6e472006-12-10 11:47:04 -0800759 0, 0);
Kyungmin Park527ea732007-11-21 15:13:15 -0800760 /* EMIFF or SDRC */
David Brownell65111082005-04-28 13:52:31 -0700761 omap_set_dma_dest_burst_mode(ep->lch,
762 OMAP_DMA_DATA_BURST_4);
763 omap_set_dma_dest_data_pack(ep->lch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765 }
766 if (status)
767 ep->dma_channel = 0;
768 else {
769 ep->has_dma = 1;
770 omap_disable_dma_irq(ep->lch, OMAP_DMA_BLOCK_IRQ);
771
772 /* channel type P: hw synch (fifo) */
Tony Lindgrenae372572012-05-21 12:01:11 -0700773 if (!cpu_is_omap15xx())
Tony Lindgren0499bde2008-07-03 12:24:36 +0300774 omap_set_dma_channel_mode(ep->lch, OMAP_DMA_LCH_P);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
777just_restart:
778 /* restart any queue, even if the claim failed */
779 restart = !ep->stopped && !list_empty(&ep->queue);
780
781 if (status)
782 DBG("%s no dma channel: %d%s\n", ep->ep.name, status,
783 restart ? " (restart)" : "");
784 else
785 DBG("%s claimed %cxdma%d lch %d%s\n", ep->ep.name,
786 is_in ? 't' : 'r',
787 ep->dma_channel - 1, ep->lch,
788 restart ? " (restart)" : "");
789
790 if (restart) {
791 struct omap_req *req;
792 req = container_of(ep->queue.next, struct omap_req, queue);
793 if (ep->has_dma)
794 (is_in ? next_in_dma : next_out_dma)(ep, req);
795 else {
796 use_ep(ep, UDC_EP_SEL);
797 (is_in ? write_fifo : read_fifo)(ep, req);
798 deselect_ep();
799 if (!is_in) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300800 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 ep->ackwait = 1 + ep->double_buf;
802 }
803 /* IN: 6 wait states before it'll tx */
804 }
805 }
806}
807
808static void dma_channel_release(struct omap_ep *ep)
809{
810 int shift = 4 * (ep->dma_channel - 1);
811 u16 mask = 0x0f << shift;
812 struct omap_req *req;
813 int active;
814
815 /* abort any active usb transfer request */
816 if (!list_empty(&ep->queue))
817 req = container_of(ep->queue.next, struct omap_req, queue);
818 else
David Brownell313980c2005-04-11 15:38:25 -0700819 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Tony Lindgren0499bde2008-07-03 12:24:36 +0300821 active = omap_get_dma_active_status(ep->lch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 DBG("%s release %s %cxdma%d %p\n", ep->ep.name,
824 active ? "active" : "idle",
825 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
826 ep->dma_channel - 1, req);
827
David Brownell65111082005-04-28 13:52:31 -0700828 /* NOTE: re-setting RX_REQ/TX_REQ because of a chip bug (before
829 * OMAP 1710 ES2.0) where reading the DMA_CFG can clear them.
830 */
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* wait till current packet DMA finishes, and fifo empties */
833 if (ep->bEndpointAddress & USB_DIR_IN) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300834 omap_writew((omap_readw(UDC_TXDMA_CFG) & ~mask) | UDC_DMA_REQ,
835 UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (req) {
838 finish_in_dma(ep, req, -ECONNRESET);
839
840 /* clear FIFO; hosts probably won't empty it */
841 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300842 omap_writew(UDC_CLR_EP, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 deselect_ep();
844 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300845 while (omap_readw(UDC_TXDMA_CFG) & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 udelay(10);
847 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300848 omap_writew((omap_readw(UDC_RXDMA_CFG) & ~mask) | UDC_DMA_REQ,
849 UDC_RXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /* dma empties the fifo */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300852 while (omap_readw(UDC_RXDMA_CFG) & mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 udelay(10);
854 if (req)
David Brownellcb97c5c2005-10-16 15:06:51 -0700855 finish_out_dma(ep, req, -ECONNRESET, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 omap_free_dma(ep->lch);
858 ep->dma_channel = 0;
859 ep->lch = -1;
860 /* has_dma still set, till endpoint is fully quiesced */
861}
862
863
864/*-------------------------------------------------------------------------*/
865
866static int
Al Viro55016f12005-10-21 03:21:58 -0400867omap_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
870 struct omap_req *req = container_of(_req, struct omap_req, req);
871 struct omap_udc *udc;
872 unsigned long flags;
873 int is_iso = 0;
874
875 /* catch various bogus parameters */
876 if (!_req || !req->req.complete || !req->req.buf
877 || !list_empty(&req->queue)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800878 DBG("%s, bad params\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -EINVAL;
880 }
Ido Shayevitzf8bdae02012-03-12 20:25:35 +0200881 if (!_ep || (!ep->ep.desc && ep->bEndpointAddress)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800882 DBG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -EINVAL;
884 }
885 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
886 if (req->req.length > ep->ep.maxpacket)
887 return -EMSGSIZE;
888 is_iso = 1;
889 }
890
891 /* this isn't bogus, but OMAP DMA isn't the only hardware to
892 * have a hard time with partial packet reads... reject it.
893 */
894 if (use_dma
895 && ep->has_dma
896 && ep->bEndpointAddress != 0
897 && (ep->bEndpointAddress & USB_DIR_IN) == 0
898 && (req->req.length % ep->ep.maxpacket) != 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800899 DBG("%s, no partial packet OUT reads\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return -EMSGSIZE;
901 }
902
903 udc = ep->udc;
904 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN)
905 return -ESHUTDOWN;
906
Felipe Balbidd8e9382012-05-29 14:42:56 +0300907 if (use_dma && ep->has_dma)
908 usb_gadget_map_request(&udc->gadget, &req->req,
909 (ep->bEndpointAddress & USB_DIR_IN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 VDBG("%s queue req %p, len %d buf %p\n",
912 ep->ep.name, _req, _req->length, _req->buf);
913
914 spin_lock_irqsave(&udc->lock, flags);
915
916 req->req.status = -EINPROGRESS;
917 req->req.actual = 0;
918
919 /* maybe kickstart non-iso i/o queues */
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300920 if (is_iso) {
921 u16 w;
922
923 w = omap_readw(UDC_IRQ_EN);
924 w |= UDC_SOF_IE;
925 omap_writew(w, UDC_IRQ_EN);
926 } else if (list_empty(&ep->queue) && !ep->stopped && !ep->ackwait) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 int is_in;
928
929 if (ep->bEndpointAddress == 0) {
Felipe Balbi80dd1352012-05-29 14:26:09 +0300930 if (!udc->ep0_pending || !list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 spin_unlock_irqrestore(&udc->lock, flags);
932 return -EL2HLT;
933 }
934
935 /* empty DATA stage? */
936 is_in = udc->ep0_in;
937 if (!req->req.length) {
938
939 /* chip became CONFIGURED or ADDRESSED
940 * earlier; drivers may already have queued
941 * requests to non-control endpoints
942 */
943 if (udc->ep0_set_config) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300944 u16 irq_en = omap_readw(UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 irq_en |= UDC_DS_CHG_IE | UDC_EP0_IE;
947 if (!udc->ep0_reset_config)
948 irq_en |= UDC_EPN_RX_IE
949 | UDC_EPN_TX_IE;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300950 omap_writew(irq_en, UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952
David Brownell313980c2005-04-11 15:38:25 -0700953 /* STATUS for zero length DATA stages is
954 * always an IN ... even for IN transfers,
Joe Perchesdc0d5c12007-12-17 11:40:18 -0800955 * a weird case which seem to stall OMAP.
David Brownell313980c2005-04-11 15:38:25 -0700956 */
Felipe Balbi80dd1352012-05-29 14:26:09 +0300957 omap_writew(UDC_EP_SEL | UDC_EP_DIR,
958 UDC_EP_NUM);
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300959 omap_writew(UDC_CLR_EP, UDC_CTRL);
960 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
961 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 /* cleanup */
964 udc->ep0_pending = 0;
965 done(ep, req, 0);
David Brownell313980c2005-04-11 15:38:25 -0700966 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 /* non-empty DATA stage */
969 } else if (is_in) {
Felipe Balbi80dd1352012-05-29 14:26:09 +0300970 omap_writew(UDC_EP_SEL | UDC_EP_DIR,
971 UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 } else {
973 if (udc->ep0_setup)
974 goto irq_wait;
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300975 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977 } else {
978 is_in = ep->bEndpointAddress & USB_DIR_IN;
979 if (!ep->has_dma)
980 use_ep(ep, UDC_EP_SEL);
981 /* if ISO: SOF IRQs must be enabled/disabled! */
982 }
983
984 if (ep->has_dma)
985 (is_in ? next_in_dma : next_out_dma)(ep, req);
986 else if (req) {
987 if ((is_in ? write_fifo : read_fifo)(ep, req) == 1)
David Brownell313980c2005-04-11 15:38:25 -0700988 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 deselect_ep();
990 if (!is_in) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +0300991 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 ep->ackwait = 1 + ep->double_buf;
993 }
994 /* IN: 6 wait states before it'll tx */
995 }
996 }
997
998irq_wait:
999 /* irq handler advances the queue */
David Brownell313980c2005-04-11 15:38:25 -07001000 if (req != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 list_add_tail(&req->queue, &ep->queue);
1002 spin_unlock_irqrestore(&udc->lock, flags);
1003
1004 return 0;
1005}
1006
1007static int omap_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
1008{
1009 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1010 struct omap_req *req;
1011 unsigned long flags;
1012
1013 if (!_ep || !_req)
1014 return -EINVAL;
1015
1016 spin_lock_irqsave(&ep->udc->lock, flags);
1017
1018 /* make sure it's actually queued on this endpoint */
Felipe Balbi80dd1352012-05-29 14:26:09 +03001019 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (&req->req == _req)
1021 break;
1022 }
1023 if (&req->req != _req) {
1024 spin_unlock_irqrestore(&ep->udc->lock, flags);
1025 return -EINVAL;
1026 }
1027
1028 if (use_dma && ep->dma_channel && ep->queue.next == &req->queue) {
1029 int channel = ep->dma_channel;
1030
1031 /* releasing the channel cancels the request,
1032 * reclaiming the channel restarts the queue
1033 */
1034 dma_channel_release(ep);
1035 dma_channel_claim(ep, channel);
David Brownelle6a6e472006-12-10 11:47:04 -08001036 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 done(ep, req, -ECONNRESET);
1038 spin_unlock_irqrestore(&ep->udc->lock, flags);
1039 return 0;
1040}
1041
1042/*-------------------------------------------------------------------------*/
1043
1044static int omap_ep_set_halt(struct usb_ep *_ep, int value)
1045{
1046 struct omap_ep *ep = container_of(_ep, struct omap_ep, ep);
1047 unsigned long flags;
1048 int status = -EOPNOTSUPP;
1049
1050 spin_lock_irqsave(&ep->udc->lock, flags);
1051
1052 /* just use protocol stalls for ep0; real halts are annoying */
1053 if (ep->bEndpointAddress == 0) {
1054 if (!ep->udc->ep0_pending)
1055 status = -EINVAL;
1056 else if (value) {
1057 if (ep->udc->ep0_set_config) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07001058 WARNING("error changing config?\n");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001059 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001061 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 ep->udc->ep0_pending = 0;
1063 status = 0;
1064 } else /* NOP */
1065 status = 0;
1066
1067 /* otherwise, all active non-ISO endpoints can halt */
Ido Shayevitzf8bdae02012-03-12 20:25:35 +02001068 } else if (ep->bmAttributes != USB_ENDPOINT_XFER_ISOC && ep->ep.desc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /* IN endpoints must already be idle */
1071 if ((ep->bEndpointAddress & USB_DIR_IN)
David Brownelle6a6e472006-12-10 11:47:04 -08001072 && !list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 status = -EAGAIN;
1074 goto done;
1075 }
1076
1077 if (value) {
1078 int channel;
1079
1080 if (use_dma && ep->dma_channel
1081 && !list_empty(&ep->queue)) {
1082 channel = ep->dma_channel;
1083 dma_channel_release(ep);
1084 } else
1085 channel = 0;
1086
1087 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001088 if (omap_readw(UDC_STAT_FLG) & UDC_NON_ISO_FIFO_EMPTY) {
1089 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 status = 0;
1091 } else
1092 status = -EAGAIN;
1093 deselect_ep();
1094
1095 if (channel)
1096 dma_channel_claim(ep, channel);
1097 } else {
1098 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001099 omap_writew(ep->udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 ep->ackwait = 0;
1101 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001102 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ep->ackwait = 1 + ep->double_buf;
1104 }
1105 }
1106 }
1107done:
1108 VDBG("%s %s halt stat %d\n", ep->ep.name,
1109 value ? "set" : "clear", status);
1110
1111 spin_unlock_irqrestore(&ep->udc->lock, flags);
1112 return status;
1113}
1114
1115static struct usb_ep_ops omap_ep_ops = {
1116 .enable = omap_ep_enable,
1117 .disable = omap_ep_disable,
1118
1119 .alloc_request = omap_alloc_request,
1120 .free_request = omap_free_request,
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 .queue = omap_ep_queue,
1123 .dequeue = omap_ep_dequeue,
1124
1125 .set_halt = omap_ep_set_halt,
Felipe Balbi80dd1352012-05-29 14:26:09 +03001126 /* fifo_status ... report bytes in fifo */
1127 /* fifo_flush ... flush fifo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128};
1129
1130/*-------------------------------------------------------------------------*/
1131
1132static int omap_get_frame(struct usb_gadget *gadget)
1133{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001134 u16 sof = omap_readw(UDC_SOF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return (sof & UDC_TS_OK) ? (sof & UDC_TS) : -EL2NSYNC;
1136}
1137
1138static int omap_wakeup(struct usb_gadget *gadget)
1139{
1140 struct omap_udc *udc;
1141 unsigned long flags;
1142 int retval = -EHOSTUNREACH;
1143
1144 udc = container_of(gadget, struct omap_udc, gadget);
1145
1146 spin_lock_irqsave(&udc->lock, flags);
1147 if (udc->devstat & UDC_SUS) {
1148 /* NOTE: OTG spec erratum says that OTG devices may
1149 * issue wakeups without host enable.
1150 */
1151 if (udc->devstat & (UDC_B_HNP_ENABLE|UDC_R_WK_OK)) {
1152 DBG("remote wakeup...\n");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001153 omap_writew(UDC_RMT_WKP, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 retval = 0;
1155 }
1156
1157 /* NOTE: non-OTG systems may use SRP TOO... */
1158 } else if (!(udc->devstat & UDC_ATT)) {
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301159 if (!IS_ERR_OR_NULL(udc->transceiver))
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001160 retval = otg_start_srp(udc->transceiver->otg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 spin_unlock_irqrestore(&udc->lock, flags);
1163
1164 return retval;
1165}
1166
1167static int
1168omap_set_selfpowered(struct usb_gadget *gadget, int is_selfpowered)
1169{
1170 struct omap_udc *udc;
1171 unsigned long flags;
1172 u16 syscon1;
1173
Peter Chen58ae8e0b2015-01-28 16:32:33 +08001174 gadget->is_selfpowered = (is_selfpowered != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 udc = container_of(gadget, struct omap_udc, gadget);
1176 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001177 syscon1 = omap_readw(UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (is_selfpowered)
1179 syscon1 |= UDC_SELF_PWR;
1180 else
1181 syscon1 &= ~UDC_SELF_PWR;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001182 omap_writew(syscon1, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 spin_unlock_irqrestore(&udc->lock, flags);
1184
1185 return 0;
1186}
1187
1188static int can_pullup(struct omap_udc *udc)
1189{
1190 return udc->driver && udc->softconnect && udc->vbus_active;
1191}
1192
1193static void pullup_enable(struct omap_udc *udc)
1194{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001195 u16 w;
1196
1197 w = omap_readw(UDC_SYSCON1);
1198 w |= UDC_PULLUP_EN;
1199 omap_writew(w, UDC_SYSCON1);
1200 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx()) {
1201 u32 l;
1202
1203 l = omap_readl(OTG_CTRL);
1204 l |= OTG_BSESSVLD;
1205 omap_writel(l, OTG_CTRL);
1206 }
1207 omap_writew(UDC_DS_CHG_IE, UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210static void pullup_disable(struct omap_udc *udc)
1211{
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001212 u16 w;
1213
1214 if (!gadget_is_otg(&udc->gadget) && !cpu_is_omap15xx()) {
1215 u32 l;
1216
1217 l = omap_readl(OTG_CTRL);
1218 l &= ~OTG_BSESSVLD;
1219 omap_writel(l, OTG_CTRL);
1220 }
1221 omap_writew(UDC_DS_CHG_IE, UDC_IRQ_EN);
1222 w = omap_readw(UDC_SYSCON1);
1223 w &= ~UDC_PULLUP_EN;
1224 omap_writew(w, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
David Brownelle6a6e472006-12-10 11:47:04 -08001227static struct omap_udc *udc;
1228
1229static void omap_udc_enable_clock(int enable)
1230{
1231 if (udc == NULL || udc->dc_clk == NULL || udc->hhc_clk == NULL)
1232 return;
1233
1234 if (enable) {
1235 clk_enable(udc->dc_clk);
1236 clk_enable(udc->hhc_clk);
1237 udelay(100);
1238 } else {
1239 clk_disable(udc->hhc_clk);
1240 clk_disable(udc->dc_clk);
1241 }
1242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/*
1245 * Called by whatever detects VBUS sessions: external transceiver
1246 * driver, or maybe GPIO0 VBUS IRQ. May request 48 MHz clock.
1247 */
1248static int omap_vbus_session(struct usb_gadget *gadget, int is_active)
1249{
1250 struct omap_udc *udc;
1251 unsigned long flags;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001252 u32 l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 udc = container_of(gadget, struct omap_udc, gadget);
1255 spin_lock_irqsave(&udc->lock, flags);
1256 VDBG("VBUS %s\n", is_active ? "on" : "off");
1257 udc->vbus_active = (is_active != 0);
1258 if (cpu_is_omap15xx()) {
1259 /* "software" detect, ignored if !VBUS_MODE_1510 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001260 l = omap_readl(FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (is_active)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001262 l |= VBUS_CTRL_1510;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001264 l &= ~VBUS_CTRL_1510;
1265 omap_writel(l, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
David Brownelle6a6e472006-12-10 11:47:04 -08001267 if (udc->dc_clk != NULL && is_active) {
1268 if (!udc->clk_requested) {
1269 omap_udc_enable_clock(1);
1270 udc->clk_requested = 1;
1271 }
1272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (can_pullup(udc))
1274 pullup_enable(udc);
1275 else
1276 pullup_disable(udc);
David Brownelle6a6e472006-12-10 11:47:04 -08001277 if (udc->dc_clk != NULL && !is_active) {
1278 if (udc->clk_requested) {
1279 omap_udc_enable_clock(0);
1280 udc->clk_requested = 0;
1281 }
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 spin_unlock_irqrestore(&udc->lock, flags);
1284 return 0;
1285}
1286
1287static int omap_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1288{
1289 struct omap_udc *udc;
1290
1291 udc = container_of(gadget, struct omap_udc, gadget);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301292 if (!IS_ERR_OR_NULL(udc->transceiver))
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001293 return usb_phy_set_power(udc->transceiver, mA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return -EOPNOTSUPP;
1295}
1296
1297static int omap_pullup(struct usb_gadget *gadget, int is_on)
1298{
1299 struct omap_udc *udc;
1300 unsigned long flags;
1301
1302 udc = container_of(gadget, struct omap_udc, gadget);
1303 spin_lock_irqsave(&udc->lock, flags);
1304 udc->softconnect = (is_on != 0);
1305 if (can_pullup(udc))
1306 pullup_enable(udc);
1307 else
1308 pullup_disable(udc);
1309 spin_unlock_irqrestore(&udc->lock, flags);
1310 return 0;
1311}
1312
Felipe Balbi1bf0cf62013-01-24 10:52:52 +02001313static int omap_udc_start(struct usb_gadget *g,
Arnd Bergmann518868c2013-03-05 23:16:44 +01001314 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -05001315static int omap_udc_stop(struct usb_gadget *g);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001316
Felipe Balbieeef4582013-01-24 17:58:16 +02001317static const struct usb_gadget_ops omap_gadget_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 .get_frame = omap_get_frame,
1319 .wakeup = omap_wakeup,
1320 .set_selfpowered = omap_set_selfpowered,
1321 .vbus_session = omap_vbus_session,
1322 .vbus_draw = omap_vbus_draw,
1323 .pullup = omap_pullup,
Felipe Balbi1bf0cf62013-01-24 10:52:52 +02001324 .udc_start = omap_udc_start,
1325 .udc_stop = omap_udc_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326};
1327
1328/*-------------------------------------------------------------------------*/
1329
1330/* dequeue ALL requests; caller holds udc->lock */
1331static void nuke(struct omap_ep *ep, int status)
1332{
1333 struct omap_req *req;
1334
1335 ep->stopped = 1;
1336
1337 if (use_dma && ep->dma_channel)
1338 dma_channel_release(ep);
1339
1340 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001341 omap_writew(UDC_CLR_EP, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (ep->bEndpointAddress && ep->bmAttributes != USB_ENDPOINT_XFER_ISOC)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001343 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 while (!list_empty(&ep->queue)) {
1346 req = list_entry(ep->queue.next, struct omap_req, queue);
1347 done(ep, req, status);
1348 }
1349}
1350
1351/* caller holds udc->lock */
1352static void udc_quiesce(struct omap_udc *udc)
1353{
1354 struct omap_ep *ep;
1355
1356 udc->gadget.speed = USB_SPEED_UNKNOWN;
1357 nuke(&udc->ep[0], -ESHUTDOWN);
Felipe Balbi80dd1352012-05-29 14:26:09 +03001358 list_for_each_entry(ep, &udc->gadget.ep_list, ep.ep_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 nuke(ep, -ESHUTDOWN);
1360}
1361
1362/*-------------------------------------------------------------------------*/
1363
1364static void update_otg(struct omap_udc *udc)
1365{
1366 u16 devstat;
1367
David Brownell9cfbba72007-10-26 13:42:18 -07001368 if (!gadget_is_otg(&udc->gadget))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return;
1370
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001371 if (omap_readl(OTG_CTRL) & OTG_ID)
1372 devstat = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 else
1374 devstat = 0;
1375
1376 udc->gadget.b_hnp_enable = !!(devstat & UDC_B_HNP_ENABLE);
1377 udc->gadget.a_hnp_support = !!(devstat & UDC_A_HNP_SUPPORT);
1378 udc->gadget.a_alt_hnp_support = !!(devstat & UDC_A_ALT_HNP_SUPPORT);
1379
1380 /* Enable HNP early, avoiding races on suspend irq path.
1381 * ASSUMES OTG state machine B_BUS_REQ input is true.
1382 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001383 if (udc->gadget.b_hnp_enable) {
1384 u32 l;
1385
1386 l = omap_readl(OTG_CTRL);
1387 l |= OTG_B_HNPEN | OTG_B_BUSREQ;
1388 l &= ~OTG_PULLUP;
1389 omap_writel(l, OTG_CTRL);
1390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
1393static void ep0_irq(struct omap_udc *udc, u16 irq_src)
1394{
1395 struct omap_ep *ep0 = &udc->ep[0];
David Brownell313980c2005-04-11 15:38:25 -07001396 struct omap_req *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 ep0->irqs++;
1399
1400 /* Clear any pending requests and then scrub any rx/tx state
1401 * before starting to handle the SETUP request.
1402 */
1403 if (irq_src & UDC_SETUP) {
1404 u16 ack = irq_src & (UDC_EP0_TX|UDC_EP0_RX);
1405
1406 nuke(ep0, 0);
1407 if (ack) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001408 omap_writew(ack, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 irq_src = UDC_SETUP;
1410 }
1411 }
1412
David Brownelle6a6e472006-12-10 11:47:04 -08001413 /* IN/OUT packets mean we're in the DATA or STATUS stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * This driver uses only uses protocol stalls (ep0 never halts),
1415 * and if we got this far the gadget driver already had a
1416 * chance to stall. Tries to be forgiving of host oddities.
1417 *
1418 * NOTE: the last chance gadget drivers have to stall control
1419 * requests is during their request completion callback.
1420 */
1421 if (!list_empty(&ep0->queue))
1422 req = container_of(ep0->queue.next, struct omap_req, queue);
1423
1424 /* IN == TX to host */
1425 if (irq_src & UDC_EP0_TX) {
1426 int stat;
1427
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001428 omap_writew(UDC_EP0_TX, UDC_IRQ_SRC);
1429 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1430 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (stat & UDC_ACK) {
1432 if (udc->ep0_in) {
1433 /* write next IN packet from response,
1434 * or set up the status stage.
1435 */
1436 if (req)
1437 stat = write_fifo(ep0, req);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001438 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (!req && udc->ep0_pending) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001440 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
1441 omap_writew(UDC_CLR_EP, UDC_CTRL);
1442 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1443 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 udc->ep0_pending = 0;
1445 } /* else: 6 wait states before it'll tx */
1446 } else {
1447 /* ack status stage of OUT transfer */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001448 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (req)
1450 done(ep0, req, 0);
1451 }
David Brownell313980c2005-04-11 15:38:25 -07001452 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 } else if (stat & UDC_STALL) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001454 omap_writew(UDC_CLR_HALT, UDC_CTRL);
1455 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001457 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 }
1460
1461 /* OUT == RX from host */
1462 if (irq_src & UDC_EP0_RX) {
1463 int stat;
1464
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001465 omap_writew(UDC_EP0_RX, UDC_IRQ_SRC);
1466 omap_writew(UDC_EP_SEL, UDC_EP_NUM);
1467 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (stat & UDC_ACK) {
1469 if (!udc->ep0_in) {
1470 stat = 0;
1471 /* read next OUT packet of request, maybe
1472 * reactiviting the fifo; stall on errors.
1473 */
Felipe Balbi80dd1352012-05-29 14:26:09 +03001474 stat = read_fifo(ep0, req);
1475 if (!req || stat < 0) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001476 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 udc->ep0_pending = 0;
1478 stat = 0;
1479 } else if (stat == 0)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001480 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1481 omap_writew(0, UDC_EP_NUM);
David Brownelle6a6e472006-12-10 11:47:04 -08001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* activate status stage */
1484 if (stat == 1) {
1485 done(ep0, req, 0);
1486 /* that may have STALLed ep0... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001487 omap_writew(UDC_EP_SEL | UDC_EP_DIR,
1488 UDC_EP_NUM);
1489 omap_writew(UDC_CLR_EP, UDC_CTRL);
1490 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1491 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 udc->ep0_pending = 0;
1493 }
1494 } else {
1495 /* ack status stage of IN transfer */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001496 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (req)
1498 done(ep0, req, 0);
1499 }
1500 } else if (stat & UDC_STALL) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001501 omap_writew(UDC_CLR_HALT, UDC_CTRL);
1502 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 } else {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001504 omap_writew(0, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 }
1506 }
1507
1508 /* SETUP starts all control transfers */
1509 if (irq_src & UDC_SETUP) {
1510 union u {
1511 u16 word[4];
1512 struct usb_ctrlrequest r;
1513 } u;
1514 int status = -EINVAL;
1515 struct omap_ep *ep;
1516
1517 /* read the (latest) SETUP message */
1518 do {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001519 omap_writew(UDC_SETUP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 /* two bytes at a time */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001521 u.word[0] = omap_readw(UDC_DATA);
1522 u.word[1] = omap_readw(UDC_DATA);
1523 u.word[2] = omap_readw(UDC_DATA);
1524 u.word[3] = omap_readw(UDC_DATA);
1525 omap_writew(0, UDC_EP_NUM);
1526 } while (omap_readw(UDC_IRQ_SRC) & UDC_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
David Brownell01ee7d72007-05-25 20:40:14 -07001528#define w_value le16_to_cpu(u.r.wValue)
1529#define w_index le16_to_cpu(u.r.wIndex)
1530#define w_length le16_to_cpu(u.r.wLength)
David Brownell65111082005-04-28 13:52:31 -07001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /* Delegate almost all control requests to the gadget driver,
1533 * except for a handful of ch9 status/feature requests that
1534 * hardware doesn't autodecode _and_ the gadget API hides.
1535 */
1536 udc->ep0_in = (u.r.bRequestType & USB_DIR_IN) != 0;
1537 udc->ep0_set_config = 0;
1538 udc->ep0_pending = 1;
1539 ep0->stopped = 0;
1540 ep0->ackwait = 0;
1541 switch (u.r.bRequest) {
1542 case USB_REQ_SET_CONFIGURATION:
1543 /* udc needs to know when ep != 0 is valid */
1544 if (u.r.bRequestType != USB_RECIP_DEVICE)
1545 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001546 if (w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto do_stall;
1548 udc->ep0_set_config = 1;
David Brownell65111082005-04-28 13:52:31 -07001549 udc->ep0_reset_config = (w_value == 0);
1550 VDBG("set config %d\n", w_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* update udc NOW since gadget driver may start
1553 * queueing requests immediately; clear config
1554 * later if it fails the request.
1555 */
1556 if (udc->ep0_reset_config)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001557 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001559 omap_writew(UDC_DEV_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 update_otg(udc);
1561 goto delegate;
1562 case USB_REQ_CLEAR_FEATURE:
1563 /* clear endpoint halt */
1564 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1565 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001566 if (w_value != USB_ENDPOINT_HALT
1567 || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 goto do_stall;
David Brownell65111082005-04-28 13:52:31 -07001569 ep = &udc->ep[w_index & 0xf];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (ep != ep0) {
David Brownell65111082005-04-28 13:52:31 -07001571 if (w_index & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ep += 16;
1573 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
Ido Shayevitzf8bdae02012-03-12 20:25:35 +02001574 || !ep->ep.desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 goto do_stall;
1576 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001577 omap_writew(udc->clr_halt, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ep->ackwait = 0;
1579 if (!(ep->bEndpointAddress & USB_DIR_IN)) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001580 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 ep->ackwait = 1 + ep->double_buf;
1582 }
David Brownell313980c2005-04-11 15:38:25 -07001583 /* NOTE: assumes the host behaves sanely,
1584 * only clearing real halts. Else we may
1585 * need to kill pending transfers and then
1586 * restart the queue... very messy for DMA!
1587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 VDBG("%s halt cleared by host\n", ep->name);
1590 goto ep0out_status_stage;
1591 case USB_REQ_SET_FEATURE:
1592 /* set endpoint halt */
1593 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
1594 goto delegate;
David Brownell65111082005-04-28 13:52:31 -07001595 if (w_value != USB_ENDPOINT_HALT
1596 || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 goto do_stall;
David Brownell65111082005-04-28 13:52:31 -07001598 ep = &udc->ep[w_index & 0xf];
1599 if (w_index & USB_DIR_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 ep += 16;
1601 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
Ido Shayevitzf8bdae02012-03-12 20:25:35 +02001602 || ep == ep0 || !ep->ep.desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 goto do_stall;
1604 if (use_dma && ep->has_dma) {
1605 /* this has rude side-effects (aborts) and
1606 * can't really work if DMA-IN is active
1607 */
Felipe Balbi80dd1352012-05-29 14:26:09 +03001608 DBG("%s host set_halt, NYET\n", ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 goto do_stall;
1610 }
1611 use_ep(ep, 0);
1612 /* can't halt if fifo isn't empty... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001613 omap_writew(UDC_CLR_EP, UDC_CTRL);
1614 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 VDBG("%s halted by host\n", ep->name);
1616ep0out_status_stage:
1617 status = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001618 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1619 omap_writew(UDC_CLR_EP, UDC_CTRL);
1620 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1621 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 udc->ep0_pending = 0;
1623 break;
1624 case USB_REQ_GET_STATUS:
David Brownell8a3c1f52007-03-21 12:26:32 -07001625 /* USB_ENDPOINT_HALT status? */
1626 if (u.r.bRequestType != (USB_DIR_IN|USB_RECIP_ENDPOINT))
1627 goto intf_status;
1628
1629 /* ep0 never stalls */
1630 if (!(w_index & 0xf))
1631 goto zero_status;
1632
1633 /* only active endpoints count */
1634 ep = &udc->ep[w_index & 0xf];
1635 if (w_index & USB_DIR_IN)
1636 ep += 16;
Ido Shayevitzf8bdae02012-03-12 20:25:35 +02001637 if (!ep->ep.desc)
David Brownell8a3c1f52007-03-21 12:26:32 -07001638 goto do_stall;
1639
1640 /* iso never stalls */
1641 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
1642 goto zero_status;
1643
1644 /* FIXME don't assume non-halted endpoints!! */
1645 ERR("%s status, can't report\n", ep->ep.name);
1646 goto do_stall;
1647
1648intf_status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 /* return interface status. if we were pedantic,
1650 * we'd detect non-existent interfaces, and stall.
1651 */
1652 if (u.r.bRequestType
1653 != (USB_DIR_IN|USB_RECIP_INTERFACE))
1654 goto delegate;
David Brownell8a3c1f52007-03-21 12:26:32 -07001655
1656zero_status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /* return two zero bytes */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001658 omap_writew(UDC_EP_SEL|UDC_EP_DIR, UDC_EP_NUM);
1659 omap_writew(0, UDC_DATA);
1660 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
1661 omap_writew(UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 status = 0;
David Brownell65111082005-04-28 13:52:31 -07001663 VDBG("GET_STATUS, interface %d\n", w_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /* next, status stage */
1665 break;
1666 default:
1667delegate:
1668 /* activate the ep0out fifo right away */
David Brownell65111082005-04-28 13:52:31 -07001669 if (!udc->ep0_in && w_length) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001670 omap_writew(0, UDC_EP_NUM);
1671 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673
1674 /* gadget drivers see class/vendor specific requests,
1675 * {SET,GET}_{INTERFACE,DESCRIPTOR,CONFIGURATION},
1676 * and more
1677 */
1678 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1679 u.r.bRequestType, u.r.bRequest,
David Brownell65111082005-04-28 13:52:31 -07001680 w_value, w_index, w_length);
1681
1682#undef w_value
1683#undef w_index
1684#undef w_length
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 /* The gadget driver may return an error here,
1687 * causing an immediate protocol stall.
1688 *
1689 * Else it must issue a response, either queueing a
1690 * response buffer for the DATA stage, or halting ep0
1691 * (causing a protocol stall, not a real halt). A
1692 * zero length buffer means no DATA stage.
1693 *
1694 * It's fine to issue that response after the setup()
1695 * call returns, and this IRQ was handled.
1696 */
1697 udc->ep0_setup = 1;
1698 spin_unlock(&udc->lock);
Felipe Balbi80dd1352012-05-29 14:26:09 +03001699 status = udc->driver->setup(&udc->gadget, &u.r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 spin_lock(&udc->lock);
1701 udc->ep0_setup = 0;
1702 }
1703
1704 if (status < 0) {
1705do_stall:
1706 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1707 u.r.bRequestType, u.r.bRequest, status);
1708 if (udc->ep0_set_config) {
1709 if (udc->ep0_reset_config)
Arjan van de Venb6c63932008-07-25 01:45:52 -07001710 WARNING("error resetting config?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001712 omap_writew(UDC_CLR_CFG, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001714 omap_writew(UDC_STALL_CMD, UDC_SYSCON2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 udc->ep0_pending = 0;
1716 }
1717 }
1718}
1719
1720/*-------------------------------------------------------------------------*/
1721
1722#define OTG_FLAGS (UDC_B_HNP_ENABLE|UDC_A_HNP_SUPPORT|UDC_A_ALT_HNP_SUPPORT)
1723
1724static void devstate_irq(struct omap_udc *udc, u16 irq_src)
1725{
1726 u16 devstat, change;
1727
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001728 devstat = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 change = devstat ^ udc->devstat;
1730 udc->devstat = devstat;
1731
1732 if (change & (UDC_USB_RESET|UDC_ATT)) {
1733 udc_quiesce(udc);
1734
1735 if (change & UDC_ATT) {
1736 /* driver for any external transceiver will
1737 * have called omap_vbus_session() already
1738 */
1739 if (devstat & UDC_ATT) {
1740 udc->gadget.speed = USB_SPEED_FULL;
1741 VDBG("connect\n");
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301742 if (IS_ERR_OR_NULL(udc->transceiver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 pullup_enable(udc);
Felipe Balbi80dd1352012-05-29 14:26:09 +03001744 /* if (driver->connect) call it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 } else if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
1746 udc->gadget.speed = USB_SPEED_UNKNOWN;
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301747 if (IS_ERR_OR_NULL(udc->transceiver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 pullup_disable(udc);
1749 DBG("disconnect, gadget %s\n",
1750 udc->driver->driver.name);
1751 if (udc->driver->disconnect) {
1752 spin_unlock(&udc->lock);
1753 udc->driver->disconnect(&udc->gadget);
1754 spin_lock(&udc->lock);
1755 }
1756 }
1757 change &= ~UDC_ATT;
1758 }
1759
1760 if (change & UDC_USB_RESET) {
1761 if (devstat & UDC_USB_RESET) {
1762 VDBG("RESET=1\n");
1763 } else {
1764 udc->gadget.speed = USB_SPEED_FULL;
1765 INFO("USB reset done, gadget %s\n",
1766 udc->driver->driver.name);
1767 /* ep0 traffic is legal from now on */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001768 omap_writew(UDC_DS_CHG_IE | UDC_EP0_IE,
1769 UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771 change &= ~UDC_USB_RESET;
1772 }
1773 }
1774 if (change & UDC_SUS) {
1775 if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
Felipe Balbi80dd1352012-05-29 14:26:09 +03001776 /* FIXME tell isp1301 to suspend/resume (?) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (devstat & UDC_SUS) {
1778 VDBG("suspend\n");
1779 update_otg(udc);
1780 /* HNP could be under way already */
1781 if (udc->gadget.speed == USB_SPEED_FULL
1782 && udc->driver->suspend) {
1783 spin_unlock(&udc->lock);
1784 udc->driver->suspend(&udc->gadget);
1785 spin_lock(&udc->lock);
1786 }
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301787 if (!IS_ERR_OR_NULL(udc->transceiver))
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001788 usb_phy_set_suspend(
1789 udc->transceiver, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 } else {
1791 VDBG("resume\n");
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05301792 if (!IS_ERR_OR_NULL(udc->transceiver))
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001793 usb_phy_set_suspend(
1794 udc->transceiver, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (udc->gadget.speed == USB_SPEED_FULL
1796 && udc->driver->resume) {
1797 spin_unlock(&udc->lock);
1798 udc->driver->resume(&udc->gadget);
1799 spin_lock(&udc->lock);
1800 }
1801 }
1802 }
1803 change &= ~UDC_SUS;
1804 }
1805 if (!cpu_is_omap15xx() && (change & OTG_FLAGS)) {
1806 update_otg(udc);
1807 change &= ~OTG_FLAGS;
1808 }
1809
1810 change &= ~(UDC_CFG|UDC_DEF|UDC_ADD);
1811 if (change)
1812 VDBG("devstat %03x, ignore change %03x\n",
1813 devstat, change);
1814
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001815 omap_writew(UDC_DS_CHG, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
David Howells7d12e782006-10-05 14:55:46 +01001818static irqreturn_t omap_udc_irq(int irq, void *_udc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct omap_udc *udc = _udc;
1821 u16 irq_src;
1822 irqreturn_t status = IRQ_NONE;
1823 unsigned long flags;
1824
1825 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001826 irq_src = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 /* Device state change (usb ch9 stuff) */
1829 if (irq_src & UDC_DS_CHG) {
1830 devstate_irq(_udc, irq_src);
1831 status = IRQ_HANDLED;
1832 irq_src &= ~UDC_DS_CHG;
1833 }
1834
1835 /* EP0 control transfers */
1836 if (irq_src & (UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX)) {
1837 ep0_irq(_udc, irq_src);
1838 status = IRQ_HANDLED;
1839 irq_src &= ~(UDC_EP0_RX|UDC_SETUP|UDC_EP0_TX);
1840 }
1841
1842 /* DMA transfer completion */
1843 if (use_dma && (irq_src & (UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT))) {
1844 dma_irq(_udc, irq_src);
1845 status = IRQ_HANDLED;
1846 irq_src &= ~(UDC_TXN_DONE|UDC_RXN_CNT|UDC_RXN_EOT);
1847 }
1848
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001849 irq_src &= ~(UDC_IRQ_SOF | UDC_EPN_TX|UDC_EPN_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 if (irq_src)
1851 DBG("udc_irq, unhandled %03x\n", irq_src);
1852 spin_unlock_irqrestore(&udc->lock, flags);
1853
1854 return status;
1855}
1856
1857/* workaround for seemingly-lost IRQs for RX ACKs... */
1858#define PIO_OUT_TIMEOUT (jiffies + HZ/3)
1859#define HALF_FULL(f) (!((f)&(UDC_NON_ISO_FIFO_FULL|UDC_NON_ISO_FIFO_EMPTY)))
1860
1861static void pio_out_timer(unsigned long _ep)
1862{
1863 struct omap_ep *ep = (void *) _ep;
1864 unsigned long flags;
1865 u16 stat_flg;
1866
1867 spin_lock_irqsave(&ep->udc->lock, flags);
1868 if (!list_empty(&ep->queue) && ep->ackwait) {
David Brownelle6a6e472006-12-10 11:47:04 -08001869 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001870 stat_flg = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 if ((stat_flg & UDC_ACK) && (!(stat_flg & UDC_FIFO_EN)
1873 || (ep->double_buf && HALF_FULL(stat_flg)))) {
1874 struct omap_req *req;
1875
1876 VDBG("%s: lose, %04x\n", ep->ep.name, stat_flg);
1877 req = container_of(ep->queue.next,
1878 struct omap_req, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 (void) read_fifo(ep, req);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001880 omap_writew(ep->bEndpointAddress, UDC_EP_NUM);
1881 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 ep->ackwait = 1 + ep->double_buf;
David Brownelle6a6e472006-12-10 11:47:04 -08001883 } else
1884 deselect_ep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1887 spin_unlock_irqrestore(&ep->udc->lock, flags);
1888}
1889
David Howells7d12e782006-10-05 14:55:46 +01001890static irqreturn_t omap_udc_pio_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
1892 u16 epn_stat, irq_src;
1893 irqreturn_t status = IRQ_NONE;
1894 struct omap_ep *ep;
1895 int epnum;
1896 struct omap_udc *udc = _dev;
1897 struct omap_req *req;
1898 unsigned long flags;
1899
1900 spin_lock_irqsave(&udc->lock, flags);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001901 epn_stat = omap_readw(UDC_EPN_STAT);
1902 irq_src = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 /* handle OUT first, to avoid some wasteful NAKs */
1905 if (irq_src & UDC_EPN_RX) {
1906 epnum = (epn_stat >> 8) & 0x0f;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001907 omap_writew(UDC_EPN_RX, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 status = IRQ_HANDLED;
1909 ep = &udc->ep[epnum];
1910 ep->irqs++;
1911
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001912 omap_writew(epnum | UDC_EP_SEL, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 ep->fnf = 0;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001914 if (omap_readw(UDC_STAT_FLG) & UDC_ACK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 ep->ackwait--;
1916 if (!list_empty(&ep->queue)) {
1917 int stat;
1918 req = container_of(ep->queue.next,
1919 struct omap_req, queue);
1920 stat = read_fifo(ep, req);
1921 if (!ep->double_buf)
1922 ep->fnf = 1;
1923 }
1924 }
1925 /* min 6 clock delay before clearing EP_SEL ... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001926 epn_stat = omap_readw(UDC_EPN_STAT);
1927 epn_stat = omap_readw(UDC_EPN_STAT);
1928 omap_writew(epnum, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 /* enabling fifo _after_ clearing ACK, contrary to docs,
1931 * reduces lossage; timer still needed though (sigh).
1932 */
1933 if (ep->fnf) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001934 omap_writew(UDC_SET_FIFO_EN, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 ep->ackwait = 1 + ep->double_buf;
1936 }
1937 mod_timer(&ep->timer, PIO_OUT_TIMEOUT);
1938 }
1939
1940 /* then IN transfers */
1941 else if (irq_src & UDC_EPN_TX) {
1942 epnum = epn_stat & 0x0f;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001943 omap_writew(UDC_EPN_TX, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 status = IRQ_HANDLED;
1945 ep = &udc->ep[16 + epnum];
1946 ep->irqs++;
1947
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001948 omap_writew(epnum | UDC_EP_DIR | UDC_EP_SEL, UDC_EP_NUM);
1949 if (omap_readw(UDC_STAT_FLG) & UDC_ACK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 ep->ackwait = 0;
1951 if (!list_empty(&ep->queue)) {
1952 req = container_of(ep->queue.next,
1953 struct omap_req, queue);
1954 (void) write_fifo(ep, req);
1955 }
1956 }
1957 /* min 6 clock delay before clearing EP_SEL ... */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001958 epn_stat = omap_readw(UDC_EPN_STAT);
1959 epn_stat = omap_readw(UDC_EPN_STAT);
1960 omap_writew(epnum | UDC_EP_DIR, UDC_EP_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 /* then 6 clocks before it'd tx */
1962 }
1963
1964 spin_unlock_irqrestore(&udc->lock, flags);
1965 return status;
1966}
1967
1968#ifdef USE_ISO
David Howells7d12e782006-10-05 14:55:46 +01001969static irqreturn_t omap_udc_iso_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 struct omap_udc *udc = _dev;
1972 struct omap_ep *ep;
1973 int pending = 0;
1974 unsigned long flags;
1975
1976 spin_lock_irqsave(&udc->lock, flags);
1977
1978 /* handle all non-DMA ISO transfers */
Felipe Balbi80dd1352012-05-29 14:26:09 +03001979 list_for_each_entry(ep, &udc->iso, iso) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 u16 stat;
1981 struct omap_req *req;
1982
1983 if (ep->has_dma || list_empty(&ep->queue))
1984 continue;
1985 req = list_entry(ep->queue.next, struct omap_req, queue);
1986
1987 use_ep(ep, UDC_EP_SEL);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03001988 stat = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /* NOTE: like the other controller drivers, this isn't
1991 * currently reporting lost or damaged frames.
1992 */
1993 if (ep->bEndpointAddress & USB_DIR_IN) {
1994 if (stat & UDC_MISS_IN)
1995 /* done(ep, req, -EPROTO) */;
1996 else
1997 write_fifo(ep, req);
1998 } else {
1999 int status = 0;
2000
2001 if (stat & UDC_NO_RXPACKET)
2002 status = -EREMOTEIO;
2003 else if (stat & UDC_ISO_ERR)
2004 status = -EILSEQ;
2005 else if (stat & UDC_DATA_FLUSH)
2006 status = -ENOSR;
2007
2008 if (status)
2009 /* done(ep, req, status) */;
2010 else
2011 read_fifo(ep, req);
2012 }
2013 deselect_ep();
2014 /* 6 wait states before next EP */
2015
2016 ep->irqs++;
2017 if (!list_empty(&ep->queue))
2018 pending = 1;
2019 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002020 if (!pending) {
2021 u16 w;
2022
2023 w = omap_readw(UDC_IRQ_EN);
2024 w &= ~UDC_SOF_IE;
2025 omap_writew(w, UDC_IRQ_EN);
2026 }
2027 omap_writew(UDC_IRQ_SOF, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 spin_unlock_irqrestore(&udc->lock, flags);
2030 return IRQ_HANDLED;
2031}
2032#endif
2033
2034/*-------------------------------------------------------------------------*/
2035
David Brownell8a3c1f52007-03-21 12:26:32 -07002036static inline int machine_without_vbus_sense(void)
David Brownelle6a6e472006-12-10 11:47:04 -08002037{
Felipe Balbi80dd1352012-05-29 14:26:09 +03002038 return machine_is_omap_innovator()
David Brownelle6a6e472006-12-10 11:47:04 -08002039 || machine_is_omap_osk()
David Brownelle6a6e472006-12-10 11:47:04 -08002040 || machine_is_sx1()
Felipe Balbi80dd1352012-05-29 14:26:09 +03002041 /* No known omap7xx boards with vbus sense */
2042 || cpu_is_omap7xx();
David Brownelle6a6e472006-12-10 11:47:04 -08002043}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Felipe Balbi1bf0cf62013-01-24 10:52:52 +02002045static int omap_udc_start(struct usb_gadget *g,
2046 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 int status = -ENODEV;
2049 struct omap_ep *ep;
2050 unsigned long flags;
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 spin_lock_irqsave(&udc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 /* reset state */
Felipe Balbi80dd1352012-05-29 14:26:09 +03002055 list_for_each_entry(ep, &udc->gadget.ep_list, ep.ep_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 ep->irqs = 0;
2057 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC)
2058 continue;
2059 use_ep(ep, 0);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002060 omap_writew(UDC_SET_HALT, UDC_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062 udc->ep0_pending = 0;
2063 udc->ep[0].irqs = 0;
2064 udc->softconnect = 1;
2065
2066 /* hook up the driver */
David Brownell313980c2005-04-11 15:38:25 -07002067 driver->driver.bus = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 udc->driver = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 spin_unlock_irqrestore(&udc->lock, flags);
2070
David Brownelle6a6e472006-12-10 11:47:04 -08002071 if (udc->dc_clk != NULL)
2072 omap_udc_enable_clock(1);
2073
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002074 omap_writew(UDC_IRQ_SRC_MASK, UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 /* connect to bus through transceiver */
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302077 if (!IS_ERR_OR_NULL(udc->transceiver)) {
Heikki Krogerus6e13c652012-02-13 13:24:20 +02002078 status = otg_set_peripheral(udc->transceiver->otg,
2079 &udc->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (status < 0) {
2081 ERR("can't bind to transceiver\n");
Peter Chen50f741c2014-05-21 09:04:21 +08002082 udc->driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 goto done;
2084 }
2085 } else {
2086 if (can_pullup(udc))
Felipe Balbi80dd1352012-05-29 14:26:09 +03002087 pullup_enable(udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 else
Felipe Balbi80dd1352012-05-29 14:26:09 +03002089 pullup_disable(udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091
2092 /* boards that don't have VBUS sensing can't autogate 48MHz;
2093 * can't enter deep sleep while a gadget driver is active.
2094 */
David Brownell8a3c1f52007-03-21 12:26:32 -07002095 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 omap_vbus_session(&udc->gadget, 1);
2097
2098done:
David Brownelle6a6e472006-12-10 11:47:04 -08002099 if (udc->dc_clk != NULL)
2100 omap_udc_enable_clock(0);
Felipe Balbi1bf0cf62013-01-24 10:52:52 +02002101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return status;
2103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Felipe Balbi22835b82014-10-17 12:05:12 -05002105static int omap_udc_stop(struct usb_gadget *g)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 unsigned long flags;
2108 int status = -ENODEV;
2109
David Brownelle6a6e472006-12-10 11:47:04 -08002110 if (udc->dc_clk != NULL)
2111 omap_udc_enable_clock(1);
2112
David Brownell8a3c1f52007-03-21 12:26:32 -07002113 if (machine_without_vbus_sense())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 omap_vbus_session(&udc->gadget, 0);
2115
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302116 if (!IS_ERR_OR_NULL(udc->transceiver))
Heikki Krogerus6e13c652012-02-13 13:24:20 +02002117 (void) otg_set_peripheral(udc->transceiver->otg, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 else
2119 pullup_disable(udc);
2120
2121 spin_lock_irqsave(&udc->lock, flags);
2122 udc_quiesce(udc);
2123 spin_unlock_irqrestore(&udc->lock, flags);
2124
David Brownell313980c2005-04-11 15:38:25 -07002125 udc->driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
David Brownelle6a6e472006-12-10 11:47:04 -08002127 if (udc->dc_clk != NULL)
2128 omap_udc_enable_clock(0);
Felipe Balbi1bf0cf62013-01-24 10:52:52 +02002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return status;
2131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133/*-------------------------------------------------------------------------*/
2134
2135#ifdef CONFIG_USB_GADGET_DEBUG_FILES
2136
2137#include <linux/seq_file.h>
2138
2139static const char proc_filename[] = "driver/udc";
2140
2141#define FOURBITS "%s%s%s%s"
Felipe Balbi80dd1352012-05-29 14:26:09 +03002142#define EIGHTBITS "%s%s%s%s%s%s%s%s"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144static void proc_ep_show(struct seq_file *s, struct omap_ep *ep)
2145{
2146 u16 stat_flg;
2147 struct omap_req *req;
2148 char buf[20];
2149
2150 use_ep(ep, 0);
2151
2152 if (use_dma && ep->has_dma)
2153 snprintf(buf, sizeof buf, "(%cxdma%d lch%d) ",
2154 (ep->bEndpointAddress & USB_DIR_IN) ? 't' : 'r',
2155 ep->dma_channel - 1, ep->lch);
2156 else
2157 buf[0] = 0;
2158
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002159 stat_flg = omap_readw(UDC_STAT_FLG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 seq_printf(s,
2161 "\n%s %s%s%sirqs %ld stat %04x " EIGHTBITS FOURBITS "%s\n",
2162 ep->name, buf,
2163 ep->double_buf ? "dbuf " : "",
Felipe Balbi80dd1352012-05-29 14:26:09 +03002164 ({ char *s;
2165 switch (ep->ackwait) {
2166 case 0:
2167 s = "";
2168 break;
2169 case 1:
2170 s = "(ackw) ";
2171 break;
2172 case 2:
2173 s = "(ackw2) ";
2174 break;
2175 default:
2176 s = "(?) ";
2177 break;
2178 } s; }),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 ep->irqs, stat_flg,
2180 (stat_flg & UDC_NO_RXPACKET) ? "no_rxpacket " : "",
2181 (stat_flg & UDC_MISS_IN) ? "miss_in " : "",
2182 (stat_flg & UDC_DATA_FLUSH) ? "data_flush " : "",
2183 (stat_flg & UDC_ISO_ERR) ? "iso_err " : "",
2184 (stat_flg & UDC_ISO_FIFO_EMPTY) ? "iso_fifo_empty " : "",
2185 (stat_flg & UDC_ISO_FIFO_FULL) ? "iso_fifo_full " : "",
2186 (stat_flg & UDC_EP_HALTED) ? "HALT " : "",
2187 (stat_flg & UDC_STALL) ? "STALL " : "",
2188 (stat_flg & UDC_NAK) ? "NAK " : "",
2189 (stat_flg & UDC_ACK) ? "ACK " : "",
2190 (stat_flg & UDC_FIFO_EN) ? "fifo_en " : "",
2191 (stat_flg & UDC_NON_ISO_FIFO_EMPTY) ? "fifo_empty " : "",
2192 (stat_flg & UDC_NON_ISO_FIFO_FULL) ? "fifo_full " : "");
2193
Felipe Balbi80dd1352012-05-29 14:26:09 +03002194 if (list_empty(&ep->queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 seq_printf(s, "\t(queue empty)\n");
2196 else
Felipe Balbi80dd1352012-05-29 14:26:09 +03002197 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 unsigned length = req->req.actual;
2199
2200 if (use_dma && buf[0]) {
2201 length += ((ep->bEndpointAddress & USB_DIR_IN)
2202 ? dma_src_len : dma_dest_len)
2203 (ep, req->req.dma + length);
2204 buf[0] = 0;
2205 }
2206 seq_printf(s, "\treq %p len %d/%d buf %p\n",
2207 &req->req, length,
2208 req->req.length, req->req.buf);
2209 }
2210}
2211
2212static char *trx_mode(unsigned m, int enabled)
2213{
2214 switch (m) {
Felipe Balbi80dd1352012-05-29 14:26:09 +03002215 case 0:
2216 return enabled ? "*6wire" : "unused";
2217 case 1:
2218 return "4wire";
2219 case 2:
2220 return "3wire";
2221 case 3:
2222 return "6wire";
2223 default:
2224 return "unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
2226}
2227
2228static int proc_otg_show(struct seq_file *s)
2229{
2230 u32 tmp;
Paul Walmsley4814ced2010-10-08 11:40:20 -06002231 u32 trans = 0;
2232 char *ctrl_name = "(UNKNOWN)";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Dmitry Baryshkove12cc342008-08-07 16:29:25 +04002234 tmp = omap_readl(OTG_REV);
Tony Lindgrenae372572012-05-21 12:01:11 -07002235 ctrl_name = "tranceiver_ctrl";
2236 trans = omap_readw(USB_TRANSCEIVER_CTRL);
David Brownelle6a6e472006-12-10 11:47:04 -08002237 seq_printf(s, "\nOTG rev %d.%d, %s %05x\n",
2238 tmp >> 4, tmp & 0xf, ctrl_name, trans);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002239 tmp = omap_readw(OTG_SYSCON_1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 seq_printf(s, "otg_syscon1 %08x usb2 %s, usb1 %s, usb0 %s,"
2241 FOURBITS "\n", tmp,
2242 trx_mode(USB2_TRX_MODE(tmp), trans & CONF_USB2_UNI_R),
2243 trx_mode(USB1_TRX_MODE(tmp), trans & CONF_USB1_UNI_R),
David Brownell65111082005-04-28 13:52:31 -07002244 (USB0_TRX_MODE(tmp) == 0 && !cpu_is_omap1710())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 ? "internal"
2246 : trx_mode(USB0_TRX_MODE(tmp), 1),
2247 (tmp & OTG_IDLE_EN) ? " !otg" : "",
2248 (tmp & HST_IDLE_EN) ? " !host" : "",
2249 (tmp & DEV_IDLE_EN) ? " !dev" : "",
2250 (tmp & OTG_RESET_DONE) ? " reset_done" : " reset_active");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002251 tmp = omap_readl(OTG_SYSCON_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 seq_printf(s, "otg_syscon2 %08x%s" EIGHTBITS
2253 " b_ase_brst=%d hmc=%d\n", tmp,
2254 (tmp & OTG_EN) ? " otg_en" : "",
2255 (tmp & USBX_SYNCHRO) ? " synchro" : "",
Felipe Balbi80dd1352012-05-29 14:26:09 +03002256 /* much more SRP stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 (tmp & SRP_DATA) ? " srp_data" : "",
2258 (tmp & SRP_VBUS) ? " srp_vbus" : "",
2259 (tmp & OTG_PADEN) ? " otg_paden" : "",
2260 (tmp & HMC_PADEN) ? " hmc_paden" : "",
2261 (tmp & UHOST_EN) ? " uhost_en" : "",
2262 (tmp & HMC_TLLSPEED) ? " tllspeed" : "",
2263 (tmp & HMC_TLLATTACH) ? " tllattach" : "",
2264 B_ASE_BRST(tmp),
2265 OTG_HMC(tmp));
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002266 tmp = omap_readl(OTG_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 seq_printf(s, "otg_ctrl %06x" EIGHTBITS EIGHTBITS "%s\n", tmp,
2268 (tmp & OTG_ASESSVLD) ? " asess" : "",
2269 (tmp & OTG_BSESSEND) ? " bsess_end" : "",
2270 (tmp & OTG_BSESSVLD) ? " bsess" : "",
2271 (tmp & OTG_VBUSVLD) ? " vbus" : "",
2272 (tmp & OTG_ID) ? " id" : "",
2273 (tmp & OTG_DRIVER_SEL) ? " DEVICE" : " HOST",
2274 (tmp & OTG_A_SETB_HNPEN) ? " a_setb_hnpen" : "",
2275 (tmp & OTG_A_BUSREQ) ? " a_bus" : "",
2276 (tmp & OTG_B_HNPEN) ? " b_hnpen" : "",
2277 (tmp & OTG_B_BUSREQ) ? " b_bus" : "",
2278 (tmp & OTG_BUSDROP) ? " busdrop" : "",
2279 (tmp & OTG_PULLDOWN) ? " down" : "",
2280 (tmp & OTG_PULLUP) ? " up" : "",
2281 (tmp & OTG_DRV_VBUS) ? " drv" : "",
2282 (tmp & OTG_PD_VBUS) ? " pd_vb" : "",
2283 (tmp & OTG_PU_VBUS) ? " pu_vb" : "",
2284 (tmp & OTG_PU_ID) ? " pu_id" : ""
2285 );
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002286 tmp = omap_readw(OTG_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 seq_printf(s, "otg_irq_en %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002288 tmp = omap_readw(OTG_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 seq_printf(s, "otg_irq_src %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002290 tmp = omap_readw(OTG_OUTCTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 seq_printf(s, "otg_outctrl %04x" "\n", tmp);
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002292 tmp = omap_readw(OTG_TEST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 seq_printf(s, "otg_test %04x" "\n", tmp);
David Brownell313980c2005-04-11 15:38:25 -07002294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295}
2296
2297static int proc_udc_show(struct seq_file *s, void *_)
2298{
2299 u32 tmp;
2300 struct omap_ep *ep;
2301 unsigned long flags;
2302
2303 spin_lock_irqsave(&udc->lock, flags);
2304
2305 seq_printf(s, "%s, version: " DRIVER_VERSION
2306#ifdef USE_ISO
2307 " (iso)"
2308#endif
2309 "%s\n",
2310 driver_desc,
2311 use_dma ? " (dma)" : "");
2312
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002313 tmp = omap_readw(UDC_REV) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 seq_printf(s,
2315 "UDC rev %d.%d, fifo mode %d, gadget %s\n"
2316 "hmc %d, transceiver %s\n",
2317 tmp >> 4, tmp & 0xf,
2318 fifo_mode,
2319 udc->driver ? udc->driver->driver.name : "(none)",
2320 HMC,
David Brownelle6a6e472006-12-10 11:47:04 -08002321 udc->transceiver
2322 ? udc->transceiver->label
Tony Lindgrenae372572012-05-21 12:01:11 -07002323 : (cpu_is_omap1710()
David Brownelle6a6e472006-12-10 11:47:04 -08002324 ? "external" : "(none)"));
Tony Lindgrenae372572012-05-21 12:01:11 -07002325 seq_printf(s, "ULPD control %04x req %04x status %04x\n",
2326 omap_readw(ULPD_CLOCK_CTRL),
2327 omap_readw(ULPD_SOFT_REQ),
2328 omap_readw(ULPD_STATUS_REQ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 /* OTG controller registers */
2331 if (!cpu_is_omap15xx())
2332 proc_otg_show(s);
2333
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002334 tmp = omap_readw(UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 seq_printf(s, "\nsyscon1 %04x" EIGHTBITS "\n", tmp,
2336 (tmp & UDC_CFG_LOCK) ? " cfg_lock" : "",
2337 (tmp & UDC_DATA_ENDIAN) ? " data_endian" : "",
2338 (tmp & UDC_DMA_ENDIAN) ? " dma_endian" : "",
2339 (tmp & UDC_NAK_EN) ? " nak" : "",
2340 (tmp & UDC_AUTODECODE_DIS) ? " autodecode_dis" : "",
2341 (tmp & UDC_SELF_PWR) ? " self_pwr" : "",
2342 (tmp & UDC_SOFF_DIS) ? " soff_dis" : "",
2343 (tmp & UDC_PULLUP_EN) ? " PULLUP" : "");
Felipe Balbi80dd1352012-05-29 14:26:09 +03002344 /* syscon2 is write-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 /* UDC controller registers */
2347 if (!(tmp & UDC_PULLUP_EN)) {
2348 seq_printf(s, "(suspended)\n");
2349 spin_unlock_irqrestore(&udc->lock, flags);
2350 return 0;
2351 }
2352
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002353 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 seq_printf(s, "devstat %04x" EIGHTBITS "%s%s\n", tmp,
2355 (tmp & UDC_B_HNP_ENABLE) ? " b_hnp" : "",
2356 (tmp & UDC_A_HNP_SUPPORT) ? " a_hnp" : "",
2357 (tmp & UDC_A_ALT_HNP_SUPPORT) ? " a_alt_hnp" : "",
2358 (tmp & UDC_R_WK_OK) ? " r_wk_ok" : "",
2359 (tmp & UDC_USB_RESET) ? " usb_reset" : "",
2360 (tmp & UDC_SUS) ? " SUS" : "",
2361 (tmp & UDC_CFG) ? " CFG" : "",
2362 (tmp & UDC_ADD) ? " ADD" : "",
2363 (tmp & UDC_DEF) ? " DEF" : "",
2364 (tmp & UDC_ATT) ? " ATT" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002365 seq_printf(s, "sof %04x\n", omap_readw(UDC_SOF));
2366 tmp = omap_readw(UDC_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 seq_printf(s, "irq_en %04x" FOURBITS "%s\n", tmp,
2368 (tmp & UDC_SOF_IE) ? " sof" : "",
2369 (tmp & UDC_EPN_RX_IE) ? " epn_rx" : "",
2370 (tmp & UDC_EPN_TX_IE) ? " epn_tx" : "",
2371 (tmp & UDC_DS_CHG_IE) ? " ds_chg" : "",
2372 (tmp & UDC_EP0_IE) ? " ep0" : "");
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002373 tmp = omap_readw(UDC_IRQ_SRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 seq_printf(s, "irq_src %04x" EIGHTBITS "%s%s\n", tmp,
2375 (tmp & UDC_TXN_DONE) ? " txn_done" : "",
2376 (tmp & UDC_RXN_CNT) ? " rxn_cnt" : "",
2377 (tmp & UDC_RXN_EOT) ? " rxn_eot" : "",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002378 (tmp & UDC_IRQ_SOF) ? " sof" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 (tmp & UDC_EPN_RX) ? " epn_rx" : "",
2380 (tmp & UDC_EPN_TX) ? " epn_tx" : "",
2381 (tmp & UDC_DS_CHG) ? " ds_chg" : "",
2382 (tmp & UDC_SETUP) ? " setup" : "",
2383 (tmp & UDC_EP0_RX) ? " ep0out" : "",
2384 (tmp & UDC_EP0_TX) ? " ep0in" : "");
2385 if (use_dma) {
2386 unsigned i;
2387
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002388 tmp = omap_readw(UDC_DMA_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 seq_printf(s, "dma_irq_en %04x%s" EIGHTBITS "\n", tmp,
2390 (tmp & UDC_TX_DONE_IE(3)) ? " tx2_done" : "",
2391 (tmp & UDC_RX_CNT_IE(3)) ? " rx2_cnt" : "",
2392 (tmp & UDC_RX_EOT_IE(3)) ? " rx2_eot" : "",
2393
2394 (tmp & UDC_TX_DONE_IE(2)) ? " tx1_done" : "",
2395 (tmp & UDC_RX_CNT_IE(2)) ? " rx1_cnt" : "",
2396 (tmp & UDC_RX_EOT_IE(2)) ? " rx1_eot" : "",
2397
2398 (tmp & UDC_TX_DONE_IE(1)) ? " tx0_done" : "",
2399 (tmp & UDC_RX_CNT_IE(1)) ? " rx0_cnt" : "",
2400 (tmp & UDC_RX_EOT_IE(1)) ? " rx0_eot" : "");
2401
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002402 tmp = omap_readw(UDC_RXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 seq_printf(s, "rxdma_cfg %04x\n", tmp);
2404 if (tmp) {
2405 for (i = 0; i < 3; i++) {
2406 if ((tmp & (0x0f << (i * 4))) == 0)
2407 continue;
2408 seq_printf(s, "rxdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002409 omap_readw(UDC_RXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
2411 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002412 tmp = omap_readw(UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 seq_printf(s, "txdma_cfg %04x\n", tmp);
2414 if (tmp) {
2415 for (i = 0; i < 3; i++) {
2416 if (!(tmp & (0x0f << (i * 4))))
2417 continue;
2418 seq_printf(s, "txdma[%d] %04x\n", i,
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002419 omap_readw(UDC_TXDMA(i + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
2421 }
2422 }
2423
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002424 tmp = omap_readw(UDC_DEVSTAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (tmp & UDC_ATT) {
2426 proc_ep_show(s, &udc->ep[0]);
2427 if (tmp & UDC_ADD) {
Felipe Balbi80dd1352012-05-29 14:26:09 +03002428 list_for_each_entry(ep, &udc->gadget.ep_list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 ep.ep_list) {
Ido Shayevitzf8bdae02012-03-12 20:25:35 +02002430 if (ep->ep.desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 proc_ep_show(s, ep);
2432 }
2433 }
2434 }
2435 spin_unlock_irqrestore(&udc->lock, flags);
2436 return 0;
2437}
2438
2439static int proc_udc_open(struct inode *inode, struct file *file)
2440{
David Brownell313980c2005-04-11 15:38:25 -07002441 return single_open(file, proc_udc_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03002444static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002445 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 .open = proc_udc_open,
2447 .read = seq_read,
2448 .llseek = seq_lseek,
2449 .release = single_release,
2450};
2451
2452static void create_proc_file(void)
2453{
Denis V. Lunevcdefa182008-04-29 01:02:19 -07002454 proc_create(proc_filename, 0, NULL, &proc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
2457static void remove_proc_file(void)
2458{
David Brownell313980c2005-04-11 15:38:25 -07002459 remove_proc_entry(proc_filename, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460}
2461
2462#else
2463
2464static inline void create_proc_file(void) {}
2465static inline void remove_proc_file(void) {}
2466
2467#endif
2468
2469/*-------------------------------------------------------------------------*/
2470
2471/* Before this controller can enumerate, we need to pick an endpoint
2472 * configuration, or "fifo_mode" That involves allocating 2KB of packet
2473 * buffer space among the endpoints we'll be operating.
David Brownell65111082005-04-28 13:52:31 -07002474 *
2475 * NOTE: as of OMAP 1710 ES2.0, writing a new endpoint config when
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002476 * UDC_SYSCON_1.CFG_LOCK is set can now work. We won't use that
David Brownell65111082005-04-28 13:52:31 -07002477 * capability yet though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002479static unsigned
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480omap_ep_setup(char *name, u8 addr, u8 type,
2481 unsigned buf, unsigned maxp, int dbuf)
2482{
2483 struct omap_ep *ep;
2484 u16 epn_rxtx = 0;
2485
2486 /* OUT endpoints first, then IN */
2487 ep = &udc->ep[addr & 0xf];
2488 if (addr & USB_DIR_IN)
2489 ep += 16;
2490
2491 /* in case of ep init table bugs */
2492 BUG_ON(ep->name[0]);
2493
2494 /* chip setup ... bit values are same for IN, OUT */
2495 if (type == USB_ENDPOINT_XFER_ISOC) {
2496 switch (maxp) {
Felipe Balbi80dd1352012-05-29 14:26:09 +03002497 case 8:
2498 epn_rxtx = 0 << 12;
2499 break;
2500 case 16:
2501 epn_rxtx = 1 << 12;
2502 break;
2503 case 32:
2504 epn_rxtx = 2 << 12;
2505 break;
2506 case 64:
2507 epn_rxtx = 3 << 12;
2508 break;
2509 case 128:
2510 epn_rxtx = 4 << 12;
2511 break;
2512 case 256:
2513 epn_rxtx = 5 << 12;
2514 break;
2515 case 512:
2516 epn_rxtx = 6 << 12;
2517 break;
2518 default:
2519 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 }
2521 epn_rxtx |= UDC_EPN_RX_ISO;
2522 dbuf = 1;
2523 } else {
2524 /* double-buffering "not supported" on 15xx,
David Brownelle6a6e472006-12-10 11:47:04 -08002525 * and ignored for PIO-IN on newer chips
2526 * (for more reliable behavior)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 */
Tony Lindgrenae372572012-05-21 12:01:11 -07002528 if (!use_dma || cpu_is_omap15xx())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 dbuf = 0;
2530
2531 switch (maxp) {
Felipe Balbi80dd1352012-05-29 14:26:09 +03002532 case 8:
2533 epn_rxtx = 0 << 12;
2534 break;
2535 case 16:
2536 epn_rxtx = 1 << 12;
2537 break;
2538 case 32:
2539 epn_rxtx = 2 << 12;
2540 break;
2541 case 64:
2542 epn_rxtx = 3 << 12;
2543 break;
2544 default:
2545 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 }
2547 if (dbuf && addr)
2548 epn_rxtx |= UDC_EPN_RX_DB;
2549 init_timer(&ep->timer);
2550 ep->timer.function = pio_out_timer;
2551 ep->timer.data = (unsigned long) ep;
2552 }
2553 if (addr)
2554 epn_rxtx |= UDC_EPN_RX_VALID;
2555 BUG_ON(buf & 0x07);
2556 epn_rxtx |= buf >> 3;
2557
2558 DBG("%s addr %02x rxtx %04x maxp %d%s buf %d\n",
2559 name, addr, epn_rxtx, maxp, dbuf ? "x2" : "", buf);
2560
2561 if (addr & USB_DIR_IN)
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002562 omap_writew(epn_rxtx, UDC_EP_TX(addr & 0xf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 else
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002564 omap_writew(epn_rxtx, UDC_EP_RX(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 /* next endpoint's buffer starts after this one's */
2567 buf += maxp;
2568 if (dbuf)
2569 buf += maxp;
2570 BUG_ON(buf > 2048);
2571
2572 /* set up driver data structures */
2573 BUG_ON(strlen(name) >= sizeof ep->name);
2574 strlcpy(ep->name, name, sizeof ep->name);
2575 INIT_LIST_HEAD(&ep->queue);
2576 INIT_LIST_HEAD(&ep->iso);
2577 ep->bEndpointAddress = addr;
2578 ep->bmAttributes = type;
2579 ep->double_buf = dbuf;
David Brownelle6a6e472006-12-10 11:47:04 -08002580 ep->udc = udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Robert Baldyga7d4ba802015-07-31 16:00:37 +02002582 switch (type) {
2583 case USB_ENDPOINT_XFER_CONTROL:
2584 ep->ep.caps.type_control = true;
2585 ep->ep.caps.dir_in = true;
2586 ep->ep.caps.dir_out = true;
2587 break;
2588 case USB_ENDPOINT_XFER_ISOC:
2589 ep->ep.caps.type_iso = true;
2590 break;
2591 case USB_ENDPOINT_XFER_BULK:
2592 ep->ep.caps.type_bulk = true;
2593 break;
2594 case USB_ENDPOINT_XFER_INT:
2595 ep->ep.caps.type_int = true;
2596 break;
2597 };
2598
2599 if (addr & USB_DIR_IN)
2600 ep->ep.caps.dir_in = true;
2601 else
2602 ep->ep.caps.dir_out = true;
2603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 ep->ep.name = ep->name;
2605 ep->ep.ops = &omap_ep_ops;
Robert Baldygae117e742013-12-13 12:23:38 +01002606 ep->maxpacket = maxp;
2607 usb_ep_set_maxpacket_limit(&ep->ep, ep->maxpacket);
Felipe Balbi80dd1352012-05-29 14:26:09 +03002608 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 return buf;
2611}
2612
2613static void omap_udc_release(struct device *dev)
2614{
2615 complete(udc->done);
Felipe Balbi80dd1352012-05-29 14:26:09 +03002616 kfree(udc);
David Brownell313980c2005-04-11 15:38:25 -07002617 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002620static int
Heikki Krogerus86753812012-02-13 13:24:02 +02002621omap_udc_setup(struct platform_device *odev, struct usb_phy *xceiv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622{
2623 unsigned tmp, buf;
2624
2625 /* abolish any previous hardware state */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002626 omap_writew(0, UDC_SYSCON1);
2627 omap_writew(0, UDC_IRQ_EN);
2628 omap_writew(UDC_IRQ_SRC_MASK, UDC_IRQ_SRC);
2629 omap_writew(0, UDC_DMA_IRQ_EN);
2630 omap_writew(0, UDC_RXDMA_CFG);
2631 omap_writew(0, UDC_TXDMA_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 /* UDC_PULLUP_EN gates the chip clock */
Felipe Balbi80dd1352012-05-29 14:26:09 +03002634 /* OTG_SYSCON_1 |= DEV_IDLE_EN; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Christoph Lametere94b1762006-12-06 20:33:17 -08002636 udc = kzalloc(sizeof(*udc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 if (!udc)
2638 return -ENOMEM;
2639
Felipe Balbi80dd1352012-05-29 14:26:09 +03002640 spin_lock_init(&udc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 udc->gadget.ops = &omap_gadget_ops;
2643 udc->gadget.ep0 = &udc->ep[0].ep;
2644 INIT_LIST_HEAD(&udc->gadget.ep_list);
2645 INIT_LIST_HEAD(&udc->iso);
2646 udc->gadget.speed = USB_SPEED_UNKNOWN;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01002647 udc->gadget.max_speed = USB_SPEED_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 udc->gadget.name = driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 udc->transceiver = xceiv;
2650
2651 /* ep0 is special; put it right after the SETUP buffer */
2652 buf = omap_ep_setup("ep0", 0, USB_ENDPOINT_XFER_CONTROL,
2653 8 /* after SETUP */, 64 /* maxpacket */, 0);
2654 list_del_init(&udc->ep[0].ep.ep_list);
2655
2656 /* initially disable all non-ep0 endpoints */
2657 for (tmp = 1; tmp < 15; tmp++) {
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002658 omap_writew(0, UDC_EP_RX(tmp));
2659 omap_writew(0, UDC_EP_TX(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
2661
Felipe Balbi80dd1352012-05-29 14:26:09 +03002662#define OMAP_BULK_EP(name, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 buf = omap_ep_setup(name "-bulk", addr, \
2664 USB_ENDPOINT_XFER_BULK, buf, 64, 1);
Felipe Balbi80dd1352012-05-29 14:26:09 +03002665#define OMAP_INT_EP(name, addr, maxp) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 buf = omap_ep_setup(name "-int", addr, \
2667 USB_ENDPOINT_XFER_INT, buf, maxp, 0);
Felipe Balbi80dd1352012-05-29 14:26:09 +03002668#define OMAP_ISO_EP(name, addr, maxp) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 buf = omap_ep_setup(name "-iso", addr, \
2670 USB_ENDPOINT_XFER_ISOC, buf, maxp, 1);
2671
2672 switch (fifo_mode) {
2673 case 0:
2674 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2675 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2676 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2677 break;
2678 case 1:
2679 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2680 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
David Brownell313980c2005-04-11 15:38:25 -07002681 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 OMAP_BULK_EP("ep3in", USB_DIR_IN | 3);
2684 OMAP_BULK_EP("ep4out", USB_DIR_OUT | 4);
David Brownell313980c2005-04-11 15:38:25 -07002685 OMAP_INT_EP("ep10in", USB_DIR_IN | 10, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
2687 OMAP_BULK_EP("ep5in", USB_DIR_IN | 5);
2688 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
David Brownell313980c2005-04-11 15:38:25 -07002689 OMAP_INT_EP("ep11in", USB_DIR_IN | 11, 16);
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2692 OMAP_BULK_EP("ep6out", USB_DIR_OUT | 6);
David Brownell313980c2005-04-11 15:38:25 -07002693 OMAP_INT_EP("ep12in", USB_DIR_IN | 12, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 OMAP_BULK_EP("ep7in", USB_DIR_IN | 7);
2696 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
David Brownell313980c2005-04-11 15:38:25 -07002697 OMAP_INT_EP("ep13in", USB_DIR_IN | 13, 16);
2698 OMAP_INT_EP("ep13out", USB_DIR_OUT | 13, 16);
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 OMAP_BULK_EP("ep8in", USB_DIR_IN | 8);
2701 OMAP_BULK_EP("ep8out", USB_DIR_OUT | 8);
David Brownell313980c2005-04-11 15:38:25 -07002702 OMAP_INT_EP("ep14in", USB_DIR_IN | 14, 16);
2703 OMAP_INT_EP("ep14out", USB_DIR_OUT | 14, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
David Brownell313980c2005-04-11 15:38:25 -07002705 OMAP_BULK_EP("ep15in", USB_DIR_IN | 15);
2706 OMAP_BULK_EP("ep15out", USB_DIR_OUT | 15);
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 break;
2709
2710#ifdef USE_ISO
2711 case 2: /* mixed iso/bulk */
2712 OMAP_ISO_EP("ep1in", USB_DIR_IN | 1, 256);
2713 OMAP_ISO_EP("ep2out", USB_DIR_OUT | 2, 256);
2714 OMAP_ISO_EP("ep3in", USB_DIR_IN | 3, 128);
2715 OMAP_ISO_EP("ep4out", USB_DIR_OUT | 4, 128);
2716
2717 OMAP_INT_EP("ep5in", USB_DIR_IN | 5, 16);
2718
2719 OMAP_BULK_EP("ep6in", USB_DIR_IN | 6);
2720 OMAP_BULK_EP("ep7out", USB_DIR_OUT | 7);
2721 OMAP_INT_EP("ep8in", USB_DIR_IN | 8, 16);
2722 break;
2723 case 3: /* mixed bulk/iso */
2724 OMAP_BULK_EP("ep1in", USB_DIR_IN | 1);
2725 OMAP_BULK_EP("ep2out", USB_DIR_OUT | 2);
2726 OMAP_INT_EP("ep3in", USB_DIR_IN | 3, 16);
2727
2728 OMAP_BULK_EP("ep4in", USB_DIR_IN | 4);
2729 OMAP_BULK_EP("ep5out", USB_DIR_OUT | 5);
2730 OMAP_INT_EP("ep6in", USB_DIR_IN | 6, 16);
2731
2732 OMAP_ISO_EP("ep7in", USB_DIR_IN | 7, 256);
2733 OMAP_ISO_EP("ep8out", USB_DIR_OUT | 8, 256);
2734 OMAP_INT_EP("ep9in", USB_DIR_IN | 9, 16);
2735 break;
2736#endif
2737
2738 /* add more modes as needed */
2739
2740 default:
2741 ERR("unsupported fifo_mode #%d\n", fifo_mode);
2742 return -ENODEV;
2743 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002744 omap_writew(UDC_CFG_LOCK|UDC_SELF_PWR, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 INFO("fifo mode %d, %d bytes not used\n", fifo_mode, 2048 - buf);
2746 return 0;
2747}
2748
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002749static int omap_udc_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 int status = -ENODEV;
2752 int hmc;
Heikki Krogerus86753812012-02-13 13:24:02 +02002753 struct usb_phy *xceiv = NULL;
David Brownell313980c2005-04-11 15:38:25 -07002754 const char *type = NULL;
Jingoo Hane01ee9f2013-07-30 17:00:51 +09002755 struct omap_usb_config *config = dev_get_platdata(&pdev->dev);
Tony Lindgrenae372572012-05-21 12:01:11 -07002756 struct clk *dc_clk = NULL;
2757 struct clk *hhc_clk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Felipe Balbi5b6d84b2012-05-29 14:27:52 +03002759 if (cpu_is_omap7xx())
2760 use_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 /* NOTE: "knows" the order of the resources! */
David Brownelle6a6e472006-12-10 11:47:04 -08002763 if (!request_mem_region(pdev->resource[0].start,
Russell King3ae5eae2005-11-09 22:32:44 +00002764 pdev->resource[0].end - pdev->resource[0].start + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 driver_name)) {
2766 DBG("request_mem_region failed\n");
2767 return -EBUSY;
2768 }
2769
David Brownelle6a6e472006-12-10 11:47:04 -08002770 if (cpu_is_omap16xx()) {
2771 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2772 hhc_clk = clk_get(&pdev->dev, "usb_hhc_ck");
2773 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2774 /* can't use omap_udc_enable_clock yet */
2775 clk_enable(dc_clk);
2776 clk_enable(hhc_clk);
2777 udelay(100);
2778 }
2779
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002780 if (cpu_is_omap7xx()) {
2781 dc_clk = clk_get(&pdev->dev, "usb_dc_ck");
2782 hhc_clk = clk_get(&pdev->dev, "l3_ocpi_ck");
2783 BUG_ON(IS_ERR(dc_clk) || IS_ERR(hhc_clk));
2784 /* can't use omap_udc_enable_clock yet */
2785 clk_enable(dc_clk);
2786 clk_enable(hhc_clk);
2787 udelay(100);
2788 }
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 INFO("OMAP UDC rev %d.%d%s\n",
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002791 omap_readw(UDC_REV) >> 4, omap_readw(UDC_REV) & 0xf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 config->otg ? ", Mini-AB" : "");
2793
2794 /* use the mode given to us by board init code */
2795 if (cpu_is_omap15xx()) {
2796 hmc = HMC_1510;
2797 type = "(unknown)";
2798
David Brownell8a3c1f52007-03-21 12:26:32 -07002799 if (machine_without_vbus_sense()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 /* just set up software VBUS detect, and then
2801 * later rig it so we always report VBUS.
2802 * FIXME without really sensing VBUS, we can't
2803 * know when to turn PULLUP_EN on/off; and that
2804 * means we always "need" the 48MHz clock.
2805 */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002806 u32 tmp = omap_readl(FUNC_MUX_CTRL_0);
2807 tmp &= ~VBUS_CTRL_1510;
2808 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 tmp |= VBUS_MODE_1510;
2810 tmp &= ~VBUS_CTRL_1510;
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002811 omap_writel(tmp, FUNC_MUX_CTRL_0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 }
2813 } else {
David Brownell65111082005-04-28 13:52:31 -07002814 /* The transceiver may package some GPIO logic or handle
2815 * loopback and/or transceiverless setup; if we find one,
2816 * use it. Except for OTG, we don't _need_ to talk to one;
2817 * but not having one probably means no VBUS detection.
2818 */
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +05302819 xceiv = usb_get_phy(USB_PHY_TYPE_USB2);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302820 if (!IS_ERR_OR_NULL(xceiv))
David Brownell65111082005-04-28 13:52:31 -07002821 type = xceiv->label;
2822 else if (config->otg) {
2823 DBG("OTG requires external transceiver!\n");
2824 goto cleanup0;
2825 }
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 hmc = HMC_1610;
David Brownelle6a6e472006-12-10 11:47:04 -08002828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 switch (hmc) {
David Brownell313980c2005-04-11 15:38:25 -07002830 case 0: /* POWERUP DEFAULT == 0 */
2831 case 4:
2832 case 12:
2833 case 20:
2834 if (!cpu_is_omap1710()) {
2835 type = "integrated";
2836 break;
2837 }
2838 /* FALL THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 case 3:
2840 case 11:
2841 case 16:
2842 case 19:
2843 case 25:
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302844 if (IS_ERR_OR_NULL(xceiv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 DBG("external transceiver not registered!\n");
David Brownell313980c2005-04-11 15:38:25 -07002846 type = "unknown";
David Brownell65111082005-04-28 13:52:31 -07002847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 case 21: /* internal loopback */
David Brownell313980c2005-04-11 15:38:25 -07002850 type = "loopback";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 break;
2852 case 14: /* transceiverless */
David Brownell65111082005-04-28 13:52:31 -07002853 if (cpu_is_omap1710())
2854 goto bad_on_1710;
2855 /* FALL THROUGH */
2856 case 13:
2857 case 15:
David Brownell313980c2005-04-11 15:38:25 -07002858 type = "no";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 break;
2860
2861 default:
David Brownell65111082005-04-28 13:52:31 -07002862bad_on_1710:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 ERR("unrecognized UDC HMC mode %d\n", hmc);
David Brownell65111082005-04-28 13:52:31 -07002864 goto cleanup0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
2866 }
Tony Lindgrenae372572012-05-21 12:01:11 -07002867
David Brownell313980c2005-04-11 15:38:25 -07002868 INFO("hmc mode %d, %s transceiver\n", hmc, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
2870 /* a "gadget" abstracts/virtualizes the controller */
Russell King3ae5eae2005-11-09 22:32:44 +00002871 status = omap_udc_setup(pdev, xceiv);
Felipe Balbi80dd1352012-05-29 14:26:09 +03002872 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 goto cleanup0;
Felipe Balbi80dd1352012-05-29 14:26:09 +03002874
David Brownell313980c2005-04-11 15:38:25 -07002875 xceiv = NULL;
Felipe Balbi80dd1352012-05-29 14:26:09 +03002876 /* "udc" is now valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 pullup_disable(udc);
2878#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
2879 udc->gadget.is_otg = (config->otg != 0);
2880#endif
2881
David Brownell65111082005-04-28 13:52:31 -07002882 /* starting with omap1710 es2.0, clear toggle is a separate bit */
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002883 if (omap_readw(UDC_REV) >= 0x61)
David Brownell65111082005-04-28 13:52:31 -07002884 udc->clr_halt = UDC_RESET_EP | UDC_CLRDATA_TOGGLE;
2885 else
2886 udc->clr_halt = UDC_RESET_EP;
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 /* USB general purpose IRQ: ep0, state changes, dma, etc */
Russell King3ae5eae2005-11-09 22:32:44 +00002889 status = request_irq(pdev->resource[1].start, omap_udc_irq,
Felipe Balbi80dd1352012-05-29 14:26:09 +03002890 0, driver_name, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002892 ERR("can't get irq %d, err %d\n",
2893 (int) pdev->resource[1].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 goto cleanup1;
2895 }
2896
2897 /* USB "non-iso" IRQ (PIO for all but ep0) */
Russell King3ae5eae2005-11-09 22:32:44 +00002898 status = request_irq(pdev->resource[2].start, omap_udc_pio_irq,
Felipe Balbi80dd1352012-05-29 14:26:09 +03002899 0, "omap_udc pio", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002901 ERR("can't get irq %d, err %d\n",
2902 (int) pdev->resource[2].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 goto cleanup2;
2904 }
2905#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00002906 status = request_irq(pdev->resource[3].start, omap_udc_iso_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002907 0, "omap_udc iso", udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (status != 0) {
David Brownelle6a6e472006-12-10 11:47:04 -08002909 ERR("can't get irq %d, err %d\n",
2910 (int) pdev->resource[3].start, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 goto cleanup3;
2912 }
2913#endif
Cory Maccarrone45f780a2009-11-22 10:10:52 -08002914 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002915 udc->dc_clk = dc_clk;
2916 udc->hhc_clk = hhc_clk;
2917 clk_disable(hhc_clk);
2918 clk_disable(dc_clk);
2919 }
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 create_proc_file();
Felipe Balbi2fb29f22013-02-26 15:15:27 +02002922 status = usb_add_gadget_udc_release(&pdev->dev, &udc->gadget,
2923 omap_udc_release);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002924 if (status)
2925 goto cleanup4;
2926
Felipe Balbi6dfc84f2013-01-24 15:07:29 +02002927 return 0;
2928
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002929cleanup4:
2930 remove_proc_file();
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932#ifdef USE_ISO
2933cleanup3:
Russell King3ae5eae2005-11-09 22:32:44 +00002934 free_irq(pdev->resource[2].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935#endif
2936
2937cleanup2:
Russell King3ae5eae2005-11-09 22:32:44 +00002938 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940cleanup1:
Felipe Balbi80dd1352012-05-29 14:26:09 +03002941 kfree(udc);
David Brownell313980c2005-04-11 15:38:25 -07002942 udc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
2944cleanup0:
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302945 if (!IS_ERR_OR_NULL(xceiv))
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05302946 usb_put_phy(xceiv);
David Brownelle6a6e472006-12-10 11:47:04 -08002947
Tony Lindgrenae372572012-05-21 12:01:11 -07002948 if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
David Brownelle6a6e472006-12-10 11:47:04 -08002949 clk_disable(hhc_clk);
2950 clk_disable(dc_clk);
2951 clk_put(hhc_clk);
2952 clk_put(dc_clk);
2953 }
2954
Russell King3ae5eae2005-11-09 22:32:44 +00002955 release_mem_region(pdev->resource[0].start,
2956 pdev->resource[0].end - pdev->resource[0].start + 1);
David Brownelle6a6e472006-12-10 11:47:04 -08002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 return status;
2959}
2960
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05002961static int omap_udc_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07002963 DECLARE_COMPLETION_ONSTACK(done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
2965 if (!udc)
2966 return -ENODEV;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002967
2968 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08002969 if (udc->driver)
2970 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 udc->done = &done;
2973
2974 pullup_disable(udc);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +05302975 if (!IS_ERR_OR_NULL(udc->transceiver)) {
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05302976 usb_put_phy(udc->transceiver);
David Brownell313980c2005-04-11 15:38:25 -07002977 udc->transceiver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
Tony Lindgrenf35ae632008-07-03 12:24:43 +03002979 omap_writew(0, UDC_SYSCON1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
2981 remove_proc_file();
2982
2983#ifdef USE_ISO
Russell King3ae5eae2005-11-09 22:32:44 +00002984 free_irq(pdev->resource[3].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985#endif
Russell King3ae5eae2005-11-09 22:32:44 +00002986 free_irq(pdev->resource[2].start, udc);
2987 free_irq(pdev->resource[1].start, udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
David Brownelle6a6e472006-12-10 11:47:04 -08002989 if (udc->dc_clk) {
2990 if (udc->clk_requested)
2991 omap_udc_enable_clock(0);
2992 clk_put(udc->hhc_clk);
2993 clk_put(udc->dc_clk);
2994 }
2995
Russell King3ae5eae2005-11-09 22:32:44 +00002996 release_mem_region(pdev->resource[0].start,
2997 pdev->resource[0].end - pdev->resource[0].start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 wait_for_completion(&done);
3000
3001 return 0;
3002}
3003
David Brownell313980c2005-04-11 15:38:25 -07003004/* suspend/resume/wakeup from sysfs (echo > power/state) or when the
3005 * system is forced into deep sleep
3006 *
3007 * REVISIT we should probably reject suspend requests when there's a host
3008 * session active, rather than disconnecting, at least on boards that can
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003009 * report VBUS irqs (UDC_DEVSTAT.UDC_ATT). And in any case, we need to
David Brownell313980c2005-04-11 15:38:25 -07003010 * make host resumes and VBUS detection trigger OMAP wakeup events; that
3011 * may involve talking to an external transceiver (e.g. isp1301).
3012 */
david-b@pacbell.net1d7beee2005-06-29 07:00:56 -07003013
Russell King3ae5eae2005-11-09 22:32:44 +00003014static int omap_udc_suspend(struct platform_device *dev, pm_message_t message)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015{
David Brownell313980c2005-04-11 15:38:25 -07003016 u32 devstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Tony Lindgrenf35ae632008-07-03 12:24:43 +03003018 devstat = omap_readw(UDC_DEVSTAT);
David Brownell313980c2005-04-11 15:38:25 -07003019
3020 /* we're requesting 48 MHz clock if the pullup is enabled
3021 * (== we're attached to the host) and we're not suspended,
3022 * which would prevent entry to deep sleep...
3023 */
3024 if ((devstat & UDC_ATT) != 0 && (devstat & UDC_SUS) == 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07003025 WARNING("session active; suspend requires disconnect\n");
David Brownell313980c2005-04-11 15:38:25 -07003026 omap_pullup(&udc->gadget, 0);
3027 }
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return 0;
3030}
3031
Russell King3ae5eae2005-11-09 22:32:44 +00003032static int omap_udc_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 DBG("resume + wakeup/SRP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 omap_pullup(&udc->gadget, 1);
3036
3037 /* maybe the host would enumerate us if we nudged it */
3038 msleep(100);
3039 return omap_wakeup(&udc->gadget);
3040}
3041
3042/*-------------------------------------------------------------------------*/
3043
Russell King3ae5eae2005-11-09 22:32:44 +00003044static struct platform_driver udc_driver = {
Felipe Balbidc1737c2012-05-29 14:33:30 +03003045 .probe = omap_udc_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05003046 .remove = omap_udc_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 .suspend = omap_udc_suspend,
3048 .resume = omap_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003049 .driver = {
Russell King3ae5eae2005-11-09 22:32:44 +00003050 .name = (char *) driver_name,
3051 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052};
3053
Felipe Balbidc1737c2012-05-29 14:33:30 +03003054module_platform_driver(udc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056MODULE_DESCRIPTION(DRIVER_DESC);
3057MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07003058MODULE_ALIAS("platform:omap_udc");