blob: 38a2e113e705069add08a8663bb400c8f48b0a49 [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
24#undef DEBUG
25#undef VERBOSE
26#undef PACKET_TRACE
27
David Brownellbae4bd82006-01-22 10:32:37 -080028#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/platform_device.h>
31#include <linux/delay.h>
32#include <linux/ioport.h>
33#include <linux/sched.h>
34#include <linux/slab.h>
35#include <linux/smp_lock.h>
36#include <linux/errno.h>
37#include <linux/init.h>
38#include <linux/list.h>
39#include <linux/interrupt.h>
40#include <linux/proc_fs.h>
41#include <linux/clk.h>
42#include <linux/usb_ch9.h>
43#include <linux/usb_gadget.h>
44
45#include <asm/byteorder.h>
Andrew Victorffd33262006-12-07 22:44:33 -080046#include <asm/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080047#include <asm/io.h>
48#include <asm/irq.h>
49#include <asm/system.h>
50#include <asm/mach-types.h>
51
David Brownellbae4bd82006-01-22 10:32:37 -080052#include <asm/arch/gpio.h>
53#include <asm/arch/board.h>
Andrew Victor29ba4b52006-12-07 22:44:38 -080054#include <asm/arch/cpu.h>
55#include <asm/arch/at91sam9261_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080056
57#include "at91_udc.h"
58
59
60/*
61 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070062 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
63 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080064 *
65 * This driver expects the board has been wired with two GPIOs suppporting
66 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070067 * testing hasn't covered such cases.)
68 *
69 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080070 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070071 *
David Brownellbae4bd82006-01-22 10:32:37 -080072 * The VBUS sensing helps during enumeration, and allows both USB clocks
73 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070074 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
75 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080076 */
77
David Brownell8b2e7662006-07-05 02:38:56 -070078#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080079
80static const char driver_name [] = "at91_udc";
81static const char ep0name[] = "ep0";
82
David Brownellbae4bd82006-01-22 10:32:37 -080083
Andrew Victorffd33262006-12-07 22:44:33 -080084#define at91_udp_read(dev, reg) \
85 __raw_readl((dev)->udp_baseaddr + (reg))
86#define at91_udp_write(dev, reg, val) \
87 __raw_writel((val), (dev)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080088
89/*-------------------------------------------------------------------------*/
90
91#ifdef CONFIG_USB_GADGET_DEBUG_FILES
92
93#include <linux/seq_file.h>
94
95static const char debug_filename[] = "driver/udc";
96
97#define FOURBITS "%s%s%s%s"
98#define EIGHTBITS FOURBITS FOURBITS
99
100static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
101{
102 static char *types[] = {
103 "control", "out-iso", "out-bulk", "out-int",
104 "BOGUS", "in-iso", "in-bulk", "in-int"};
105
106 u32 csr;
107 struct at91_request *req;
108 unsigned long flags;
109
110 local_irq_save(flags);
111
112 csr = __raw_readl(ep->creg);
113
114 /* NOTE: not collecting per-endpoint irq statistics... */
115
116 seq_printf(s, "\n");
117 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
118 ep->ep.name, ep->ep.maxpacket,
119 ep->is_in ? "in" : "out",
120 ep->is_iso ? " iso" : "",
121 ep->is_pingpong
122 ? (ep->fifo_bank ? "pong" : "ping")
123 : "",
124 ep->stopped ? " stopped" : "");
125 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
126 csr,
127 (csr & 0x07ff0000) >> 16,
128 (csr & (1 << 15)) ? "enabled" : "disabled",
129 (csr & (1 << 11)) ? "DATA1" : "DATA0",
130 types[(csr & 0x700) >> 8],
131
132 /* iff type is control then print current direction */
133 (!(csr & 0x700))
134 ? ((csr & (1 << 7)) ? " IN" : " OUT")
135 : "",
136 (csr & (1 << 6)) ? " rxdatabk1" : "",
137 (csr & (1 << 5)) ? " forcestall" : "",
138 (csr & (1 << 4)) ? " txpktrdy" : "",
139
140 (csr & (1 << 3)) ? " stallsent" : "",
141 (csr & (1 << 2)) ? " rxsetup" : "",
142 (csr & (1 << 1)) ? " rxdatabk0" : "",
143 (csr & (1 << 0)) ? " txcomp" : "");
144 if (list_empty (&ep->queue))
145 seq_printf(s, "\t(queue empty)\n");
146
147 else list_for_each_entry (req, &ep->queue, queue) {
148 unsigned length = req->req.actual;
149
150 seq_printf(s, "\treq %p len %d/%d buf %p\n",
151 &req->req, length,
152 req->req.length, req->req.buf);
153 }
154 local_irq_restore(flags);
155}
156
157static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
158{
159 int i;
160
161 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
162 (mask & (1 << 13)) ? " wakeup" : "",
163 (mask & (1 << 12)) ? " endbusres" : "",
164
165 (mask & (1 << 11)) ? " sofint" : "",
166 (mask & (1 << 10)) ? " extrsm" : "",
167 (mask & (1 << 9)) ? " rxrsm" : "",
168 (mask & (1 << 8)) ? " rxsusp" : "");
169 for (i = 0; i < 8; i++) {
170 if (mask & (1 << i))
171 seq_printf(s, " ep%d", i);
172 }
173 seq_printf(s, "\n");
174}
175
176static int proc_udc_show(struct seq_file *s, void *unused)
177{
178 struct at91_udc *udc = s->private;
179 struct at91_ep *ep;
180 u32 tmp;
181
182 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
183
184 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
185 udc->vbus ? "present" : "off",
186 udc->enabled
187 ? (udc->vbus ? "active" : "enabled")
188 : "disabled",
189 udc->selfpowered ? "self" : "VBUS",
190 udc->suspended ? ", suspended" : "",
191 udc->driver ? udc->driver->driver.name : "(none)");
192
193 /* don't access registers when interface isn't clocked */
194 if (!udc->clocked) {
195 seq_printf(s, "(not clocked)\n");
196 return 0;
197 }
198
Andrew Victorffd33262006-12-07 22:44:33 -0800199 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800200 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
201 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
202 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
203 (tmp & AT91_UDP_NUM));
204
Andrew Victorffd33262006-12-07 22:44:33 -0800205 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800206 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
207 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
208 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
209 (tmp & AT91_UDP_ESR) ? " esr" : "",
210 (tmp & AT91_UDP_CONFG) ? " confg" : "",
211 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
212
Andrew Victorffd33262006-12-07 22:44:33 -0800213 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800214 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
215 (tmp & AT91_UDP_FEN) ? " fen" : "",
216 (tmp & AT91_UDP_FADD));
217
Andrew Victorffd33262006-12-07 22:44:33 -0800218 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
219 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800220
221 if (udc->enabled && udc->vbus) {
222 proc_ep_show(s, &udc->ep[0]);
223 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
224 if (ep->desc)
225 proc_ep_show(s, ep);
226 }
227 }
228 return 0;
229}
230
231static int proc_udc_open(struct inode *inode, struct file *file)
232{
233 return single_open(file, proc_udc_show, PDE(inode)->data);
234}
235
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300236static const struct file_operations proc_ops = {
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{
245 struct proc_dir_entry *pde;
246
247 pde = create_proc_entry (debug_filename, 0, NULL);
248 udc->pde = pde;
249 if (pde == NULL)
250 return;
251
252 pde->proc_fops = &proc_ops;
253 pde->data = udc;
254}
255
256static void remove_debug_file(struct at91_udc *udc)
257{
258 if (udc->pde)
259 remove_proc_entry(debug_filename, NULL);
260}
261
262#else
263
264static inline void create_debug_file(struct at91_udc *udc) {}
265static inline void remove_debug_file(struct at91_udc *udc) {}
266
267#endif
268
269
270/*-------------------------------------------------------------------------*/
271
272static void done(struct at91_ep *ep, struct at91_request *req, int status)
273{
274 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800275 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800276
277 list_del_init(&req->queue);
278 if (req->req.status == -EINPROGRESS)
279 req->req.status = status;
280 else
281 status = req->req.status;
282 if (status && status != -ESHUTDOWN)
283 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
284
285 ep->stopped = 1;
286 req->req.complete(&ep->ep, &req->req);
287 ep->stopped = stopped;
288
289 /* ep0 is always ready; other endpoints need a non-empty queue */
290 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800291 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800292}
293
294/*-------------------------------------------------------------------------*/
295
296/* bits indicating OUT fifo has data ready */
297#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
298
299/*
300 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
301 * back most of the value you just read (because of side effects, including
302 * bits that may change after reading and before writing).
303 *
304 * Except when changing a specific bit, always write values which:
305 * - clear SET_FX bits (setting them could change something)
306 * - set CLR_FX bits (clearing them could change something)
307 *
308 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
309 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700310 *
311 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
312 * implying a need to wait for one write to complete (test relevant bits)
313 * before starting the next write. This shouldn't be an issue given how
314 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800315 */
316#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700317#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
318 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800319
320/* pull OUT packet data from the endpoint's fifo */
321static int read_fifo (struct at91_ep *ep, struct at91_request *req)
322{
323 u32 __iomem *creg = ep->creg;
324 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
325 u32 csr;
326 u8 *buf;
327 unsigned int count, bufferspace, is_done;
328
329 buf = req->req.buf + req->req.actual;
330 bufferspace = req->req.length - req->req.actual;
331
332 /*
333 * there might be nothing to read if ep_queue() calls us,
334 * or if we already emptied both pingpong buffers
335 */
336rescan:
337 csr = __raw_readl(creg);
338 if ((csr & RX_DATA_READY) == 0)
339 return 0;
340
341 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
342 if (count > ep->ep.maxpacket)
343 count = ep->ep.maxpacket;
344 if (count > bufferspace) {
345 DBG("%s buffer overflow\n", ep->ep.name);
346 req->req.status = -EOVERFLOW;
347 count = bufferspace;
348 }
349 __raw_readsb(dreg, buf, count);
350
351 /* release and swap pingpong mem bank */
352 csr |= CLR_FX;
353 if (ep->is_pingpong) {
354 if (ep->fifo_bank == 0) {
355 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
356 ep->fifo_bank = 1;
357 } else {
358 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
359 ep->fifo_bank = 0;
360 }
361 } else
362 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
363 __raw_writel(csr, creg);
364
365 req->req.actual += count;
366 is_done = (count < ep->ep.maxpacket);
367 if (count == bufferspace)
368 is_done = 1;
369
370 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
371 is_done ? " (done)" : "");
372
373 /*
374 * avoid extra trips through IRQ logic for packets already in
375 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
376 */
377 if (is_done)
378 done(ep, req, 0);
379 else if (ep->is_pingpong) {
380 bufferspace -= count;
381 buf += count;
382 goto rescan;
383 }
384
385 return is_done;
386}
387
388/* load fifo for an IN packet */
389static int write_fifo(struct at91_ep *ep, struct at91_request *req)
390{
391 u32 __iomem *creg = ep->creg;
392 u32 csr = __raw_readl(creg);
393 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
394 unsigned total, count, is_last;
395
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
419 total = req->req.length - req->req.actual;
420 if (ep->ep.maxpacket < total) {
421 count = ep->ep.maxpacket;
422 is_last = 0;
423 } else {
424 count = total;
425 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
426 }
427
428 /*
429 * Write the packet, maybe it's a ZLP.
430 *
431 * NOTE: incrementing req->actual before we receive the ACK means
432 * gadget driver IN bytecounts can be wrong in fault cases. That's
433 * fixable with PIO drivers like this one (save "count" here, and
434 * do the increment later on TX irq), but not for most DMA hardware.
435 *
436 * So all gadget drivers must accept that potential error. Some
437 * hardware supports precise fifo status reporting, letting them
438 * recover when the actual bytecount matters (e.g. for USB Test
439 * and Measurement Class devices).
440 */
441 __raw_writesb(dreg, req->req.buf + req->req.actual, count);
442 csr &= ~SET_FX;
443 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
444 __raw_writel(csr, creg);
445 req->req.actual += count;
446
447 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
448 is_last ? " (done)" : "");
449 if (is_last)
450 done(ep, req, 0);
451 return is_last;
452}
453
454static void nuke(struct at91_ep *ep, int status)
455{
456 struct at91_request *req;
457
458 // terminer chaque requete dans la queue
459 ep->stopped = 1;
460 if (list_empty(&ep->queue))
461 return;
462
463 VDBG("%s %s\n", __FUNCTION__, ep->ep.name);
464 while (!list_empty(&ep->queue)) {
465 req = list_entry(ep->queue.next, struct at91_request, queue);
466 done(ep, req, status);
467 }
468}
469
470/*-------------------------------------------------------------------------*/
471
David Brownell8b2e7662006-07-05 02:38:56 -0700472static int at91_ep_enable(struct usb_ep *_ep,
473 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800474{
475 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
476 struct at91_udc *dev = ep->udc;
477 u16 maxpacket;
478 u32 tmp;
479 unsigned long flags;
480
481 if (!_ep || !ep
482 || !desc || ep->desc
483 || _ep->name == ep0name
484 || desc->bDescriptorType != USB_DT_ENDPOINT
485 || (maxpacket = le16_to_cpu(desc->wMaxPacketSize)) == 0
486 || maxpacket > ep->maxpacket) {
487 DBG("bad ep or descriptor\n");
488 return -EINVAL;
489 }
490
491 if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
492 DBG("bogus device state\n");
493 return -ESHUTDOWN;
494 }
495
496 tmp = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
497 switch (tmp) {
498 case USB_ENDPOINT_XFER_CONTROL:
499 DBG("only one control endpoint\n");
500 return -EINVAL;
501 case USB_ENDPOINT_XFER_INT:
502 if (maxpacket > 64)
503 goto bogus_max;
504 break;
505 case USB_ENDPOINT_XFER_BULK:
506 switch (maxpacket) {
507 case 8:
508 case 16:
509 case 32:
510 case 64:
511 goto ok;
512 }
513bogus_max:
514 DBG("bogus maxpacket %d\n", maxpacket);
515 return -EINVAL;
516 case USB_ENDPOINT_XFER_ISOC:
517 if (!ep->is_pingpong) {
518 DBG("iso requires double buffering\n");
519 return -EINVAL;
520 }
521 break;
522 }
523
524ok:
525 local_irq_save(flags);
526
527 /* initialize endpoint to match this descriptor */
528 ep->is_in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
529 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
530 ep->stopped = 0;
531 if (ep->is_in)
532 tmp |= 0x04;
533 tmp <<= 8;
534 tmp |= AT91_UDP_EPEDS;
535 __raw_writel(tmp, ep->creg);
536
537 ep->desc = desc;
538 ep->ep.maxpacket = maxpacket;
539
540 /*
541 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
542 * since endpoint resets don't reset hw pingpong state.
543 */
Andrew Victorffd33262006-12-07 22:44:33 -0800544 at91_udp_write(dev, AT91_UDP_RST_EP, ep->int_mask);
545 at91_udp_write(dev, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800546
547 local_irq_restore(flags);
548 return 0;
549}
550
551static int at91_ep_disable (struct usb_ep * _ep)
552{
553 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800554 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800555 unsigned long flags;
556
557 if (ep == &ep->udc->ep[0])
558 return -EINVAL;
559
560 local_irq_save(flags);
561
562 nuke(ep, -ESHUTDOWN);
563
564 /* restore the endpoint's pristine config */
565 ep->desc = NULL;
566 ep->ep.maxpacket = ep->maxpacket;
567
568 /* reset fifos and endpoint */
569 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800570 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
571 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800572 __raw_writel(0, ep->creg);
573 }
574
575 local_irq_restore(flags);
576 return 0;
577}
578
579/*
580 * this is a PIO-only driver, so there's nothing
581 * interesting for request or buffer allocation.
582 */
583
David Brownell8b2e7662006-07-05 02:38:56 -0700584static struct usb_request *
585at91_ep_alloc_request(struct usb_ep *_ep, unsigned int gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800586{
587 struct at91_request *req;
588
Robert P. J. Daycd861282006-12-13 00:34:52 -0800589 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800590 if (!req)
591 return NULL;
592
593 INIT_LIST_HEAD(&req->queue);
594 return &req->req;
595}
596
597static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
598{
599 struct at91_request *req;
600
601 req = container_of(_req, struct at91_request, req);
602 BUG_ON(!list_empty(&req->queue));
603 kfree(req);
604}
605
606static void *at91_ep_alloc_buffer(
607 struct usb_ep *_ep,
608 unsigned bytes,
609 dma_addr_t *dma,
610 gfp_t gfp_flags)
611{
612 *dma = ~0;
613 return kmalloc(bytes, gfp_flags);
614}
615
616static void at91_ep_free_buffer(
617 struct usb_ep *ep,
618 void *buf,
619 dma_addr_t dma,
620 unsigned bytes)
621{
622 kfree(buf);
623}
624
625static int at91_ep_queue(struct usb_ep *_ep,
626 struct usb_request *_req, gfp_t gfp_flags)
627{
628 struct at91_request *req;
629 struct at91_ep *ep;
630 struct at91_udc *dev;
631 int status;
632 unsigned long flags;
633
634 req = container_of(_req, struct at91_request, req);
635 ep = container_of(_ep, struct at91_ep, ep);
636
637 if (!_req || !_req->complete
638 || !_req->buf || !list_empty(&req->queue)) {
639 DBG("invalid request\n");
640 return -EINVAL;
641 }
642
643 if (!_ep || (!ep->desc && ep->ep.name != ep0name)) {
644 DBG("invalid ep\n");
645 return -EINVAL;
646 }
647
648 dev = ep->udc;
649
650 if (!dev || !dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
651 DBG("invalid device\n");
652 return -EINVAL;
653 }
654
655 _req->status = -EINPROGRESS;
656 _req->actual = 0;
657
658 local_irq_save(flags);
659
660 /* try to kickstart any empty and idle queue */
661 if (list_empty(&ep->queue) && !ep->stopped) {
662 int is_ep0;
663
664 /*
665 * If this control request has a non-empty DATA stage, this
666 * will start that stage. It works just like a non-control
667 * request (until the status stage starts, maybe early).
668 *
669 * If the data stage is empty, then this starts a successful
670 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
671 */
672 is_ep0 = (ep->ep.name == ep0name);
673 if (is_ep0) {
674 u32 tmp;
675
676 if (!dev->req_pending) {
677 status = -EINVAL;
678 goto done;
679 }
680
681 /*
682 * defer changing CONFG until after the gadget driver
683 * reconfigures the endpoints.
684 */
685 if (dev->wait_for_config_ack) {
Andrew Victorffd33262006-12-07 22:44:33 -0800686 tmp = at91_udp_read(dev, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800687 tmp ^= AT91_UDP_CONFG;
688 VDBG("toggle config\n");
Andrew Victorffd33262006-12-07 22:44:33 -0800689 at91_udp_write(dev, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800690 }
691 if (req->req.length == 0) {
692ep0_in_status:
693 PACKET("ep0 in/status\n");
694 status = 0;
695 tmp = __raw_readl(ep->creg);
696 tmp &= ~SET_FX;
697 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
698 __raw_writel(tmp, ep->creg);
699 dev->req_pending = 0;
700 goto done;
701 }
702 }
703
704 if (ep->is_in)
705 status = write_fifo(ep, req);
706 else {
707 status = read_fifo(ep, req);
708
709 /* IN/STATUS stage is otherwise triggered by irq */
710 if (status && is_ep0)
711 goto ep0_in_status;
712 }
713 } else
714 status = 0;
715
716 if (req && !status) {
717 list_add_tail (&req->queue, &ep->queue);
Andrew Victorffd33262006-12-07 22:44:33 -0800718 at91_udp_write(dev, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800719 }
720done:
721 local_irq_restore(flags);
722 return (status < 0) ? status : 0;
723}
724
725static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
726{
727 struct at91_ep *ep;
728 struct at91_request *req;
729
730 ep = container_of(_ep, struct at91_ep, ep);
731 if (!_ep || ep->ep.name == ep0name)
732 return -EINVAL;
733
734 /* make sure it's actually queued on this endpoint */
735 list_for_each_entry (req, &ep->queue, queue) {
736 if (&req->req == _req)
737 break;
738 }
739 if (&req->req != _req)
740 return -EINVAL;
741
742 done(ep, req, -ECONNRESET);
743 return 0;
744}
745
746static int at91_ep_set_halt(struct usb_ep *_ep, int value)
747{
748 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800749 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800750 u32 __iomem *creg;
751 u32 csr;
752 unsigned long flags;
753 int status = 0;
754
755 if (!_ep || ep->is_iso || !ep->udc->clocked)
756 return -EINVAL;
757
758 creg = ep->creg;
759 local_irq_save(flags);
760
761 csr = __raw_readl(creg);
762
763 /*
764 * fail with still-busy IN endpoints, ensuring correct sequencing
765 * of data tx then stall. note that the fifo rx bytecount isn't
766 * completely accurate as a tx bytecount.
767 */
768 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
769 status = -EAGAIN;
770 else {
771 csr |= CLR_FX;
772 csr &= ~SET_FX;
773 if (value) {
774 csr |= AT91_UDP_FORCESTALL;
775 VDBG("halt %s\n", ep->ep.name);
776 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800777 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
778 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800779 csr &= ~AT91_UDP_FORCESTALL;
780 }
781 __raw_writel(csr, creg);
782 }
783
784 local_irq_restore(flags);
785 return status;
786}
787
788static struct usb_ep_ops at91_ep_ops = {
789 .enable = at91_ep_enable,
790 .disable = at91_ep_disable,
791 .alloc_request = at91_ep_alloc_request,
792 .free_request = at91_ep_free_request,
793 .alloc_buffer = at91_ep_alloc_buffer,
794 .free_buffer = at91_ep_free_buffer,
795 .queue = at91_ep_queue,
796 .dequeue = at91_ep_dequeue,
797 .set_halt = at91_ep_set_halt,
798 // there's only imprecise fifo status reporting
799};
800
801/*-------------------------------------------------------------------------*/
802
803static int at91_get_frame(struct usb_gadget *gadget)
804{
Andrew Victorffd33262006-12-07 22:44:33 -0800805 struct at91_udc *udc = to_udc(gadget);
806
David Brownellbae4bd82006-01-22 10:32:37 -0800807 if (!to_udc(gadget)->clocked)
808 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800809 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800810}
811
812static int at91_wakeup(struct usb_gadget *gadget)
813{
814 struct at91_udc *udc = to_udc(gadget);
815 u32 glbstate;
816 int status = -EINVAL;
817 unsigned long flags;
818
819 DBG("%s\n", __FUNCTION__ );
820 local_irq_save(flags);
821
822 if (!udc->clocked || !udc->suspended)
823 goto done;
824
825 /* NOTE: some "early versions" handle ESR differently ... */
826
Andrew Victorffd33262006-12-07 22:44:33 -0800827 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800828 if (!(glbstate & AT91_UDP_ESR))
829 goto done;
830 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800831 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800832
833done:
834 local_irq_restore(flags);
835 return status;
836}
837
838/* reinit == restore inital software state */
839static void udc_reinit(struct at91_udc *udc)
840{
841 u32 i;
842
843 INIT_LIST_HEAD(&udc->gadget.ep_list);
844 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
845
846 for (i = 0; i < NUM_ENDPOINTS; i++) {
847 struct at91_ep *ep = &udc->ep[i];
848
849 if (i != 0)
850 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
851 ep->desc = NULL;
852 ep->stopped = 0;
853 ep->fifo_bank = 0;
854 ep->ep.maxpacket = ep->maxpacket;
Andrew Victorffd33262006-12-07 22:44:33 -0800855 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
David Brownellbae4bd82006-01-22 10:32:37 -0800856 // initialiser une queue par endpoint
857 INIT_LIST_HEAD(&ep->queue);
858 }
859}
860
861static void stop_activity(struct at91_udc *udc)
862{
863 struct usb_gadget_driver *driver = udc->driver;
864 int i;
865
866 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
867 driver = NULL;
868 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700869 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800870
871 for (i = 0; i < NUM_ENDPOINTS; i++) {
872 struct at91_ep *ep = &udc->ep[i];
873 ep->stopped = 1;
874 nuke(ep, -ESHUTDOWN);
875 }
876 if (driver)
877 driver->disconnect(&udc->gadget);
878
879 udc_reinit(udc);
880}
881
882static void clk_on(struct at91_udc *udc)
883{
884 if (udc->clocked)
885 return;
886 udc->clocked = 1;
887 clk_enable(udc->iclk);
888 clk_enable(udc->fclk);
889}
890
891static void clk_off(struct at91_udc *udc)
892{
893 if (!udc->clocked)
894 return;
895 udc->clocked = 0;
896 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownellbae4bd82006-01-22 10:32:37 -0800897 clk_disable(udc->fclk);
David Brownell8b2e7662006-07-05 02:38:56 -0700898 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800899}
900
901/*
902 * activate/deactivate link with host; minimize power usage for
903 * inactive links by cutting clocks and transceiver power.
904 */
905static void pullup(struct at91_udc *udc, int is_on)
906{
907 if (!udc->enabled || !udc->vbus)
908 is_on = 0;
909 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800910
David Brownellbae4bd82006-01-22 10:32:37 -0800911 if (is_on) {
912 clk_on(udc);
Andrew Victorffd33262006-12-07 22:44:33 -0800913 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800914 if (cpu_is_at91rm9200())
915 at91_set_gpio_value(udc->board.pullup_pin, 1);
916 else if (cpu_is_at91sam9260()) {
917 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
918
919 txvc |= AT91_UDP_TXVC_PUON;
920 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
921 } else if (cpu_is_at91sam9261()) {
922 u32 usbpucr;
923
924 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
925 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
926 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
927 }
Andrew Victorffd33262006-12-07 22:44:33 -0800928 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800929 stop_activity(udc);
Andrew Victorffd33262006-12-07 22:44:33 -0800930 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800931 if (cpu_is_at91rm9200())
932 at91_set_gpio_value(udc->board.pullup_pin, 0);
933 else if (cpu_is_at91sam9260()) {
934 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
935
936 txvc &= ~AT91_UDP_TXVC_PUON;
937 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
938 } else if (cpu_is_at91sam9261()) {
939 u32 usbpucr;
940
941 usbpucr = at91_sys_read(AT91_MATRIX_USBPUCR);
942 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
943 at91_sys_write(AT91_MATRIX_USBPUCR, usbpucr);
944 }
David Brownellbae4bd82006-01-22 10:32:37 -0800945 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800946 }
947}
948
949/* vbus is here! turn everything on that's ready */
950static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
951{
952 struct at91_udc *udc = to_udc(gadget);
953 unsigned long flags;
954
955 // VDBG("vbus %s\n", is_active ? "on" : "off");
956 local_irq_save(flags);
957 udc->vbus = (is_active != 0);
958 pullup(udc, is_active);
959 local_irq_restore(flags);
960 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
968 local_irq_save(flags);
969 udc->enabled = is_on = !!is_on;
970 pullup(udc, is_on);
971 local_irq_restore(flags);
972 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
980 local_irq_save(flags);
981 udc->selfpowered = (is_on != 0);
982 local_irq_restore(flags);
983 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];
1174 if (tmp > NUM_ENDPOINTS || (tmp && !ep->desc))
1175 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];
1197 if (w_value != USB_ENDPOINT_HALT || tmp > NUM_ENDPOINTS)
1198 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];
1216 if (w_value != USB_ENDPOINT_HALT || tmp > NUM_ENDPOINTS)
1217 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 */
1244 status = udc->driver->setup(&udc->gadget, &pkt.r);
1245 if (status < 0) {
1246stall:
1247 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1248 pkt.r.bRequestType, pkt.r.bRequest, status);
1249 csr |= AT91_UDP_FORCESTALL;
1250 __raw_writel(csr, creg);
1251 udc->req_pending = 0;
1252 }
1253 return;
1254
1255succeed:
1256 /* immediate successful (IN) STATUS after zero length DATA */
1257 PACKET("ep0 in/status\n");
1258write_in:
1259 csr |= AT91_UDP_TXPKTRDY;
1260 __raw_writel(csr, creg);
1261 udc->req_pending = 0;
1262 return;
1263}
1264
1265static void handle_ep0(struct at91_udc *udc)
1266{
1267 struct at91_ep *ep0 = &udc->ep[0];
1268 u32 __iomem *creg = ep0->creg;
1269 u32 csr = __raw_readl(creg);
1270 struct at91_request *req;
1271
1272 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1273 nuke(ep0, -EPROTO);
1274 udc->req_pending = 0;
1275 csr |= CLR_FX;
1276 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1277 __raw_writel(csr, creg);
1278 VDBG("ep0 stalled\n");
1279 csr = __raw_readl(creg);
1280 }
1281 if (csr & AT91_UDP_RXSETUP) {
1282 nuke(ep0, 0);
1283 udc->req_pending = 0;
1284 handle_setup(udc, ep0, csr);
1285 return;
1286 }
1287
1288 if (list_empty(&ep0->queue))
1289 req = NULL;
1290 else
1291 req = list_entry(ep0->queue.next, struct at91_request, queue);
1292
1293 /* host ACKed an IN packet that we sent */
1294 if (csr & AT91_UDP_TXCOMP) {
1295 csr |= CLR_FX;
1296 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1297
1298 /* write more IN DATA? */
1299 if (req && ep0->is_in) {
1300 if (handle_ep(ep0))
1301 udc->req_pending = 0;
1302
1303 /*
1304 * Ack after:
1305 * - last IN DATA packet (including GET_STATUS)
1306 * - IN/STATUS for OUT DATA
1307 * - IN/STATUS for any zero-length DATA stage
1308 * except for the IN DATA case, the host should send
1309 * an OUT status later, which we'll ack.
1310 */
1311 } else {
1312 udc->req_pending = 0;
1313 __raw_writel(csr, creg);
1314
1315 /*
1316 * SET_ADDRESS takes effect only after the STATUS
1317 * (to the original address) gets acked.
1318 */
1319 if (udc->wait_for_addr_ack) {
1320 u32 tmp;
1321
Andrew Victorffd33262006-12-07 22:44:33 -08001322 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001323 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001324 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001325 tmp &= ~AT91_UDP_FADDEN;
1326 if (udc->addr)
1327 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001328 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001329
1330 udc->wait_for_addr_ack = 0;
1331 VDBG("address %d\n", udc->addr);
1332 }
1333 }
1334 }
1335
1336 /* OUT packet arrived ... */
1337 else if (csr & AT91_UDP_RX_DATA_BK0) {
1338 csr |= CLR_FX;
1339 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1340
1341 /* OUT DATA stage */
1342 if (!ep0->is_in) {
1343 if (req) {
1344 if (handle_ep(ep0)) {
1345 /* send IN/STATUS */
1346 PACKET("ep0 in/status\n");
1347 csr = __raw_readl(creg);
1348 csr &= ~SET_FX;
1349 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1350 __raw_writel(csr, creg);
1351 udc->req_pending = 0;
1352 }
1353 } else if (udc->req_pending) {
1354 /*
1355 * AT91 hardware has a hard time with this
1356 * "deferred response" mode for control-OUT
1357 * transfers. (For control-IN it's fine.)
1358 *
1359 * The normal solution leaves OUT data in the
1360 * fifo until the gadget driver is ready.
1361 * We couldn't do that here without disabling
1362 * the IRQ that tells about SETUP packets,
1363 * e.g. when the host gets impatient...
1364 *
1365 * Working around it by copying into a buffer
1366 * would almost be a non-deferred response,
1367 * except that it wouldn't permit reliable
1368 * stalling of the request. Instead, demand
1369 * that gadget drivers not use this mode.
1370 */
1371 DBG("no control-OUT deferred responses!\n");
1372 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1373 udc->req_pending = 0;
1374 }
1375
1376 /* STATUS stage for control-IN; ack. */
1377 } else {
1378 PACKET("ep0 out/status ACK\n");
1379 __raw_writel(csr, creg);
1380
1381 /* "early" status stage */
1382 if (req)
1383 done(ep0, req, 0);
1384 }
1385 }
1386}
1387
David Howells7d12e782006-10-05 14:55:46 +01001388static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001389{
1390 struct at91_udc *udc = _udc;
1391 u32 rescans = 5;
1392
1393 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001394 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001395
Andrew Victorffd33262006-12-07 22:44:33 -08001396 status = at91_udp_read(udc, AT91_UDP_ISR)
1397 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001398 if (!status)
1399 break;
1400
1401 /* USB reset irq: not maskable */
1402 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001403 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1404 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001405 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001406 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1407 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001408 VDBG("end bus reset\n");
1409 udc->addr = 0;
1410 stop_activity(udc);
1411
1412 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001413 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001414 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001415 udc->gadget.speed = USB_SPEED_FULL;
1416 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001417 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001418
1419 /*
1420 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001421 * USB host is present. That saves power, but for
1422 * boards that don't support VBUS detection, both
1423 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001424 */
1425
1426 /* host initiated suspend (3+ms bus idle) */
1427 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001428 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1429 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1430 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
David Brownellbae4bd82006-01-22 10:32:37 -08001431 // VDBG("bus suspend\n");
1432 if (udc->suspended)
1433 continue;
1434 udc->suspended = 1;
1435
1436 /*
1437 * NOTE: when suspending a VBUS-powered device, the
1438 * gadget driver should switch into slow clock mode
1439 * and then into standby to avoid drawing more than
1440 * 500uA power (2500uA for some high-power configs).
1441 */
1442 if (udc->driver && udc->driver->suspend)
1443 udc->driver->suspend(&udc->gadget);
1444
1445 /* host initiated resume */
1446 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001447 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1448 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1449 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
David Brownellbae4bd82006-01-22 10:32:37 -08001450 // VDBG("bus resume\n");
1451 if (!udc->suspended)
1452 continue;
1453 udc->suspended = 0;
1454
1455 /*
1456 * NOTE: for a VBUS-powered device, the gadget driver
1457 * would normally want to switch out of slow clock
1458 * mode into normal mode.
1459 */
1460 if (udc->driver && udc->driver->resume)
1461 udc->driver->resume(&udc->gadget);
1462
1463 /* endpoint IRQs are cleared by handling them */
1464 } else {
1465 int i;
1466 unsigned mask = 1;
1467 struct at91_ep *ep = &udc->ep[1];
1468
1469 if (status & mask)
1470 handle_ep0(udc);
1471 for (i = 1; i < NUM_ENDPOINTS; i++) {
1472 mask <<= 1;
1473 if (status & mask)
1474 handle_ep(ep);
1475 ep++;
1476 }
1477 }
1478 }
1479
1480 return IRQ_HANDLED;
1481}
1482
1483/*-------------------------------------------------------------------------*/
1484
David Brownell8b2e7662006-07-05 02:38:56 -07001485static void nop_release(struct device *dev)
1486{
1487 /* nothing to free */
1488}
1489
David Brownellbae4bd82006-01-22 10:32:37 -08001490static struct at91_udc controller = {
1491 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001492 .ops = &at91_udc_ops,
1493 .ep0 = &controller.ep[0].ep,
1494 .name = driver_name,
1495 .dev = {
1496 .bus_id = "gadget",
1497 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001498 }
1499 },
1500 .ep[0] = {
1501 .ep = {
1502 .name = ep0name,
1503 .ops = &at91_ep_ops,
1504 },
1505 .udc = &controller,
1506 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001507 .int_mask = 1 << 0,
1508 },
1509 .ep[1] = {
1510 .ep = {
1511 .name = "ep1",
1512 .ops = &at91_ep_ops,
1513 },
1514 .udc = &controller,
1515 .is_pingpong = 1,
1516 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001517 .int_mask = 1 << 1,
1518 },
1519 .ep[2] = {
1520 .ep = {
1521 .name = "ep2",
1522 .ops = &at91_ep_ops,
1523 },
1524 .udc = &controller,
1525 .is_pingpong = 1,
1526 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001527 .int_mask = 1 << 2,
1528 },
1529 .ep[3] = {
1530 .ep = {
1531 /* could actually do bulk too */
1532 .name = "ep3-int",
1533 .ops = &at91_ep_ops,
1534 },
1535 .udc = &controller,
1536 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001537 .int_mask = 1 << 3,
1538 },
1539 .ep[4] = {
1540 .ep = {
1541 .name = "ep4",
1542 .ops = &at91_ep_ops,
1543 },
1544 .udc = &controller,
1545 .is_pingpong = 1,
1546 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001547 .int_mask = 1 << 4,
1548 },
1549 .ep[5] = {
1550 .ep = {
1551 .name = "ep5",
1552 .ops = &at91_ep_ops,
1553 },
1554 .udc = &controller,
1555 .is_pingpong = 1,
1556 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001557 .int_mask = 1 << 5,
1558 },
David Brownell8b2e7662006-07-05 02:38:56 -07001559 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001560};
1561
David Howells7d12e782006-10-05 14:55:46 +01001562static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001563{
1564 struct at91_udc *udc = _udc;
1565 unsigned value;
1566
1567 /* vbus needs at least brief debouncing */
1568 udelay(10);
1569 value = at91_get_gpio_value(udc->board.vbus_pin);
1570 if (value != udc->vbus)
1571 at91_vbus_session(&udc->gadget, value);
1572
1573 return IRQ_HANDLED;
1574}
1575
1576int usb_gadget_register_driver (struct usb_gadget_driver *driver)
1577{
1578 struct at91_udc *udc = &controller;
1579 int retval;
1580
1581 if (!driver
Wojtek Kaniewskibc92c322006-12-08 09:39:36 -08001582 || driver->speed < USB_SPEED_FULL
David Brownellbae4bd82006-01-22 10:32:37 -08001583 || !driver->bind
David Brownellbae4bd82006-01-22 10:32:37 -08001584 || !driver->setup) {
1585 DBG("bad parameter.\n");
1586 return -EINVAL;
1587 }
1588
1589 if (udc->driver) {
1590 DBG("UDC already has a gadget driver\n");
1591 return -EBUSY;
1592 }
1593
1594 udc->driver = driver;
1595 udc->gadget.dev.driver = &driver->driver;
1596 udc->gadget.dev.driver_data = &driver->driver;
1597 udc->enabled = 1;
1598 udc->selfpowered = 1;
1599
1600 retval = driver->bind(&udc->gadget);
1601 if (retval) {
1602 DBG("driver->bind() returned %d\n", retval);
1603 udc->driver = NULL;
1604 return retval;
1605 }
1606
1607 local_irq_disable();
1608 pullup(udc, 1);
1609 local_irq_enable();
1610
1611 DBG("bound to %s\n", driver->driver.name);
1612 return 0;
1613}
1614EXPORT_SYMBOL (usb_gadget_register_driver);
1615
1616int usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
1617{
1618 struct at91_udc *udc = &controller;
1619
David Brownell6bea4762006-12-05 03:15:33 -08001620 if (!driver || driver != udc->driver || !driver->unbind)
David Brownellbae4bd82006-01-22 10:32:37 -08001621 return -EINVAL;
1622
1623 local_irq_disable();
1624 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001625 at91_udp_write(udc, AT91_UDP_IDR, ~0);
David Brownellbae4bd82006-01-22 10:32:37 -08001626 pullup(udc, 0);
1627 local_irq_enable();
1628
1629 driver->unbind(&udc->gadget);
1630 udc->driver = NULL;
1631
1632 DBG("unbound from %s\n", driver->driver.name);
1633 return 0;
1634}
1635EXPORT_SYMBOL (usb_gadget_unregister_driver);
1636
1637/*-------------------------------------------------------------------------*/
1638
1639static void at91udc_shutdown(struct platform_device *dev)
1640{
1641 /* force disconnect on reboot */
1642 pullup(platform_get_drvdata(dev), 0);
1643}
1644
1645static int __devinit at91udc_probe(struct platform_device *pdev)
1646{
1647 struct device *dev = &pdev->dev;
1648 struct at91_udc *udc;
1649 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001650 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001651
1652 if (!dev->platform_data) {
1653 /* small (so we copy it) but critical! */
1654 DBG("missing platform_data\n");
1655 return -ENODEV;
1656 }
1657
David Brownell8b2e7662006-07-05 02:38:56 -07001658 if (pdev->num_resources != 2) {
1659 DBG("invalid num_resources");
1660 return -ENODEV;
1661 }
1662 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1663 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
1664 DBG("invalid resource type");
1665 return -ENODEV;
1666 }
1667
Andrew Victorffd33262006-12-07 22:44:33 -08001668 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1669 if (!res)
1670 return -ENXIO;
1671
1672 if (!request_mem_region(res->start,
1673 res->end - res->start + 1,
1674 driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001675 DBG("someone's using UDC memory\n");
1676 return -EBUSY;
1677 }
1678
1679 /* init software state */
1680 udc = &controller;
1681 udc->gadget.dev.parent = dev;
1682 udc->board = *(struct at91_udc_data *) dev->platform_data;
1683 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001684 udc->enabled = 0;
1685
Andrew Victorffd33262006-12-07 22:44:33 -08001686 udc->udp_baseaddr = ioremap(res->start, res->end - res->start + 1);
1687 if (!udc->udp_baseaddr) {
1688 release_mem_region(res->start, res->end - res->start + 1);
1689 return -ENOMEM;
1690 }
1691
1692 udc_reinit(udc);
1693
David Brownellbae4bd82006-01-22 10:32:37 -08001694 /* get interface and function clocks */
1695 udc->iclk = clk_get(dev, "udc_clk");
1696 udc->fclk = clk_get(dev, "udpck");
1697 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1698 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001699 retval = -ENODEV;
1700 goto fail0;
David Brownellbae4bd82006-01-22 10:32:37 -08001701 }
1702
1703 retval = device_register(&udc->gadget.dev);
1704 if (retval < 0)
1705 goto fail0;
1706
David Brownell8b2e7662006-07-05 02:38:56 -07001707 /* don't do anything until we have both gadget driver and VBUS */
1708 clk_enable(udc->iclk);
Andrew Victorffd33262006-12-07 22:44:33 -08001709 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1710 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001711 /* Clear all pending interrupts - UDP may be used by bootloader. */
1712 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
David Brownell8b2e7662006-07-05 02:38:56 -07001713 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001714
1715 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001716 udc->udp_irq = platform_get_irq(pdev, 0);
1717 if (request_irq(udc->udp_irq, at91_udc_irq,
1718 IRQF_DISABLED, driver_name, udc)) {
1719 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001720 retval = -EBUSY;
1721 goto fail1;
1722 }
1723 if (udc->board.vbus_pin > 0) {
Andrew Victor29ba4b52006-12-07 22:44:38 -08001724 /*
1725 * Get the initial state of VBUS - we cannot expect
1726 * a pending interrupt.
1727 */
1728 udc->vbus = at91_get_gpio_value(udc->board.vbus_pin);
David Brownell8b2e7662006-07-05 02:38:56 -07001729 if (request_irq(udc->board.vbus_pin, at91_vbus_irq,
1730 IRQF_DISABLED, driver_name, udc)) {
1731 DBG("request vbus irq %d failed\n",
1732 udc->board.vbus_pin);
1733 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001734 retval = -EBUSY;
1735 goto fail1;
1736 }
1737 } else {
1738 DBG("no VBUS detection, assuming always-on\n");
1739 udc->vbus = 1;
1740 }
1741 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001742 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001743 create_debug_file(udc);
1744
1745 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1746 return 0;
1747
1748fail1:
1749 device_unregister(&udc->gadget.dev);
1750fail0:
Andrew Victorffd33262006-12-07 22:44:33 -08001751 release_mem_region(res->start, res->end - res->start + 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001752 DBG("%s probe failed, %d\n", driver_name, retval);
1753 return retval;
1754}
1755
David Brownell8b2e7662006-07-05 02:38:56 -07001756static int __devexit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001757{
David Brownell8b2e7662006-07-05 02:38:56 -07001758 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001759 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001760
1761 DBG("remove\n");
1762
David Brownell6bea4762006-12-05 03:15:33 -08001763 if (udc->driver)
1764 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001765
David Brownell6bea4762006-12-05 03:15:33 -08001766 pullup(udc, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001767
David Brownell8b2e7662006-07-05 02:38:56 -07001768 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001769 remove_debug_file(udc);
1770 if (udc->board.vbus_pin > 0)
1771 free_irq(udc->board.vbus_pin, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001772 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001773 device_unregister(&udc->gadget.dev);
Andrew Victorffd33262006-12-07 22:44:33 -08001774
1775 iounmap(udc->udp_baseaddr);
1776 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1777 release_mem_region(res->start, res->end - res->start + 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001778
1779 clk_put(udc->iclk);
1780 clk_put(udc->fclk);
1781
1782 return 0;
1783}
1784
1785#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001786static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001787{
David Brownell8b2e7662006-07-05 02:38:56 -07001788 struct at91_udc *udc = platform_get_drvdata(pdev);
1789 int wake = udc->driver && device_may_wakeup(&pdev->dev);
David Brownellbae4bd82006-01-22 10:32:37 -08001790
David Brownell8b2e7662006-07-05 02:38:56 -07001791 /* Unless we can act normally to the host (letting it wake us up
1792 * whenever it has work for us) force disconnect. Wakeup requires
1793 * PLLB for USB events (signaling for reset, wakeup, or incoming
1794 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001795 */
David Brownell8b2e7662006-07-05 02:38:56 -07001796 if ((!udc->suspended && udc->addr)
1797 || !wake
1798 || at91_suspend_entering_slow_clock()) {
David Brownellbae4bd82006-01-22 10:32:37 -08001799 pullup(udc, 0);
David Brownell8b2e7662006-07-05 02:38:56 -07001800 disable_irq_wake(udc->udp_irq);
1801 } else
1802 enable_irq_wake(udc->udp_irq);
1803
1804 if (udc->board.vbus_pin > 0) {
1805 if (wake)
1806 enable_irq_wake(udc->board.vbus_pin);
1807 else
1808 disable_irq_wake(udc->board.vbus_pin);
1809 }
David Brownellbae4bd82006-01-22 10:32:37 -08001810 return 0;
1811}
1812
David Brownell8b2e7662006-07-05 02:38:56 -07001813static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001814{
David Brownell8b2e7662006-07-05 02:38:56 -07001815 struct at91_udc *udc = platform_get_drvdata(pdev);
David Brownellbae4bd82006-01-22 10:32:37 -08001816
1817 /* maybe reconnect to host; if so, clocks on */
1818 pullup(udc, 1);
1819 return 0;
1820}
1821#else
1822#define at91udc_suspend NULL
1823#define at91udc_resume NULL
1824#endif
1825
1826static struct platform_driver at91_udc = {
1827 .probe = at91udc_probe,
1828 .remove = __devexit_p(at91udc_remove),
1829 .shutdown = at91udc_shutdown,
1830 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001831 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001832 .driver = {
1833 .name = (char *) driver_name,
1834 .owner = THIS_MODULE,
1835 },
1836};
1837
1838static int __devinit udc_init_module(void)
1839{
1840 return platform_driver_register(&at91_udc);
1841}
1842module_init(udc_init_module);
1843
1844static void __devexit udc_exit_module(void)
1845{
1846 platform_driver_unregister(&at91_udc);
1847}
1848module_exit(udc_exit_module);
1849
David Brownell8b2e7662006-07-05 02:38:56 -07001850MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001851MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1852MODULE_LICENSE("GPL");