blob: fd6a7577ad250601526ca95641c7e3b2b8bb3eb4 [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>
David Brownellbae4bd82006-01-22 10:32:37 -080041
42#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010043#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080044#include <asm/io.h>
45#include <asm/irq.h>
46#include <asm/system.h>
David Brownellf3db6e82008-01-05 13:21:43 -080047#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080048
Russell Kinga09e64f2008-08-05 16:14:15 +010049#include <mach/board.h>
50#include <mach/cpu.h>
51#include <mach/at91sam9261_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080052
53#include "at91_udc.h"
54
55
56/*
57 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070058 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
59 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080060 *
61 * This driver expects the board has been wired with two GPIOs suppporting
62 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070063 * testing hasn't covered such cases.)
64 *
65 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080066 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070067 *
David Brownellbae4bd82006-01-22 10:32:37 -080068 * The VBUS sensing helps during enumeration, and allows both USB clocks
69 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070070 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
71 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080072 */
73
David Brownell8b2e7662006-07-05 02:38:56 -070074#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080075
76static const char driver_name [] = "at91_udc";
77static const char ep0name[] = "ep0";
78
David Brownellbae4bd82006-01-22 10:32:37 -080079
Harro Haan4f4c5e32010-03-01 18:01:56 +010080#define at91_udp_read(udc, reg) \
81 __raw_readl((udc)->udp_baseaddr + (reg))
82#define at91_udp_write(udc, reg, val) \
83 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080084
85/*-------------------------------------------------------------------------*/
86
87#ifdef CONFIG_USB_GADGET_DEBUG_FILES
88
89#include <linux/seq_file.h>
90
91static const char debug_filename[] = "driver/udc";
92
93#define FOURBITS "%s%s%s%s"
94#define EIGHTBITS FOURBITS FOURBITS
95
96static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
97{
98 static char *types[] = {
99 "control", "out-iso", "out-bulk", "out-int",
100 "BOGUS", "in-iso", "in-bulk", "in-int"};
101
102 u32 csr;
103 struct at91_request *req;
104 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100105 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800106
Harro Haan4f4c5e32010-03-01 18:01:56 +0100107 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800108
109 csr = __raw_readl(ep->creg);
110
111 /* NOTE: not collecting per-endpoint irq statistics... */
112
113 seq_printf(s, "\n");
114 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
115 ep->ep.name, ep->ep.maxpacket,
116 ep->is_in ? "in" : "out",
117 ep->is_iso ? " iso" : "",
118 ep->is_pingpong
119 ? (ep->fifo_bank ? "pong" : "ping")
120 : "",
121 ep->stopped ? " stopped" : "");
122 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
123 csr,
124 (csr & 0x07ff0000) >> 16,
125 (csr & (1 << 15)) ? "enabled" : "disabled",
126 (csr & (1 << 11)) ? "DATA1" : "DATA0",
127 types[(csr & 0x700) >> 8],
128
129 /* iff type is control then print current direction */
130 (!(csr & 0x700))
131 ? ((csr & (1 << 7)) ? " IN" : " OUT")
132 : "",
133 (csr & (1 << 6)) ? " rxdatabk1" : "",
134 (csr & (1 << 5)) ? " forcestall" : "",
135 (csr & (1 << 4)) ? " txpktrdy" : "",
136
137 (csr & (1 << 3)) ? " stallsent" : "",
138 (csr & (1 << 2)) ? " rxsetup" : "",
139 (csr & (1 << 1)) ? " rxdatabk0" : "",
140 (csr & (1 << 0)) ? " txcomp" : "");
141 if (list_empty (&ep->queue))
142 seq_printf(s, "\t(queue empty)\n");
143
144 else list_for_each_entry (req, &ep->queue, queue) {
145 unsigned length = req->req.actual;
146
147 seq_printf(s, "\treq %p len %d/%d buf %p\n",
148 &req->req, length,
149 req->req.length, req->req.buf);
150 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100151 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800152}
153
154static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
155{
156 int i;
157
158 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
159 (mask & (1 << 13)) ? " wakeup" : "",
160 (mask & (1 << 12)) ? " endbusres" : "",
161
162 (mask & (1 << 11)) ? " sofint" : "",
163 (mask & (1 << 10)) ? " extrsm" : "",
164 (mask & (1 << 9)) ? " rxrsm" : "",
165 (mask & (1 << 8)) ? " rxsusp" : "");
166 for (i = 0; i < 8; i++) {
167 if (mask & (1 << i))
168 seq_printf(s, " ep%d", i);
169 }
170 seq_printf(s, "\n");
171}
172
173static int proc_udc_show(struct seq_file *s, void *unused)
174{
175 struct at91_udc *udc = s->private;
176 struct at91_ep *ep;
177 u32 tmp;
178
179 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
180
181 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
182 udc->vbus ? "present" : "off",
183 udc->enabled
184 ? (udc->vbus ? "active" : "enabled")
185 : "disabled",
186 udc->selfpowered ? "self" : "VBUS",
187 udc->suspended ? ", suspended" : "",
188 udc->driver ? udc->driver->driver.name : "(none)");
189
190 /* don't access registers when interface isn't clocked */
191 if (!udc->clocked) {
192 seq_printf(s, "(not clocked)\n");
193 return 0;
194 }
195
Andrew Victorffd33262006-12-07 22:44:33 -0800196 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800197 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
198 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
199 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
200 (tmp & AT91_UDP_NUM));
201
Andrew Victorffd33262006-12-07 22:44:33 -0800202 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800203 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
204 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
205 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
206 (tmp & AT91_UDP_ESR) ? " esr" : "",
207 (tmp & AT91_UDP_CONFG) ? " confg" : "",
208 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
209
Andrew Victorffd33262006-12-07 22:44:33 -0800210 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800211 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
212 (tmp & AT91_UDP_FEN) ? " fen" : "",
213 (tmp & AT91_UDP_FADD));
214
Andrew Victorffd33262006-12-07 22:44:33 -0800215 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
216 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800217
218 if (udc->enabled && udc->vbus) {
219 proc_ep_show(s, &udc->ep[0]);
220 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
221 if (ep->desc)
222 proc_ep_show(s, ep);
223 }
224 }
225 return 0;
226}
227
228static int proc_udc_open(struct inode *inode, struct file *file)
229{
230 return single_open(file, proc_udc_show, PDE(inode)->data);
231}
232
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300233static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700234 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800235 .open = proc_udc_open,
236 .read = seq_read,
237 .llseek = seq_lseek,
238 .release = single_release,
239};
240
241static void create_debug_file(struct at91_udc *udc)
242{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700243 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800244}
245
246static void remove_debug_file(struct at91_udc *udc)
247{
248 if (udc->pde)
249 remove_proc_entry(debug_filename, NULL);
250}
251
252#else
253
254static inline void create_debug_file(struct at91_udc *udc) {}
255static inline void remove_debug_file(struct at91_udc *udc) {}
256
257#endif
258
259
260/*-------------------------------------------------------------------------*/
261
262static void done(struct at91_ep *ep, struct at91_request *req, int status)
263{
264 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800265 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800266
267 list_del_init(&req->queue);
268 if (req->req.status == -EINPROGRESS)
269 req->req.status = status;
270 else
271 status = req->req.status;
272 if (status && status != -ESHUTDOWN)
273 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
274
275 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100276 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800277 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100278 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800279 ep->stopped = stopped;
280
281 /* ep0 is always ready; other endpoints need a non-empty queue */
282 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800283 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800284}
285
286/*-------------------------------------------------------------------------*/
287
288/* bits indicating OUT fifo has data ready */
289#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
290
291/*
292 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
293 * back most of the value you just read (because of side effects, including
294 * bits that may change after reading and before writing).
295 *
296 * Except when changing a specific bit, always write values which:
297 * - clear SET_FX bits (setting them could change something)
298 * - set CLR_FX bits (clearing them could change something)
299 *
300 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
301 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700302 *
303 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
304 * implying a need to wait for one write to complete (test relevant bits)
305 * before starting the next write. This shouldn't be an issue given how
306 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800307 */
308#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700309#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
310 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800311
312/* pull OUT packet data from the endpoint's fifo */
313static int read_fifo (struct at91_ep *ep, struct at91_request *req)
314{
315 u32 __iomem *creg = ep->creg;
316 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
317 u32 csr;
318 u8 *buf;
319 unsigned int count, bufferspace, is_done;
320
321 buf = req->req.buf + req->req.actual;
322 bufferspace = req->req.length - req->req.actual;
323
324 /*
325 * there might be nothing to read if ep_queue() calls us,
326 * or if we already emptied both pingpong buffers
327 */
328rescan:
329 csr = __raw_readl(creg);
330 if ((csr & RX_DATA_READY) == 0)
331 return 0;
332
333 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
334 if (count > ep->ep.maxpacket)
335 count = ep->ep.maxpacket;
336 if (count > bufferspace) {
337 DBG("%s buffer overflow\n", ep->ep.name);
338 req->req.status = -EOVERFLOW;
339 count = bufferspace;
340 }
341 __raw_readsb(dreg, buf, count);
342
343 /* release and swap pingpong mem bank */
344 csr |= CLR_FX;
345 if (ep->is_pingpong) {
346 if (ep->fifo_bank == 0) {
347 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
348 ep->fifo_bank = 1;
349 } else {
350 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
351 ep->fifo_bank = 0;
352 }
353 } else
354 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
355 __raw_writel(csr, creg);
356
357 req->req.actual += count;
358 is_done = (count < ep->ep.maxpacket);
359 if (count == bufferspace)
360 is_done = 1;
361
362 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
363 is_done ? " (done)" : "");
364
365 /*
366 * avoid extra trips through IRQ logic for packets already in
367 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
368 */
369 if (is_done)
370 done(ep, req, 0);
371 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100372 /*
373 * One dummy read to delay the code because of a HW glitch:
374 * CSR returns bad RXCOUNT when read too soon after updating
375 * RX_DATA_BK flags.
376 */
377 csr = __raw_readl(creg);
378
David Brownellbae4bd82006-01-22 10:32:37 -0800379 bufferspace -= count;
380 buf += count;
381 goto rescan;
382 }
383
384 return is_done;
385}
386
387/* load fifo for an IN packet */
388static int write_fifo(struct at91_ep *ep, struct at91_request *req)
389{
390 u32 __iomem *creg = ep->creg;
391 u32 csr = __raw_readl(creg);
392 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
393 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700394 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800395
396 /*
397 * TODO: allow for writing two packets to the fifo ... that'll
398 * reduce the amount of IN-NAKing, but probably won't affect
399 * throughput much. (Unlike preventing OUT-NAKing!)
400 */
401
402 /*
403 * If ep_queue() calls us, the queue is empty and possibly in
404 * odd states like TXCOMP not yet cleared (we do it, saving at
405 * least one IRQ) or the fifo not yet being free. Those aren't
406 * issues normally (IRQ handler fast path).
407 */
408 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
409 if (csr & AT91_UDP_TXCOMP) {
410 csr |= CLR_FX;
411 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
412 __raw_writel(csr, creg);
413 csr = __raw_readl(creg);
414 }
415 if (csr & AT91_UDP_TXPKTRDY)
416 return 0;
417 }
418
David Brownell3cf27232008-04-06 23:32:55 -0700419 buf = req->req.buf + req->req.actual;
420 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800421 total = req->req.length - req->req.actual;
422 if (ep->ep.maxpacket < total) {
423 count = ep->ep.maxpacket;
424 is_last = 0;
425 } else {
426 count = total;
427 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
428 }
429
430 /*
431 * Write the packet, maybe it's a ZLP.
432 *
433 * NOTE: incrementing req->actual before we receive the ACK means
434 * gadget driver IN bytecounts can be wrong in fault cases. That's
435 * fixable with PIO drivers like this one (save "count" here, and
436 * do the increment later on TX irq), but not for most DMA hardware.
437 *
438 * So all gadget drivers must accept that potential error. Some
439 * hardware supports precise fifo status reporting, letting them
440 * recover when the actual bytecount matters (e.g. for USB Test
441 * and Measurement Class devices).
442 */
David Brownell3cf27232008-04-06 23:32:55 -0700443 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800444 csr &= ~SET_FX;
445 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
446 __raw_writel(csr, creg);
447 req->req.actual += count;
448
449 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
450 is_last ? " (done)" : "");
451 if (is_last)
452 done(ep, req, 0);
453 return is_last;
454}
455
456static void nuke(struct at91_ep *ep, int status)
457{
458 struct at91_request *req;
459
460 // terminer chaque requete dans la queue
461 ep->stopped = 1;
462 if (list_empty(&ep->queue))
463 return;
464
Harvey Harrison441b62c2008-03-03 16:08:34 -0800465 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800466 while (!list_empty(&ep->queue)) {
467 req = list_entry(ep->queue.next, struct at91_request, queue);
468 done(ep, req, status);
469 }
470}
471
472/*-------------------------------------------------------------------------*/
473
David Brownell8b2e7662006-07-05 02:38:56 -0700474static int at91_ep_enable(struct usb_ep *_ep,
475 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800476{
477 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100478 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800479 u16 maxpacket;
480 u32 tmp;
481 unsigned long flags;
482
483 if (!_ep || !ep
484 || !desc || ep->desc
485 || _ep->name == ep0name
486 || desc->bDescriptorType != USB_DT_ENDPOINT
487 || (maxpacket = le16_to_cpu(desc->wMaxPacketSize)) == 0
488 || maxpacket > ep->maxpacket) {
489 DBG("bad ep or descriptor\n");
490 return -EINVAL;
491 }
492
Harro Haan4f4c5e32010-03-01 18:01:56 +0100493 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800494 DBG("bogus device state\n");
495 return -ESHUTDOWN;
496 }
497
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200498 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800499 switch (tmp) {
500 case USB_ENDPOINT_XFER_CONTROL:
501 DBG("only one control endpoint\n");
502 return -EINVAL;
503 case USB_ENDPOINT_XFER_INT:
504 if (maxpacket > 64)
505 goto bogus_max;
506 break;
507 case USB_ENDPOINT_XFER_BULK:
508 switch (maxpacket) {
509 case 8:
510 case 16:
511 case 32:
512 case 64:
513 goto ok;
514 }
515bogus_max:
516 DBG("bogus maxpacket %d\n", maxpacket);
517 return -EINVAL;
518 case USB_ENDPOINT_XFER_ISOC:
519 if (!ep->is_pingpong) {
520 DBG("iso requires double buffering\n");
521 return -EINVAL;
522 }
523 break;
524 }
525
526ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100527 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800528
529 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200530 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800531 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
532 ep->stopped = 0;
533 if (ep->is_in)
534 tmp |= 0x04;
535 tmp <<= 8;
536 tmp |= AT91_UDP_EPEDS;
537 __raw_writel(tmp, ep->creg);
538
539 ep->desc = desc;
540 ep->ep.maxpacket = maxpacket;
541
542 /*
543 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
544 * since endpoint resets don't reset hw pingpong state.
545 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100546 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
547 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800548
Harro Haan4f4c5e32010-03-01 18:01:56 +0100549 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800550 return 0;
551}
552
553static int at91_ep_disable (struct usb_ep * _ep)
554{
555 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800556 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800557 unsigned long flags;
558
559 if (ep == &ep->udc->ep[0])
560 return -EINVAL;
561
Harro Haan4f4c5e32010-03-01 18:01:56 +0100562 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800563
564 nuke(ep, -ESHUTDOWN);
565
566 /* restore the endpoint's pristine config */
567 ep->desc = NULL;
568 ep->ep.maxpacket = ep->maxpacket;
569
570 /* reset fifos and endpoint */
571 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800572 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
573 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800574 __raw_writel(0, ep->creg);
575 }
576
Harro Haan4f4c5e32010-03-01 18:01:56 +0100577 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800578 return 0;
579}
580
581/*
582 * this is a PIO-only driver, so there's nothing
583 * interesting for request or buffer allocation.
584 */
585
David Brownell8b2e7662006-07-05 02:38:56 -0700586static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800587at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800588{
589 struct at91_request *req;
590
Robert P. J. Daycd861282006-12-13 00:34:52 -0800591 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800592 if (!req)
593 return NULL;
594
595 INIT_LIST_HEAD(&req->queue);
596 return &req->req;
597}
598
599static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
600{
601 struct at91_request *req;
602
603 req = container_of(_req, struct at91_request, req);
604 BUG_ON(!list_empty(&req->queue));
605 kfree(req);
606}
607
David Brownellbae4bd82006-01-22 10:32:37 -0800608static int at91_ep_queue(struct usb_ep *_ep,
609 struct usb_request *_req, gfp_t gfp_flags)
610{
611 struct at91_request *req;
612 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100613 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800614 int status;
615 unsigned long flags;
616
617 req = container_of(_req, struct at91_request, req);
618 ep = container_of(_ep, struct at91_ep, ep);
619
620 if (!_req || !_req->complete
621 || !_req->buf || !list_empty(&req->queue)) {
622 DBG("invalid request\n");
623 return -EINVAL;
624 }
625
626 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
627 DBG("invalid ep\n");
628 return -EINVAL;
629 }
630
Harro Haan4f4c5e32010-03-01 18:01:56 +0100631 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800632
Harro Haan4f4c5e32010-03-01 18:01:56 +0100633 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800634 DBG("invalid device\n");
635 return -EINVAL;
636 }
637
638 _req->status = -EINPROGRESS;
639 _req->actual = 0;
640
Harro Haan4f4c5e32010-03-01 18:01:56 +0100641 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800642
643 /* try to kickstart any empty and idle queue */
644 if (list_empty(&ep->queue) && !ep->stopped) {
645 int is_ep0;
646
647 /*
648 * If this control request has a non-empty DATA stage, this
649 * will start that stage. It works just like a non-control
650 * request (until the status stage starts, maybe early).
651 *
652 * If the data stage is empty, then this starts a successful
653 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
654 */
655 is_ep0 = (ep->ep.name == ep0name);
656 if (is_ep0) {
657 u32 tmp;
658
Harro Haan4f4c5e32010-03-01 18:01:56 +0100659 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800660 status = -EINVAL;
661 goto done;
662 }
663
664 /*
665 * defer changing CONFG until after the gadget driver
666 * reconfigures the endpoints.
667 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100668 if (udc->wait_for_config_ack) {
669 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800670 tmp ^= AT91_UDP_CONFG;
671 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100672 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800673 }
674 if (req->req.length == 0) {
675ep0_in_status:
676 PACKET("ep0 in/status\n");
677 status = 0;
678 tmp = __raw_readl(ep->creg);
679 tmp &= ~SET_FX;
680 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
681 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100682 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800683 goto done;
684 }
685 }
686
687 if (ep->is_in)
688 status = write_fifo(ep, req);
689 else {
690 status = read_fifo(ep, req);
691
692 /* IN/STATUS stage is otherwise triggered by irq */
693 if (status && is_ep0)
694 goto ep0_in_status;
695 }
696 } else
697 status = 0;
698
699 if (req && !status) {
700 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100701 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800702 }
703done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100704 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800705 return (status < 0) ? status : 0;
706}
707
708static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
709{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100710 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800711 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100712 unsigned long flags;
713 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800714
715 ep = container_of(_ep, struct at91_ep, ep);
716 if (!_ep || ep->ep.name == ep0name)
717 return -EINVAL;
718
Harro Haan4f4c5e32010-03-01 18:01:56 +0100719 udc = ep->udc;
720
721 spin_lock_irqsave(&udc->lock, flags);
722
David Brownellbae4bd82006-01-22 10:32:37 -0800723 /* make sure it's actually queued on this endpoint */
724 list_for_each_entry (req, &ep->queue, queue) {
725 if (&req->req == _req)
726 break;
727 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100728 if (&req->req != _req) {
729 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800730 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100731 }
David Brownellbae4bd82006-01-22 10:32:37 -0800732
733 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100734 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800735 return 0;
736}
737
738static int at91_ep_set_halt(struct usb_ep *_ep, int value)
739{
740 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800741 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800742 u32 __iomem *creg;
743 u32 csr;
744 unsigned long flags;
745 int status = 0;
746
747 if (!_ep || ep->is_iso || !ep->udc->clocked)
748 return -EINVAL;
749
750 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100751 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800752
753 csr = __raw_readl(creg);
754
755 /*
756 * fail with still-busy IN endpoints, ensuring correct sequencing
757 * of data tx then stall. note that the fifo rx bytecount isn't
758 * completely accurate as a tx bytecount.
759 */
760 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
761 status = -EAGAIN;
762 else {
763 csr |= CLR_FX;
764 csr &= ~SET_FX;
765 if (value) {
766 csr |= AT91_UDP_FORCESTALL;
767 VDBG("halt %s\n", ep->ep.name);
768 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800769 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
770 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800771 csr &= ~AT91_UDP_FORCESTALL;
772 }
773 __raw_writel(csr, creg);
774 }
775
Harro Haan4f4c5e32010-03-01 18:01:56 +0100776 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800777 return status;
778}
779
David Brownell398acce2007-02-15 18:47:17 -0800780static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800781 .enable = at91_ep_enable,
782 .disable = at91_ep_disable,
783 .alloc_request = at91_ep_alloc_request,
784 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800785 .queue = at91_ep_queue,
786 .dequeue = at91_ep_dequeue,
787 .set_halt = at91_ep_set_halt,
788 // there's only imprecise fifo status reporting
789};
790
791/*-------------------------------------------------------------------------*/
792
793static int at91_get_frame(struct usb_gadget *gadget)
794{
Andrew Victorffd33262006-12-07 22:44:33 -0800795 struct at91_udc *udc = to_udc(gadget);
796
David Brownellbae4bd82006-01-22 10:32:37 -0800797 if (!to_udc(gadget)->clocked)
798 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800799 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800800}
801
802static int at91_wakeup(struct usb_gadget *gadget)
803{
804 struct at91_udc *udc = to_udc(gadget);
805 u32 glbstate;
806 int status = -EINVAL;
807 unsigned long flags;
808
Harvey Harrison441b62c2008-03-03 16:08:34 -0800809 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100810 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800811
812 if (!udc->clocked || !udc->suspended)
813 goto done;
814
815 /* NOTE: some "early versions" handle ESR differently ... */
816
Andrew Victorffd33262006-12-07 22:44:33 -0800817 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800818 if (!(glbstate & AT91_UDP_ESR))
819 goto done;
820 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800821 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800822
823done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100824 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800825 return status;
826}
827
828/* reinit == restore inital software state */
829static void udc_reinit(struct at91_udc *udc)
830{
831 u32 i;
832
833 INIT_LIST_HEAD(&udc->gadget.ep_list);
834 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
835
836 for (i = 0; i < NUM_ENDPOINTS; i++) {
837 struct at91_ep *ep = &udc->ep[i];
838
839 if (i != 0)
840 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
841 ep->desc = NULL;
842 ep->stopped = 0;
843 ep->fifo_bank = 0;
844 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800845 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
David Brownellbae4bd82006-01-22 10:32:37 -0800846 // initialiser une queue par endpoint
847 INIT_LIST_HEAD(&ep->queue);
848 }
849}
850
851static void stop_activity(struct at91_udc *udc)
852{
853 struct usb_gadget_driver *driver = udc->driver;
854 int i;
855
856 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
857 driver = NULL;
858 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700859 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800860
861 for (i = 0; i < NUM_ENDPOINTS; i++) {
862 struct at91_ep *ep = &udc->ep[i];
863 ep->stopped = 1;
864 nuke(ep, -ESHUTDOWN);
865 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100866 if (driver) {
867 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800868 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100869 spin_lock(&udc->lock);
870 }
David Brownellbae4bd82006-01-22 10:32:37 -0800871
872 udc_reinit(udc);
873}
874
875static void clk_on(struct at91_udc *udc)
876{
877 if (udc->clocked)
878 return;
879 udc->clocked = 1;
880 clk_enable(udc->iclk);
881 clk_enable(udc->fclk);
882}
883
884static void clk_off(struct at91_udc *udc)
885{
886 if (!udc->clocked)
887 return;
888 udc->clocked = 0;
889 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800890 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700891 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800892}
893
894/*
895 * activate/deactivate link with host; minimize power usage for
896 * inactive links by cutting clocks and transceiver power.
897 */
898static void pullup(struct at91_udc *udc, int is_on)
899{
David Brownellf3db6e82008-01-05 13:21:43 -0800900 int active = !udc->board.pullup_active_low;
901
David Brownellbae4bd82006-01-22 10:32:37 -0800902 if (!udc->enabled || !udc->vbus)
903 is_on = 0;
904 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800905
David Brownellbae4bd82006-01-22 10:32:37 -0800906 if (is_on) {
907 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800908 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800909 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800910 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800911 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100912 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800913 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
914
915 txvc |= AT91_UDP_TXVC_PUON;
916 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200917 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800918 u32 usbpucr;
919
920 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
921 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
922 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
923 }
Andrew Victorffd33262006-12-07 22:44:33 -0800924 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800925 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800926 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800927 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800928 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800929 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100930 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800931 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
932
933 txvc &= ~AT91_UDP_TXVC_PUON;
934 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200935 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800936 u32 usbpucr;
937
938 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
939 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
940 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
941 }
David Brownellbae4bd82006-01-22 10:32:37 -0800942 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800943 }
944}
945
946/* vbus is here! turn everything on that's ready */
947static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
948{
949 struct at91_udc *udc = to_udc(gadget);
950 unsigned long flags;
951
952 // VDBG("vbus %s\n", is_active ? "on" : "off");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100953 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800954 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800955 if (udc->driver)
956 pullup(udc, is_active);
957 else
958 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100959 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800960 return 0;
961}
962
963static int at91_pullup(struct usb_gadget *gadget, int is_on)
964{
965 struct at91_udc *udc = to_udc(gadget);
966 unsigned long flags;
967
Harro Haan4f4c5e32010-03-01 18:01:56 +0100968 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800969 udc->enabled = is_on = !!is_on;
970 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100971 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800972 return 0;
973}
974
975static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
976{
977 struct at91_udc *udc = to_udc(gadget);
978 unsigned long flags;
979
Harro Haan4f4c5e32010-03-01 18:01:56 +0100980 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800981 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100982 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800983 return 0;
984}
985
986static const struct usb_gadget_ops at91_udc_ops = {
987 .get_frame = at91_get_frame,
988 .wakeup = at91_wakeup,
989 .set_selfpowered = at91_set_selfpowered,
990 .vbus_session = at91_vbus_session,
991 .pullup = at91_pullup,
992
993 /*
994 * VBUS-powered devices may also also want to support bigger
995 * power budgets after an appropriate SET_CONFIGURATION.
996 */
997 // .vbus_power = at91_vbus_power,
998};
999
1000/*-------------------------------------------------------------------------*/
1001
1002static int handle_ep(struct at91_ep *ep)
1003{
1004 struct at91_request *req;
1005 u32 __iomem *creg = ep->creg;
1006 u32 csr = __raw_readl(creg);
1007
1008 if (!list_empty(&ep->queue))
1009 req = list_entry(ep->queue.next,
1010 struct at91_request, queue);
1011 else
1012 req = NULL;
1013
1014 if (ep->is_in) {
1015 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1016 csr |= CLR_FX;
1017 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1018 __raw_writel(csr, creg);
1019 }
1020 if (req)
1021 return write_fifo(ep, req);
1022
1023 } else {
1024 if (csr & AT91_UDP_STALLSENT) {
1025 /* STALLSENT bit == ISOERR */
1026 if (ep->is_iso && req)
1027 req->req.status = -EILSEQ;
1028 csr |= CLR_FX;
1029 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1030 __raw_writel(csr, creg);
1031 csr = __raw_readl(creg);
1032 }
1033 if (req && (csr & RX_DATA_READY))
1034 return read_fifo(ep, req);
1035 }
1036 return 0;
1037}
1038
1039union setup {
1040 u8 raw[8];
1041 struct usb_ctrlrequest r;
1042};
1043
1044static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1045{
1046 u32 __iomem *creg = ep->creg;
1047 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1048 unsigned rxcount, i = 0;
1049 u32 tmp;
1050 union setup pkt;
1051 int status = 0;
1052
1053 /* read and ack SETUP; hard-fail for bogus packets */
1054 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1055 if (likely(rxcount == 8)) {
1056 while (rxcount--)
1057 pkt.raw[i++] = __raw_readb(dreg);
1058 if (pkt.r.bRequestType & USB_DIR_IN) {
1059 csr |= AT91_UDP_DIR;
1060 ep->is_in = 1;
1061 } else {
1062 csr &= ~AT91_UDP_DIR;
1063 ep->is_in = 0;
1064 }
1065 } else {
1066 // REVISIT this happens sometimes under load; why??
1067 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1068 status = -EINVAL;
1069 }
1070 csr |= CLR_FX;
1071 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1072 __raw_writel(csr, creg);
1073 udc->wait_for_addr_ack = 0;
1074 udc->wait_for_config_ack = 0;
1075 ep->stopped = 0;
1076 if (unlikely(status != 0))
1077 goto stall;
1078
1079#define w_index le16_to_cpu(pkt.r.wIndex)
1080#define w_value le16_to_cpu(pkt.r.wValue)
1081#define w_length le16_to_cpu(pkt.r.wLength)
1082
1083 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1084 pkt.r.bRequestType, pkt.r.bRequest,
1085 w_value, w_index, w_length);
1086
1087 /*
1088 * A few standard requests get handled here, ones that touch
1089 * hardware ... notably for device and endpoint features.
1090 */
1091 udc->req_pending = 1;
1092 csr = __raw_readl(creg);
1093 csr |= CLR_FX;
1094 csr &= ~SET_FX;
1095 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1096
1097 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1098 | USB_REQ_SET_ADDRESS:
1099 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1100 udc->addr = w_value;
1101 udc->wait_for_addr_ack = 1;
1102 udc->req_pending = 0;
1103 /* FADDR is set later, when we ack host STATUS */
1104 return;
1105
1106 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1107 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001108 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001109 if (pkt.r.wValue)
1110 udc->wait_for_config_ack = (tmp == 0);
1111 else
1112 udc->wait_for_config_ack = (tmp != 0);
1113 if (udc->wait_for_config_ack)
1114 VDBG("wait for config\n");
1115 /* CONFG is toggled later, if gadget driver succeeds */
1116 break;
1117
1118 /*
1119 * Hosts may set or clear remote wakeup status, and
1120 * devices may report they're VBUS powered.
1121 */
1122 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1123 | USB_REQ_GET_STATUS:
1124 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001125 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001126 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1127 PACKET("get device status\n");
1128 __raw_writeb(tmp, dreg);
1129 __raw_writeb(0, dreg);
1130 goto write_in;
1131 /* then STATUS starts later, automatically */
1132 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1133 | USB_REQ_SET_FEATURE:
1134 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1135 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001136 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001137 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001138 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001139 goto succeed;
1140 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1141 | USB_REQ_CLEAR_FEATURE:
1142 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1143 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001144 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001145 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001146 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001147 goto succeed;
1148
1149 /*
1150 * Interfaces have no feature settings; this is pretty useless.
1151 * we won't even insist the interface exists...
1152 */
1153 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1154 | USB_REQ_GET_STATUS:
1155 PACKET("get interface status\n");
1156 __raw_writeb(0, dreg);
1157 __raw_writeb(0, dreg);
1158 goto write_in;
1159 /* then STATUS starts later, automatically */
1160 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1161 | USB_REQ_SET_FEATURE:
1162 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1163 | USB_REQ_CLEAR_FEATURE:
1164 goto stall;
1165
1166 /*
1167 * Hosts may clear bulk/intr endpoint halt after the gadget
1168 * driver sets it (not widely used); or set it (for testing)
1169 */
1170 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1171 | USB_REQ_GET_STATUS:
1172 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1173 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001174 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001175 goto stall;
1176
1177 if (tmp) {
1178 if ((w_index & USB_DIR_IN)) {
1179 if (!ep->is_in)
1180 goto stall;
1181 } else if (ep->is_in)
1182 goto stall;
1183 }
1184 PACKET("get %s status\n", ep->ep.name);
1185 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1186 tmp = (1 << USB_ENDPOINT_HALT);
1187 else
1188 tmp = 0;
1189 __raw_writeb(tmp, dreg);
1190 __raw_writeb(0, dreg);
1191 goto write_in;
1192 /* then STATUS starts later, automatically */
1193 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1194 | USB_REQ_SET_FEATURE:
1195 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1196 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001197 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001198 goto stall;
1199 if (!ep->desc || ep->is_iso)
1200 goto stall;
1201 if ((w_index & USB_DIR_IN)) {
1202 if (!ep->is_in)
1203 goto stall;
1204 } else if (ep->is_in)
1205 goto stall;
1206
1207 tmp = __raw_readl(ep->creg);
1208 tmp &= ~SET_FX;
1209 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1210 __raw_writel(tmp, ep->creg);
1211 goto succeed;
1212 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1213 | USB_REQ_CLEAR_FEATURE:
1214 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1215 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001216 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001217 goto stall;
1218 if (tmp == 0)
1219 goto succeed;
1220 if (!ep->desc || ep->is_iso)
1221 goto stall;
1222 if ((w_index & USB_DIR_IN)) {
1223 if (!ep->is_in)
1224 goto stall;
1225 } else if (ep->is_in)
1226 goto stall;
1227
Andrew Victorffd33262006-12-07 22:44:33 -08001228 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1229 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001230 tmp = __raw_readl(ep->creg);
1231 tmp |= CLR_FX;
1232 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1233 __raw_writel(tmp, ep->creg);
1234 if (!list_empty(&ep->queue))
1235 handle_ep(ep);
1236 goto succeed;
1237 }
1238
1239#undef w_value
1240#undef w_index
1241#undef w_length
1242
1243 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001244 if (udc->driver) {
1245 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001246 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001247 spin_lock(&udc->lock);
1248 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001249 else
1250 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001251 if (status < 0) {
1252stall:
1253 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1254 pkt.r.bRequestType, pkt.r.bRequest, status);
1255 csr |= AT91_UDP_FORCESTALL;
1256 __raw_writel(csr, creg);
1257 udc->req_pending = 0;
1258 }
1259 return;
1260
1261succeed:
1262 /* immediate successful (IN) STATUS after zero length DATA */
1263 PACKET("ep0 in/status\n");
1264write_in:
1265 csr |= AT91_UDP_TXPKTRDY;
1266 __raw_writel(csr, creg);
1267 udc->req_pending = 0;
1268 return;
1269}
1270
1271static void handle_ep0(struct at91_udc *udc)
1272{
1273 struct at91_ep *ep0 = &udc->ep[0];
1274 u32 __iomem *creg = ep0->creg;
1275 u32 csr = __raw_readl(creg);
1276 struct at91_request *req;
1277
1278 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1279 nuke(ep0, -EPROTO);
1280 udc->req_pending = 0;
1281 csr |= CLR_FX;
1282 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1283 __raw_writel(csr, creg);
1284 VDBG("ep0 stalled\n");
1285 csr = __raw_readl(creg);
1286 }
1287 if (csr & AT91_UDP_RXSETUP) {
1288 nuke(ep0, 0);
1289 udc->req_pending = 0;
1290 handle_setup(udc, ep0, csr);
1291 return;
1292 }
1293
1294 if (list_empty(&ep0->queue))
1295 req = NULL;
1296 else
1297 req = list_entry(ep0->queue.next, struct at91_request, queue);
1298
1299 /* host ACKed an IN packet that we sent */
1300 if (csr & AT91_UDP_TXCOMP) {
1301 csr |= CLR_FX;
1302 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1303
1304 /* write more IN DATA? */
1305 if (req && ep0->is_in) {
1306 if (handle_ep(ep0))
1307 udc->req_pending = 0;
1308
1309 /*
1310 * Ack after:
1311 * - last IN DATA packet (including GET_STATUS)
1312 * - IN/STATUS for OUT DATA
1313 * - IN/STATUS for any zero-length DATA stage
1314 * except for the IN DATA case, the host should send
1315 * an OUT status later, which we'll ack.
1316 */
1317 } else {
1318 udc->req_pending = 0;
1319 __raw_writel(csr, creg);
1320
1321 /*
1322 * SET_ADDRESS takes effect only after the STATUS
1323 * (to the original address) gets acked.
1324 */
1325 if (udc->wait_for_addr_ack) {
1326 u32 tmp;
1327
Andrew Victorffd33262006-12-07 22:44:33 -08001328 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001329 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001330 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001331 tmp &= ~AT91_UDP_FADDEN;
1332 if (udc->addr)
1333 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001334 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001335
1336 udc->wait_for_addr_ack = 0;
1337 VDBG("address %d\n", udc->addr);
1338 }
1339 }
1340 }
1341
1342 /* OUT packet arrived ... */
1343 else if (csr & AT91_UDP_RX_DATA_BK0) {
1344 csr |= CLR_FX;
1345 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1346
1347 /* OUT DATA stage */
1348 if (!ep0->is_in) {
1349 if (req) {
1350 if (handle_ep(ep0)) {
1351 /* send IN/STATUS */
1352 PACKET("ep0 in/status\n");
1353 csr = __raw_readl(creg);
1354 csr &= ~SET_FX;
1355 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1356 __raw_writel(csr, creg);
1357 udc->req_pending = 0;
1358 }
1359 } else if (udc->req_pending) {
1360 /*
1361 * AT91 hardware has a hard time with this
1362 * "deferred response" mode for control-OUT
1363 * transfers. (For control-IN it's fine.)
1364 *
1365 * The normal solution leaves OUT data in the
1366 * fifo until the gadget driver is ready.
1367 * We couldn't do that here without disabling
1368 * the IRQ that tells about SETUP packets,
1369 * e.g. when the host gets impatient...
1370 *
1371 * Working around it by copying into a buffer
1372 * would almost be a non-deferred response,
1373 * except that it wouldn't permit reliable
1374 * stalling of the request. Instead, demand
1375 * that gadget drivers not use this mode.
1376 */
1377 DBG("no control-OUT deferred responses!\n");
1378 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1379 udc->req_pending = 0;
1380 }
1381
1382 /* STATUS stage for control-IN; ack. */
1383 } else {
1384 PACKET("ep0 out/status ACK\n");
1385 __raw_writel(csr, creg);
1386
1387 /* "early" status stage */
1388 if (req)
1389 done(ep0, req, 0);
1390 }
1391 }
1392}
1393
David Howells7d12e782006-10-05 14:55:46 +01001394static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001395{
1396 struct at91_udc *udc = _udc;
1397 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001398 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001399 unsigned long flags;
1400
1401 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001402
1403 if (!udc->clocked) {
1404 clk_on(udc);
1405 disable_clock = 1;
1406 }
David Brownellbae4bd82006-01-22 10:32:37 -08001407
1408 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001409 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001410
Andrew Victorffd33262006-12-07 22:44:33 -08001411 status = at91_udp_read(udc, AT91_UDP_ISR)
1412 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001413 if (!status)
1414 break;
1415
1416 /* USB reset irq: not maskable */
1417 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001418 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1419 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001420 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001421 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1422 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001423 VDBG("end bus reset\n");
1424 udc->addr = 0;
1425 stop_activity(udc);
1426
1427 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001428 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001429 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001430 udc->gadget.speed = USB_SPEED_FULL;
1431 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001432 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001433
1434 /*
1435 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001436 * USB host is present. That saves power, but for
1437 * boards that don't support VBUS detection, both
1438 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001439 */
1440
1441 /* host initiated suspend (3+ms bus idle) */
1442 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001443 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1444 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1445 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
David Brownellbae4bd82006-01-22 10:32:37 -08001446 // VDBG("bus suspend\n");
1447 if (udc->suspended)
1448 continue;
1449 udc->suspended = 1;
1450
1451 /*
1452 * NOTE: when suspending a VBUS-powered device, the
1453 * gadget driver should switch into slow clock mode
1454 * and then into standby to avoid drawing more than
1455 * 500uA power (2500uA for some high-power configs).
1456 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001457 if (udc->driver && udc->driver->suspend) {
1458 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001459 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001460 spin_lock(&udc->lock);
1461 }
David Brownellbae4bd82006-01-22 10:32:37 -08001462
1463 /* host initiated resume */
1464 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001465 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1466 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1467 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
David Brownellbae4bd82006-01-22 10:32:37 -08001468 // VDBG("bus resume\n");
1469 if (!udc->suspended)
1470 continue;
1471 udc->suspended = 0;
1472
1473 /*
1474 * NOTE: for a VBUS-powered device, the gadget driver
1475 * would normally want to switch out of slow clock
1476 * mode into normal mode.
1477 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001478 if (udc->driver && udc->driver->resume) {
1479 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001480 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001481 spin_lock(&udc->lock);
1482 }
David Brownellbae4bd82006-01-22 10:32:37 -08001483
1484 /* endpoint IRQs are cleared by handling them */
1485 } else {
1486 int i;
1487 unsigned mask = 1;
1488 struct at91_ep *ep = &udc->ep[1];
1489
1490 if (status & mask)
1491 handle_ep0(udc);
1492 for (i = 1; i < NUM_ENDPOINTS; i++) {
1493 mask <<= 1;
1494 if (status & mask)
1495 handle_ep(ep);
1496 ep++;
1497 }
1498 }
1499 }
1500
Harro Haanc6c35232010-03-01 17:38:37 +01001501 if (disable_clock)
1502 clk_off(udc);
1503
Harro Haan4f4c5e32010-03-01 18:01:56 +01001504 spin_unlock_irqrestore(&udc->lock, flags);
1505
David Brownellbae4bd82006-01-22 10:32:37 -08001506 return IRQ_HANDLED;
1507}
1508
1509/*-------------------------------------------------------------------------*/
1510
David Brownell8b2e7662006-07-05 02:38:56 -07001511static void nop_release(struct device *dev)
1512{
1513 /* nothing to free */
1514}
1515
David Brownellbae4bd82006-01-22 10:32:37 -08001516static struct at91_udc controller = {
1517 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001518 .ops = &at91_udc_ops,
1519 .ep0 = &controller.ep[0].ep,
1520 .name = driver_name,
1521 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001522 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001523 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001524 }
1525 },
1526 .ep[0] = {
1527 .ep = {
1528 .name = ep0name,
1529 .ops = &at91_ep_ops,
1530 },
1531 .udc = &controller,
1532 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001533 .int_mask = 1 << 0,
1534 },
1535 .ep[1] = {
1536 .ep = {
1537 .name = "ep1",
1538 .ops = &at91_ep_ops,
1539 },
1540 .udc = &controller,
1541 .is_pingpong = 1,
1542 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001543 .int_mask = 1 << 1,
1544 },
1545 .ep[2] = {
1546 .ep = {
1547 .name = "ep2",
1548 .ops = &at91_ep_ops,
1549 },
1550 .udc = &controller,
1551 .is_pingpong = 1,
1552 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001553 .int_mask = 1 << 2,
1554 },
1555 .ep[3] = {
1556 .ep = {
1557 /* could actually do bulk too */
1558 .name = "ep3-int",
1559 .ops = &at91_ep_ops,
1560 },
1561 .udc = &controller,
1562 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001563 .int_mask = 1 << 3,
1564 },
1565 .ep[4] = {
1566 .ep = {
1567 .name = "ep4",
1568 .ops = &at91_ep_ops,
1569 },
1570 .udc = &controller,
1571 .is_pingpong = 1,
1572 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001573 .int_mask = 1 << 4,
1574 },
1575 .ep[5] = {
1576 .ep = {
1577 .name = "ep5",
1578 .ops = &at91_ep_ops,
1579 },
1580 .udc = &controller,
1581 .is_pingpong = 1,
1582 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001583 .int_mask = 1 << 5,
1584 },
David Brownell8b2e7662006-07-05 02:38:56 -07001585 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001586};
1587
David Howells7d12e782006-10-05 14:55:46 +01001588static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001589{
1590 struct at91_udc *udc = _udc;
1591 unsigned value;
1592
1593 /* vbus needs at least brief debouncing */
1594 udelay(10);
David Brownellf3db6e82008-01-05 13:21:43 -08001595 value = gpio_get_value(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001596 if (value != udc->vbus)
1597 at91_vbus_session(&udc->gadget, value);
1598
1599 return IRQ_HANDLED;
1600}
1601
1602int usb_gadget_register_driver (struct usb_gadget_driver *driver)
1603{
1604 struct at91_udc *udc = &controller;
1605 int retval;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001606 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001607
1608 if (!driver
Wojtek Kaniewskibc92c322006-12-08 09:39:36 -08001609 || driver->speed < USB_SPEED_FULL
David Brownellbae4bd82006-01-22 10:32:37 -08001610 || !driver->bind
David Brownellbae4bd82006-01-22 10:32:37 -08001611 || !driver->setup) {
1612 DBG("bad parameter.\n");
1613 return -EINVAL;
1614 }
1615
1616 if (udc->driver) {
1617 DBG("UDC already has a gadget driver\n");
1618 return -EBUSY;
1619 }
1620
1621 udc->driver = driver;
1622 udc->gadget.dev.driver = &driver->driver;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001623 dev_set_drvdata(&udc->gadget.dev, &driver->driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001624 udc->enabled = 1;
1625 udc->selfpowered = 1;
1626
1627 retval = driver->bind(&udc->gadget);
1628 if (retval) {
1629 DBG("driver->bind() returned %d\n", retval);
1630 udc->driver = NULL;
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001631 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001632 dev_set_drvdata(&udc->gadget.dev, NULL);
Wojtek Kaniewski943c4412006-12-08 03:23:00 -08001633 udc->enabled = 0;
1634 udc->selfpowered = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001635 return retval;
1636 }
1637
Harro Haan4f4c5e32010-03-01 18:01:56 +01001638 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001639 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001640 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001641
1642 DBG("bound to %s\n", driver->driver.name);
1643 return 0;
1644}
1645EXPORT_SYMBOL (usb_gadget_register_driver);
1646
1647int usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
1648{
1649 struct at91_udc *udc = &controller;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001650 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001651
David Brownell6bea4762006-12-05 03:15:33 -08001652 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001653 return -EINVAL;
1654
Harro Haan4f4c5e32010-03-01 18:01:56 +01001655 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001656 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001657 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001658 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001659 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001660
1661 driver->unbind(&udc->gadget);
Patrik Sevalliuseb0be472007-11-20 09:32:00 -08001662 udc->gadget.dev.driver = NULL;
Greg Kroah-Hartman839214a2009-05-04 12:40:54 -07001663 dev_set_drvdata(&udc->gadget.dev, NULL);
David Brownellbae4bd82006-01-22 10:32:37 -08001664 udc->driver = NULL;
1665
1666 DBG("unbound from %s\n", driver->driver.name);
1667 return 0;
1668}
1669EXPORT_SYMBOL (usb_gadget_unregister_driver);
1670
1671/*-------------------------------------------------------------------------*/
1672
1673static void at91udc_shutdown(struct platform_device *dev)
1674{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001675 struct at91_udc *udc = platform_get_drvdata(dev);
1676 unsigned long flags;
1677
David Brownellbae4bd82006-01-22 10:32:37 -08001678 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001679 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001680 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001681 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001682}
1683
David Brownell398acce2007-02-15 18:47:17 -08001684static int __init at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001685{
1686 struct device *dev = &pdev->dev;
1687 struct at91_udc *udc;
1688 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001689 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001690
1691 if (!dev->platform_data) {
1692 /* small (so we copy it) but critical! */
1693 DBG("missing platform_data\n");
1694 return -ENODEV;
1695 }
1696
David Brownell8b2e7662006-07-05 02:38:56 -07001697 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001698 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001699 return -ENODEV;
1700 }
1701 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1702 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001703 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001704 return -ENODEV;
1705 }
1706
Andrew Victorffd33262006-12-07 22:44:33 -08001707 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1708 if (!res)
1709 return -ENXIO;
1710
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001711 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001712 DBG("someone's using UDC memory\n");
1713 return -EBUSY;
1714 }
1715
1716 /* init software state */
1717 udc = &controller;
1718 udc->gadget.dev.parent = dev;
1719 udc->board = *(struct at91_udc_data *) dev->platform_data;
1720 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001721 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001722 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001723
David Brownellf3db6e82008-01-05 13:21:43 -08001724 /* rm9200 needs manual D+ pullup; off by default */
1725 if (cpu_is_at91rm9200()) {
1726 if (udc->board.pullup_pin <= 0) {
1727 DBG("no D+ pullup?\n");
1728 retval = -ENODEV;
1729 goto fail0;
1730 }
1731 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1732 if (retval) {
1733 DBG("D+ pullup is busy\n");
1734 goto fail0;
1735 }
1736 gpio_direction_output(udc->board.pullup_pin,
1737 udc->board.pullup_active_low);
1738 }
1739
David Brownellbb242802008-05-27 19:24:20 -07001740 /* newer chips have more FIFO memory than rm9200 */
1741 if (cpu_is_at91sam9260()) {
1742 udc->ep[0].maxpacket = 64;
1743 udc->ep[3].maxpacket = 64;
1744 udc->ep[4].maxpacket = 512;
1745 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001746 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
David Brownellbb242802008-05-27 19:24:20 -07001747 udc->ep[3].maxpacket = 64;
1748 } else if (cpu_is_at91sam9263()) {
1749 udc->ep[0].maxpacket = 64;
1750 udc->ep[3].maxpacket = 64;
1751 }
1752
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001753 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001754 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001755 retval = -ENOMEM;
1756 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001757 }
1758
1759 udc_reinit(udc);
1760
David Brownellbae4bd82006-01-22 10:32:37 -08001761 /* get interface and function clocks */
1762 udc->iclk = clk_get(dev, "udc_clk");
1763 udc->fclk = clk_get(dev, "udpck");
1764 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1765 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001766 retval = -ENODEV;
David Brownellf3db6e82008-01-05 13:21:43 -08001767 /* NOTE: we "know" here that refcounts on these are NOPs */
1768 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001769 }
1770
1771 retval = device_register(&udc->gadget.dev);
1772 if (retval < 0)
David Brownellf3db6e82008-01-05 13:21:43 -08001773 goto fail0b;
David Brownellbae4bd82006-01-22 10:32:37 -08001774
David Brownell8b2e7662006-07-05 02:38:56 -07001775 /* don't do anything until we have both gadget driver and VBUS */
1776 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001777 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1778 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001779 /* Clear all pending interrupts - UDP may be used by bootloader. */
1780 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001781 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001782
1783 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001784 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001785 retval = request_irq(udc->udp_irq, at91_udc_irq,
1786 IRQF_DISABLED, driver_name, udc);
1787 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001788 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001789 goto fail1;
1790 }
1791 if (udc->board.vbus_pin > 0) {
David Brownellf3db6e82008-01-05 13:21:43 -08001792 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1793 if (retval < 0) {
1794 DBG("request vbus pin failed\n");
1795 goto fail2;
1796 }
1797 gpio_direction_input(udc->board.vbus_pin);
1798
Andrew Victor29ba4b52006-12-07 22:44:38 -08001799 /*
1800 * Get the initial state of VBUS - we cannot expect
1801 * a pending interrupt.
1802 */
David Brownellf3db6e82008-01-05 13:21:43 -08001803 udc->vbus = gpio_get_value(udc->board.vbus_pin);
David Brownell8b2e7662006-07-05 02:38:56 -07001804 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
1805 IRQF_DISABLED, driver_name, udc)) {
1806 DBG("request vbus irq %d failed\n",
1807 udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001808 retval = -EBUSY;
David Brownellf3db6e82008-01-05 13:21:43 -08001809 goto fail3;
David Brownellbae4bd82006-01-22 10:32:37 -08001810 }
1811 } else {
1812 DBG("no VBUS detection, assuming always-on\n");
1813 udc->vbus = 1;
1814 }
1815 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001816 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001817 create_debug_file(udc);
1818
1819 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1820 return 0;
1821
David Brownellf3db6e82008-01-05 13:21:43 -08001822fail3:
1823 if (udc->board.vbus_pin > 0)
1824 gpio_free(udc->board.vbus_pin);
1825fail2:
1826 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001827fail1:
1828 device_unregister(&udc->gadget.dev);
David Brownellf3db6e82008-01-05 13:21:43 -08001829fail0b:
1830 iounmap(udc->udp_baseaddr);
1831fail0a:
1832 if (cpu_is_at91rm9200())
1833 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001834fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001835 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001836 DBG("%s probe failed, %d\n", driver_name, retval);
1837 return retval;
1838}
1839
David Brownell398acce2007-02-15 18:47:17 -08001840static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001841{
David Brownell8b2e7662006-07-05 02:38:56 -07001842 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001843 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001844 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001845
1846 DBG("remove\n");
1847
David Brownell6bea4762006-12-05 03:15:33 -08001848 if (udc->driver)
1849 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001850
Harro Haan4f4c5e32010-03-01 18:01:56 +01001851 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001852 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001853 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001854
David Brownell8b2e7662006-07-05 02:38:56 -07001855 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001856 remove_debug_file(udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001857 if (udc->board.vbus_pin > 0) {
David Brownellbae4bd82006-01-22 10:32:37 -08001858 free_irq(udc->board.vbus_pin, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001859 gpio_free(udc->board.vbus_pin);
1860 }
David Brownell8b2e7662006-07-05 02:38:56 -07001861 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001862 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001863
1864 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001865
1866 if (cpu_is_at91rm9200())
1867 gpio_free(udc->board.pullup_pin);
1868
Andrew Victorffd33262006-12-07 22:44:33 -08001869 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001870 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001871
1872 clk_put(udc->iclk);
1873 clk_put(udc->fclk);
1874
1875 return 0;
1876}
1877
1878#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001879static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001880{
David Brownell8b2e7662006-07-05 02:38:56 -07001881 struct at91_udc *udc = platform_get_drvdata(pdev);
1882 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001883 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001884
David Brownell8b2e7662006-07-05 02:38:56 -07001885 /* Unless we can act normally to the host (letting it wake us up
1886 * whenever it has work for us) force disconnect. Wakeup requires
1887 * PLLB for USB events (signaling for reset, wakeup, or incoming
1888 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001889 */
David Brownell8b2e7662006-07-05 02:38:56 -07001890 if ((!udc->suspended && udc->addr)
1891 || !wake
1892 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001893 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001894 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001895 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001896 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001897 } else
1898 enable_irq_wake(udc->udp_irq);
1899
David Brownell66e56ce2007-01-16 12:46:39 -08001900 udc->active_suspend = wake;
1901 if (udc->board.vbus_pin > 0 && wake)
1902 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001903 return 0;
1904}
1905
David Brownell8b2e7662006-07-05 02:38:56 -07001906static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001907{
David Brownell8b2e7662006-07-05 02:38:56 -07001908 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001909 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001910
David Brownell66e56ce2007-01-16 12:46:39 -08001911 if (udc->board.vbus_pin > 0 && udc->active_suspend)
1912 disable_irq_wake(udc->board.vbus_pin);
1913
David Brownellbae4bd82006-01-22 10:32:37 -08001914 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001915 if (udc->active_suspend)
1916 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001917 else {
1918 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001919 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001920 spin_unlock_irqrestore(&udc->lock, flags);
1921 }
David Brownellbae4bd82006-01-22 10:32:37 -08001922 return 0;
1923}
1924#else
1925#define at91udc_suspend NULL
1926#define at91udc_resume NULL
1927#endif
1928
David Brownelldee497d2007-02-24 13:54:56 -08001929static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001930 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001931 .shutdown = at91udc_shutdown,
1932 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001933 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001934 .driver = {
1935 .name = (char *) driver_name,
1936 .owner = THIS_MODULE,
1937 },
1938};
1939
David Brownell398acce2007-02-15 18:47:17 -08001940static int __init udc_init_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001941{
David Brownelldee497d2007-02-24 13:54:56 -08001942 return platform_driver_probe(&at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001943}
1944module_init(udc_init_module);
1945
David Brownell398acce2007-02-15 18:47:17 -08001946static void __exit udc_exit_module(void)
David Brownellbae4bd82006-01-22 10:32:37 -08001947{
David Brownelldee497d2007-02-24 13:54:56 -08001948 platform_driver_unregister(&at91_udc_driver);
David Brownellbae4bd82006-01-22 10:32:37 -08001949}
1950module_exit(udc_exit_module);
1951
David Brownell8b2e7662006-07-05 02:38:56 -07001952MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001953MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1954MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07001955MODULE_ALIAS("platform:at91_udc");