blob: d03ab95fcc8daef539bd1b4cc254638fa7b27689 [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>
David Brownellbae4bd82006-01-22 10:32:37 -080032
33#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080035#include <asm/io.h>
36#include <asm/irq.h>
David Brownellf3db6e82008-01-05 13:21:43 -080037#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080038
Russell Kinga09e64f2008-08-05 16:14:15 +010039#include <mach/board.h>
40#include <mach/cpu.h>
41#include <mach/at91sam9261_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080042
43#include "at91_udc.h"
44
45
46/*
47 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070048 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
49 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080050 *
51 * This driver expects the board has been wired with two GPIOs suppporting
52 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070053 * testing hasn't covered such cases.)
54 *
55 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080056 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070057 *
David Brownellbae4bd82006-01-22 10:32:37 -080058 * The VBUS sensing helps during enumeration, and allows both USB clocks
59 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070060 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
61 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080062 */
63
David Brownell8b2e7662006-07-05 02:38:56 -070064#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080065
66static const char driver_name [] = "at91_udc";
67static const char ep0name[] = "ep0";
68
Ryan Mallon40372422010-07-13 05:09:16 +010069#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080070
Harro Haan4f4c5e32010-03-01 18:01:56 +010071#define at91_udp_read(udc, reg) \
72 __raw_readl((udc)->udp_baseaddr + (reg))
73#define at91_udp_write(udc, reg, val) \
74 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080075
76/*-------------------------------------------------------------------------*/
77
78#ifdef CONFIG_USB_GADGET_DEBUG_FILES
79
80#include <linux/seq_file.h>
81
82static const char debug_filename[] = "driver/udc";
83
84#define FOURBITS "%s%s%s%s"
85#define EIGHTBITS FOURBITS FOURBITS
86
87static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
88{
89 static char *types[] = {
90 "control", "out-iso", "out-bulk", "out-int",
91 "BOGUS", "in-iso", "in-bulk", "in-int"};
92
93 u32 csr;
94 struct at91_request *req;
95 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +010096 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -080097
Harro Haan4f4c5e32010-03-01 18:01:56 +010098 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -080099
100 csr = __raw_readl(ep->creg);
101
102 /* NOTE: not collecting per-endpoint irq statistics... */
103
104 seq_printf(s, "\n");
105 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
106 ep->ep.name, ep->ep.maxpacket,
107 ep->is_in ? "in" : "out",
108 ep->is_iso ? " iso" : "",
109 ep->is_pingpong
110 ? (ep->fifo_bank ? "pong" : "ping")
111 : "",
112 ep->stopped ? " stopped" : "");
113 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
114 csr,
115 (csr & 0x07ff0000) >> 16,
116 (csr & (1 << 15)) ? "enabled" : "disabled",
117 (csr & (1 << 11)) ? "DATA1" : "DATA0",
118 types[(csr & 0x700) >> 8],
119
120 /* iff type is control then print current direction */
121 (!(csr & 0x700))
122 ? ((csr & (1 << 7)) ? " IN" : " OUT")
123 : "",
124 (csr & (1 << 6)) ? " rxdatabk1" : "",
125 (csr & (1 << 5)) ? " forcestall" : "",
126 (csr & (1 << 4)) ? " txpktrdy" : "",
127
128 (csr & (1 << 3)) ? " stallsent" : "",
129 (csr & (1 << 2)) ? " rxsetup" : "",
130 (csr & (1 << 1)) ? " rxdatabk0" : "",
131 (csr & (1 << 0)) ? " txcomp" : "");
132 if (list_empty (&ep->queue))
133 seq_printf(s, "\t(queue empty)\n");
134
135 else list_for_each_entry (req, &ep->queue, queue) {
136 unsigned length = req->req.actual;
137
138 seq_printf(s, "\treq %p len %d/%d buf %p\n",
139 &req->req, length,
140 req->req.length, req->req.buf);
141 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100142 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800143}
144
145static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
146{
147 int i;
148
149 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
150 (mask & (1 << 13)) ? " wakeup" : "",
151 (mask & (1 << 12)) ? " endbusres" : "",
152
153 (mask & (1 << 11)) ? " sofint" : "",
154 (mask & (1 << 10)) ? " extrsm" : "",
155 (mask & (1 << 9)) ? " rxrsm" : "",
156 (mask & (1 << 8)) ? " rxsusp" : "");
157 for (i = 0; i < 8; i++) {
158 if (mask & (1 << i))
159 seq_printf(s, " ep%d", i);
160 }
161 seq_printf(s, "\n");
162}
163
164static int proc_udc_show(struct seq_file *s, void *unused)
165{
166 struct at91_udc *udc = s->private;
167 struct at91_ep *ep;
168 u32 tmp;
169
170 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
171
172 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
173 udc->vbus ? "present" : "off",
174 udc->enabled
175 ? (udc->vbus ? "active" : "enabled")
176 : "disabled",
177 udc->selfpowered ? "self" : "VBUS",
178 udc->suspended ? ", suspended" : "",
179 udc->driver ? udc->driver->driver.name : "(none)");
180
181 /* don't access registers when interface isn't clocked */
182 if (!udc->clocked) {
183 seq_printf(s, "(not clocked)\n");
184 return 0;
185 }
186
Andrew Victorffd33262006-12-07 22:44:33 -0800187 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800188 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
189 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
190 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
191 (tmp & AT91_UDP_NUM));
192
Andrew Victorffd33262006-12-07 22:44:33 -0800193 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800194 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
195 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
196 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
197 (tmp & AT91_UDP_ESR) ? " esr" : "",
198 (tmp & AT91_UDP_CONFG) ? " confg" : "",
199 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
200
Andrew Victorffd33262006-12-07 22:44:33 -0800201 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800202 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
203 (tmp & AT91_UDP_FEN) ? " fen" : "",
204 (tmp & AT91_UDP_FADD));
205
Andrew Victorffd33262006-12-07 22:44:33 -0800206 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
207 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800208
209 if (udc->enabled && udc->vbus) {
210 proc_ep_show(s, &udc->ep[0]);
211 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
212 if (ep->desc)
213 proc_ep_show(s, ep);
214 }
215 }
216 return 0;
217}
218
219static int proc_udc_open(struct inode *inode, struct file *file)
220{
221 return single_open(file, proc_udc_show, PDE(inode)->data);
222}
223
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300224static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700225 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800226 .open = proc_udc_open,
227 .read = seq_read,
228 .llseek = seq_lseek,
229 .release = single_release,
230};
231
232static void create_debug_file(struct at91_udc *udc)
233{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700234 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800235}
236
237static void remove_debug_file(struct at91_udc *udc)
238{
239 if (udc->pde)
240 remove_proc_entry(debug_filename, NULL);
241}
242
243#else
244
245static inline void create_debug_file(struct at91_udc *udc) {}
246static inline void remove_debug_file(struct at91_udc *udc) {}
247
248#endif
249
250
251/*-------------------------------------------------------------------------*/
252
253static void done(struct at91_ep *ep, struct at91_request *req, int status)
254{
255 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800256 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800257
258 list_del_init(&req->queue);
259 if (req->req.status == -EINPROGRESS)
260 req->req.status = status;
261 else
262 status = req->req.status;
263 if (status && status != -ESHUTDOWN)
264 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
265
266 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100267 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800268 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100269 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800270 ep->stopped = stopped;
271
272 /* ep0 is always ready; other endpoints need a non-empty queue */
273 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800274 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800275}
276
277/*-------------------------------------------------------------------------*/
278
279/* bits indicating OUT fifo has data ready */
280#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
281
282/*
283 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
284 * back most of the value you just read (because of side effects, including
285 * bits that may change after reading and before writing).
286 *
287 * Except when changing a specific bit, always write values which:
288 * - clear SET_FX bits (setting them could change something)
289 * - set CLR_FX bits (clearing them could change something)
290 *
291 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
292 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700293 *
294 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
295 * implying a need to wait for one write to complete (test relevant bits)
296 * before starting the next write. This shouldn't be an issue given how
297 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800298 */
299#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700300#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
301 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800302
303/* pull OUT packet data from the endpoint's fifo */
304static int read_fifo (struct at91_ep *ep, struct at91_request *req)
305{
306 u32 __iomem *creg = ep->creg;
307 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
308 u32 csr;
309 u8 *buf;
310 unsigned int count, bufferspace, is_done;
311
312 buf = req->req.buf + req->req.actual;
313 bufferspace = req->req.length - req->req.actual;
314
315 /*
316 * there might be nothing to read if ep_queue() calls us,
317 * or if we already emptied both pingpong buffers
318 */
319rescan:
320 csr = __raw_readl(creg);
321 if ((csr & RX_DATA_READY) == 0)
322 return 0;
323
324 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
325 if (count > ep->ep.maxpacket)
326 count = ep->ep.maxpacket;
327 if (count > bufferspace) {
328 DBG("%s buffer overflow\n", ep->ep.name);
329 req->req.status = -EOVERFLOW;
330 count = bufferspace;
331 }
332 __raw_readsb(dreg, buf, count);
333
334 /* release and swap pingpong mem bank */
335 csr |= CLR_FX;
336 if (ep->is_pingpong) {
337 if (ep->fifo_bank == 0) {
338 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
339 ep->fifo_bank = 1;
340 } else {
341 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
342 ep->fifo_bank = 0;
343 }
344 } else
345 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
346 __raw_writel(csr, creg);
347
348 req->req.actual += count;
349 is_done = (count < ep->ep.maxpacket);
350 if (count == bufferspace)
351 is_done = 1;
352
353 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
354 is_done ? " (done)" : "");
355
356 /*
357 * avoid extra trips through IRQ logic for packets already in
358 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
359 */
360 if (is_done)
361 done(ep, req, 0);
362 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100363 /*
364 * One dummy read to delay the code because of a HW glitch:
365 * CSR returns bad RXCOUNT when read too soon after updating
366 * RX_DATA_BK flags.
367 */
368 csr = __raw_readl(creg);
369
David Brownellbae4bd82006-01-22 10:32:37 -0800370 bufferspace -= count;
371 buf += count;
372 goto rescan;
373 }
374
375 return is_done;
376}
377
378/* load fifo for an IN packet */
379static int write_fifo(struct at91_ep *ep, struct at91_request *req)
380{
381 u32 __iomem *creg = ep->creg;
382 u32 csr = __raw_readl(creg);
383 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
384 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700385 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800386
387 /*
388 * TODO: allow for writing two packets to the fifo ... that'll
389 * reduce the amount of IN-NAKing, but probably won't affect
390 * throughput much. (Unlike preventing OUT-NAKing!)
391 */
392
393 /*
394 * If ep_queue() calls us, the queue is empty and possibly in
395 * odd states like TXCOMP not yet cleared (we do it, saving at
396 * least one IRQ) or the fifo not yet being free. Those aren't
397 * issues normally (IRQ handler fast path).
398 */
399 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
400 if (csr & AT91_UDP_TXCOMP) {
401 csr |= CLR_FX;
402 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
403 __raw_writel(csr, creg);
404 csr = __raw_readl(creg);
405 }
406 if (csr & AT91_UDP_TXPKTRDY)
407 return 0;
408 }
409
David Brownell3cf27232008-04-06 23:32:55 -0700410 buf = req->req.buf + req->req.actual;
411 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800412 total = req->req.length - req->req.actual;
413 if (ep->ep.maxpacket < total) {
414 count = ep->ep.maxpacket;
415 is_last = 0;
416 } else {
417 count = total;
418 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
419 }
420
421 /*
422 * Write the packet, maybe it's a ZLP.
423 *
424 * NOTE: incrementing req->actual before we receive the ACK means
425 * gadget driver IN bytecounts can be wrong in fault cases. That's
426 * fixable with PIO drivers like this one (save "count" here, and
427 * do the increment later on TX irq), but not for most DMA hardware.
428 *
429 * So all gadget drivers must accept that potential error. Some
430 * hardware supports precise fifo status reporting, letting them
431 * recover when the actual bytecount matters (e.g. for USB Test
432 * and Measurement Class devices).
433 */
David Brownell3cf27232008-04-06 23:32:55 -0700434 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800435 csr &= ~SET_FX;
436 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
437 __raw_writel(csr, creg);
438 req->req.actual += count;
439
440 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
441 is_last ? " (done)" : "");
442 if (is_last)
443 done(ep, req, 0);
444 return is_last;
445}
446
447static void nuke(struct at91_ep *ep, int status)
448{
449 struct at91_request *req;
450
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200451 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800452 ep->stopped = 1;
453 if (list_empty(&ep->queue))
454 return;
455
Harvey Harrison441b62c2008-03-03 16:08:34 -0800456 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800457 while (!list_empty(&ep->queue)) {
458 req = list_entry(ep->queue.next, struct at91_request, queue);
459 done(ep, req, status);
460 }
461}
462
463/*-------------------------------------------------------------------------*/
464
David Brownell8b2e7662006-07-05 02:38:56 -0700465static int at91_ep_enable(struct usb_ep *_ep,
466 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800467{
468 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100469 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800470 u16 maxpacket;
471 u32 tmp;
472 unsigned long flags;
473
474 if (!_ep || !ep
475 || !desc || ep->desc
476 || _ep->name == ep0name
477 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700478 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800479 || maxpacket > ep->maxpacket) {
480 DBG("bad ep or descriptor\n");
481 return -EINVAL;
482 }
483
Harro Haan4f4c5e32010-03-01 18:01:56 +0100484 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800485 DBG("bogus device state\n");
486 return -ESHUTDOWN;
487 }
488
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200489 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800490 switch (tmp) {
491 case USB_ENDPOINT_XFER_CONTROL:
492 DBG("only one control endpoint\n");
493 return -EINVAL;
494 case USB_ENDPOINT_XFER_INT:
495 if (maxpacket > 64)
496 goto bogus_max;
497 break;
498 case USB_ENDPOINT_XFER_BULK:
499 switch (maxpacket) {
500 case 8:
501 case 16:
502 case 32:
503 case 64:
504 goto ok;
505 }
506bogus_max:
507 DBG("bogus maxpacket %d\n", maxpacket);
508 return -EINVAL;
509 case USB_ENDPOINT_XFER_ISOC:
510 if (!ep->is_pingpong) {
511 DBG("iso requires double buffering\n");
512 return -EINVAL;
513 }
514 break;
515 }
516
517ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100518 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800519
520 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200521 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800522 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
523 ep->stopped = 0;
524 if (ep->is_in)
525 tmp |= 0x04;
526 tmp <<= 8;
527 tmp |= AT91_UDP_EPEDS;
528 __raw_writel(tmp, ep->creg);
529
530 ep->desc = desc;
531 ep->ep.maxpacket = maxpacket;
532
533 /*
534 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
535 * since endpoint resets don't reset hw pingpong state.
536 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100537 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
538 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800539
Harro Haan4f4c5e32010-03-01 18:01:56 +0100540 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800541 return 0;
542}
543
544static int at91_ep_disable (struct usb_ep * _ep)
545{
546 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800547 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800548 unsigned long flags;
549
550 if (ep == &ep->udc->ep[0])
551 return -EINVAL;
552
Harro Haan4f4c5e32010-03-01 18:01:56 +0100553 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800554
555 nuke(ep, -ESHUTDOWN);
556
557 /* restore the endpoint's pristine config */
558 ep->desc = NULL;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200559 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800560 ep->ep.maxpacket = ep->maxpacket;
561
562 /* reset fifos and endpoint */
563 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800564 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
565 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800566 __raw_writel(0, ep->creg);
567 }
568
Harro Haan4f4c5e32010-03-01 18:01:56 +0100569 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800570 return 0;
571}
572
573/*
574 * this is a PIO-only driver, so there's nothing
575 * interesting for request or buffer allocation.
576 */
577
David Brownell8b2e7662006-07-05 02:38:56 -0700578static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800579at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800580{
581 struct at91_request *req;
582
Robert P. J. Daycd861282006-12-13 00:34:52 -0800583 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800584 if (!req)
585 return NULL;
586
587 INIT_LIST_HEAD(&req->queue);
588 return &req->req;
589}
590
591static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
592{
593 struct at91_request *req;
594
595 req = container_of(_req, struct at91_request, req);
596 BUG_ON(!list_empty(&req->queue));
597 kfree(req);
598}
599
David Brownellbae4bd82006-01-22 10:32:37 -0800600static int at91_ep_queue(struct usb_ep *_ep,
601 struct usb_request *_req, gfp_t gfp_flags)
602{
603 struct at91_request *req;
604 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100605 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800606 int status;
607 unsigned long flags;
608
609 req = container_of(_req, struct at91_request, req);
610 ep = container_of(_ep, struct at91_ep, ep);
611
612 if (!_req || !_req->complete
613 || !_req->buf || !list_empty(&req->queue)) {
614 DBG("invalid request\n");
615 return -EINVAL;
616 }
617
618 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
619 DBG("invalid ep\n");
620 return -EINVAL;
621 }
622
Harro Haan4f4c5e32010-03-01 18:01:56 +0100623 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800624
Harro Haan4f4c5e32010-03-01 18:01:56 +0100625 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800626 DBG("invalid device\n");
627 return -EINVAL;
628 }
629
630 _req->status = -EINPROGRESS;
631 _req->actual = 0;
632
Harro Haan4f4c5e32010-03-01 18:01:56 +0100633 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800634
635 /* try to kickstart any empty and idle queue */
636 if (list_empty(&ep->queue) && !ep->stopped) {
637 int is_ep0;
638
639 /*
640 * If this control request has a non-empty DATA stage, this
641 * will start that stage. It works just like a non-control
642 * request (until the status stage starts, maybe early).
643 *
644 * If the data stage is empty, then this starts a successful
645 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
646 */
647 is_ep0 = (ep->ep.name == ep0name);
648 if (is_ep0) {
649 u32 tmp;
650
Harro Haan4f4c5e32010-03-01 18:01:56 +0100651 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800652 status = -EINVAL;
653 goto done;
654 }
655
656 /*
657 * defer changing CONFG until after the gadget driver
658 * reconfigures the endpoints.
659 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100660 if (udc->wait_for_config_ack) {
661 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800662 tmp ^= AT91_UDP_CONFG;
663 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100664 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800665 }
666 if (req->req.length == 0) {
667ep0_in_status:
668 PACKET("ep0 in/status\n");
669 status = 0;
670 tmp = __raw_readl(ep->creg);
671 tmp &= ~SET_FX;
672 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
673 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100674 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800675 goto done;
676 }
677 }
678
679 if (ep->is_in)
680 status = write_fifo(ep, req);
681 else {
682 status = read_fifo(ep, req);
683
684 /* IN/STATUS stage is otherwise triggered by irq */
685 if (status && is_ep0)
686 goto ep0_in_status;
687 }
688 } else
689 status = 0;
690
691 if (req && !status) {
692 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100693 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800694 }
695done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100696 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800697 return (status < 0) ? status : 0;
698}
699
700static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
701{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100702 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800703 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100704 unsigned long flags;
705 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800706
707 ep = container_of(_ep, struct at91_ep, ep);
708 if (!_ep || ep->ep.name == ep0name)
709 return -EINVAL;
710
Harro Haan4f4c5e32010-03-01 18:01:56 +0100711 udc = ep->udc;
712
713 spin_lock_irqsave(&udc->lock, flags);
714
David Brownellbae4bd82006-01-22 10:32:37 -0800715 /* make sure it's actually queued on this endpoint */
716 list_for_each_entry (req, &ep->queue, queue) {
717 if (&req->req == _req)
718 break;
719 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100720 if (&req->req != _req) {
721 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800722 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100723 }
David Brownellbae4bd82006-01-22 10:32:37 -0800724
725 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100726 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800727 return 0;
728}
729
730static int at91_ep_set_halt(struct usb_ep *_ep, int value)
731{
732 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800733 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800734 u32 __iomem *creg;
735 u32 csr;
736 unsigned long flags;
737 int status = 0;
738
739 if (!_ep || ep->is_iso || !ep->udc->clocked)
740 return -EINVAL;
741
742 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100743 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800744
745 csr = __raw_readl(creg);
746
747 /*
748 * fail with still-busy IN endpoints, ensuring correct sequencing
749 * of data tx then stall. note that the fifo rx bytecount isn't
750 * completely accurate as a tx bytecount.
751 */
752 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
753 status = -EAGAIN;
754 else {
755 csr |= CLR_FX;
756 csr &= ~SET_FX;
757 if (value) {
758 csr |= AT91_UDP_FORCESTALL;
759 VDBG("halt %s\n", ep->ep.name);
760 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800761 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
762 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800763 csr &= ~AT91_UDP_FORCESTALL;
764 }
765 __raw_writel(csr, creg);
766 }
767
Harro Haan4f4c5e32010-03-01 18:01:56 +0100768 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800769 return status;
770}
771
David Brownell398acce2007-02-15 18:47:17 -0800772static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800773 .enable = at91_ep_enable,
774 .disable = at91_ep_disable,
775 .alloc_request = at91_ep_alloc_request,
776 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800777 .queue = at91_ep_queue,
778 .dequeue = at91_ep_dequeue,
779 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200780 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800781};
782
783/*-------------------------------------------------------------------------*/
784
785static int at91_get_frame(struct usb_gadget *gadget)
786{
Andrew Victorffd33262006-12-07 22:44:33 -0800787 struct at91_udc *udc = to_udc(gadget);
788
David Brownellbae4bd82006-01-22 10:32:37 -0800789 if (!to_udc(gadget)->clocked)
790 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800791 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800792}
793
794static int at91_wakeup(struct usb_gadget *gadget)
795{
796 struct at91_udc *udc = to_udc(gadget);
797 u32 glbstate;
798 int status = -EINVAL;
799 unsigned long flags;
800
Harvey Harrison441b62c2008-03-03 16:08:34 -0800801 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100802 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800803
804 if (!udc->clocked || !udc->suspended)
805 goto done;
806
807 /* NOTE: some "early versions" handle ESR differently ... */
808
Andrew Victorffd33262006-12-07 22:44:33 -0800809 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800810 if (!(glbstate & AT91_UDP_ESR))
811 goto done;
812 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800813 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800814
815done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100816 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800817 return status;
818}
819
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300820/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800821static void udc_reinit(struct at91_udc *udc)
822{
823 u32 i;
824
825 INIT_LIST_HEAD(&udc->gadget.ep_list);
826 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
827
828 for (i = 0; i < NUM_ENDPOINTS; i++) {
829 struct at91_ep *ep = &udc->ep[i];
830
831 if (i != 0)
832 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
833 ep->desc = NULL;
834 ep->stopped = 0;
835 ep->fifo_bank = 0;
836 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800837 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200838 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800839 INIT_LIST_HEAD(&ep->queue);
840 }
841}
842
843static void stop_activity(struct at91_udc *udc)
844{
845 struct usb_gadget_driver *driver = udc->driver;
846 int i;
847
848 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
849 driver = NULL;
850 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700851 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800852
853 for (i = 0; i < NUM_ENDPOINTS; i++) {
854 struct at91_ep *ep = &udc->ep[i];
855 ep->stopped = 1;
856 nuke(ep, -ESHUTDOWN);
857 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100858 if (driver) {
859 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800860 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100861 spin_lock(&udc->lock);
862 }
David Brownellbae4bd82006-01-22 10:32:37 -0800863
864 udc_reinit(udc);
865}
866
867static void clk_on(struct at91_udc *udc)
868{
869 if (udc->clocked)
870 return;
871 udc->clocked = 1;
872 clk_enable(udc->iclk);
873 clk_enable(udc->fclk);
874}
875
876static void clk_off(struct at91_udc *udc)
877{
878 if (!udc->clocked)
879 return;
880 udc->clocked = 0;
881 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800882 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700883 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800884}
885
886/*
887 * activate/deactivate link with host; minimize power usage for
888 * inactive links by cutting clocks and transceiver power.
889 */
890static void pullup(struct at91_udc *udc, int is_on)
891{
David Brownellf3db6e82008-01-05 13:21:43 -0800892 int active = !udc->board.pullup_active_low;
893
David Brownellbae4bd82006-01-22 10:32:37 -0800894 if (!udc->enabled || !udc->vbus)
895 is_on = 0;
896 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800897
David Brownellbae4bd82006-01-22 10:32:37 -0800898 if (is_on) {
899 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800900 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800901 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800902 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800903 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100904 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800905 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
906
907 txvc |= AT91_UDP_TXVC_PUON;
908 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200909 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800910 u32 usbpucr;
911
912 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
913 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
914 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
915 }
Andrew Victorffd33262006-12-07 22:44:33 -0800916 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800917 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800918 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800919 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800920 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800921 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100922 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800923 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
924
925 txvc &= ~AT91_UDP_TXVC_PUON;
926 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200927 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800928 u32 usbpucr;
929
930 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
931 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
932 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
933 }
David Brownellbae4bd82006-01-22 10:32:37 -0800934 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800935 }
936}
937
938/* vbus is here! turn everything on that's ready */
939static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
940{
941 struct at91_udc *udc = to_udc(gadget);
942 unsigned long flags;
943
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200944 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100945 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800946 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800947 if (udc->driver)
948 pullup(udc, is_active);
949 else
950 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100951 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800952 return 0;
953}
954
955static int at91_pullup(struct usb_gadget *gadget, int is_on)
956{
957 struct at91_udc *udc = to_udc(gadget);
958 unsigned long flags;
959
Harro Haan4f4c5e32010-03-01 18:01:56 +0100960 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800961 udc->enabled = is_on = !!is_on;
962 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100963 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800964 return 0;
965}
966
967static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
968{
969 struct at91_udc *udc = to_udc(gadget);
970 unsigned long flags;
971
Harro Haan4f4c5e32010-03-01 18:01:56 +0100972 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800973 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100974 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800975 return 0;
976}
977
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300978static int at91_start(struct usb_gadget_driver *driver,
979 int (*bind)(struct usb_gadget *));
980static int at91_stop(struct usb_gadget_driver *driver);
981
David Brownellbae4bd82006-01-22 10:32:37 -0800982static const struct usb_gadget_ops at91_udc_ops = {
983 .get_frame = at91_get_frame,
984 .wakeup = at91_wakeup,
985 .set_selfpowered = at91_set_selfpowered,
986 .vbus_session = at91_vbus_session,
987 .pullup = at91_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300988 .start = at91_start,
989 .stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800990
991 /*
992 * VBUS-powered devices may also also want to support bigger
993 * power budgets after an appropriate SET_CONFIGURATION.
994 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200995 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -0800996};
997
998/*-------------------------------------------------------------------------*/
999
1000static int handle_ep(struct at91_ep *ep)
1001{
1002 struct at91_request *req;
1003 u32 __iomem *creg = ep->creg;
1004 u32 csr = __raw_readl(creg);
1005
1006 if (!list_empty(&ep->queue))
1007 req = list_entry(ep->queue.next,
1008 struct at91_request, queue);
1009 else
1010 req = NULL;
1011
1012 if (ep->is_in) {
1013 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1014 csr |= CLR_FX;
1015 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1016 __raw_writel(csr, creg);
1017 }
1018 if (req)
1019 return write_fifo(ep, req);
1020
1021 } else {
1022 if (csr & AT91_UDP_STALLSENT) {
1023 /* STALLSENT bit == ISOERR */
1024 if (ep->is_iso && req)
1025 req->req.status = -EILSEQ;
1026 csr |= CLR_FX;
1027 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1028 __raw_writel(csr, creg);
1029 csr = __raw_readl(creg);
1030 }
1031 if (req && (csr & RX_DATA_READY))
1032 return read_fifo(ep, req);
1033 }
1034 return 0;
1035}
1036
1037union setup {
1038 u8 raw[8];
1039 struct usb_ctrlrequest r;
1040};
1041
1042static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1043{
1044 u32 __iomem *creg = ep->creg;
1045 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1046 unsigned rxcount, i = 0;
1047 u32 tmp;
1048 union setup pkt;
1049 int status = 0;
1050
1051 /* read and ack SETUP; hard-fail for bogus packets */
1052 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1053 if (likely(rxcount == 8)) {
1054 while (rxcount--)
1055 pkt.raw[i++] = __raw_readb(dreg);
1056 if (pkt.r.bRequestType & USB_DIR_IN) {
1057 csr |= AT91_UDP_DIR;
1058 ep->is_in = 1;
1059 } else {
1060 csr &= ~AT91_UDP_DIR;
1061 ep->is_in = 0;
1062 }
1063 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001064 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001065 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1066 status = -EINVAL;
1067 }
1068 csr |= CLR_FX;
1069 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1070 __raw_writel(csr, creg);
1071 udc->wait_for_addr_ack = 0;
1072 udc->wait_for_config_ack = 0;
1073 ep->stopped = 0;
1074 if (unlikely(status != 0))
1075 goto stall;
1076
1077#define w_index le16_to_cpu(pkt.r.wIndex)
1078#define w_value le16_to_cpu(pkt.r.wValue)
1079#define w_length le16_to_cpu(pkt.r.wLength)
1080
1081 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1082 pkt.r.bRequestType, pkt.r.bRequest,
1083 w_value, w_index, w_length);
1084
1085 /*
1086 * A few standard requests get handled here, ones that touch
1087 * hardware ... notably for device and endpoint features.
1088 */
1089 udc->req_pending = 1;
1090 csr = __raw_readl(creg);
1091 csr |= CLR_FX;
1092 csr &= ~SET_FX;
1093 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1094
1095 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1096 | USB_REQ_SET_ADDRESS:
1097 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1098 udc->addr = w_value;
1099 udc->wait_for_addr_ack = 1;
1100 udc->req_pending = 0;
1101 /* FADDR is set later, when we ack host STATUS */
1102 return;
1103
1104 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1105 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001106 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001107 if (pkt.r.wValue)
1108 udc->wait_for_config_ack = (tmp == 0);
1109 else
1110 udc->wait_for_config_ack = (tmp != 0);
1111 if (udc->wait_for_config_ack)
1112 VDBG("wait for config\n");
1113 /* CONFG is toggled later, if gadget driver succeeds */
1114 break;
1115
1116 /*
1117 * Hosts may set or clear remote wakeup status, and
1118 * devices may report they're VBUS powered.
1119 */
1120 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1121 | USB_REQ_GET_STATUS:
1122 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001123 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001124 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1125 PACKET("get device status\n");
1126 __raw_writeb(tmp, dreg);
1127 __raw_writeb(0, dreg);
1128 goto write_in;
1129 /* then STATUS starts later, automatically */
1130 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1131 | USB_REQ_SET_FEATURE:
1132 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1133 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001134 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001135 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001136 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001137 goto succeed;
1138 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1139 | USB_REQ_CLEAR_FEATURE:
1140 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1141 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001142 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001143 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001144 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001145 goto succeed;
1146
1147 /*
1148 * Interfaces have no feature settings; this is pretty useless.
1149 * we won't even insist the interface exists...
1150 */
1151 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1152 | USB_REQ_GET_STATUS:
1153 PACKET("get interface status\n");
1154 __raw_writeb(0, dreg);
1155 __raw_writeb(0, dreg);
1156 goto write_in;
1157 /* then STATUS starts later, automatically */
1158 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1159 | USB_REQ_SET_FEATURE:
1160 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1161 | USB_REQ_CLEAR_FEATURE:
1162 goto stall;
1163
1164 /*
1165 * Hosts may clear bulk/intr endpoint halt after the gadget
1166 * driver sets it (not widely used); or set it (for testing)
1167 */
1168 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1169 | USB_REQ_GET_STATUS:
1170 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1171 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001172 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001173 goto stall;
1174
1175 if (tmp) {
1176 if ((w_index & USB_DIR_IN)) {
1177 if (!ep->is_in)
1178 goto stall;
1179 } else if (ep->is_in)
1180 goto stall;
1181 }
1182 PACKET("get %s status\n", ep->ep.name);
1183 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1184 tmp = (1 << USB_ENDPOINT_HALT);
1185 else
1186 tmp = 0;
1187 __raw_writeb(tmp, dreg);
1188 __raw_writeb(0, dreg);
1189 goto write_in;
1190 /* then STATUS starts later, automatically */
1191 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1192 | USB_REQ_SET_FEATURE:
1193 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1194 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001195 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001196 goto stall;
1197 if (!ep->desc || ep->is_iso)
1198 goto stall;
1199 if ((w_index & USB_DIR_IN)) {
1200 if (!ep->is_in)
1201 goto stall;
1202 } else if (ep->is_in)
1203 goto stall;
1204
1205 tmp = __raw_readl(ep->creg);
1206 tmp &= ~SET_FX;
1207 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1208 __raw_writel(tmp, ep->creg);
1209 goto succeed;
1210 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1211 | USB_REQ_CLEAR_FEATURE:
1212 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1213 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001214 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001215 goto stall;
1216 if (tmp == 0)
1217 goto succeed;
1218 if (!ep->desc || ep->is_iso)
1219 goto stall;
1220 if ((w_index & USB_DIR_IN)) {
1221 if (!ep->is_in)
1222 goto stall;
1223 } else if (ep->is_in)
1224 goto stall;
1225
Andrew Victorffd33262006-12-07 22:44:33 -08001226 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1227 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001228 tmp = __raw_readl(ep->creg);
1229 tmp |= CLR_FX;
1230 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1231 __raw_writel(tmp, ep->creg);
1232 if (!list_empty(&ep->queue))
1233 handle_ep(ep);
1234 goto succeed;
1235 }
1236
1237#undef w_value
1238#undef w_index
1239#undef w_length
1240
1241 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001242 if (udc->driver) {
1243 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001244 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001245 spin_lock(&udc->lock);
1246 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001247 else
1248 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001249 if (status < 0) {
1250stall:
1251 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1252 pkt.r.bRequestType, pkt.r.bRequest, status);
1253 csr |= AT91_UDP_FORCESTALL;
1254 __raw_writel(csr, creg);
1255 udc->req_pending = 0;
1256 }
1257 return;
1258
1259succeed:
1260 /* immediate successful (IN) STATUS after zero length DATA */
1261 PACKET("ep0 in/status\n");
1262write_in:
1263 csr |= AT91_UDP_TXPKTRDY;
1264 __raw_writel(csr, creg);
1265 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001266}
1267
1268static void handle_ep0(struct at91_udc *udc)
1269{
1270 struct at91_ep *ep0 = &udc->ep[0];
1271 u32 __iomem *creg = ep0->creg;
1272 u32 csr = __raw_readl(creg);
1273 struct at91_request *req;
1274
1275 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1276 nuke(ep0, -EPROTO);
1277 udc->req_pending = 0;
1278 csr |= CLR_FX;
1279 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1280 __raw_writel(csr, creg);
1281 VDBG("ep0 stalled\n");
1282 csr = __raw_readl(creg);
1283 }
1284 if (csr & AT91_UDP_RXSETUP) {
1285 nuke(ep0, 0);
1286 udc->req_pending = 0;
1287 handle_setup(udc, ep0, csr);
1288 return;
1289 }
1290
1291 if (list_empty(&ep0->queue))
1292 req = NULL;
1293 else
1294 req = list_entry(ep0->queue.next, struct at91_request, queue);
1295
1296 /* host ACKed an IN packet that we sent */
1297 if (csr & AT91_UDP_TXCOMP) {
1298 csr |= CLR_FX;
1299 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1300
1301 /* write more IN DATA? */
1302 if (req && ep0->is_in) {
1303 if (handle_ep(ep0))
1304 udc->req_pending = 0;
1305
1306 /*
1307 * Ack after:
1308 * - last IN DATA packet (including GET_STATUS)
1309 * - IN/STATUS for OUT DATA
1310 * - IN/STATUS for any zero-length DATA stage
1311 * except for the IN DATA case, the host should send
1312 * an OUT status later, which we'll ack.
1313 */
1314 } else {
1315 udc->req_pending = 0;
1316 __raw_writel(csr, creg);
1317
1318 /*
1319 * SET_ADDRESS takes effect only after the STATUS
1320 * (to the original address) gets acked.
1321 */
1322 if (udc->wait_for_addr_ack) {
1323 u32 tmp;
1324
Andrew Victorffd33262006-12-07 22:44:33 -08001325 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001326 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001327 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001328 tmp &= ~AT91_UDP_FADDEN;
1329 if (udc->addr)
1330 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001331 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001332
1333 udc->wait_for_addr_ack = 0;
1334 VDBG("address %d\n", udc->addr);
1335 }
1336 }
1337 }
1338
1339 /* OUT packet arrived ... */
1340 else if (csr & AT91_UDP_RX_DATA_BK0) {
1341 csr |= CLR_FX;
1342 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1343
1344 /* OUT DATA stage */
1345 if (!ep0->is_in) {
1346 if (req) {
1347 if (handle_ep(ep0)) {
1348 /* send IN/STATUS */
1349 PACKET("ep0 in/status\n");
1350 csr = __raw_readl(creg);
1351 csr &= ~SET_FX;
1352 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1353 __raw_writel(csr, creg);
1354 udc->req_pending = 0;
1355 }
1356 } else if (udc->req_pending) {
1357 /*
1358 * AT91 hardware has a hard time with this
1359 * "deferred response" mode for control-OUT
1360 * transfers. (For control-IN it's fine.)
1361 *
1362 * The normal solution leaves OUT data in the
1363 * fifo until the gadget driver is ready.
1364 * We couldn't do that here without disabling
1365 * the IRQ that tells about SETUP packets,
1366 * e.g. when the host gets impatient...
1367 *
1368 * Working around it by copying into a buffer
1369 * would almost be a non-deferred response,
1370 * except that it wouldn't permit reliable
1371 * stalling of the request. Instead, demand
1372 * that gadget drivers not use this mode.
1373 */
1374 DBG("no control-OUT deferred responses!\n");
1375 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1376 udc->req_pending = 0;
1377 }
1378
1379 /* STATUS stage for control-IN; ack. */
1380 } else {
1381 PACKET("ep0 out/status ACK\n");
1382 __raw_writel(csr, creg);
1383
1384 /* "early" status stage */
1385 if (req)
1386 done(ep0, req, 0);
1387 }
1388 }
1389}
1390
David Howells7d12e782006-10-05 14:55:46 +01001391static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001392{
1393 struct at91_udc *udc = _udc;
1394 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001395 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001396 unsigned long flags;
1397
1398 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001399
1400 if (!udc->clocked) {
1401 clk_on(udc);
1402 disable_clock = 1;
1403 }
David Brownellbae4bd82006-01-22 10:32:37 -08001404
1405 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001406 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001407
Andrew Victorffd33262006-12-07 22:44:33 -08001408 status = at91_udp_read(udc, AT91_UDP_ISR)
1409 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001410 if (!status)
1411 break;
1412
1413 /* USB reset irq: not maskable */
1414 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001415 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1416 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001417 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001418 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1419 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001420 VDBG("end bus reset\n");
1421 udc->addr = 0;
1422 stop_activity(udc);
1423
1424 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001425 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001426 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001427 udc->gadget.speed = USB_SPEED_FULL;
1428 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001429 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001430
1431 /*
1432 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001433 * USB host is present. That saves power, but for
1434 * boards that don't support VBUS detection, both
1435 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001436 */
1437
1438 /* host initiated suspend (3+ms bus idle) */
1439 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001440 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1441 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1442 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001443 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001444 if (udc->suspended)
1445 continue;
1446 udc->suspended = 1;
1447
1448 /*
1449 * NOTE: when suspending a VBUS-powered device, the
1450 * gadget driver should switch into slow clock mode
1451 * and then into standby to avoid drawing more than
1452 * 500uA power (2500uA for some high-power configs).
1453 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001454 if (udc->driver && udc->driver->suspend) {
1455 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001456 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001457 spin_lock(&udc->lock);
1458 }
David Brownellbae4bd82006-01-22 10:32:37 -08001459
1460 /* host initiated resume */
1461 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001462 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1463 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1464 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001465 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001466 if (!udc->suspended)
1467 continue;
1468 udc->suspended = 0;
1469
1470 /*
1471 * NOTE: for a VBUS-powered device, the gadget driver
1472 * would normally want to switch out of slow clock
1473 * mode into normal mode.
1474 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001475 if (udc->driver && udc->driver->resume) {
1476 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001477 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001478 spin_lock(&udc->lock);
1479 }
David Brownellbae4bd82006-01-22 10:32:37 -08001480
1481 /* endpoint IRQs are cleared by handling them */
1482 } else {
1483 int i;
1484 unsigned mask = 1;
1485 struct at91_ep *ep = &udc->ep[1];
1486
1487 if (status & mask)
1488 handle_ep0(udc);
1489 for (i = 1; i < NUM_ENDPOINTS; i++) {
1490 mask <<= 1;
1491 if (status & mask)
1492 handle_ep(ep);
1493 ep++;
1494 }
1495 }
1496 }
1497
Harro Haanc6c35232010-03-01 17:38:37 +01001498 if (disable_clock)
1499 clk_off(udc);
1500
Harro Haan4f4c5e32010-03-01 18:01:56 +01001501 spin_unlock_irqrestore(&udc->lock, flags);
1502
David Brownellbae4bd82006-01-22 10:32:37 -08001503 return IRQ_HANDLED;
1504}
1505
1506/*-------------------------------------------------------------------------*/
1507
David Brownell8b2e7662006-07-05 02:38:56 -07001508static void nop_release(struct device *dev)
1509{
1510 /* nothing to free */
1511}
1512
David Brownellbae4bd82006-01-22 10:32:37 -08001513static struct at91_udc controller = {
1514 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001515 .ops = &at91_udc_ops,
1516 .ep0 = &controller.ep[0].ep,
1517 .name = driver_name,
1518 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001519 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001520 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001521 }
1522 },
1523 .ep[0] = {
1524 .ep = {
1525 .name = ep0name,
1526 .ops = &at91_ep_ops,
1527 },
1528 .udc = &controller,
1529 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001530 .int_mask = 1 << 0,
1531 },
1532 .ep[1] = {
1533 .ep = {
1534 .name = "ep1",
1535 .ops = &at91_ep_ops,
1536 },
1537 .udc = &controller,
1538 .is_pingpong = 1,
1539 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001540 .int_mask = 1 << 1,
1541 },
1542 .ep[2] = {
1543 .ep = {
1544 .name = "ep2",
1545 .ops = &at91_ep_ops,
1546 },
1547 .udc = &controller,
1548 .is_pingpong = 1,
1549 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001550 .int_mask = 1 << 2,
1551 },
1552 .ep[3] = {
1553 .ep = {
1554 /* could actually do bulk too */
1555 .name = "ep3-int",
1556 .ops = &at91_ep_ops,
1557 },
1558 .udc = &controller,
1559 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001560 .int_mask = 1 << 3,
1561 },
1562 .ep[4] = {
1563 .ep = {
1564 .name = "ep4",
1565 .ops = &at91_ep_ops,
1566 },
1567 .udc = &controller,
1568 .is_pingpong = 1,
1569 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001570 .int_mask = 1 << 4,
1571 },
1572 .ep[5] = {
1573 .ep = {
1574 .name = "ep5",
1575 .ops = &at91_ep_ops,
1576 },
1577 .udc = &controller,
1578 .is_pingpong = 1,
1579 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001580 .int_mask = 1 << 5,
1581 },
David Brownell8b2e7662006-07-05 02:38:56 -07001582 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001583};
1584
Ryan Mallon40372422010-07-13 05:09:16 +01001585static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1586{
1587 value ^= udc->board.vbus_active_low;
1588 if (value != udc->vbus)
1589 at91_vbus_session(&udc->gadget, value);
1590}
1591
David Howells7d12e782006-10-05 14:55:46 +01001592static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001593{
1594 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001595
1596 /* vbus needs at least brief debouncing */
1597 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001598 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001599
1600 return IRQ_HANDLED;
1601}
1602
Ryan Mallon40372422010-07-13 05:09:16 +01001603static void at91_vbus_timer_work(struct work_struct *work)
1604{
1605 struct at91_udc *udc = container_of(work, struct at91_udc,
1606 vbus_timer_work);
1607
1608 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1609
1610 if (!timer_pending(&udc->vbus_timer))
1611 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1612}
1613
1614static void at91_vbus_timer(unsigned long data)
1615{
1616 struct at91_udc *udc = (struct at91_udc *)data;
1617
1618 /*
1619 * If we are polling vbus it is likely that the gpio is on an
1620 * bus such as i2c or spi which may sleep, so schedule some work
1621 * to read the vbus gpio
1622 */
1623 if (!work_pending(&udc->vbus_timer_work))
1624 schedule_work(&udc->vbus_timer_work);
1625}
1626
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001627static int at91_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001628 int (*bind)(struct usb_gadget *))
David Brownellbae4bd82006-01-22 10:32:37 -08001629{
1630 struct at91_udc *udc = &controller;
1631 int retval;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001632 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001633
1634 if (!driver
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001635 || driver->max_speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001636 || !bind
David Brownellbae4bd82006-01-22 10:32:37 -08001637 || !driver->setup) {
1638 DBG("bad parameter.\n");
1639 return -EINVAL;
1640 }
1641
1642 if (udc->driver) {
1643 DBG("UDC already has a gadget driver\n");
1644 return -EBUSY;
1645 }
1646
1647 udc->driver = driver;
1648 udc->gadget.dev.driver = &driver->driver;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001649 dev_set_drvdata(&udc->gadget.dev, &driver->driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001650 udc->enabled = 1;
1651 udc->selfpowered = 1;
1652
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001653 retval = bind(&udc->gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001654 if (retval) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001655 DBG("bind() returned %d\n", retval);
David Brownellbae4bd82006-01-22 10:32:37 -08001656 udc->driver = NULL;
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001657 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001658 dev_set_drvdata(&udc->gadget.dev, NULL);
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001659 udc->enabled = 0;
1660 udc->selfpowered = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001661 return retval;
1662 }
1663
Harro Haan4f4c5e32010-03-01 18:01:56 +01001664 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001665 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001666 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001667
1668 DBG("bound to %s\n", driver->driver.name);
1669 return 0;
1670}
David Brownellbae4bd82006-01-22 10:32:37 -08001671
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001672static int at91_stop(struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001673{
1674 struct at91_udc *udc = &controller;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001675 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001676
David Brownell6bea4762006-12-05 03:15:33 -08001677 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001678 return -EINVAL;
1679
Harro Haan4f4c5e32010-03-01 18:01:56 +01001680 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001681 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001682 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001683 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001684 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001685
1686 driver->unbind(&udc->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001687 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001688 dev_set_drvdata(&udc->gadget.dev, NULL);
David Brownellbae4bd82006-01-22 10:32:37 -08001689 udc->driver = NULL;
1690
1691 DBG("unbound from %s\n", driver->driver.name);
1692 return 0;
1693}
David Brownellbae4bd82006-01-22 10:32:37 -08001694
1695/*-------------------------------------------------------------------------*/
1696
1697static void at91udc_shutdown(struct platform_device *dev)
1698{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001699 struct at91_udc *udc = platform_get_drvdata(dev);
1700 unsigned long flags;
1701
David Brownellbae4bd82006-01-22 10:32:37 -08001702 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001703 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001704 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001705 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001706}
1707
David Brownell398acce2007-02-15 18:47:17 -08001708static int __init at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001709{
1710 struct device *dev = &pdev->dev;
1711 struct at91_udc *udc;
1712 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001713 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001714
1715 if (!dev->platform_data) {
1716 /* small (so we copy it) but critical! */
1717 DBG("missing platform_data\n");
1718 return -ENODEV;
1719 }
1720
David Brownell8b2e7662006-07-05 02:38:56 -07001721 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001722 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001723 return -ENODEV;
1724 }
1725 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1726 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001727 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001728 return -ENODEV;
1729 }
1730
Andrew Victorffd33262006-12-07 22:44:33 -08001731 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1732 if (!res)
1733 return -ENXIO;
1734
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001735 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001736 DBG("someone's using UDC memory\n");
1737 return -EBUSY;
1738 }
1739
1740 /* init software state */
1741 udc = &controller;
1742 udc->gadget.dev.parent = dev;
1743 udc->board = *(struct at91_udc_data *) dev->platform_data;
1744 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001745 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001746 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001747
David Brownellf3db6e82008-01-05 13:21:43 -08001748 /* rm9200 needs manual D+ pullup; off by default */
1749 if (cpu_is_at91rm9200()) {
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001750 if (gpio_is_valid(udc->board.pullup_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001751 DBG("no D+ pullup?\n");
1752 retval = -ENODEV;
1753 goto fail0;
1754 }
1755 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1756 if (retval) {
1757 DBG("D+ pullup is busy\n");
1758 goto fail0;
1759 }
1760 gpio_direction_output(udc->board.pullup_pin,
1761 udc->board.pullup_active_low);
1762 }
1763
David Brownellbb242802008-05-27 19:24:20 -07001764 /* newer chips have more FIFO memory than rm9200 */
Jean-Christophe PLAGNIOL-VILLARDbf1f0a02011-05-13 17:03:02 +02001765 if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
David Brownellbb242802008-05-27 19:24:20 -07001766 udc->ep[0].maxpacket = 64;
1767 udc->ep[3].maxpacket = 64;
1768 udc->ep[4].maxpacket = 512;
1769 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001770 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
David Brownellbb242802008-05-27 19:24:20 -07001771 udc->ep[3].maxpacket = 64;
1772 } else if (cpu_is_at91sam9263()) {
1773 udc->ep[0].maxpacket = 64;
1774 udc->ep[3].maxpacket = 64;
1775 }
1776
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001777 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001778 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001779 retval = -ENOMEM;
1780 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001781 }
1782
1783 udc_reinit(udc);
1784
David Brownellbae4bd82006-01-22 10:32:37 -08001785 /* get interface and function clocks */
1786 udc->iclk = clk_get(dev, "udc_clk");
1787 udc->fclk = clk_get(dev, "udpck");
1788 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1789 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001790 retval = -ENODEV;
David Brownellf3db6e82008-01-05 13:21:43 -08001791 /* NOTE: we "know" here that refcounts on these are NOPs */
1792 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001793 }
1794
1795 retval = device_register(&udc->gadget.dev);
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001796 if (retval < 0) {
1797 put_device(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001798 goto fail0b;
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001799 }
David Brownellbae4bd82006-01-22 10:32:37 -08001800
David Brownell8b2e7662006-07-05 02:38:56 -07001801 /* don't do anything until we have both gadget driver and VBUS */
1802 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001803 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1804 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001805 /* Clear all pending interrupts - UDP may be used by bootloader. */
1806 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001807 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001808
1809 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001810 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001811 retval = request_irq(udc->udp_irq, at91_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001812 0, driver_name, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001813 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001814 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001815 goto fail1;
1816 }
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001817 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001818 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1819 if (retval < 0) {
1820 DBG("request vbus pin failed\n");
1821 goto fail2;
1822 }
1823 gpio_direction_input(udc->board.vbus_pin);
1824
Andrew Victor29ba4b52006-12-07 22:44:38 -08001825 /*
1826 * Get the initial state of VBUS - we cannot expect
1827 * a pending interrupt.
1828 */
Ryan Mallon40372422010-07-13 05:09:16 +01001829 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1830 udc->board.vbus_active_low;
1831
1832 if (udc->board.vbus_polled) {
1833 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1834 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1835 (unsigned long)udc);
1836 mod_timer(&udc->vbus_timer,
1837 jiffies + VBUS_POLL_TIMEOUT);
1838 } else {
1839 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001840 0, driver_name, udc)) {
Ryan Mallon40372422010-07-13 05:09:16 +01001841 DBG("request vbus irq %d failed\n",
1842 udc->board.vbus_pin);
1843 retval = -EBUSY;
1844 goto fail3;
1845 }
David Brownellbae4bd82006-01-22 10:32:37 -08001846 }
1847 } else {
1848 DBG("no VBUS detection, assuming always-on\n");
1849 udc->vbus = 1;
1850 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001851 retval = usb_add_gadget_udc(dev, &udc->gadget);
1852 if (retval)
1853 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001854 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001855 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001856 create_debug_file(udc);
1857
1858 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1859 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001860fail4:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001861 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001862 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001863fail3:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001864 if (gpio_is_valid(udc->board.vbus_pin))
David Brownellf3db6e82008-01-05 13:21:43 -08001865 gpio_free(udc->board.vbus_pin);
1866fail2:
1867 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001868fail1:
1869 device_unregister(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001870fail0b:
1871 iounmap(udc->udp_baseaddr);
1872fail0a:
1873 if (cpu_is_at91rm9200())
1874 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001875fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001876 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001877 DBG("%s probe failed, %d\n", driver_name, retval);
1878 return retval;
1879}
1880
David Brownell398acce2007-02-15 18:47:17 -08001881static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001882{
David Brownell8b2e7662006-07-05 02:38:56 -07001883 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001884 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001885 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001886
1887 DBG("remove\n");
1888
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001889 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001890 if (udc->driver)
1891 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001892
Harro Haan4f4c5e32010-03-01 18:01:56 +01001893 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001894 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001895 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001896
David Brownell8b2e7662006-07-05 02:38:56 -07001897 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001898 remove_debug_file(udc);
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001899 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001900 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001901 gpio_free(udc->board.vbus_pin);
1902 }
David Brownell8b2e7662006-07-05 02:38:56 -07001903 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001904 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001905
1906 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001907
1908 if (cpu_is_at91rm9200())
1909 gpio_free(udc->board.pullup_pin);
1910
Andrew Victorffd33262006-12-07 22:44:33 -08001911 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001912 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001913
1914 clk_put(udc->iclk);
1915 clk_put(udc->fclk);
1916
1917 return 0;
1918}
1919
1920#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001921static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001922{
David Brownell8b2e7662006-07-05 02:38:56 -07001923 struct at91_udc *udc = platform_get_drvdata(pdev);
1924 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001925 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001926
David Brownell8b2e7662006-07-05 02:38:56 -07001927 /* Unless we can act normally to the host (letting it wake us up
1928 * whenever it has work for us) force disconnect. Wakeup requires
1929 * PLLB for USB events (signaling for reset, wakeup, or incoming
1930 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001931 */
David Brownell8b2e7662006-07-05 02:38:56 -07001932 if ((!udc->suspended && udc->addr)
1933 || !wake
1934 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001935 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001936 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001937 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001938 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001939 } else
1940 enable_irq_wake(udc->udp_irq);
1941
David Brownell66e56ce2007-01-16 12:46:39 -08001942 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001943 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001944 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001945 return 0;
1946}
1947
David Brownell8b2e7662006-07-05 02:38:56 -07001948static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001949{
David Brownell8b2e7662006-07-05 02:38:56 -07001950 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001951 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001952
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001953 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001954 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001955 disable_irq_wake(udc->board.vbus_pin);
1956
David Brownellbae4bd82006-01-22 10:32:37 -08001957 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001958 if (udc->active_suspend)
1959 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001960 else {
1961 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001962 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001963 spin_unlock_irqrestore(&udc->lock, flags);
1964 }
David Brownellbae4bd82006-01-22 10:32:37 -08001965 return 0;
1966}
1967#else
1968#define at91udc_suspend NULL
1969#define at91udc_resume NULL
1970#endif
1971
David Brownelldee497d2007-02-24 13:54:56 -08001972static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001973 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001974 .shutdown = at91udc_shutdown,
1975 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001976 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001977 .driver = {
1978 .name = (char *) driver_name,
1979 .owner = THIS_MODULE,
1980 },
1981};
1982
David Brownell398acce2007-02-15 18:47:17 -08001983static int __init udc_init_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001984{
David Brownelldee497d2007-02-24 13:54:56 -08001985 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001986}
1987module_init(udc_init_module);
1988
David Brownell398acce2007-02-15 18:47:17 -08001989static void __exit udc_exit_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001990{
David Brownelldee497d2007-02-24 13:54:56 -08001991 platform_driver_unregister(&at91_udc_driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001992}
1993module_exit(udc_exit_module);
1994
David Brownell8b2e7662006-07-05 02:38:56 -07001995MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001996MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1997MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07001998MODULE_ALIAS("platform:at91_udc");