blob: 15a8cdb2ded507a91e3e86ebc59ab076256ab75c [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>
37#include <asm/system.h>
David Brownellf3db6e82008-01-05 13:21:43 -080038#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080039
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/board.h>
41#include <mach/cpu.h>
42#include <mach/at91sam9261_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080043
44#include "at91_udc.h"
45
46
47/*
48 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070049 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
50 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080051 *
52 * This driver expects the board has been wired with two GPIOs suppporting
53 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070054 * testing hasn't covered such cases.)
55 *
56 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080057 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070058 *
David Brownellbae4bd82006-01-22 10:32:37 -080059 * The VBUS sensing helps during enumeration, and allows both USB clocks
60 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070061 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
62 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080063 */
64
David Brownell8b2e7662006-07-05 02:38:56 -070065#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080066
67static const char driver_name [] = "at91_udc";
68static const char ep0name[] = "ep0";
69
Ryan Mallon40372422010-07-13 05:09:16 +010070#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080071
Harro Haan4f4c5e32010-03-01 18:01:56 +010072#define at91_udp_read(udc, reg) \
73 __raw_readl((udc)->udp_baseaddr + (reg))
74#define at91_udp_write(udc, reg, val) \
75 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080076
77/*-------------------------------------------------------------------------*/
78
79#ifdef CONFIG_USB_GADGET_DEBUG_FILES
80
81#include <linux/seq_file.h>
82
83static const char debug_filename[] = "driver/udc";
84
85#define FOURBITS "%s%s%s%s"
86#define EIGHTBITS FOURBITS FOURBITS
87
88static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
89{
90 static char *types[] = {
91 "control", "out-iso", "out-bulk", "out-int",
92 "BOGUS", "in-iso", "in-bulk", "in-int"};
93
94 u32 csr;
95 struct at91_request *req;
96 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +010097 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -080098
Harro Haan4f4c5e32010-03-01 18:01:56 +010099 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800100
101 csr = __raw_readl(ep->creg);
102
103 /* NOTE: not collecting per-endpoint irq statistics... */
104
105 seq_printf(s, "\n");
106 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
107 ep->ep.name, ep->ep.maxpacket,
108 ep->is_in ? "in" : "out",
109 ep->is_iso ? " iso" : "",
110 ep->is_pingpong
111 ? (ep->fifo_bank ? "pong" : "ping")
112 : "",
113 ep->stopped ? " stopped" : "");
114 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
115 csr,
116 (csr & 0x07ff0000) >> 16,
117 (csr & (1 << 15)) ? "enabled" : "disabled",
118 (csr & (1 << 11)) ? "DATA1" : "DATA0",
119 types[(csr & 0x700) >> 8],
120
121 /* iff type is control then print current direction */
122 (!(csr & 0x700))
123 ? ((csr & (1 << 7)) ? " IN" : " OUT")
124 : "",
125 (csr & (1 << 6)) ? " rxdatabk1" : "",
126 (csr & (1 << 5)) ? " forcestall" : "",
127 (csr & (1 << 4)) ? " txpktrdy" : "",
128
129 (csr & (1 << 3)) ? " stallsent" : "",
130 (csr & (1 << 2)) ? " rxsetup" : "",
131 (csr & (1 << 1)) ? " rxdatabk0" : "",
132 (csr & (1 << 0)) ? " txcomp" : "");
133 if (list_empty (&ep->queue))
134 seq_printf(s, "\t(queue empty)\n");
135
136 else list_for_each_entry (req, &ep->queue, queue) {
137 unsigned length = req->req.actual;
138
139 seq_printf(s, "\treq %p len %d/%d buf %p\n",
140 &req->req, length,
141 req->req.length, req->req.buf);
142 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100143 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800144}
145
146static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
147{
148 int i;
149
150 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
151 (mask & (1 << 13)) ? " wakeup" : "",
152 (mask & (1 << 12)) ? " endbusres" : "",
153
154 (mask & (1 << 11)) ? " sofint" : "",
155 (mask & (1 << 10)) ? " extrsm" : "",
156 (mask & (1 << 9)) ? " rxrsm" : "",
157 (mask & (1 << 8)) ? " rxsusp" : "");
158 for (i = 0; i < 8; i++) {
159 if (mask & (1 << i))
160 seq_printf(s, " ep%d", i);
161 }
162 seq_printf(s, "\n");
163}
164
165static int proc_udc_show(struct seq_file *s, void *unused)
166{
167 struct at91_udc *udc = s->private;
168 struct at91_ep *ep;
169 u32 tmp;
170
171 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
172
173 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
174 udc->vbus ? "present" : "off",
175 udc->enabled
176 ? (udc->vbus ? "active" : "enabled")
177 : "disabled",
178 udc->selfpowered ? "self" : "VBUS",
179 udc->suspended ? ", suspended" : "",
180 udc->driver ? udc->driver->driver.name : "(none)");
181
182 /* don't access registers when interface isn't clocked */
183 if (!udc->clocked) {
184 seq_printf(s, "(not clocked)\n");
185 return 0;
186 }
187
Andrew Victorffd33262006-12-07 22:44:33 -0800188 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800189 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
190 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
191 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
192 (tmp & AT91_UDP_NUM));
193
Andrew Victorffd33262006-12-07 22:44:33 -0800194 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800195 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
196 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
197 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
198 (tmp & AT91_UDP_ESR) ? " esr" : "",
199 (tmp & AT91_UDP_CONFG) ? " confg" : "",
200 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
201
Andrew Victorffd33262006-12-07 22:44:33 -0800202 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800203 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
204 (tmp & AT91_UDP_FEN) ? " fen" : "",
205 (tmp & AT91_UDP_FADD));
206
Andrew Victorffd33262006-12-07 22:44:33 -0800207 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
208 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800209
210 if (udc->enabled && udc->vbus) {
211 proc_ep_show(s, &udc->ep[0]);
212 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
213 if (ep->desc)
214 proc_ep_show(s, ep);
215 }
216 }
217 return 0;
218}
219
220static int proc_udc_open(struct inode *inode, struct file *file)
221{
222 return single_open(file, proc_udc_show, PDE(inode)->data);
223}
224
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300225static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700226 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800227 .open = proc_udc_open,
228 .read = seq_read,
229 .llseek = seq_lseek,
230 .release = single_release,
231};
232
233static void create_debug_file(struct at91_udc *udc)
234{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700235 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800236}
237
238static void remove_debug_file(struct at91_udc *udc)
239{
240 if (udc->pde)
241 remove_proc_entry(debug_filename, NULL);
242}
243
244#else
245
246static inline void create_debug_file(struct at91_udc *udc) {}
247static inline void remove_debug_file(struct at91_udc *udc) {}
248
249#endif
250
251
252/*-------------------------------------------------------------------------*/
253
254static void done(struct at91_ep *ep, struct at91_request *req, int status)
255{
256 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800257 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800258
259 list_del_init(&req->queue);
260 if (req->req.status == -EINPROGRESS)
261 req->req.status = status;
262 else
263 status = req->req.status;
264 if (status && status != -ESHUTDOWN)
265 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
266
267 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100268 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800269 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100270 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800271 ep->stopped = stopped;
272
273 /* ep0 is always ready; other endpoints need a non-empty queue */
274 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800275 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800276}
277
278/*-------------------------------------------------------------------------*/
279
280/* bits indicating OUT fifo has data ready */
281#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
282
283/*
284 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
285 * back most of the value you just read (because of side effects, including
286 * bits that may change after reading and before writing).
287 *
288 * Except when changing a specific bit, always write values which:
289 * - clear SET_FX bits (setting them could change something)
290 * - set CLR_FX bits (clearing them could change something)
291 *
292 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
293 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700294 *
295 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
296 * implying a need to wait for one write to complete (test relevant bits)
297 * before starting the next write. This shouldn't be an issue given how
298 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800299 */
300#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700301#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
302 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800303
304/* pull OUT packet data from the endpoint's fifo */
305static int read_fifo (struct at91_ep *ep, struct at91_request *req)
306{
307 u32 __iomem *creg = ep->creg;
308 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
309 u32 csr;
310 u8 *buf;
311 unsigned int count, bufferspace, is_done;
312
313 buf = req->req.buf + req->req.actual;
314 bufferspace = req->req.length - req->req.actual;
315
316 /*
317 * there might be nothing to read if ep_queue() calls us,
318 * or if we already emptied both pingpong buffers
319 */
320rescan:
321 csr = __raw_readl(creg);
322 if ((csr & RX_DATA_READY) == 0)
323 return 0;
324
325 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
326 if (count > ep->ep.maxpacket)
327 count = ep->ep.maxpacket;
328 if (count > bufferspace) {
329 DBG("%s buffer overflow\n", ep->ep.name);
330 req->req.status = -EOVERFLOW;
331 count = bufferspace;
332 }
333 __raw_readsb(dreg, buf, count);
334
335 /* release and swap pingpong mem bank */
336 csr |= CLR_FX;
337 if (ep->is_pingpong) {
338 if (ep->fifo_bank == 0) {
339 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
340 ep->fifo_bank = 1;
341 } else {
342 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
343 ep->fifo_bank = 0;
344 }
345 } else
346 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
347 __raw_writel(csr, creg);
348
349 req->req.actual += count;
350 is_done = (count < ep->ep.maxpacket);
351 if (count == bufferspace)
352 is_done = 1;
353
354 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
355 is_done ? " (done)" : "");
356
357 /*
358 * avoid extra trips through IRQ logic for packets already in
359 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
360 */
361 if (is_done)
362 done(ep, req, 0);
363 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100364 /*
365 * One dummy read to delay the code because of a HW glitch:
366 * CSR returns bad RXCOUNT when read too soon after updating
367 * RX_DATA_BK flags.
368 */
369 csr = __raw_readl(creg);
370
David Brownellbae4bd82006-01-22 10:32:37 -0800371 bufferspace -= count;
372 buf += count;
373 goto rescan;
374 }
375
376 return is_done;
377}
378
379/* load fifo for an IN packet */
380static int write_fifo(struct at91_ep *ep, struct at91_request *req)
381{
382 u32 __iomem *creg = ep->creg;
383 u32 csr = __raw_readl(creg);
384 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
385 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700386 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800387
388 /*
389 * TODO: allow for writing two packets to the fifo ... that'll
390 * reduce the amount of IN-NAKing, but probably won't affect
391 * throughput much. (Unlike preventing OUT-NAKing!)
392 */
393
394 /*
395 * If ep_queue() calls us, the queue is empty and possibly in
396 * odd states like TXCOMP not yet cleared (we do it, saving at
397 * least one IRQ) or the fifo not yet being free. Those aren't
398 * issues normally (IRQ handler fast path).
399 */
400 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
401 if (csr & AT91_UDP_TXCOMP) {
402 csr |= CLR_FX;
403 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
404 __raw_writel(csr, creg);
405 csr = __raw_readl(creg);
406 }
407 if (csr & AT91_UDP_TXPKTRDY)
408 return 0;
409 }
410
David Brownell3cf27232008-04-06 23:32:55 -0700411 buf = req->req.buf + req->req.actual;
412 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800413 total = req->req.length - req->req.actual;
414 if (ep->ep.maxpacket < total) {
415 count = ep->ep.maxpacket;
416 is_last = 0;
417 } else {
418 count = total;
419 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
420 }
421
422 /*
423 * Write the packet, maybe it's a ZLP.
424 *
425 * NOTE: incrementing req->actual before we receive the ACK means
426 * gadget driver IN bytecounts can be wrong in fault cases. That's
427 * fixable with PIO drivers like this one (save "count" here, and
428 * do the increment later on TX irq), but not for most DMA hardware.
429 *
430 * So all gadget drivers must accept that potential error. Some
431 * hardware supports precise fifo status reporting, letting them
432 * recover when the actual bytecount matters (e.g. for USB Test
433 * and Measurement Class devices).
434 */
David Brownell3cf27232008-04-06 23:32:55 -0700435 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800436 csr &= ~SET_FX;
437 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
438 __raw_writel(csr, creg);
439 req->req.actual += count;
440
441 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
442 is_last ? " (done)" : "");
443 if (is_last)
444 done(ep, req, 0);
445 return is_last;
446}
447
448static void nuke(struct at91_ep *ep, int status)
449{
450 struct at91_request *req;
451
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200452 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800453 ep->stopped = 1;
454 if (list_empty(&ep->queue))
455 return;
456
Harvey Harrison441b62c2008-03-03 16:08:34 -0800457 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800458 while (!list_empty(&ep->queue)) {
459 req = list_entry(ep->queue.next, struct at91_request, queue);
460 done(ep, req, status);
461 }
462}
463
464/*-------------------------------------------------------------------------*/
465
David Brownell8b2e7662006-07-05 02:38:56 -0700466static int at91_ep_enable(struct usb_ep *_ep,
467 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800468{
469 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100470 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800471 u16 maxpacket;
472 u32 tmp;
473 unsigned long flags;
474
475 if (!_ep || !ep
476 || !desc || ep->desc
477 || _ep->name == ep0name
478 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700479 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800480 || maxpacket > ep->maxpacket) {
481 DBG("bad ep or descriptor\n");
482 return -EINVAL;
483 }
484
Harro Haan4f4c5e32010-03-01 18:01:56 +0100485 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800486 DBG("bogus device state\n");
487 return -ESHUTDOWN;
488 }
489
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200490 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800491 switch (tmp) {
492 case USB_ENDPOINT_XFER_CONTROL:
493 DBG("only one control endpoint\n");
494 return -EINVAL;
495 case USB_ENDPOINT_XFER_INT:
496 if (maxpacket > 64)
497 goto bogus_max;
498 break;
499 case USB_ENDPOINT_XFER_BULK:
500 switch (maxpacket) {
501 case 8:
502 case 16:
503 case 32:
504 case 64:
505 goto ok;
506 }
507bogus_max:
508 DBG("bogus maxpacket %d\n", maxpacket);
509 return -EINVAL;
510 case USB_ENDPOINT_XFER_ISOC:
511 if (!ep->is_pingpong) {
512 DBG("iso requires double buffering\n");
513 return -EINVAL;
514 }
515 break;
516 }
517
518ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100519 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800520
521 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200522 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800523 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
524 ep->stopped = 0;
525 if (ep->is_in)
526 tmp |= 0x04;
527 tmp <<= 8;
528 tmp |= AT91_UDP_EPEDS;
529 __raw_writel(tmp, ep->creg);
530
531 ep->desc = desc;
532 ep->ep.maxpacket = maxpacket;
533
534 /*
535 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
536 * since endpoint resets don't reset hw pingpong state.
537 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100538 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
539 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800540
Harro Haan4f4c5e32010-03-01 18:01:56 +0100541 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800542 return 0;
543}
544
545static int at91_ep_disable (struct usb_ep * _ep)
546{
547 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800548 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800549 unsigned long flags;
550
551 if (ep == &ep->udc->ep[0])
552 return -EINVAL;
553
Harro Haan4f4c5e32010-03-01 18:01:56 +0100554 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800555
556 nuke(ep, -ESHUTDOWN);
557
558 /* restore the endpoint's pristine config */
559 ep->desc = NULL;
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200560 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800561 ep->ep.maxpacket = ep->maxpacket;
562
563 /* reset fifos and endpoint */
564 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800565 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
566 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800567 __raw_writel(0, ep->creg);
568 }
569
Harro Haan4f4c5e32010-03-01 18:01:56 +0100570 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800571 return 0;
572}
573
574/*
575 * this is a PIO-only driver, so there's nothing
576 * interesting for request or buffer allocation.
577 */
578
David Brownell8b2e7662006-07-05 02:38:56 -0700579static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800580at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800581{
582 struct at91_request *req;
583
Robert P. J. Daycd861282006-12-13 00:34:52 -0800584 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800585 if (!req)
586 return NULL;
587
588 INIT_LIST_HEAD(&req->queue);
589 return &req->req;
590}
591
592static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
593{
594 struct at91_request *req;
595
596 req = container_of(_req, struct at91_request, req);
597 BUG_ON(!list_empty(&req->queue));
598 kfree(req);
599}
600
David Brownellbae4bd82006-01-22 10:32:37 -0800601static int at91_ep_queue(struct usb_ep *_ep,
602 struct usb_request *_req, gfp_t gfp_flags)
603{
604 struct at91_request *req;
605 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100606 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800607 int status;
608 unsigned long flags;
609
610 req = container_of(_req, struct at91_request, req);
611 ep = container_of(_ep, struct at91_ep, ep);
612
613 if (!_req || !_req->complete
614 || !_req->buf || !list_empty(&req->queue)) {
615 DBG("invalid request\n");
616 return -EINVAL;
617 }
618
619 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
620 DBG("invalid ep\n");
621 return -EINVAL;
622 }
623
Harro Haan4f4c5e32010-03-01 18:01:56 +0100624 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800625
Harro Haan4f4c5e32010-03-01 18:01:56 +0100626 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800627 DBG("invalid device\n");
628 return -EINVAL;
629 }
630
631 _req->status = -EINPROGRESS;
632 _req->actual = 0;
633
Harro Haan4f4c5e32010-03-01 18:01:56 +0100634 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800635
636 /* try to kickstart any empty and idle queue */
637 if (list_empty(&ep->queue) && !ep->stopped) {
638 int is_ep0;
639
640 /*
641 * If this control request has a non-empty DATA stage, this
642 * will start that stage. It works just like a non-control
643 * request (until the status stage starts, maybe early).
644 *
645 * If the data stage is empty, then this starts a successful
646 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
647 */
648 is_ep0 = (ep->ep.name == ep0name);
649 if (is_ep0) {
650 u32 tmp;
651
Harro Haan4f4c5e32010-03-01 18:01:56 +0100652 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800653 status = -EINVAL;
654 goto done;
655 }
656
657 /*
658 * defer changing CONFG until after the gadget driver
659 * reconfigures the endpoints.
660 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100661 if (udc->wait_for_config_ack) {
662 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800663 tmp ^= AT91_UDP_CONFG;
664 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100665 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800666 }
667 if (req->req.length == 0) {
668ep0_in_status:
669 PACKET("ep0 in/status\n");
670 status = 0;
671 tmp = __raw_readl(ep->creg);
672 tmp &= ~SET_FX;
673 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
674 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100675 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800676 goto done;
677 }
678 }
679
680 if (ep->is_in)
681 status = write_fifo(ep, req);
682 else {
683 status = read_fifo(ep, req);
684
685 /* IN/STATUS stage is otherwise triggered by irq */
686 if (status && is_ep0)
687 goto ep0_in_status;
688 }
689 } else
690 status = 0;
691
692 if (req && !status) {
693 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100694 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800695 }
696done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100697 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800698 return (status < 0) ? status : 0;
699}
700
701static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
702{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100703 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800704 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100705 unsigned long flags;
706 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800707
708 ep = container_of(_ep, struct at91_ep, ep);
709 if (!_ep || ep->ep.name == ep0name)
710 return -EINVAL;
711
Harro Haan4f4c5e32010-03-01 18:01:56 +0100712 udc = ep->udc;
713
714 spin_lock_irqsave(&udc->lock, flags);
715
David Brownellbae4bd82006-01-22 10:32:37 -0800716 /* make sure it's actually queued on this endpoint */
717 list_for_each_entry (req, &ep->queue, queue) {
718 if (&req->req == _req)
719 break;
720 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100721 if (&req->req != _req) {
722 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800723 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100724 }
David Brownellbae4bd82006-01-22 10:32:37 -0800725
726 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100727 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800728 return 0;
729}
730
731static int at91_ep_set_halt(struct usb_ep *_ep, int value)
732{
733 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800734 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800735 u32 __iomem *creg;
736 u32 csr;
737 unsigned long flags;
738 int status = 0;
739
740 if (!_ep || ep->is_iso || !ep->udc->clocked)
741 return -EINVAL;
742
743 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100744 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800745
746 csr = __raw_readl(creg);
747
748 /*
749 * fail with still-busy IN endpoints, ensuring correct sequencing
750 * of data tx then stall. note that the fifo rx bytecount isn't
751 * completely accurate as a tx bytecount.
752 */
753 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
754 status = -EAGAIN;
755 else {
756 csr |= CLR_FX;
757 csr &= ~SET_FX;
758 if (value) {
759 csr |= AT91_UDP_FORCESTALL;
760 VDBG("halt %s\n", ep->ep.name);
761 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800762 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
763 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800764 csr &= ~AT91_UDP_FORCESTALL;
765 }
766 __raw_writel(csr, creg);
767 }
768
Harro Haan4f4c5e32010-03-01 18:01:56 +0100769 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800770 return status;
771}
772
David Brownell398acce2007-02-15 18:47:17 -0800773static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800774 .enable = at91_ep_enable,
775 .disable = at91_ep_disable,
776 .alloc_request = at91_ep_alloc_request,
777 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800778 .queue = at91_ep_queue,
779 .dequeue = at91_ep_dequeue,
780 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200781 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800782};
783
784/*-------------------------------------------------------------------------*/
785
786static int at91_get_frame(struct usb_gadget *gadget)
787{
Andrew Victorffd33262006-12-07 22:44:33 -0800788 struct at91_udc *udc = to_udc(gadget);
789
David Brownellbae4bd82006-01-22 10:32:37 -0800790 if (!to_udc(gadget)->clocked)
791 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800792 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800793}
794
795static int at91_wakeup(struct usb_gadget *gadget)
796{
797 struct at91_udc *udc = to_udc(gadget);
798 u32 glbstate;
799 int status = -EINVAL;
800 unsigned long flags;
801
Harvey Harrison441b62c2008-03-03 16:08:34 -0800802 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100803 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800804
805 if (!udc->clocked || !udc->suspended)
806 goto done;
807
808 /* NOTE: some "early versions" handle ESR differently ... */
809
Andrew Victorffd33262006-12-07 22:44:33 -0800810 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800811 if (!(glbstate & AT91_UDP_ESR))
812 goto done;
813 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800814 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800815
816done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100817 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800818 return status;
819}
820
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300821/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800822static void udc_reinit(struct at91_udc *udc)
823{
824 u32 i;
825
826 INIT_LIST_HEAD(&udc->gadget.ep_list);
827 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
828
829 for (i = 0; i < NUM_ENDPOINTS; i++) {
830 struct at91_ep *ep = &udc->ep[i];
831
832 if (i != 0)
833 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
834 ep->desc = NULL;
835 ep->stopped = 0;
836 ep->fifo_bank = 0;
837 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800838 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200839 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800840 INIT_LIST_HEAD(&ep->queue);
841 }
842}
843
844static void stop_activity(struct at91_udc *udc)
845{
846 struct usb_gadget_driver *driver = udc->driver;
847 int i;
848
849 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
850 driver = NULL;
851 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700852 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800853
854 for (i = 0; i < NUM_ENDPOINTS; i++) {
855 struct at91_ep *ep = &udc->ep[i];
856 ep->stopped = 1;
857 nuke(ep, -ESHUTDOWN);
858 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100859 if (driver) {
860 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800861 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100862 spin_lock(&udc->lock);
863 }
David Brownellbae4bd82006-01-22 10:32:37 -0800864
865 udc_reinit(udc);
866}
867
868static void clk_on(struct at91_udc *udc)
869{
870 if (udc->clocked)
871 return;
872 udc->clocked = 1;
873 clk_enable(udc->iclk);
874 clk_enable(udc->fclk);
875}
876
877static void clk_off(struct at91_udc *udc)
878{
879 if (!udc->clocked)
880 return;
881 udc->clocked = 0;
882 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800883 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700884 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800885}
886
887/*
888 * activate/deactivate link with host; minimize power usage for
889 * inactive links by cutting clocks and transceiver power.
890 */
891static void pullup(struct at91_udc *udc, int is_on)
892{
David Brownellf3db6e82008-01-05 13:21:43 -0800893 int active = !udc->board.pullup_active_low;
894
David Brownellbae4bd82006-01-22 10:32:37 -0800895 if (!udc->enabled || !udc->vbus)
896 is_on = 0;
897 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800898
David Brownellbae4bd82006-01-22 10:32:37 -0800899 if (is_on) {
900 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800901 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800902 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800903 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800904 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100905 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800906 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
907
908 txvc |= AT91_UDP_TXVC_PUON;
909 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200910 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800911 u32 usbpucr;
912
913 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
914 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
915 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
916 }
Andrew Victorffd33262006-12-07 22:44:33 -0800917 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800918 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800919 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800920 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800921 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800922 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100923 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800924 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
925
926 txvc &= ~AT91_UDP_TXVC_PUON;
927 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200928 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800929 u32 usbpucr;
930
931 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
932 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
933 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
934 }
David Brownellbae4bd82006-01-22 10:32:37 -0800935 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800936 }
937}
938
939/* vbus is here! turn everything on that's ready */
940static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
941{
942 struct at91_udc *udc = to_udc(gadget);
943 unsigned long flags;
944
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200945 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100946 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800947 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800948 if (udc->driver)
949 pullup(udc, is_active);
950 else
951 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100952 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800953 return 0;
954}
955
956static int at91_pullup(struct usb_gadget *gadget, int is_on)
957{
958 struct at91_udc *udc = to_udc(gadget);
959 unsigned long flags;
960
Harro Haan4f4c5e32010-03-01 18:01:56 +0100961 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800962 udc->enabled = is_on = !!is_on;
963 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100964 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800965 return 0;
966}
967
968static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
969{
970 struct at91_udc *udc = to_udc(gadget);
971 unsigned long flags;
972
Harro Haan4f4c5e32010-03-01 18:01:56 +0100973 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800974 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100975 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800976 return 0;
977}
978
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300979static int at91_start(struct usb_gadget_driver *driver,
980 int (*bind)(struct usb_gadget *));
981static int at91_stop(struct usb_gadget_driver *driver);
982
David Brownellbae4bd82006-01-22 10:32:37 -0800983static const struct usb_gadget_ops at91_udc_ops = {
984 .get_frame = at91_get_frame,
985 .wakeup = at91_wakeup,
986 .set_selfpowered = at91_set_selfpowered,
987 .vbus_session = at91_vbus_session,
988 .pullup = at91_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300989 .start = at91_start,
990 .stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800991
992 /*
993 * VBUS-powered devices may also also want to support bigger
994 * power budgets after an appropriate SET_CONFIGURATION.
995 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200996 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -0800997};
998
999/*-------------------------------------------------------------------------*/
1000
1001static int handle_ep(struct at91_ep *ep)
1002{
1003 struct at91_request *req;
1004 u32 __iomem *creg = ep->creg;
1005 u32 csr = __raw_readl(creg);
1006
1007 if (!list_empty(&ep->queue))
1008 req = list_entry(ep->queue.next,
1009 struct at91_request, queue);
1010 else
1011 req = NULL;
1012
1013 if (ep->is_in) {
1014 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1015 csr |= CLR_FX;
1016 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1017 __raw_writel(csr, creg);
1018 }
1019 if (req)
1020 return write_fifo(ep, req);
1021
1022 } else {
1023 if (csr & AT91_UDP_STALLSENT) {
1024 /* STALLSENT bit == ISOERR */
1025 if (ep->is_iso && req)
1026 req->req.status = -EILSEQ;
1027 csr |= CLR_FX;
1028 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1029 __raw_writel(csr, creg);
1030 csr = __raw_readl(creg);
1031 }
1032 if (req && (csr & RX_DATA_READY))
1033 return read_fifo(ep, req);
1034 }
1035 return 0;
1036}
1037
1038union setup {
1039 u8 raw[8];
1040 struct usb_ctrlrequest r;
1041};
1042
1043static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1044{
1045 u32 __iomem *creg = ep->creg;
1046 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1047 unsigned rxcount, i = 0;
1048 u32 tmp;
1049 union setup pkt;
1050 int status = 0;
1051
1052 /* read and ack SETUP; hard-fail for bogus packets */
1053 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1054 if (likely(rxcount == 8)) {
1055 while (rxcount--)
1056 pkt.raw[i++] = __raw_readb(dreg);
1057 if (pkt.r.bRequestType & USB_DIR_IN) {
1058 csr |= AT91_UDP_DIR;
1059 ep->is_in = 1;
1060 } else {
1061 csr &= ~AT91_UDP_DIR;
1062 ep->is_in = 0;
1063 }
1064 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001065 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001066 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1067 status = -EINVAL;
1068 }
1069 csr |= CLR_FX;
1070 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1071 __raw_writel(csr, creg);
1072 udc->wait_for_addr_ack = 0;
1073 udc->wait_for_config_ack = 0;
1074 ep->stopped = 0;
1075 if (unlikely(status != 0))
1076 goto stall;
1077
1078#define w_index le16_to_cpu(pkt.r.wIndex)
1079#define w_value le16_to_cpu(pkt.r.wValue)
1080#define w_length le16_to_cpu(pkt.r.wLength)
1081
1082 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1083 pkt.r.bRequestType, pkt.r.bRequest,
1084 w_value, w_index, w_length);
1085
1086 /*
1087 * A few standard requests get handled here, ones that touch
1088 * hardware ... notably for device and endpoint features.
1089 */
1090 udc->req_pending = 1;
1091 csr = __raw_readl(creg);
1092 csr |= CLR_FX;
1093 csr &= ~SET_FX;
1094 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1095
1096 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1097 | USB_REQ_SET_ADDRESS:
1098 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1099 udc->addr = w_value;
1100 udc->wait_for_addr_ack = 1;
1101 udc->req_pending = 0;
1102 /* FADDR is set later, when we ack host STATUS */
1103 return;
1104
1105 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1106 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001107 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001108 if (pkt.r.wValue)
1109 udc->wait_for_config_ack = (tmp == 0);
1110 else
1111 udc->wait_for_config_ack = (tmp != 0);
1112 if (udc->wait_for_config_ack)
1113 VDBG("wait for config\n");
1114 /* CONFG is toggled later, if gadget driver succeeds */
1115 break;
1116
1117 /*
1118 * Hosts may set or clear remote wakeup status, and
1119 * devices may report they're VBUS powered.
1120 */
1121 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1122 | USB_REQ_GET_STATUS:
1123 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001124 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001125 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1126 PACKET("get device status\n");
1127 __raw_writeb(tmp, dreg);
1128 __raw_writeb(0, dreg);
1129 goto write_in;
1130 /* then STATUS starts later, automatically */
1131 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1132 | USB_REQ_SET_FEATURE:
1133 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1134 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001135 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001136 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001137 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001138 goto succeed;
1139 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1140 | USB_REQ_CLEAR_FEATURE:
1141 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1142 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001143 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001144 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001145 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001146 goto succeed;
1147
1148 /*
1149 * Interfaces have no feature settings; this is pretty useless.
1150 * we won't even insist the interface exists...
1151 */
1152 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1153 | USB_REQ_GET_STATUS:
1154 PACKET("get interface status\n");
1155 __raw_writeb(0, dreg);
1156 __raw_writeb(0, dreg);
1157 goto write_in;
1158 /* then STATUS starts later, automatically */
1159 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1160 | USB_REQ_SET_FEATURE:
1161 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1162 | USB_REQ_CLEAR_FEATURE:
1163 goto stall;
1164
1165 /*
1166 * Hosts may clear bulk/intr endpoint halt after the gadget
1167 * driver sets it (not widely used); or set it (for testing)
1168 */
1169 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1170 | USB_REQ_GET_STATUS:
1171 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1172 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001173 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001174 goto stall;
1175
1176 if (tmp) {
1177 if ((w_index & USB_DIR_IN)) {
1178 if (!ep->is_in)
1179 goto stall;
1180 } else if (ep->is_in)
1181 goto stall;
1182 }
1183 PACKET("get %s status\n", ep->ep.name);
1184 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1185 tmp = (1 << USB_ENDPOINT_HALT);
1186 else
1187 tmp = 0;
1188 __raw_writeb(tmp, dreg);
1189 __raw_writeb(0, dreg);
1190 goto write_in;
1191 /* then STATUS starts later, automatically */
1192 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1193 | USB_REQ_SET_FEATURE:
1194 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1195 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001196 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001197 goto stall;
1198 if (!ep->desc || ep->is_iso)
1199 goto stall;
1200 if ((w_index & USB_DIR_IN)) {
1201 if (!ep->is_in)
1202 goto stall;
1203 } else if (ep->is_in)
1204 goto stall;
1205
1206 tmp = __raw_readl(ep->creg);
1207 tmp &= ~SET_FX;
1208 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1209 __raw_writel(tmp, ep->creg);
1210 goto succeed;
1211 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1212 | USB_REQ_CLEAR_FEATURE:
1213 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1214 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001215 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001216 goto stall;
1217 if (tmp == 0)
1218 goto succeed;
1219 if (!ep->desc || ep->is_iso)
1220 goto stall;
1221 if ((w_index & USB_DIR_IN)) {
1222 if (!ep->is_in)
1223 goto stall;
1224 } else if (ep->is_in)
1225 goto stall;
1226
Andrew Victorffd33262006-12-07 22:44:33 -08001227 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1228 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001229 tmp = __raw_readl(ep->creg);
1230 tmp |= CLR_FX;
1231 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1232 __raw_writel(tmp, ep->creg);
1233 if (!list_empty(&ep->queue))
1234 handle_ep(ep);
1235 goto succeed;
1236 }
1237
1238#undef w_value
1239#undef w_index
1240#undef w_length
1241
1242 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001243 if (udc->driver) {
1244 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001245 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001246 spin_lock(&udc->lock);
1247 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001248 else
1249 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001250 if (status < 0) {
1251stall:
1252 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1253 pkt.r.bRequestType, pkt.r.bRequest, status);
1254 csr |= AT91_UDP_FORCESTALL;
1255 __raw_writel(csr, creg);
1256 udc->req_pending = 0;
1257 }
1258 return;
1259
1260succeed:
1261 /* immediate successful (IN) STATUS after zero length DATA */
1262 PACKET("ep0 in/status\n");
1263write_in:
1264 csr |= AT91_UDP_TXPKTRDY;
1265 __raw_writel(csr, creg);
1266 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001267}
1268
1269static void handle_ep0(struct at91_udc *udc)
1270{
1271 struct at91_ep *ep0 = &udc->ep[0];
1272 u32 __iomem *creg = ep0->creg;
1273 u32 csr = __raw_readl(creg);
1274 struct at91_request *req;
1275
1276 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1277 nuke(ep0, -EPROTO);
1278 udc->req_pending = 0;
1279 csr |= CLR_FX;
1280 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1281 __raw_writel(csr, creg);
1282 VDBG("ep0 stalled\n");
1283 csr = __raw_readl(creg);
1284 }
1285 if (csr & AT91_UDP_RXSETUP) {
1286 nuke(ep0, 0);
1287 udc->req_pending = 0;
1288 handle_setup(udc, ep0, csr);
1289 return;
1290 }
1291
1292 if (list_empty(&ep0->queue))
1293 req = NULL;
1294 else
1295 req = list_entry(ep0->queue.next, struct at91_request, queue);
1296
1297 /* host ACKed an IN packet that we sent */
1298 if (csr & AT91_UDP_TXCOMP) {
1299 csr |= CLR_FX;
1300 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1301
1302 /* write more IN DATA? */
1303 if (req && ep0->is_in) {
1304 if (handle_ep(ep0))
1305 udc->req_pending = 0;
1306
1307 /*
1308 * Ack after:
1309 * - last IN DATA packet (including GET_STATUS)
1310 * - IN/STATUS for OUT DATA
1311 * - IN/STATUS for any zero-length DATA stage
1312 * except for the IN DATA case, the host should send
1313 * an OUT status later, which we'll ack.
1314 */
1315 } else {
1316 udc->req_pending = 0;
1317 __raw_writel(csr, creg);
1318
1319 /*
1320 * SET_ADDRESS takes effect only after the STATUS
1321 * (to the original address) gets acked.
1322 */
1323 if (udc->wait_for_addr_ack) {
1324 u32 tmp;
1325
Andrew Victorffd33262006-12-07 22:44:33 -08001326 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001327 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001328 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001329 tmp &= ~AT91_UDP_FADDEN;
1330 if (udc->addr)
1331 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001332 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001333
1334 udc->wait_for_addr_ack = 0;
1335 VDBG("address %d\n", udc->addr);
1336 }
1337 }
1338 }
1339
1340 /* OUT packet arrived ... */
1341 else if (csr & AT91_UDP_RX_DATA_BK0) {
1342 csr |= CLR_FX;
1343 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1344
1345 /* OUT DATA stage */
1346 if (!ep0->is_in) {
1347 if (req) {
1348 if (handle_ep(ep0)) {
1349 /* send IN/STATUS */
1350 PACKET("ep0 in/status\n");
1351 csr = __raw_readl(creg);
1352 csr &= ~SET_FX;
1353 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1354 __raw_writel(csr, creg);
1355 udc->req_pending = 0;
1356 }
1357 } else if (udc->req_pending) {
1358 /*
1359 * AT91 hardware has a hard time with this
1360 * "deferred response" mode for control-OUT
1361 * transfers. (For control-IN it's fine.)
1362 *
1363 * The normal solution leaves OUT data in the
1364 * fifo until the gadget driver is ready.
1365 * We couldn't do that here without disabling
1366 * the IRQ that tells about SETUP packets,
1367 * e.g. when the host gets impatient...
1368 *
1369 * Working around it by copying into a buffer
1370 * would almost be a non-deferred response,
1371 * except that it wouldn't permit reliable
1372 * stalling of the request. Instead, demand
1373 * that gadget drivers not use this mode.
1374 */
1375 DBG("no control-OUT deferred responses!\n");
1376 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1377 udc->req_pending = 0;
1378 }
1379
1380 /* STATUS stage for control-IN; ack. */
1381 } else {
1382 PACKET("ep0 out/status ACK\n");
1383 __raw_writel(csr, creg);
1384
1385 /* "early" status stage */
1386 if (req)
1387 done(ep0, req, 0);
1388 }
1389 }
1390}
1391
David Howells7d12e782006-10-05 14:55:46 +01001392static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001393{
1394 struct at91_udc *udc = _udc;
1395 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001396 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001397 unsigned long flags;
1398
1399 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001400
1401 if (!udc->clocked) {
1402 clk_on(udc);
1403 disable_clock = 1;
1404 }
David Brownellbae4bd82006-01-22 10:32:37 -08001405
1406 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001407 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001408
Andrew Victorffd33262006-12-07 22:44:33 -08001409 status = at91_udp_read(udc, AT91_UDP_ISR)
1410 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001411 if (!status)
1412 break;
1413
1414 /* USB reset irq: not maskable */
1415 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001416 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1417 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001418 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001419 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1420 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001421 VDBG("end bus reset\n");
1422 udc->addr = 0;
1423 stop_activity(udc);
1424
1425 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001426 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001427 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001428 udc->gadget.speed = USB_SPEED_FULL;
1429 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001430 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001431
1432 /*
1433 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001434 * USB host is present. That saves power, but for
1435 * boards that don't support VBUS detection, both
1436 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001437 */
1438
1439 /* host initiated suspend (3+ms bus idle) */
1440 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001441 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1442 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1443 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001444 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001445 if (udc->suspended)
1446 continue;
1447 udc->suspended = 1;
1448
1449 /*
1450 * NOTE: when suspending a VBUS-powered device, the
1451 * gadget driver should switch into slow clock mode
1452 * and then into standby to avoid drawing more than
1453 * 500uA power (2500uA for some high-power configs).
1454 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001455 if (udc->driver && udc->driver->suspend) {
1456 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001457 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001458 spin_lock(&udc->lock);
1459 }
David Brownellbae4bd82006-01-22 10:32:37 -08001460
1461 /* host initiated resume */
1462 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001463 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1464 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1465 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001466 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001467 if (!udc->suspended)
1468 continue;
1469 udc->suspended = 0;
1470
1471 /*
1472 * NOTE: for a VBUS-powered device, the gadget driver
1473 * would normally want to switch out of slow clock
1474 * mode into normal mode.
1475 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001476 if (udc->driver && udc->driver->resume) {
1477 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001478 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001479 spin_lock(&udc->lock);
1480 }
David Brownellbae4bd82006-01-22 10:32:37 -08001481
1482 /* endpoint IRQs are cleared by handling them */
1483 } else {
1484 int i;
1485 unsigned mask = 1;
1486 struct at91_ep *ep = &udc->ep[1];
1487
1488 if (status & mask)
1489 handle_ep0(udc);
1490 for (i = 1; i < NUM_ENDPOINTS; i++) {
1491 mask <<= 1;
1492 if (status & mask)
1493 handle_ep(ep);
1494 ep++;
1495 }
1496 }
1497 }
1498
Harro Haanc6c35232010-03-01 17:38:37 +01001499 if (disable_clock)
1500 clk_off(udc);
1501
Harro Haan4f4c5e32010-03-01 18:01:56 +01001502 spin_unlock_irqrestore(&udc->lock, flags);
1503
David Brownellbae4bd82006-01-22 10:32:37 -08001504 return IRQ_HANDLED;
1505}
1506
1507/*-------------------------------------------------------------------------*/
1508
David Brownell8b2e7662006-07-05 02:38:56 -07001509static void nop_release(struct device *dev)
1510{
1511 /* nothing to free */
1512}
1513
David Brownellbae4bd82006-01-22 10:32:37 -08001514static struct at91_udc controller = {
1515 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001516 .ops = &at91_udc_ops,
1517 .ep0 = &controller.ep[0].ep,
1518 .name = driver_name,
1519 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001520 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001521 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001522 }
1523 },
1524 .ep[0] = {
1525 .ep = {
1526 .name = ep0name,
1527 .ops = &at91_ep_ops,
1528 },
1529 .udc = &controller,
1530 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001531 .int_mask = 1 << 0,
1532 },
1533 .ep[1] = {
1534 .ep = {
1535 .name = "ep1",
1536 .ops = &at91_ep_ops,
1537 },
1538 .udc = &controller,
1539 .is_pingpong = 1,
1540 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001541 .int_mask = 1 << 1,
1542 },
1543 .ep[2] = {
1544 .ep = {
1545 .name = "ep2",
1546 .ops = &at91_ep_ops,
1547 },
1548 .udc = &controller,
1549 .is_pingpong = 1,
1550 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001551 .int_mask = 1 << 2,
1552 },
1553 .ep[3] = {
1554 .ep = {
1555 /* could actually do bulk too */
1556 .name = "ep3-int",
1557 .ops = &at91_ep_ops,
1558 },
1559 .udc = &controller,
1560 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001561 .int_mask = 1 << 3,
1562 },
1563 .ep[4] = {
1564 .ep = {
1565 .name = "ep4",
1566 .ops = &at91_ep_ops,
1567 },
1568 .udc = &controller,
1569 .is_pingpong = 1,
1570 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001571 .int_mask = 1 << 4,
1572 },
1573 .ep[5] = {
1574 .ep = {
1575 .name = "ep5",
1576 .ops = &at91_ep_ops,
1577 },
1578 .udc = &controller,
1579 .is_pingpong = 1,
1580 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001581 .int_mask = 1 << 5,
1582 },
David Brownell8b2e7662006-07-05 02:38:56 -07001583 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001584};
1585
Ryan Mallon40372422010-07-13 05:09:16 +01001586static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1587{
1588 value ^= udc->board.vbus_active_low;
1589 if (value != udc->vbus)
1590 at91_vbus_session(&udc->gadget, value);
1591}
1592
David Howells7d12e782006-10-05 14:55:46 +01001593static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001594{
1595 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001596
1597 /* vbus needs at least brief debouncing */
1598 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001599 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001600
1601 return IRQ_HANDLED;
1602}
1603
Ryan Mallon40372422010-07-13 05:09:16 +01001604static void at91_vbus_timer_work(struct work_struct *work)
1605{
1606 struct at91_udc *udc = container_of(work, struct at91_udc,
1607 vbus_timer_work);
1608
1609 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1610
1611 if (!timer_pending(&udc->vbus_timer))
1612 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1613}
1614
1615static void at91_vbus_timer(unsigned long data)
1616{
1617 struct at91_udc *udc = (struct at91_udc *)data;
1618
1619 /*
1620 * If we are polling vbus it is likely that the gpio is on an
1621 * bus such as i2c or spi which may sleep, so schedule some work
1622 * to read the vbus gpio
1623 */
1624 if (!work_pending(&udc->vbus_timer_work))
1625 schedule_work(&udc->vbus_timer_work);
1626}
1627
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001628static int at91_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001629 int (*bind)(struct usb_gadget *))
David Brownellbae4bd82006-01-22 10:32:37 -08001630{
1631 struct at91_udc *udc = &controller;
1632 int retval;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001633 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001634
1635 if (!driver
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001636 || driver->max_speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001637 || !bind
David Brownellbae4bd82006-01-22 10:32:37 -08001638 || !driver->setup) {
1639 DBG("bad parameter.\n");
1640 return -EINVAL;
1641 }
1642
1643 if (udc->driver) {
1644 DBG("UDC already has a gadget driver\n");
1645 return -EBUSY;
1646 }
1647
1648 udc->driver = driver;
1649 udc->gadget.dev.driver = &driver->driver;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001650 dev_set_drvdata(&udc->gadget.dev, &driver->driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001651 udc->enabled = 1;
1652 udc->selfpowered = 1;
1653
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001654 retval = bind(&udc->gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001655 if (retval) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001656 DBG("bind() returned %d\n", retval);
David Brownellbae4bd82006-01-22 10:32:37 -08001657 udc->driver = NULL;
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001658 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001659 dev_set_drvdata(&udc->gadget.dev, NULL);
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001660 udc->enabled = 0;
1661 udc->selfpowered = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001662 return retval;
1663 }
1664
Harro Haan4f4c5e32010-03-01 18:01:56 +01001665 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001666 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001667 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001668
1669 DBG("bound to %s\n", driver->driver.name);
1670 return 0;
1671}
David Brownellbae4bd82006-01-22 10:32:37 -08001672
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001673static int at91_stop(struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001674{
1675 struct at91_udc *udc = &controller;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001676 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001677
David Brownell6bea4762006-12-05 03:15:33 -08001678 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001679 return -EINVAL;
1680
Harro Haan4f4c5e32010-03-01 18:01:56 +01001681 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001682 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001683 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001684 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001685 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001686
1687 driver->unbind(&udc->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001688 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001689 dev_set_drvdata(&udc->gadget.dev, NULL);
David Brownellbae4bd82006-01-22 10:32:37 -08001690 udc->driver = NULL;
1691
1692 DBG("unbound from %s\n", driver->driver.name);
1693 return 0;
1694}
David Brownellbae4bd82006-01-22 10:32:37 -08001695
1696/*-------------------------------------------------------------------------*/
1697
1698static void at91udc_shutdown(struct platform_device *dev)
1699{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001700 struct at91_udc *udc = platform_get_drvdata(dev);
1701 unsigned long flags;
1702
David Brownellbae4bd82006-01-22 10:32:37 -08001703 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001704 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001705 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001706 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001707}
1708
David Brownell398acce2007-02-15 18:47:17 -08001709static int __init at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001710{
1711 struct device *dev = &pdev->dev;
1712 struct at91_udc *udc;
1713 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001714 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001715
1716 if (!dev->platform_data) {
1717 /* small (so we copy it) but critical! */
1718 DBG("missing platform_data\n");
1719 return -ENODEV;
1720 }
1721
David Brownell8b2e7662006-07-05 02:38:56 -07001722 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001723 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001724 return -ENODEV;
1725 }
1726 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1727 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001728 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001729 return -ENODEV;
1730 }
1731
Andrew Victorffd33262006-12-07 22:44:33 -08001732 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1733 if (!res)
1734 return -ENXIO;
1735
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001736 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001737 DBG("someone's using UDC memory\n");
1738 return -EBUSY;
1739 }
1740
1741 /* init software state */
1742 udc = &controller;
1743 udc->gadget.dev.parent = dev;
1744 udc->board = *(struct at91_udc_data *) dev->platform_data;
1745 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001746 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001747 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001748
David Brownellf3db6e82008-01-05 13:21:43 -08001749 /* rm9200 needs manual D+ pullup; off by default */
1750 if (cpu_is_at91rm9200()) {
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001751 if (gpio_is_valid(udc->board.pullup_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001752 DBG("no D+ pullup?\n");
1753 retval = -ENODEV;
1754 goto fail0;
1755 }
1756 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1757 if (retval) {
1758 DBG("D+ pullup is busy\n");
1759 goto fail0;
1760 }
1761 gpio_direction_output(udc->board.pullup_pin,
1762 udc->board.pullup_active_low);
1763 }
1764
David Brownellbb242802008-05-27 19:24:20 -07001765 /* newer chips have more FIFO memory than rm9200 */
Jean-Christophe PLAGNIOL-VILLARDbf1f0a02011-05-13 17:03:02 +02001766 if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
David Brownellbb242802008-05-27 19:24:20 -07001767 udc->ep[0].maxpacket = 64;
1768 udc->ep[3].maxpacket = 64;
1769 udc->ep[4].maxpacket = 512;
1770 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001771 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
David Brownellbb242802008-05-27 19:24:20 -07001772 udc->ep[3].maxpacket = 64;
1773 } else if (cpu_is_at91sam9263()) {
1774 udc->ep[0].maxpacket = 64;
1775 udc->ep[3].maxpacket = 64;
1776 }
1777
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001778 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001779 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001780 retval = -ENOMEM;
1781 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001782 }
1783
1784 udc_reinit(udc);
1785
David Brownellbae4bd82006-01-22 10:32:37 -08001786 /* get interface and function clocks */
1787 udc->iclk = clk_get(dev, "udc_clk");
1788 udc->fclk = clk_get(dev, "udpck");
1789 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1790 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001791 retval = -ENODEV;
David Brownellf3db6e82008-01-05 13:21:43 -08001792 /* NOTE: we "know" here that refcounts on these are NOPs */
1793 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001794 }
1795
1796 retval = device_register(&udc->gadget.dev);
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001797 if (retval < 0) {
1798 put_device(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001799 goto fail0b;
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001800 }
David Brownellbae4bd82006-01-22 10:32:37 -08001801
David Brownell8b2e7662006-07-05 02:38:56 -07001802 /* don't do anything until we have both gadget driver and VBUS */
1803 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001804 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1805 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001806 /* Clear all pending interrupts - UDP may be used by bootloader. */
1807 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001808 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001809
1810 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001811 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001812 retval = request_irq(udc->udp_irq, at91_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001813 0, driver_name, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001814 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001815 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001816 goto fail1;
1817 }
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001818 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001819 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1820 if (retval < 0) {
1821 DBG("request vbus pin failed\n");
1822 goto fail2;
1823 }
1824 gpio_direction_input(udc->board.vbus_pin);
1825
Andrew Victor29ba4b52006-12-07 22:44:38 -08001826 /*
1827 * Get the initial state of VBUS - we cannot expect
1828 * a pending interrupt.
1829 */
Ryan Mallon40372422010-07-13 05:09:16 +01001830 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1831 udc->board.vbus_active_low;
1832
1833 if (udc->board.vbus_polled) {
1834 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1835 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1836 (unsigned long)udc);
1837 mod_timer(&udc->vbus_timer,
1838 jiffies + VBUS_POLL_TIMEOUT);
1839 } else {
1840 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001841 0, driver_name, udc)) {
Ryan Mallon40372422010-07-13 05:09:16 +01001842 DBG("request vbus irq %d failed\n",
1843 udc->board.vbus_pin);
1844 retval = -EBUSY;
1845 goto fail3;
1846 }
David Brownellbae4bd82006-01-22 10:32:37 -08001847 }
1848 } else {
1849 DBG("no VBUS detection, assuming always-on\n");
1850 udc->vbus = 1;
1851 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001852 retval = usb_add_gadget_udc(dev, &udc->gadget);
1853 if (retval)
1854 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001855 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001856 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001857 create_debug_file(udc);
1858
1859 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1860 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001861fail4:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001862 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001863 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001864fail3:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001865 if (gpio_is_valid(udc->board.vbus_pin))
David Brownellf3db6e82008-01-05 13:21:43 -08001866 gpio_free(udc->board.vbus_pin);
1867fail2:
1868 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001869fail1:
1870 device_unregister(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001871fail0b:
1872 iounmap(udc->udp_baseaddr);
1873fail0a:
1874 if (cpu_is_at91rm9200())
1875 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001876fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001877 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001878 DBG("%s probe failed, %d\n", driver_name, retval);
1879 return retval;
1880}
1881
David Brownell398acce2007-02-15 18:47:17 -08001882static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001883{
David Brownell8b2e7662006-07-05 02:38:56 -07001884 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001885 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001886 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001887
1888 DBG("remove\n");
1889
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001890 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001891 if (udc->driver)
1892 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001893
Harro Haan4f4c5e32010-03-01 18:01:56 +01001894 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001895 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001896 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001897
David Brownell8b2e7662006-07-05 02:38:56 -07001898 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001899 remove_debug_file(udc);
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001900 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001901 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001902 gpio_free(udc->board.vbus_pin);
1903 }
David Brownell8b2e7662006-07-05 02:38:56 -07001904 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001905 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001906
1907 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001908
1909 if (cpu_is_at91rm9200())
1910 gpio_free(udc->board.pullup_pin);
1911
Andrew Victorffd33262006-12-07 22:44:33 -08001912 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001913 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001914
1915 clk_put(udc->iclk);
1916 clk_put(udc->fclk);
1917
1918 return 0;
1919}
1920
1921#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001922static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001923{
David Brownell8b2e7662006-07-05 02:38:56 -07001924 struct at91_udc *udc = platform_get_drvdata(pdev);
1925 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001926 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001927
David Brownell8b2e7662006-07-05 02:38:56 -07001928 /* Unless we can act normally to the host (letting it wake us up
1929 * whenever it has work for us) force disconnect. Wakeup requires
1930 * PLLB for USB events (signaling for reset, wakeup, or incoming
1931 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001932 */
David Brownell8b2e7662006-07-05 02:38:56 -07001933 if ((!udc->suspended && udc->addr)
1934 || !wake
1935 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001936 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001937 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001938 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001939 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001940 } else
1941 enable_irq_wake(udc->udp_irq);
1942
David Brownell66e56ce2007-01-16 12:46:39 -08001943 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001944 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001945 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001946 return 0;
1947}
1948
David Brownell8b2e7662006-07-05 02:38:56 -07001949static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001950{
David Brownell8b2e7662006-07-05 02:38:56 -07001951 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001952 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001953
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001954 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001955 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001956 disable_irq_wake(udc->board.vbus_pin);
1957
David Brownellbae4bd82006-01-22 10:32:37 -08001958 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001959 if (udc->active_suspend)
1960 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001961 else {
1962 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001963 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001964 spin_unlock_irqrestore(&udc->lock, flags);
1965 }
David Brownellbae4bd82006-01-22 10:32:37 -08001966 return 0;
1967}
1968#else
1969#define at91udc_suspend NULL
1970#define at91udc_resume NULL
1971#endif
1972
David Brownelldee497d2007-02-24 13:54:56 -08001973static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001974 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001975 .shutdown = at91udc_shutdown,
1976 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001977 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001978 .driver = {
1979 .name = (char *) driver_name,
1980 .owner = THIS_MODULE,
1981 },
1982};
1983
David Brownell398acce2007-02-15 18:47:17 -08001984static int __init udc_init_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001985{
David Brownelldee497d2007-02-24 13:54:56 -08001986 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001987}
1988module_init(udc_init_module);
1989
David Brownell398acce2007-02-15 18:47:17 -08001990static void __exit udc_exit_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001991{
David Brownelldee497d2007-02-24 13:54:56 -08001992 platform_driver_unregister(&at91_udc_driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001993}
1994module_exit(udc_exit_module);
1995
David Brownell8b2e7662006-07-05 02:38:56 -07001996MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001997MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1998MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07001999MODULE_ALIAS("platform:at91_udc");