blob: 98cbc06c30fda338e74530636383f574c42df2bd [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.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 */
23
David Brownellf3db6e82008-01-05 13:21:43 -080024#undef VERBOSE_DEBUG
David Brownellbae4bd82006-01-22 10:32:37 -080025#undef PACKET_TRACE
26
David Brownellbae4bd82006-01-22 10:32:37 -080027#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/platform_device.h>
30#include <linux/delay.h>
31#include <linux/ioport.h>
David Brownellbae4bd82006-01-22 10:32:37 -080032#include <linux/slab.h>
David Brownellbae4bd82006-01-22 10:32:37 -080033#include <linux/errno.h>
34#include <linux/init.h>
35#include <linux/list.h>
36#include <linux/interrupt.h>
37#include <linux/proc_fs.h>
38#include <linux/clk.h>
David Brownell5f848132006-12-16 15:34:53 -080039#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070040#include <linux/usb/gadget.h>
Bryan Wub38b03b2011-06-02 12:51:29 +080041#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080042
43#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010044#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080045#include <asm/io.h>
46#include <asm/irq.h>
47#include <asm/system.h>
David Brownellf3db6e82008-01-05 13:21:43 -080048#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080049
Russell Kinga09e64f2008-08-05 16:14:15 +010050#include <mach/board.h>
51#include <mach/cpu.h>
52#include <mach/at91sam9261_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080053
54#include "at91_udc.h"
55
56
57/*
58 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070059 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
60 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080061 *
62 * This driver expects the board has been wired with two GPIOs suppporting
63 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070064 * testing hasn't covered such cases.)
65 *
66 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080067 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070068 *
David Brownellbae4bd82006-01-22 10:32:37 -080069 * The VBUS sensing helps during enumeration, and allows both USB clocks
70 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070071 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
72 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080073 */
74
David Brownell8b2e7662006-07-05 02:38:56 -070075#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080076
77static const char driver_name [] = "at91_udc";
78static const char ep0name[] = "ep0";
79
Ryan Mallon40372422010-07-13 05:09:16 +010080#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080081
Harro Haan4f4c5e32010-03-01 18:01:56 +010082#define at91_udp_read(udc, reg) \
83 __raw_readl((udc)->udp_baseaddr + (reg))
84#define at91_udp_write(udc, reg, val) \
85 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080086
87/*-------------------------------------------------------------------------*/
88
89#ifdef CONFIG_USB_GADGET_DEBUG_FILES
90
91#include <linux/seq_file.h>
92
93static const char debug_filename[] = "driver/udc";
94
95#define FOURBITS "%s%s%s%s"
96#define EIGHTBITS FOURBITS FOURBITS
97
98static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
99{
100 static char *types[] = {
101 "control", "out-iso", "out-bulk", "out-int",
102 "BOGUS", "in-iso", "in-bulk", "in-int"};
103
104 u32 csr;
105 struct at91_request *req;
106 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100107 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800108
Harro Haan4f4c5e32010-03-01 18:01:56 +0100109 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800110
111 csr = __raw_readl(ep->creg);
112
113 /* NOTE: not collecting per-endpoint irq statistics... */
114
115 seq_printf(s, "\n");
116 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
117 ep->ep.name, ep->ep.maxpacket,
118 ep->is_in ? "in" : "out",
119 ep->is_iso ? " iso" : "",
120 ep->is_pingpong
121 ? (ep->fifo_bank ? "pong" : "ping")
122 : "",
123 ep->stopped ? " stopped" : "");
124 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
125 csr,
126 (csr & 0x07ff0000) >> 16,
127 (csr & (1 << 15)) ? "enabled" : "disabled",
128 (csr & (1 << 11)) ? "DATA1" : "DATA0",
129 types[(csr & 0x700) >> 8],
130
131 /* iff type is control then print current direction */
132 (!(csr & 0x700))
133 ? ((csr & (1 << 7)) ? " IN" : " OUT")
134 : "",
135 (csr & (1 << 6)) ? " rxdatabk1" : "",
136 (csr & (1 << 5)) ? " forcestall" : "",
137 (csr & (1 << 4)) ? " txpktrdy" : "",
138
139 (csr & (1 << 3)) ? " stallsent" : "",
140 (csr & (1 << 2)) ? " rxsetup" : "",
141 (csr & (1 << 1)) ? " rxdatabk0" : "",
142 (csr & (1 << 0)) ? " txcomp" : "");
143 if (list_empty (&ep->queue))
144 seq_printf(s, "\t(queue empty)\n");
145
146 else list_for_each_entry (req, &ep->queue, queue) {
147 unsigned length = req->req.actual;
148
149 seq_printf(s, "\treq %p len %d/%d buf %p\n",
150 &req->req, length,
151 req->req.length, req->req.buf);
152 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100153 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800154}
155
156static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
157{
158 int i;
159
160 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
161 (mask & (1 << 13)) ? " wakeup" : "",
162 (mask & (1 << 12)) ? " endbusres" : "",
163
164 (mask & (1 << 11)) ? " sofint" : "",
165 (mask & (1 << 10)) ? " extrsm" : "",
166 (mask & (1 << 9)) ? " rxrsm" : "",
167 (mask & (1 << 8)) ? " rxsusp" : "");
168 for (i = 0; i < 8; i++) {
169 if (mask & (1 << i))
170 seq_printf(s, " ep%d", i);
171 }
172 seq_printf(s, "\n");
173}
174
175static int proc_udc_show(struct seq_file *s, void *unused)
176{
177 struct at91_udc *udc = s->private;
178 struct at91_ep *ep;
179 u32 tmp;
180
181 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
182
183 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
184 udc->vbus ? "present" : "off",
185 udc->enabled
186 ? (udc->vbus ? "active" : "enabled")
187 : "disabled",
188 udc->selfpowered ? "self" : "VBUS",
189 udc->suspended ? ", suspended" : "",
190 udc->driver ? udc->driver->driver.name : "(none)");
191
192 /* don't access registers when interface isn't clocked */
193 if (!udc->clocked) {
194 seq_printf(s, "(not clocked)\n");
195 return 0;
196 }
197
Andrew Victorffd33262006-12-07 22:44:33 -0800198 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800199 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
200 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
201 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
202 (tmp & AT91_UDP_NUM));
203
Andrew Victorffd33262006-12-07 22:44:33 -0800204 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800205 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
206 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
207 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
208 (tmp & AT91_UDP_ESR) ? " esr" : "",
209 (tmp & AT91_UDP_CONFG) ? " confg" : "",
210 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
211
Andrew Victorffd33262006-12-07 22:44:33 -0800212 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800213 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
214 (tmp & AT91_UDP_FEN) ? " fen" : "",
215 (tmp & AT91_UDP_FADD));
216
Andrew Victorffd33262006-12-07 22:44:33 -0800217 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
218 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800219
220 if (udc->enabled && udc->vbus) {
221 proc_ep_show(s, &udc->ep[0]);
222 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
223 if (ep->desc)
224 proc_ep_show(s, ep);
225 }
226 }
227 return 0;
228}
229
230static int proc_udc_open(struct inode *inode, struct file *file)
231{
232 return single_open(file, proc_udc_show, PDE(inode)->data);
233}
234
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300235static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700236 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800237 .open = proc_udc_open,
238 .read = seq_read,
239 .llseek = seq_lseek,
240 .release = single_release,
241};
242
243static void create_debug_file(struct at91_udc *udc)
244{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700245 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800246}
247
248static void remove_debug_file(struct at91_udc *udc)
249{
250 if (udc->pde)
251 remove_proc_entry(debug_filename, NULL);
252}
253
254#else
255
256static inline void create_debug_file(struct at91_udc *udc) {}
257static inline void remove_debug_file(struct at91_udc *udc) {}
258
259#endif
260
261
262/*-------------------------------------------------------------------------*/
263
264static void done(struct at91_ep *ep, struct at91_request *req, int status)
265{
266 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800267 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800268
269 list_del_init(&req->queue);
270 if (req->req.status == -EINPROGRESS)
271 req->req.status = status;
272 else
273 status = req->req.status;
274 if (status && status != -ESHUTDOWN)
275 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
276
277 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100278 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800279 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100280 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800281 ep->stopped = stopped;
282
283 /* ep0 is always ready; other endpoints need a non-empty queue */
284 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800285 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800286}
287
288/*-------------------------------------------------------------------------*/
289
290/* bits indicating OUT fifo has data ready */
291#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
292
293/*
294 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
295 * back most of the value you just read (because of side effects, including
296 * bits that may change after reading and before writing).
297 *
298 * Except when changing a specific bit, always write values which:
299 * - clear SET_FX bits (setting them could change something)
300 * - set CLR_FX bits (clearing them could change something)
301 *
302 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
303 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700304 *
305 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
306 * implying a need to wait for one write to complete (test relevant bits)
307 * before starting the next write. This shouldn't be an issue given how
308 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800309 */
310#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700311#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
312 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800313
314/* pull OUT packet data from the endpoint's fifo */
315static int read_fifo (struct at91_ep *ep, struct at91_request *req)
316{
317 u32 __iomem *creg = ep->creg;
318 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
319 u32 csr;
320 u8 *buf;
321 unsigned int count, bufferspace, is_done;
322
323 buf = req->req.buf + req->req.actual;
324 bufferspace = req->req.length - req->req.actual;
325
326 /*
327 * there might be nothing to read if ep_queue() calls us,
328 * or if we already emptied both pingpong buffers
329 */
330rescan:
331 csr = __raw_readl(creg);
332 if ((csr & RX_DATA_READY) == 0)
333 return 0;
334
335 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
336 if (count > ep->ep.maxpacket)
337 count = ep->ep.maxpacket;
338 if (count > bufferspace) {
339 DBG("%s buffer overflow\n", ep->ep.name);
340 req->req.status = -EOVERFLOW;
341 count = bufferspace;
342 }
343 __raw_readsb(dreg, buf, count);
344
345 /* release and swap pingpong mem bank */
346 csr |= CLR_FX;
347 if (ep->is_pingpong) {
348 if (ep->fifo_bank == 0) {
349 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
350 ep->fifo_bank = 1;
351 } else {
352 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
353 ep->fifo_bank = 0;
354 }
355 } else
356 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
357 __raw_writel(csr, creg);
358
359 req->req.actual += count;
360 is_done = (count < ep->ep.maxpacket);
361 if (count == bufferspace)
362 is_done = 1;
363
364 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
365 is_done ? " (done)" : "");
366
367 /*
368 * avoid extra trips through IRQ logic for packets already in
369 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
370 */
371 if (is_done)
372 done(ep, req, 0);
373 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100374 /*
375 * One dummy read to delay the code because of a HW glitch:
376 * CSR returns bad RXCOUNT when read too soon after updating
377 * RX_DATA_BK flags.
378 */
379 csr = __raw_readl(creg);
380
David Brownellbae4bd82006-01-22 10:32:37 -0800381 bufferspace -= count;
382 buf += count;
383 goto rescan;
384 }
385
386 return is_done;
387}
388
389/* load fifo for an IN packet */
390static int write_fifo(struct at91_ep *ep, struct at91_request *req)
391{
392 u32 __iomem *creg = ep->creg;
393 u32 csr = __raw_readl(creg);
394 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
395 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700396 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800397
398 /*
399 * TODO: allow for writing two packets to the fifo ... that'll
400 * reduce the amount of IN-NAKing, but probably won't affect
401 * throughput much. (Unlike preventing OUT-NAKing!)
402 */
403
404 /*
405 * If ep_queue() calls us, the queue is empty and possibly in
406 * odd states like TXCOMP not yet cleared (we do it, saving at
407 * least one IRQ) or the fifo not yet being free. Those aren't
408 * issues normally (IRQ handler fast path).
409 */
410 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
411 if (csr & AT91_UDP_TXCOMP) {
412 csr |= CLR_FX;
413 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
414 __raw_writel(csr, creg);
415 csr = __raw_readl(creg);
416 }
417 if (csr & AT91_UDP_TXPKTRDY)
418 return 0;
419 }
420
David Brownell3cf27232008-04-06 23:32:55 -0700421 buf = req->req.buf + req->req.actual;
422 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800423 total = req->req.length - req->req.actual;
424 if (ep->ep.maxpacket < total) {
425 count = ep->ep.maxpacket;
426 is_last = 0;
427 } else {
428 count = total;
429 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
430 }
431
432 /*
433 * Write the packet, maybe it's a ZLP.
434 *
435 * NOTE: incrementing req->actual before we receive the ACK means
436 * gadget driver IN bytecounts can be wrong in fault cases. That's
437 * fixable with PIO drivers like this one (save "count" here, and
438 * do the increment later on TX irq), but not for most DMA hardware.
439 *
440 * So all gadget drivers must accept that potential error. Some
441 * hardware supports precise fifo status reporting, letting them
442 * recover when the actual bytecount matters (e.g. for USB Test
443 * and Measurement Class devices).
444 */
David Brownell3cf27232008-04-06 23:32:55 -0700445 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800446 csr &= ~SET_FX;
447 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
448 __raw_writel(csr, creg);
449 req->req.actual += count;
450
451 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
452 is_last ? " (done)" : "");
453 if (is_last)
454 done(ep, req, 0);
455 return is_last;
456}
457
458static void nuke(struct at91_ep *ep, int status)
459{
460 struct at91_request *req;
461
462 // terminer chaque requete dans la queue
463 ep->stopped = 1;
464 if (list_empty(&ep->queue))
465 return;
466
Harvey Harrison441b62c2008-03-03 16:08:34 -0800467 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800468 while (!list_empty(&ep->queue)) {
469 req = list_entry(ep->queue.next, struct at91_request, queue);
470 done(ep, req, status);
471 }
472}
473
474/*-------------------------------------------------------------------------*/
475
David Brownell8b2e7662006-07-05 02:38:56 -0700476static int at91_ep_enable(struct usb_ep *_ep,
477 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800478{
479 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100480 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800481 u16 maxpacket;
482 u32 tmp;
483 unsigned long flags;
484
485 if (!_ep || !ep
486 || !desc || ep->desc
487 || _ep->name == ep0name
488 || desc->bDescriptorType != USB_DT_ENDPOINT
489 || (maxpacket = le16_to_cpu(desc->wMaxPacketSize)) == 0
490 || maxpacket > ep->maxpacket) {
491 DBG("bad ep or descriptor\n");
492 return -EINVAL;
493 }
494
Harro Haan4f4c5e32010-03-01 18:01:56 +0100495 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800496 DBG("bogus device state\n");
497 return -ESHUTDOWN;
498 }
499
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200500 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800501 switch (tmp) {
502 case USB_ENDPOINT_XFER_CONTROL:
503 DBG("only one control endpoint\n");
504 return -EINVAL;
505 case USB_ENDPOINT_XFER_INT:
506 if (maxpacket > 64)
507 goto bogus_max;
508 break;
509 case USB_ENDPOINT_XFER_BULK:
510 switch (maxpacket) {
511 case 8:
512 case 16:
513 case 32:
514 case 64:
515 goto ok;
516 }
517bogus_max:
518 DBG("bogus maxpacket %d\n", maxpacket);
519 return -EINVAL;
520 case USB_ENDPOINT_XFER_ISOC:
521 if (!ep->is_pingpong) {
522 DBG("iso requires double buffering\n");
523 return -EINVAL;
524 }
525 break;
526 }
527
528ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100529 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800530
531 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200532 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800533 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
534 ep->stopped = 0;
535 if (ep->is_in)
536 tmp |= 0x04;
537 tmp <<= 8;
538 tmp |= AT91_UDP_EPEDS;
539 __raw_writel(tmp, ep->creg);
540
541 ep->desc = desc;
542 ep->ep.maxpacket = maxpacket;
543
544 /*
545 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
546 * since endpoint resets don't reset hw pingpong state.
547 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100548 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
549 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800550
Harro Haan4f4c5e32010-03-01 18:01:56 +0100551 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800552 return 0;
553}
554
555static int at91_ep_disable (struct usb_ep * _ep)
556{
557 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800558 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800559 unsigned long flags;
560
561 if (ep == &ep->udc->ep[0])
562 return -EINVAL;
563
Harro Haan4f4c5e32010-03-01 18:01:56 +0100564 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800565
566 nuke(ep, -ESHUTDOWN);
567
568 /* restore the endpoint's pristine config */
569 ep->desc = NULL;
570 ep->ep.maxpacket = ep->maxpacket;
571
572 /* reset fifos and endpoint */
573 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800574 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
575 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800576 __raw_writel(0, ep->creg);
577 }
578
Harro Haan4f4c5e32010-03-01 18:01:56 +0100579 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800580 return 0;
581}
582
583/*
584 * this is a PIO-only driver, so there's nothing
585 * interesting for request or buffer allocation.
586 */
587
David Brownell8b2e7662006-07-05 02:38:56 -0700588static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800589at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800590{
591 struct at91_request *req;
592
Robert P. J. Daycd861282006-12-13 00:34:52 -0800593 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800594 if (!req)
595 return NULL;
596
597 INIT_LIST_HEAD(&req->queue);
598 return &req->req;
599}
600
601static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
602{
603 struct at91_request *req;
604
605 req = container_of(_req, struct at91_request, req);
606 BUG_ON(!list_empty(&req->queue));
607 kfree(req);
608}
609
David Brownellbae4bd82006-01-22 10:32:37 -0800610static int at91_ep_queue(struct usb_ep *_ep,
611 struct usb_request *_req, gfp_t gfp_flags)
612{
613 struct at91_request *req;
614 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100615 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800616 int status;
617 unsigned long flags;
618
619 req = container_of(_req, struct at91_request, req);
620 ep = container_of(_ep, struct at91_ep, ep);
621
622 if (!_req || !_req->complete
623 || !_req->buf || !list_empty(&req->queue)) {
624 DBG("invalid request\n");
625 return -EINVAL;
626 }
627
628 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
629 DBG("invalid ep\n");
630 return -EINVAL;
631 }
632
Harro Haan4f4c5e32010-03-01 18:01:56 +0100633 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800634
Harro Haan4f4c5e32010-03-01 18:01:56 +0100635 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800636 DBG("invalid device\n");
637 return -EINVAL;
638 }
639
640 _req->status = -EINPROGRESS;
641 _req->actual = 0;
642
Harro Haan4f4c5e32010-03-01 18:01:56 +0100643 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800644
645 /* try to kickstart any empty and idle queue */
646 if (list_empty(&ep->queue) && !ep->stopped) {
647 int is_ep0;
648
649 /*
650 * If this control request has a non-empty DATA stage, this
651 * will start that stage. It works just like a non-control
652 * request (until the status stage starts, maybe early).
653 *
654 * If the data stage is empty, then this starts a successful
655 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
656 */
657 is_ep0 = (ep->ep.name == ep0name);
658 if (is_ep0) {
659 u32 tmp;
660
Harro Haan4f4c5e32010-03-01 18:01:56 +0100661 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800662 status = -EINVAL;
663 goto done;
664 }
665
666 /*
667 * defer changing CONFG until after the gadget driver
668 * reconfigures the endpoints.
669 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100670 if (udc->wait_for_config_ack) {
671 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800672 tmp ^= AT91_UDP_CONFG;
673 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100674 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800675 }
676 if (req->req.length == 0) {
677ep0_in_status:
678 PACKET("ep0 in/status\n");
679 status = 0;
680 tmp = __raw_readl(ep->creg);
681 tmp &= ~SET_FX;
682 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
683 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100684 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800685 goto done;
686 }
687 }
688
689 if (ep->is_in)
690 status = write_fifo(ep, req);
691 else {
692 status = read_fifo(ep, req);
693
694 /* IN/STATUS stage is otherwise triggered by irq */
695 if (status && is_ep0)
696 goto ep0_in_status;
697 }
698 } else
699 status = 0;
700
701 if (req && !status) {
702 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100703 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800704 }
705done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100706 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800707 return (status < 0) ? status : 0;
708}
709
710static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
711{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100712 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800713 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100714 unsigned long flags;
715 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800716
717 ep = container_of(_ep, struct at91_ep, ep);
718 if (!_ep || ep->ep.name == ep0name)
719 return -EINVAL;
720
Harro Haan4f4c5e32010-03-01 18:01:56 +0100721 udc = ep->udc;
722
723 spin_lock_irqsave(&udc->lock, flags);
724
David Brownellbae4bd82006-01-22 10:32:37 -0800725 /* make sure it's actually queued on this endpoint */
726 list_for_each_entry (req, &ep->queue, queue) {
727 if (&req->req == _req)
728 break;
729 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100730 if (&req->req != _req) {
731 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800732 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100733 }
David Brownellbae4bd82006-01-22 10:32:37 -0800734
735 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100736 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800737 return 0;
738}
739
740static int at91_ep_set_halt(struct usb_ep *_ep, int value)
741{
742 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800743 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800744 u32 __iomem *creg;
745 u32 csr;
746 unsigned long flags;
747 int status = 0;
748
749 if (!_ep || ep->is_iso || !ep->udc->clocked)
750 return -EINVAL;
751
752 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100753 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800754
755 csr = __raw_readl(creg);
756
757 /*
758 * fail with still-busy IN endpoints, ensuring correct sequencing
759 * of data tx then stall. note that the fifo rx bytecount isn't
760 * completely accurate as a tx bytecount.
761 */
762 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
763 status = -EAGAIN;
764 else {
765 csr |= CLR_FX;
766 csr &= ~SET_FX;
767 if (value) {
768 csr |= AT91_UDP_FORCESTALL;
769 VDBG("halt %s\n", ep->ep.name);
770 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800771 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
772 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800773 csr &= ~AT91_UDP_FORCESTALL;
774 }
775 __raw_writel(csr, creg);
776 }
777
Harro Haan4f4c5e32010-03-01 18:01:56 +0100778 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800779 return status;
780}
781
David Brownell398acce2007-02-15 18:47:17 -0800782static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800783 .enable = at91_ep_enable,
784 .disable = at91_ep_disable,
785 .alloc_request = at91_ep_alloc_request,
786 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800787 .queue = at91_ep_queue,
788 .dequeue = at91_ep_dequeue,
789 .set_halt = at91_ep_set_halt,
790 // there's only imprecise fifo status reporting
791};
792
793/*-------------------------------------------------------------------------*/
794
795static int at91_get_frame(struct usb_gadget *gadget)
796{
Andrew Victorffd33262006-12-07 22:44:33 -0800797 struct at91_udc *udc = to_udc(gadget);
798
David Brownellbae4bd82006-01-22 10:32:37 -0800799 if (!to_udc(gadget)->clocked)
800 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800801 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800802}
803
804static int at91_wakeup(struct usb_gadget *gadget)
805{
806 struct at91_udc *udc = to_udc(gadget);
807 u32 glbstate;
808 int status = -EINVAL;
809 unsigned long flags;
810
Harvey Harrison441b62c2008-03-03 16:08:34 -0800811 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100812 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800813
814 if (!udc->clocked || !udc->suspended)
815 goto done;
816
817 /* NOTE: some "early versions" handle ESR differently ... */
818
Andrew Victorffd33262006-12-07 22:44:33 -0800819 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800820 if (!(glbstate & AT91_UDP_ESR))
821 goto done;
822 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800823 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800824
825done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100826 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800827 return status;
828}
829
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300830/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800831static void udc_reinit(struct at91_udc *udc)
832{
833 u32 i;
834
835 INIT_LIST_HEAD(&udc->gadget.ep_list);
836 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
837
838 for (i = 0; i < NUM_ENDPOINTS; i++) {
839 struct at91_ep *ep = &udc->ep[i];
840
841 if (i != 0)
842 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
843 ep->desc = NULL;
844 ep->stopped = 0;
845 ep->fifo_bank = 0;
846 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800847 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
David Brownellbae4bd82006-01-22 10:32:37 -0800848 // initialiser une queue par endpoint
849 INIT_LIST_HEAD(&ep->queue);
850 }
851}
852
853static void stop_activity(struct at91_udc *udc)
854{
855 struct usb_gadget_driver *driver = udc->driver;
856 int i;
857
858 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
859 driver = NULL;
860 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700861 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800862
863 for (i = 0; i < NUM_ENDPOINTS; i++) {
864 struct at91_ep *ep = &udc->ep[i];
865 ep->stopped = 1;
866 nuke(ep, -ESHUTDOWN);
867 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100868 if (driver) {
869 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800870 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100871 spin_lock(&udc->lock);
872 }
David Brownellbae4bd82006-01-22 10:32:37 -0800873
874 udc_reinit(udc);
875}
876
877static void clk_on(struct at91_udc *udc)
878{
879 if (udc->clocked)
880 return;
881 udc->clocked = 1;
882 clk_enable(udc->iclk);
883 clk_enable(udc->fclk);
884}
885
886static void clk_off(struct at91_udc *udc)
887{
888 if (!udc->clocked)
889 return;
890 udc->clocked = 0;
891 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800892 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700893 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800894}
895
896/*
897 * activate/deactivate link with host; minimize power usage for
898 * inactive links by cutting clocks and transceiver power.
899 */
900static void pullup(struct at91_udc *udc, int is_on)
901{
David Brownellf3db6e82008-01-05 13:21:43 -0800902 int active = !udc->board.pullup_active_low;
903
David Brownellbae4bd82006-01-22 10:32:37 -0800904 if (!udc->enabled || !udc->vbus)
905 is_on = 0;
906 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800907
David Brownellbae4bd82006-01-22 10:32:37 -0800908 if (is_on) {
909 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800910 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800911 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800912 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800913 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100914 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800915 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
916
917 txvc |= AT91_UDP_TXVC_PUON;
918 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200919 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800920 u32 usbpucr;
921
922 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
923 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
924 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
925 }
Andrew Victorffd33262006-12-07 22:44:33 -0800926 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800927 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800928 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800929 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800930 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800931 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100932 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800933 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
934
935 txvc &= ~AT91_UDP_TXVC_PUON;
936 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200937 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800938 u32 usbpucr;
939
940 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
941 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
942 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
943 }
David Brownellbae4bd82006-01-22 10:32:37 -0800944 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800945 }
946}
947
948/* vbus is here! turn everything on that's ready */
949static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
950{
951 struct at91_udc *udc = to_udc(gadget);
952 unsigned long flags;
953
954 // VDBG("vbus %s\n", is_active ? "on" : "off");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100955 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800956 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800957 if (udc->driver)
958 pullup(udc, is_active);
959 else
960 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100961 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800962 return 0;
963}
964
965static int at91_pullup(struct usb_gadget *gadget, int is_on)
966{
967 struct at91_udc *udc = to_udc(gadget);
968 unsigned long flags;
969
Harro Haan4f4c5e32010-03-01 18:01:56 +0100970 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800971 udc->enabled = is_on = !!is_on;
972 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100973 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800974 return 0;
975}
976
977static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
978{
979 struct at91_udc *udc = to_udc(gadget);
980 unsigned long flags;
981
Harro Haan4f4c5e32010-03-01 18:01:56 +0100982 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800983 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100984 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800985 return 0;
986}
987
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300988static int at91_start(struct usb_gadget_driver *driver,
989 int (*bind)(struct usb_gadget *));
990static int at91_stop(struct usb_gadget_driver *driver);
991
David Brownellbae4bd82006-01-22 10:32:37 -0800992static const struct usb_gadget_ops at91_udc_ops = {
993 .get_frame = at91_get_frame,
994 .wakeup = at91_wakeup,
995 .set_selfpowered = at91_set_selfpowered,
996 .vbus_session = at91_vbus_session,
997 .pullup = at91_pullup,
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300998 .start = at91_start,
999 .stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -08001000
1001 /*
1002 * VBUS-powered devices may also also want to support bigger
1003 * power budgets after an appropriate SET_CONFIGURATION.
1004 */
1005 // .vbus_power = at91_vbus_power,
1006};
1007
1008/*-------------------------------------------------------------------------*/
1009
1010static int handle_ep(struct at91_ep *ep)
1011{
1012 struct at91_request *req;
1013 u32 __iomem *creg = ep->creg;
1014 u32 csr = __raw_readl(creg);
1015
1016 if (!list_empty(&ep->queue))
1017 req = list_entry(ep->queue.next,
1018 struct at91_request, queue);
1019 else
1020 req = NULL;
1021
1022 if (ep->is_in) {
1023 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1024 csr |= CLR_FX;
1025 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1026 __raw_writel(csr, creg);
1027 }
1028 if (req)
1029 return write_fifo(ep, req);
1030
1031 } else {
1032 if (csr & AT91_UDP_STALLSENT) {
1033 /* STALLSENT bit == ISOERR */
1034 if (ep->is_iso && req)
1035 req->req.status = -EILSEQ;
1036 csr |= CLR_FX;
1037 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1038 __raw_writel(csr, creg);
1039 csr = __raw_readl(creg);
1040 }
1041 if (req && (csr & RX_DATA_READY))
1042 return read_fifo(ep, req);
1043 }
1044 return 0;
1045}
1046
1047union setup {
1048 u8 raw[8];
1049 struct usb_ctrlrequest r;
1050};
1051
1052static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1053{
1054 u32 __iomem *creg = ep->creg;
1055 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1056 unsigned rxcount, i = 0;
1057 u32 tmp;
1058 union setup pkt;
1059 int status = 0;
1060
1061 /* read and ack SETUP; hard-fail for bogus packets */
1062 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1063 if (likely(rxcount == 8)) {
1064 while (rxcount--)
1065 pkt.raw[i++] = __raw_readb(dreg);
1066 if (pkt.r.bRequestType & USB_DIR_IN) {
1067 csr |= AT91_UDP_DIR;
1068 ep->is_in = 1;
1069 } else {
1070 csr &= ~AT91_UDP_DIR;
1071 ep->is_in = 0;
1072 }
1073 } else {
1074 // REVISIT this happens sometimes under load; why??
1075 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1076 status = -EINVAL;
1077 }
1078 csr |= CLR_FX;
1079 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1080 __raw_writel(csr, creg);
1081 udc->wait_for_addr_ack = 0;
1082 udc->wait_for_config_ack = 0;
1083 ep->stopped = 0;
1084 if (unlikely(status != 0))
1085 goto stall;
1086
1087#define w_index le16_to_cpu(pkt.r.wIndex)
1088#define w_value le16_to_cpu(pkt.r.wValue)
1089#define w_length le16_to_cpu(pkt.r.wLength)
1090
1091 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1092 pkt.r.bRequestType, pkt.r.bRequest,
1093 w_value, w_index, w_length);
1094
1095 /*
1096 * A few standard requests get handled here, ones that touch
1097 * hardware ... notably for device and endpoint features.
1098 */
1099 udc->req_pending = 1;
1100 csr = __raw_readl(creg);
1101 csr |= CLR_FX;
1102 csr &= ~SET_FX;
1103 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1104
1105 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1106 | USB_REQ_SET_ADDRESS:
1107 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1108 udc->addr = w_value;
1109 udc->wait_for_addr_ack = 1;
1110 udc->req_pending = 0;
1111 /* FADDR is set later, when we ack host STATUS */
1112 return;
1113
1114 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1115 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001116 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001117 if (pkt.r.wValue)
1118 udc->wait_for_config_ack = (tmp == 0);
1119 else
1120 udc->wait_for_config_ack = (tmp != 0);
1121 if (udc->wait_for_config_ack)
1122 VDBG("wait for config\n");
1123 /* CONFG is toggled later, if gadget driver succeeds */
1124 break;
1125
1126 /*
1127 * Hosts may set or clear remote wakeup status, and
1128 * devices may report they're VBUS powered.
1129 */
1130 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1131 | USB_REQ_GET_STATUS:
1132 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001133 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001134 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1135 PACKET("get device status\n");
1136 __raw_writeb(tmp, dreg);
1137 __raw_writeb(0, dreg);
1138 goto write_in;
1139 /* then STATUS starts later, automatically */
1140 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1141 | USB_REQ_SET_FEATURE:
1142 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1143 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001144 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001145 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001146 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001147 goto succeed;
1148 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1149 | USB_REQ_CLEAR_FEATURE:
1150 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1151 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001152 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001153 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001154 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001155 goto succeed;
1156
1157 /*
1158 * Interfaces have no feature settings; this is pretty useless.
1159 * we won't even insist the interface exists...
1160 */
1161 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1162 | USB_REQ_GET_STATUS:
1163 PACKET("get interface status\n");
1164 __raw_writeb(0, dreg);
1165 __raw_writeb(0, dreg);
1166 goto write_in;
1167 /* then STATUS starts later, automatically */
1168 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1169 | USB_REQ_SET_FEATURE:
1170 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1171 | USB_REQ_CLEAR_FEATURE:
1172 goto stall;
1173
1174 /*
1175 * Hosts may clear bulk/intr endpoint halt after the gadget
1176 * driver sets it (not widely used); or set it (for testing)
1177 */
1178 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1179 | USB_REQ_GET_STATUS:
1180 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1181 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001182 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001183 goto stall;
1184
1185 if (tmp) {
1186 if ((w_index & USB_DIR_IN)) {
1187 if (!ep->is_in)
1188 goto stall;
1189 } else if (ep->is_in)
1190 goto stall;
1191 }
1192 PACKET("get %s status\n", ep->ep.name);
1193 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1194 tmp = (1 << USB_ENDPOINT_HALT);
1195 else
1196 tmp = 0;
1197 __raw_writeb(tmp, dreg);
1198 __raw_writeb(0, dreg);
1199 goto write_in;
1200 /* then STATUS starts later, automatically */
1201 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1202 | USB_REQ_SET_FEATURE:
1203 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1204 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001205 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001206 goto stall;
1207 if (!ep->desc || ep->is_iso)
1208 goto stall;
1209 if ((w_index & USB_DIR_IN)) {
1210 if (!ep->is_in)
1211 goto stall;
1212 } else if (ep->is_in)
1213 goto stall;
1214
1215 tmp = __raw_readl(ep->creg);
1216 tmp &= ~SET_FX;
1217 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1218 __raw_writel(tmp, ep->creg);
1219 goto succeed;
1220 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1221 | USB_REQ_CLEAR_FEATURE:
1222 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1223 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001224 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001225 goto stall;
1226 if (tmp == 0)
1227 goto succeed;
1228 if (!ep->desc || ep->is_iso)
1229 goto stall;
1230 if ((w_index & USB_DIR_IN)) {
1231 if (!ep->is_in)
1232 goto stall;
1233 } else if (ep->is_in)
1234 goto stall;
1235
Andrew Victorffd33262006-12-07 22:44:33 -08001236 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1237 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001238 tmp = __raw_readl(ep->creg);
1239 tmp |= CLR_FX;
1240 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1241 __raw_writel(tmp, ep->creg);
1242 if (!list_empty(&ep->queue))
1243 handle_ep(ep);
1244 goto succeed;
1245 }
1246
1247#undef w_value
1248#undef w_index
1249#undef w_length
1250
1251 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001252 if (udc->driver) {
1253 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001254 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001255 spin_lock(&udc->lock);
1256 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001257 else
1258 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001259 if (status < 0) {
1260stall:
1261 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1262 pkt.r.bRequestType, pkt.r.bRequest, status);
1263 csr |= AT91_UDP_FORCESTALL;
1264 __raw_writel(csr, creg);
1265 udc->req_pending = 0;
1266 }
1267 return;
1268
1269succeed:
1270 /* immediate successful (IN) STATUS after zero length DATA */
1271 PACKET("ep0 in/status\n");
1272write_in:
1273 csr |= AT91_UDP_TXPKTRDY;
1274 __raw_writel(csr, creg);
1275 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001276}
1277
1278static void handle_ep0(struct at91_udc *udc)
1279{
1280 struct at91_ep *ep0 = &udc->ep[0];
1281 u32 __iomem *creg = ep0->creg;
1282 u32 csr = __raw_readl(creg);
1283 struct at91_request *req;
1284
1285 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1286 nuke(ep0, -EPROTO);
1287 udc->req_pending = 0;
1288 csr |= CLR_FX;
1289 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1290 __raw_writel(csr, creg);
1291 VDBG("ep0 stalled\n");
1292 csr = __raw_readl(creg);
1293 }
1294 if (csr & AT91_UDP_RXSETUP) {
1295 nuke(ep0, 0);
1296 udc->req_pending = 0;
1297 handle_setup(udc, ep0, csr);
1298 return;
1299 }
1300
1301 if (list_empty(&ep0->queue))
1302 req = NULL;
1303 else
1304 req = list_entry(ep0->queue.next, struct at91_request, queue);
1305
1306 /* host ACKed an IN packet that we sent */
1307 if (csr & AT91_UDP_TXCOMP) {
1308 csr |= CLR_FX;
1309 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1310
1311 /* write more IN DATA? */
1312 if (req && ep0->is_in) {
1313 if (handle_ep(ep0))
1314 udc->req_pending = 0;
1315
1316 /*
1317 * Ack after:
1318 * - last IN DATA packet (including GET_STATUS)
1319 * - IN/STATUS for OUT DATA
1320 * - IN/STATUS for any zero-length DATA stage
1321 * except for the IN DATA case, the host should send
1322 * an OUT status later, which we'll ack.
1323 */
1324 } else {
1325 udc->req_pending = 0;
1326 __raw_writel(csr, creg);
1327
1328 /*
1329 * SET_ADDRESS takes effect only after the STATUS
1330 * (to the original address) gets acked.
1331 */
1332 if (udc->wait_for_addr_ack) {
1333 u32 tmp;
1334
Andrew Victorffd33262006-12-07 22:44:33 -08001335 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001336 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001337 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001338 tmp &= ~AT91_UDP_FADDEN;
1339 if (udc->addr)
1340 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001341 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001342
1343 udc->wait_for_addr_ack = 0;
1344 VDBG("address %d\n", udc->addr);
1345 }
1346 }
1347 }
1348
1349 /* OUT packet arrived ... */
1350 else if (csr & AT91_UDP_RX_DATA_BK0) {
1351 csr |= CLR_FX;
1352 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1353
1354 /* OUT DATA stage */
1355 if (!ep0->is_in) {
1356 if (req) {
1357 if (handle_ep(ep0)) {
1358 /* send IN/STATUS */
1359 PACKET("ep0 in/status\n");
1360 csr = __raw_readl(creg);
1361 csr &= ~SET_FX;
1362 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1363 __raw_writel(csr, creg);
1364 udc->req_pending = 0;
1365 }
1366 } else if (udc->req_pending) {
1367 /*
1368 * AT91 hardware has a hard time with this
1369 * "deferred response" mode for control-OUT
1370 * transfers. (For control-IN it's fine.)
1371 *
1372 * The normal solution leaves OUT data in the
1373 * fifo until the gadget driver is ready.
1374 * We couldn't do that here without disabling
1375 * the IRQ that tells about SETUP packets,
1376 * e.g. when the host gets impatient...
1377 *
1378 * Working around it by copying into a buffer
1379 * would almost be a non-deferred response,
1380 * except that it wouldn't permit reliable
1381 * stalling of the request. Instead, demand
1382 * that gadget drivers not use this mode.
1383 */
1384 DBG("no control-OUT deferred responses!\n");
1385 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1386 udc->req_pending = 0;
1387 }
1388
1389 /* STATUS stage for control-IN; ack. */
1390 } else {
1391 PACKET("ep0 out/status ACK\n");
1392 __raw_writel(csr, creg);
1393
1394 /* "early" status stage */
1395 if (req)
1396 done(ep0, req, 0);
1397 }
1398 }
1399}
1400
David Howells7d12e782006-10-05 14:55:46 +01001401static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001402{
1403 struct at91_udc *udc = _udc;
1404 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001405 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001406 unsigned long flags;
1407
1408 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001409
1410 if (!udc->clocked) {
1411 clk_on(udc);
1412 disable_clock = 1;
1413 }
David Brownellbae4bd82006-01-22 10:32:37 -08001414
1415 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001416 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001417
Andrew Victorffd33262006-12-07 22:44:33 -08001418 status = at91_udp_read(udc, AT91_UDP_ISR)
1419 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001420 if (!status)
1421 break;
1422
1423 /* USB reset irq: not maskable */
1424 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001425 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1426 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001427 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001428 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1429 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001430 VDBG("end bus reset\n");
1431 udc->addr = 0;
1432 stop_activity(udc);
1433
1434 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001435 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001436 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001437 udc->gadget.speed = USB_SPEED_FULL;
1438 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001439 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001440
1441 /*
1442 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001443 * USB host is present. That saves power, but for
1444 * boards that don't support VBUS detection, both
1445 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001446 */
1447
1448 /* host initiated suspend (3+ms bus idle) */
1449 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001450 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1451 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1452 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
David Brownellbae4bd82006-01-22 10:32:37 -08001453 // VDBG("bus suspend\n");
1454 if (udc->suspended)
1455 continue;
1456 udc->suspended = 1;
1457
1458 /*
1459 * NOTE: when suspending a VBUS-powered device, the
1460 * gadget driver should switch into slow clock mode
1461 * and then into standby to avoid drawing more than
1462 * 500uA power (2500uA for some high-power configs).
1463 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001464 if (udc->driver && udc->driver->suspend) {
1465 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001466 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001467 spin_lock(&udc->lock);
1468 }
David Brownellbae4bd82006-01-22 10:32:37 -08001469
1470 /* host initiated resume */
1471 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001472 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1473 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1474 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
David Brownellbae4bd82006-01-22 10:32:37 -08001475 // VDBG("bus resume\n");
1476 if (!udc->suspended)
1477 continue;
1478 udc->suspended = 0;
1479
1480 /*
1481 * NOTE: for a VBUS-powered device, the gadget driver
1482 * would normally want to switch out of slow clock
1483 * mode into normal mode.
1484 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001485 if (udc->driver && udc->driver->resume) {
1486 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001487 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001488 spin_lock(&udc->lock);
1489 }
David Brownellbae4bd82006-01-22 10:32:37 -08001490
1491 /* endpoint IRQs are cleared by handling them */
1492 } else {
1493 int i;
1494 unsigned mask = 1;
1495 struct at91_ep *ep = &udc->ep[1];
1496
1497 if (status & mask)
1498 handle_ep0(udc);
1499 for (i = 1; i < NUM_ENDPOINTS; i++) {
1500 mask <<= 1;
1501 if (status & mask)
1502 handle_ep(ep);
1503 ep++;
1504 }
1505 }
1506 }
1507
Harro Haanc6c35232010-03-01 17:38:37 +01001508 if (disable_clock)
1509 clk_off(udc);
1510
Harro Haan4f4c5e32010-03-01 18:01:56 +01001511 spin_unlock_irqrestore(&udc->lock, flags);
1512
David Brownellbae4bd82006-01-22 10:32:37 -08001513 return IRQ_HANDLED;
1514}
1515
1516/*-------------------------------------------------------------------------*/
1517
David Brownell8b2e7662006-07-05 02:38:56 -07001518static void nop_release(struct device *dev)
1519{
1520 /* nothing to free */
1521}
1522
David Brownellbae4bd82006-01-22 10:32:37 -08001523static struct at91_udc controller = {
1524 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001525 .ops = &at91_udc_ops,
1526 .ep0 = &controller.ep[0].ep,
1527 .name = driver_name,
1528 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001529 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001530 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001531 }
1532 },
1533 .ep[0] = {
1534 .ep = {
1535 .name = ep0name,
1536 .ops = &at91_ep_ops,
1537 },
1538 .udc = &controller,
1539 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001540 .int_mask = 1 << 0,
1541 },
1542 .ep[1] = {
1543 .ep = {
1544 .name = "ep1",
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 << 1,
1551 },
1552 .ep[2] = {
1553 .ep = {
1554 .name = "ep2",
1555 .ops = &at91_ep_ops,
1556 },
1557 .udc = &controller,
1558 .is_pingpong = 1,
1559 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001560 .int_mask = 1 << 2,
1561 },
1562 .ep[3] = {
1563 .ep = {
1564 /* could actually do bulk too */
1565 .name = "ep3-int",
1566 .ops = &at91_ep_ops,
1567 },
1568 .udc = &controller,
1569 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001570 .int_mask = 1 << 3,
1571 },
1572 .ep[4] = {
1573 .ep = {
1574 .name = "ep4",
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 << 4,
1581 },
1582 .ep[5] = {
1583 .ep = {
1584 .name = "ep5",
1585 .ops = &at91_ep_ops,
1586 },
1587 .udc = &controller,
1588 .is_pingpong = 1,
1589 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001590 .int_mask = 1 << 5,
1591 },
David Brownell8b2e7662006-07-05 02:38:56 -07001592 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001593};
1594
Ryan Mallon40372422010-07-13 05:09:16 +01001595static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1596{
1597 value ^= udc->board.vbus_active_low;
1598 if (value != udc->vbus)
1599 at91_vbus_session(&udc->gadget, value);
1600}
1601
David Howells7d12e782006-10-05 14:55:46 +01001602static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001603{
1604 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001605
1606 /* vbus needs at least brief debouncing */
1607 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001608 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001609
1610 return IRQ_HANDLED;
1611}
1612
Ryan Mallon40372422010-07-13 05:09:16 +01001613static void at91_vbus_timer_work(struct work_struct *work)
1614{
1615 struct at91_udc *udc = container_of(work, struct at91_udc,
1616 vbus_timer_work);
1617
1618 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1619
1620 if (!timer_pending(&udc->vbus_timer))
1621 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1622}
1623
1624static void at91_vbus_timer(unsigned long data)
1625{
1626 struct at91_udc *udc = (struct at91_udc *)data;
1627
1628 /*
1629 * If we are polling vbus it is likely that the gpio is on an
1630 * bus such as i2c or spi which may sleep, so schedule some work
1631 * to read the vbus gpio
1632 */
1633 if (!work_pending(&udc->vbus_timer_work))
1634 schedule_work(&udc->vbus_timer_work);
1635}
1636
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001637static int at91_start(struct usb_gadget_driver *driver,
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001638 int (*bind)(struct usb_gadget *))
David Brownellbae4bd82006-01-22 10:32:37 -08001639{
1640 struct at91_udc *udc = &controller;
1641 int retval;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001642 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001643
1644 if (!driver
Wojtek Kaniewskibc92c322006-12-08 09:39:36 -08001645 || driver->speed < USB_SPEED_FULL
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001646 || !bind
David Brownellbae4bd82006-01-22 10:32:37 -08001647 || !driver->setup) {
1648 DBG("bad parameter.\n");
1649 return -EINVAL;
1650 }
1651
1652 if (udc->driver) {
1653 DBG("UDC already has a gadget driver\n");
1654 return -EBUSY;
1655 }
1656
1657 udc->driver = driver;
1658 udc->gadget.dev.driver = &driver->driver;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001659 dev_set_drvdata(&udc->gadget.dev, &driver->driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001660 udc->enabled = 1;
1661 udc->selfpowered = 1;
1662
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001663 retval = bind(&udc->gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001664 if (retval) {
Uwe Kleine-Königb0fca502010-08-12 17:43:53 +02001665 DBG("bind() returned %d\n", retval);
David Brownellbae4bd82006-01-22 10:32:37 -08001666 udc->driver = NULL;
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001667 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001668 dev_set_drvdata(&udc->gadget.dev, NULL);
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001669 udc->enabled = 0;
1670 udc->selfpowered = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001671 return retval;
1672 }
1673
Harro Haan4f4c5e32010-03-01 18:01:56 +01001674 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001675 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001676 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001677
1678 DBG("bound to %s\n", driver->driver.name);
1679 return 0;
1680}
David Brownellbae4bd82006-01-22 10:32:37 -08001681
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001682static int at91_stop(struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001683{
1684 struct at91_udc *udc = &controller;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001685 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001686
David Brownell6bea4762006-12-05 03:15:33 -08001687 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001688 return -EINVAL;
1689
Harro Haan4f4c5e32010-03-01 18:01:56 +01001690 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001691 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001692 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001693 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001694 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001695
1696 driver->unbind(&udc->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001697 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001698 dev_set_drvdata(&udc->gadget.dev, NULL);
David Brownellbae4bd82006-01-22 10:32:37 -08001699 udc->driver = NULL;
1700
1701 DBG("unbound from %s\n", driver->driver.name);
1702 return 0;
1703}
David Brownellbae4bd82006-01-22 10:32:37 -08001704
1705/*-------------------------------------------------------------------------*/
1706
1707static void at91udc_shutdown(struct platform_device *dev)
1708{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001709 struct at91_udc *udc = platform_get_drvdata(dev);
1710 unsigned long flags;
1711
David Brownellbae4bd82006-01-22 10:32:37 -08001712 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001713 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001714 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001715 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001716}
1717
David Brownell398acce2007-02-15 18:47:17 -08001718static int __init at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001719{
1720 struct device *dev = &pdev->dev;
1721 struct at91_udc *udc;
1722 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001723 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001724
1725 if (!dev->platform_data) {
1726 /* small (so we copy it) but critical! */
1727 DBG("missing platform_data\n");
1728 return -ENODEV;
1729 }
1730
David Brownell8b2e7662006-07-05 02:38:56 -07001731 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001732 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001733 return -ENODEV;
1734 }
1735 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1736 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001737 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001738 return -ENODEV;
1739 }
1740
Andrew Victorffd33262006-12-07 22:44:33 -08001741 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1742 if (!res)
1743 return -ENXIO;
1744
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001745 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001746 DBG("someone's using UDC memory\n");
1747 return -EBUSY;
1748 }
1749
1750 /* init software state */
1751 udc = &controller;
1752 udc->gadget.dev.parent = dev;
1753 udc->board = *(struct at91_udc_data *) dev->platform_data;
1754 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001755 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001756 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001757
David Brownellf3db6e82008-01-05 13:21:43 -08001758 /* rm9200 needs manual D+ pullup; off by default */
1759 if (cpu_is_at91rm9200()) {
1760 if (udc->board.pullup_pin <= 0) {
1761 DBG("no D+ pullup?\n");
1762 retval = -ENODEV;
1763 goto fail0;
1764 }
1765 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1766 if (retval) {
1767 DBG("D+ pullup is busy\n");
1768 goto fail0;
1769 }
1770 gpio_direction_output(udc->board.pullup_pin,
1771 udc->board.pullup_active_low);
1772 }
1773
David Brownellbb242802008-05-27 19:24:20 -07001774 /* newer chips have more FIFO memory than rm9200 */
Jean-Christophe PLAGNIOL-VILLARDbf1f0a02011-05-13 17:03:02 +02001775 if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
David Brownellbb242802008-05-27 19:24:20 -07001776 udc->ep[0].maxpacket = 64;
1777 udc->ep[3].maxpacket = 64;
1778 udc->ep[4].maxpacket = 512;
1779 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001780 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
David Brownellbb242802008-05-27 19:24:20 -07001781 udc->ep[3].maxpacket = 64;
1782 } else if (cpu_is_at91sam9263()) {
1783 udc->ep[0].maxpacket = 64;
1784 udc->ep[3].maxpacket = 64;
1785 }
1786
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001787 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001788 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001789 retval = -ENOMEM;
1790 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001791 }
1792
1793 udc_reinit(udc);
1794
David Brownellbae4bd82006-01-22 10:32:37 -08001795 /* get interface and function clocks */
1796 udc->iclk = clk_get(dev, "udc_clk");
1797 udc->fclk = clk_get(dev, "udpck");
1798 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1799 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001800 retval = -ENODEV;
David Brownellf3db6e82008-01-05 13:21:43 -08001801 /* NOTE: we "know" here that refcounts on these are NOPs */
1802 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001803 }
1804
1805 retval = device_register(&udc->gadget.dev);
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001806 if (retval < 0) {
1807 put_device(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001808 goto fail0b;
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001809 }
David Brownellbae4bd82006-01-22 10:32:37 -08001810
David Brownell8b2e7662006-07-05 02:38:56 -07001811 /* don't do anything until we have both gadget driver and VBUS */
1812 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001813 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1814 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001815 /* Clear all pending interrupts - UDP may be used by bootloader. */
1816 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001817 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001818
1819 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001820 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001821 retval = request_irq(udc->udp_irq, at91_udc_irq,
1822 IRQF_DISABLED, driver_name, udc);
1823 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001824 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001825 goto fail1;
1826 }
1827 if (udc->board.vbus_pin > 0) {
David Brownellf3db6e82008-01-05 13:21:43 -08001828 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1829 if (retval < 0) {
1830 DBG("request vbus pin failed\n");
1831 goto fail2;
1832 }
1833 gpio_direction_input(udc->board.vbus_pin);
1834
Andrew Victor29ba4b52006-12-07 22:44:38 -08001835 /*
1836 * Get the initial state of VBUS - we cannot expect
1837 * a pending interrupt.
1838 */
Ryan Mallon40372422010-07-13 05:09:16 +01001839 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1840 udc->board.vbus_active_low;
1841
1842 if (udc->board.vbus_polled) {
1843 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1844 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1845 (unsigned long)udc);
1846 mod_timer(&udc->vbus_timer,
1847 jiffies + VBUS_POLL_TIMEOUT);
1848 } else {
1849 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
1850 IRQF_DISABLED, driver_name, udc)) {
1851 DBG("request vbus irq %d failed\n",
1852 udc->board.vbus_pin);
1853 retval = -EBUSY;
1854 goto fail3;
1855 }
David Brownellbae4bd82006-01-22 10:32:37 -08001856 }
1857 } else {
1858 DBG("no VBUS detection, assuming always-on\n");
1859 udc->vbus = 1;
1860 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001861 retval = usb_add_gadget_udc(dev, &udc->gadget);
1862 if (retval)
1863 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001864 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001865 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001866 create_debug_file(udc);
1867
1868 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1869 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001870fail4:
1871 if (udc->board.vbus_pin > 0 && !udc->board.vbus_polled)
1872 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001873fail3:
1874 if (udc->board.vbus_pin > 0)
1875 gpio_free(udc->board.vbus_pin);
1876fail2:
1877 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001878fail1:
1879 device_unregister(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001880fail0b:
1881 iounmap(udc->udp_baseaddr);
1882fail0a:
1883 if (cpu_is_at91rm9200())
1884 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001885fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001886 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001887 DBG("%s probe failed, %d\n", driver_name, retval);
1888 return retval;
1889}
1890
David Brownell398acce2007-02-15 18:47:17 -08001891static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001892{
David Brownell8b2e7662006-07-05 02:38:56 -07001893 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001894 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001895 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001896
1897 DBG("remove\n");
1898
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001899 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001900 if (udc->driver)
1901 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001902
Harro Haan4f4c5e32010-03-01 18:01:56 +01001903 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001904 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001905 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001906
David Brownell8b2e7662006-07-05 02:38:56 -07001907 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001908 remove_debug_file(udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001909 if (udc->board.vbus_pin > 0) {
David Brownellbae4bd82006-01-22 10:32:37 -08001910 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001911 gpio_free(udc->board.vbus_pin);
1912 }
David Brownell8b2e7662006-07-05 02:38:56 -07001913 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001914 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001915
1916 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001917
1918 if (cpu_is_at91rm9200())
1919 gpio_free(udc->board.pullup_pin);
1920
Andrew Victorffd33262006-12-07 22:44:33 -08001921 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001922 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001923
1924 clk_put(udc->iclk);
1925 clk_put(udc->fclk);
1926
1927 return 0;
1928}
1929
1930#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001931static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001932{
David Brownell8b2e7662006-07-05 02:38:56 -07001933 struct at91_udc *udc = platform_get_drvdata(pdev);
1934 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001935 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001936
David Brownell8b2e7662006-07-05 02:38:56 -07001937 /* Unless we can act normally to the host (letting it wake us up
1938 * whenever it has work for us) force disconnect. Wakeup requires
1939 * PLLB for USB events (signaling for reset, wakeup, or incoming
1940 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001941 */
David Brownell8b2e7662006-07-05 02:38:56 -07001942 if ((!udc->suspended && udc->addr)
1943 || !wake
1944 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001945 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001946 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001947 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001948 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001949 } else
1950 enable_irq_wake(udc->udp_irq);
1951
David Brownell66e56ce2007-01-16 12:46:39 -08001952 udc->active_suspend = wake;
Ryan Mallon40372422010-07-13 05:09:16 +01001953 if (udc->board.vbus_pin > 0 && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001954 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001955 return 0;
1956}
1957
David Brownell8b2e7662006-07-05 02:38:56 -07001958static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001959{
David Brownell8b2e7662006-07-05 02:38:56 -07001960 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001961 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001962
Ryan Mallon40372422010-07-13 05:09:16 +01001963 if (udc->board.vbus_pin > 0 && !udc->board.vbus_polled &&
1964 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001965 disable_irq_wake(udc->board.vbus_pin);
1966
David Brownellbae4bd82006-01-22 10:32:37 -08001967 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001968 if (udc->active_suspend)
1969 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001970 else {
1971 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001972 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001973 spin_unlock_irqrestore(&udc->lock, flags);
1974 }
David Brownellbae4bd82006-01-22 10:32:37 -08001975 return 0;
1976}
1977#else
1978#define at91udc_suspend NULL
1979#define at91udc_resume NULL
1980#endif
1981
David Brownelldee497d2007-02-24 13:54:56 -08001982static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001983 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001984 .shutdown = at91udc_shutdown,
1985 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001986 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001987 .driver = {
1988 .name = (char *) driver_name,
1989 .owner = THIS_MODULE,
1990 },
1991};
1992
David Brownell398acce2007-02-15 18:47:17 -08001993static int __init udc_init_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001994{
David Brownelldee497d2007-02-24 13:54:56 -08001995 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001996}
1997module_init(udc_init_module);
1998
David Brownell398acce2007-02-15 18:47:17 -08001999static void __exit udc_exit_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08002000{
David Brownelldee497d2007-02-24 13:54:56 -08002001 platform_driver_unregister(&at91_udc_driver);
David Brownellbae4bd82006-01-22 10:32:37 -08002002}
2003module_exit(udc_exit_module);
2004
David Brownell8b2e7662006-07-05 02:38:56 -07002005MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08002006MODULE_AUTHOR("Thomas Rathbone, David Brownell");
2007MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07002008MODULE_ALIAS("platform:at91_udc");