blob: f99b3dc745bdc3dba707297b62480cd58413924c [file] [log] [blame]
David Brownellbae4bd82006-01-22 10:32:37 -08001/*
2 * at91_udc -- driver for at91-series USB peripheral controller
3 *
4 * Copyright (C) 2004 by Thomas Rathbone
5 * Copyright (C) 2005 by HP Labs
6 * Copyright (C) 2005 by David Brownell
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
David Brownellbae4bd82006-01-22 10:32:37 -080012 */
13
David Brownellf3db6e82008-01-05 13:21:43 -080014#undef VERBOSE_DEBUG
David Brownellbae4bd82006-01-22 10:32:37 -080015#undef PACKET_TRACE
16
David Brownellbae4bd82006-01-22 10:32:37 -080017#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/platform_device.h>
20#include <linux/delay.h>
21#include <linux/ioport.h>
David Brownellbae4bd82006-01-22 10:32:37 -080022#include <linux/slab.h>
David Brownellbae4bd82006-01-22 10:32:37 -080023#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/list.h>
26#include <linux/interrupt.h>
27#include <linux/proc_fs.h>
Jean-Christophe PLAGNIOL-VILLARDeed39362011-05-29 10:01:48 +020028#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080029#include <linux/clk.h>
David Brownell5f848132006-12-16 15:34:53 -080030#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070031#include <linux/usb/gadget.h>
Bryan Wub38b03b2011-06-02 12:51:29 +080032#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080033
34#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080036#include <asm/io.h>
37#include <asm/irq.h>
38#include <asm/system.h>
David Brownellf3db6e82008-01-05 13:21:43 -080039#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080040
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/board.h>
42#include <mach/cpu.h>
43#include <mach/at91sam9261_matrix.h>
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +080044#include <mach/at91_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080045
46#include "at91_udc.h"
47
48
49/*
50 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070051 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
52 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080053 *
54 * This driver expects the board has been wired with two GPIOs suppporting
55 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070056 * testing hasn't covered such cases.)
57 *
58 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080059 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070060 *
David Brownellbae4bd82006-01-22 10:32:37 -080061 * The VBUS sensing helps during enumeration, and allows both USB clocks
62 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070063 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
64 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080065 */
66
David Brownell8b2e7662006-07-05 02:38:56 -070067#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080068
69static const char driver_name [] = "at91_udc";
70static const char ep0name[] = "ep0";
71
Ryan Mallon40372422010-07-13 05:09:16 +010072#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080073
Harro Haan4f4c5e32010-03-01 18:01:56 +010074#define at91_udp_read(udc, reg) \
75 __raw_readl((udc)->udp_baseaddr + (reg))
76#define at91_udp_write(udc, reg, val) \
77 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080078
79/*-------------------------------------------------------------------------*/
80
81#ifdef CONFIG_USB_GADGET_DEBUG_FILES
82
83#include <linux/seq_file.h>
84
85static const char debug_filename[] = "driver/udc";
86
87#define FOURBITS "%s%s%s%s"
88#define EIGHTBITS FOURBITS FOURBITS
89
90static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
91{
92 static char *types[] = {
93 "control", "out-iso", "out-bulk", "out-int",
94 "BOGUS", "in-iso", "in-bulk", "in-int"};
95
96 u32 csr;
97 struct at91_request *req;
98 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +010099 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800100
Harro Haan4f4c5e32010-03-01 18:01:56 +0100101 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800102
103 csr = __raw_readl(ep->creg);
104
105 /* NOTE: not collecting per-endpoint irq statistics... */
106
107 seq_printf(s, "\n");
108 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
109 ep->ep.name, ep->ep.maxpacket,
110 ep->is_in ? "in" : "out",
111 ep->is_iso ? " iso" : "",
112 ep->is_pingpong
113 ? (ep->fifo_bank ? "pong" : "ping")
114 : "",
115 ep->stopped ? " stopped" : "");
116 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
117 csr,
118 (csr & 0x07ff0000) >> 16,
119 (csr & (1 << 15)) ? "enabled" : "disabled",
120 (csr & (1 << 11)) ? "DATA1" : "DATA0",
121 types[(csr & 0x700) >> 8],
122
123 /* iff type is control then print current direction */
124 (!(csr & 0x700))
125 ? ((csr & (1 << 7)) ? " IN" : " OUT")
126 : "",
127 (csr & (1 << 6)) ? " rxdatabk1" : "",
128 (csr & (1 << 5)) ? " forcestall" : "",
129 (csr & (1 << 4)) ? " txpktrdy" : "",
130
131 (csr & (1 << 3)) ? " stallsent" : "",
132 (csr & (1 << 2)) ? " rxsetup" : "",
133 (csr & (1 << 1)) ? " rxdatabk0" : "",
134 (csr & (1 << 0)) ? " txcomp" : "");
135 if (list_empty (&ep->queue))
136 seq_printf(s, "\t(queue empty)\n");
137
138 else list_for_each_entry (req, &ep->queue, queue) {
139 unsigned length = req->req.actual;
140
141 seq_printf(s, "\treq %p len %d/%d buf %p\n",
142 &req->req, length,
143 req->req.length, req->req.buf);
144 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100145 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800146}
147
148static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
149{
150 int i;
151
152 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
153 (mask & (1 << 13)) ? " wakeup" : "",
154 (mask & (1 << 12)) ? " endbusres" : "",
155
156 (mask & (1 << 11)) ? " sofint" : "",
157 (mask & (1 << 10)) ? " extrsm" : "",
158 (mask & (1 << 9)) ? " rxrsm" : "",
159 (mask & (1 << 8)) ? " rxsusp" : "");
160 for (i = 0; i < 8; i++) {
161 if (mask & (1 << i))
162 seq_printf(s, " ep%d", i);
163 }
164 seq_printf(s, "\n");
165}
166
167static int proc_udc_show(struct seq_file *s, void *unused)
168{
169 struct at91_udc *udc = s->private;
170 struct at91_ep *ep;
171 u32 tmp;
172
173 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
174
175 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
176 udc->vbus ? "present" : "off",
177 udc->enabled
178 ? (udc->vbus ? "active" : "enabled")
179 : "disabled",
180 udc->selfpowered ? "self" : "VBUS",
181 udc->suspended ? ", suspended" : "",
182 udc->driver ? udc->driver->driver.name : "(none)");
183
184 /* don't access registers when interface isn't clocked */
185 if (!udc->clocked) {
186 seq_printf(s, "(not clocked)\n");
187 return 0;
188 }
189
Andrew Victorffd33262006-12-07 22:44:33 -0800190 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800191 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
192 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
193 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
194 (tmp & AT91_UDP_NUM));
195
Andrew Victorffd33262006-12-07 22:44:33 -0800196 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800197 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
198 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
199 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
200 (tmp & AT91_UDP_ESR) ? " esr" : "",
201 (tmp & AT91_UDP_CONFG) ? " confg" : "",
202 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
203
Andrew Victorffd33262006-12-07 22:44:33 -0800204 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800205 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
206 (tmp & AT91_UDP_FEN) ? " fen" : "",
207 (tmp & AT91_UDP_FADD));
208
Andrew Victorffd33262006-12-07 22:44:33 -0800209 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
210 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800211
212 if (udc->enabled && udc->vbus) {
213 proc_ep_show(s, &udc->ep[0]);
214 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
215 if (ep->desc)
216 proc_ep_show(s, ep);
217 }
218 }
219 return 0;
220}
221
222static int proc_udc_open(struct inode *inode, struct file *file)
223{
224 return single_open(file, proc_udc_show, PDE(inode)->data);
225}
226
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300227static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700228 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800229 .open = proc_udc_open,
230 .read = seq_read,
231 .llseek = seq_lseek,
232 .release = single_release,
233};
234
235static void create_debug_file(struct at91_udc *udc)
236{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700237 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800238}
239
240static void remove_debug_file(struct at91_udc *udc)
241{
242 if (udc->pde)
243 remove_proc_entry(debug_filename, NULL);
244}
245
246#else
247
248static inline void create_debug_file(struct at91_udc *udc) {}
249static inline void remove_debug_file(struct at91_udc *udc) {}
250
251#endif
252
253
254/*-------------------------------------------------------------------------*/
255
256static void done(struct at91_ep *ep, struct at91_request *req, int status)
257{
258 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800259 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800260
261 list_del_init(&req->queue);
262 if (req->req.status == -EINPROGRESS)
263 req->req.status = status;
264 else
265 status = req->req.status;
266 if (status && status != -ESHUTDOWN)
267 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
268
269 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100270 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800271 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100272 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800273 ep->stopped = stopped;
274
275 /* ep0 is always ready; other endpoints need a non-empty queue */
276 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800277 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800278}
279
280/*-------------------------------------------------------------------------*/
281
282/* bits indicating OUT fifo has data ready */
283#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
284
285/*
286 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
287 * back most of the value you just read (because of side effects, including
288 * bits that may change after reading and before writing).
289 *
290 * Except when changing a specific bit, always write values which:
291 * - clear SET_FX bits (setting them could change something)
292 * - set CLR_FX bits (clearing them could change something)
293 *
294 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
295 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700296 *
297 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
298 * implying a need to wait for one write to complete (test relevant bits)
299 * before starting the next write. This shouldn't be an issue given how
300 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800301 */
302#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700303#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
304 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800305
306/* pull OUT packet data from the endpoint's fifo */
307static int read_fifo (struct at91_ep *ep, struct at91_request *req)
308{
309 u32 __iomem *creg = ep->creg;
310 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
311 u32 csr;
312 u8 *buf;
313 unsigned int count, bufferspace, is_done;
314
315 buf = req->req.buf + req->req.actual;
316 bufferspace = req->req.length - req->req.actual;
317
318 /*
319 * there might be nothing to read if ep_queue() calls us,
320 * or if we already emptied both pingpong buffers
321 */
322rescan:
323 csr = __raw_readl(creg);
324 if ((csr & RX_DATA_READY) == 0)
325 return 0;
326
327 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
328 if (count > ep->ep.maxpacket)
329 count = ep->ep.maxpacket;
330 if (count > bufferspace) {
331 DBG("%s buffer overflow\n", ep->ep.name);
332 req->req.status = -EOVERFLOW;
333 count = bufferspace;
334 }
335 __raw_readsb(dreg, buf, count);
336
337 /* release and swap pingpong mem bank */
338 csr |= CLR_FX;
339 if (ep->is_pingpong) {
340 if (ep->fifo_bank == 0) {
341 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
342 ep->fifo_bank = 1;
343 } else {
344 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
345 ep->fifo_bank = 0;
346 }
347 } else
348 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
349 __raw_writel(csr, creg);
350
351 req->req.actual += count;
352 is_done = (count < ep->ep.maxpacket);
353 if (count == bufferspace)
354 is_done = 1;
355
356 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
357 is_done ? " (done)" : "");
358
359 /*
360 * avoid extra trips through IRQ logic for packets already in
361 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
362 */
363 if (is_done)
364 done(ep, req, 0);
365 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100366 /*
367 * One dummy read to delay the code because of a HW glitch:
368 * CSR returns bad RXCOUNT when read too soon after updating
369 * RX_DATA_BK flags.
370 */
371 csr = __raw_readl(creg);
372
David Brownellbae4bd82006-01-22 10:32:37 -0800373 bufferspace -= count;
374 buf += count;
375 goto rescan;
376 }
377
378 return is_done;
379}
380
381/* load fifo for an IN packet */
382static int write_fifo(struct at91_ep *ep, struct at91_request *req)
383{
384 u32 __iomem *creg = ep->creg;
385 u32 csr = __raw_readl(creg);
386 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
387 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700388 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800389
390 /*
391 * TODO: allow for writing two packets to the fifo ... that'll
392 * reduce the amount of IN-NAKing, but probably won't affect
393 * throughput much. (Unlike preventing OUT-NAKing!)
394 */
395
396 /*
397 * If ep_queue() calls us, the queue is empty and possibly in
398 * odd states like TXCOMP not yet cleared (we do it, saving at
399 * least one IRQ) or the fifo not yet being free. Those aren't
400 * issues normally (IRQ handler fast path).
401 */
402 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
403 if (csr & AT91_UDP_TXCOMP) {
404 csr |= CLR_FX;
405 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
406 __raw_writel(csr, creg);
407 csr = __raw_readl(creg);
408 }
409 if (csr & AT91_UDP_TXPKTRDY)
410 return 0;
411 }
412
David Brownell3cf27232008-04-06 23:32:55 -0700413 buf = req->req.buf + req->req.actual;
414 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800415 total = req->req.length - req->req.actual;
416 if (ep->ep.maxpacket < total) {
417 count = ep->ep.maxpacket;
418 is_last = 0;
419 } else {
420 count = total;
421 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
422 }
423
424 /*
425 * Write the packet, maybe it's a ZLP.
426 *
427 * NOTE: incrementing req->actual before we receive the ACK means
428 * gadget driver IN bytecounts can be wrong in fault cases. That's
429 * fixable with PIO drivers like this one (save "count" here, and
430 * do the increment later on TX irq), but not for most DMA hardware.
431 *
432 * So all gadget drivers must accept that potential error. Some
433 * hardware supports precise fifo status reporting, letting them
434 * recover when the actual bytecount matters (e.g. for USB Test
435 * and Measurement Class devices).
436 */
David Brownell3cf27232008-04-06 23:32:55 -0700437 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800438 csr &= ~SET_FX;
439 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
440 __raw_writel(csr, creg);
441 req->req.actual += count;
442
443 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
444 is_last ? " (done)" : "");
445 if (is_last)
446 done(ep, req, 0);
447 return is_last;
448}
449
450static void nuke(struct at91_ep *ep, int status)
451{
452 struct at91_request *req;
453
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200454 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800455 ep->stopped = 1;
456 if (list_empty(&ep->queue))
457 return;
458
Harvey Harrison441b62c2008-03-03 16:08:34 -0800459 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800460 while (!list_empty(&ep->queue)) {
461 req = list_entry(ep->queue.next, struct at91_request, queue);
462 done(ep, req, status);
463 }
464}
465
466/*-------------------------------------------------------------------------*/
467
David Brownell8b2e7662006-07-05 02:38:56 -0700468static int at91_ep_enable(struct usb_ep *_ep,
469 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800470{
471 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100472 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800473 u16 maxpacket;
474 u32 tmp;
475 unsigned long flags;
476
477 if (!_ep || !ep
478 || !desc || ep->desc
479 || _ep->name == ep0name
480 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700481 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800482 || maxpacket > ep->maxpacket) {
483 DBG("bad ep or descriptor\n");
484 return -EINVAL;
485 }
486
Harro Haan4f4c5e32010-03-01 18:01:56 +0100487 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800488 DBG("bogus device state\n");
489 return -ESHUTDOWN;
490 }
491
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200492 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800493 switch (tmp) {
494 case USB_ENDPOINT_XFER_CONTROL:
495 DBG("only one control endpoint\n");
496 return -EINVAL;
497 case USB_ENDPOINT_XFER_INT:
498 if (maxpacket > 64)
499 goto bogus_max;
500 break;
501 case USB_ENDPOINT_XFER_BULK:
502 switch (maxpacket) {
503 case 8:
504 case 16:
505 case 32:
506 case 64:
507 goto ok;
508 }
509bogus_max:
510 DBG("bogus maxpacket %d\n", maxpacket);
511 return -EINVAL;
512 case USB_ENDPOINT_XFER_ISOC:
513 if (!ep->is_pingpong) {
514 DBG("iso requires double buffering\n");
515 return -EINVAL;
516 }
517 break;
518 }
519
520ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100521 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800522
523 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200524 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800525 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
526 ep->stopped = 0;
527 if (ep->is_in)
528 tmp |= 0x04;
529 tmp <<= 8;
530 tmp |= AT91_UDP_EPEDS;
531 __raw_writel(tmp, ep->creg);
532
533 ep->desc = desc;
534 ep->ep.maxpacket = maxpacket;
535
536 /*
537 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
538 * since endpoint resets don't reset hw pingpong state.
539 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100540 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
541 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800542
Harro Haan4f4c5e32010-03-01 18:01:56 +0100543 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800544 return 0;
545}
546
547static int at91_ep_disable (struct usb_ep * _ep)
548{
549 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800550 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800551 unsigned long flags;
552
553 if (ep == &ep->udc->ep[0])
554 return -EINVAL;
555
Harro Haan4f4c5e32010-03-01 18:01:56 +0100556 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800557
558 nuke(ep, -ESHUTDOWN);
559
560 /* restore the endpoint's pristine config */
561 ep->desc = NULL;
562 ep->ep.maxpacket = ep->maxpacket;
563
564 /* reset fifos and endpoint */
565 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800566 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
567 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800568 __raw_writel(0, ep->creg);
569 }
570
Harro Haan4f4c5e32010-03-01 18:01:56 +0100571 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800572 return 0;
573}
574
575/*
576 * this is a PIO-only driver, so there's nothing
577 * interesting for request or buffer allocation.
578 */
579
David Brownell8b2e7662006-07-05 02:38:56 -0700580static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800581at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800582{
583 struct at91_request *req;
584
Robert P. J. Daycd861282006-12-13 00:34:52 -0800585 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800586 if (!req)
587 return NULL;
588
589 INIT_LIST_HEAD(&req->queue);
590 return &req->req;
591}
592
593static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
594{
595 struct at91_request *req;
596
597 req = container_of(_req, struct at91_request, req);
598 BUG_ON(!list_empty(&req->queue));
599 kfree(req);
600}
601
David Brownellbae4bd82006-01-22 10:32:37 -0800602static int at91_ep_queue(struct usb_ep *_ep,
603 struct usb_request *_req, gfp_t gfp_flags)
604{
605 struct at91_request *req;
606 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100607 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800608 int status;
609 unsigned long flags;
610
611 req = container_of(_req, struct at91_request, req);
612 ep = container_of(_ep, struct at91_ep, ep);
613
614 if (!_req || !_req->complete
615 || !_req->buf || !list_empty(&req->queue)) {
616 DBG("invalid request\n");
617 return -EINVAL;
618 }
619
620 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
621 DBG("invalid ep\n");
622 return -EINVAL;
623 }
624
Harro Haan4f4c5e32010-03-01 18:01:56 +0100625 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800626
Harro Haan4f4c5e32010-03-01 18:01:56 +0100627 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800628 DBG("invalid device\n");
629 return -EINVAL;
630 }
631
632 _req->status = -EINPROGRESS;
633 _req->actual = 0;
634
Harro Haan4f4c5e32010-03-01 18:01:56 +0100635 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800636
637 /* try to kickstart any empty and idle queue */
638 if (list_empty(&ep->queue) && !ep->stopped) {
639 int is_ep0;
640
641 /*
642 * If this control request has a non-empty DATA stage, this
643 * will start that stage. It works just like a non-control
644 * request (until the status stage starts, maybe early).
645 *
646 * If the data stage is empty, then this starts a successful
647 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
648 */
649 is_ep0 = (ep->ep.name == ep0name);
650 if (is_ep0) {
651 u32 tmp;
652
Harro Haan4f4c5e32010-03-01 18:01:56 +0100653 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800654 status = -EINVAL;
655 goto done;
656 }
657
658 /*
659 * defer changing CONFG until after the gadget driver
660 * reconfigures the endpoints.
661 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100662 if (udc->wait_for_config_ack) {
663 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800664 tmp ^= AT91_UDP_CONFG;
665 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100666 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800667 }
668 if (req->req.length == 0) {
669ep0_in_status:
670 PACKET("ep0 in/status\n");
671 status = 0;
672 tmp = __raw_readl(ep->creg);
673 tmp &= ~SET_FX;
674 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
675 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100676 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800677 goto done;
678 }
679 }
680
681 if (ep->is_in)
682 status = write_fifo(ep, req);
683 else {
684 status = read_fifo(ep, req);
685
686 /* IN/STATUS stage is otherwise triggered by irq */
687 if (status && is_ep0)
688 goto ep0_in_status;
689 }
690 } else
691 status = 0;
692
693 if (req && !status) {
694 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100695 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800696 }
697done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100698 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800699 return (status < 0) ? status : 0;
700}
701
702static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
703{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100704 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800705 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100706 unsigned long flags;
707 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800708
709 ep = container_of(_ep, struct at91_ep, ep);
710 if (!_ep || ep->ep.name == ep0name)
711 return -EINVAL;
712
Harro Haan4f4c5e32010-03-01 18:01:56 +0100713 udc = ep->udc;
714
715 spin_lock_irqsave(&udc->lock, flags);
716
David Brownellbae4bd82006-01-22 10:32:37 -0800717 /* make sure it's actually queued on this endpoint */
718 list_for_each_entry (req, &ep->queue, queue) {
719 if (&req->req == _req)
720 break;
721 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100722 if (&req->req != _req) {
723 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800724 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100725 }
David Brownellbae4bd82006-01-22 10:32:37 -0800726
727 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100728 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800729 return 0;
730}
731
732static int at91_ep_set_halt(struct usb_ep *_ep, int value)
733{
734 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800735 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800736 u32 __iomem *creg;
737 u32 csr;
738 unsigned long flags;
739 int status = 0;
740
741 if (!_ep || ep->is_iso || !ep->udc->clocked)
742 return -EINVAL;
743
744 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100745 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800746
747 csr = __raw_readl(creg);
748
749 /*
750 * fail with still-busy IN endpoints, ensuring correct sequencing
751 * of data tx then stall. note that the fifo rx bytecount isn't
752 * completely accurate as a tx bytecount.
753 */
754 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
755 status = -EAGAIN;
756 else {
757 csr |= CLR_FX;
758 csr &= ~SET_FX;
759 if (value) {
760 csr |= AT91_UDP_FORCESTALL;
761 VDBG("halt %s\n", ep->ep.name);
762 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800763 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
764 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800765 csr &= ~AT91_UDP_FORCESTALL;
766 }
767 __raw_writel(csr, creg);
768 }
769
Harro Haan4f4c5e32010-03-01 18:01:56 +0100770 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800771 return status;
772}
773
David Brownell398acce2007-02-15 18:47:17 -0800774static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800775 .enable = at91_ep_enable,
776 .disable = at91_ep_disable,
777 .alloc_request = at91_ep_alloc_request,
778 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800779 .queue = at91_ep_queue,
780 .dequeue = at91_ep_dequeue,
781 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200782 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800783};
784
785/*-------------------------------------------------------------------------*/
786
787static int at91_get_frame(struct usb_gadget *gadget)
788{
Andrew Victorffd33262006-12-07 22:44:33 -0800789 struct at91_udc *udc = to_udc(gadget);
790
David Brownellbae4bd82006-01-22 10:32:37 -0800791 if (!to_udc(gadget)->clocked)
792 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800793 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800794}
795
796static int at91_wakeup(struct usb_gadget *gadget)
797{
798 struct at91_udc *udc = to_udc(gadget);
799 u32 glbstate;
800 int status = -EINVAL;
801 unsigned long flags;
802
Harvey Harrison441b62c2008-03-03 16:08:34 -0800803 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100804 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800805
806 if (!udc->clocked || !udc->suspended)
807 goto done;
808
809 /* NOTE: some "early versions" handle ESR differently ... */
810
Andrew Victorffd33262006-12-07 22:44:33 -0800811 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800812 if (!(glbstate & AT91_UDP_ESR))
813 goto done;
814 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800815 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800816
817done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100818 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800819 return status;
820}
821
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300822/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800823static void udc_reinit(struct at91_udc *udc)
824{
825 u32 i;
826
827 INIT_LIST_HEAD(&udc->gadget.ep_list);
828 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
829
830 for (i = 0; i < NUM_ENDPOINTS; i++) {
831 struct at91_ep *ep = &udc->ep[i];
832
833 if (i != 0)
834 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
835 ep->desc = NULL;
836 ep->stopped = 0;
837 ep->fifo_bank = 0;
838 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800839 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200840 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800841 INIT_LIST_HEAD(&ep->queue);
842 }
843}
844
845static void stop_activity(struct at91_udc *udc)
846{
847 struct usb_gadget_driver *driver = udc->driver;
848 int i;
849
850 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
851 driver = NULL;
852 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700853 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800854
855 for (i = 0; i < NUM_ENDPOINTS; i++) {
856 struct at91_ep *ep = &udc->ep[i];
857 ep->stopped = 1;
858 nuke(ep, -ESHUTDOWN);
859 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100860 if (driver) {
861 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800862 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100863 spin_lock(&udc->lock);
864 }
David Brownellbae4bd82006-01-22 10:32:37 -0800865
866 udc_reinit(udc);
867}
868
869static void clk_on(struct at91_udc *udc)
870{
871 if (udc->clocked)
872 return;
873 udc->clocked = 1;
874 clk_enable(udc->iclk);
875 clk_enable(udc->fclk);
876}
877
878static void clk_off(struct at91_udc *udc)
879{
880 if (!udc->clocked)
881 return;
882 udc->clocked = 0;
883 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800884 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700885 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800886}
887
888/*
889 * activate/deactivate link with host; minimize power usage for
890 * inactive links by cutting clocks and transceiver power.
891 */
892static void pullup(struct at91_udc *udc, int is_on)
893{
David Brownellf3db6e82008-01-05 13:21:43 -0800894 int active = !udc->board.pullup_active_low;
895
David Brownellbae4bd82006-01-22 10:32:37 -0800896 if (!udc->enabled || !udc->vbus)
897 is_on = 0;
898 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800899
David Brownellbae4bd82006-01-22 10:32:37 -0800900 if (is_on) {
901 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800902 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800903 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800904 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800905 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100906 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800907 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
908
909 txvc |= AT91_UDP_TXVC_PUON;
910 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200911 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800912 u32 usbpucr;
913
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800914 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800915 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800916 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800917 }
Andrew Victorffd33262006-12-07 22:44:33 -0800918 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800919 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800920 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800921 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800922 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800923 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100924 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800925 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
926
927 txvc &= ~AT91_UDP_TXVC_PUON;
928 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200929 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800930 u32 usbpucr;
931
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800932 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800933 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800934 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800935 }
David Brownellbae4bd82006-01-22 10:32:37 -0800936 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800937 }
938}
939
940/* vbus is here! turn everything on that's ready */
941static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
942{
943 struct at91_udc *udc = to_udc(gadget);
944 unsigned long flags;
945
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200946 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100947 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800948 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800949 if (udc->driver)
950 pullup(udc, is_active);
951 else
952 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100953 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800954 return 0;
955}
956
957static int at91_pullup(struct usb_gadget *gadget, int is_on)
958{
959 struct at91_udc *udc = to_udc(gadget);
960 unsigned long flags;
961
Harro Haan4f4c5e32010-03-01 18:01:56 +0100962 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800963 udc->enabled = is_on = !!is_on;
964 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100965 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800966 return 0;
967}
968
969static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
970{
971 struct at91_udc *udc = to_udc(gadget);
972 unsigned long flags;
973
Harro Haan4f4c5e32010-03-01 18:01:56 +0100974 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800975 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100976 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800977 return 0;
978}
979
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300980static int at91_start(struct usb_gadget_driver *driver,
981 int (*bind)(struct usb_gadget *));
982static int at91_stop(struct usb_gadget_driver *driver);
983
David Brownellbae4bd82006-01-22 10:32:37 -0800984static const struct usb_gadget_ops at91_udc_ops = {
985 .get_frame = at91_get_frame,
986 .wakeup = at91_wakeup,
987 .set_selfpowered = at91_set_selfpowered,
988 .vbus_session = at91_vbus_session,
989 .pullup = at91_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300990 .start = at91_start,
991 .stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800992
993 /*
994 * VBUS-powered devices may also also want to support bigger
995 * power budgets after an appropriate SET_CONFIGURATION.
996 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200997 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -0800998};
999
1000/*-------------------------------------------------------------------------*/
1001
1002static int handle_ep(struct at91_ep *ep)
1003{
1004 struct at91_request *req;
1005 u32 __iomem *creg = ep->creg;
1006 u32 csr = __raw_readl(creg);
1007
1008 if (!list_empty(&ep->queue))
1009 req = list_entry(ep->queue.next,
1010 struct at91_request, queue);
1011 else
1012 req = NULL;
1013
1014 if (ep->is_in) {
1015 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1016 csr |= CLR_FX;
1017 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1018 __raw_writel(csr, creg);
1019 }
1020 if (req)
1021 return write_fifo(ep, req);
1022
1023 } else {
1024 if (csr & AT91_UDP_STALLSENT) {
1025 /* STALLSENT bit == ISOERR */
1026 if (ep->is_iso && req)
1027 req->req.status = -EILSEQ;
1028 csr |= CLR_FX;
1029 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1030 __raw_writel(csr, creg);
1031 csr = __raw_readl(creg);
1032 }
1033 if (req && (csr & RX_DATA_READY))
1034 return read_fifo(ep, req);
1035 }
1036 return 0;
1037}
1038
1039union setup {
1040 u8 raw[8];
1041 struct usb_ctrlrequest r;
1042};
1043
1044static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1045{
1046 u32 __iomem *creg = ep->creg;
1047 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1048 unsigned rxcount, i = 0;
1049 u32 tmp;
1050 union setup pkt;
1051 int status = 0;
1052
1053 /* read and ack SETUP; hard-fail for bogus packets */
1054 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1055 if (likely(rxcount == 8)) {
1056 while (rxcount--)
1057 pkt.raw[i++] = __raw_readb(dreg);
1058 if (pkt.r.bRequestType & USB_DIR_IN) {
1059 csr |= AT91_UDP_DIR;
1060 ep->is_in = 1;
1061 } else {
1062 csr &= ~AT91_UDP_DIR;
1063 ep->is_in = 0;
1064 }
1065 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001066 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001067 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1068 status = -EINVAL;
1069 }
1070 csr |= CLR_FX;
1071 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1072 __raw_writel(csr, creg);
1073 udc->wait_for_addr_ack = 0;
1074 udc->wait_for_config_ack = 0;
1075 ep->stopped = 0;
1076 if (unlikely(status != 0))
1077 goto stall;
1078
1079#define w_index le16_to_cpu(pkt.r.wIndex)
1080#define w_value le16_to_cpu(pkt.r.wValue)
1081#define w_length le16_to_cpu(pkt.r.wLength)
1082
1083 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1084 pkt.r.bRequestType, pkt.r.bRequest,
1085 w_value, w_index, w_length);
1086
1087 /*
1088 * A few standard requests get handled here, ones that touch
1089 * hardware ... notably for device and endpoint features.
1090 */
1091 udc->req_pending = 1;
1092 csr = __raw_readl(creg);
1093 csr |= CLR_FX;
1094 csr &= ~SET_FX;
1095 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1096
1097 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1098 | USB_REQ_SET_ADDRESS:
1099 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1100 udc->addr = w_value;
1101 udc->wait_for_addr_ack = 1;
1102 udc->req_pending = 0;
1103 /* FADDR is set later, when we ack host STATUS */
1104 return;
1105
1106 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1107 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001108 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001109 if (pkt.r.wValue)
1110 udc->wait_for_config_ack = (tmp == 0);
1111 else
1112 udc->wait_for_config_ack = (tmp != 0);
1113 if (udc->wait_for_config_ack)
1114 VDBG("wait for config\n");
1115 /* CONFG is toggled later, if gadget driver succeeds */
1116 break;
1117
1118 /*
1119 * Hosts may set or clear remote wakeup status, and
1120 * devices may report they're VBUS powered.
1121 */
1122 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1123 | USB_REQ_GET_STATUS:
1124 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001125 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001126 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1127 PACKET("get device status\n");
1128 __raw_writeb(tmp, dreg);
1129 __raw_writeb(0, dreg);
1130 goto write_in;
1131 /* then STATUS starts later, automatically */
1132 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1133 | USB_REQ_SET_FEATURE:
1134 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1135 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001136 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001137 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001138 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001139 goto succeed;
1140 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1141 | USB_REQ_CLEAR_FEATURE:
1142 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1143 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001144 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001145 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001146 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001147 goto succeed;
1148
1149 /*
1150 * Interfaces have no feature settings; this is pretty useless.
1151 * we won't even insist the interface exists...
1152 */
1153 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1154 | USB_REQ_GET_STATUS:
1155 PACKET("get interface status\n");
1156 __raw_writeb(0, dreg);
1157 __raw_writeb(0, dreg);
1158 goto write_in;
1159 /* then STATUS starts later, automatically */
1160 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1161 | USB_REQ_SET_FEATURE:
1162 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1163 | USB_REQ_CLEAR_FEATURE:
1164 goto stall;
1165
1166 /*
1167 * Hosts may clear bulk/intr endpoint halt after the gadget
1168 * driver sets it (not widely used); or set it (for testing)
1169 */
1170 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1171 | USB_REQ_GET_STATUS:
1172 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1173 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001174 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001175 goto stall;
1176
1177 if (tmp) {
1178 if ((w_index & USB_DIR_IN)) {
1179 if (!ep->is_in)
1180 goto stall;
1181 } else if (ep->is_in)
1182 goto stall;
1183 }
1184 PACKET("get %s status\n", ep->ep.name);
1185 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1186 tmp = (1 << USB_ENDPOINT_HALT);
1187 else
1188 tmp = 0;
1189 __raw_writeb(tmp, dreg);
1190 __raw_writeb(0, dreg);
1191 goto write_in;
1192 /* then STATUS starts later, automatically */
1193 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1194 | USB_REQ_SET_FEATURE:
1195 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1196 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001197 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001198 goto stall;
1199 if (!ep->desc || ep->is_iso)
1200 goto stall;
1201 if ((w_index & USB_DIR_IN)) {
1202 if (!ep->is_in)
1203 goto stall;
1204 } else if (ep->is_in)
1205 goto stall;
1206
1207 tmp = __raw_readl(ep->creg);
1208 tmp &= ~SET_FX;
1209 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1210 __raw_writel(tmp, ep->creg);
1211 goto succeed;
1212 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1213 | USB_REQ_CLEAR_FEATURE:
1214 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1215 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001216 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001217 goto stall;
1218 if (tmp == 0)
1219 goto succeed;
1220 if (!ep->desc || ep->is_iso)
1221 goto stall;
1222 if ((w_index & USB_DIR_IN)) {
1223 if (!ep->is_in)
1224 goto stall;
1225 } else if (ep->is_in)
1226 goto stall;
1227
Andrew Victorffd33262006-12-07 22:44:33 -08001228 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1229 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001230 tmp = __raw_readl(ep->creg);
1231 tmp |= CLR_FX;
1232 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1233 __raw_writel(tmp, ep->creg);
1234 if (!list_empty(&ep->queue))
1235 handle_ep(ep);
1236 goto succeed;
1237 }
1238
1239#undef w_value
1240#undef w_index
1241#undef w_length
1242
1243 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001244 if (udc->driver) {
1245 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001246 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001247 spin_lock(&udc->lock);
1248 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001249 else
1250 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001251 if (status < 0) {
1252stall:
1253 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1254 pkt.r.bRequestType, pkt.r.bRequest, status);
1255 csr |= AT91_UDP_FORCESTALL;
1256 __raw_writel(csr, creg);
1257 udc->req_pending = 0;
1258 }
1259 return;
1260
1261succeed:
1262 /* immediate successful (IN) STATUS after zero length DATA */
1263 PACKET("ep0 in/status\n");
1264write_in:
1265 csr |= AT91_UDP_TXPKTRDY;
1266 __raw_writel(csr, creg);
1267 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001268}
1269
1270static void handle_ep0(struct at91_udc *udc)
1271{
1272 struct at91_ep *ep0 = &udc->ep[0];
1273 u32 __iomem *creg = ep0->creg;
1274 u32 csr = __raw_readl(creg);
1275 struct at91_request *req;
1276
1277 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1278 nuke(ep0, -EPROTO);
1279 udc->req_pending = 0;
1280 csr |= CLR_FX;
1281 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1282 __raw_writel(csr, creg);
1283 VDBG("ep0 stalled\n");
1284 csr = __raw_readl(creg);
1285 }
1286 if (csr & AT91_UDP_RXSETUP) {
1287 nuke(ep0, 0);
1288 udc->req_pending = 0;
1289 handle_setup(udc, ep0, csr);
1290 return;
1291 }
1292
1293 if (list_empty(&ep0->queue))
1294 req = NULL;
1295 else
1296 req = list_entry(ep0->queue.next, struct at91_request, queue);
1297
1298 /* host ACKed an IN packet that we sent */
1299 if (csr & AT91_UDP_TXCOMP) {
1300 csr |= CLR_FX;
1301 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1302
1303 /* write more IN DATA? */
1304 if (req && ep0->is_in) {
1305 if (handle_ep(ep0))
1306 udc->req_pending = 0;
1307
1308 /*
1309 * Ack after:
1310 * - last IN DATA packet (including GET_STATUS)
1311 * - IN/STATUS for OUT DATA
1312 * - IN/STATUS for any zero-length DATA stage
1313 * except for the IN DATA case, the host should send
1314 * an OUT status later, which we'll ack.
1315 */
1316 } else {
1317 udc->req_pending = 0;
1318 __raw_writel(csr, creg);
1319
1320 /*
1321 * SET_ADDRESS takes effect only after the STATUS
1322 * (to the original address) gets acked.
1323 */
1324 if (udc->wait_for_addr_ack) {
1325 u32 tmp;
1326
Andrew Victorffd33262006-12-07 22:44:33 -08001327 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001328 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001329 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001330 tmp &= ~AT91_UDP_FADDEN;
1331 if (udc->addr)
1332 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001333 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001334
1335 udc->wait_for_addr_ack = 0;
1336 VDBG("address %d\n", udc->addr);
1337 }
1338 }
1339 }
1340
1341 /* OUT packet arrived ... */
1342 else if (csr & AT91_UDP_RX_DATA_BK0) {
1343 csr |= CLR_FX;
1344 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1345
1346 /* OUT DATA stage */
1347 if (!ep0->is_in) {
1348 if (req) {
1349 if (handle_ep(ep0)) {
1350 /* send IN/STATUS */
1351 PACKET("ep0 in/status\n");
1352 csr = __raw_readl(creg);
1353 csr &= ~SET_FX;
1354 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1355 __raw_writel(csr, creg);
1356 udc->req_pending = 0;
1357 }
1358 } else if (udc->req_pending) {
1359 /*
1360 * AT91 hardware has a hard time with this
1361 * "deferred response" mode for control-OUT
1362 * transfers. (For control-IN it's fine.)
1363 *
1364 * The normal solution leaves OUT data in the
1365 * fifo until the gadget driver is ready.
1366 * We couldn't do that here without disabling
1367 * the IRQ that tells about SETUP packets,
1368 * e.g. when the host gets impatient...
1369 *
1370 * Working around it by copying into a buffer
1371 * would almost be a non-deferred response,
1372 * except that it wouldn't permit reliable
1373 * stalling of the request. Instead, demand
1374 * that gadget drivers not use this mode.
1375 */
1376 DBG("no control-OUT deferred responses!\n");
1377 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1378 udc->req_pending = 0;
1379 }
1380
1381 /* STATUS stage for control-IN; ack. */
1382 } else {
1383 PACKET("ep0 out/status ACK\n");
1384 __raw_writel(csr, creg);
1385
1386 /* "early" status stage */
1387 if (req)
1388 done(ep0, req, 0);
1389 }
1390 }
1391}
1392
David Howells7d12e782006-10-05 14:55:46 +01001393static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001394{
1395 struct at91_udc *udc = _udc;
1396 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001397 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001398 unsigned long flags;
1399
1400 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001401
1402 if (!udc->clocked) {
1403 clk_on(udc);
1404 disable_clock = 1;
1405 }
David Brownellbae4bd82006-01-22 10:32:37 -08001406
1407 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001408 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001409
Andrew Victorffd33262006-12-07 22:44:33 -08001410 status = at91_udp_read(udc, AT91_UDP_ISR)
1411 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001412 if (!status)
1413 break;
1414
1415 /* USB reset irq: not maskable */
1416 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001417 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1418 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001419 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001420 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1421 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001422 VDBG("end bus reset\n");
1423 udc->addr = 0;
1424 stop_activity(udc);
1425
1426 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001427 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001428 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001429 udc->gadget.speed = USB_SPEED_FULL;
1430 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001431 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001432
1433 /*
1434 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001435 * USB host is present. That saves power, but for
1436 * boards that don't support VBUS detection, both
1437 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001438 */
1439
1440 /* host initiated suspend (3+ms bus idle) */
1441 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001442 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1443 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1444 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001445 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001446 if (udc->suspended)
1447 continue;
1448 udc->suspended = 1;
1449
1450 /*
1451 * NOTE: when suspending a VBUS-powered device, the
1452 * gadget driver should switch into slow clock mode
1453 * and then into standby to avoid drawing more than
1454 * 500uA power (2500uA for some high-power configs).
1455 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001456 if (udc->driver && udc->driver->suspend) {
1457 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001458 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001459 spin_lock(&udc->lock);
1460 }
David Brownellbae4bd82006-01-22 10:32:37 -08001461
1462 /* host initiated resume */
1463 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001464 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1465 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1466 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001467 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001468 if (!udc->suspended)
1469 continue;
1470 udc->suspended = 0;
1471
1472 /*
1473 * NOTE: for a VBUS-powered device, the gadget driver
1474 * would normally want to switch out of slow clock
1475 * mode into normal mode.
1476 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001477 if (udc->driver && udc->driver->resume) {
1478 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001479 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001480 spin_lock(&udc->lock);
1481 }
David Brownellbae4bd82006-01-22 10:32:37 -08001482
1483 /* endpoint IRQs are cleared by handling them */
1484 } else {
1485 int i;
1486 unsigned mask = 1;
1487 struct at91_ep *ep = &udc->ep[1];
1488
1489 if (status & mask)
1490 handle_ep0(udc);
1491 for (i = 1; i < NUM_ENDPOINTS; i++) {
1492 mask <<= 1;
1493 if (status & mask)
1494 handle_ep(ep);
1495 ep++;
1496 }
1497 }
1498 }
1499
Harro Haanc6c35232010-03-01 17:38:37 +01001500 if (disable_clock)
1501 clk_off(udc);
1502
Harro Haan4f4c5e32010-03-01 18:01:56 +01001503 spin_unlock_irqrestore(&udc->lock, flags);
1504
David Brownellbae4bd82006-01-22 10:32:37 -08001505 return IRQ_HANDLED;
1506}
1507
1508/*-------------------------------------------------------------------------*/
1509
David Brownell8b2e7662006-07-05 02:38:56 -07001510static void nop_release(struct device *dev)
1511{
1512 /* nothing to free */
1513}
1514
David Brownellbae4bd82006-01-22 10:32:37 -08001515static struct at91_udc controller = {
1516 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001517 .ops = &at91_udc_ops,
1518 .ep0 = &controller.ep[0].ep,
1519 .name = driver_name,
1520 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001521 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001522 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001523 }
1524 },
1525 .ep[0] = {
1526 .ep = {
1527 .name = ep0name,
1528 .ops = &at91_ep_ops,
1529 },
1530 .udc = &controller,
1531 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001532 .int_mask = 1 << 0,
1533 },
1534 .ep[1] = {
1535 .ep = {
1536 .name = "ep1",
1537 .ops = &at91_ep_ops,
1538 },
1539 .udc = &controller,
1540 .is_pingpong = 1,
1541 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001542 .int_mask = 1 << 1,
1543 },
1544 .ep[2] = {
1545 .ep = {
1546 .name = "ep2",
1547 .ops = &at91_ep_ops,
1548 },
1549 .udc = &controller,
1550 .is_pingpong = 1,
1551 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001552 .int_mask = 1 << 2,
1553 },
1554 .ep[3] = {
1555 .ep = {
1556 /* could actually do bulk too */
1557 .name = "ep3-int",
1558 .ops = &at91_ep_ops,
1559 },
1560 .udc = &controller,
1561 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001562 .int_mask = 1 << 3,
1563 },
1564 .ep[4] = {
1565 .ep = {
1566 .name = "ep4",
1567 .ops = &at91_ep_ops,
1568 },
1569 .udc = &controller,
1570 .is_pingpong = 1,
1571 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001572 .int_mask = 1 << 4,
1573 },
1574 .ep[5] = {
1575 .ep = {
1576 .name = "ep5",
1577 .ops = &at91_ep_ops,
1578 },
1579 .udc = &controller,
1580 .is_pingpong = 1,
1581 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001582 .int_mask = 1 << 5,
1583 },
David Brownell8b2e7662006-07-05 02:38:56 -07001584 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001585};
1586
Ryan Mallon40372422010-07-13 05:09:16 +01001587static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1588{
1589 value ^= udc->board.vbus_active_low;
1590 if (value != udc->vbus)
1591 at91_vbus_session(&udc->gadget, value);
1592}
1593
David Howells7d12e782006-10-05 14:55:46 +01001594static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001595{
1596 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001597
1598 /* vbus needs at least brief debouncing */
1599 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001600 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001601
1602 return IRQ_HANDLED;
1603}
1604
Ryan Mallon40372422010-07-13 05:09:16 +01001605static void at91_vbus_timer_work(struct work_struct *work)
1606{
1607 struct at91_udc *udc = container_of(work, struct at91_udc,
1608 vbus_timer_work);
1609
1610 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1611
1612 if (!timer_pending(&udc->vbus_timer))
1613 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1614}
1615
1616static void at91_vbus_timer(unsigned long data)
1617{
1618 struct at91_udc *udc = (struct at91_udc *)data;
1619
1620 /*
1621 * If we are polling vbus it is likely that the gpio is on an
1622 * bus such as i2c or spi which may sleep, so schedule some work
1623 * to read the vbus gpio
1624 */
1625 if (!work_pending(&udc->vbus_timer_work))
1626 schedule_work(&udc->vbus_timer_work);
1627}
1628
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001629static int at91_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001630 int (*bind)(struct usb_gadget *))
David Brownellbae4bd82006-01-22 10:32:37 -08001631{
1632 struct at91_udc *udc = &controller;
1633 int retval;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001634 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001635
1636 if (!driver
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001637 || driver->max_speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001638 || !bind
David Brownellbae4bd82006-01-22 10:32:37 -08001639 || !driver->setup) {
1640 DBG("bad parameter.\n");
1641 return -EINVAL;
1642 }
1643
1644 if (udc->driver) {
1645 DBG("UDC already has a gadget driver\n");
1646 return -EBUSY;
1647 }
1648
1649 udc->driver = driver;
1650 udc->gadget.dev.driver = &driver->driver;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001651 dev_set_drvdata(&udc->gadget.dev, &driver->driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001652 udc->enabled = 1;
1653 udc->selfpowered = 1;
1654
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001655 retval = bind(&udc->gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001656 if (retval) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001657 DBG("bind() returned %d\n", retval);
David Brownellbae4bd82006-01-22 10:32:37 -08001658 udc->driver = NULL;
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001659 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001660 dev_set_drvdata(&udc->gadget.dev, NULL);
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001661 udc->enabled = 0;
1662 udc->selfpowered = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001663 return retval;
1664 }
1665
Harro Haan4f4c5e32010-03-01 18:01:56 +01001666 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001667 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001668 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001669
1670 DBG("bound to %s\n", driver->driver.name);
1671 return 0;
1672}
David Brownellbae4bd82006-01-22 10:32:37 -08001673
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001674static int at91_stop(struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001675{
1676 struct at91_udc *udc = &controller;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001677 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001678
David Brownell6bea4762006-12-05 03:15:33 -08001679 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001680 return -EINVAL;
1681
Harro Haan4f4c5e32010-03-01 18:01:56 +01001682 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001683 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001684 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001685 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001686 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001687
1688 driver->unbind(&udc->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001689 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001690 dev_set_drvdata(&udc->gadget.dev, NULL);
David Brownellbae4bd82006-01-22 10:32:37 -08001691 udc->driver = NULL;
1692
1693 DBG("unbound from %s\n", driver->driver.name);
1694 return 0;
1695}
David Brownellbae4bd82006-01-22 10:32:37 -08001696
1697/*-------------------------------------------------------------------------*/
1698
1699static void at91udc_shutdown(struct platform_device *dev)
1700{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001701 struct at91_udc *udc = platform_get_drvdata(dev);
1702 unsigned long flags;
1703
David Brownellbae4bd82006-01-22 10:32:37 -08001704 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001705 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001706 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001707 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001708}
1709
David Brownell398acce2007-02-15 18:47:17 -08001710static int __init at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001711{
1712 struct device *dev = &pdev->dev;
1713 struct at91_udc *udc;
1714 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001715 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001716
1717 if (!dev->platform_data) {
1718 /* small (so we copy it) but critical! */
1719 DBG("missing platform_data\n");
1720 return -ENODEV;
1721 }
1722
David Brownell8b2e7662006-07-05 02:38:56 -07001723 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001724 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001725 return -ENODEV;
1726 }
1727 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1728 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001729 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001730 return -ENODEV;
1731 }
1732
Andrew Victorffd33262006-12-07 22:44:33 -08001733 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1734 if (!res)
1735 return -ENXIO;
1736
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001737 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001738 DBG("someone's using UDC memory\n");
1739 return -EBUSY;
1740 }
1741
1742 /* init software state */
1743 udc = &controller;
1744 udc->gadget.dev.parent = dev;
1745 udc->board = *(struct at91_udc_data *) dev->platform_data;
1746 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001747 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001748 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001749
David Brownellf3db6e82008-01-05 13:21:43 -08001750 /* rm9200 needs manual D+ pullup; off by default */
1751 if (cpu_is_at91rm9200()) {
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001752 if (gpio_is_valid(udc->board.pullup_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001753 DBG("no D+ pullup?\n");
1754 retval = -ENODEV;
1755 goto fail0;
1756 }
1757 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1758 if (retval) {
1759 DBG("D+ pullup is busy\n");
1760 goto fail0;
1761 }
1762 gpio_direction_output(udc->board.pullup_pin,
1763 udc->board.pullup_active_low);
1764 }
1765
David Brownellbb242802008-05-27 19:24:20 -07001766 /* newer chips have more FIFO memory than rm9200 */
Jean-Christophe PLAGNIOL-VILLARDbf1f0a02011-05-13 17:03:02 +02001767 if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
David Brownellbb242802008-05-27 19:24:20 -07001768 udc->ep[0].maxpacket = 64;
1769 udc->ep[3].maxpacket = 64;
1770 udc->ep[4].maxpacket = 512;
1771 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001772 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
David Brownellbb242802008-05-27 19:24:20 -07001773 udc->ep[3].maxpacket = 64;
1774 } else if (cpu_is_at91sam9263()) {
1775 udc->ep[0].maxpacket = 64;
1776 udc->ep[3].maxpacket = 64;
1777 }
1778
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001779 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001780 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001781 retval = -ENOMEM;
1782 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001783 }
1784
1785 udc_reinit(udc);
1786
David Brownellbae4bd82006-01-22 10:32:37 -08001787 /* get interface and function clocks */
1788 udc->iclk = clk_get(dev, "udc_clk");
1789 udc->fclk = clk_get(dev, "udpck");
1790 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1791 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001792 retval = -ENODEV;
David Brownellf3db6e82008-01-05 13:21:43 -08001793 /* NOTE: we "know" here that refcounts on these are NOPs */
1794 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001795 }
1796
1797 retval = device_register(&udc->gadget.dev);
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001798 if (retval < 0) {
1799 put_device(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001800 goto fail0b;
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001801 }
David Brownellbae4bd82006-01-22 10:32:37 -08001802
David Brownell8b2e7662006-07-05 02:38:56 -07001803 /* don't do anything until we have both gadget driver and VBUS */
1804 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001805 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1806 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001807 /* Clear all pending interrupts - UDP may be used by bootloader. */
1808 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001809 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001810
1811 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001812 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001813 retval = request_irq(udc->udp_irq, at91_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001814 0, driver_name, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001815 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001816 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001817 goto fail1;
1818 }
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001819 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001820 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1821 if (retval < 0) {
1822 DBG("request vbus pin failed\n");
1823 goto fail2;
1824 }
1825 gpio_direction_input(udc->board.vbus_pin);
1826
Andrew Victor29ba4b52006-12-07 22:44:38 -08001827 /*
1828 * Get the initial state of VBUS - we cannot expect
1829 * a pending interrupt.
1830 */
Ryan Mallon40372422010-07-13 05:09:16 +01001831 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1832 udc->board.vbus_active_low;
1833
1834 if (udc->board.vbus_polled) {
1835 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1836 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1837 (unsigned long)udc);
1838 mod_timer(&udc->vbus_timer,
1839 jiffies + VBUS_POLL_TIMEOUT);
1840 } else {
1841 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001842 0, driver_name, udc)) {
Ryan Mallon40372422010-07-13 05:09:16 +01001843 DBG("request vbus irq %d failed\n",
1844 udc->board.vbus_pin);
1845 retval = -EBUSY;
1846 goto fail3;
1847 }
David Brownellbae4bd82006-01-22 10:32:37 -08001848 }
1849 } else {
1850 DBG("no VBUS detection, assuming always-on\n");
1851 udc->vbus = 1;
1852 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001853 retval = usb_add_gadget_udc(dev, &udc->gadget);
1854 if (retval)
1855 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001856 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001857 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001858 create_debug_file(udc);
1859
1860 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1861 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001862fail4:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001863 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001864 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001865fail3:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001866 if (gpio_is_valid(udc->board.vbus_pin))
David Brownellf3db6e82008-01-05 13:21:43 -08001867 gpio_free(udc->board.vbus_pin);
1868fail2:
1869 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001870fail1:
1871 device_unregister(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001872fail0b:
1873 iounmap(udc->udp_baseaddr);
1874fail0a:
1875 if (cpu_is_at91rm9200())
1876 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001877fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001878 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001879 DBG("%s probe failed, %d\n", driver_name, retval);
1880 return retval;
1881}
1882
David Brownell398acce2007-02-15 18:47:17 -08001883static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001884{
David Brownell8b2e7662006-07-05 02:38:56 -07001885 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001886 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001887 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001888
1889 DBG("remove\n");
1890
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001891 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001892 if (udc->driver)
1893 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001894
Harro Haan4f4c5e32010-03-01 18:01:56 +01001895 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001896 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001897 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001898
David Brownell8b2e7662006-07-05 02:38:56 -07001899 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001900 remove_debug_file(udc);
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001901 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001902 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001903 gpio_free(udc->board.vbus_pin);
1904 }
David Brownell8b2e7662006-07-05 02:38:56 -07001905 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001906 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001907
1908 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001909
1910 if (cpu_is_at91rm9200())
1911 gpio_free(udc->board.pullup_pin);
1912
Andrew Victorffd33262006-12-07 22:44:33 -08001913 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001914 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001915
1916 clk_put(udc->iclk);
1917 clk_put(udc->fclk);
1918
1919 return 0;
1920}
1921
1922#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001923static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001924{
David Brownell8b2e7662006-07-05 02:38:56 -07001925 struct at91_udc *udc = platform_get_drvdata(pdev);
1926 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001927 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001928
David Brownell8b2e7662006-07-05 02:38:56 -07001929 /* Unless we can act normally to the host (letting it wake us up
1930 * whenever it has work for us) force disconnect. Wakeup requires
1931 * PLLB for USB events (signaling for reset, wakeup, or incoming
1932 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001933 */
David Brownell8b2e7662006-07-05 02:38:56 -07001934 if ((!udc->suspended && udc->addr)
1935 || !wake
1936 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001937 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001938 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001939 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001940 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001941 } else
1942 enable_irq_wake(udc->udp_irq);
1943
David Brownell66e56ce2007-01-16 12:46:39 -08001944 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001945 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001946 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001947 return 0;
1948}
1949
David Brownell8b2e7662006-07-05 02:38:56 -07001950static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001951{
David Brownell8b2e7662006-07-05 02:38:56 -07001952 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001953 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001954
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001955 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001956 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001957 disable_irq_wake(udc->board.vbus_pin);
1958
David Brownellbae4bd82006-01-22 10:32:37 -08001959 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001960 if (udc->active_suspend)
1961 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001962 else {
1963 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001964 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001965 spin_unlock_irqrestore(&udc->lock, flags);
1966 }
David Brownellbae4bd82006-01-22 10:32:37 -08001967 return 0;
1968}
1969#else
1970#define at91udc_suspend NULL
1971#define at91udc_resume NULL
1972#endif
1973
David Brownelldee497d2007-02-24 13:54:56 -08001974static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001975 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001976 .shutdown = at91udc_shutdown,
1977 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001978 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001979 .driver = {
1980 .name = (char *) driver_name,
1981 .owner = THIS_MODULE,
1982 },
1983};
1984
David Brownell398acce2007-02-15 18:47:17 -08001985static int __init udc_init_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001986{
David Brownelldee497d2007-02-24 13:54:56 -08001987 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001988}
1989module_init(udc_init_module);
1990
David Brownell398acce2007-02-15 18:47:17 -08001991static void __exit udc_exit_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001992{
David Brownelldee497d2007-02-24 13:54:56 -08001993 platform_driver_unregister(&at91_udc_driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001994}
1995module_exit(udc_exit_module);
1996
David Brownell8b2e7662006-07-05 02:38:56 -07001997MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001998MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1999MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07002000MODULE_ALIAS("platform:at91_udc");