USB: at91_udc: allow drivers that support high speed
[safe/jmp/linux-2.6] / drivers / usb / gadget / at91_udc.c
1 /*
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
28 #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>
46 #include <asm/hardware.h>
47 #include <asm/io.h>
48 #include <asm/irq.h>
49 #include <asm/system.h>
50 #include <asm/mach-types.h>
51
52 #include <asm/arch/gpio.h>
53 #include <asm/arch/board.h>
54 #include <asm/arch/cpu.h>
55 #include <asm/arch/at91sam9261_matrix.h>
56
57 #include "at91_udc.h"
58
59
60 /*
61  * This controller is simple and PIO-only.  It's used in many AT91-series
62  * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
63  * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
64  *
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
67  * testing hasn't covered such cases.)
68  *
69  * The pullup is most important (so it's integrated on sam926x parts).  It
70  * provides software control over whether the host enumerates the device.
71  *
72  * The VBUS sensing helps during enumeration, and allows both USB clocks
73  * (and the transceiver) to stay gated off until they're necessary, saving
74  * 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.
76  */
77
78 #define DRIVER_VERSION  "3 May 2006"
79
80 static const char driver_name [] = "at91_udc";
81 static const char ep0name[] = "ep0";
82
83
84 #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))
88
89 /*-------------------------------------------------------------------------*/
90
91 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
92
93 #include <linux/seq_file.h>
94
95 static const char debug_filename[] = "driver/udc";
96
97 #define FOURBITS "%s%s%s%s"
98 #define EIGHTBITS FOURBITS FOURBITS
99
100 static 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
157 static 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
176 static 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
199         tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
200         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
205         tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
206         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
213         tmp = at91_udp_read(udc, AT91_UDP_FADDR);
214         seq_printf(s, "faddr   %03x:%s fadd=%d\n", tmp,
215                 (tmp & AT91_UDP_FEN) ? " fen" : "",
216                 (tmp & AT91_UDP_FADD));
217
218         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));
220
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
231 static int proc_udc_open(struct inode *inode, struct file *file)
232 {
233         return single_open(file, proc_udc_show, PDE(inode)->data);
234 }
235
236 static const struct file_operations proc_ops = {
237         .open           = proc_udc_open,
238         .read           = seq_read,
239         .llseek         = seq_lseek,
240         .release        = single_release,
241 };
242
243 static 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
256 static 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
264 static inline void create_debug_file(struct at91_udc *udc) {}
265 static inline void remove_debug_file(struct at91_udc *udc) {}
266
267 #endif
268
269
270 /*-------------------------------------------------------------------------*/
271
272 static void done(struct at91_ep *ep, struct at91_request *req, int status)
273 {
274         unsigned        stopped = ep->stopped;
275         struct at91_udc *udc = ep->udc;
276
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))
291                 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
292 }
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.
310  *
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.
315  */
316 #define SET_FX  (AT91_UDP_TXPKTRDY)
317 #define CLR_FX  (RX_DATA_READY | AT91_UDP_RXSETUP \
318                 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
319
320 /* pull OUT packet data from the endpoint's fifo */
321 static 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          */
336 rescan:
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 */
389 static 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
454 static 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
472 static int at91_ep_enable(struct usb_ep *_ep,
473                                 const struct usb_endpoint_descriptor *desc)
474 {
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                 }
513 bogus_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
524 ok:
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          */
544         at91_udp_write(dev, AT91_UDP_RST_EP, ep->int_mask);
545         at91_udp_write(dev, AT91_UDP_RST_EP, 0);
546
547         local_irq_restore(flags);
548         return 0;
549 }
550
551 static int at91_ep_disable (struct usb_ep * _ep)
552 {
553         struct at91_ep  *ep = container_of(_ep, struct at91_ep, ep);
554         struct at91_udc *udc = ep->udc;
555         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) {
570                 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
571                 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
572                 __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
584 static struct usb_request *
585 at91_ep_alloc_request(struct usb_ep *_ep, unsigned int gfp_flags)
586 {
587         struct at91_request *req;
588
589         req = kzalloc(sizeof (struct at91_request), gfp_flags);
590         if (!req)
591                 return NULL;
592
593         INIT_LIST_HEAD(&req->queue);
594         return &req->req;
595 }
596
597 static 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
606 static 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
616 static 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
625 static 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) {
686                                 tmp = at91_udp_read(dev, AT91_UDP_GLB_STAT);
687                                 tmp ^= AT91_UDP_CONFG;
688                                 VDBG("toggle config\n");
689                                 at91_udp_write(dev, AT91_UDP_GLB_STAT, tmp);
690                         }
691                         if (req->req.length == 0) {
692 ep0_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);
718                 at91_udp_write(dev, AT91_UDP_IER, ep->int_mask);
719         }
720 done:
721         local_irq_restore(flags);
722         return (status < 0) ? status : 0;
723 }
724
725 static 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
746 static int at91_ep_set_halt(struct usb_ep *_ep, int value)
747 {
748         struct at91_ep  *ep = container_of(_ep, struct at91_ep, ep);
749         struct at91_udc *udc = ep->udc;
750         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 {
777                         at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
778                         at91_udp_write(udc, AT91_UDP_RST_EP, 0);
779                         csr &= ~AT91_UDP_FORCESTALL;
780                 }
781                 __raw_writel(csr, creg);
782         }
783
784         local_irq_restore(flags);
785         return status;
786 }
787
788 static 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
803 static int at91_get_frame(struct usb_gadget *gadget)
804 {
805         struct at91_udc *udc = to_udc(gadget);
806
807         if (!to_udc(gadget)->clocked)
808                 return -EINVAL;
809         return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
810 }
811
812 static 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
827         glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
828         if (!(glbstate & AT91_UDP_ESR))
829                 goto done;
830         glbstate |= AT91_UDP_ESR;
831         at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
832
833 done:
834         local_irq_restore(flags);
835         return status;
836 }
837
838 /* reinit == restore inital software state */
839 static 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;
855                 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
856                 // initialiser une queue par endpoint
857                 INIT_LIST_HEAD(&ep->queue);
858         }
859 }
860
861 static 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;
869         udc->suspended = 0;
870
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
882 static 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
891 static 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;
897         clk_disable(udc->fclk);
898         clk_disable(udc->iclk);
899 }
900
901 /*
902  * activate/deactivate link with host; minimize power usage for
903  * inactive links by cutting clocks and transceiver power.
904  */
905 static 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");
910
911         if (is_on) {
912                 clk_on(udc);
913                 at91_udp_write(udc, AT91_UDP_TXVC, 0);
914                 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                 }
928         } else {
929                 stop_activity(udc);
930                 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
931                 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                 }
945                 clk_off(udc);
946         }
947 }
948
949 /* vbus is here!  turn everything on that's ready */
950 static 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
963 static 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
975 static 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
986 static 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
1002 static 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
1039 union setup {
1040         u8                      raw[8];
1041         struct usb_ctrlrequest  r;
1042 };
1043
1044 static 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:
1108                 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
1109                 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);
1125                 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
1126                         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;
1136                 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1137                 tmp |= AT91_UDP_ESR;
1138                 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1139                 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;
1144                 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1145                 tmp &= ~AT91_UDP_ESR;
1146                 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1147                 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
1228                 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1229                 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
1230                 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) {
1246 stall:
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
1255 succeed:
1256         /* immediate successful (IN) STATUS after zero length DATA */
1257         PACKET("ep0 in/status\n");
1258 write_in:
1259         csr |= AT91_UDP_TXPKTRDY;
1260         __raw_writel(csr, creg);
1261         udc->req_pending = 0;
1262         return;
1263 }
1264
1265 static 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
1322                                 at91_udp_write(udc, AT91_UDP_FADDR,
1323                                                 AT91_UDP_FEN | udc->addr);
1324                                 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1325                                 tmp &= ~AT91_UDP_FADDEN;
1326                                 if (udc->addr)
1327                                         tmp |= AT91_UDP_FADDEN;
1328                                 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1329
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
1388 static irqreturn_t at91_udc_irq (int irq, void *_udc)
1389 {
1390         struct at91_udc         *udc = _udc;
1391         u32                     rescans = 5;
1392
1393         while (rescans--) {
1394                 u32 status;
1395
1396                 status = at91_udp_read(udc, AT91_UDP_ISR)
1397                         & at91_udp_read(udc, AT91_UDP_IMR);
1398                 if (!status)
1399                         break;
1400
1401                 /* USB reset irq:  not maskable */
1402                 if (status & AT91_UDP_ENDBUSRES) {
1403                         at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1404                         at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
1405                         /* Atmel code clears this irq twice */
1406                         at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1407                         at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1408                         VDBG("end bus reset\n");
1409                         udc->addr = 0;
1410                         stop_activity(udc);
1411
1412                         /* enable ep0 */
1413                         at91_udp_write(udc, AT91_UDP_CSR(0),
1414                                         AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
1415                         udc->gadget.speed = USB_SPEED_FULL;
1416                         udc->suspended = 0;
1417                         at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
1418
1419                         /*
1420                          * NOTE:  this driver keeps clocks off unless the
1421                          * 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.
1424                          */
1425
1426                 /* host initiated suspend (3+ms bus idle) */
1427                 } else if (status & AT91_UDP_RXSUSP) {
1428                         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);
1431                         // 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) {
1447                         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);
1450                         // 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
1485 static void nop_release(struct device *dev)
1486 {
1487         /* nothing to free */
1488 }
1489
1490 static struct at91_udc controller = {
1491         .gadget = {
1492                 .ops    = &at91_udc_ops,
1493                 .ep0    = &controller.ep[0].ep,
1494                 .name   = driver_name,
1495                 .dev    = {
1496                         .bus_id = "gadget",
1497                         .release = nop_release,
1498                 }
1499         },
1500         .ep[0] = {
1501                 .ep = {
1502                         .name   = ep0name,
1503                         .ops    = &at91_ep_ops,
1504                 },
1505                 .udc            = &controller,
1506                 .maxpacket      = 8,
1507                 .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,
1517                 .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,
1527                 .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,
1537                 .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,
1547                 .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,
1557                 .int_mask       = 1 << 5,
1558         },
1559         /* ep6 and ep7 are also reserved (custom silicon might use them) */
1560 };
1561
1562 static irqreturn_t at91_vbus_irq(int irq, void *_udc)
1563 {
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
1576 int usb_gadget_register_driver (struct usb_gadget_driver *driver)
1577 {
1578         struct at91_udc *udc = &controller;
1579         int             retval;
1580
1581         if (!driver
1582                         || driver->speed < USB_SPEED_FULL
1583                         || !driver->bind
1584                         || !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 }
1614 EXPORT_SYMBOL (usb_gadget_register_driver);
1615
1616 int usb_gadget_unregister_driver (struct usb_gadget_driver *driver)
1617 {
1618         struct at91_udc *udc = &controller;
1619
1620         if (!driver || driver != udc->driver || !driver->unbind)
1621                 return -EINVAL;
1622
1623         local_irq_disable();
1624         udc->enabled = 0;
1625         at91_udp_write(udc, AT91_UDP_IDR, ~0);
1626         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 }
1635 EXPORT_SYMBOL (usb_gadget_unregister_driver);
1636
1637 /*-------------------------------------------------------------------------*/
1638
1639 static void at91udc_shutdown(struct platform_device *dev)
1640 {
1641         /* force disconnect on reboot */
1642         pullup(platform_get_drvdata(dev), 0);
1643 }
1644
1645 static int __devinit at91udc_probe(struct platform_device *pdev)
1646 {
1647         struct device   *dev = &pdev->dev;
1648         struct at91_udc *udc;
1649         int             retval;
1650         struct resource *res;
1651
1652         if (!dev->platform_data) {
1653                 /* small (so we copy it) but critical! */
1654                 DBG("missing platform_data\n");
1655                 return -ENODEV;
1656         }
1657
1658         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
1668         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)) {
1675                 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;
1684         udc->enabled = 0;
1685
1686         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
1694         /* 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");
1699                 retval = -ENODEV;
1700                 goto fail0;
1701         }
1702
1703         retval = device_register(&udc->gadget.dev);
1704         if (retval < 0)
1705                 goto fail0;
1706
1707         /* don't do anything until we have both gadget driver and VBUS */
1708         clk_enable(udc->iclk);
1709         at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1710         at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
1711         /* Clear all pending interrupts - UDP may be used by bootloader. */
1712         at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
1713         clk_disable(udc->iclk);
1714
1715         /* request UDC and maybe VBUS irqs */
1716         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);
1720                 retval = -EBUSY;
1721                 goto fail1;
1722         }
1723         if (udc->board.vbus_pin > 0) {
1724                 /*
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);
1729                 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);
1734                         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);
1742         device_init_wakeup(dev, 1);
1743         create_debug_file(udc);
1744
1745         INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1746         return 0;
1747
1748 fail1:
1749         device_unregister(&udc->gadget.dev);
1750 fail0:
1751         release_mem_region(res->start, res->end - res->start + 1);
1752         DBG("%s probe failed, %d\n", driver_name, retval);
1753         return retval;
1754 }
1755
1756 static int __devexit at91udc_remove(struct platform_device *pdev)
1757 {
1758         struct at91_udc *udc = platform_get_drvdata(pdev);
1759         struct resource *res;
1760
1761         DBG("remove\n");
1762
1763         if (udc->driver)
1764                 return -EBUSY;
1765
1766         pullup(udc, 0);
1767
1768         device_init_wakeup(&pdev->dev, 0);
1769         remove_debug_file(udc);
1770         if (udc->board.vbus_pin > 0)
1771                 free_irq(udc->board.vbus_pin, udc);
1772         free_irq(udc->udp_irq, udc);
1773         device_unregister(&udc->gadget.dev);
1774
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);
1778
1779         clk_put(udc->iclk);
1780         clk_put(udc->fclk);
1781
1782         return 0;
1783 }
1784
1785 #ifdef CONFIG_PM
1786 static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
1787 {
1788         struct at91_udc *udc = platform_get_drvdata(pdev);
1789         int             wake = udc->driver && device_may_wakeup(&pdev->dev);
1790
1791         /* 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).
1795          */
1796         if ((!udc->suspended && udc->addr)
1797                         || !wake
1798                         || at91_suspend_entering_slow_clock()) {
1799                 pullup(udc, 0);
1800                 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         }
1810         return 0;
1811 }
1812
1813 static int at91udc_resume(struct platform_device *pdev)
1814 {
1815         struct at91_udc *udc = platform_get_drvdata(pdev);
1816
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
1826 static struct platform_driver at91_udc = {
1827         .probe          = at91udc_probe,
1828         .remove         = __devexit_p(at91udc_remove),
1829         .shutdown       = at91udc_shutdown,
1830         .suspend        = at91udc_suspend,
1831         .resume         = at91udc_resume,
1832         .driver         = {
1833                 .name   = (char *) driver_name,
1834                 .owner  = THIS_MODULE,
1835         },
1836 };
1837
1838 static int __devinit udc_init_module(void)
1839 {
1840         return platform_driver_register(&at91_udc);
1841 }
1842 module_init(udc_init_module);
1843
1844 static void __devexit udc_exit_module(void)
1845 {
1846         platform_driver_unregister(&at91_udc);
1847 }
1848 module_exit(udc_exit_module);
1849
1850 MODULE_DESCRIPTION("AT91 udc driver");
1851 MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1852 MODULE_LICENSE("GPL");