blob: df681b5cd695f6e1ef6dfa99a3ce3ca93b73c312 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Brownell91987692005-05-07 13:20:19 -07002 * Intel PXA25x and IXP4xx on-chip full speed USB device controllers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2002 Intrinsyc, Inc. (Frank Becker)
5 * Copyright (C) 2003 Robert Schwebel, Pengutronix
6 * Copyright (C) 2003 Benedikt Spranger, Pengutronix
7 * Copyright (C) 2003 David Brownell
8 * Copyright (C) 2003 Joshua Wise
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -080016/* #define VERBOSE_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Milan Svoboda9068a4c2007-06-30 06:25:35 -070018#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/ioport.h>
22#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/timer.h>
28#include <linux/list.h>
29#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/mm.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010031#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/dma-mapping.h>
Nicolas Pitrec7a3bd12006-10-20 14:20:17 -070033#include <linux/irq.h>
Russell King6549e6c2007-08-20 10:33:35 +010034#include <linux/clk.h>
35#include <linux/err.h>
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -080036#include <linux/seq_file.h>
37#include <linux/debugfs.h>
Russell King284d1152008-04-20 17:32:16 +010038#include <linux/io.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070039#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/byteorder.h>
42#include <asm/dma.h>
Milan Svoboda9068a4c2007-06-30 06:25:35 -070043#include <asm/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/system.h>
45#include <asm/mach-types.h>
46#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Brownell5f848132006-12-16 15:34:53 -080048#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070049#include <linux/usb/gadget.h>
Philipp Zabelab26d202009-07-01 03:46:25 -070050#include <linux/usb/otg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Russell King284d1152008-04-20 17:32:16 +010052/*
53 * This driver is PXA25x only. Grab the right register definitions.
54 */
55#ifdef CONFIG_ARCH_PXA
Russell Kinga09e64f2008-08-05 16:14:15 +010056#include <mach/pxa25x-udc.h>
Russell King284d1152008-04-20 17:32:16 +010057#endif
58
Eric Miao0dc726b2009-12-27 23:01:25 +080059#ifdef CONFIG_ARCH_LUBBOCK
60#include <mach/lubbock.h>
61#endif
62
Milan Svoboda9068a4c2007-06-30 06:25:35 -070063#include <asm/mach/udc_pxa2xx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65
66/*
David Brownell91987692005-05-07 13:20:19 -070067 * This driver handles the USB Device Controller (UDC) in Intel's PXA 25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * series processors. The UDC for the IXP 4xx series is very similar.
69 * There are fifteen endpoints, in addition to ep0.
70 *
71 * Such controller drivers work with a gadget driver. The gadget driver
72 * returns descriptors, implements configuration and data protocols used
73 * by the host to interact with this device, and allocates endpoints to
74 * the different protocol interfaces. The controller driver virtualizes
75 * usb hardware so that the gadget drivers will be more portable.
David Brownell34ebcd22007-02-24 12:23:52 -080076 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * This UDC hardware wants to implement a bit too much USB protocol, so
78 * it constrains the sorts of USB configuration change events that work.
79 * The errata for these chips are misleading; some "fixed" bugs from
80 * pxa250 a0/a1 b0/b1/b2 sure act like they're still there.
David Brownellad8c6232007-06-30 06:30:04 -070081 *
82 * Note that the UDC hardware supports DMA (except on IXP) but that's
83 * not used here. IN-DMA (to host) is simple enough, when the data is
84 * suitably aligned (16 bytes) ... the network stack doesn't do that,
85 * other software can. OUT-DMA is buggy in most chip versions, as well
86 * as poorly designed (data toggle not automatic). So this driver won't
87 * bother using DMA. (Mostly-working IN-DMA support was available in
88 * kernels before 2.6.23, but was never enabled or well tested.)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
90
David Brownellad8c6232007-06-30 06:30:04 -070091#define DRIVER_VERSION "30-June-2007"
David Brownell91987692005-05-07 13:20:19 -070092#define DRIVER_DESC "PXA 25x USB Device Controller driver"
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94
Philipp Zabel7a857622008-06-22 23:36:39 +010095static const char driver_name [] = "pxa25x_udc";
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97static const char ep0name [] = "ep0";
98
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#ifdef CONFIG_ARCH_IXP4XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/* cpu-specific register addresses are compiled in to this code */
103#ifdef CONFIG_ARCH_PXA
104#error "Can't configure both IXP and PXA"
105#endif
106
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800107/* IXP doesn't yet support <linux/clk.h> */
108#define clk_get(dev,name) NULL
109#define clk_enable(clk) do { } while (0)
110#define clk_disable(clk) do { } while (0)
111#define clk_put(clk) do { } while (0)
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#endif
114
Philipp Zabel7a857622008-06-22 23:36:39 +0100115#include "pxa25x_udc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117
Philipp Zabel7a857622008-06-22 23:36:39 +0100118#ifdef CONFIG_USB_PXA25X_SMALL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define SIZE_STR " (small)"
120#else
121#define SIZE_STR ""
122#endif
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/* ---------------------------------------------------------------------------
David Brownell34ebcd22007-02-24 12:23:52 -0800125 * endpoint related parts of the api to the usb controller hardware,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * used by gadget driver; and the inner talker-to-hardware core.
127 * ---------------------------------------------------------------------------
128 */
129
Philipp Zabel7a857622008-06-22 23:36:39 +0100130static void pxa25x_ep_fifo_flush (struct usb_ep *ep);
131static void nuke (struct pxa25x_ep *, int status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
David Brownellb2bbb202006-06-29 12:25:39 -0700133/* one GPIO should control a D+ pullup, so host sees this device (or not) */
134static void pullup_off(void)
135{
136 struct pxa2xx_udc_mach_info *mach = the_controller->mach;
Ian Molton8fb105f2008-06-25 22:34:51 +0100137 int off_level = mach->gpio_pullup_inverted;
David Brownellb2bbb202006-06-29 12:25:39 -0700138
Philipp Zabel56a075d2009-07-01 03:42:45 -0700139 if (gpio_is_valid(mach->gpio_pullup))
Ian Molton8fb105f2008-06-25 22:34:51 +0100140 gpio_set_value(mach->gpio_pullup, off_level);
David Brownellb2bbb202006-06-29 12:25:39 -0700141 else if (mach->udc_command)
142 mach->udc_command(PXA2XX_UDC_CMD_DISCONNECT);
143}
144
145static void pullup_on(void)
146{
147 struct pxa2xx_udc_mach_info *mach = the_controller->mach;
Ian Molton8fb105f2008-06-25 22:34:51 +0100148 int on_level = !mach->gpio_pullup_inverted;
David Brownellb2bbb202006-06-29 12:25:39 -0700149
Philipp Zabel56a075d2009-07-01 03:42:45 -0700150 if (gpio_is_valid(mach->gpio_pullup))
Ian Molton8fb105f2008-06-25 22:34:51 +0100151 gpio_set_value(mach->gpio_pullup, on_level);
David Brownellb2bbb202006-06-29 12:25:39 -0700152 else if (mach->udc_command)
153 mach->udc_command(PXA2XX_UDC_CMD_CONNECT);
154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static void pio_irq_enable(int bEndpointAddress)
157{
158 bEndpointAddress &= 0xf;
159 if (bEndpointAddress < 8)
160 UICR0 &= ~(1 << bEndpointAddress);
161 else {
162 bEndpointAddress -= 8;
163 UICR1 &= ~(1 << bEndpointAddress);
164 }
165}
166
167static void pio_irq_disable(int bEndpointAddress)
168{
169 bEndpointAddress &= 0xf;
170 if (bEndpointAddress < 8)
171 UICR0 |= 1 << bEndpointAddress;
172 else {
173 bEndpointAddress -= 8;
174 UICR1 |= 1 << bEndpointAddress;
175 }
176}
177
178/* The UDCCR reg contains mask and interrupt status bits,
179 * so using '|=' isn't safe as it may ack an interrupt.
180 */
181#define UDCCR_MASK_BITS (UDCCR_REM | UDCCR_SRM | UDCCR_UDE)
182
183static inline void udc_set_mask_UDCCR(int mask)
184{
185 UDCCR = (UDCCR & UDCCR_MASK_BITS) | (mask & UDCCR_MASK_BITS);
186}
187
188static inline void udc_clear_mask_UDCCR(int mask)
189{
190 UDCCR = (UDCCR & UDCCR_MASK_BITS) & ~(mask & UDCCR_MASK_BITS);
191}
192
193static inline void udc_ack_int_UDCCR(int mask)
194{
195 /* udccr contains the bits we dont want to change */
196 __u32 udccr = UDCCR & UDCCR_MASK_BITS;
197
198 UDCCR = udccr | (mask & ~UDCCR_MASK_BITS);
199}
200
201/*
202 * endpoint enable/disable
203 *
Philipp Zabel7a857622008-06-22 23:36:39 +0100204 * we need to verify the descriptors used to enable endpoints. since pxa25x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * endpoint configurations are fixed, and are pretty much always enabled,
206 * there's not a lot to manage here.
207 *
Philipp Zabel7a857622008-06-22 23:36:39 +0100208 * because pxa25x can't selectively initialize bulk (or interrupt) endpoints,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * (resetting endpoint halt and toggle), SET_INTERFACE is unusable except
210 * for a single interface (with only the default altsetting) and for gadget
211 * drivers that don't halt endpoints (not reset by set_interface). that also
212 * means that if you use ISO, you must violate the USB spec rule that all
213 * iso endpoints must be in non-default altsettings.
214 */
Philipp Zabel7a857622008-06-22 23:36:39 +0100215static int pxa25x_ep_enable (struct usb_ep *_ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 const struct usb_endpoint_descriptor *desc)
217{
Philipp Zabel7a857622008-06-22 23:36:39 +0100218 struct pxa25x_ep *ep;
219 struct pxa25x_udc *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Philipp Zabel7a857622008-06-22 23:36:39 +0100221 ep = container_of (_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!_ep || !desc || ep->desc || _ep->name == ep0name
223 || desc->bDescriptorType != USB_DT_ENDPOINT
224 || ep->bEndpointAddress != desc->bEndpointAddress
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700225 || ep->fifo_size < usb_endpoint_maxp (desc)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800226 DMSG("%s, bad ep or descriptor\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EINVAL;
228 }
229
230 /* xfer types must match, except that interrupt ~= bulk */
231 if (ep->bmAttributes != desc->bmAttributes
232 && ep->bmAttributes != USB_ENDPOINT_XFER_BULK
233 && desc->bmAttributes != USB_ENDPOINT_XFER_INT) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800234 DMSG("%s, %s type mismatch\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return -EINVAL;
236 }
237
238 /* hardware _could_ do smaller, but driver doesn't */
239 if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700240 && usb_endpoint_maxp (desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 != BULK_FIFO_SIZE)
242 || !desc->wMaxPacketSize) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800243 DMSG("%s, bad %s maxpacket\n", __func__, _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -ERANGE;
245 }
246
247 dev = ep->dev;
248 if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800249 DMSG("%s, bogus device state\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return -ESHUTDOWN;
251 }
252
253 ep->desc = desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 ep->stopped = 0;
David Brownellad8c6232007-06-30 06:30:04 -0700255 ep->pio_irqs = 0;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700256 ep->ep.maxpacket = usb_endpoint_maxp (desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* flush fifo (mostly for OUT buffers) */
Philipp Zabel7a857622008-06-22 23:36:39 +0100259 pxa25x_ep_fifo_flush (_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /* ... reset halt state too, if we could ... */
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 DBG(DBG_VERBOSE, "enabled %s\n", _ep->name);
264 return 0;
265}
266
Philipp Zabel7a857622008-06-22 23:36:39 +0100267static int pxa25x_ep_disable (struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Philipp Zabel7a857622008-06-22 23:36:39 +0100269 struct pxa25x_ep *ep;
David Brownell91987692005-05-07 13:20:19 -0700270 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Philipp Zabel7a857622008-06-22 23:36:39 +0100272 ep = container_of (_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!_ep || !ep->desc) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800274 DMSG("%s, %s not enabled\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 _ep ? ep->ep.name : NULL);
276 return -EINVAL;
277 }
David Brownell91987692005-05-07 13:20:19 -0700278 local_irq_save(flags);
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 nuke (ep, -ESHUTDOWN);
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* flush fifo (mostly for IN buffers) */
Philipp Zabel7a857622008-06-22 23:36:39 +0100283 pxa25x_ep_fifo_flush (_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 ep->desc = NULL;
286 ep->stopped = 1;
287
David Brownell91987692005-05-07 13:20:19 -0700288 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 DBG(DBG_VERBOSE, "%s disabled\n", _ep->name);
290 return 0;
291}
292
293/*-------------------------------------------------------------------------*/
294
Philipp Zabel7a857622008-06-22 23:36:39 +0100295/* for the pxa25x, these can just wrap kmalloc/kfree. gadget drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * must still pass correctly initialized endpoints, since other controller
297 * drivers may care about how it's currently set up (dma issues etc).
298 */
299
300/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100301 * pxa25x_ep_alloc_request - allocate a request data structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
303static struct usb_request *
Philipp Zabel7a857622008-06-22 23:36:39 +0100304pxa25x_ep_alloc_request (struct usb_ep *_ep, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Philipp Zabel7a857622008-06-22 23:36:39 +0100306 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800308 req = kzalloc(sizeof(*req), gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (!req)
310 return NULL;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 INIT_LIST_HEAD (&req->queue);
313 return &req->req;
314}
315
316
317/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100318 * pxa25x_ep_free_request - deallocate a request data structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
320static void
Philipp Zabel7a857622008-06-22 23:36:39 +0100321pxa25x_ep_free_request (struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Philipp Zabel7a857622008-06-22 23:36:39 +0100323 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Philipp Zabel7a857622008-06-22 23:36:39 +0100325 req = container_of (_req, struct pxa25x_request, req);
Arjan van de Venb6c63932008-07-25 01:45:52 -0700326 WARN_ON(!list_empty (&req->queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 kfree(req);
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330/*-------------------------------------------------------------------------*/
331
332/*
333 * done - retire a request; caller blocked irqs
334 */
Philipp Zabel7a857622008-06-22 23:36:39 +0100335static void done(struct pxa25x_ep *ep, struct pxa25x_request *req, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 unsigned stopped = ep->stopped;
338
339 list_del_init(&req->queue);
340
341 if (likely (req->req.status == -EINPROGRESS))
342 req->req.status = status;
343 else
344 status = req->req.status;
345
346 if (status && status != -ESHUTDOWN)
347 DBG(DBG_VERBOSE, "complete %s req %p stat %d len %u/%u\n",
348 ep->ep.name, &req->req, status,
349 req->req.actual, req->req.length);
350
351 /* don't modify queue heads during completion callback */
352 ep->stopped = 1;
353 req->req.complete(&ep->ep, &req->req);
354 ep->stopped = stopped;
355}
356
357
Philipp Zabel7a857622008-06-22 23:36:39 +0100358static inline void ep0_idle (struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
360 dev->ep0state = EP0_IDLE;
361}
362
363static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100364write_packet(volatile u32 *uddr, struct pxa25x_request *req, unsigned max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 u8 *buf;
367 unsigned length, count;
368
369 buf = req->req.buf + req->req.actual;
370 prefetch(buf);
371
372 /* how big will this packet be? */
373 length = min(req->req.length - req->req.actual, max);
374 req->req.actual += length;
375
376 count = length;
377 while (likely(count--))
378 *uddr = *buf++;
379
380 return length;
381}
382
383/*
384 * write to an IN endpoint fifo, as many packets as possible.
385 * irqs will use this to write the rest later.
386 * caller guarantees at least one packet buffer is ready (or a zlp).
387 */
388static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100389write_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
391 unsigned max;
392
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700393 max = usb_endpoint_maxp(ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 do {
395 unsigned count;
396 int is_last, is_short;
397
398 count = write_packet(ep->reg_uddr, req, max);
399
400 /* last packet is usually short (or a zlp) */
401 if (unlikely (count != max))
402 is_last = is_short = 1;
403 else {
404 if (likely(req->req.length != req->req.actual)
405 || req->req.zero)
406 is_last = 0;
407 else
408 is_last = 1;
409 /* interrupt/iso maxpacket may not fill the fifo */
410 is_short = unlikely (max < ep->fifo_size);
411 }
412
413 DBG(DBG_VERY_NOISY, "wrote %s %d bytes%s%s %d left %p\n",
414 ep->ep.name, count,
415 is_last ? "/L" : "", is_short ? "/S" : "",
416 req->req.length - req->req.actual, req);
417
418 /* let loose that packet. maybe try writing another one,
419 * double buffering might work. TSP, TPC, and TFS
420 * bit values are the same for all normal IN endpoints.
421 */
422 *ep->reg_udccs = UDCCS_BI_TPC;
423 if (is_short)
424 *ep->reg_udccs = UDCCS_BI_TSP;
425
426 /* requests complete when all IN data is in the FIFO */
427 if (is_last) {
428 done (ep, req, 0);
David Brownellad8c6232007-06-30 06:30:04 -0700429 if (list_empty(&ep->queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 pio_irq_disable (ep->bEndpointAddress);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return 1;
432 }
433
434 // TODO experiment: how robust can fifo mode tweaking be?
435 // double buffering is off in the default fifo mode, which
436 // prevents TFS from being set here.
437
438 } while (*ep->reg_udccs & UDCCS_BI_TFS);
439 return 0;
440}
441
442/* caller asserts req->pending (ep0 irq status nyet cleared); starts
443 * ep0 data stage. these chips want very simple state transitions.
444 */
445static inline
Philipp Zabel7a857622008-06-22 23:36:39 +0100446void ep0start(struct pxa25x_udc *dev, u32 flags, const char *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 UDCCS0 = flags|UDCCS0_SA|UDCCS0_OPR;
449 USIR0 = USIR0_IR0;
450 dev->req_pending = 0;
451 DBG(DBG_VERY_NOISY, "%s %s, %02x/%02x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800452 __func__, tag, UDCCS0, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100456write_ep0_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 unsigned count;
459 int is_short;
460
461 count = write_packet(&UDDR0, req, EP0_FIFO_SIZE);
462 ep->dev->stats.write.bytes += count;
463
464 /* last packet "must be" short (or a zlp) */
465 is_short = (count != EP0_FIFO_SIZE);
466
467 DBG(DBG_VERY_NOISY, "ep0in %d bytes %d left %p\n", count,
468 req->req.length - req->req.actual, req);
469
470 if (unlikely (is_short)) {
471 if (ep->dev->req_pending)
472 ep0start(ep->dev, UDCCS0_IPR, "short IN");
473 else
474 UDCCS0 = UDCCS0_IPR;
475
476 count = req->req.length;
477 done (ep, req, 0);
478 ep0_idle(ep->dev);
Milan Svoboda043ea182006-05-29 03:34:00 -0700479#ifndef CONFIG_ARCH_IXP4XX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#if 1
481 /* This seems to get rid of lost status irqs in some cases:
482 * host responds quickly, or next request involves config
483 * change automagic, or should have been hidden, or ...
484 *
485 * FIXME get rid of all udelays possible...
486 */
487 if (count >= EP0_FIFO_SIZE) {
488 count = 100;
489 do {
490 if ((UDCCS0 & UDCCS0_OPR) != 0) {
491 /* clear OPR, generate ack */
492 UDCCS0 = UDCCS0_OPR;
493 break;
494 }
495 count--;
496 udelay(1);
497 } while (count);
498 }
499#endif
Milan Svoboda043ea182006-05-29 03:34:00 -0700500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 } else if (ep->dev->req_pending)
502 ep0start(ep->dev, 0, "IN");
503 return is_short;
504}
505
506
507/*
508 * read_fifo - unload packet(s) from the fifo we use for usb OUT
509 * transfers and put them into the request. caller should have made
510 * sure there's at least one packet ready.
511 *
512 * returns true if the request completed because of short packet or the
513 * request buffer having filled (and maybe overran till end-of-packet).
514 */
515static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100516read_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 for (;;) {
519 u32 udccs;
520 u8 *buf;
521 unsigned bufferspace, count, is_short;
522
523 /* make sure there's a packet in the FIFO.
524 * UDCCS_{BO,IO}_RPC are all the same bit value.
525 * UDCCS_{BO,IO}_RNE are all the same bit value.
526 */
527 udccs = *ep->reg_udccs;
528 if (unlikely ((udccs & UDCCS_BO_RPC) == 0))
529 break;
530 buf = req->req.buf + req->req.actual;
531 prefetchw(buf);
532 bufferspace = req->req.length - req->req.actual;
533
534 /* read all bytes from this packet */
535 if (likely (udccs & UDCCS_BO_RNE)) {
536 count = 1 + (0x0ff & *ep->reg_ubcr);
537 req->req.actual += min (count, bufferspace);
538 } else /* zlp */
539 count = 0;
540 is_short = (count < ep->ep.maxpacket);
541 DBG(DBG_VERY_NOISY, "read %s %02x, %d bytes%s req %p %d/%d\n",
542 ep->ep.name, udccs, count,
543 is_short ? "/S" : "",
544 req, req->req.actual, req->req.length);
545 while (likely (count-- != 0)) {
546 u8 byte = (u8) *ep->reg_uddr;
547
548 if (unlikely (bufferspace == 0)) {
549 /* this happens when the driver's buffer
550 * is smaller than what the host sent.
551 * discard the extra data.
552 */
553 if (req->req.status != -EOVERFLOW)
554 DMSG("%s overflow %d\n",
555 ep->ep.name, count);
556 req->req.status = -EOVERFLOW;
557 } else {
558 *buf++ = byte;
559 bufferspace--;
560 }
561 }
562 *ep->reg_udccs = UDCCS_BO_RPC;
563 /* RPC/RSP/RNE could now reflect the other packet buffer */
564
565 /* iso is one request per packet */
566 if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
567 if (udccs & UDCCS_IO_ROF)
568 req->req.status = -EHOSTUNREACH;
569 /* more like "is_done" */
570 is_short = 1;
571 }
572
573 /* completion */
574 if (is_short || req->req.actual == req->req.length) {
575 done (ep, req, 0);
576 if (list_empty(&ep->queue))
577 pio_irq_disable (ep->bEndpointAddress);
578 return 1;
579 }
580
581 /* finished that packet. the next one may be waiting... */
582 }
583 return 0;
584}
585
586/*
587 * special ep0 version of the above. no UBCR0 or double buffering; status
588 * handshaking is magic. most device protocols don't need control-OUT.
589 * CDC vendor commands (and RNDIS), mass storage CB/CBI, and some other
590 * protocols do use them.
591 */
592static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100593read_ep0_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 u8 *buf, byte;
596 unsigned bufferspace;
597
598 buf = req->req.buf + req->req.actual;
599 bufferspace = req->req.length - req->req.actual;
600
601 while (UDCCS0 & UDCCS0_RNE) {
602 byte = (u8) UDDR0;
603
604 if (unlikely (bufferspace == 0)) {
605 /* this happens when the driver's buffer
606 * is smaller than what the host sent.
607 * discard the extra data.
608 */
609 if (req->req.status != -EOVERFLOW)
610 DMSG("%s overflow\n", ep->ep.name);
611 req->req.status = -EOVERFLOW;
612 } else {
613 *buf++ = byte;
614 req->req.actual++;
615 bufferspace--;
616 }
617 }
618
619 UDCCS0 = UDCCS0_OPR | UDCCS0_IPR;
620
621 /* completion */
622 if (req->req.actual >= req->req.length)
623 return 1;
624
625 /* finished that packet. the next one may be waiting... */
626 return 0;
627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/*-------------------------------------------------------------------------*/
630
631static int
Philipp Zabel7a857622008-06-22 23:36:39 +0100632pxa25x_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Philipp Zabel7a857622008-06-22 23:36:39 +0100634 struct pxa25x_request *req;
635 struct pxa25x_ep *ep;
636 struct pxa25x_udc *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 unsigned long flags;
638
Philipp Zabel7a857622008-06-22 23:36:39 +0100639 req = container_of(_req, struct pxa25x_request, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (unlikely (!_req || !_req->complete || !_req->buf
641 || !list_empty(&req->queue))) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800642 DMSG("%s, bad params\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -EINVAL;
644 }
645
Philipp Zabel7a857622008-06-22 23:36:39 +0100646 ep = container_of(_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (unlikely (!_ep || (!ep->desc && ep->ep.name != ep0name))) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800648 DMSG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -EINVAL;
650 }
651
652 dev = ep->dev;
653 if (unlikely (!dev->driver
654 || dev->gadget.speed == USB_SPEED_UNKNOWN)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800655 DMSG("%s, bogus device state\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return -ESHUTDOWN;
657 }
658
659 /* iso is always one packet per request, that's the only way
660 * we can report per-packet status. that also helps with dma.
661 */
662 if (unlikely (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700663 && req->req.length > usb_endpoint_maxp (ep->desc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return -EMSGSIZE;
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 DBG(DBG_NOISY, "%s queue req %p, len %d buf %p\n",
David Brownellad8c6232007-06-30 06:30:04 -0700667 _ep->name, _req, _req->length, _req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 local_irq_save(flags);
670
671 _req->status = -EINPROGRESS;
672 _req->actual = 0;
673
674 /* kickstart this i/o queue? */
675 if (list_empty(&ep->queue) && !ep->stopped) {
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -0800676 if (ep->desc == NULL/* ep0 */) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 unsigned length = _req->length;
678
679 switch (dev->ep0state) {
680 case EP0_IN_DATA_PHASE:
681 dev->stats.write.ops++;
682 if (write_ep0_fifo(ep, req))
683 req = NULL;
684 break;
685
686 case EP0_OUT_DATA_PHASE:
687 dev->stats.read.ops++;
688 /* messy ... */
689 if (dev->req_config) {
690 DBG(DBG_VERBOSE, "ep0 config ack%s\n",
691 dev->has_cfr ? "" : " raced");
692 if (dev->has_cfr)
693 UDCCFR = UDCCFR_AREN|UDCCFR_ACM
694 |UDCCFR_MB1;
695 done(ep, req, 0);
696 dev->ep0state = EP0_END_XFER;
697 local_irq_restore (flags);
698 return 0;
699 }
700 if (dev->req_pending)
701 ep0start(dev, UDCCS0_IPR, "OUT");
702 if (length == 0 || ((UDCCS0 & UDCCS0_RNE) != 0
703 && read_ep0_fifo(ep, req))) {
704 ep0_idle(dev);
705 done(ep, req, 0);
706 req = NULL;
707 }
708 break;
709
710 default:
711 DMSG("ep0 i/o, odd state %d\n", dev->ep0state);
712 local_irq_restore (flags);
713 return -EL2HLT;
714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /* can the FIFO can satisfy the request immediately? */
David Brownell91987692005-05-07 13:20:19 -0700716 } else if ((ep->bEndpointAddress & USB_DIR_IN) != 0) {
717 if ((*ep->reg_udccs & UDCCS_BI_TFS) != 0
718 && write_fifo(ep, req))
719 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 } else if ((*ep->reg_udccs & UDCCS_BO_RFS) != 0
721 && read_fifo(ep, req)) {
722 req = NULL;
723 }
724
David Brownellad8c6232007-06-30 06:30:04 -0700725 if (likely (req && ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 pio_irq_enable(ep->bEndpointAddress);
727 }
728
729 /* pio or dma irq handler advances the queue. */
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -0800730 if (likely(req != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 list_add_tail(&req->queue, &ep->queue);
732 local_irq_restore(flags);
733
734 return 0;
735}
736
737
738/*
David Brownell34ebcd22007-02-24 12:23:52 -0800739 * nuke - dequeue ALL requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Philipp Zabel7a857622008-06-22 23:36:39 +0100741static void nuke(struct pxa25x_ep *ep, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Philipp Zabel7a857622008-06-22 23:36:39 +0100743 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 /* called with irqs blocked */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 while (!list_empty(&ep->queue)) {
747 req = list_entry(ep->queue.next,
Philipp Zabel7a857622008-06-22 23:36:39 +0100748 struct pxa25x_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 queue);
750 done(ep, req, status);
751 }
752 if (ep->desc)
753 pio_irq_disable (ep->bEndpointAddress);
754}
755
756
757/* dequeue JUST ONE request */
Philipp Zabel7a857622008-06-22 23:36:39 +0100758static int pxa25x_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Philipp Zabel7a857622008-06-22 23:36:39 +0100760 struct pxa25x_ep *ep;
761 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 unsigned long flags;
763
Philipp Zabel7a857622008-06-22 23:36:39 +0100764 ep = container_of(_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (!_ep || ep->ep.name == ep0name)
766 return -EINVAL;
767
768 local_irq_save(flags);
769
770 /* make sure it's actually queued on this endpoint */
771 list_for_each_entry (req, &ep->queue, queue) {
772 if (&req->req == _req)
773 break;
774 }
775 if (&req->req != _req) {
776 local_irq_restore(flags);
777 return -EINVAL;
778 }
779
David Brownellad8c6232007-06-30 06:30:04 -0700780 done(ep, req, -ECONNRESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 local_irq_restore(flags);
783 return 0;
784}
785
786/*-------------------------------------------------------------------------*/
787
Philipp Zabel7a857622008-06-22 23:36:39 +0100788static int pxa25x_ep_set_halt(struct usb_ep *_ep, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Philipp Zabel7a857622008-06-22 23:36:39 +0100790 struct pxa25x_ep *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 unsigned long flags;
792
Philipp Zabel7a857622008-06-22 23:36:39 +0100793 ep = container_of(_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (unlikely (!_ep
795 || (!ep->desc && ep->ep.name != ep0name))
796 || ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800797 DMSG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return -EINVAL;
799 }
800 if (value == 0) {
801 /* this path (reset toggle+halt) is needed to implement
802 * SET_INTERFACE on normal hardware. but it can't be
803 * done from software on the PXA UDC, and the hardware
804 * forgets to do it as part of SET_INTERFACE automagic.
805 */
806 DMSG("only host can clear %s halt\n", _ep->name);
807 return -EROFS;
808 }
809
810 local_irq_save(flags);
811
812 if ((ep->bEndpointAddress & USB_DIR_IN) != 0
813 && ((*ep->reg_udccs & UDCCS_BI_TFS) == 0
814 || !list_empty(&ep->queue))) {
815 local_irq_restore(flags);
816 return -EAGAIN;
817 }
818
819 /* FST bit is the same for control, bulk in, bulk out, interrupt in */
820 *ep->reg_udccs = UDCCS_BI_FST|UDCCS_BI_FTF;
821
822 /* ep0 needs special care */
823 if (!ep->desc) {
824 start_watchdog(ep->dev);
825 ep->dev->req_pending = 0;
826 ep->dev->ep0state = EP0_STALL;
827
David Brownell34ebcd22007-02-24 12:23:52 -0800828 /* and bulk/intr endpoints like dropping stalls too */
829 } else {
830 unsigned i;
831 for (i = 0; i < 1000; i += 20) {
832 if (*ep->reg_udccs & UDCCS_BI_SST)
833 break;
834 udelay(20);
835 }
836 }
837 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 DBG(DBG_VERBOSE, "%s halt\n", _ep->name);
840 return 0;
841}
842
Philipp Zabel7a857622008-06-22 23:36:39 +0100843static int pxa25x_ep_fifo_status(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Philipp Zabel7a857622008-06-22 23:36:39 +0100845 struct pxa25x_ep *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Philipp Zabel7a857622008-06-22 23:36:39 +0100847 ep = container_of(_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!_ep) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800849 DMSG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -ENODEV;
851 }
852 /* pxa can't report unclaimed bytes from IN fifos */
853 if ((ep->bEndpointAddress & USB_DIR_IN) != 0)
854 return -EOPNOTSUPP;
855 if (ep->dev->gadget.speed == USB_SPEED_UNKNOWN
856 || (*ep->reg_udccs & UDCCS_BO_RFS) == 0)
857 return 0;
858 else
859 return (*ep->reg_ubcr & 0xfff) + 1;
860}
861
Philipp Zabel7a857622008-06-22 23:36:39 +0100862static void pxa25x_ep_fifo_flush(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Philipp Zabel7a857622008-06-22 23:36:39 +0100864 struct pxa25x_ep *ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Philipp Zabel7a857622008-06-22 23:36:39 +0100866 ep = container_of(_ep, struct pxa25x_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (!_ep || ep->ep.name == ep0name || !list_empty(&ep->queue)) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800868 DMSG("%s, bad ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return;
870 }
871
872 /* toggle and halt bits stay unchanged */
873
874 /* for OUT, just read and discard the FIFO contents. */
875 if ((ep->bEndpointAddress & USB_DIR_IN) == 0) {
876 while (((*ep->reg_udccs) & UDCCS_BO_RNE) != 0)
877 (void) *ep->reg_uddr;
878 return;
879 }
880
881 /* most IN status is the same, but ISO can't stall */
882 *ep->reg_udccs = UDCCS_BI_TPC|UDCCS_BI_FTF|UDCCS_BI_TUR
Roel Kluin22eb36f2009-02-19 11:57:46 +0100883 | (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC
884 ? 0 : UDCCS_BI_SST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887
Philipp Zabel7a857622008-06-22 23:36:39 +0100888static struct usb_ep_ops pxa25x_ep_ops = {
889 .enable = pxa25x_ep_enable,
890 .disable = pxa25x_ep_disable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Philipp Zabel7a857622008-06-22 23:36:39 +0100892 .alloc_request = pxa25x_ep_alloc_request,
893 .free_request = pxa25x_ep_free_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Philipp Zabel7a857622008-06-22 23:36:39 +0100895 .queue = pxa25x_ep_queue,
896 .dequeue = pxa25x_ep_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Philipp Zabel7a857622008-06-22 23:36:39 +0100898 .set_halt = pxa25x_ep_set_halt,
899 .fifo_status = pxa25x_ep_fifo_status,
900 .fifo_flush = pxa25x_ep_fifo_flush,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901};
902
903
904/* ---------------------------------------------------------------------------
David Brownell34ebcd22007-02-24 12:23:52 -0800905 * device-scoped parts of the api to the usb controller hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * ---------------------------------------------------------------------------
907 */
908
Philipp Zabel7a857622008-06-22 23:36:39 +0100909static int pxa25x_udc_get_frame(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 return ((UFNRH & 0x07) << 8) | (UFNRL & 0xff);
912}
913
Philipp Zabel7a857622008-06-22 23:36:39 +0100914static int pxa25x_udc_wakeup(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 /* host may not have enabled remote wakeup */
917 if ((UDCCS0 & UDCCS0_DRWF) == 0)
918 return -EHOSTUNREACH;
919 udc_set_mask_UDCCR(UDCCR_RSM);
920 return 0;
921}
922
Philipp Zabel7a857622008-06-22 23:36:39 +0100923static void stop_activity(struct pxa25x_udc *, struct usb_gadget_driver *);
924static void udc_enable (struct pxa25x_udc *);
925static void udc_disable(struct pxa25x_udc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927/* We disable the UDC -- and its 48 MHz clock -- whenever it's not
David Brownell34ebcd22007-02-24 12:23:52 -0800928 * in active use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
Philipp Zabel7a857622008-06-22 23:36:39 +0100930static int pullup(struct pxa25x_udc *udc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800932 int is_active = udc->vbus && udc->pullup && !udc->suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 DMSG("%s\n", is_active ? "active" : "inactive");
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800934 if (is_active) {
935 if (!udc->active) {
936 udc->active = 1;
937 /* Enable clock for USB device */
938 clk_enable(udc->clk);
939 udc_enable(udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800941 } else {
942 if (udc->active) {
943 if (udc->gadget.speed != USB_SPEED_UNKNOWN) {
944 DMSG("disconnect %s\n", udc->driver
945 ? udc->driver->driver.name
946 : "(no driver)");
947 stop_activity(udc, udc->driver);
948 }
949 udc_disable(udc);
950 /* Disable clock for USB device */
951 clk_disable(udc->clk);
952 udc->active = 0;
953 }
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 return 0;
957}
958
959/* VBUS reporting logically comes from a transceiver */
Philipp Zabel7a857622008-06-22 23:36:39 +0100960static int pxa25x_udc_vbus_session(struct usb_gadget *_gadget, int is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Philipp Zabel7a857622008-06-22 23:36:39 +0100962 struct pxa25x_udc *udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Philipp Zabel7a857622008-06-22 23:36:39 +0100964 udc = container_of(_gadget, struct pxa25x_udc, gadget);
Jaya Kumar47fd6f72008-11-18 02:32:36 +0100965 udc->vbus = is_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 DMSG("vbus %s\n", is_active ? "supplied" : "inactive");
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800967 pullup(udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
969}
970
971/* drivers may have software control over D+ pullup */
Philipp Zabel7a857622008-06-22 23:36:39 +0100972static int pxa25x_udc_pullup(struct usb_gadget *_gadget, int is_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Philipp Zabel7a857622008-06-22 23:36:39 +0100974 struct pxa25x_udc *udc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Philipp Zabel7a857622008-06-22 23:36:39 +0100976 udc = container_of(_gadget, struct pxa25x_udc, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /* not all boards support pullup control */
Philipp Zabel56a075d2009-07-01 03:42:45 -0700979 if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -EOPNOTSUPP;
981
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -0800982 udc->pullup = (is_active != 0);
983 pullup(udc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return 0;
985}
986
Philipp Zabelab26d202009-07-01 03:46:25 -0700987/* boards may consume current from VBUS, up to 100-500mA based on config.
988 * the 500uA suspend ceiling means that exclusively vbus-powered PXA designs
989 * violate USB specs.
990 */
991static int pxa25x_udc_vbus_draw(struct usb_gadget *_gadget, unsigned mA)
992{
993 struct pxa25x_udc *udc;
994
995 udc = container_of(_gadget, struct pxa25x_udc, gadget);
996
997 if (udc->transceiver)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200998 return usb_phy_set_power(udc->transceiver, mA);
Philipp Zabelab26d202009-07-01 03:46:25 -0700999 return -EOPNOTSUPP;
1000}
1001
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001002static int pxa25x_start(struct usb_gadget_driver *driver,
1003 int (*bind)(struct usb_gadget *));
1004static int pxa25x_stop(struct usb_gadget_driver *driver);
1005
Philipp Zabel7a857622008-06-22 23:36:39 +01001006static const struct usb_gadget_ops pxa25x_udc_ops = {
1007 .get_frame = pxa25x_udc_get_frame,
1008 .wakeup = pxa25x_udc_wakeup,
1009 .vbus_session = pxa25x_udc_vbus_session,
1010 .pullup = pxa25x_udc_pullup,
Philipp Zabelab26d202009-07-01 03:46:25 -07001011 .vbus_draw = pxa25x_udc_vbus_draw,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001012 .start = pxa25x_start,
1013 .stop = pxa25x_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014};
1015
1016/*-------------------------------------------------------------------------*/
1017
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001018#ifdef CONFIG_USB_GADGET_DEBUG_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020static int
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08001021udc_seq_show(struct seq_file *m, void *_d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Philipp Zabel7a857622008-06-22 23:36:39 +01001023 struct pxa25x_udc *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 unsigned long flags;
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001025 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 u32 tmp;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 local_irq_save(flags);
1029
1030 /* basic device status */
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001031 seq_printf(m, DRIVER_DESC "\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 "%s version: %s\nGadget driver: %s\nHost %s\n\n",
David Brownellad8c6232007-06-30 06:30:04 -07001033 driver_name, DRIVER_VERSION SIZE_STR "(pio)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 dev->driver ? dev->driver->driver.name : "(none)",
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03001035 dev->gadget.speed == USB_SPEED_FULL ? "full speed" : "disconnected");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 /* registers for device and ep0 */
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001038 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 "uicr %02X.%02X, usir %02X.%02x, ufnr %02X.%02X\n",
1040 UICR1, UICR0, USIR1, USIR0, UFNRH, UFNRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 tmp = UDCCR;
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001043 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 "udccr %02X =%s%s%s%s%s%s%s%s\n", tmp,
1045 (tmp & UDCCR_REM) ? " rem" : "",
1046 (tmp & UDCCR_RSTIR) ? " rstir" : "",
1047 (tmp & UDCCR_SRM) ? " srm" : "",
1048 (tmp & UDCCR_SUSIR) ? " susir" : "",
1049 (tmp & UDCCR_RESIR) ? " resir" : "",
1050 (tmp & UDCCR_RSM) ? " rsm" : "",
1051 (tmp & UDCCR_UDA) ? " uda" : "",
1052 (tmp & UDCCR_UDE) ? " ude" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 tmp = UDCCS0;
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001055 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 "udccs0 %02X =%s%s%s%s%s%s%s%s\n", tmp,
1057 (tmp & UDCCS0_SA) ? " sa" : "",
1058 (tmp & UDCCS0_RNE) ? " rne" : "",
1059 (tmp & UDCCS0_FST) ? " fst" : "",
1060 (tmp & UDCCS0_SST) ? " sst" : "",
1061 (tmp & UDCCS0_DRWF) ? " dwrf" : "",
1062 (tmp & UDCCS0_FTF) ? " ftf" : "",
1063 (tmp & UDCCS0_IPR) ? " ipr" : "",
1064 (tmp & UDCCS0_OPR) ? " opr" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 if (dev->has_cfr) {
1067 tmp = UDCCFR;
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001068 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 "udccfr %02X =%s%s\n", tmp,
1070 (tmp & UDCCFR_AREN) ? " aren" : "",
1071 (tmp & UDCCFR_ACM) ? " acm" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03001074 if (dev->gadget.speed != USB_SPEED_FULL || !dev->driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 goto done;
1076
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001077 seq_printf(m, "ep0 IN %lu/%lu, OUT %lu/%lu\nirqs %lu\n\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 dev->stats.write.bytes, dev->stats.write.ops,
1079 dev->stats.read.bytes, dev->stats.read.ops,
1080 dev->stats.irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* dump endpoint queues */
1083 for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) {
Philipp Zabel7a857622008-06-22 23:36:39 +01001084 struct pxa25x_ep *ep = &dev->ep [i];
1085 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 if (i != 0) {
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001088 const struct usb_endpoint_descriptor *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001090 desc = ep->desc;
1091 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 continue;
1093 tmp = *dev->ep [i].reg_udccs;
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001094 seq_printf(m,
David Brownellad8c6232007-06-30 06:30:04 -07001095 "%s max %d %s udccs %02x irqs %lu\n",
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001096 ep->ep.name, usb_endpoint_maxp(desc),
David Brownellad8c6232007-06-30 06:30:04 -07001097 "pio", tmp, ep->pio_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /* TODO translate all five groups of udccs bits! */
1099
1100 } else /* ep0 should only have one transfer queued */
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001101 seq_printf(m, "ep0 max 16 pio irqs %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 ep->pio_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (list_empty(&ep->queue)) {
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001105 seq_printf(m, "\t(nothing queued)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 continue;
1107 }
1108 list_for_each_entry(req, &ep->queue, queue) {
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001109 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 "\treq %p len %d/%d buf %p\n",
1111 &req->req, req->req.actual,
1112 req->req.length, req->req.buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114 }
1115
1116done:
1117 local_irq_restore(flags);
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001121static int
1122udc_debugfs_open(struct inode *inode, struct file *file)
1123{
1124 return single_open(file, udc_seq_show, inode->i_private);
1125}
1126
1127static const struct file_operations debug_fops = {
1128 .open = udc_debugfs_open,
1129 .read = seq_read,
1130 .llseek = seq_lseek,
1131 .release = single_release,
1132 .owner = THIS_MODULE,
1133};
1134
1135#define create_debug_files(dev) \
1136 do { \
1137 dev->debugfs_udc = debugfs_create_file(dev->gadget.name, \
1138 S_IRUGO, NULL, dev, &debug_fops); \
1139 } while (0)
1140#define remove_debug_files(dev) \
1141 do { \
1142 if (dev->debugfs_udc) \
1143 debugfs_remove(dev->debugfs_udc); \
1144 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146#else /* !CONFIG_USB_GADGET_DEBUG_FILES */
1147
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08001148#define create_debug_files(dev) do {} while (0)
1149#define remove_debug_files(dev) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153/*-------------------------------------------------------------------------*/
1154
1155/*
David Brownell34ebcd22007-02-24 12:23:52 -08001156 * udc_disable - disable USB device controller
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 */
Philipp Zabel7a857622008-06-22 23:36:39 +01001158static void udc_disable(struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 /* block all irqs */
1161 udc_set_mask_UDCCR(UDCCR_SRM|UDCCR_REM);
1162 UICR0 = UICR1 = 0xff;
1163 UFNRH = UFNRH_SIM;
1164
1165 /* if hardware supports it, disconnect from usb */
David Brownell91987692005-05-07 13:20:19 -07001166 pullup_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 udc_clear_mask_UDCCR(UDCCR_UDE);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 ep0_idle (dev);
1171 dev->gadget.speed = USB_SPEED_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174
1175/*
David Brownell34ebcd22007-02-24 12:23:52 -08001176 * udc_reinit - initialize software state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
Philipp Zabel7a857622008-06-22 23:36:39 +01001178static void udc_reinit(struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
1180 u32 i;
1181
1182 /* device/ep0 records init */
1183 INIT_LIST_HEAD (&dev->gadget.ep_list);
1184 INIT_LIST_HEAD (&dev->gadget.ep0->ep_list);
1185 dev->ep0state = EP0_IDLE;
1186
1187 /* basic endpoint records init */
1188 for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) {
Philipp Zabel7a857622008-06-22 23:36:39 +01001189 struct pxa25x_ep *ep = &dev->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 if (i != 0)
1192 list_add_tail (&ep->ep.ep_list, &dev->gadget.ep_list);
1193
1194 ep->desc = NULL;
1195 ep->stopped = 0;
1196 INIT_LIST_HEAD (&ep->queue);
David Brownellad8c6232007-06-30 06:30:04 -07001197 ep->pio_irqs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
1199
1200 /* the rest was statically initialized, and is read-only */
1201}
1202
1203/* until it's enabled, this UDC should be completely invisible
1204 * to any USB host.
1205 */
Philipp Zabel7a857622008-06-22 23:36:39 +01001206static void udc_enable (struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 udc_clear_mask_UDCCR(UDCCR_UDE);
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 /* try to clear these bits before we enable the udc */
1211 udc_ack_int_UDCCR(UDCCR_SUSIR|/*UDCCR_RSTIR|*/UDCCR_RESIR);
1212
1213 ep0_idle(dev);
1214 dev->gadget.speed = USB_SPEED_UNKNOWN;
1215 dev->stats.irqs = 0;
1216
1217 /*
1218 * sequence taken from chapter 12.5.10, PXA250 AppProcDevManual:
1219 * - enable UDC
1220 * - if RESET is already in progress, ack interrupt
1221 * - unmask reset interrupt
1222 */
1223 udc_set_mask_UDCCR(UDCCR_UDE);
1224 if (!(UDCCR & UDCCR_UDA))
1225 udc_ack_int_UDCCR(UDCCR_RSTIR);
1226
1227 if (dev->has_cfr /* UDC_RES2 is defined */) {
1228 /* pxa255 (a0+) can avoid a set_config race that could
1229 * prevent gadget drivers from configuring correctly
1230 */
1231 UDCCFR = UDCCFR_ACM | UDCCFR_MB1;
1232 } else {
1233 /* "USB test mode" for pxa250 errata 40-42 (stepping a0, a1)
1234 * which could result in missing packets and interrupts.
1235 * supposedly one bit per endpoint, controlling whether it
1236 * double buffers or not; ACM/AREN bits fit into the holes.
1237 * zero bits (like USIR0_IRx) disable double buffering.
1238 */
1239 UDC_RES1 = 0x00;
1240 UDC_RES2 = 0x00;
1241 }
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /* enable suspend/resume and reset irqs */
1244 udc_clear_mask_UDCCR(UDCCR_SRM | UDCCR_REM);
1245
1246 /* enable ep0 irqs */
1247 UICR0 &= ~UICR0_IM0;
1248
1249 /* if hardware supports it, pullup D+ and wait for reset */
David Brownell91987692005-05-07 13:20:19 -07001250 pullup_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
1253
1254/* when a driver is successfully registered, it will receive
1255 * control requests including set_configuration(), which enables
1256 * non-control requests. then usb traffic follows until a
1257 * disconnect is reported. then a host may connect again, or
1258 * the driver might get unbound.
1259 */
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001260static int pxa25x_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001261 int (*bind)(struct usb_gadget *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Philipp Zabel7a857622008-06-22 23:36:39 +01001263 struct pxa25x_udc *dev = the_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int retval;
1265
1266 if (!driver
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001267 || driver->max_speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001268 || !bind
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 || !driver->disconnect
1270 || !driver->setup)
1271 return -EINVAL;
1272 if (!dev)
1273 return -ENODEV;
1274 if (dev->driver)
1275 return -EBUSY;
1276
1277 /* first hook up the driver ... */
1278 dev->driver = driver;
1279 dev->gadget.dev.driver = &driver->driver;
1280 dev->pullup = 1;
1281
David Brownell34ebcd22007-02-24 12:23:52 -08001282 retval = device_add (&dev->gadget.dev);
1283 if (retval) {
1284fail:
1285 dev->driver = NULL;
1286 dev->gadget.dev.driver = NULL;
1287 return retval;
1288 }
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001289 retval = bind(&dev->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (retval) {
1291 DMSG("bind to driver %s --> error %d\n",
1292 driver->driver.name, retval);
1293 device_del (&dev->gadget.dev);
David Brownell34ebcd22007-02-24 12:23:52 -08001294 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /* ... then enable host detection and ep0; and we're ready
1298 * for set_configuration as well as eventual disconnect.
1299 */
1300 DMSG("registered gadget driver '%s'\n", driver->driver.name);
Philipp Zabelab26d202009-07-01 03:46:25 -07001301
1302 /* connect to bus through transceiver */
1303 if (dev->transceiver) {
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001304 retval = otg_set_peripheral(dev->transceiver->otg,
1305 &dev->gadget);
Philipp Zabelab26d202009-07-01 03:46:25 -07001306 if (retval) {
1307 DMSG("can't bind to transceiver\n");
1308 if (driver->unbind)
1309 driver->unbind(&dev->gadget);
1310 goto bind_fail;
1311 }
1312 }
1313
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08001314 pullup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 dump_state(dev);
1316 return 0;
Philipp Zabelab26d202009-07-01 03:46:25 -07001317bind_fail:
1318 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321static void
Philipp Zabel7a857622008-06-22 23:36:39 +01001322stop_activity(struct pxa25x_udc *dev, struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 int i;
1325
1326 /* don't disconnect drivers more than once */
1327 if (dev->gadget.speed == USB_SPEED_UNKNOWN)
1328 driver = NULL;
1329 dev->gadget.speed = USB_SPEED_UNKNOWN;
1330
1331 /* prevent new request submissions, kill any outstanding requests */
1332 for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) {
Philipp Zabel7a857622008-06-22 23:36:39 +01001333 struct pxa25x_ep *ep = &dev->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 ep->stopped = 1;
1336 nuke(ep, -ESHUTDOWN);
1337 }
1338 del_timer_sync(&dev->timer);
1339
1340 /* report disconnect; the driver is already quiesced */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (driver)
1342 driver->disconnect(&dev->gadget);
1343
1344 /* re-init driver-visible data structures */
1345 udc_reinit(dev);
1346}
1347
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001348static int pxa25x_stop(struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
Philipp Zabel7a857622008-06-22 23:36:39 +01001350 struct pxa25x_udc *dev = the_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 if (!dev)
1353 return -ENODEV;
David Brownell6bea4762006-12-05 03:15:33 -08001354 if (!driver || driver != dev->driver || !driver->unbind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return -EINVAL;
1356
1357 local_irq_disable();
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08001358 dev->pullup = 0;
1359 pullup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 stop_activity(dev, driver);
1361 local_irq_enable();
1362
Philipp Zabelab26d202009-07-01 03:46:25 -07001363 if (dev->transceiver)
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001364 (void) otg_set_peripheral(dev->transceiver->otg, NULL);
Philipp Zabelab26d202009-07-01 03:46:25 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 driver->unbind(&dev->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001367 dev->gadget.dev.driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 dev->driver = NULL;
1369
1370 device_del (&dev->gadget.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 DMSG("unregistered gadget driver '%s'\n", driver->driver.name);
1373 dump_state(dev);
1374 return 0;
1375}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377/*-------------------------------------------------------------------------*/
1378
1379#ifdef CONFIG_ARCH_LUBBOCK
1380
1381/* Lubbock has separate connect and disconnect irqs. More typical designs
1382 * use one GPIO as the VBUS IRQ, and another to control the D+ pullup.
1383 */
1384
1385static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +01001386lubbock_vbus_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Philipp Zabel7a857622008-06-22 23:36:39 +01001388 struct pxa25x_udc *dev = _dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 int vbus;
1390
1391 dev->stats.irqs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 switch (irq) {
1393 case LUBBOCK_USB_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 vbus = 1;
1395 disable_irq(LUBBOCK_USB_IRQ);
1396 enable_irq(LUBBOCK_USB_DISC_IRQ);
1397 break;
1398 case LUBBOCK_USB_DISC_IRQ:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 vbus = 0;
1400 disable_irq(LUBBOCK_USB_DISC_IRQ);
1401 enable_irq(LUBBOCK_USB_IRQ);
1402 break;
1403 default:
1404 return IRQ_NONE;
1405 }
1406
Philipp Zabel7a857622008-06-22 23:36:39 +01001407 pxa25x_udc_vbus_session(&dev->gadget, vbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return IRQ_HANDLED;
1409}
1410
1411#endif
1412
1413
1414/*-------------------------------------------------------------------------*/
1415
Philipp Zabel7a857622008-06-22 23:36:39 +01001416static inline void clear_ep_state (struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 unsigned i;
1419
1420 /* hardware SET_{CONFIGURATION,INTERFACE} automagic resets endpoint
1421 * fifos, and pending transactions mustn't be continued in any case.
1422 */
1423 for (i = 1; i < PXA_UDC_NUM_ENDPOINTS; i++)
1424 nuke(&dev->ep[i], -ECONNABORTED);
1425}
1426
1427static void udc_watchdog(unsigned long _dev)
1428{
Philipp Zabel7a857622008-06-22 23:36:39 +01001429 struct pxa25x_udc *dev = (void *)_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 local_irq_disable();
1432 if (dev->ep0state == EP0_STALL
1433 && (UDCCS0 & UDCCS0_FST) == 0
1434 && (UDCCS0 & UDCCS0_SST) == 0) {
1435 UDCCS0 = UDCCS0_FST|UDCCS0_FTF;
1436 DBG(DBG_VERBOSE, "ep0 re-stall\n");
1437 start_watchdog(dev);
1438 }
1439 local_irq_enable();
1440}
1441
Philipp Zabel7a857622008-06-22 23:36:39 +01001442static void handle_ep0 (struct pxa25x_udc *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 u32 udccs0 = UDCCS0;
Philipp Zabel7a857622008-06-22 23:36:39 +01001445 struct pxa25x_ep *ep = &dev->ep [0];
1446 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 union {
1448 struct usb_ctrlrequest r;
1449 u8 raw [8];
1450 u32 word [2];
1451 } u;
1452
1453 if (list_empty(&ep->queue))
1454 req = NULL;
1455 else
Philipp Zabel7a857622008-06-22 23:36:39 +01001456 req = list_entry(ep->queue.next, struct pxa25x_request, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 /* clear stall status */
1459 if (udccs0 & UDCCS0_SST) {
1460 nuke(ep, -EPIPE);
1461 UDCCS0 = UDCCS0_SST;
1462 del_timer(&dev->timer);
1463 ep0_idle(dev);
1464 }
1465
1466 /* previous request unfinished? non-error iff back-to-back ... */
1467 if ((udccs0 & UDCCS0_SA) != 0 && dev->ep0state != EP0_IDLE) {
1468 nuke(ep, 0);
1469 del_timer(&dev->timer);
1470 ep0_idle(dev);
1471 }
1472
1473 switch (dev->ep0state) {
1474 case EP0_IDLE:
1475 /* late-breaking status? */
1476 udccs0 = UDCCS0;
1477
1478 /* start control request? */
1479 if (likely((udccs0 & (UDCCS0_OPR|UDCCS0_SA|UDCCS0_RNE))
1480 == (UDCCS0_OPR|UDCCS0_SA|UDCCS0_RNE))) {
1481 int i;
1482
1483 nuke (ep, -EPROTO);
1484
1485 /* read SETUP packet */
1486 for (i = 0; i < 8; i++) {
1487 if (unlikely(!(UDCCS0 & UDCCS0_RNE))) {
1488bad_setup:
1489 DMSG("SETUP %d!\n", i);
1490 goto stall;
1491 }
1492 u.raw [i] = (u8) UDDR0;
1493 }
1494 if (unlikely((UDCCS0 & UDCCS0_RNE) != 0))
1495 goto bad_setup;
1496
1497got_setup:
1498 DBG(DBG_VERBOSE, "SETUP %02x.%02x v%04x i%04x l%04x\n",
1499 u.r.bRequestType, u.r.bRequest,
1500 le16_to_cpu(u.r.wValue),
1501 le16_to_cpu(u.r.wIndex),
1502 le16_to_cpu(u.r.wLength));
1503
1504 /* cope with automagic for some standard requests. */
1505 dev->req_std = (u.r.bRequestType & USB_TYPE_MASK)
1506 == USB_TYPE_STANDARD;
1507 dev->req_config = 0;
1508 dev->req_pending = 1;
1509 switch (u.r.bRequest) {
1510 /* hardware restricts gadget drivers here! */
1511 case USB_REQ_SET_CONFIGURATION:
1512 if (u.r.bRequestType == USB_RECIP_DEVICE) {
1513 /* reflect hardware's automagic
1514 * up to the gadget driver.
1515 */
1516config_change:
1517 dev->req_config = 1;
1518 clear_ep_state(dev);
1519 /* if !has_cfr, there's no synch
1520 * else use AREN (later) not SA|OPR
1521 * USIR0_IR0 acts edge sensitive
1522 */
1523 }
1524 break;
1525 /* ... and here, even more ... */
1526 case USB_REQ_SET_INTERFACE:
1527 if (u.r.bRequestType == USB_RECIP_INTERFACE) {
1528 /* udc hardware is broken by design:
1529 * - altsetting may only be zero;
1530 * - hw resets all interfaces' eps;
1531 * - ep reset doesn't include halt(?).
1532 */
1533 DMSG("broken set_interface (%d/%d)\n",
1534 le16_to_cpu(u.r.wIndex),
1535 le16_to_cpu(u.r.wValue));
1536 goto config_change;
1537 }
1538 break;
1539 /* hardware was supposed to hide this */
1540 case USB_REQ_SET_ADDRESS:
1541 if (u.r.bRequestType == USB_RECIP_DEVICE) {
1542 ep0start(dev, 0, "address");
1543 return;
1544 }
1545 break;
1546 }
1547
1548 if (u.r.bRequestType & USB_DIR_IN)
1549 dev->ep0state = EP0_IN_DATA_PHASE;
1550 else
1551 dev->ep0state = EP0_OUT_DATA_PHASE;
1552
1553 i = dev->driver->setup(&dev->gadget, &u.r);
1554 if (i < 0) {
1555 /* hardware automagic preventing STALL... */
1556 if (dev->req_config) {
1557 /* hardware sometimes neglects to tell
1558 * tell us about config change events,
1559 * so later ones may fail...
1560 */
Arjan van de Venb6c63932008-07-25 01:45:52 -07001561 WARNING("config change %02x fail %d?\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 u.r.bRequest, i);
1563 return;
1564 /* TODO experiment: if has_cfr,
1565 * hardware didn't ACK; maybe we
1566 * could actually STALL!
1567 */
1568 }
1569 DBG(DBG_VERBOSE, "protocol STALL, "
1570 "%02x err %d\n", UDCCS0, i);
1571stall:
1572 /* the watchdog timer helps deal with cases
1573 * where udc seems to clear FST wrongly, and
1574 * then NAKs instead of STALLing.
1575 */
1576 ep0start(dev, UDCCS0_FST|UDCCS0_FTF, "stall");
1577 start_watchdog(dev);
1578 dev->ep0state = EP0_STALL;
1579
1580 /* deferred i/o == no response yet */
1581 } else if (dev->req_pending) {
1582 if (likely(dev->ep0state == EP0_IN_DATA_PHASE
1583 || dev->req_std || u.r.wLength))
1584 ep0start(dev, 0, "defer");
1585 else
1586 ep0start(dev, UDCCS0_IPR, "defer/IPR");
1587 }
1588
1589 /* expect at least one data or status stage irq */
1590 return;
1591
1592 } else if (likely((udccs0 & (UDCCS0_OPR|UDCCS0_SA))
1593 == (UDCCS0_OPR|UDCCS0_SA))) {
1594 unsigned i;
1595
1596 /* pxa210/250 erratum 131 for B0/B1 says RNE lies.
1597 * still observed on a pxa255 a0.
1598 */
1599 DBG(DBG_VERBOSE, "e131\n");
1600 nuke(ep, -EPROTO);
1601
1602 /* read SETUP data, but don't trust it too much */
1603 for (i = 0; i < 8; i++)
1604 u.raw [i] = (u8) UDDR0;
1605 if ((u.r.bRequestType & USB_RECIP_MASK)
1606 > USB_RECIP_OTHER)
1607 goto stall;
1608 if (u.word [0] == 0 && u.word [1] == 0)
1609 goto stall;
1610 goto got_setup;
1611 } else {
1612 /* some random early IRQ:
1613 * - we acked FST
1614 * - IPR cleared
1615 * - OPR got set, without SA (likely status stage)
1616 */
1617 UDCCS0 = udccs0 & (UDCCS0_SA|UDCCS0_OPR);
1618 }
1619 break;
1620 case EP0_IN_DATA_PHASE: /* GET_DESCRIPTOR etc */
1621 if (udccs0 & UDCCS0_OPR) {
1622 UDCCS0 = UDCCS0_OPR|UDCCS0_FTF;
1623 DBG(DBG_VERBOSE, "ep0in premature status\n");
1624 if (req)
1625 done(ep, req, 0);
1626 ep0_idle(dev);
1627 } else /* irq was IPR clearing */ {
1628 if (req) {
1629 /* this IN packet might finish the request */
1630 (void) write_ep0_fifo(ep, req);
1631 } /* else IN token before response was written */
1632 }
1633 break;
1634 case EP0_OUT_DATA_PHASE: /* SET_DESCRIPTOR etc */
1635 if (udccs0 & UDCCS0_OPR) {
1636 if (req) {
1637 /* this OUT packet might finish the request */
1638 if (read_ep0_fifo(ep, req))
1639 done(ep, req, 0);
1640 /* else more OUT packets expected */
1641 } /* else OUT token before read was issued */
1642 } else /* irq was IPR clearing */ {
1643 DBG(DBG_VERBOSE, "ep0out premature status\n");
1644 if (req)
1645 done(ep, req, 0);
1646 ep0_idle(dev);
1647 }
1648 break;
1649 case EP0_END_XFER:
1650 if (req)
1651 done(ep, req, 0);
1652 /* ack control-IN status (maybe in-zlp was skipped)
1653 * also appears after some config change events.
1654 */
1655 if (udccs0 & UDCCS0_OPR)
1656 UDCCS0 = UDCCS0_OPR;
1657 ep0_idle(dev);
1658 break;
1659 case EP0_STALL:
1660 UDCCS0 = UDCCS0_FST;
1661 break;
1662 }
1663 USIR0 = USIR0_IR0;
1664}
1665
Philipp Zabel7a857622008-06-22 23:36:39 +01001666static void handle_ep(struct pxa25x_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Philipp Zabel7a857622008-06-22 23:36:39 +01001668 struct pxa25x_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 int is_in = ep->bEndpointAddress & USB_DIR_IN;
1670 int completed;
1671 u32 udccs, tmp;
1672
1673 do {
1674 completed = 0;
1675 if (likely (!list_empty(&ep->queue)))
1676 req = list_entry(ep->queue.next,
Philipp Zabel7a857622008-06-22 23:36:39 +01001677 struct pxa25x_request, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 else
1679 req = NULL;
1680
1681 // TODO check FST handling
1682
1683 udccs = *ep->reg_udccs;
1684 if (unlikely(is_in)) { /* irq from TPC, SST, or (ISO) TUR */
1685 tmp = UDCCS_BI_TUR;
1686 if (likely(ep->bmAttributes == USB_ENDPOINT_XFER_BULK))
1687 tmp |= UDCCS_BI_SST;
1688 tmp &= udccs;
1689 if (likely (tmp))
1690 *ep->reg_udccs = tmp;
1691 if (req && likely ((udccs & UDCCS_BI_TFS) != 0))
1692 completed = write_fifo(ep, req);
1693
1694 } else { /* irq from RPC (or for ISO, ROF) */
1695 if (likely(ep->bmAttributes == USB_ENDPOINT_XFER_BULK))
1696 tmp = UDCCS_BO_SST | UDCCS_BO_DME;
1697 else
1698 tmp = UDCCS_IO_ROF | UDCCS_IO_DME;
1699 tmp &= udccs;
1700 if (likely(tmp))
1701 *ep->reg_udccs = tmp;
1702
1703 /* fifos can hold packets, ready for reading... */
1704 if (likely(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 completed = read_fifo(ep, req);
1706 } else
1707 pio_irq_disable (ep->bEndpointAddress);
1708 }
1709 ep->pio_irqs++;
1710 } while (completed);
1711}
1712
1713/*
Philipp Zabel7a857622008-06-22 23:36:39 +01001714 * pxa25x_udc_irq - interrupt handler
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 *
1716 * avoid delays in ep0 processing. the control handshaking isn't always
1717 * under software control (pxa250c0 and the pxa255 are better), and delays
1718 * could cause usb protocol errors.
1719 */
1720static irqreturn_t
Philipp Zabel7a857622008-06-22 23:36:39 +01001721pxa25x_udc_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Philipp Zabel7a857622008-06-22 23:36:39 +01001723 struct pxa25x_udc *dev = _dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 int handled;
1725
1726 dev->stats.irqs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 do {
1728 u32 udccr = UDCCR;
1729
1730 handled = 0;
1731
1732 /* SUSpend Interrupt Request */
1733 if (unlikely(udccr & UDCCR_SUSIR)) {
1734 udc_ack_int_UDCCR(UDCCR_SUSIR);
1735 handled = 1;
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03001736 DBG(DBG_VERBOSE, "USB suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03001738 if (dev->gadget.speed != USB_SPEED_UNKNOWN
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 && dev->driver
1740 && dev->driver->suspend)
1741 dev->driver->suspend(&dev->gadget);
1742 ep0_idle (dev);
1743 }
1744
1745 /* RESume Interrupt Request */
1746 if (unlikely(udccr & UDCCR_RESIR)) {
1747 udc_ack_int_UDCCR(UDCCR_RESIR);
1748 handled = 1;
1749 DBG(DBG_VERBOSE, "USB resume\n");
1750
1751 if (dev->gadget.speed != USB_SPEED_UNKNOWN
1752 && dev->driver
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03001753 && dev->driver->resume)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 dev->driver->resume(&dev->gadget);
1755 }
1756
1757 /* ReSeT Interrupt Request - USB reset */
1758 if (unlikely(udccr & UDCCR_RSTIR)) {
1759 udc_ack_int_UDCCR(UDCCR_RSTIR);
1760 handled = 1;
1761
1762 if ((UDCCR & UDCCR_UDA) == 0) {
1763 DBG(DBG_VERBOSE, "USB reset start\n");
1764
1765 /* reset driver and endpoints,
1766 * in case that's not yet done
1767 */
1768 stop_activity (dev, dev->driver);
1769
1770 } else {
1771 DBG(DBG_VERBOSE, "USB reset end\n");
1772 dev->gadget.speed = USB_SPEED_FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 memset(&dev->stats, 0, sizeof dev->stats);
1774 /* driver and endpoints are still reset */
1775 }
1776
1777 } else {
1778 u32 usir0 = USIR0 & ~UICR0;
1779 u32 usir1 = USIR1 & ~UICR1;
1780 int i;
1781
1782 if (unlikely (!usir0 && !usir1))
1783 continue;
1784
1785 DBG(DBG_VERY_NOISY, "irq %02x.%02x\n", usir1, usir0);
1786
1787 /* control traffic */
1788 if (usir0 & USIR0_IR0) {
1789 dev->ep[0].pio_irqs++;
1790 handle_ep0(dev);
1791 handled = 1;
1792 }
1793
1794 /* endpoint data transfers */
1795 for (i = 0; i < 8; i++) {
1796 u32 tmp = 1 << i;
1797
1798 if (i && (usir0 & tmp)) {
1799 handle_ep(&dev->ep[i]);
1800 USIR0 |= tmp;
1801 handled = 1;
1802 }
David Brownell6d845992009-07-01 03:43:58 -07001803#ifndef CONFIG_USB_PXA25X_SMALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (usir1 & tmp) {
1805 handle_ep(&dev->ep[i+8]);
1806 USIR1 |= tmp;
1807 handled = 1;
1808 }
David Brownell6d845992009-07-01 03:43:58 -07001809#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811 }
1812
1813 /* we could also ask for 1 msec SOF (SIR) interrupts */
1814
1815 } while (handled);
1816 return IRQ_HANDLED;
1817}
1818
1819/*-------------------------------------------------------------------------*/
1820
1821static void nop_release (struct device *dev)
1822{
Kay Sievers7071a3c2008-05-02 06:02:41 +02001823 DMSG("%s %s\n", __func__, dev_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826/* this uses load-time allocation and initialization (instead of
1827 * doing it at run-time) to save code, eliminate fault paths, and
1828 * be more obviously correct.
1829 */
Philipp Zabel7a857622008-06-22 23:36:39 +01001830static struct pxa25x_udc memory = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 .gadget = {
Philipp Zabel7a857622008-06-22 23:36:39 +01001832 .ops = &pxa25x_udc_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 .ep0 = &memory.ep[0].ep,
1834 .name = driver_name,
1835 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001836 .init_name = "gadget",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 .release = nop_release,
1838 },
1839 },
1840
1841 /* control endpoint */
1842 .ep[0] = {
1843 .ep = {
1844 .name = ep0name,
Philipp Zabel7a857622008-06-22 23:36:39 +01001845 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 .maxpacket = EP0_FIFO_SIZE,
1847 },
1848 .dev = &memory,
1849 .reg_udccs = &UDCCS0,
1850 .reg_uddr = &UDDR0,
1851 },
1852
1853 /* first group of endpoints */
1854 .ep[1] = {
1855 .ep = {
1856 .name = "ep1in-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01001857 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 .maxpacket = BULK_FIFO_SIZE,
1859 },
1860 .dev = &memory,
1861 .fifo_size = BULK_FIFO_SIZE,
1862 .bEndpointAddress = USB_DIR_IN | 1,
1863 .bmAttributes = USB_ENDPOINT_XFER_BULK,
1864 .reg_udccs = &UDCCS1,
1865 .reg_uddr = &UDDR1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 },
1867 .ep[2] = {
1868 .ep = {
1869 .name = "ep2out-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01001870 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 .maxpacket = BULK_FIFO_SIZE,
1872 },
1873 .dev = &memory,
1874 .fifo_size = BULK_FIFO_SIZE,
1875 .bEndpointAddress = 2,
1876 .bmAttributes = USB_ENDPOINT_XFER_BULK,
1877 .reg_udccs = &UDCCS2,
1878 .reg_ubcr = &UBCR2,
1879 .reg_uddr = &UDDR2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 },
Philipp Zabel7a857622008-06-22 23:36:39 +01001881#ifndef CONFIG_USB_PXA25X_SMALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 .ep[3] = {
1883 .ep = {
1884 .name = "ep3in-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01001885 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .maxpacket = ISO_FIFO_SIZE,
1887 },
1888 .dev = &memory,
1889 .fifo_size = ISO_FIFO_SIZE,
1890 .bEndpointAddress = USB_DIR_IN | 3,
1891 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
1892 .reg_udccs = &UDCCS3,
1893 .reg_uddr = &UDDR3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 },
1895 .ep[4] = {
1896 .ep = {
1897 .name = "ep4out-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01001898 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 .maxpacket = ISO_FIFO_SIZE,
1900 },
1901 .dev = &memory,
1902 .fifo_size = ISO_FIFO_SIZE,
1903 .bEndpointAddress = 4,
1904 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
1905 .reg_udccs = &UDCCS4,
1906 .reg_ubcr = &UBCR4,
1907 .reg_uddr = &UDDR4,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 },
1909 .ep[5] = {
1910 .ep = {
1911 .name = "ep5in-int",
Philipp Zabel7a857622008-06-22 23:36:39 +01001912 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 .maxpacket = INT_FIFO_SIZE,
1914 },
1915 .dev = &memory,
1916 .fifo_size = INT_FIFO_SIZE,
1917 .bEndpointAddress = USB_DIR_IN | 5,
1918 .bmAttributes = USB_ENDPOINT_XFER_INT,
1919 .reg_udccs = &UDCCS5,
1920 .reg_uddr = &UDDR5,
1921 },
1922
1923 /* second group of endpoints */
1924 .ep[6] = {
1925 .ep = {
1926 .name = "ep6in-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01001927 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 .maxpacket = BULK_FIFO_SIZE,
1929 },
1930 .dev = &memory,
1931 .fifo_size = BULK_FIFO_SIZE,
1932 .bEndpointAddress = USB_DIR_IN | 6,
1933 .bmAttributes = USB_ENDPOINT_XFER_BULK,
1934 .reg_udccs = &UDCCS6,
1935 .reg_uddr = &UDDR6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 },
1937 .ep[7] = {
1938 .ep = {
1939 .name = "ep7out-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01001940 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 .maxpacket = BULK_FIFO_SIZE,
1942 },
1943 .dev = &memory,
1944 .fifo_size = BULK_FIFO_SIZE,
1945 .bEndpointAddress = 7,
1946 .bmAttributes = USB_ENDPOINT_XFER_BULK,
1947 .reg_udccs = &UDCCS7,
1948 .reg_ubcr = &UBCR7,
1949 .reg_uddr = &UDDR7,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 },
1951 .ep[8] = {
1952 .ep = {
1953 .name = "ep8in-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01001954 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 .maxpacket = ISO_FIFO_SIZE,
1956 },
1957 .dev = &memory,
1958 .fifo_size = ISO_FIFO_SIZE,
1959 .bEndpointAddress = USB_DIR_IN | 8,
1960 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
1961 .reg_udccs = &UDCCS8,
1962 .reg_uddr = &UDDR8,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 },
1964 .ep[9] = {
1965 .ep = {
1966 .name = "ep9out-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01001967 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 .maxpacket = ISO_FIFO_SIZE,
1969 },
1970 .dev = &memory,
1971 .fifo_size = ISO_FIFO_SIZE,
1972 .bEndpointAddress = 9,
1973 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
1974 .reg_udccs = &UDCCS9,
1975 .reg_ubcr = &UBCR9,
1976 .reg_uddr = &UDDR9,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 },
1978 .ep[10] = {
1979 .ep = {
1980 .name = "ep10in-int",
Philipp Zabel7a857622008-06-22 23:36:39 +01001981 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 .maxpacket = INT_FIFO_SIZE,
1983 },
1984 .dev = &memory,
1985 .fifo_size = INT_FIFO_SIZE,
1986 .bEndpointAddress = USB_DIR_IN | 10,
1987 .bmAttributes = USB_ENDPOINT_XFER_INT,
1988 .reg_udccs = &UDCCS10,
1989 .reg_uddr = &UDDR10,
1990 },
1991
1992 /* third group of endpoints */
1993 .ep[11] = {
1994 .ep = {
1995 .name = "ep11in-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01001996 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 .maxpacket = BULK_FIFO_SIZE,
1998 },
1999 .dev = &memory,
2000 .fifo_size = BULK_FIFO_SIZE,
2001 .bEndpointAddress = USB_DIR_IN | 11,
2002 .bmAttributes = USB_ENDPOINT_XFER_BULK,
2003 .reg_udccs = &UDCCS11,
2004 .reg_uddr = &UDDR11,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 },
2006 .ep[12] = {
2007 .ep = {
2008 .name = "ep12out-bulk",
Philipp Zabel7a857622008-06-22 23:36:39 +01002009 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 .maxpacket = BULK_FIFO_SIZE,
2011 },
2012 .dev = &memory,
2013 .fifo_size = BULK_FIFO_SIZE,
2014 .bEndpointAddress = 12,
2015 .bmAttributes = USB_ENDPOINT_XFER_BULK,
2016 .reg_udccs = &UDCCS12,
2017 .reg_ubcr = &UBCR12,
2018 .reg_uddr = &UDDR12,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 },
2020 .ep[13] = {
2021 .ep = {
2022 .name = "ep13in-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01002023 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 .maxpacket = ISO_FIFO_SIZE,
2025 },
2026 .dev = &memory,
2027 .fifo_size = ISO_FIFO_SIZE,
2028 .bEndpointAddress = USB_DIR_IN | 13,
2029 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
2030 .reg_udccs = &UDCCS13,
2031 .reg_uddr = &UDDR13,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 },
2033 .ep[14] = {
2034 .ep = {
2035 .name = "ep14out-iso",
Philipp Zabel7a857622008-06-22 23:36:39 +01002036 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 .maxpacket = ISO_FIFO_SIZE,
2038 },
2039 .dev = &memory,
2040 .fifo_size = ISO_FIFO_SIZE,
2041 .bEndpointAddress = 14,
2042 .bmAttributes = USB_ENDPOINT_XFER_ISOC,
2043 .reg_udccs = &UDCCS14,
2044 .reg_ubcr = &UBCR14,
2045 .reg_uddr = &UDDR14,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 },
2047 .ep[15] = {
2048 .ep = {
2049 .name = "ep15in-int",
Philipp Zabel7a857622008-06-22 23:36:39 +01002050 .ops = &pxa25x_ep_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 .maxpacket = INT_FIFO_SIZE,
2052 },
2053 .dev = &memory,
2054 .fifo_size = INT_FIFO_SIZE,
2055 .bEndpointAddress = USB_DIR_IN | 15,
2056 .bmAttributes = USB_ENDPOINT_XFER_INT,
2057 .reg_udccs = &UDCCS15,
2058 .reg_uddr = &UDDR15,
2059 },
Philipp Zabel7a857622008-06-22 23:36:39 +01002060#endif /* !CONFIG_USB_PXA25X_SMALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061};
2062
2063#define CP15R0_VENDOR_MASK 0xffffe000
2064
2065#if defined(CONFIG_ARCH_PXA)
2066#define CP15R0_XSCALE_VALUE 0x69052000 /* intel/arm/xscale */
2067
2068#elif defined(CONFIG_ARCH_IXP4XX)
2069#define CP15R0_XSCALE_VALUE 0x69054000 /* intel/arm/ixp4xx */
2070
2071#endif
2072
2073#define CP15R0_PROD_MASK 0x000003f0
2074#define PXA25x 0x00000100 /* and PXA26x */
2075#define PXA210 0x00000120
2076
2077#define CP15R0_REV_MASK 0x0000000f
2078
2079#define CP15R0_PRODREV_MASK (CP15R0_PROD_MASK | CP15R0_REV_MASK)
2080
2081#define PXA255_A0 0x00000106 /* or PXA260_B1 */
2082#define PXA250_C0 0x00000105 /* or PXA26x_B0 */
2083#define PXA250_B2 0x00000104
2084#define PXA250_B1 0x00000103 /* or PXA260_A0 */
2085#define PXA250_B0 0x00000102
2086#define PXA250_A1 0x00000101
2087#define PXA250_A0 0x00000100
2088
2089#define PXA210_C0 0x00000125
2090#define PXA210_B2 0x00000124
2091#define PXA210_B1 0x00000123
2092#define PXA210_B0 0x00000122
2093#define IXP425_A0 0x000001c1
David Brownell827982c2006-11-20 11:38:57 -08002094#define IXP425_B0 0x000001f1
Milan Svoboda043ea182006-05-29 03:34:00 -07002095#define IXP465_AD 0x00000200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097/*
David Brownell34ebcd22007-02-24 12:23:52 -08002098 * probe - binds to the platform device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 */
Philipp Zabel7a857622008-06-22 23:36:39 +01002100static int __init pxa25x_udc_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Philipp Zabel7a857622008-06-22 23:36:39 +01002102 struct pxa25x_udc *dev = &memory;
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03002103 int retval, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 u32 chiprev;
2105
2106 /* insist on Intel/ARM/XScale */
2107 asm("mrc%? p15, 0, %0, c0, c0" : "=r" (chiprev));
2108 if ((chiprev & CP15R0_VENDOR_MASK) != CP15R0_XSCALE_VALUE) {
David Brownell00274922007-11-19 12:58:36 -08002109 pr_err("%s: not XScale!\n", driver_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return -ENODEV;
2111 }
2112
2113 /* trigger chiprev-specific logic */
2114 switch (chiprev & CP15R0_PRODREV_MASK) {
2115#if defined(CONFIG_ARCH_PXA)
2116 case PXA255_A0:
2117 dev->has_cfr = 1;
2118 break;
2119 case PXA250_A0:
2120 case PXA250_A1:
2121 /* A0/A1 "not released"; ep 13, 15 unusable */
2122 /* fall through */
2123 case PXA250_B2: case PXA210_B2:
2124 case PXA250_B1: case PXA210_B1:
2125 case PXA250_B0: case PXA210_B0:
David Brownellad8c6232007-06-30 06:30:04 -07002126 /* OUT-DMA is broken ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 /* fall through */
2128 case PXA250_C0: case PXA210_C0:
2129 break;
2130#elif defined(CONFIG_ARCH_IXP4XX)
2131 case IXP425_A0:
David Brownell827982c2006-11-20 11:38:57 -08002132 case IXP425_B0:
Milan Svoboda043ea182006-05-29 03:34:00 -07002133 case IXP465_AD:
2134 dev->has_cfr = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 break;
2136#endif
2137 default:
David Brownell00274922007-11-19 12:58:36 -08002138 pr_err("%s: unrecognized processor: %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 driver_name, chiprev);
2140 /* iop3xx, ixp4xx, ... */
2141 return -ENODEV;
2142 }
2143
David Brownell34ebcd22007-02-24 12:23:52 -08002144 irq = platform_get_irq(pdev, 0);
2145 if (irq < 0)
2146 return -ENODEV;
2147
Russell Kinge0d8b132008-11-11 17:52:32 +00002148 dev->clk = clk_get(&pdev->dev, NULL);
Russell King6549e6c2007-08-20 10:33:35 +01002149 if (IS_ERR(dev->clk)) {
2150 retval = PTR_ERR(dev->clk);
2151 goto err_clk;
2152 }
Russell King6549e6c2007-08-20 10:33:35 +01002153
David Brownellad8c6232007-06-30 06:30:04 -07002154 pr_debug("%s: IRQ %d%s%s\n", driver_name, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 dev->has_cfr ? "" : " (!cfr)",
David Brownellad8c6232007-06-30 06:30:04 -07002156 SIZE_STR "(pio)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 );
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /* other non-static parts of init */
Russell King3ae5eae2005-11-09 22:32:44 +00002160 dev->dev = &pdev->dev;
2161 dev->mach = pdev->dev.platform_data;
Milan Svoboda9068a4c2007-06-30 06:25:35 -07002162
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02002163 dev->transceiver = usb_get_transceiver();
Philipp Zabelab26d202009-07-01 03:46:25 -07002164
Philipp Zabel56a075d2009-07-01 03:42:45 -07002165 if (gpio_is_valid(dev->mach->gpio_pullup)) {
Milan Svoboda9068a4c2007-06-30 06:25:35 -07002166 if ((retval = gpio_request(dev->mach->gpio_pullup,
Philipp Zabel7a857622008-06-22 23:36:39 +01002167 "pca25x_udc GPIO PULLUP"))) {
Milan Svoboda9068a4c2007-06-30 06:25:35 -07002168 dev_dbg(&pdev->dev,
2169 "can't get pullup gpio %d, err: %d\n",
2170 dev->mach->gpio_pullup, retval);
Russell King6549e6c2007-08-20 10:33:35 +01002171 goto err_gpio_pullup;
Milan Svoboda9068a4c2007-06-30 06:25:35 -07002172 }
2173 gpio_direction_output(dev->mach->gpio_pullup, 0);
2174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 init_timer(&dev->timer);
2177 dev->timer.function = udc_watchdog;
2178 dev->timer.data = (unsigned long) dev;
2179
2180 device_initialize(&dev->gadget.dev);
Russell King3ae5eae2005-11-09 22:32:44 +00002181 dev->gadget.dev.parent = &pdev->dev;
2182 dev->gadget.dev.dma_mask = pdev->dev.dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 the_controller = dev;
Russell King3ae5eae2005-11-09 22:32:44 +00002185 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 udc_disable(dev);
2188 udc_reinit(dev);
2189
Dmitry Eremin-Solenikova8ecc862011-02-14 15:33:19 +03002190 dev->vbus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 /* irq setup after old hardware state is cleaned up */
Philipp Zabel7a857622008-06-22 23:36:39 +01002193 retval = request_irq(irq, pxa25x_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002194 0, driver_name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (retval != 0) {
David Brownell00274922007-11-19 12:58:36 -08002196 pr_err("%s: can't get irq %d, err %d\n",
David Brownell34ebcd22007-02-24 12:23:52 -08002197 driver_name, irq, retval);
Russell King6549e6c2007-08-20 10:33:35 +01002198 goto err_irq1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200 dev->got_irq = 1;
2201
2202#ifdef CONFIG_ARCH_LUBBOCK
2203 if (machine_is_lubbock()) {
2204 retval = request_irq(LUBBOCK_USB_DISC_IRQ,
2205 lubbock_vbus_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002206 IRQF_SAMPLE_RANDOM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 driver_name, dev);
2208 if (retval != 0) {
David Brownell00274922007-11-19 12:58:36 -08002209 pr_err("%s: can't get irq %i, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 driver_name, LUBBOCK_USB_DISC_IRQ, retval);
Russell King6549e6c2007-08-20 10:33:35 +01002211 goto err_irq_lub;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213 retval = request_irq(LUBBOCK_USB_IRQ,
2214 lubbock_vbus_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08002215 IRQF_SAMPLE_RANDOM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 driver_name, dev);
2217 if (retval != 0) {
David Brownell00274922007-11-19 12:58:36 -08002218 pr_err("%s: can't get irq %i, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 driver_name, LUBBOCK_USB_IRQ, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 goto lubbock_fail0;
2221 }
David Brownellb2bbb202006-06-29 12:25:39 -07002222 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223#endif
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08002224 create_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002226 retval = usb_add_gadget_udc(&pdev->dev, &dev->gadget);
2227 if (!retval)
2228 return retval;
Russell King6549e6c2007-08-20 10:33:35 +01002229
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002230 remove_debug_files(dev);
Russell King6549e6c2007-08-20 10:33:35 +01002231#ifdef CONFIG_ARCH_LUBBOCK
Sebastian Andrzej Siewiora6207b12011-06-03 19:50:46 +02002232lubbock_fail0:
Russell King6549e6c2007-08-20 10:33:35 +01002233 free_irq(LUBBOCK_USB_DISC_IRQ, dev);
2234 err_irq_lub:
Russell King6549e6c2007-08-20 10:33:35 +01002235 free_irq(irq, dev);
Sebastian Andrzej Siewiora6207b12011-06-03 19:50:46 +02002236#endif
Russell King6549e6c2007-08-20 10:33:35 +01002237 err_irq1:
Philipp Zabel56a075d2009-07-01 03:42:45 -07002238 if (gpio_is_valid(dev->mach->gpio_pullup))
Russell King6549e6c2007-08-20 10:33:35 +01002239 gpio_free(dev->mach->gpio_pullup);
2240 err_gpio_pullup:
Philipp Zabelab26d202009-07-01 03:46:25 -07002241 if (dev->transceiver) {
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02002242 usb_put_transceiver(dev->transceiver);
Philipp Zabelab26d202009-07-01 03:46:25 -07002243 dev->transceiver = NULL;
2244 }
Russell King6549e6c2007-08-20 10:33:35 +01002245 clk_put(dev->clk);
2246 err_clk:
Russell King6549e6c2007-08-20 10:33:35 +01002247 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
David Brownell91987692005-05-07 13:20:19 -07002249
Philipp Zabel7a857622008-06-22 23:36:39 +01002250static void pxa25x_udc_shutdown(struct platform_device *_dev)
David Brownell91987692005-05-07 13:20:19 -07002251{
2252 pullup_off();
2253}
2254
Philipp Zabel7a857622008-06-22 23:36:39 +01002255static int __exit pxa25x_udc_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Philipp Zabel7a857622008-06-22 23:36:39 +01002257 struct pxa25x_udc *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03002259 usb_del_gadget_udc(&dev->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08002260 if (dev->driver)
2261 return -EBUSY;
2262
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08002263 dev->pullup = 0;
2264 pullup(dev);
2265
Dmitry Baryshkov040fa1b2007-12-30 11:56:27 -08002266 remove_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 if (dev->got_irq) {
David Brownell34ebcd22007-02-24 12:23:52 -08002269 free_irq(platform_get_irq(pdev, 0), dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 dev->got_irq = 0;
2271 }
Milan Svoboda44df45a2006-05-29 03:34:00 -07002272#ifdef CONFIG_ARCH_LUBBOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (machine_is_lubbock()) {
2274 free_irq(LUBBOCK_USB_DISC_IRQ, dev);
2275 free_irq(LUBBOCK_USB_IRQ, dev);
2276 }
Milan Svoboda44df45a2006-05-29 03:34:00 -07002277#endif
Philipp Zabel56a075d2009-07-01 03:42:45 -07002278 if (gpio_is_valid(dev->mach->gpio_pullup))
Milan Svoboda9068a4c2007-06-30 06:25:35 -07002279 gpio_free(dev->mach->gpio_pullup);
2280
Russell King6549e6c2007-08-20 10:33:35 +01002281 clk_put(dev->clk);
Russell King6549e6c2007-08-20 10:33:35 +01002282
Philipp Zabelab26d202009-07-01 03:46:25 -07002283 if (dev->transceiver) {
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02002284 usb_put_transceiver(dev->transceiver);
Philipp Zabelab26d202009-07-01 03:46:25 -07002285 dev->transceiver = NULL;
2286 }
2287
Russell King3ae5eae2005-11-09 22:32:44 +00002288 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 the_controller = NULL;
2290 return 0;
2291}
2292
2293/*-------------------------------------------------------------------------*/
2294
2295#ifdef CONFIG_PM
2296
2297/* USB suspend (controlled by the host) and system suspend (controlled
2298 * by the PXA) don't necessarily work well together. If USB is active,
2299 * the 48 MHz clock is required; so the system can't enter 33 MHz idle
2300 * mode, or any deeper PM saving state.
2301 *
2302 * For now, we punt and forcibly disconnect from the USB host when PXA
2303 * enters any suspend state. While we're disconnected, we always disable
David Brownell34ebcd22007-02-24 12:23:52 -08002304 * the 48MHz USB clock ... allowing PXA sleep and/or 33 MHz idle states.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 * Boards without software pullup control shouldn't use those states.
2306 * VBUS IRQs should probably be ignored so that the PXA device just acts
2307 * "dead" to USB hosts until system resume.
2308 */
Philipp Zabel7a857622008-06-22 23:36:39 +01002309static int pxa25x_udc_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
Philipp Zabel7a857622008-06-22 23:36:39 +01002311 struct pxa25x_udc *udc = platform_get_drvdata(dev);
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08002312 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Philipp Zabel56a075d2009-07-01 03:42:45 -07002314 if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command)
Arjan van de Venb6c63932008-07-25 01:45:52 -07002315 WARNING("USB host won't detect disconnect!\n");
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08002316 udc->suspended = 1;
2317
2318 local_irq_save(flags);
2319 pullup(udc);
2320 local_irq_restore(flags);
Russell King9480e302005-10-28 09:52:56 -07002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return 0;
2323}
2324
Philipp Zabel7a857622008-06-22 23:36:39 +01002325static int pxa25x_udc_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326{
Philipp Zabel7a857622008-06-22 23:36:39 +01002327 struct pxa25x_udc *udc = platform_get_drvdata(dev);
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08002328 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Dmitry Baryshkov64cc2dd2008-02-22 17:17:19 -08002330 udc->suspended = 0;
2331 local_irq_save(flags);
2332 pullup(udc);
2333 local_irq_restore(flags);
Russell King9480e302005-10-28 09:52:56 -07002334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return 0;
2336}
2337
2338#else
Philipp Zabel7a857622008-06-22 23:36:39 +01002339#define pxa25x_udc_suspend NULL
2340#define pxa25x_udc_resume NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341#endif
2342
2343/*-------------------------------------------------------------------------*/
2344
Russell King3ae5eae2005-11-09 22:32:44 +00002345static struct platform_driver udc_driver = {
Philipp Zabel7a857622008-06-22 23:36:39 +01002346 .shutdown = pxa25x_udc_shutdown,
2347 .remove = __exit_p(pxa25x_udc_remove),
2348 .suspend = pxa25x_udc_suspend,
2349 .resume = pxa25x_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002350 .driver = {
2351 .owner = THIS_MODULE,
Philipp Zabel7a857622008-06-22 23:36:39 +01002352 .name = "pxa25x-udc",
Russell King3ae5eae2005-11-09 22:32:44 +00002353 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354};
2355
2356static int __init udc_init(void)
2357{
David Brownell00274922007-11-19 12:58:36 -08002358 pr_info("%s: version %s\n", driver_name, DRIVER_VERSION);
Philipp Zabel7a857622008-06-22 23:36:39 +01002359 return platform_driver_probe(&udc_driver, pxa25x_udc_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360}
2361module_init(udc_init);
2362
2363static void __exit udc_exit(void)
2364{
Russell King3ae5eae2005-11-09 22:32:44 +00002365 platform_driver_unregister(&udc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367module_exit(udc_exit);
2368
2369MODULE_DESCRIPTION(DRIVER_DESC);
2370MODULE_AUTHOR("Frank Becker, Robert Schwebel, David Brownell");
2371MODULE_LICENSE("GPL");
Philipp Zabel7a857622008-06-22 23:36:39 +01002372MODULE_ALIAS("platform:pxa25x-udc");